@authhero/adapter-interfaces 0.135.0 → 0.136.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 +716 -30
- package/dist/adapter-interfaces.mjs +520 -459
- package/package.json +1 -1
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { z as e } from "@hono/zod-openapi";
|
|
2
|
-
const
|
|
2
|
+
const s = e.object({
|
|
3
3
|
created_at: e.string(),
|
|
4
4
|
updated_at: e.string()
|
|
5
|
-
}),
|
|
5
|
+
}), pt = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), ct = e.enum([
|
|
6
6
|
"CREATE_USER",
|
|
7
7
|
"GET_USER",
|
|
8
8
|
"UPDATE_USER",
|
|
9
9
|
"SEND_REQUEST",
|
|
10
10
|
"SEND_EMAIL"
|
|
11
|
-
]),
|
|
11
|
+
]), _t = e.enum(["VERIFY_EMAIL"]), K = e.object({
|
|
12
12
|
require_mx_record: e.boolean().optional(),
|
|
13
13
|
block_aliases: e.boolean().optional(),
|
|
14
14
|
block_free_emails: e.boolean().optional(),
|
|
15
15
|
block_disposable_emails: e.boolean().optional(),
|
|
16
16
|
blocklist: e.array(e.string()).optional(),
|
|
17
17
|
allowlist: e.array(e.string()).optional()
|
|
18
|
-
}),
|
|
18
|
+
}), z = e.object({
|
|
19
19
|
id: e.string(),
|
|
20
20
|
alias: e.string().max(100).optional(),
|
|
21
21
|
type: e.literal("AUTH0"),
|
|
@@ -27,7 +27,7 @@ const p = e.object({
|
|
|
27
27
|
user_id: e.string(),
|
|
28
28
|
changes: e.record(e.string(), e.any())
|
|
29
29
|
})
|
|
30
|
-
}),
|
|
30
|
+
}), X = e.object({
|
|
31
31
|
id: e.string(),
|
|
32
32
|
alias: e.string().max(100).optional(),
|
|
33
33
|
type: e.literal("EMAIL"),
|
|
@@ -36,9 +36,9 @@ const p = e.object({
|
|
|
36
36
|
mask_output: e.boolean().optional(),
|
|
37
37
|
params: e.object({
|
|
38
38
|
email: e.string(),
|
|
39
|
-
rules:
|
|
39
|
+
rules: K.optional()
|
|
40
40
|
})
|
|
41
|
-
}),
|
|
41
|
+
}), q = e.enum(["change-email", "account", "custom"]), V = e.object({
|
|
42
42
|
id: e.string(),
|
|
43
43
|
alias: e.string().max(100).optional(),
|
|
44
44
|
type: e.literal("REDIRECT"),
|
|
@@ -46,32 +46,32 @@ const p = e.object({
|
|
|
46
46
|
allow_failure: e.boolean().optional(),
|
|
47
47
|
mask_output: e.boolean().optional(),
|
|
48
48
|
params: e.object({
|
|
49
|
-
target:
|
|
49
|
+
target: q.openapi({
|
|
50
50
|
description: "The predefined target to redirect to, or 'custom' for a custom URL"
|
|
51
51
|
}),
|
|
52
52
|
custom_url: e.string().optional().openapi({
|
|
53
53
|
description: "Custom URL to redirect to when target is 'custom'"
|
|
54
54
|
})
|
|
55
55
|
})
|
|
56
|
-
}),
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
]),
|
|
56
|
+
}), Y = e.union([
|
|
57
|
+
z,
|
|
58
|
+
X,
|
|
59
|
+
V
|
|
60
|
+
]), Q = e.object({
|
|
61
61
|
name: e.string().min(1).max(150).openapi({
|
|
62
62
|
description: "The name of the flow"
|
|
63
63
|
}),
|
|
64
64
|
// Actions is an array of action steps (Auth0 stores as JSON blob)
|
|
65
|
-
actions: e.array(
|
|
65
|
+
actions: e.array(Y).optional().default([]).openapi({
|
|
66
66
|
description: "The list of actions to execute in sequence"
|
|
67
67
|
})
|
|
68
|
-
}),
|
|
69
|
-
...
|
|
68
|
+
}), dt = Q.extend({
|
|
69
|
+
...s.shape,
|
|
70
70
|
id: e.string().openapi({
|
|
71
71
|
description: "Unique identifier for the flow",
|
|
72
72
|
example: "af_12tMpdJ3iek7svMyZkSh5M"
|
|
73
73
|
})
|
|
74
|
-
}),
|
|
74
|
+
}), gt = e.object({
|
|
75
75
|
page: e.string().min(0).optional().default("0").transform((o) => parseInt(o, 10)).openapi({
|
|
76
76
|
description: "The page number where 0 is the first page"
|
|
77
77
|
}),
|
|
@@ -87,12 +87,12 @@ const p = e.object({
|
|
|
87
87
|
q: e.string().optional().openapi({
|
|
88
88
|
description: "A lucene query string used to filter the results"
|
|
89
89
|
})
|
|
90
|
-
}),
|
|
90
|
+
}), ut = e.object({
|
|
91
91
|
start: e.number(),
|
|
92
92
|
limit: e.number(),
|
|
93
93
|
length: e.number(),
|
|
94
94
|
total: e.number().optional()
|
|
95
|
-
}),
|
|
95
|
+
}), J = e.object({
|
|
96
96
|
email: e.string().optional(),
|
|
97
97
|
email_verified: e.boolean().optional(),
|
|
98
98
|
name: e.string().optional(),
|
|
@@ -101,7 +101,7 @@ const p = e.object({
|
|
|
101
101
|
phone_number: e.string().optional(),
|
|
102
102
|
phone_verified: e.boolean().optional(),
|
|
103
103
|
family_name: e.string().optional()
|
|
104
|
-
}).catchall(e.any()),
|
|
104
|
+
}).catchall(e.any()), Z = e.object({
|
|
105
105
|
connection: e.string(),
|
|
106
106
|
user_id: e.string(),
|
|
107
107
|
provider: e.string(),
|
|
@@ -109,8 +109,8 @@ const p = e.object({
|
|
|
109
109
|
access_token: e.string().optional(),
|
|
110
110
|
access_token_secret: e.string().optional(),
|
|
111
111
|
refresh_token: e.string().optional(),
|
|
112
|
-
profileData:
|
|
113
|
-
}),
|
|
112
|
+
profileData: J.optional()
|
|
113
|
+
}), $ = e.object({
|
|
114
114
|
formatted: e.string().optional(),
|
|
115
115
|
// Full mailing address
|
|
116
116
|
street_address: e.string().optional(),
|
|
@@ -155,8 +155,8 @@ const p = e.object({
|
|
|
155
155
|
zoneinfo: e.string().optional(),
|
|
156
156
|
// e.g., "Europe/Paris"
|
|
157
157
|
// OIDC address claim (OIDC Core 5.1.1)
|
|
158
|
-
address:
|
|
159
|
-
}),
|
|
158
|
+
address: $
|
|
159
|
+
}), ee = N.extend({
|
|
160
160
|
email_verified: e.boolean().default(!1),
|
|
161
161
|
verify_email: e.boolean().optional(),
|
|
162
162
|
last_ip: e.string().optional(),
|
|
@@ -171,29 +171,29 @@ const p = e.object({
|
|
|
171
171
|
hash: e.string(),
|
|
172
172
|
algorithm: e.string()
|
|
173
173
|
}).optional()
|
|
174
|
-
}),
|
|
175
|
-
...
|
|
176
|
-
...
|
|
174
|
+
}), oe = e.object({
|
|
175
|
+
...ee.omit({ password: !0 }).shape,
|
|
176
|
+
...s.shape,
|
|
177
177
|
user_id: e.string(),
|
|
178
178
|
provider: e.string(),
|
|
179
179
|
is_social: e.boolean(),
|
|
180
180
|
email: e.string().optional(),
|
|
181
181
|
login_count: e.number().default(0),
|
|
182
|
-
identities: e.array(
|
|
183
|
-
}),
|
|
182
|
+
identities: e.array(Z).optional()
|
|
183
|
+
}), mt = oe, ht = N.extend({
|
|
184
184
|
login_count: e.number(),
|
|
185
185
|
multifactor: e.array(e.string()).optional(),
|
|
186
186
|
last_ip: e.string().optional(),
|
|
187
187
|
last_login: e.string().optional(),
|
|
188
188
|
user_id: e.string()
|
|
189
|
-
}).catchall(e.any()),
|
|
190
|
-
let
|
|
189
|
+
}).catchall(e.any()), te = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
190
|
+
let ne = (o = 21) => {
|
|
191
191
|
let n = "", i = crypto.getRandomValues(new Uint8Array(o |= 0));
|
|
192
192
|
for (; o--; )
|
|
193
|
-
n +=
|
|
193
|
+
n += te[i[o] & 63];
|
|
194
194
|
return n;
|
|
195
195
|
};
|
|
196
|
-
const
|
|
196
|
+
const ie = e.object({
|
|
197
197
|
client_id: e.string().openapi({
|
|
198
198
|
description: "ID of this client."
|
|
199
199
|
}),
|
|
@@ -206,7 +206,7 @@ const te = e.object({
|
|
|
206
206
|
global: e.boolean().default(!1).openapi({
|
|
207
207
|
description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
|
|
208
208
|
}),
|
|
209
|
-
client_secret: e.string().default(() =>
|
|
209
|
+
client_secret: e.string().default(() => ne()).optional().openapi({
|
|
210
210
|
description: "Client secret (which you must not make public)."
|
|
211
211
|
}),
|
|
212
212
|
app_type: e.enum([
|
|
@@ -366,11 +366,11 @@ const te = e.object({
|
|
|
366
366
|
description: "Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"
|
|
367
367
|
}),
|
|
368
368
|
token_quota: e.record(e.any()).default({}).optional()
|
|
369
|
-
}),
|
|
369
|
+
}), bt = e.object({
|
|
370
370
|
created_at: e.string(),
|
|
371
371
|
updated_at: e.string(),
|
|
372
|
-
...
|
|
373
|
-
}),
|
|
372
|
+
...ie.shape
|
|
373
|
+
}), ae = e.object({
|
|
374
374
|
client_id: e.string().min(1).openapi({
|
|
375
375
|
description: "ID of the client."
|
|
376
376
|
}),
|
|
@@ -395,23 +395,23 @@ const te = e.object({
|
|
|
395
395
|
authorization_details_types: e.array(e.string()).optional().openapi({
|
|
396
396
|
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."
|
|
397
397
|
})
|
|
398
|
-
}),
|
|
398
|
+
}), re = e.object({
|
|
399
399
|
id: e.string().openapi({
|
|
400
400
|
description: "ID of the client grant."
|
|
401
401
|
}),
|
|
402
|
-
...
|
|
402
|
+
...ae.shape,
|
|
403
403
|
created_at: e.string().optional(),
|
|
404
404
|
updated_at: e.string().optional()
|
|
405
|
-
}),
|
|
405
|
+
}), ft = e.array(re), u = e.object({
|
|
406
406
|
x: e.number(),
|
|
407
407
|
y: e.number()
|
|
408
408
|
});
|
|
409
|
-
var R = /* @__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))(R || {}),
|
|
410
|
-
const
|
|
409
|
+
var R = /* @__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))(R || {}), j = /* @__PURE__ */ ((o) => (o.BLOCK = "BLOCK", o.FIELD = "FIELD", o))(j || {});
|
|
410
|
+
const y = e.object({
|
|
411
411
|
id: e.string(),
|
|
412
|
-
category: e.nativeEnum(
|
|
412
|
+
category: e.nativeEnum(j),
|
|
413
413
|
type: e.nativeEnum(R)
|
|
414
|
-
}),
|
|
414
|
+
}), se = y.extend({
|
|
415
415
|
category: e.literal(
|
|
416
416
|
"BLOCK"
|
|
417
417
|
/* BLOCK */
|
|
@@ -423,7 +423,7 @@ const I = e.object({
|
|
|
423
423
|
config: e.object({
|
|
424
424
|
content: e.string()
|
|
425
425
|
}).passthrough()
|
|
426
|
-
}),
|
|
426
|
+
}), le = y.extend({
|
|
427
427
|
category: e.literal(
|
|
428
428
|
"BLOCK"
|
|
429
429
|
/* BLOCK */
|
|
@@ -445,7 +445,7 @@ const I = e.object({
|
|
|
445
445
|
config: e.object({
|
|
446
446
|
text: e.string()
|
|
447
447
|
}).passthrough()
|
|
448
|
-
}),
|
|
448
|
+
}), pe = y.extend({
|
|
449
449
|
category: e.literal(
|
|
450
450
|
"FIELD"
|
|
451
451
|
/* FIELD */
|
|
@@ -459,7 +459,7 @@ const I = e.object({
|
|
|
459
459
|
config: e.object({
|
|
460
460
|
text: e.string()
|
|
461
461
|
}).passthrough()
|
|
462
|
-
}),
|
|
462
|
+
}), ce = y.extend({
|
|
463
463
|
category: e.literal(
|
|
464
464
|
"FIELD"
|
|
465
465
|
/* FIELD */
|
|
@@ -512,19 +512,19 @@ const I = e.object({
|
|
|
512
512
|
label: e.string().optional(),
|
|
513
513
|
placeholder: e.string().optional()
|
|
514
514
|
}).passthrough()
|
|
515
|
-
}),
|
|
515
|
+
}), _e = e.object({
|
|
516
516
|
id: e.string(),
|
|
517
517
|
category: e.string(),
|
|
518
518
|
type: e.string()
|
|
519
|
-
}).passthrough(),
|
|
520
|
-
ae,
|
|
519
|
+
}).passthrough(), de = e.union([
|
|
521
520
|
se,
|
|
522
|
-
re,
|
|
523
521
|
le,
|
|
524
|
-
|
|
522
|
+
pe,
|
|
523
|
+
ce,
|
|
524
|
+
_e
|
|
525
525
|
]);
|
|
526
|
-
var
|
|
527
|
-
const
|
|
526
|
+
var ge = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(ge || {});
|
|
527
|
+
const ue = e.object({
|
|
528
528
|
id: e.string(),
|
|
529
529
|
type: e.literal(
|
|
530
530
|
"STEP"
|
|
@@ -533,10 +533,10 @@ const de = e.object({
|
|
|
533
533
|
coordinates: u,
|
|
534
534
|
alias: e.string().optional(),
|
|
535
535
|
config: e.object({
|
|
536
|
-
components: e.array(
|
|
536
|
+
components: e.array(de),
|
|
537
537
|
next_node: e.string()
|
|
538
538
|
}).passthrough()
|
|
539
|
-
}),
|
|
539
|
+
}), me = e.object({
|
|
540
540
|
id: e.string(),
|
|
541
541
|
type: e.literal(
|
|
542
542
|
"FLOW"
|
|
@@ -548,7 +548,7 @@ const de = e.object({
|
|
|
548
548
|
flow_id: e.string(),
|
|
549
549
|
next_node: e.string()
|
|
550
550
|
})
|
|
551
|
-
}),
|
|
551
|
+
}), he = e.object({
|
|
552
552
|
id: e.string(),
|
|
553
553
|
type: e.literal(
|
|
554
554
|
"ACTION"
|
|
@@ -570,47 +570,47 @@ const de = e.object({
|
|
|
570
570
|
description: "The next node to navigate to after action (for non-redirect actions)"
|
|
571
571
|
})
|
|
572
572
|
}).passthrough()
|
|
573
|
-
}),
|
|
573
|
+
}), be = e.object({
|
|
574
574
|
id: e.string(),
|
|
575
575
|
type: e.string(),
|
|
576
576
|
coordinates: u
|
|
577
|
-
}).passthrough(),
|
|
578
|
-
de,
|
|
579
|
-
ge,
|
|
577
|
+
}).passthrough(), fe = e.union([
|
|
580
578
|
ue,
|
|
581
|
-
me
|
|
582
|
-
|
|
579
|
+
me,
|
|
580
|
+
he,
|
|
581
|
+
be
|
|
582
|
+
]), Ee = e.object({
|
|
583
583
|
next_node: e.string(),
|
|
584
584
|
coordinates: u
|
|
585
|
-
}).passthrough(),
|
|
585
|
+
}).passthrough(), Se = e.object({
|
|
586
586
|
resume_flow: e.boolean().optional(),
|
|
587
587
|
coordinates: u
|
|
588
|
-
}).passthrough(),
|
|
588
|
+
}).passthrough(), Ae = e.object({
|
|
589
589
|
id: e.string(),
|
|
590
590
|
name: e.string(),
|
|
591
591
|
languages: e.object({
|
|
592
592
|
primary: e.string()
|
|
593
593
|
}).passthrough(),
|
|
594
|
-
nodes: e.array(
|
|
595
|
-
start:
|
|
596
|
-
ending:
|
|
594
|
+
nodes: e.array(fe),
|
|
595
|
+
start: Ee,
|
|
596
|
+
ending: Se,
|
|
597
597
|
created_at: e.string(),
|
|
598
598
|
updated_at: e.string(),
|
|
599
599
|
links: e.object({
|
|
600
600
|
sdkSrc: e.string().optional(),
|
|
601
601
|
sdk_src: e.string().optional()
|
|
602
602
|
}).passthrough()
|
|
603
|
-
}).passthrough(),
|
|
603
|
+
}).passthrough(), Et = Ae.omit({
|
|
604
604
|
id: !0,
|
|
605
605
|
created_at: !0,
|
|
606
606
|
updated_at: !0
|
|
607
607
|
});
|
|
608
|
-
var
|
|
609
|
-
const
|
|
608
|
+
var w = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "token id_token", o.CODE = "code", o))(w || {}), 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 || {});
|
|
609
|
+
const Ie = e.object({
|
|
610
610
|
client_id: e.string(),
|
|
611
611
|
act_as: e.string().optional(),
|
|
612
|
-
response_type: e.nativeEnum(
|
|
613
|
-
response_mode: e.nativeEnum(
|
|
612
|
+
response_type: e.nativeEnum(w).optional(),
|
|
613
|
+
response_mode: e.nativeEnum(D).optional(),
|
|
614
614
|
redirect_uri: e.string().optional(),
|
|
615
615
|
audience: e.string().optional(),
|
|
616
616
|
organization: e.string().optional(),
|
|
@@ -630,7 +630,7 @@ const Se = e.object({
|
|
|
630
630
|
acr_values: e.string().optional(),
|
|
631
631
|
// The following fields are not available in Auth0
|
|
632
632
|
vendor_id: e.string().optional()
|
|
633
|
-
}),
|
|
633
|
+
}), St = e.object({
|
|
634
634
|
colors: e.object({
|
|
635
635
|
primary: e.string(),
|
|
636
636
|
page_background: e.object({
|
|
@@ -646,14 +646,14 @@ const Se = e.object({
|
|
|
646
646
|
font: e.object({
|
|
647
647
|
url: e.string()
|
|
648
648
|
}).optional()
|
|
649
|
-
}),
|
|
649
|
+
}), ye = e.enum([
|
|
650
650
|
"password_reset",
|
|
651
651
|
"email_verification",
|
|
652
652
|
"otp",
|
|
653
653
|
"authorization_code",
|
|
654
654
|
"oauth2_state",
|
|
655
655
|
"ticket"
|
|
656
|
-
]),
|
|
656
|
+
]), Ce = e.object({
|
|
657
657
|
code_id: e.string().openapi({
|
|
658
658
|
description: "The code that will be used in for instance an email verification flow"
|
|
659
659
|
}),
|
|
@@ -663,7 +663,7 @@ const Se = e.object({
|
|
|
663
663
|
connection_id: e.string().optional().openapi({
|
|
664
664
|
description: "The connection that the code is connected to"
|
|
665
665
|
}),
|
|
666
|
-
code_type:
|
|
666
|
+
code_type: ye,
|
|
667
667
|
code_verifier: e.string().optional().openapi({
|
|
668
668
|
description: "The code verifier used in PKCE in outbound flows"
|
|
669
669
|
}),
|
|
@@ -685,10 +685,10 @@ const Se = e.object({
|
|
|
685
685
|
expires_at: e.string(),
|
|
686
686
|
used_at: e.string().optional(),
|
|
687
687
|
user_id: e.string().optional()
|
|
688
|
-
}),
|
|
689
|
-
...
|
|
688
|
+
}), At = e.object({
|
|
689
|
+
...Ce.shape,
|
|
690
690
|
created_at: e.string()
|
|
691
|
-
}),
|
|
691
|
+
}), Te = e.object({
|
|
692
692
|
kid: e.string().optional(),
|
|
693
693
|
team_id: e.string().optional(),
|
|
694
694
|
realms: e.string().optional(),
|
|
@@ -744,7 +744,10 @@ const Se = e.object({
|
|
|
744
744
|
}).optional(),
|
|
745
745
|
validation: e.object({
|
|
746
746
|
allowed: e.boolean().optional()
|
|
747
|
-
}).optional()
|
|
747
|
+
}).optional(),
|
|
748
|
+
unique: e.boolean().optional(),
|
|
749
|
+
profile_required: e.boolean().optional(),
|
|
750
|
+
verification_method: e.enum(["link", "code"]).optional()
|
|
748
751
|
}).optional(),
|
|
749
752
|
username: e.object({
|
|
750
753
|
identifier: e.object({
|
|
@@ -760,9 +763,33 @@ const Se = e.object({
|
|
|
760
763
|
email: e.boolean().optional(),
|
|
761
764
|
phone_number: e.boolean().optional()
|
|
762
765
|
}).optional()
|
|
766
|
+
}).optional(),
|
|
767
|
+
profile_required: e.boolean().optional()
|
|
768
|
+
}).optional(),
|
|
769
|
+
phone_number: e.object({
|
|
770
|
+
identifier: e.object({
|
|
771
|
+
active: e.boolean().optional()
|
|
772
|
+
}).optional(),
|
|
773
|
+
signup: e.object({
|
|
774
|
+
status: e.enum(["required", "optional", "disabled"]).optional()
|
|
763
775
|
}).optional()
|
|
764
776
|
}).optional()
|
|
765
777
|
}).optional(),
|
|
778
|
+
// Authentication methods for Username-Password-Authentication connections
|
|
779
|
+
authentication_methods: e.object({
|
|
780
|
+
password: e.object({
|
|
781
|
+
enabled: e.boolean().optional()
|
|
782
|
+
}).optional(),
|
|
783
|
+
passkey: e.object({
|
|
784
|
+
enabled: e.boolean().optional()
|
|
785
|
+
}).optional()
|
|
786
|
+
}).optional(),
|
|
787
|
+
// Passkey options for Username-Password-Authentication connections
|
|
788
|
+
passkey_options: e.object({
|
|
789
|
+
challenge_ui: e.enum(["both", "autofill", "button"]).optional(),
|
|
790
|
+
local_enrollment_enabled: e.boolean().optional(),
|
|
791
|
+
progressive_enrollment_enabled: e.boolean().optional()
|
|
792
|
+
}).optional(),
|
|
766
793
|
// Legacy username options (deprecated, use attributes instead)
|
|
767
794
|
requires_username: e.boolean().optional(),
|
|
768
795
|
validation: e.object({
|
|
@@ -771,12 +798,12 @@ const Se = e.object({
|
|
|
771
798
|
max: e.number().optional()
|
|
772
799
|
}).optional()
|
|
773
800
|
}).optional()
|
|
774
|
-
}),
|
|
801
|
+
}), Oe = e.object({
|
|
775
802
|
id: e.string().optional(),
|
|
776
803
|
name: e.string(),
|
|
777
804
|
display_name: e.string().optional(),
|
|
778
805
|
strategy: e.string(),
|
|
779
|
-
options:
|
|
806
|
+
options: Te.default({}),
|
|
780
807
|
enabled_clients: e.array(e.string()).default([]).optional(),
|
|
781
808
|
response_type: e.custom().optional(),
|
|
782
809
|
response_mode: e.custom().optional(),
|
|
@@ -784,11 +811,11 @@ const Se = e.object({
|
|
|
784
811
|
show_as_button: e.boolean().optional(),
|
|
785
812
|
metadata: e.record(e.any()).optional(),
|
|
786
813
|
is_system: e.boolean().optional()
|
|
787
|
-
}),
|
|
814
|
+
}), It = e.object({
|
|
788
815
|
id: e.string(),
|
|
789
816
|
created_at: e.string().transform((o) => o === null ? "" : o),
|
|
790
817
|
updated_at: e.string().transform((o) => o === null ? "" : o)
|
|
791
|
-
}).extend(
|
|
818
|
+
}).extend(Oe.shape), Ne = e.object({
|
|
792
819
|
domain: e.string(),
|
|
793
820
|
custom_domain_id: e.string().optional(),
|
|
794
821
|
type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
|
|
@@ -802,37 +829,37 @@ const Se = e.object({
|
|
|
802
829
|
"null"
|
|
803
830
|
]).optional(),
|
|
804
831
|
domain_metadata: e.record(e.string().max(255)).optional()
|
|
805
|
-
}),
|
|
832
|
+
}), Re = e.object({
|
|
806
833
|
name: e.literal("txt"),
|
|
807
834
|
record: e.string(),
|
|
808
835
|
domain: e.string()
|
|
809
|
-
}),
|
|
810
|
-
...
|
|
836
|
+
}), je = e.object({
|
|
837
|
+
...Ne.shape,
|
|
811
838
|
custom_domain_id: e.string(),
|
|
812
839
|
primary: e.boolean(),
|
|
813
840
|
status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
|
|
814
841
|
origin_domain_name: e.string().optional(),
|
|
815
842
|
verification: e.object({
|
|
816
|
-
methods: e.array(
|
|
843
|
+
methods: e.array(Re)
|
|
817
844
|
}).optional(),
|
|
818
845
|
tls_policy: e.string().optional()
|
|
819
|
-
}),
|
|
846
|
+
}), yt = je.extend({
|
|
820
847
|
tenant_id: e.string()
|
|
821
|
-
}),
|
|
848
|
+
}), C = e.object({
|
|
822
849
|
id: e.string(),
|
|
823
850
|
order: e.number().optional(),
|
|
824
851
|
visible: e.boolean().optional().default(!0)
|
|
825
|
-
}),
|
|
852
|
+
}), l = C.extend({
|
|
826
853
|
category: e.literal("BLOCK").optional()
|
|
827
|
-
}),
|
|
854
|
+
}), we = l.extend({
|
|
828
855
|
type: e.literal("DIVIDER"),
|
|
829
856
|
config: e.object({}).optional()
|
|
830
|
-
}),
|
|
857
|
+
}), De = l.extend({
|
|
831
858
|
type: e.literal("HTML"),
|
|
832
859
|
config: e.object({
|
|
833
860
|
content: e.string().optional()
|
|
834
861
|
}).optional()
|
|
835
|
-
}),
|
|
862
|
+
}), Le = l.extend({
|
|
836
863
|
type: e.literal("IMAGE"),
|
|
837
864
|
config: e.object({
|
|
838
865
|
src: e.string().optional(),
|
|
@@ -840,66 +867,66 @@ const Se = e.object({
|
|
|
840
867
|
width: e.number().optional(),
|
|
841
868
|
height: e.number().optional()
|
|
842
869
|
}).optional()
|
|
843
|
-
}),
|
|
870
|
+
}), ve = l.extend({
|
|
844
871
|
type: e.literal("JUMP_BUTTON"),
|
|
845
872
|
config: e.object({
|
|
846
873
|
text: e.string().optional(),
|
|
847
874
|
target_step: e.string().optional()
|
|
848
875
|
})
|
|
849
|
-
}),
|
|
876
|
+
}), ke = l.extend({
|
|
850
877
|
type: e.literal("RESEND_BUTTON"),
|
|
851
878
|
config: e.object({
|
|
852
879
|
text: e.string().optional(),
|
|
853
880
|
resend_action: e.string().optional()
|
|
854
881
|
})
|
|
855
|
-
}),
|
|
882
|
+
}), Ue = l.extend({
|
|
856
883
|
type: e.literal("NEXT_BUTTON"),
|
|
857
884
|
config: e.object({
|
|
858
885
|
text: e.string().optional()
|
|
859
886
|
})
|
|
860
|
-
}),
|
|
887
|
+
}), Fe = l.extend({
|
|
861
888
|
type: e.literal("PREVIOUS_BUTTON"),
|
|
862
889
|
config: e.object({
|
|
863
890
|
text: e.string().optional()
|
|
864
891
|
})
|
|
865
|
-
}),
|
|
892
|
+
}), xe = l.extend({
|
|
866
893
|
type: e.literal("RICH_TEXT"),
|
|
867
894
|
config: e.object({
|
|
868
895
|
content: e.string().optional()
|
|
869
896
|
}).optional()
|
|
870
|
-
}),
|
|
897
|
+
}), T = C.extend({
|
|
871
898
|
category: e.literal("WIDGET").optional(),
|
|
872
899
|
label: e.string().min(1).optional(),
|
|
873
900
|
hint: e.string().min(1).max(500).optional(),
|
|
874
901
|
required: e.boolean().optional(),
|
|
875
902
|
sensitive: e.boolean().optional()
|
|
876
|
-
}),
|
|
903
|
+
}), Pe = T.extend({
|
|
877
904
|
type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
|
|
878
905
|
config: e.object({
|
|
879
906
|
credential_type: e.string().optional()
|
|
880
907
|
})
|
|
881
|
-
}),
|
|
908
|
+
}), Me = T.extend({
|
|
882
909
|
type: e.literal("GMAPS_ADDRESS"),
|
|
883
910
|
config: e.object({
|
|
884
911
|
api_key: e.string().optional()
|
|
885
912
|
})
|
|
886
|
-
}),
|
|
913
|
+
}), He = T.extend({
|
|
887
914
|
type: e.literal("RECAPTCHA"),
|
|
888
915
|
config: e.object({
|
|
889
916
|
site_key: e.string().optional()
|
|
890
917
|
})
|
|
891
|
-
}), t =
|
|
918
|
+
}), t = C.extend({
|
|
892
919
|
category: e.literal("FIELD").optional(),
|
|
893
920
|
label: e.string().min(1).optional(),
|
|
894
921
|
hint: e.string().min(1).max(500).optional(),
|
|
895
922
|
required: e.boolean().optional(),
|
|
896
923
|
sensitive: e.boolean().optional()
|
|
897
|
-
}),
|
|
924
|
+
}), Ge = t.extend({
|
|
898
925
|
type: e.literal("BOOLEAN"),
|
|
899
926
|
config: e.object({
|
|
900
927
|
default_value: e.boolean().optional()
|
|
901
928
|
}).optional()
|
|
902
|
-
}),
|
|
929
|
+
}), Be = t.extend({
|
|
903
930
|
type: e.literal("CARDS"),
|
|
904
931
|
config: e.object({
|
|
905
932
|
options: e.array(
|
|
@@ -912,7 +939,7 @@ const Se = e.object({
|
|
|
912
939
|
).optional(),
|
|
913
940
|
multi_select: e.boolean().optional()
|
|
914
941
|
}).optional()
|
|
915
|
-
}),
|
|
942
|
+
}), We = t.extend({
|
|
916
943
|
type: e.literal("CHOICE"),
|
|
917
944
|
config: e.object({
|
|
918
945
|
options: e.array(
|
|
@@ -925,7 +952,7 @@ const Se = e.object({
|
|
|
925
952
|
multiple: e.boolean().optional(),
|
|
926
953
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
927
954
|
}).optional()
|
|
928
|
-
}),
|
|
955
|
+
}), Ke = t.extend({
|
|
929
956
|
type: e.literal("CUSTOM"),
|
|
930
957
|
config: e.object({
|
|
931
958
|
component: e.string().optional(),
|
|
@@ -933,7 +960,7 @@ const Se = e.object({
|
|
|
933
960
|
schema: e.record(e.any()).optional(),
|
|
934
961
|
code: e.string().optional()
|
|
935
962
|
})
|
|
936
|
-
}),
|
|
963
|
+
}), ze = t.extend({
|
|
937
964
|
type: e.literal("DATE"),
|
|
938
965
|
config: e.object({
|
|
939
966
|
format: e.string().optional(),
|
|
@@ -941,7 +968,7 @@ const Se = e.object({
|
|
|
941
968
|
max: e.string().optional(),
|
|
942
969
|
default_value: e.string().optional()
|
|
943
970
|
}).optional()
|
|
944
|
-
}),
|
|
971
|
+
}), Xe = t.extend({
|
|
945
972
|
type: e.literal("DROPDOWN"),
|
|
946
973
|
config: e.object({
|
|
947
974
|
options: e.array(
|
|
@@ -955,26 +982,26 @@ const Se = e.object({
|
|
|
955
982
|
multiple: e.boolean().optional(),
|
|
956
983
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
957
984
|
}).optional()
|
|
958
|
-
}),
|
|
985
|
+
}), qe = t.extend({
|
|
959
986
|
type: e.literal("EMAIL"),
|
|
960
987
|
config: e.object({
|
|
961
988
|
placeholder: e.string().optional(),
|
|
962
989
|
default_value: e.string().optional()
|
|
963
990
|
}).optional()
|
|
964
|
-
}),
|
|
991
|
+
}), Ve = t.extend({
|
|
965
992
|
type: e.literal("FILE"),
|
|
966
993
|
config: e.object({
|
|
967
994
|
accept: e.string().optional(),
|
|
968
995
|
max_size: e.number().optional(),
|
|
969
996
|
multiple: e.boolean().optional()
|
|
970
997
|
}).optional()
|
|
971
|
-
}),
|
|
998
|
+
}), Ye = t.extend({
|
|
972
999
|
type: e.literal("LEGAL"),
|
|
973
1000
|
config: e.object({
|
|
974
1001
|
text: e.string(),
|
|
975
1002
|
html: e.boolean().optional()
|
|
976
1003
|
}).optional()
|
|
977
|
-
}),
|
|
1004
|
+
}), Qe = t.extend({
|
|
978
1005
|
type: e.literal("NUMBER"),
|
|
979
1006
|
config: e.object({
|
|
980
1007
|
placeholder: e.string().optional(),
|
|
@@ -983,7 +1010,7 @@ const Se = e.object({
|
|
|
983
1010
|
step: e.number().optional(),
|
|
984
1011
|
default_value: e.string().optional()
|
|
985
1012
|
}).optional()
|
|
986
|
-
}),
|
|
1013
|
+
}), Je = t.extend({
|
|
987
1014
|
type: e.literal("PASSWORD"),
|
|
988
1015
|
config: e.object({
|
|
989
1016
|
placeholder: e.string().optional(),
|
|
@@ -992,13 +1019,13 @@ const Se = e.object({
|
|
|
992
1019
|
forgot_password_link: e.string().optional(),
|
|
993
1020
|
default_value: e.string().optional()
|
|
994
1021
|
}).optional()
|
|
995
|
-
}),
|
|
1022
|
+
}), Ze = t.extend({
|
|
996
1023
|
type: e.literal("PAYMENT"),
|
|
997
1024
|
config: e.object({
|
|
998
1025
|
provider: e.string().optional(),
|
|
999
1026
|
currency: e.string().optional()
|
|
1000
1027
|
}).optional()
|
|
1001
|
-
}),
|
|
1028
|
+
}), $e = t.extend({
|
|
1002
1029
|
type: e.literal("SOCIAL"),
|
|
1003
1030
|
config: e.object({
|
|
1004
1031
|
providers: e.array(e.string()).optional(),
|
|
@@ -1012,14 +1039,14 @@ const Se = e.object({
|
|
|
1012
1039
|
})
|
|
1013
1040
|
).optional()
|
|
1014
1041
|
}).optional()
|
|
1015
|
-
}),
|
|
1042
|
+
}), eo = t.extend({
|
|
1016
1043
|
type: e.literal("TEL"),
|
|
1017
1044
|
config: e.object({
|
|
1018
1045
|
placeholder: e.string().optional(),
|
|
1019
1046
|
default_country: e.string().optional(),
|
|
1020
1047
|
default_value: e.string().optional()
|
|
1021
1048
|
}).optional()
|
|
1022
|
-
}),
|
|
1049
|
+
}), oo = t.extend({
|
|
1023
1050
|
type: e.literal("TEXT"),
|
|
1024
1051
|
config: e.object({
|
|
1025
1052
|
placeholder: e.string().optional(),
|
|
@@ -1027,47 +1054,47 @@ const Se = e.object({
|
|
|
1027
1054
|
max_length: e.number().optional(),
|
|
1028
1055
|
default_value: e.string().optional()
|
|
1029
1056
|
}).optional()
|
|
1030
|
-
}),
|
|
1057
|
+
}), to = t.extend({
|
|
1031
1058
|
type: e.literal("URL"),
|
|
1032
1059
|
config: e.object({
|
|
1033
1060
|
placeholder: e.string().optional(),
|
|
1034
1061
|
default_value: e.string().optional()
|
|
1035
1062
|
}).optional()
|
|
1036
|
-
}),
|
|
1037
|
-
Re,
|
|
1063
|
+
}), no = e.discriminatedUnion("type", [
|
|
1038
1064
|
we,
|
|
1039
1065
|
De,
|
|
1040
|
-
je,
|
|
1041
1066
|
Le,
|
|
1042
1067
|
ve,
|
|
1043
1068
|
ke,
|
|
1044
|
-
Ue
|
|
1045
|
-
]), to = e.discriminatedUnion("type", [
|
|
1069
|
+
Ue,
|
|
1046
1070
|
Fe,
|
|
1047
|
-
xe
|
|
1048
|
-
|
|
1049
|
-
|
|
1071
|
+
xe
|
|
1072
|
+
]), io = e.discriminatedUnion("type", [
|
|
1073
|
+
Pe,
|
|
1050
1074
|
Me,
|
|
1051
|
-
He
|
|
1075
|
+
He
|
|
1076
|
+
]), ao = e.discriminatedUnion("type", [
|
|
1052
1077
|
Ge,
|
|
1053
1078
|
Be,
|
|
1054
1079
|
We,
|
|
1055
1080
|
Ke,
|
|
1056
1081
|
ze,
|
|
1057
1082
|
Xe,
|
|
1058
|
-
Ve,
|
|
1059
1083
|
qe,
|
|
1084
|
+
Ve,
|
|
1060
1085
|
Ye,
|
|
1061
1086
|
Qe,
|
|
1062
1087
|
Je,
|
|
1063
1088
|
Ze,
|
|
1064
1089
|
$e,
|
|
1065
|
-
eo
|
|
1066
|
-
]), v = e.union([
|
|
1090
|
+
eo,
|
|
1067
1091
|
oo,
|
|
1068
|
-
to
|
|
1069
|
-
|
|
1070
|
-
|
|
1092
|
+
to
|
|
1093
|
+
]), v = e.union([
|
|
1094
|
+
no,
|
|
1095
|
+
io,
|
|
1096
|
+
ao
|
|
1097
|
+
]), Ct = /* @__PURE__ */ new Set([
|
|
1071
1098
|
"BOOLEAN",
|
|
1072
1099
|
"CARDS",
|
|
1073
1100
|
"CHOICE",
|
|
@@ -1080,7 +1107,7 @@ const Se = e.object({
|
|
|
1080
1107
|
"TEL",
|
|
1081
1108
|
"TEXT",
|
|
1082
1109
|
"URL"
|
|
1083
|
-
]),
|
|
1110
|
+
]), Tt = e.object({
|
|
1084
1111
|
id: e.string(),
|
|
1085
1112
|
type: e.literal("submit"),
|
|
1086
1113
|
label: e.string(),
|
|
@@ -1089,22 +1116,22 @@ const Se = e.object({
|
|
|
1089
1116
|
order: e.number().optional(),
|
|
1090
1117
|
visible: e.boolean().optional().default(!0),
|
|
1091
1118
|
customizations: e.record(e.string(), e.any()).optional()
|
|
1092
|
-
}),
|
|
1119
|
+
}), f = e.object({
|
|
1093
1120
|
x: e.number(),
|
|
1094
1121
|
y: e.number()
|
|
1095
|
-
}),
|
|
1122
|
+
}), ro = e.object({
|
|
1096
1123
|
id: e.string(),
|
|
1097
1124
|
type: e.literal("FLOW"),
|
|
1098
|
-
coordinates:
|
|
1125
|
+
coordinates: f,
|
|
1099
1126
|
alias: e.string().min(1).max(150).optional(),
|
|
1100
1127
|
config: e.object({
|
|
1101
1128
|
flow_id: e.string().max(30),
|
|
1102
1129
|
next_node: e.string().optional()
|
|
1103
1130
|
})
|
|
1104
|
-
}),
|
|
1131
|
+
}), so = e.object({
|
|
1105
1132
|
id: e.string(),
|
|
1106
1133
|
type: e.literal("ROUTER"),
|
|
1107
|
-
coordinates:
|
|
1134
|
+
coordinates: f,
|
|
1108
1135
|
alias: e.string().min(1).max(150),
|
|
1109
1136
|
config: e.object({
|
|
1110
1137
|
rules: e.array(
|
|
@@ -1117,20 +1144,20 @@ const Se = e.object({
|
|
|
1117
1144
|
),
|
|
1118
1145
|
fallback: e.string()
|
|
1119
1146
|
})
|
|
1120
|
-
}),
|
|
1147
|
+
}), lo = e.object({
|
|
1121
1148
|
id: e.string(),
|
|
1122
1149
|
type: e.literal("STEP"),
|
|
1123
|
-
coordinates:
|
|
1150
|
+
coordinates: f,
|
|
1124
1151
|
alias: e.string().min(1).max(150).optional(),
|
|
1125
1152
|
config: e.object({
|
|
1126
1153
|
components: e.array(v),
|
|
1127
1154
|
next_node: e.string().optional()
|
|
1128
1155
|
})
|
|
1129
|
-
}),
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
]),
|
|
1156
|
+
}), po = e.discriminatedUnion("type", [
|
|
1157
|
+
ro,
|
|
1158
|
+
so,
|
|
1159
|
+
lo
|
|
1160
|
+
]), co = e.object({
|
|
1134
1161
|
name: e.string().openapi({
|
|
1135
1162
|
description: "The name of the form"
|
|
1136
1163
|
}),
|
|
@@ -1143,11 +1170,11 @@ const Se = e.object({
|
|
|
1143
1170
|
default: e.string().optional()
|
|
1144
1171
|
}).optional(),
|
|
1145
1172
|
translations: e.record(e.string(), e.any()).optional(),
|
|
1146
|
-
nodes: e.array(
|
|
1173
|
+
nodes: e.array(po).optional(),
|
|
1147
1174
|
start: e.object({
|
|
1148
1175
|
hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
|
|
1149
1176
|
next_node: e.string().optional(),
|
|
1150
|
-
coordinates:
|
|
1177
|
+
coordinates: f.optional()
|
|
1151
1178
|
}).optional(),
|
|
1152
1179
|
ending: e.object({
|
|
1153
1180
|
redirection: e.object({
|
|
@@ -1155,7 +1182,7 @@ const Se = e.object({
|
|
|
1155
1182
|
target: e.string().optional()
|
|
1156
1183
|
}).optional(),
|
|
1157
1184
|
after_submit: e.object({ flow_id: e.string().optional() }).optional(),
|
|
1158
|
-
coordinates:
|
|
1185
|
+
coordinates: f.optional(),
|
|
1159
1186
|
resume_flow: e.boolean().optional()
|
|
1160
1187
|
}).optional(),
|
|
1161
1188
|
style: e.object({ css: e.string().optional() }).optional(),
|
|
@@ -1165,20 +1192,20 @@ const Se = e.object({
|
|
|
1165
1192
|
}).optional()
|
|
1166
1193
|
}).openapi({
|
|
1167
1194
|
description: "Schema for flow-based forms (matches Auth0 Forms structure)"
|
|
1168
|
-
}),
|
|
1169
|
-
...
|
|
1170
|
-
...
|
|
1195
|
+
}), Ot = e.object({
|
|
1196
|
+
...s.shape,
|
|
1197
|
+
...co.shape,
|
|
1171
1198
|
id: e.string()
|
|
1172
|
-
}),
|
|
1199
|
+
}), _o = e.object({
|
|
1173
1200
|
id: e.number().optional(),
|
|
1174
1201
|
text: e.string(),
|
|
1175
1202
|
type: e.enum(["info", "error", "success", "warning"])
|
|
1176
|
-
}),
|
|
1203
|
+
}), go = e.object({
|
|
1177
1204
|
id: e.string().optional(),
|
|
1178
1205
|
text: e.string(),
|
|
1179
1206
|
href: e.string(),
|
|
1180
1207
|
linkText: e.string().optional()
|
|
1181
|
-
}),
|
|
1208
|
+
}), Nt = e.object({
|
|
1182
1209
|
/** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
|
|
1183
1210
|
name: e.string().optional(),
|
|
1184
1211
|
action: e.string(),
|
|
@@ -1186,18 +1213,18 @@ const Se = e.object({
|
|
|
1186
1213
|
title: e.string().optional(),
|
|
1187
1214
|
description: e.string().optional(),
|
|
1188
1215
|
components: e.array(v),
|
|
1189
|
-
messages: e.array(
|
|
1190
|
-
links: e.array(
|
|
1216
|
+
messages: e.array(_o).optional(),
|
|
1217
|
+
links: e.array(go).optional(),
|
|
1191
1218
|
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
1192
1219
|
footer: e.string().optional()
|
|
1193
1220
|
});
|
|
1194
|
-
function
|
|
1221
|
+
function Rt(o) {
|
|
1195
1222
|
return o.category === "BLOCK";
|
|
1196
1223
|
}
|
|
1197
|
-
function
|
|
1224
|
+
function jt(o) {
|
|
1198
1225
|
return o.category === "WIDGET";
|
|
1199
1226
|
}
|
|
1200
|
-
function
|
|
1227
|
+
function wt(o) {
|
|
1201
1228
|
return o.category === "FIELD";
|
|
1202
1229
|
}
|
|
1203
1230
|
const k = e.enum([
|
|
@@ -1215,42 +1242,74 @@ const k = e.enum([
|
|
|
1215
1242
|
"validate-registration-username",
|
|
1216
1243
|
"pre-user-deletion",
|
|
1217
1244
|
"post-user-deletion"
|
|
1218
|
-
]),
|
|
1245
|
+
]), F = e.enum([
|
|
1246
|
+
"post-user-login",
|
|
1247
|
+
"credentials-exchange"
|
|
1248
|
+
]), x = e.enum([
|
|
1249
|
+
"ensure-username",
|
|
1250
|
+
"set-preferred-username"
|
|
1251
|
+
]), Dt = {
|
|
1252
|
+
"ensure-username": {
|
|
1253
|
+
name: "Ensure Username",
|
|
1254
|
+
description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
|
|
1255
|
+
trigger_id: "post-user-login"
|
|
1256
|
+
},
|
|
1257
|
+
"set-preferred-username": {
|
|
1258
|
+
name: "Set Preferred Username",
|
|
1259
|
+
description: "Sets the preferred_username claim on tokens based on the username from the primary or linked user.",
|
|
1260
|
+
trigger_id: "credentials-exchange"
|
|
1261
|
+
}
|
|
1262
|
+
}, m = {
|
|
1219
1263
|
enabled: e.boolean().default(!1),
|
|
1220
1264
|
synchronous: e.boolean().default(!1),
|
|
1221
1265
|
priority: e.number().optional(),
|
|
1222
1266
|
hook_id: e.string().optional()
|
|
1223
|
-
},
|
|
1224
|
-
...
|
|
1267
|
+
}, uo = e.object({
|
|
1268
|
+
...m,
|
|
1225
1269
|
trigger_id: k,
|
|
1226
1270
|
url: e.string()
|
|
1227
|
-
}),
|
|
1228
|
-
...
|
|
1271
|
+
}), mo = e.object({
|
|
1272
|
+
...m,
|
|
1229
1273
|
trigger_id: U,
|
|
1230
1274
|
form_id: e.string()
|
|
1231
|
-
}),
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1275
|
+
}), ho = e.object({
|
|
1276
|
+
...m,
|
|
1277
|
+
trigger_id: F,
|
|
1278
|
+
template_id: x
|
|
1279
|
+
}), Lt = e.union([
|
|
1280
|
+
uo,
|
|
1281
|
+
mo,
|
|
1282
|
+
ho
|
|
1283
|
+
]), bo = e.object({
|
|
1284
|
+
...m,
|
|
1236
1285
|
trigger_id: k,
|
|
1237
|
-
...
|
|
1286
|
+
...s.shape,
|
|
1238
1287
|
hook_id: e.string(),
|
|
1239
1288
|
url: e.string()
|
|
1240
|
-
}),
|
|
1241
|
-
...
|
|
1289
|
+
}), fo = e.object({
|
|
1290
|
+
...m,
|
|
1242
1291
|
trigger_id: U,
|
|
1243
|
-
...
|
|
1292
|
+
...s.shape,
|
|
1244
1293
|
hook_id: e.string(),
|
|
1245
1294
|
form_id: e.string()
|
|
1246
|
-
}),
|
|
1295
|
+
}), Eo = e.object({
|
|
1296
|
+
...m,
|
|
1297
|
+
trigger_id: F,
|
|
1298
|
+
...s.shape,
|
|
1299
|
+
hook_id: e.string(),
|
|
1300
|
+
template_id: x
|
|
1301
|
+
}), vt = e.union([
|
|
1302
|
+
bo,
|
|
1303
|
+
fo,
|
|
1304
|
+
Eo
|
|
1305
|
+
]), So = e.object({
|
|
1247
1306
|
name: e.string().optional()
|
|
1248
|
-
}),
|
|
1307
|
+
}), Ao = e.object({
|
|
1249
1308
|
email: e.string().optional()
|
|
1250
|
-
}),
|
|
1309
|
+
}), Io = e.object({
|
|
1251
1310
|
organization_id: e.string().max(50),
|
|
1252
|
-
inviter:
|
|
1253
|
-
invitee:
|
|
1311
|
+
inviter: So,
|
|
1312
|
+
invitee: Ao,
|
|
1254
1313
|
invitation_url: e.string().url(),
|
|
1255
1314
|
client_id: e.string(),
|
|
1256
1315
|
connection_id: e.string().optional(),
|
|
@@ -1259,13 +1318,13 @@ const k = e.enum([
|
|
|
1259
1318
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
1260
1319
|
roles: e.array(e.string()).default([]).optional(),
|
|
1261
1320
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
1262
|
-
}),
|
|
1321
|
+
}), kt = e.object({
|
|
1263
1322
|
id: e.string(),
|
|
1264
1323
|
organization_id: e.string().max(50),
|
|
1265
1324
|
created_at: e.string().datetime(),
|
|
1266
1325
|
expires_at: e.string().datetime(),
|
|
1267
1326
|
ticket_id: e.string().optional()
|
|
1268
|
-
}).extend(
|
|
1327
|
+
}).extend(Io.shape), yo = e.object({
|
|
1269
1328
|
alg: e.enum([
|
|
1270
1329
|
"RS256",
|
|
1271
1330
|
"RS384",
|
|
@@ -1284,9 +1343,9 @@ const k = e.enum([
|
|
|
1284
1343
|
x5t: e.string().optional(),
|
|
1285
1344
|
x5c: e.array(e.string()).optional(),
|
|
1286
1345
|
use: e.enum(["sig", "enc"]).optional()
|
|
1287
|
-
}),
|
|
1288
|
-
keys: e.array(
|
|
1289
|
-
}),
|
|
1346
|
+
}), Ut = e.object({
|
|
1347
|
+
keys: e.array(yo)
|
|
1348
|
+
}), Ft = e.object({
|
|
1290
1349
|
issuer: e.string(),
|
|
1291
1350
|
authorization_endpoint: e.string(),
|
|
1292
1351
|
token_endpoint: e.string(),
|
|
@@ -1308,18 +1367,18 @@ const k = e.enum([
|
|
|
1308
1367
|
request_parameter_supported: e.boolean(),
|
|
1309
1368
|
token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
|
|
1310
1369
|
});
|
|
1311
|
-
var
|
|
1312
|
-
const
|
|
1370
|
+
var P = /* @__PURE__ */ ((o) => (o.PENDING = "pending", o.AUTHENTICATED = "authenticated", o.AWAITING_EMAIL_VERIFICATION = "awaiting_email_verification", o.AWAITING_HOOK = "awaiting_hook", o.AWAITING_CONTINUATION = "awaiting_continuation", o.COMPLETED = "completed", o.FAILED = "failed", o.EXPIRED = "expired", o))(P || {});
|
|
1371
|
+
const Co = e.nativeEnum(P), To = e.object({
|
|
1313
1372
|
csrf_token: e.string(),
|
|
1314
1373
|
auth0Client: e.string().optional(),
|
|
1315
|
-
authParams:
|
|
1374
|
+
authParams: Ie,
|
|
1316
1375
|
expires_at: e.string(),
|
|
1317
1376
|
deleted_at: e.string().optional(),
|
|
1318
1377
|
ip: e.string().optional(),
|
|
1319
1378
|
useragent: e.string().optional(),
|
|
1320
1379
|
session_id: e.string().optional(),
|
|
1321
1380
|
authorization_url: e.string().optional(),
|
|
1322
|
-
state:
|
|
1381
|
+
state: Co.optional().default(
|
|
1323
1382
|
"pending"
|
|
1324
1383
|
/* PENDING */
|
|
1325
1384
|
),
|
|
@@ -1330,14 +1389,14 @@ const So = e.nativeEnum(F), Ao = e.object({
|
|
|
1330
1389
|
// Set once user is authenticated
|
|
1331
1390
|
}).openapi({
|
|
1332
1391
|
description: "This represents a login sesion"
|
|
1333
|
-
}),
|
|
1334
|
-
...
|
|
1392
|
+
}), xt = e.object({
|
|
1393
|
+
...To.shape,
|
|
1335
1394
|
id: e.string().openapi({
|
|
1336
1395
|
description: "This is is used as the state in the universal login"
|
|
1337
1396
|
}),
|
|
1338
1397
|
created_at: e.string(),
|
|
1339
1398
|
updated_at: e.string()
|
|
1340
|
-
}),
|
|
1399
|
+
}), Oo = {
|
|
1341
1400
|
// Network & System
|
|
1342
1401
|
ACLS_SUMMARY: "acls_summary",
|
|
1343
1402
|
ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
|
|
@@ -1508,24 +1567,24 @@ const So = e.nativeEnum(F), Ao = e.object({
|
|
|
1508
1567
|
WARNING_DURING_LOGIN: "w",
|
|
1509
1568
|
WARNING_SENDING_NOTIFICATION: "wn",
|
|
1510
1569
|
WARNING_USER_MANAGEMENT: "wum"
|
|
1511
|
-
},
|
|
1512
|
-
(o) => Object.values(
|
|
1570
|
+
}, No = e.string().refine(
|
|
1571
|
+
(o) => Object.values(Oo).includes(o),
|
|
1513
1572
|
{ message: "Invalid log type" }
|
|
1514
|
-
),
|
|
1573
|
+
), Ro = e.object({
|
|
1515
1574
|
name: e.string(),
|
|
1516
1575
|
version: e.string(),
|
|
1517
1576
|
env: e.object({
|
|
1518
1577
|
node: e.string().optional()
|
|
1519
1578
|
}).optional()
|
|
1520
|
-
}),
|
|
1579
|
+
}), jo = e.object({
|
|
1521
1580
|
country_code: e.string().length(2),
|
|
1522
1581
|
city_name: e.string(),
|
|
1523
1582
|
latitude: e.string(),
|
|
1524
1583
|
longitude: e.string(),
|
|
1525
1584
|
time_zone: e.string(),
|
|
1526
1585
|
continent_code: e.string()
|
|
1527
|
-
}),
|
|
1528
|
-
type:
|
|
1586
|
+
}), wo = e.object({
|
|
1587
|
+
type: No,
|
|
1529
1588
|
date: e.string(),
|
|
1530
1589
|
description: e.string().optional(),
|
|
1531
1590
|
ip: e.string().optional(),
|
|
@@ -1544,30 +1603,30 @@ const So = e.nativeEnum(F), Ao = e.object({
|
|
|
1544
1603
|
strategy: e.string().optional(),
|
|
1545
1604
|
strategy_type: e.string().optional(),
|
|
1546
1605
|
hostname: e.string().optional(),
|
|
1547
|
-
auth0_client:
|
|
1606
|
+
auth0_client: Ro.optional(),
|
|
1548
1607
|
log_id: e.string().optional(),
|
|
1549
|
-
location_info:
|
|
1550
|
-
}),
|
|
1551
|
-
...
|
|
1608
|
+
location_info: jo.optional()
|
|
1609
|
+
}), Pt = e.object({
|
|
1610
|
+
...wo.shape,
|
|
1552
1611
|
log_id: e.string()
|
|
1553
|
-
}),
|
|
1612
|
+
}), Do = e.object({
|
|
1554
1613
|
id: e.string().optional(),
|
|
1555
1614
|
user_id: e.string(),
|
|
1556
1615
|
password: e.string(),
|
|
1557
1616
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
|
|
1558
1617
|
is_current: e.boolean().default(!0)
|
|
1559
|
-
}),
|
|
1618
|
+
}), Mt = Do.extend({
|
|
1560
1619
|
id: e.string(),
|
|
1561
1620
|
created_at: e.string(),
|
|
1562
1621
|
updated_at: e.string()
|
|
1563
|
-
}),
|
|
1622
|
+
}), M = e.object({
|
|
1564
1623
|
initial_user_agent: e.string().describe("First user agent of the device from which this user logged in"),
|
|
1565
1624
|
initial_ip: e.string().describe("First IP address associated with this session"),
|
|
1566
1625
|
initial_asn: e.string().describe("First autonomous system number associated with this session"),
|
|
1567
1626
|
last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
|
|
1568
1627
|
last_ip: e.string().describe("Last IP address from which this user logged in"),
|
|
1569
1628
|
last_asn: e.string().describe("Last autonomous system number from which this user logged in")
|
|
1570
|
-
}),
|
|
1629
|
+
}), Lo = e.object({
|
|
1571
1630
|
id: e.string(),
|
|
1572
1631
|
revoked_at: e.string().optional(),
|
|
1573
1632
|
used_at: e.string().optional(),
|
|
@@ -1575,17 +1634,17 @@ const So = e.nativeEnum(F), Ao = e.object({
|
|
|
1575
1634
|
expires_at: e.string().optional(),
|
|
1576
1635
|
login_session_id: e.string(),
|
|
1577
1636
|
idle_expires_at: e.string().optional(),
|
|
1578
|
-
device:
|
|
1637
|
+
device: M.describe(
|
|
1579
1638
|
"Metadata related to the device used in the session"
|
|
1580
1639
|
),
|
|
1581
1640
|
clients: e.array(e.string()).describe("List of client details for the session")
|
|
1582
|
-
}),
|
|
1641
|
+
}), Ht = e.object({
|
|
1583
1642
|
created_at: e.string(),
|
|
1584
1643
|
updated_at: e.string(),
|
|
1585
1644
|
authenticated_at: e.string(),
|
|
1586
1645
|
last_interaction_at: e.string(),
|
|
1587
|
-
...
|
|
1588
|
-
}),
|
|
1646
|
+
...Lo.shape
|
|
1647
|
+
}), Gt = e.object({
|
|
1589
1648
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
1590
1649
|
cert: e.string().openapi({ description: "The public certificate of the signing key" }),
|
|
1591
1650
|
fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
|
|
@@ -1610,7 +1669,7 @@ const So = e.nativeEnum(F), Ao = e.object({
|
|
|
1610
1669
|
type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
|
|
1611
1670
|
description: "The type of the signing key"
|
|
1612
1671
|
})
|
|
1613
|
-
}),
|
|
1672
|
+
}), vo = e.object({
|
|
1614
1673
|
id: e.string().optional(),
|
|
1615
1674
|
// Basic settings
|
|
1616
1675
|
audience: e.string(),
|
|
@@ -1763,14 +1822,14 @@ const So = e.nativeEnum(F), Ao = e.object({
|
|
|
1763
1822
|
message: e.string().optional()
|
|
1764
1823
|
}).optional()
|
|
1765
1824
|
}).optional()
|
|
1766
|
-
}),
|
|
1825
|
+
}), Bt = e.object({
|
|
1767
1826
|
created_at: e.string().nullable().transform((o) => o ?? ""),
|
|
1768
1827
|
updated_at: e.string().nullable().transform((o) => o ?? ""),
|
|
1769
|
-
...
|
|
1828
|
+
...vo.shape,
|
|
1770
1829
|
id: e.string()
|
|
1771
1830
|
});
|
|
1772
|
-
var
|
|
1773
|
-
const
|
|
1831
|
+
var ko = /* @__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))(ko || {});
|
|
1832
|
+
const Wt = e.object({
|
|
1774
1833
|
access_token: e.string(),
|
|
1775
1834
|
id_token: e.string().optional(),
|
|
1776
1835
|
scope: e.string().optional(),
|
|
@@ -1783,7 +1842,7 @@ e.object({
|
|
|
1783
1842
|
code: e.string(),
|
|
1784
1843
|
state: e.string().optional()
|
|
1785
1844
|
});
|
|
1786
|
-
const
|
|
1845
|
+
const Uo = e.object({
|
|
1787
1846
|
button_border_radius: e.number(),
|
|
1788
1847
|
button_border_weight: e.number(),
|
|
1789
1848
|
buttons_style: e.enum(["pill", "rounded", "sharp"]),
|
|
@@ -1793,7 +1852,7 @@ const jo = e.object({
|
|
|
1793
1852
|
show_widget_shadow: e.boolean(),
|
|
1794
1853
|
widget_border_weight: e.number(),
|
|
1795
1854
|
widget_corner_radius: e.number()
|
|
1796
|
-
}),
|
|
1855
|
+
}), Fo = e.object({
|
|
1797
1856
|
base_focus_color: e.string(),
|
|
1798
1857
|
base_hover_color: e.string(),
|
|
1799
1858
|
body_text: e.string(),
|
|
@@ -1816,7 +1875,7 @@ const jo = e.object({
|
|
|
1816
1875
|
}), g = e.object({
|
|
1817
1876
|
bold: e.boolean(),
|
|
1818
1877
|
size: e.number()
|
|
1819
|
-
}),
|
|
1878
|
+
}), xo = e.object({
|
|
1820
1879
|
body_text: g,
|
|
1821
1880
|
buttons_text: g,
|
|
1822
1881
|
font_url: e.string(),
|
|
@@ -1826,31 +1885,31 @@ const jo = e.object({
|
|
|
1826
1885
|
reference_text_size: e.number(),
|
|
1827
1886
|
subtitle: g,
|
|
1828
1887
|
title: g
|
|
1829
|
-
}),
|
|
1888
|
+
}), Po = e.object({
|
|
1830
1889
|
background_color: e.string(),
|
|
1831
1890
|
background_image_url: e.string(),
|
|
1832
1891
|
page_layout: e.enum(["center", "left", "right"])
|
|
1833
|
-
}),
|
|
1892
|
+
}), Mo = e.object({
|
|
1834
1893
|
header_text_alignment: e.enum(["center", "left", "right"]),
|
|
1835
1894
|
logo_height: e.number(),
|
|
1836
1895
|
logo_position: e.enum(["center", "left", "none", "right"]),
|
|
1837
1896
|
logo_url: e.string(),
|
|
1838
1897
|
social_buttons_layout: e.enum(["bottom", "top"])
|
|
1839
|
-
}),
|
|
1840
|
-
borders:
|
|
1841
|
-
colors:
|
|
1898
|
+
}), Ho = e.object({
|
|
1899
|
+
borders: Uo,
|
|
1900
|
+
colors: Fo,
|
|
1842
1901
|
displayName: e.string(),
|
|
1843
|
-
fonts:
|
|
1844
|
-
page_background:
|
|
1845
|
-
widget:
|
|
1846
|
-
}),
|
|
1902
|
+
fonts: xo,
|
|
1903
|
+
page_background: Po,
|
|
1904
|
+
widget: Mo
|
|
1905
|
+
}), Kt = Ho.extend({
|
|
1847
1906
|
themeId: e.string()
|
|
1848
|
-
}),
|
|
1907
|
+
}), zt = e.object({
|
|
1849
1908
|
universal_login_experience: e.enum(["new", "classic"]).default("new"),
|
|
1850
1909
|
identifier_first: e.boolean().default(!0),
|
|
1851
1910
|
password_first: e.boolean().default(!1),
|
|
1852
1911
|
webauthn_platform_first_factor: e.boolean()
|
|
1853
|
-
}),
|
|
1912
|
+
}), Xt = e.object({
|
|
1854
1913
|
name: e.string(),
|
|
1855
1914
|
enabled: e.boolean().optional().default(!0),
|
|
1856
1915
|
default_from_address: e.string().optional(),
|
|
@@ -1880,7 +1939,7 @@ const jo = e.object({
|
|
|
1880
1939
|
})
|
|
1881
1940
|
]),
|
|
1882
1941
|
settings: e.object({}).optional()
|
|
1883
|
-
}),
|
|
1942
|
+
}), Go = e.object({
|
|
1884
1943
|
// The actual refresh token value (primary key).
|
|
1885
1944
|
id: e.string(),
|
|
1886
1945
|
// Link to the session record
|
|
@@ -1893,7 +1952,7 @@ const jo = e.object({
|
|
|
1893
1952
|
idle_expires_at: e.string().optional(),
|
|
1894
1953
|
// When the token was last used.
|
|
1895
1954
|
last_exchanged_at: e.string().optional(),
|
|
1896
|
-
device:
|
|
1955
|
+
device: M,
|
|
1897
1956
|
resource_servers: e.array(
|
|
1898
1957
|
e.object({
|
|
1899
1958
|
audience: e.string(),
|
|
@@ -1901,21 +1960,21 @@ const jo = e.object({
|
|
|
1901
1960
|
})
|
|
1902
1961
|
),
|
|
1903
1962
|
rotating: e.boolean()
|
|
1904
|
-
}),
|
|
1963
|
+
}), qt = e.object({
|
|
1905
1964
|
// When the refresh token record was created.
|
|
1906
1965
|
created_at: e.string(),
|
|
1907
1966
|
// Spread in the rest of the refresh token properties.
|
|
1908
|
-
...
|
|
1909
|
-
}),
|
|
1967
|
+
...Go.shape
|
|
1968
|
+
}), Vt = e.object({
|
|
1910
1969
|
to: e.string(),
|
|
1911
1970
|
message: e.string()
|
|
1912
|
-
}),
|
|
1971
|
+
}), Yt = e.object({
|
|
1913
1972
|
name: e.string(),
|
|
1914
1973
|
options: e.object({})
|
|
1915
|
-
}),
|
|
1974
|
+
}), Bo = e.object({
|
|
1916
1975
|
value: e.string(),
|
|
1917
1976
|
description: e.string().optional()
|
|
1918
|
-
}),
|
|
1977
|
+
}), Wo = e.object({
|
|
1919
1978
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
1920
1979
|
enforce_policies: e.boolean().optional(),
|
|
1921
1980
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -1925,11 +1984,11 @@ const jo = e.object({
|
|
|
1925
1984
|
mtls: e.object({
|
|
1926
1985
|
bound_access_tokens: e.boolean().optional()
|
|
1927
1986
|
}).optional()
|
|
1928
|
-
}),
|
|
1987
|
+
}), Ko = e.object({
|
|
1929
1988
|
id: e.string().optional(),
|
|
1930
1989
|
name: e.string(),
|
|
1931
1990
|
identifier: e.string(),
|
|
1932
|
-
scopes: e.array(
|
|
1991
|
+
scopes: e.array(Bo).optional(),
|
|
1933
1992
|
signing_alg: e.string().optional(),
|
|
1934
1993
|
signing_secret: e.string().optional(),
|
|
1935
1994
|
token_lifetime: e.number().optional(),
|
|
@@ -1937,30 +1996,30 @@ const jo = e.object({
|
|
|
1937
1996
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
1938
1997
|
allow_offline_access: e.boolean().optional(),
|
|
1939
1998
|
verificationKey: e.string().optional(),
|
|
1940
|
-
options:
|
|
1999
|
+
options: Wo.optional(),
|
|
1941
2000
|
is_system: e.boolean().optional(),
|
|
1942
2001
|
metadata: e.record(e.any()).optional()
|
|
1943
|
-
}),
|
|
1944
|
-
...
|
|
2002
|
+
}), zo = e.object({
|
|
2003
|
+
...Ko.shape,
|
|
1945
2004
|
created_at: e.string().optional(),
|
|
1946
2005
|
updated_at: e.string().optional()
|
|
1947
|
-
}),
|
|
2006
|
+
}), Qt = e.array(zo), Xo = e.object({
|
|
1948
2007
|
role_id: e.string(),
|
|
1949
2008
|
resource_server_identifier: e.string(),
|
|
1950
2009
|
permission_name: e.string()
|
|
1951
|
-
}),
|
|
1952
|
-
...
|
|
2010
|
+
}), qo = e.object({
|
|
2011
|
+
...Xo.shape,
|
|
1953
2012
|
created_at: e.string()
|
|
1954
|
-
}),
|
|
2013
|
+
}), Jt = e.array(qo), Vo = e.object({
|
|
1955
2014
|
user_id: e.string(),
|
|
1956
2015
|
resource_server_identifier: e.string(),
|
|
1957
2016
|
permission_name: e.string(),
|
|
1958
2017
|
organization_id: e.string().optional()
|
|
1959
|
-
}),
|
|
1960
|
-
...
|
|
2018
|
+
}), Yo = e.object({
|
|
2019
|
+
...Vo.shape,
|
|
1961
2020
|
tenant_id: e.string(),
|
|
1962
2021
|
created_at: e.string().optional()
|
|
1963
|
-
}),
|
|
2022
|
+
}), Zt = e.array(Yo), Qo = e.object({
|
|
1964
2023
|
user_id: e.string(),
|
|
1965
2024
|
resource_server_identifier: e.string(),
|
|
1966
2025
|
resource_server_name: e.string(),
|
|
@@ -1968,17 +2027,17 @@ const jo = e.object({
|
|
|
1968
2027
|
description: e.string().nullable().optional(),
|
|
1969
2028
|
created_at: e.string().optional(),
|
|
1970
2029
|
organization_id: e.string().optional()
|
|
1971
|
-
}),
|
|
1972
|
-
|
|
1973
|
-
),
|
|
2030
|
+
}), $t = e.array(
|
|
2031
|
+
Qo
|
|
2032
|
+
), Jo = e.object({
|
|
1974
2033
|
user_id: e.string(),
|
|
1975
2034
|
role_id: e.string(),
|
|
1976
2035
|
organization_id: e.string().optional()
|
|
1977
|
-
}),
|
|
1978
|
-
...
|
|
2036
|
+
}), Zo = e.object({
|
|
2037
|
+
...Jo.shape,
|
|
1979
2038
|
tenant_id: e.string(),
|
|
1980
2039
|
created_at: e.string().optional()
|
|
1981
|
-
}),
|
|
2040
|
+
}), en = e.array(Zo), $o = e.object({
|
|
1982
2041
|
id: e.string().optional().openapi({
|
|
1983
2042
|
description: "The unique identifier of the role. If not provided, one will be generated."
|
|
1984
2043
|
}),
|
|
@@ -1992,13 +2051,13 @@ const jo = e.object({
|
|
|
1992
2051
|
metadata: e.record(e.any()).optional().openapi({
|
|
1993
2052
|
description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
|
|
1994
2053
|
})
|
|
1995
|
-
}),
|
|
2054
|
+
}), et = $o.extend({
|
|
1996
2055
|
id: e.string().openapi({
|
|
1997
2056
|
description: "The unique identifier of the role"
|
|
1998
2057
|
}),
|
|
1999
2058
|
created_at: e.string().optional(),
|
|
2000
2059
|
updated_at: e.string().optional()
|
|
2001
|
-
}),
|
|
2060
|
+
}), on = e.array(et), ot = e.object({
|
|
2002
2061
|
logo_url: e.string().optional().openapi({
|
|
2003
2062
|
description: "URL of the organization's logo"
|
|
2004
2063
|
}),
|
|
@@ -2010,7 +2069,7 @@ const jo = e.object({
|
|
|
2010
2069
|
description: "Page background color in hex format (e.g., #FFFFFF)"
|
|
2011
2070
|
})
|
|
2012
2071
|
}).optional()
|
|
2013
|
-
}).optional(),
|
|
2072
|
+
}).optional(), tt = e.object({
|
|
2014
2073
|
connection_id: e.string().openapi({
|
|
2015
2074
|
description: "ID of the connection"
|
|
2016
2075
|
}),
|
|
@@ -2023,7 +2082,7 @@ const jo = e.object({
|
|
|
2023
2082
|
is_signup_enabled: e.boolean().default(!0).openapi({
|
|
2024
2083
|
description: "Whether signup is enabled for this connection"
|
|
2025
2084
|
})
|
|
2026
|
-
}),
|
|
2085
|
+
}), nt = e.object({
|
|
2027
2086
|
client_credentials: e.object({
|
|
2028
2087
|
enforce: e.boolean().default(!1).openapi({
|
|
2029
2088
|
description: "Whether to enforce token quota limits"
|
|
@@ -2035,7 +2094,7 @@ const jo = e.object({
|
|
|
2035
2094
|
description: "Maximum tokens per hour (0 = unlimited)"
|
|
2036
2095
|
})
|
|
2037
2096
|
}).optional()
|
|
2038
|
-
}).optional(),
|
|
2097
|
+
}).optional(), it = e.object({
|
|
2039
2098
|
id: e.string().optional(),
|
|
2040
2099
|
name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
|
|
2041
2100
|
message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
|
|
@@ -2045,34 +2104,34 @@ const jo = e.object({
|
|
|
2045
2104
|
display_name: e.string().optional().openapi({
|
|
2046
2105
|
description: "The display name of the organization"
|
|
2047
2106
|
}),
|
|
2048
|
-
branding:
|
|
2107
|
+
branding: ot,
|
|
2049
2108
|
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
2050
2109
|
description: "Custom metadata for the organization"
|
|
2051
2110
|
}),
|
|
2052
|
-
enabled_connections: e.array(
|
|
2111
|
+
enabled_connections: e.array(tt).default([]).optional().openapi({
|
|
2053
2112
|
description: "List of enabled connections for the organization"
|
|
2054
2113
|
}),
|
|
2055
|
-
token_quota:
|
|
2056
|
-
}),
|
|
2057
|
-
...
|
|
2058
|
-
...
|
|
2114
|
+
token_quota: nt
|
|
2115
|
+
}), tn = e.object({
|
|
2116
|
+
...it.shape,
|
|
2117
|
+
...s.shape,
|
|
2059
2118
|
id: e.string(),
|
|
2060
2119
|
// Override name to be lenient when reading from database (to support existing uppercase names)
|
|
2061
2120
|
name: e.string().min(1).openapi({
|
|
2062
2121
|
description: "The name of the organization"
|
|
2063
2122
|
})
|
|
2064
|
-
}),
|
|
2123
|
+
}), at = e.object({
|
|
2065
2124
|
user_id: e.string().openapi({
|
|
2066
2125
|
description: "ID of the user"
|
|
2067
2126
|
}),
|
|
2068
2127
|
organization_id: e.string().openapi({
|
|
2069
2128
|
description: "ID of the organization"
|
|
2070
2129
|
})
|
|
2071
|
-
}),
|
|
2072
|
-
...
|
|
2073
|
-
...
|
|
2130
|
+
}), nn = e.object({
|
|
2131
|
+
...at.shape,
|
|
2132
|
+
...s.shape,
|
|
2074
2133
|
id: e.string()
|
|
2075
|
-
}),
|
|
2134
|
+
}), an = e.object({
|
|
2076
2135
|
// Session settings
|
|
2077
2136
|
idle_session_lifetime: e.number().optional(),
|
|
2078
2137
|
session_lifetime: e.number().optional(),
|
|
@@ -2170,7 +2229,7 @@ const jo = e.object({
|
|
|
2170
2229
|
message: e.string().optional()
|
|
2171
2230
|
}).optional()
|
|
2172
2231
|
}).optional()
|
|
2173
|
-
}),
|
|
2232
|
+
}), rn = e.object({
|
|
2174
2233
|
date: e.string().openapi({
|
|
2175
2234
|
description: "Date these events occurred in ISO 8601 format",
|
|
2176
2235
|
example: "2025-12-19"
|
|
@@ -2195,10 +2254,10 @@ const jo = e.object({
|
|
|
2195
2254
|
description: "Approximate date and time the first event occurred in ISO 8601 format",
|
|
2196
2255
|
example: "2025-12-19T00:00:00.000Z"
|
|
2197
2256
|
})
|
|
2198
|
-
}),
|
|
2257
|
+
}), sn = e.number().openapi({
|
|
2199
2258
|
description: "Number of active users in the last 30 days",
|
|
2200
2259
|
example: 1234
|
|
2201
|
-
}),
|
|
2260
|
+
}), rt = e.enum([
|
|
2202
2261
|
"login",
|
|
2203
2262
|
"login-id",
|
|
2204
2263
|
"login-password",
|
|
@@ -2226,66 +2285,66 @@ const jo = e.object({
|
|
|
2226
2285
|
"passkeys",
|
|
2227
2286
|
"captcha",
|
|
2228
2287
|
"custom-form"
|
|
2229
|
-
]),
|
|
2288
|
+
]), st = e.record(e.string(), e.string()).openapi({
|
|
2230
2289
|
type: "object",
|
|
2231
2290
|
additionalProperties: { type: "string" }
|
|
2232
|
-
}),
|
|
2233
|
-
prompt:
|
|
2291
|
+
}), ln = e.object({
|
|
2292
|
+
prompt: rt,
|
|
2234
2293
|
language: e.string(),
|
|
2235
|
-
custom_text:
|
|
2294
|
+
custom_text: st
|
|
2236
2295
|
});
|
|
2237
|
-
function
|
|
2296
|
+
function pn(o) {
|
|
2238
2297
|
const [n, i] = o.split("|");
|
|
2239
2298
|
if (!n || !i)
|
|
2240
2299
|
throw new Error(`Invalid user_id: ${o}`);
|
|
2241
2300
|
return { connection: n, id: i };
|
|
2242
2301
|
}
|
|
2243
|
-
function
|
|
2302
|
+
function cn(o) {
|
|
2244
2303
|
const {
|
|
2245
2304
|
primary: n,
|
|
2246
2305
|
secondaries: i,
|
|
2247
|
-
syncMethods:
|
|
2248
|
-
} = o,
|
|
2249
|
-
get(
|
|
2306
|
+
syncMethods: O = ["create", "update", "remove", "delete", "set"]
|
|
2307
|
+
} = o, E = {
|
|
2308
|
+
get(p, a) {
|
|
2250
2309
|
if (typeof a == "symbol")
|
|
2251
|
-
return
|
|
2252
|
-
const c =
|
|
2253
|
-
return typeof c != "function" ? c :
|
|
2254
|
-
const
|
|
2255
|
-
for (const
|
|
2256
|
-
const
|
|
2257
|
-
if (typeof
|
|
2310
|
+
return p[a];
|
|
2311
|
+
const c = p[a];
|
|
2312
|
+
return typeof c != "function" ? c : O.includes(a) ? async (..._) => {
|
|
2313
|
+
const S = await c.apply(p, _), d = [];
|
|
2314
|
+
for (const r of i) {
|
|
2315
|
+
const h = r.adapter[a];
|
|
2316
|
+
if (typeof h != "function")
|
|
2258
2317
|
continue;
|
|
2259
|
-
const
|
|
2318
|
+
const A = (async () => {
|
|
2260
2319
|
try {
|
|
2261
|
-
await
|
|
2262
|
-
} catch (
|
|
2320
|
+
await h.apply(r.adapter, _);
|
|
2321
|
+
} catch (b) {
|
|
2263
2322
|
try {
|
|
2264
|
-
|
|
2323
|
+
r.onError ? r.onError(b, a, _) : console.error(
|
|
2265
2324
|
`Passthrough adapter: secondary write failed for ${a}:`,
|
|
2266
|
-
|
|
2325
|
+
b
|
|
2267
2326
|
);
|
|
2268
|
-
} catch (
|
|
2327
|
+
} catch (I) {
|
|
2269
2328
|
console.error(
|
|
2270
2329
|
`Passthrough adapter: onError handler threw for ${a}:`,
|
|
2271
|
-
|
|
2330
|
+
I
|
|
2272
2331
|
);
|
|
2273
2332
|
}
|
|
2274
2333
|
}
|
|
2275
2334
|
})();
|
|
2276
|
-
|
|
2335
|
+
r.blocking && d.push(A);
|
|
2277
2336
|
}
|
|
2278
|
-
return d.length > 0 && await Promise.all(d),
|
|
2279
|
-
} : c.bind(
|
|
2337
|
+
return d.length > 0 && await Promise.all(d), S;
|
|
2338
|
+
} : c.bind(p);
|
|
2280
2339
|
}
|
|
2281
2340
|
};
|
|
2282
|
-
return new Proxy(n,
|
|
2341
|
+
return new Proxy(n, E);
|
|
2283
2342
|
}
|
|
2284
|
-
function
|
|
2343
|
+
function _n(o) {
|
|
2285
2344
|
return o;
|
|
2286
2345
|
}
|
|
2287
|
-
function
|
|
2288
|
-
var
|
|
2346
|
+
function dn(o) {
|
|
2347
|
+
var E, p, a, c, _, S, d, r, h, A, b, I;
|
|
2289
2348
|
const n = o == null ? void 0 : o.options;
|
|
2290
2349
|
if (!n)
|
|
2291
2350
|
return {
|
|
@@ -2296,172 +2355,174 @@ function rn(o) {
|
|
|
2296
2355
|
};
|
|
2297
2356
|
const i = n.attributes;
|
|
2298
2357
|
if (i) {
|
|
2299
|
-
const
|
|
2358
|
+
const H = ((p = (E = i.username) == null ? void 0 : E.identifier) == null ? void 0 : p.active) === !0, G = ((c = (a = i.email) == null ? void 0 : a.identifier) == null ? void 0 : c.active) !== !1, B = ((S = (_ = i.username) == null ? void 0 : _.validation) == null ? void 0 : S.min_length) ?? 1, W = ((r = (d = i.username) == null ? void 0 : d.validation) == null ? void 0 : r.max_length) ?? 15;
|
|
2300
2359
|
return {
|
|
2301
|
-
usernameIdentifierActive:
|
|
2302
|
-
emailIdentifierActive:
|
|
2303
|
-
usernameMinLength:
|
|
2304
|
-
usernameMaxLength:
|
|
2360
|
+
usernameIdentifierActive: H,
|
|
2361
|
+
emailIdentifierActive: G,
|
|
2362
|
+
usernameMinLength: B,
|
|
2363
|
+
usernameMaxLength: W
|
|
2305
2364
|
};
|
|
2306
2365
|
}
|
|
2307
2366
|
return {
|
|
2308
2367
|
usernameIdentifierActive: n.requires_username === !0,
|
|
2309
2368
|
emailIdentifierActive: !0,
|
|
2310
|
-
usernameMinLength: ((
|
|
2311
|
-
usernameMaxLength: ((
|
|
2369
|
+
usernameMinLength: ((A = (h = n.validation) == null ? void 0 : h.username) == null ? void 0 : A.min) ?? 1,
|
|
2370
|
+
usernameMaxLength: ((I = (b = n.validation) == null ? void 0 : b.username) == null ? void 0 : I.max) ?? 15
|
|
2312
2371
|
};
|
|
2313
2372
|
}
|
|
2314
2373
|
export {
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2374
|
+
ct as Auth0ActionEnum,
|
|
2375
|
+
Ro as Auth0Client,
|
|
2376
|
+
D as AuthorizationResponseMode,
|
|
2377
|
+
w as AuthorizationResponseType,
|
|
2319
2378
|
L as CodeChallengeMethod,
|
|
2320
|
-
|
|
2379
|
+
j as ComponentCategory,
|
|
2321
2380
|
R as ComponentType,
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2381
|
+
_t as EmailActionEnum,
|
|
2382
|
+
Ct as FORM_FIELD_TYPES,
|
|
2383
|
+
pt as FlowActionTypeEnum,
|
|
2384
|
+
ko as GrantType,
|
|
2385
|
+
jo as LocationInfo,
|
|
2386
|
+
Oo as LogTypes,
|
|
2387
|
+
P as LoginSessionState,
|
|
2388
|
+
ge as NodeType,
|
|
2389
|
+
q as RedirectTargetEnum,
|
|
2390
|
+
he as actionNodeSchema,
|
|
2391
|
+
sn as activeUsersResponseSchema,
|
|
2392
|
+
$ as addressSchema,
|
|
2393
|
+
Et as auth0FlowInsertSchema,
|
|
2394
|
+
Ae as auth0FlowSchema,
|
|
2395
|
+
gt as auth0QuerySchema,
|
|
2396
|
+
z as auth0UpdateUserActionSchema,
|
|
2397
|
+
mt as auth0UserResponseSchema,
|
|
2398
|
+
Ie as authParamsSchema,
|
|
2340
2399
|
N as baseUserSchema,
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2400
|
+
no as blockComponentSchema,
|
|
2401
|
+
Uo as bordersSchema,
|
|
2402
|
+
St as brandingSchema,
|
|
2403
|
+
le as buttonComponentSchema,
|
|
2404
|
+
ae as clientGrantInsertSchema,
|
|
2405
|
+
ft as clientGrantListSchema,
|
|
2406
|
+
re as clientGrantSchema,
|
|
2407
|
+
ie as clientInsertSchema,
|
|
2408
|
+
bt as clientSchema,
|
|
2409
|
+
Ce as codeInsertSchema,
|
|
2410
|
+
At as codeSchema,
|
|
2411
|
+
ye as codeTypeSchema,
|
|
2412
|
+
Fo as colorsSchema,
|
|
2413
|
+
_o as componentMessageSchema,
|
|
2414
|
+
de as componentSchema,
|
|
2415
|
+
Oe as connectionInsertSchema,
|
|
2416
|
+
Te as connectionOptionsSchema,
|
|
2417
|
+
It as connectionSchema,
|
|
2359
2418
|
u as coordinatesSchema,
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2419
|
+
cn as createPassthroughAdapter,
|
|
2420
|
+
_n as createWriteOnlyAdapter,
|
|
2421
|
+
Ne as customDomainInsertSchema,
|
|
2422
|
+
je as customDomainSchema,
|
|
2423
|
+
yt as customDomainWithTenantIdSchema,
|
|
2424
|
+
ln as customTextEntrySchema,
|
|
2425
|
+
st as customTextSchema,
|
|
2426
|
+
rn as dailyStatsSchema,
|
|
2427
|
+
Xt as emailProviderSchema,
|
|
2428
|
+
K as emailVerificationRulesSchema,
|
|
2429
|
+
X as emailVerifyActionSchema,
|
|
2430
|
+
Se as endingSchema,
|
|
2431
|
+
ao as fieldComponentSchema,
|
|
2432
|
+
Y as flowActionStepSchema,
|
|
2433
|
+
Q as flowInsertSchema,
|
|
2434
|
+
dt as flowSchema,
|
|
2435
|
+
ce as flowsFieldComponentSchema,
|
|
2436
|
+
me as flowsFlowNodeSchema,
|
|
2437
|
+
ue as flowsStepNodeSchema,
|
|
2379
2438
|
g as fontDetailsSchema,
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2439
|
+
xo as fontsSchema,
|
|
2440
|
+
Tt as formControlSchema,
|
|
2441
|
+
co as formInsertSchema,
|
|
2383
2442
|
v as formNodeComponentDefinition,
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2443
|
+
po as formNodeSchema,
|
|
2444
|
+
Ot as formSchema,
|
|
2445
|
+
_e as genericComponentSchema,
|
|
2446
|
+
be as genericNodeSchema,
|
|
2447
|
+
dn as getConnectionIdentifierConfig,
|
|
2448
|
+
Lt as hookInsertSchema,
|
|
2449
|
+
vt as hookSchema,
|
|
2450
|
+
x as hookTemplateId,
|
|
2451
|
+
Dt as hookTemplates,
|
|
2452
|
+
Z as identitySchema,
|
|
2453
|
+
Io as inviteInsertSchema,
|
|
2454
|
+
kt as inviteSchema,
|
|
2455
|
+
Ao as inviteeSchema,
|
|
2456
|
+
So as inviterSchema,
|
|
2457
|
+
Rt as isBlockComponent,
|
|
2458
|
+
wt as isFieldComponent,
|
|
2459
|
+
jt as isWidgetComponent,
|
|
2460
|
+
Ut as jwksKeySchema,
|
|
2461
|
+
yo as jwksSchema,
|
|
2462
|
+
pe as legalComponentSchema,
|
|
2463
|
+
wo as logInsertSchema,
|
|
2464
|
+
Pt as logSchema,
|
|
2465
|
+
To as loginSessionInsertSchema,
|
|
2466
|
+
xt as loginSessionSchema,
|
|
2467
|
+
Co as loginSessionStateSchema,
|
|
2468
|
+
fe as nodeSchema,
|
|
2469
|
+
Ft as openIDConfigurationSchema,
|
|
2470
|
+
ot as organizationBrandingSchema,
|
|
2471
|
+
tt as organizationEnabledConnectionSchema,
|
|
2472
|
+
it as organizationInsertSchema,
|
|
2473
|
+
tn as organizationSchema,
|
|
2474
|
+
nt as organizationTokenQuotaSchema,
|
|
2475
|
+
Po as pageBackgroundSchema,
|
|
2476
|
+
pn as parseUserId,
|
|
2477
|
+
Do as passwordInsertSchema,
|
|
2478
|
+
Mt as passwordSchema,
|
|
2479
|
+
J as profileDataSchema,
|
|
2480
|
+
rt as promptScreenSchema,
|
|
2481
|
+
zt as promptSettingSchema,
|
|
2482
|
+
V as redirectActionSchema,
|
|
2483
|
+
Go as refreshTokenInsertSchema,
|
|
2484
|
+
qt as refreshTokenSchema,
|
|
2485
|
+
Ko as resourceServerInsertSchema,
|
|
2486
|
+
Qt as resourceServerListSchema,
|
|
2487
|
+
Wo as resourceServerOptionsSchema,
|
|
2488
|
+
zo as resourceServerSchema,
|
|
2489
|
+
Bo as resourceServerScopeSchema,
|
|
2490
|
+
se as richTextComponentSchema,
|
|
2491
|
+
$o as roleInsertSchema,
|
|
2492
|
+
on as roleListSchema,
|
|
2493
|
+
Xo as rolePermissionInsertSchema,
|
|
2494
|
+
Jt as rolePermissionListSchema,
|
|
2495
|
+
qo as rolePermissionSchema,
|
|
2496
|
+
et as roleSchema,
|
|
2497
|
+
go as screenLinkSchema,
|
|
2498
|
+
Lo as sessionInsertSchema,
|
|
2499
|
+
Ht as sessionSchema,
|
|
2500
|
+
Gt as signingKeySchema,
|
|
2501
|
+
Yt as smsProviderSchema,
|
|
2502
|
+
Vt as smsSendParamsSchema,
|
|
2503
|
+
Ee as startSchema,
|
|
2504
|
+
vo as tenantInsertSchema,
|
|
2505
|
+
Bt as tenantSchema,
|
|
2506
|
+
an as tenantSettingsSchema,
|
|
2507
|
+
Ho as themeInsertSchema,
|
|
2508
|
+
Kt as themeSchema,
|
|
2509
|
+
Wt as tokenResponseSchema,
|
|
2510
|
+
ut as totalsSchema,
|
|
2511
|
+
Nt as uiScreenSchema,
|
|
2512
|
+
ee as userInsertSchema,
|
|
2513
|
+
at as userOrganizationInsertSchema,
|
|
2514
|
+
nn as userOrganizationSchema,
|
|
2515
|
+
Vo as userPermissionInsertSchema,
|
|
2516
|
+
Zt as userPermissionListSchema,
|
|
2517
|
+
Yo as userPermissionSchema,
|
|
2518
|
+
$t as userPermissionWithDetailsListSchema,
|
|
2519
|
+
Qo as userPermissionWithDetailsSchema,
|
|
2520
|
+
ht as userResponseSchema,
|
|
2521
|
+
Jo as userRoleInsertSchema,
|
|
2522
|
+
en as userRoleListSchema,
|
|
2523
|
+
Zo as userRoleSchema,
|
|
2524
|
+
oe as userSchema,
|
|
2525
|
+
Re as verificationMethodsSchema,
|
|
2526
|
+
io as widgetComponentSchema,
|
|
2527
|
+
Mo as widgetSchema
|
|
2467
2528
|
};
|