@authhero/adapter-interfaces 0.147.0 → 0.149.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 +1311 -115
- package/dist/adapter-interfaces.mjs +478 -431
- package/package.json +1 -1
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { z as e } from "@hono/zod-openapi";
|
|
2
|
-
const
|
|
2
|
+
const r = e.object({
|
|
3
3
|
created_at: e.string(),
|
|
4
4
|
updated_at: e.string()
|
|
5
|
-
}),
|
|
5
|
+
}), gt = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), ut = e.enum([
|
|
6
6
|
"CREATE_USER",
|
|
7
7
|
"GET_USER",
|
|
8
8
|
"UPDATE_USER",
|
|
9
9
|
"SEND_REQUEST",
|
|
10
10
|
"SEND_EMAIL"
|
|
11
|
-
]),
|
|
11
|
+
]), mt = e.enum(["VERIFY_EMAIL"]), q = 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
|
+
}), X = 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 s = e.object({
|
|
|
27
27
|
user_id: e.string(),
|
|
28
28
|
changes: e.record(e.string(), e.any())
|
|
29
29
|
})
|
|
30
|
-
}),
|
|
30
|
+
}), V = 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 s = e.object({
|
|
|
36
36
|
mask_output: e.boolean().optional(),
|
|
37
37
|
params: e.object({
|
|
38
38
|
email: e.string(),
|
|
39
|
-
rules:
|
|
39
|
+
rules: q.optional()
|
|
40
40
|
})
|
|
41
|
-
}),
|
|
41
|
+
}), Y = e.enum(["change-email", "account", "custom"]), Q = 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 s = 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: Y.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
|
-
z,
|
|
56
|
+
}), Z = e.union([
|
|
58
57
|
X,
|
|
59
|
-
V
|
|
60
|
-
|
|
58
|
+
V,
|
|
59
|
+
Q
|
|
60
|
+
]), J = 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(Z).optional().default([]).openapi({
|
|
66
66
|
description: "The list of actions to execute in sequence"
|
|
67
67
|
})
|
|
68
|
-
}),
|
|
69
|
-
...
|
|
68
|
+
}), ht = J.extend({
|
|
69
|
+
...r.shape,
|
|
70
70
|
id: e.string().openapi({
|
|
71
71
|
description: "Unique identifier for the flow",
|
|
72
72
|
example: "af_12tMpdJ3iek7svMyZkSh5M"
|
|
73
73
|
})
|
|
74
|
-
}),
|
|
74
|
+
}), bt = 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 s = 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
|
+
}), ft = 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
|
+
}), $ = 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 s = 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()), ee = e.object({
|
|
105
105
|
connection: e.string(),
|
|
106
106
|
user_id: e.string(),
|
|
107
107
|
provider: e.string(),
|
|
@@ -114,8 +114,8 @@ const s = e.object({
|
|
|
114
114
|
access_token: e.string().optional(),
|
|
115
115
|
access_token_secret: e.string().optional(),
|
|
116
116
|
refresh_token: e.string().optional(),
|
|
117
|
-
profileData:
|
|
118
|
-
}),
|
|
117
|
+
profileData: $.optional()
|
|
118
|
+
}), oe = e.object({
|
|
119
119
|
formatted: e.string().optional(),
|
|
120
120
|
// Full mailing address
|
|
121
121
|
street_address: e.string().optional(),
|
|
@@ -160,8 +160,8 @@ const s = e.object({
|
|
|
160
160
|
zoneinfo: e.string().optional(),
|
|
161
161
|
// e.g., "Europe/Paris"
|
|
162
162
|
// OIDC address claim (OIDC Core 5.1.1)
|
|
163
|
-
address:
|
|
164
|
-
}),
|
|
163
|
+
address: oe
|
|
164
|
+
}), te = N.extend({
|
|
165
165
|
email_verified: e.boolean().default(!1),
|
|
166
166
|
verify_email: e.boolean().optional(),
|
|
167
167
|
last_ip: e.string().optional(),
|
|
@@ -176,29 +176,29 @@ const s = e.object({
|
|
|
176
176
|
hash: e.string(),
|
|
177
177
|
algorithm: e.string()
|
|
178
178
|
}).optional()
|
|
179
|
-
}),
|
|
180
|
-
...
|
|
181
|
-
...
|
|
179
|
+
}), ne = e.object({
|
|
180
|
+
...te.omit({ password: !0 }).shape,
|
|
181
|
+
...r.shape,
|
|
182
182
|
user_id: e.string(),
|
|
183
183
|
provider: e.string(),
|
|
184
184
|
is_social: e.boolean(),
|
|
185
185
|
email: e.string().optional(),
|
|
186
186
|
login_count: e.number().default(0),
|
|
187
|
-
identities: e.array(
|
|
188
|
-
}),
|
|
187
|
+
identities: e.array(ee).optional()
|
|
188
|
+
}), Et = ne, St = N.extend({
|
|
189
189
|
login_count: e.number(),
|
|
190
190
|
multifactor: e.array(e.string()).optional(),
|
|
191
191
|
last_ip: e.string().optional(),
|
|
192
192
|
last_login: e.string().optional(),
|
|
193
193
|
user_id: e.string()
|
|
194
194
|
}).catchall(e.any());
|
|
195
|
-
let
|
|
195
|
+
let ie = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", ae = (o = 21) => {
|
|
196
196
|
let n = "", i = crypto.getRandomValues(new Uint8Array(o |= 0));
|
|
197
197
|
for (; o--; )
|
|
198
|
-
n +=
|
|
198
|
+
n += ie[i[o] & 63];
|
|
199
199
|
return n;
|
|
200
200
|
};
|
|
201
|
-
const
|
|
201
|
+
const se = e.object({
|
|
202
202
|
client_id: e.string().openapi({
|
|
203
203
|
description: "ID of this client."
|
|
204
204
|
}),
|
|
@@ -211,7 +211,7 @@ const ie = e.object({
|
|
|
211
211
|
global: e.boolean().default(!1).openapi({
|
|
212
212
|
description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
|
|
213
213
|
}),
|
|
214
|
-
client_secret: e.string().default(() =>
|
|
214
|
+
client_secret: e.string().default(() => ae()).optional().openapi({
|
|
215
215
|
description: "Client secret (which you must not make public)."
|
|
216
216
|
}),
|
|
217
217
|
app_type: e.enum([
|
|
@@ -371,11 +371,11 @@ const ie = e.object({
|
|
|
371
371
|
description: "Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"
|
|
372
372
|
}),
|
|
373
373
|
token_quota: e.record(e.any()).default({}).optional()
|
|
374
|
-
}),
|
|
374
|
+
}), At = e.object({
|
|
375
375
|
created_at: e.string(),
|
|
376
376
|
updated_at: e.string(),
|
|
377
|
-
...
|
|
378
|
-
}),
|
|
377
|
+
...se.shape
|
|
378
|
+
}), re = e.object({
|
|
379
379
|
client_id: e.string().min(1).openapi({
|
|
380
380
|
description: "ID of the client."
|
|
381
381
|
}),
|
|
@@ -400,23 +400,23 @@ const ie = e.object({
|
|
|
400
400
|
authorization_details_types: e.array(e.string()).optional().openapi({
|
|
401
401
|
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
402
|
})
|
|
403
|
-
}),
|
|
403
|
+
}), le = e.object({
|
|
404
404
|
id: e.string().openapi({
|
|
405
405
|
description: "ID of the client grant."
|
|
406
406
|
}),
|
|
407
|
-
...
|
|
407
|
+
...re.shape,
|
|
408
408
|
created_at: e.string().optional(),
|
|
409
409
|
updated_at: e.string().optional()
|
|
410
|
-
}),
|
|
410
|
+
}), It = e.array(le), u = e.object({
|
|
411
411
|
x: e.number(),
|
|
412
412
|
y: e.number()
|
|
413
413
|
});
|
|
414
|
-
var
|
|
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 || {}), R = /* @__PURE__ */ ((o) => (o.BLOCK = "BLOCK", o.FIELD = "FIELD", o))(R || {});
|
|
415
415
|
const y = e.object({
|
|
416
416
|
id: e.string(),
|
|
417
|
-
category: e.nativeEnum(
|
|
418
|
-
type: e.nativeEnum(
|
|
419
|
-
}),
|
|
417
|
+
category: e.nativeEnum(R),
|
|
418
|
+
type: e.nativeEnum(w)
|
|
419
|
+
}), pe = y.extend({
|
|
420
420
|
category: e.literal(
|
|
421
421
|
"BLOCK"
|
|
422
422
|
/* BLOCK */
|
|
@@ -428,7 +428,7 @@ const y = e.object({
|
|
|
428
428
|
config: e.object({
|
|
429
429
|
content: e.string()
|
|
430
430
|
}).passthrough()
|
|
431
|
-
}),
|
|
431
|
+
}), ce = y.extend({
|
|
432
432
|
category: e.literal(
|
|
433
433
|
"BLOCK"
|
|
434
434
|
/* BLOCK */
|
|
@@ -450,7 +450,7 @@ const y = e.object({
|
|
|
450
450
|
config: e.object({
|
|
451
451
|
text: e.string()
|
|
452
452
|
}).passthrough()
|
|
453
|
-
}),
|
|
453
|
+
}), _e = y.extend({
|
|
454
454
|
category: e.literal(
|
|
455
455
|
"FIELD"
|
|
456
456
|
/* FIELD */
|
|
@@ -464,7 +464,7 @@ const y = e.object({
|
|
|
464
464
|
config: e.object({
|
|
465
465
|
text: e.string()
|
|
466
466
|
}).passthrough()
|
|
467
|
-
}),
|
|
467
|
+
}), de = y.extend({
|
|
468
468
|
category: e.literal(
|
|
469
469
|
"FIELD"
|
|
470
470
|
/* FIELD */
|
|
@@ -517,19 +517,19 @@ const y = e.object({
|
|
|
517
517
|
label: e.string().optional(),
|
|
518
518
|
placeholder: e.string().optional()
|
|
519
519
|
}).passthrough()
|
|
520
|
-
}),
|
|
520
|
+
}), ge = e.object({
|
|
521
521
|
id: e.string(),
|
|
522
522
|
category: e.string(),
|
|
523
523
|
type: e.string()
|
|
524
|
-
}).passthrough(),
|
|
525
|
-
se,
|
|
526
|
-
le,
|
|
524
|
+
}).passthrough(), ue = e.union([
|
|
527
525
|
pe,
|
|
528
526
|
ce,
|
|
529
|
-
_e
|
|
527
|
+
_e,
|
|
528
|
+
de,
|
|
529
|
+
ge
|
|
530
530
|
]);
|
|
531
|
-
var
|
|
532
|
-
const
|
|
531
|
+
var me = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(me || {});
|
|
532
|
+
const he = e.object({
|
|
533
533
|
id: e.string(),
|
|
534
534
|
type: e.literal(
|
|
535
535
|
"STEP"
|
|
@@ -538,10 +538,10 @@ const ue = e.object({
|
|
|
538
538
|
coordinates: u,
|
|
539
539
|
alias: e.string().optional(),
|
|
540
540
|
config: e.object({
|
|
541
|
-
components: e.array(
|
|
541
|
+
components: e.array(ue),
|
|
542
542
|
next_node: e.string()
|
|
543
543
|
}).passthrough()
|
|
544
|
-
}),
|
|
544
|
+
}), be = e.object({
|
|
545
545
|
id: e.string(),
|
|
546
546
|
type: e.literal(
|
|
547
547
|
"FLOW"
|
|
@@ -553,7 +553,7 @@ const ue = e.object({
|
|
|
553
553
|
flow_id: e.string(),
|
|
554
554
|
next_node: e.string()
|
|
555
555
|
})
|
|
556
|
-
}),
|
|
556
|
+
}), fe = e.object({
|
|
557
557
|
id: e.string(),
|
|
558
558
|
type: e.literal(
|
|
559
559
|
"ACTION"
|
|
@@ -575,43 +575,43 @@ const ue = e.object({
|
|
|
575
575
|
description: "The next node to navigate to after action (for non-redirect actions)"
|
|
576
576
|
})
|
|
577
577
|
}).passthrough()
|
|
578
|
-
}),
|
|
578
|
+
}), Ee = e.object({
|
|
579
579
|
id: e.string(),
|
|
580
580
|
type: e.string(),
|
|
581
581
|
coordinates: u
|
|
582
|
-
}).passthrough(),
|
|
583
|
-
ue,
|
|
584
|
-
me,
|
|
582
|
+
}).passthrough(), Se = e.union([
|
|
585
583
|
he,
|
|
586
|
-
be
|
|
587
|
-
|
|
584
|
+
be,
|
|
585
|
+
fe,
|
|
586
|
+
Ee
|
|
587
|
+
]), Ae = e.object({
|
|
588
588
|
next_node: e.string(),
|
|
589
589
|
coordinates: u
|
|
590
|
-
}).passthrough(),
|
|
590
|
+
}).passthrough(), Ie = e.object({
|
|
591
591
|
resume_flow: e.boolean().optional(),
|
|
592
592
|
coordinates: u
|
|
593
|
-
}).passthrough(),
|
|
593
|
+
}).passthrough(), ye = e.object({
|
|
594
594
|
id: e.string(),
|
|
595
595
|
name: e.string(),
|
|
596
596
|
languages: e.object({
|
|
597
597
|
primary: e.string()
|
|
598
598
|
}).passthrough(),
|
|
599
|
-
nodes: e.array(
|
|
600
|
-
start:
|
|
601
|
-
ending:
|
|
599
|
+
nodes: e.array(Se),
|
|
600
|
+
start: Ae,
|
|
601
|
+
ending: Ie,
|
|
602
602
|
created_at: e.string(),
|
|
603
603
|
updated_at: e.string(),
|
|
604
604
|
links: e.object({
|
|
605
605
|
sdkSrc: e.string().optional(),
|
|
606
606
|
sdk_src: e.string().optional()
|
|
607
607
|
}).passthrough()
|
|
608
|
-
}).passthrough(),
|
|
608
|
+
}).passthrough(), yt = ye.omit({
|
|
609
609
|
id: !0,
|
|
610
610
|
created_at: !0,
|
|
611
611
|
updated_at: !0
|
|
612
612
|
});
|
|
613
613
|
var j = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "token id_token", o.CODE = "code", o))(j || {}), 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 || {});
|
|
614
|
-
const
|
|
614
|
+
const Ce = e.object({
|
|
615
615
|
client_id: e.string(),
|
|
616
616
|
act_as: e.string().optional(),
|
|
617
617
|
response_type: e.nativeEnum(j).optional(),
|
|
@@ -635,7 +635,7 @@ const Ie = e.object({
|
|
|
635
635
|
acr_values: e.string().optional(),
|
|
636
636
|
// The following fields are not available in Auth0
|
|
637
637
|
vendor_id: e.string().optional()
|
|
638
|
-
}),
|
|
638
|
+
}), Ct = e.object({
|
|
639
639
|
colors: e.object({
|
|
640
640
|
primary: e.string(),
|
|
641
641
|
page_background: e.object({
|
|
@@ -651,14 +651,15 @@ const Ie = e.object({
|
|
|
651
651
|
font: e.object({
|
|
652
652
|
url: e.string()
|
|
653
653
|
}).optional()
|
|
654
|
-
}),
|
|
654
|
+
}), Oe = e.enum([
|
|
655
655
|
"password_reset",
|
|
656
656
|
"email_verification",
|
|
657
657
|
"otp",
|
|
658
|
+
"mfa_otp",
|
|
658
659
|
"authorization_code",
|
|
659
660
|
"oauth2_state",
|
|
660
661
|
"ticket"
|
|
661
|
-
]),
|
|
662
|
+
]), Te = e.object({
|
|
662
663
|
code_id: e.string().openapi({
|
|
663
664
|
description: "The code that will be used in for instance an email verification flow"
|
|
664
665
|
}),
|
|
@@ -668,7 +669,7 @@ const Ie = e.object({
|
|
|
668
669
|
connection_id: e.string().optional().openapi({
|
|
669
670
|
description: "The connection that the code is connected to"
|
|
670
671
|
}),
|
|
671
|
-
code_type:
|
|
672
|
+
code_type: Oe,
|
|
672
673
|
code_verifier: e.string().optional().openapi({
|
|
673
674
|
description: "The code verifier used in PKCE in outbound flows"
|
|
674
675
|
}),
|
|
@@ -681,6 +682,9 @@ const Ie = e.object({
|
|
|
681
682
|
redirect_uri: e.string().optional().openapi({
|
|
682
683
|
description: "The redirect URI associated with the code"
|
|
683
684
|
}),
|
|
685
|
+
otp: e.string().optional().openapi({
|
|
686
|
+
description: "The one-time password value for OTP-based flows"
|
|
687
|
+
}),
|
|
684
688
|
nonce: e.string().optional().openapi({
|
|
685
689
|
description: "The nonce value used for security in OIDC flows"
|
|
686
690
|
}),
|
|
@@ -690,10 +694,10 @@ const Ie = e.object({
|
|
|
690
694
|
expires_at: e.string(),
|
|
691
695
|
used_at: e.string().optional(),
|
|
692
696
|
user_id: e.string().optional()
|
|
693
|
-
}),
|
|
694
|
-
...
|
|
697
|
+
}), Ot = e.object({
|
|
698
|
+
...Te.shape,
|
|
695
699
|
created_at: e.string()
|
|
696
|
-
}),
|
|
700
|
+
}), Ne = e.object({
|
|
697
701
|
kid: e.string().optional(),
|
|
698
702
|
team_id: e.string().optional(),
|
|
699
703
|
realms: e.string().optional(),
|
|
@@ -805,12 +809,12 @@ const Ie = e.object({
|
|
|
805
809
|
}).optional(),
|
|
806
810
|
// Controls when root user attributes are updated from external IdP
|
|
807
811
|
set_user_root_attributes: e.enum(["on_each_login", "on_first_login", "never_on_login"]).optional()
|
|
808
|
-
}),
|
|
812
|
+
}), we = e.object({
|
|
809
813
|
id: e.string().optional(),
|
|
810
814
|
name: e.string(),
|
|
811
815
|
display_name: e.string().optional(),
|
|
812
816
|
strategy: e.string(),
|
|
813
|
-
options:
|
|
817
|
+
options: Ne.default({}),
|
|
814
818
|
enabled_clients: e.array(e.string()).default([]).optional(),
|
|
815
819
|
response_type: e.custom().optional(),
|
|
816
820
|
response_mode: e.custom().optional(),
|
|
@@ -818,11 +822,11 @@ const Ie = e.object({
|
|
|
818
822
|
show_as_button: e.boolean().optional(),
|
|
819
823
|
metadata: e.record(e.any()).optional(),
|
|
820
824
|
is_system: e.boolean().optional()
|
|
821
|
-
}),
|
|
825
|
+
}), Tt = e.object({
|
|
822
826
|
id: e.string(),
|
|
823
827
|
created_at: e.string().transform((o) => o === null ? "" : o),
|
|
824
828
|
updated_at: e.string().transform((o) => o === null ? "" : o)
|
|
825
|
-
}).extend(
|
|
829
|
+
}).extend(we.shape), Re = e.object({
|
|
826
830
|
domain: e.string(),
|
|
827
831
|
custom_domain_id: e.string().optional(),
|
|
828
832
|
type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
|
|
@@ -836,7 +840,7 @@ const Ie = e.object({
|
|
|
836
840
|
"null"
|
|
837
841
|
]).optional(),
|
|
838
842
|
domain_metadata: e.record(e.string().max(255)).optional()
|
|
839
|
-
}),
|
|
843
|
+
}), je = e.discriminatedUnion("name", [
|
|
840
844
|
e.object({
|
|
841
845
|
name: e.literal("txt"),
|
|
842
846
|
record: e.string(),
|
|
@@ -847,17 +851,17 @@ const Ie = e.object({
|
|
|
847
851
|
http_body: e.string(),
|
|
848
852
|
http_url: e.string()
|
|
849
853
|
})
|
|
850
|
-
]),
|
|
851
|
-
...
|
|
854
|
+
]), De = e.object({
|
|
855
|
+
...Re.shape,
|
|
852
856
|
custom_domain_id: e.string(),
|
|
853
857
|
primary: e.boolean(),
|
|
854
858
|
status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
|
|
855
859
|
origin_domain_name: e.string().optional(),
|
|
856
860
|
verification: e.object({
|
|
857
|
-
methods: e.array(
|
|
861
|
+
methods: e.array(je)
|
|
858
862
|
}).optional(),
|
|
859
863
|
tls_policy: e.string().optional()
|
|
860
|
-
}),
|
|
864
|
+
}), Nt = De.extend({
|
|
861
865
|
tenant_id: e.string()
|
|
862
866
|
}), C = e.object({
|
|
863
867
|
id: e.string(),
|
|
@@ -865,17 +869,17 @@ const Ie = e.object({
|
|
|
865
869
|
visible: e.boolean().optional().default(!0)
|
|
866
870
|
}), l = C.extend({
|
|
867
871
|
category: e.literal("BLOCK").optional()
|
|
868
|
-
}),
|
|
872
|
+
}), Le = l.extend({
|
|
869
873
|
type: e.literal("DIVIDER"),
|
|
870
874
|
config: e.object({
|
|
871
875
|
text: e.string().optional()
|
|
872
876
|
}).optional()
|
|
873
|
-
}),
|
|
877
|
+
}), ve = l.extend({
|
|
874
878
|
type: e.literal("HTML"),
|
|
875
879
|
config: e.object({
|
|
876
880
|
content: e.string().optional()
|
|
877
881
|
}).optional()
|
|
878
|
-
}),
|
|
882
|
+
}), ke = l.extend({
|
|
879
883
|
type: e.literal("IMAGE"),
|
|
880
884
|
config: e.object({
|
|
881
885
|
src: e.string().optional(),
|
|
@@ -883,29 +887,29 @@ const Ie = e.object({
|
|
|
883
887
|
width: e.number().optional(),
|
|
884
888
|
height: e.number().optional()
|
|
885
889
|
}).optional()
|
|
886
|
-
}),
|
|
890
|
+
}), Ue = l.extend({
|
|
887
891
|
type: e.literal("JUMP_BUTTON"),
|
|
888
892
|
config: e.object({
|
|
889
893
|
text: e.string().optional(),
|
|
890
894
|
target_step: e.string().optional()
|
|
891
895
|
})
|
|
892
|
-
}),
|
|
896
|
+
}), Fe = l.extend({
|
|
893
897
|
type: e.literal("RESEND_BUTTON"),
|
|
894
898
|
config: e.object({
|
|
895
899
|
text: e.string().optional(),
|
|
896
900
|
resend_action: e.string().optional()
|
|
897
901
|
})
|
|
898
|
-
}),
|
|
902
|
+
}), xe = l.extend({
|
|
899
903
|
type: e.literal("NEXT_BUTTON"),
|
|
900
904
|
config: e.object({
|
|
901
905
|
text: e.string().optional()
|
|
902
906
|
})
|
|
903
|
-
}),
|
|
907
|
+
}), Pe = l.extend({
|
|
904
908
|
type: e.literal("PREVIOUS_BUTTON"),
|
|
905
909
|
config: e.object({
|
|
906
910
|
text: e.string().optional()
|
|
907
911
|
})
|
|
908
|
-
}),
|
|
912
|
+
}), Me = l.extend({
|
|
909
913
|
type: e.literal("RICH_TEXT"),
|
|
910
914
|
config: e.object({
|
|
911
915
|
content: e.string().optional()
|
|
@@ -916,17 +920,17 @@ const Ie = e.object({
|
|
|
916
920
|
hint: e.string().min(1).max(500).optional(),
|
|
917
921
|
required: e.boolean().optional(),
|
|
918
922
|
sensitive: e.boolean().optional()
|
|
919
|
-
}),
|
|
923
|
+
}), He = O.extend({
|
|
920
924
|
type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
|
|
921
925
|
config: e.object({
|
|
922
926
|
credential_type: e.string().optional()
|
|
923
927
|
})
|
|
924
|
-
}),
|
|
928
|
+
}), Ge = O.extend({
|
|
925
929
|
type: e.literal("GMAPS_ADDRESS"),
|
|
926
930
|
config: e.object({
|
|
927
931
|
api_key: e.string().optional()
|
|
928
932
|
})
|
|
929
|
-
}),
|
|
933
|
+
}), Be = O.extend({
|
|
930
934
|
type: e.literal("RECAPTCHA"),
|
|
931
935
|
config: e.object({
|
|
932
936
|
site_key: e.string().optional()
|
|
@@ -944,12 +948,12 @@ const Ie = e.object({
|
|
|
944
948
|
).optional(),
|
|
945
949
|
required: e.boolean().optional(),
|
|
946
950
|
sensitive: e.boolean().optional()
|
|
947
|
-
}),
|
|
951
|
+
}), We = t.extend({
|
|
948
952
|
type: e.literal("BOOLEAN"),
|
|
949
953
|
config: e.object({
|
|
950
954
|
default_value: e.boolean().optional()
|
|
951
955
|
}).optional()
|
|
952
|
-
}),
|
|
956
|
+
}), Ke = t.extend({
|
|
953
957
|
type: e.literal("CARDS"),
|
|
954
958
|
config: e.object({
|
|
955
959
|
options: e.array(
|
|
@@ -962,7 +966,7 @@ const Ie = e.object({
|
|
|
962
966
|
).optional(),
|
|
963
967
|
multi_select: e.boolean().optional()
|
|
964
968
|
}).optional()
|
|
965
|
-
}),
|
|
969
|
+
}), ze = t.extend({
|
|
966
970
|
type: e.literal("CHOICE"),
|
|
967
971
|
config: e.object({
|
|
968
972
|
options: e.array(
|
|
@@ -975,7 +979,7 @@ const Ie = e.object({
|
|
|
975
979
|
multiple: e.boolean().optional(),
|
|
976
980
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
977
981
|
}).optional()
|
|
978
|
-
}),
|
|
982
|
+
}), qe = t.extend({
|
|
979
983
|
type: e.literal("CUSTOM"),
|
|
980
984
|
config: e.object({
|
|
981
985
|
component: e.string().optional(),
|
|
@@ -983,7 +987,7 @@ const Ie = e.object({
|
|
|
983
987
|
schema: e.record(e.any()).optional(),
|
|
984
988
|
code: e.string().optional()
|
|
985
989
|
})
|
|
986
|
-
}),
|
|
990
|
+
}), Xe = t.extend({
|
|
987
991
|
type: e.literal("DATE"),
|
|
988
992
|
config: e.object({
|
|
989
993
|
format: e.string().optional(),
|
|
@@ -991,7 +995,7 @@ const Ie = e.object({
|
|
|
991
995
|
max: e.string().optional(),
|
|
992
996
|
default_value: e.string().optional()
|
|
993
997
|
}).optional()
|
|
994
|
-
}),
|
|
998
|
+
}), Ve = t.extend({
|
|
995
999
|
type: e.literal("DROPDOWN"),
|
|
996
1000
|
config: e.object({
|
|
997
1001
|
options: e.array(
|
|
@@ -1005,26 +1009,26 @@ const Ie = e.object({
|
|
|
1005
1009
|
multiple: e.boolean().optional(),
|
|
1006
1010
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1007
1011
|
}).optional()
|
|
1008
|
-
}),
|
|
1012
|
+
}), Ye = t.extend({
|
|
1009
1013
|
type: e.literal("EMAIL"),
|
|
1010
1014
|
config: e.object({
|
|
1011
1015
|
placeholder: e.string().optional(),
|
|
1012
1016
|
default_value: e.string().optional()
|
|
1013
1017
|
}).optional()
|
|
1014
|
-
}),
|
|
1018
|
+
}), Qe = t.extend({
|
|
1015
1019
|
type: e.literal("FILE"),
|
|
1016
1020
|
config: e.object({
|
|
1017
1021
|
accept: e.string().optional(),
|
|
1018
1022
|
max_size: e.number().optional(),
|
|
1019
1023
|
multiple: e.boolean().optional()
|
|
1020
1024
|
}).optional()
|
|
1021
|
-
}),
|
|
1025
|
+
}), Ze = t.extend({
|
|
1022
1026
|
type: e.literal("LEGAL"),
|
|
1023
1027
|
config: e.object({
|
|
1024
1028
|
text: e.string(),
|
|
1025
1029
|
html: e.boolean().optional()
|
|
1026
1030
|
}).optional()
|
|
1027
|
-
}),
|
|
1031
|
+
}), Je = t.extend({
|
|
1028
1032
|
type: e.literal("NUMBER"),
|
|
1029
1033
|
config: e.object({
|
|
1030
1034
|
placeholder: e.string().optional(),
|
|
@@ -1033,7 +1037,7 @@ const Ie = e.object({
|
|
|
1033
1037
|
step: e.number().optional(),
|
|
1034
1038
|
default_value: e.string().optional()
|
|
1035
1039
|
}).optional()
|
|
1036
|
-
}),
|
|
1040
|
+
}), $e = t.extend({
|
|
1037
1041
|
type: e.literal("PASSWORD"),
|
|
1038
1042
|
config: e.object({
|
|
1039
1043
|
placeholder: e.string().optional(),
|
|
@@ -1042,13 +1046,13 @@ const Ie = e.object({
|
|
|
1042
1046
|
forgot_password_link: e.string().optional(),
|
|
1043
1047
|
default_value: e.string().optional()
|
|
1044
1048
|
}).optional()
|
|
1045
|
-
}),
|
|
1049
|
+
}), eo = t.extend({
|
|
1046
1050
|
type: e.literal("PAYMENT"),
|
|
1047
1051
|
config: e.object({
|
|
1048
1052
|
provider: e.string().optional(),
|
|
1049
1053
|
currency: e.string().optional()
|
|
1050
1054
|
}).optional()
|
|
1051
|
-
}),
|
|
1055
|
+
}), oo = t.extend({
|
|
1052
1056
|
type: e.literal("SOCIAL"),
|
|
1053
1057
|
config: e.object({
|
|
1054
1058
|
providers: e.array(e.string()).optional(),
|
|
@@ -1063,7 +1067,7 @@ const Ie = e.object({
|
|
|
1063
1067
|
})
|
|
1064
1068
|
).optional()
|
|
1065
1069
|
}).optional()
|
|
1066
|
-
}),
|
|
1070
|
+
}), to = t.extend({
|
|
1067
1071
|
type: e.literal("TEL"),
|
|
1068
1072
|
config: e.object({
|
|
1069
1073
|
placeholder: e.string().optional(),
|
|
@@ -1071,7 +1075,7 @@ const Ie = e.object({
|
|
|
1071
1075
|
default_value: e.string().optional(),
|
|
1072
1076
|
allow_email: e.boolean().optional()
|
|
1073
1077
|
}).optional()
|
|
1074
|
-
}),
|
|
1078
|
+
}), no = t.extend({
|
|
1075
1079
|
type: e.literal("TEXT"),
|
|
1076
1080
|
config: e.object({
|
|
1077
1081
|
placeholder: e.string().optional(),
|
|
@@ -1079,50 +1083,58 @@ const Ie = e.object({
|
|
|
1079
1083
|
max_length: e.number().optional(),
|
|
1080
1084
|
default_value: e.string().optional()
|
|
1081
1085
|
}).optional()
|
|
1082
|
-
}),
|
|
1086
|
+
}), io = t.extend({
|
|
1087
|
+
type: e.literal("COUNTRY"),
|
|
1088
|
+
config: e.object({
|
|
1089
|
+
placeholder: e.string().optional(),
|
|
1090
|
+
default_value: e.string().optional()
|
|
1091
|
+
}).optional()
|
|
1092
|
+
}), ao = t.extend({
|
|
1083
1093
|
type: e.literal("URL"),
|
|
1084
1094
|
config: e.object({
|
|
1085
1095
|
placeholder: e.string().optional(),
|
|
1086
1096
|
default_value: e.string().optional()
|
|
1087
1097
|
}).optional()
|
|
1088
|
-
}),
|
|
1089
|
-
je,
|
|
1090
|
-
De,
|
|
1098
|
+
}), so = e.discriminatedUnion("type", [
|
|
1091
1099
|
Le,
|
|
1092
1100
|
ve,
|
|
1093
1101
|
ke,
|
|
1094
1102
|
Ue,
|
|
1095
1103
|
Fe,
|
|
1096
|
-
xe
|
|
1097
|
-
]), io = e.discriminatedUnion("type", [
|
|
1104
|
+
xe,
|
|
1098
1105
|
Pe,
|
|
1099
|
-
Me
|
|
1100
|
-
|
|
1101
|
-
|
|
1106
|
+
Me
|
|
1107
|
+
]), ro = e.discriminatedUnion("type", [
|
|
1108
|
+
He,
|
|
1102
1109
|
Ge,
|
|
1103
|
-
Be
|
|
1110
|
+
Be
|
|
1111
|
+
]), lo = e.discriminatedUnion("type", [
|
|
1104
1112
|
We,
|
|
1105
1113
|
Ke,
|
|
1106
1114
|
ze,
|
|
1107
|
-
|
|
1115
|
+
io,
|
|
1108
1116
|
qe,
|
|
1117
|
+
Xe,
|
|
1109
1118
|
Ve,
|
|
1110
1119
|
Ye,
|
|
1111
1120
|
Qe,
|
|
1112
|
-
Je,
|
|
1113
1121
|
Ze,
|
|
1122
|
+
Je,
|
|
1114
1123
|
$e,
|
|
1115
1124
|
eo,
|
|
1116
1125
|
oo,
|
|
1117
|
-
to
|
|
1118
|
-
]), v = e.union([
|
|
1126
|
+
to,
|
|
1119
1127
|
no,
|
|
1120
|
-
io,
|
|
1121
1128
|
ao
|
|
1122
|
-
]),
|
|
1129
|
+
]), v = e.union([
|
|
1130
|
+
so,
|
|
1131
|
+
ro,
|
|
1132
|
+
lo
|
|
1133
|
+
]), wt = /* @__PURE__ */ new Set([
|
|
1123
1134
|
"BOOLEAN",
|
|
1124
1135
|
"CARDS",
|
|
1125
1136
|
"CHOICE",
|
|
1137
|
+
"COUNTRY",
|
|
1126
1138
|
"DATE",
|
|
1127
1139
|
"DROPDOWN",
|
|
1128
1140
|
"EMAIL",
|
|
@@ -1132,7 +1144,7 @@ const Ie = e.object({
|
|
|
1132
1144
|
"TEL",
|
|
1133
1145
|
"TEXT",
|
|
1134
1146
|
"URL"
|
|
1135
|
-
]),
|
|
1147
|
+
]), Rt = e.object({
|
|
1136
1148
|
id: e.string(),
|
|
1137
1149
|
type: e.literal("submit"),
|
|
1138
1150
|
label: e.string(),
|
|
@@ -1144,7 +1156,7 @@ const Ie = e.object({
|
|
|
1144
1156
|
}), f = e.object({
|
|
1145
1157
|
x: e.number(),
|
|
1146
1158
|
y: e.number()
|
|
1147
|
-
}),
|
|
1159
|
+
}), po = e.object({
|
|
1148
1160
|
id: e.string(),
|
|
1149
1161
|
type: e.literal("FLOW"),
|
|
1150
1162
|
coordinates: f,
|
|
@@ -1153,7 +1165,7 @@ const Ie = e.object({
|
|
|
1153
1165
|
flow_id: e.string().max(30),
|
|
1154
1166
|
next_node: e.string().optional()
|
|
1155
1167
|
})
|
|
1156
|
-
}),
|
|
1168
|
+
}), co = e.object({
|
|
1157
1169
|
id: e.string(),
|
|
1158
1170
|
type: e.literal("ROUTER"),
|
|
1159
1171
|
coordinates: f,
|
|
@@ -1169,7 +1181,7 @@ const Ie = e.object({
|
|
|
1169
1181
|
),
|
|
1170
1182
|
fallback: e.string()
|
|
1171
1183
|
})
|
|
1172
|
-
}),
|
|
1184
|
+
}), _o = e.object({
|
|
1173
1185
|
id: e.string(),
|
|
1174
1186
|
type: e.literal("STEP"),
|
|
1175
1187
|
coordinates: f,
|
|
@@ -1178,11 +1190,11 @@ const Ie = e.object({
|
|
|
1178
1190
|
components: e.array(v),
|
|
1179
1191
|
next_node: e.string().optional()
|
|
1180
1192
|
})
|
|
1181
|
-
}),
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
]),
|
|
1193
|
+
}), go = e.discriminatedUnion("type", [
|
|
1194
|
+
po,
|
|
1195
|
+
co,
|
|
1196
|
+
_o
|
|
1197
|
+
]), uo = e.object({
|
|
1186
1198
|
name: e.string().openapi({
|
|
1187
1199
|
description: "The name of the form"
|
|
1188
1200
|
}),
|
|
@@ -1195,7 +1207,7 @@ const Ie = e.object({
|
|
|
1195
1207
|
default: e.string().optional()
|
|
1196
1208
|
}).optional(),
|
|
1197
1209
|
translations: e.record(e.string(), e.any()).optional(),
|
|
1198
|
-
nodes: e.array(
|
|
1210
|
+
nodes: e.array(go).optional(),
|
|
1199
1211
|
start: e.object({
|
|
1200
1212
|
hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
|
|
1201
1213
|
next_node: e.string().optional(),
|
|
@@ -1217,20 +1229,20 @@ const Ie = e.object({
|
|
|
1217
1229
|
}).optional()
|
|
1218
1230
|
}).openapi({
|
|
1219
1231
|
description: "Schema for flow-based forms (matches Auth0 Forms structure)"
|
|
1220
|
-
}),
|
|
1221
|
-
...
|
|
1222
|
-
...
|
|
1232
|
+
}), jt = e.object({
|
|
1233
|
+
...r.shape,
|
|
1234
|
+
...uo.shape,
|
|
1223
1235
|
id: e.string()
|
|
1224
|
-
}),
|
|
1236
|
+
}), mo = e.object({
|
|
1225
1237
|
id: e.number().optional(),
|
|
1226
1238
|
text: e.string(),
|
|
1227
1239
|
type: e.enum(["info", "error", "success", "warning"])
|
|
1228
|
-
}),
|
|
1240
|
+
}), ho = e.object({
|
|
1229
1241
|
id: e.string().optional(),
|
|
1230
1242
|
text: e.string(),
|
|
1231
1243
|
href: e.string(),
|
|
1232
1244
|
linkText: e.string().optional()
|
|
1233
|
-
}),
|
|
1245
|
+
}), Dt = e.object({
|
|
1234
1246
|
/** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
|
|
1235
1247
|
name: e.string().optional(),
|
|
1236
1248
|
action: e.string(),
|
|
@@ -1238,18 +1250,18 @@ const Ie = e.object({
|
|
|
1238
1250
|
title: e.string().optional(),
|
|
1239
1251
|
description: e.string().optional(),
|
|
1240
1252
|
components: e.array(v),
|
|
1241
|
-
messages: e.array(
|
|
1242
|
-
links: e.array(
|
|
1253
|
+
messages: e.array(mo).optional(),
|
|
1254
|
+
links: e.array(ho).optional(),
|
|
1243
1255
|
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
1244
1256
|
footer: e.string().optional()
|
|
1245
1257
|
});
|
|
1246
|
-
function
|
|
1258
|
+
function Lt(o) {
|
|
1247
1259
|
return o.category === "BLOCK";
|
|
1248
1260
|
}
|
|
1249
|
-
function
|
|
1261
|
+
function vt(o) {
|
|
1250
1262
|
return o.category === "WIDGET";
|
|
1251
1263
|
}
|
|
1252
|
-
function
|
|
1264
|
+
function kt(o) {
|
|
1253
1265
|
return o.category === "FIELD";
|
|
1254
1266
|
}
|
|
1255
1267
|
const k = e.enum([
|
|
@@ -1273,7 +1285,7 @@ const k = e.enum([
|
|
|
1273
1285
|
]), x = e.enum([
|
|
1274
1286
|
"ensure-username",
|
|
1275
1287
|
"set-preferred-username"
|
|
1276
|
-
]),
|
|
1288
|
+
]), Ut = {
|
|
1277
1289
|
"ensure-username": {
|
|
1278
1290
|
name: "Ensure Username",
|
|
1279
1291
|
description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
|
|
@@ -1289,52 +1301,52 @@ const k = e.enum([
|
|
|
1289
1301
|
synchronous: e.boolean().default(!1),
|
|
1290
1302
|
priority: e.number().optional(),
|
|
1291
1303
|
hook_id: e.string().optional()
|
|
1292
|
-
},
|
|
1304
|
+
}, bo = e.object({
|
|
1293
1305
|
...m,
|
|
1294
1306
|
trigger_id: k,
|
|
1295
1307
|
url: e.string()
|
|
1296
|
-
}),
|
|
1308
|
+
}), fo = e.object({
|
|
1297
1309
|
...m,
|
|
1298
1310
|
trigger_id: U,
|
|
1299
1311
|
form_id: e.string()
|
|
1300
|
-
}),
|
|
1312
|
+
}), Eo = e.object({
|
|
1301
1313
|
...m,
|
|
1302
1314
|
trigger_id: F,
|
|
1303
1315
|
template_id: x
|
|
1304
|
-
}),
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
]),
|
|
1316
|
+
}), Ft = e.union([
|
|
1317
|
+
bo,
|
|
1318
|
+
fo,
|
|
1319
|
+
Eo
|
|
1320
|
+
]), So = e.object({
|
|
1309
1321
|
...m,
|
|
1310
1322
|
trigger_id: k,
|
|
1311
|
-
...
|
|
1323
|
+
...r.shape,
|
|
1312
1324
|
hook_id: e.string(),
|
|
1313
1325
|
url: e.string()
|
|
1314
|
-
}),
|
|
1326
|
+
}), Ao = e.object({
|
|
1315
1327
|
...m,
|
|
1316
1328
|
trigger_id: U,
|
|
1317
|
-
...
|
|
1329
|
+
...r.shape,
|
|
1318
1330
|
hook_id: e.string(),
|
|
1319
1331
|
form_id: e.string()
|
|
1320
|
-
}),
|
|
1332
|
+
}), Io = e.object({
|
|
1321
1333
|
...m,
|
|
1322
1334
|
trigger_id: F,
|
|
1323
|
-
...
|
|
1335
|
+
...r.shape,
|
|
1324
1336
|
hook_id: e.string(),
|
|
1325
1337
|
template_id: x
|
|
1326
|
-
}),
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
]),
|
|
1338
|
+
}), xt = e.union([
|
|
1339
|
+
So,
|
|
1340
|
+
Ao,
|
|
1341
|
+
Io
|
|
1342
|
+
]), yo = e.object({
|
|
1331
1343
|
name: e.string().optional()
|
|
1332
|
-
}),
|
|
1344
|
+
}), Co = e.object({
|
|
1333
1345
|
email: e.string().optional()
|
|
1334
|
-
}),
|
|
1346
|
+
}), Oo = e.object({
|
|
1335
1347
|
organization_id: e.string().max(50),
|
|
1336
|
-
inviter:
|
|
1337
|
-
invitee:
|
|
1348
|
+
inviter: yo,
|
|
1349
|
+
invitee: Co,
|
|
1338
1350
|
invitation_url: e.string().url(),
|
|
1339
1351
|
client_id: e.string(),
|
|
1340
1352
|
connection_id: e.string().optional(),
|
|
@@ -1343,13 +1355,13 @@ const k = e.enum([
|
|
|
1343
1355
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
1344
1356
|
roles: e.array(e.string()).default([]).optional(),
|
|
1345
1357
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
1346
|
-
}),
|
|
1358
|
+
}), Pt = e.object({
|
|
1347
1359
|
id: e.string(),
|
|
1348
1360
|
organization_id: e.string().max(50),
|
|
1349
1361
|
created_at: e.string().datetime(),
|
|
1350
1362
|
expires_at: e.string().datetime(),
|
|
1351
1363
|
ticket_id: e.string().optional()
|
|
1352
|
-
}).extend(
|
|
1364
|
+
}).extend(Oo.shape), To = e.object({
|
|
1353
1365
|
alg: e.enum([
|
|
1354
1366
|
"RS256",
|
|
1355
1367
|
"RS384",
|
|
@@ -1368,9 +1380,9 @@ const k = e.enum([
|
|
|
1368
1380
|
x5t: e.string().optional(),
|
|
1369
1381
|
x5c: e.array(e.string()).optional(),
|
|
1370
1382
|
use: e.enum(["sig", "enc"]).optional()
|
|
1371
|
-
}),
|
|
1372
|
-
keys: e.array(
|
|
1373
|
-
}),
|
|
1383
|
+
}), Mt = e.object({
|
|
1384
|
+
keys: e.array(To)
|
|
1385
|
+
}), Ht = e.object({
|
|
1374
1386
|
issuer: e.string(),
|
|
1375
1387
|
authorization_endpoint: e.string(),
|
|
1376
1388
|
token_endpoint: e.string(),
|
|
@@ -1392,18 +1404,18 @@ const k = e.enum([
|
|
|
1392
1404
|
request_parameter_supported: e.boolean(),
|
|
1393
1405
|
token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
|
|
1394
1406
|
});
|
|
1395
|
-
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 || {});
|
|
1396
|
-
const
|
|
1407
|
+
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 No = e.nativeEnum(P), wo = e.object({
|
|
1397
1409
|
csrf_token: e.string(),
|
|
1398
1410
|
auth0Client: e.string().optional(),
|
|
1399
|
-
authParams:
|
|
1411
|
+
authParams: Ce,
|
|
1400
1412
|
expires_at: e.string(),
|
|
1401
1413
|
deleted_at: e.string().optional(),
|
|
1402
1414
|
ip: e.string().optional(),
|
|
1403
1415
|
useragent: e.string().optional(),
|
|
1404
1416
|
session_id: e.string().optional(),
|
|
1405
1417
|
authorization_url: e.string().optional(),
|
|
1406
|
-
state:
|
|
1418
|
+
state: No.optional().default(
|
|
1407
1419
|
"pending"
|
|
1408
1420
|
/* PENDING */
|
|
1409
1421
|
),
|
|
@@ -1416,14 +1428,14 @@ const Co = e.nativeEnum(P), Oo = e.object({
|
|
|
1416
1428
|
// The connection used to authenticate (may differ from primary user's connection)
|
|
1417
1429
|
}).openapi({
|
|
1418
1430
|
description: "This represents a login sesion"
|
|
1419
|
-
}),
|
|
1420
|
-
...
|
|
1431
|
+
}), Gt = e.object({
|
|
1432
|
+
...wo.shape,
|
|
1421
1433
|
id: e.string().openapi({
|
|
1422
1434
|
description: "This is is used as the state in the universal login"
|
|
1423
1435
|
}),
|
|
1424
1436
|
created_at: e.string(),
|
|
1425
1437
|
updated_at: e.string()
|
|
1426
|
-
}),
|
|
1438
|
+
}), Ro = {
|
|
1427
1439
|
// Network & System
|
|
1428
1440
|
ACLS_SUMMARY: "acls_summary",
|
|
1429
1441
|
ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
|
|
@@ -1594,24 +1606,24 @@ const Co = e.nativeEnum(P), Oo = e.object({
|
|
|
1594
1606
|
WARNING_DURING_LOGIN: "w",
|
|
1595
1607
|
WARNING_SENDING_NOTIFICATION: "wn",
|
|
1596
1608
|
WARNING_USER_MANAGEMENT: "wum"
|
|
1597
|
-
},
|
|
1598
|
-
(o) => Object.values(
|
|
1609
|
+
}, jo = e.string().refine(
|
|
1610
|
+
(o) => Object.values(Ro).includes(o),
|
|
1599
1611
|
{ message: "Invalid log type" }
|
|
1600
|
-
),
|
|
1612
|
+
), Do = e.object({
|
|
1601
1613
|
name: e.string(),
|
|
1602
1614
|
version: e.string(),
|
|
1603
1615
|
env: e.object({
|
|
1604
1616
|
node: e.string().optional()
|
|
1605
1617
|
}).optional()
|
|
1606
|
-
}),
|
|
1618
|
+
}), Lo = e.object({
|
|
1607
1619
|
country_code: e.string().length(2),
|
|
1608
1620
|
city_name: e.string(),
|
|
1609
1621
|
latitude: e.string(),
|
|
1610
1622
|
longitude: e.string(),
|
|
1611
1623
|
time_zone: e.string(),
|
|
1612
1624
|
continent_code: e.string()
|
|
1613
|
-
}),
|
|
1614
|
-
type:
|
|
1625
|
+
}), vo = e.object({
|
|
1626
|
+
type: jo,
|
|
1615
1627
|
date: e.string(),
|
|
1616
1628
|
description: e.string().optional(),
|
|
1617
1629
|
ip: e.string().optional(),
|
|
@@ -1630,19 +1642,19 @@ const Co = e.nativeEnum(P), Oo = e.object({
|
|
|
1630
1642
|
strategy: e.string().optional(),
|
|
1631
1643
|
strategy_type: e.string().optional(),
|
|
1632
1644
|
hostname: e.string().optional(),
|
|
1633
|
-
auth0_client:
|
|
1645
|
+
auth0_client: Do.optional(),
|
|
1634
1646
|
log_id: e.string().optional(),
|
|
1635
|
-
location_info:
|
|
1636
|
-
}),
|
|
1637
|
-
...
|
|
1647
|
+
location_info: Lo.optional()
|
|
1648
|
+
}), Bt = e.object({
|
|
1649
|
+
...vo.shape,
|
|
1638
1650
|
log_id: e.string()
|
|
1639
|
-
}),
|
|
1651
|
+
}), ko = e.object({
|
|
1640
1652
|
id: e.string().optional(),
|
|
1641
1653
|
user_id: e.string(),
|
|
1642
1654
|
password: e.string(),
|
|
1643
1655
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
|
|
1644
1656
|
is_current: e.boolean().default(!0)
|
|
1645
|
-
}),
|
|
1657
|
+
}), Wt = ko.extend({
|
|
1646
1658
|
id: e.string(),
|
|
1647
1659
|
created_at: e.string(),
|
|
1648
1660
|
updated_at: e.string()
|
|
@@ -1653,7 +1665,7 @@ const Co = e.nativeEnum(P), Oo = e.object({
|
|
|
1653
1665
|
last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
|
|
1654
1666
|
last_ip: e.string().describe("Last IP address from which this user logged in"),
|
|
1655
1667
|
last_asn: e.string().describe("Last autonomous system number from which this user logged in")
|
|
1656
|
-
}),
|
|
1668
|
+
}), Uo = e.object({
|
|
1657
1669
|
id: e.string(),
|
|
1658
1670
|
revoked_at: e.string().optional(),
|
|
1659
1671
|
used_at: e.string().optional(),
|
|
@@ -1665,13 +1677,13 @@ const Co = e.nativeEnum(P), Oo = e.object({
|
|
|
1665
1677
|
"Metadata related to the device used in the session"
|
|
1666
1678
|
),
|
|
1667
1679
|
clients: e.array(e.string()).describe("List of client details for the session")
|
|
1668
|
-
}),
|
|
1680
|
+
}), Kt = e.object({
|
|
1669
1681
|
created_at: e.string(),
|
|
1670
1682
|
updated_at: e.string(),
|
|
1671
1683
|
authenticated_at: e.string(),
|
|
1672
1684
|
last_interaction_at: e.string(),
|
|
1673
|
-
...
|
|
1674
|
-
}),
|
|
1685
|
+
...Uo.shape
|
|
1686
|
+
}), zt = e.object({
|
|
1675
1687
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
1676
1688
|
cert: e.string().openapi({ description: "The public certificate of the signing key" }),
|
|
1677
1689
|
fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
|
|
@@ -1696,7 +1708,7 @@ const Co = e.nativeEnum(P), Oo = e.object({
|
|
|
1696
1708
|
type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
|
|
1697
1709
|
description: "The type of the signing key"
|
|
1698
1710
|
})
|
|
1699
|
-
}),
|
|
1711
|
+
}), Fo = e.object({
|
|
1700
1712
|
id: e.string().optional(),
|
|
1701
1713
|
// Basic settings
|
|
1702
1714
|
audience: e.string(),
|
|
@@ -1822,6 +1834,8 @@ const Co = e.nativeEnum(P), Oo = e.object({
|
|
|
1822
1834
|
authorization_response_iss_parameter_supported: e.boolean().optional(),
|
|
1823
1835
|
// Guardian MFA Factors configuration (internal storage, exposed via /guardian API)
|
|
1824
1836
|
mfa: e.object({
|
|
1837
|
+
// MFA policy: "never" = MFA disabled, "always" = MFA required for all logins
|
|
1838
|
+
policy: e.enum(["never", "always"]).default("never").optional(),
|
|
1825
1839
|
// Factor states
|
|
1826
1840
|
factors: e.object({
|
|
1827
1841
|
sms: e.boolean().default(!1),
|
|
@@ -1849,14 +1863,14 @@ const Co = e.nativeEnum(P), Oo = e.object({
|
|
|
1849
1863
|
message: e.string().optional()
|
|
1850
1864
|
}).optional()
|
|
1851
1865
|
}).optional()
|
|
1852
|
-
}),
|
|
1866
|
+
}), qt = e.object({
|
|
1853
1867
|
created_at: e.string().nullable().transform((o) => o ?? ""),
|
|
1854
1868
|
updated_at: e.string().nullable().transform((o) => o ?? ""),
|
|
1855
|
-
...
|
|
1869
|
+
...Fo.shape,
|
|
1856
1870
|
id: e.string()
|
|
1857
1871
|
});
|
|
1858
|
-
var
|
|
1859
|
-
const
|
|
1872
|
+
var xo = /* @__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))(xo || {});
|
|
1873
|
+
const Xt = e.object({
|
|
1860
1874
|
access_token: e.string(),
|
|
1861
1875
|
id_token: e.string().optional(),
|
|
1862
1876
|
scope: e.string().optional(),
|
|
@@ -1869,7 +1883,7 @@ e.object({
|
|
|
1869
1883
|
code: e.string(),
|
|
1870
1884
|
state: e.string().optional()
|
|
1871
1885
|
});
|
|
1872
|
-
const
|
|
1886
|
+
const Po = e.object({
|
|
1873
1887
|
button_border_radius: e.number(),
|
|
1874
1888
|
button_border_weight: e.number(),
|
|
1875
1889
|
buttons_style: e.enum(["pill", "rounded", "sharp"]),
|
|
@@ -1879,7 +1893,7 @@ const Uo = e.object({
|
|
|
1879
1893
|
show_widget_shadow: e.boolean(),
|
|
1880
1894
|
widget_border_weight: e.number(),
|
|
1881
1895
|
widget_corner_radius: e.number()
|
|
1882
|
-
}),
|
|
1896
|
+
}), Mo = e.object({
|
|
1883
1897
|
base_focus_color: e.string(),
|
|
1884
1898
|
base_hover_color: e.string(),
|
|
1885
1899
|
body_text: e.string(),
|
|
@@ -1902,7 +1916,7 @@ const Uo = e.object({
|
|
|
1902
1916
|
}), g = e.object({
|
|
1903
1917
|
bold: e.boolean(),
|
|
1904
1918
|
size: e.number()
|
|
1905
|
-
}),
|
|
1919
|
+
}), Ho = e.object({
|
|
1906
1920
|
body_text: g,
|
|
1907
1921
|
buttons_text: g,
|
|
1908
1922
|
font_url: e.string(),
|
|
@@ -1912,31 +1926,31 @@ const Uo = e.object({
|
|
|
1912
1926
|
reference_text_size: e.number(),
|
|
1913
1927
|
subtitle: g,
|
|
1914
1928
|
title: g
|
|
1915
|
-
}),
|
|
1929
|
+
}), Go = e.object({
|
|
1916
1930
|
background_color: e.string(),
|
|
1917
1931
|
background_image_url: e.string(),
|
|
1918
1932
|
page_layout: e.enum(["center", "left", "right"])
|
|
1919
|
-
}),
|
|
1933
|
+
}), Bo = e.object({
|
|
1920
1934
|
header_text_alignment: e.enum(["center", "left", "right"]),
|
|
1921
1935
|
logo_height: e.number(),
|
|
1922
1936
|
logo_position: e.enum(["center", "left", "none", "right"]),
|
|
1923
1937
|
logo_url: e.string(),
|
|
1924
1938
|
social_buttons_layout: e.enum(["bottom", "top"])
|
|
1925
|
-
}),
|
|
1926
|
-
borders:
|
|
1927
|
-
colors:
|
|
1939
|
+
}), Wo = e.object({
|
|
1940
|
+
borders: Po,
|
|
1941
|
+
colors: Mo,
|
|
1928
1942
|
displayName: e.string(),
|
|
1929
|
-
fonts:
|
|
1930
|
-
page_background:
|
|
1931
|
-
widget:
|
|
1932
|
-
}),
|
|
1943
|
+
fonts: Ho,
|
|
1944
|
+
page_background: Go,
|
|
1945
|
+
widget: Bo
|
|
1946
|
+
}), Vt = Wo.extend({
|
|
1933
1947
|
themeId: e.string()
|
|
1934
|
-
}),
|
|
1948
|
+
}), Yt = e.object({
|
|
1935
1949
|
universal_login_experience: e.enum(["new", "classic"]).default("new"),
|
|
1936
1950
|
identifier_first: e.boolean().default(!0),
|
|
1937
1951
|
password_first: e.boolean().default(!1),
|
|
1938
1952
|
webauthn_platform_first_factor: e.boolean()
|
|
1939
|
-
}),
|
|
1953
|
+
}), Qt = e.object({
|
|
1940
1954
|
name: e.string(),
|
|
1941
1955
|
enabled: e.boolean().optional().default(!0),
|
|
1942
1956
|
default_from_address: e.string().optional(),
|
|
@@ -1966,7 +1980,7 @@ const Uo = e.object({
|
|
|
1966
1980
|
})
|
|
1967
1981
|
]),
|
|
1968
1982
|
settings: e.object({}).optional()
|
|
1969
|
-
}),
|
|
1983
|
+
}), Ko = e.object({
|
|
1970
1984
|
// The actual refresh token value (primary key).
|
|
1971
1985
|
id: e.string(),
|
|
1972
1986
|
// Link to the login session
|
|
@@ -1987,21 +2001,21 @@ const Uo = e.object({
|
|
|
1987
2001
|
})
|
|
1988
2002
|
),
|
|
1989
2003
|
rotating: e.boolean()
|
|
1990
|
-
}),
|
|
2004
|
+
}), Zt = e.object({
|
|
1991
2005
|
// When the refresh token record was created.
|
|
1992
2006
|
created_at: e.string(),
|
|
1993
2007
|
// Spread in the rest of the refresh token properties.
|
|
1994
|
-
...
|
|
1995
|
-
}),
|
|
2008
|
+
...Ko.shape
|
|
2009
|
+
}), Jt = e.object({
|
|
1996
2010
|
to: e.string(),
|
|
1997
2011
|
message: e.string()
|
|
1998
|
-
}),
|
|
2012
|
+
}), $t = e.object({
|
|
1999
2013
|
name: e.string(),
|
|
2000
2014
|
options: e.object({})
|
|
2001
|
-
}),
|
|
2015
|
+
}), zo = e.object({
|
|
2002
2016
|
value: e.string(),
|
|
2003
2017
|
description: e.string().optional()
|
|
2004
|
-
}),
|
|
2018
|
+
}), qo = e.object({
|
|
2005
2019
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
2006
2020
|
enforce_policies: e.boolean().optional(),
|
|
2007
2021
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -2011,11 +2025,11 @@ const Uo = e.object({
|
|
|
2011
2025
|
mtls: e.object({
|
|
2012
2026
|
bound_access_tokens: e.boolean().optional()
|
|
2013
2027
|
}).optional()
|
|
2014
|
-
}),
|
|
2028
|
+
}), Xo = e.object({
|
|
2015
2029
|
id: e.string().optional(),
|
|
2016
2030
|
name: e.string(),
|
|
2017
2031
|
identifier: e.string(),
|
|
2018
|
-
scopes: e.array(
|
|
2032
|
+
scopes: e.array(zo).optional(),
|
|
2019
2033
|
signing_alg: e.string().optional(),
|
|
2020
2034
|
signing_secret: e.string().optional(),
|
|
2021
2035
|
token_lifetime: e.number().optional(),
|
|
@@ -2023,30 +2037,30 @@ const Uo = e.object({
|
|
|
2023
2037
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
2024
2038
|
allow_offline_access: e.boolean().optional(),
|
|
2025
2039
|
verificationKey: e.string().optional(),
|
|
2026
|
-
options:
|
|
2040
|
+
options: qo.optional(),
|
|
2027
2041
|
is_system: e.boolean().optional(),
|
|
2028
2042
|
metadata: e.record(e.any()).optional()
|
|
2029
|
-
}),
|
|
2030
|
-
...
|
|
2043
|
+
}), Vo = e.object({
|
|
2044
|
+
...Xo.shape,
|
|
2031
2045
|
created_at: e.string().optional(),
|
|
2032
2046
|
updated_at: e.string().optional()
|
|
2033
|
-
}),
|
|
2047
|
+
}), en = e.array(Vo), Yo = e.object({
|
|
2034
2048
|
role_id: e.string(),
|
|
2035
2049
|
resource_server_identifier: e.string(),
|
|
2036
2050
|
permission_name: e.string()
|
|
2037
|
-
}),
|
|
2038
|
-
...
|
|
2051
|
+
}), Qo = e.object({
|
|
2052
|
+
...Yo.shape,
|
|
2039
2053
|
created_at: e.string()
|
|
2040
|
-
}),
|
|
2054
|
+
}), on = e.array(Qo), Zo = e.object({
|
|
2041
2055
|
user_id: e.string(),
|
|
2042
2056
|
resource_server_identifier: e.string(),
|
|
2043
2057
|
permission_name: e.string(),
|
|
2044
2058
|
organization_id: e.string().optional()
|
|
2045
|
-
}),
|
|
2046
|
-
...
|
|
2059
|
+
}), Jo = e.object({
|
|
2060
|
+
...Zo.shape,
|
|
2047
2061
|
tenant_id: e.string(),
|
|
2048
2062
|
created_at: e.string().optional()
|
|
2049
|
-
}),
|
|
2063
|
+
}), tn = e.array(Jo), $o = e.object({
|
|
2050
2064
|
user_id: e.string(),
|
|
2051
2065
|
resource_server_identifier: e.string(),
|
|
2052
2066
|
resource_server_name: e.string(),
|
|
@@ -2054,17 +2068,17 @@ const Uo = e.object({
|
|
|
2054
2068
|
description: e.string().nullable().optional(),
|
|
2055
2069
|
created_at: e.string().optional(),
|
|
2056
2070
|
organization_id: e.string().optional()
|
|
2057
|
-
}),
|
|
2058
|
-
|
|
2059
|
-
),
|
|
2071
|
+
}), nn = e.array(
|
|
2072
|
+
$o
|
|
2073
|
+
), et = e.object({
|
|
2060
2074
|
user_id: e.string(),
|
|
2061
2075
|
role_id: e.string(),
|
|
2062
2076
|
organization_id: e.string().optional()
|
|
2063
|
-
}),
|
|
2064
|
-
...
|
|
2077
|
+
}), ot = e.object({
|
|
2078
|
+
...et.shape,
|
|
2065
2079
|
tenant_id: e.string(),
|
|
2066
2080
|
created_at: e.string().optional()
|
|
2067
|
-
}),
|
|
2081
|
+
}), an = e.array(ot), tt = e.object({
|
|
2068
2082
|
id: e.string().optional().openapi({
|
|
2069
2083
|
description: "The unique identifier of the role. If not provided, one will be generated."
|
|
2070
2084
|
}),
|
|
@@ -2078,13 +2092,13 @@ const Uo = e.object({
|
|
|
2078
2092
|
metadata: e.record(e.any()).optional().openapi({
|
|
2079
2093
|
description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
|
|
2080
2094
|
})
|
|
2081
|
-
}),
|
|
2095
|
+
}), nt = tt.extend({
|
|
2082
2096
|
id: e.string().openapi({
|
|
2083
2097
|
description: "The unique identifier of the role"
|
|
2084
2098
|
}),
|
|
2085
2099
|
created_at: e.string().optional(),
|
|
2086
2100
|
updated_at: e.string().optional()
|
|
2087
|
-
}),
|
|
2101
|
+
}), sn = e.array(nt), it = e.object({
|
|
2088
2102
|
logo_url: e.string().optional().openapi({
|
|
2089
2103
|
description: "URL of the organization's logo"
|
|
2090
2104
|
}),
|
|
@@ -2096,7 +2110,7 @@ const Uo = e.object({
|
|
|
2096
2110
|
description: "Page background color in hex format (e.g., #FFFFFF)"
|
|
2097
2111
|
})
|
|
2098
2112
|
}).optional()
|
|
2099
|
-
}).optional(),
|
|
2113
|
+
}).optional(), at = e.object({
|
|
2100
2114
|
connection_id: e.string().openapi({
|
|
2101
2115
|
description: "ID of the connection"
|
|
2102
2116
|
}),
|
|
@@ -2109,7 +2123,7 @@ const Uo = e.object({
|
|
|
2109
2123
|
is_signup_enabled: e.boolean().default(!0).openapi({
|
|
2110
2124
|
description: "Whether signup is enabled for this connection"
|
|
2111
2125
|
})
|
|
2112
|
-
}),
|
|
2126
|
+
}), st = e.object({
|
|
2113
2127
|
client_credentials: e.object({
|
|
2114
2128
|
enforce: e.boolean().default(!1).openapi({
|
|
2115
2129
|
description: "Whether to enforce token quota limits"
|
|
@@ -2121,7 +2135,7 @@ const Uo = e.object({
|
|
|
2121
2135
|
description: "Maximum tokens per hour (0 = unlimited)"
|
|
2122
2136
|
})
|
|
2123
2137
|
}).optional()
|
|
2124
|
-
}).optional(),
|
|
2138
|
+
}).optional(), rt = e.object({
|
|
2125
2139
|
id: e.string().optional(),
|
|
2126
2140
|
name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
|
|
2127
2141
|
message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
|
|
@@ -2131,34 +2145,34 @@ const Uo = e.object({
|
|
|
2131
2145
|
display_name: e.string().optional().openapi({
|
|
2132
2146
|
description: "The display name of the organization"
|
|
2133
2147
|
}),
|
|
2134
|
-
branding:
|
|
2148
|
+
branding: it,
|
|
2135
2149
|
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
2136
2150
|
description: "Custom metadata for the organization"
|
|
2137
2151
|
}),
|
|
2138
|
-
enabled_connections: e.array(
|
|
2152
|
+
enabled_connections: e.array(at).default([]).optional().openapi({
|
|
2139
2153
|
description: "List of enabled connections for the organization"
|
|
2140
2154
|
}),
|
|
2141
|
-
token_quota:
|
|
2142
|
-
}),
|
|
2143
|
-
...
|
|
2144
|
-
...
|
|
2155
|
+
token_quota: st
|
|
2156
|
+
}), rn = e.object({
|
|
2157
|
+
...rt.shape,
|
|
2158
|
+
...r.shape,
|
|
2145
2159
|
id: e.string(),
|
|
2146
2160
|
// Override name to be lenient when reading from database (to support existing uppercase names)
|
|
2147
2161
|
name: e.string().min(1).openapi({
|
|
2148
2162
|
description: "The name of the organization"
|
|
2149
2163
|
})
|
|
2150
|
-
}),
|
|
2164
|
+
}), lt = e.object({
|
|
2151
2165
|
user_id: e.string().openapi({
|
|
2152
2166
|
description: "ID of the user"
|
|
2153
2167
|
}),
|
|
2154
2168
|
organization_id: e.string().openapi({
|
|
2155
2169
|
description: "ID of the organization"
|
|
2156
2170
|
})
|
|
2157
|
-
}),
|
|
2158
|
-
...
|
|
2159
|
-
...
|
|
2171
|
+
}), ln = e.object({
|
|
2172
|
+
...lt.shape,
|
|
2173
|
+
...r.shape,
|
|
2160
2174
|
id: e.string()
|
|
2161
|
-
}),
|
|
2175
|
+
}), pn = e.object({
|
|
2162
2176
|
// Session settings
|
|
2163
2177
|
idle_session_lifetime: e.number().optional(),
|
|
2164
2178
|
session_lifetime: e.number().optional(),
|
|
@@ -2229,6 +2243,8 @@ const Uo = e.object({
|
|
|
2229
2243
|
}).optional(),
|
|
2230
2244
|
// Guardian MFA Factors configuration (internal storage, exposed via /guardian API)
|
|
2231
2245
|
mfa: e.object({
|
|
2246
|
+
// MFA policy: "never" = MFA disabled, "always" = MFA required for all logins
|
|
2247
|
+
policy: e.enum(["never", "always"]).default("never").optional(),
|
|
2232
2248
|
// Factor states
|
|
2233
2249
|
factors: e.object({
|
|
2234
2250
|
sms: e.boolean().default(!1),
|
|
@@ -2256,7 +2272,7 @@ const Uo = e.object({
|
|
|
2256
2272
|
message: e.string().optional()
|
|
2257
2273
|
}).optional()
|
|
2258
2274
|
}).optional()
|
|
2259
|
-
}),
|
|
2275
|
+
}), cn = e.object({
|
|
2260
2276
|
date: e.string().openapi({
|
|
2261
2277
|
description: "Date these events occurred in ISO 8601 format",
|
|
2262
2278
|
example: "2025-12-19"
|
|
@@ -2281,10 +2297,10 @@ const Uo = e.object({
|
|
|
2281
2297
|
description: "Approximate date and time the first event occurred in ISO 8601 format",
|
|
2282
2298
|
example: "2025-12-19T00:00:00.000Z"
|
|
2283
2299
|
})
|
|
2284
|
-
}),
|
|
2300
|
+
}), _n = e.number().openapi({
|
|
2285
2301
|
description: "Number of active users in the last 30 days",
|
|
2286
2302
|
example: 1234
|
|
2287
|
-
}),
|
|
2303
|
+
}), pt = e.enum([
|
|
2288
2304
|
"login",
|
|
2289
2305
|
"login-id",
|
|
2290
2306
|
"login-password",
|
|
@@ -2299,7 +2315,6 @@ const Uo = e.object({
|
|
|
2299
2315
|
"mfa-voice",
|
|
2300
2316
|
"mfa-phone",
|
|
2301
2317
|
"mfa-webauthn",
|
|
2302
|
-
"mfa-sms",
|
|
2303
2318
|
"mfa-email",
|
|
2304
2319
|
"mfa-recovery-code",
|
|
2305
2320
|
"status",
|
|
@@ -2313,17 +2328,17 @@ const Uo = e.object({
|
|
|
2313
2328
|
"captcha",
|
|
2314
2329
|
"custom-form",
|
|
2315
2330
|
"login-passwordless"
|
|
2316
|
-
]),
|
|
2331
|
+
]), ct = e.record(e.string(), e.record(e.string(), e.string())).openapi({
|
|
2317
2332
|
type: "object",
|
|
2318
2333
|
additionalProperties: {
|
|
2319
2334
|
type: "object",
|
|
2320
2335
|
additionalProperties: { type: "string" }
|
|
2321
2336
|
}
|
|
2322
|
-
}),
|
|
2323
|
-
prompt:
|
|
2337
|
+
}), dn = e.object({
|
|
2338
|
+
prompt: pt,
|
|
2324
2339
|
language: e.string(),
|
|
2325
|
-
custom_text:
|
|
2326
|
-
}),
|
|
2340
|
+
custom_text: ct
|
|
2341
|
+
}), gn = {
|
|
2327
2342
|
EMAIL: "email",
|
|
2328
2343
|
SMS: "sms",
|
|
2329
2344
|
USERNAME_PASSWORD: "Username-Password-Authentication",
|
|
@@ -2338,18 +2353,47 @@ const Uo = e.object({
|
|
|
2338
2353
|
SAMLP: "samlp",
|
|
2339
2354
|
WAAD: "waad",
|
|
2340
2355
|
ADFS: "adfs"
|
|
2341
|
-
},
|
|
2356
|
+
}, un = {
|
|
2342
2357
|
DATABASE: "database",
|
|
2343
2358
|
SOCIAL: "social",
|
|
2344
2359
|
PASSWORDLESS: "passwordless"
|
|
2345
|
-
}
|
|
2346
|
-
|
|
2360
|
+
}, _t = e.enum([
|
|
2361
|
+
"phone",
|
|
2362
|
+
"totp",
|
|
2363
|
+
"email",
|
|
2364
|
+
"push",
|
|
2365
|
+
"webauthn"
|
|
2366
|
+
]), H = e.object({
|
|
2367
|
+
user_id: e.string(),
|
|
2368
|
+
type: _t,
|
|
2369
|
+
phone_number: e.string().optional(),
|
|
2370
|
+
totp_secret: e.string().optional(),
|
|
2371
|
+
confirmed: e.boolean().default(!1)
|
|
2372
|
+
});
|
|
2373
|
+
function G(o, n) {
|
|
2374
|
+
o.type === "phone" && !o.phone_number && n.addIssue({
|
|
2375
|
+
code: e.ZodIssueCode.custom,
|
|
2376
|
+
message: "phone_number is required when type is 'phone'",
|
|
2377
|
+
path: ["phone_number"]
|
|
2378
|
+
}), o.type === "totp" && !o.totp_secret && n.addIssue({
|
|
2379
|
+
code: e.ZodIssueCode.custom,
|
|
2380
|
+
message: "totp_secret is required when type is 'totp'",
|
|
2381
|
+
path: ["totp_secret"]
|
|
2382
|
+
});
|
|
2383
|
+
}
|
|
2384
|
+
const mn = H.superRefine(G), hn = e.object({
|
|
2385
|
+
...H.shape,
|
|
2386
|
+
id: e.string(),
|
|
2387
|
+
created_at: e.string(),
|
|
2388
|
+
updated_at: e.string()
|
|
2389
|
+
}).superRefine(G);
|
|
2390
|
+
function bn(o) {
|
|
2347
2391
|
const [n, i] = o.split("|");
|
|
2348
2392
|
if (!n || !i)
|
|
2349
2393
|
throw new Error(`Invalid user_id: ${o}`);
|
|
2350
2394
|
return { connection: n, id: i };
|
|
2351
2395
|
}
|
|
2352
|
-
function
|
|
2396
|
+
function fn(o) {
|
|
2353
2397
|
const {
|
|
2354
2398
|
primary: n,
|
|
2355
2399
|
secondaries: i,
|
|
@@ -2361,16 +2405,16 @@ function dn(o) {
|
|
|
2361
2405
|
const c = p[a];
|
|
2362
2406
|
return typeof c != "function" ? c : T.includes(a) ? async (..._) => {
|
|
2363
2407
|
const S = await c.apply(p, _), d = [];
|
|
2364
|
-
for (const
|
|
2365
|
-
const h =
|
|
2408
|
+
for (const s of i) {
|
|
2409
|
+
const h = s.adapter[a];
|
|
2366
2410
|
if (typeof h != "function")
|
|
2367
2411
|
continue;
|
|
2368
2412
|
const A = (async () => {
|
|
2369
2413
|
try {
|
|
2370
|
-
await h.apply(
|
|
2414
|
+
await h.apply(s.adapter, _);
|
|
2371
2415
|
} catch (b) {
|
|
2372
2416
|
try {
|
|
2373
|
-
|
|
2417
|
+
s.onError ? s.onError(b, a, _) : console.error(
|
|
2374
2418
|
`Passthrough adapter: secondary write failed for ${a}:`,
|
|
2375
2419
|
b
|
|
2376
2420
|
);
|
|
@@ -2382,7 +2426,7 @@ function dn(o) {
|
|
|
2382
2426
|
}
|
|
2383
2427
|
}
|
|
2384
2428
|
})();
|
|
2385
|
-
|
|
2429
|
+
s.blocking && d.push(A);
|
|
2386
2430
|
}
|
|
2387
2431
|
return d.length > 0 && await Promise.all(d), S;
|
|
2388
2432
|
} : c.bind(p);
|
|
@@ -2390,11 +2434,11 @@ function dn(o) {
|
|
|
2390
2434
|
};
|
|
2391
2435
|
return new Proxy(n, E);
|
|
2392
2436
|
}
|
|
2393
|
-
function
|
|
2437
|
+
function En(o) {
|
|
2394
2438
|
return o;
|
|
2395
2439
|
}
|
|
2396
|
-
function
|
|
2397
|
-
var E, p, a, c, _, S, d,
|
|
2440
|
+
function Sn(o) {
|
|
2441
|
+
var E, p, a, c, _, S, d, s, h, A, b, I;
|
|
2398
2442
|
const n = o == null ? void 0 : o.options;
|
|
2399
2443
|
if (!n)
|
|
2400
2444
|
return {
|
|
@@ -2405,12 +2449,12 @@ function un(o) {
|
|
|
2405
2449
|
};
|
|
2406
2450
|
const i = n.attributes;
|
|
2407
2451
|
if (i) {
|
|
2408
|
-
const
|
|
2452
|
+
const B = ((p = (E = i.username) == null ? void 0 : E.identifier) == null ? void 0 : p.active) === !0, W = ((c = (a = i.email) == null ? void 0 : a.identifier) == null ? void 0 : c.active) !== !1, K = ((S = (_ = i.username) == null ? void 0 : _.validation) == null ? void 0 : S.min_length) ?? 1, z = ((s = (d = i.username) == null ? void 0 : d.validation) == null ? void 0 : s.max_length) ?? 15;
|
|
2409
2453
|
return {
|
|
2410
|
-
usernameIdentifierActive:
|
|
2411
|
-
emailIdentifierActive:
|
|
2412
|
-
usernameMinLength:
|
|
2413
|
-
usernameMaxLength:
|
|
2454
|
+
usernameIdentifierActive: B,
|
|
2455
|
+
emailIdentifierActive: W,
|
|
2456
|
+
usernameMinLength: K,
|
|
2457
|
+
usernameMaxLength: z
|
|
2414
2458
|
};
|
|
2415
2459
|
}
|
|
2416
2460
|
return {
|
|
@@ -2421,160 +2465,163 @@ function un(o) {
|
|
|
2421
2465
|
};
|
|
2422
2466
|
}
|
|
2423
2467
|
export {
|
|
2424
|
-
|
|
2425
|
-
|
|
2468
|
+
ut as Auth0ActionEnum,
|
|
2469
|
+
Do as Auth0Client,
|
|
2426
2470
|
D as AuthorizationResponseMode,
|
|
2427
2471
|
j as AuthorizationResponseType,
|
|
2428
2472
|
L as CodeChallengeMethod,
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2473
|
+
R as ComponentCategory,
|
|
2474
|
+
w as ComponentType,
|
|
2475
|
+
mt as EmailActionEnum,
|
|
2476
|
+
wt as FORM_FIELD_TYPES,
|
|
2477
|
+
gt as FlowActionTypeEnum,
|
|
2478
|
+
xo as GrantType,
|
|
2479
|
+
Lo as LocationInfo,
|
|
2480
|
+
Ro as LogTypes,
|
|
2437
2481
|
P as LoginSessionState,
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2482
|
+
me as NodeType,
|
|
2483
|
+
Y as RedirectTargetEnum,
|
|
2484
|
+
gn as Strategy,
|
|
2485
|
+
un as StrategyType,
|
|
2486
|
+
fe as actionNodeSchema,
|
|
2487
|
+
_n as activeUsersResponseSchema,
|
|
2488
|
+
oe as addressSchema,
|
|
2489
|
+
yt as auth0FlowInsertSchema,
|
|
2490
|
+
ye as auth0FlowSchema,
|
|
2491
|
+
bt as auth0QuerySchema,
|
|
2492
|
+
X as auth0UpdateUserActionSchema,
|
|
2493
|
+
Et as auth0UserResponseSchema,
|
|
2494
|
+
Ce as authParamsSchema,
|
|
2451
2495
|
N as baseUserSchema,
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2496
|
+
so as blockComponentSchema,
|
|
2497
|
+
Po as bordersSchema,
|
|
2498
|
+
Ct as brandingSchema,
|
|
2499
|
+
ce as buttonComponentSchema,
|
|
2500
|
+
re as clientGrantInsertSchema,
|
|
2501
|
+
It as clientGrantListSchema,
|
|
2502
|
+
le as clientGrantSchema,
|
|
2503
|
+
se as clientInsertSchema,
|
|
2504
|
+
At as clientSchema,
|
|
2505
|
+
Te as codeInsertSchema,
|
|
2506
|
+
Ot as codeSchema,
|
|
2507
|
+
Oe as codeTypeSchema,
|
|
2508
|
+
Mo as colorsSchema,
|
|
2509
|
+
mo as componentMessageSchema,
|
|
2510
|
+
ue as componentSchema,
|
|
2511
|
+
we as connectionInsertSchema,
|
|
2512
|
+
Ne as connectionOptionsSchema,
|
|
2513
|
+
Tt as connectionSchema,
|
|
2470
2514
|
u as coordinatesSchema,
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2515
|
+
fn as createPassthroughAdapter,
|
|
2516
|
+
En as createWriteOnlyAdapter,
|
|
2517
|
+
Re as customDomainInsertSchema,
|
|
2518
|
+
De as customDomainSchema,
|
|
2519
|
+
Nt as customDomainWithTenantIdSchema,
|
|
2520
|
+
dn as customTextEntrySchema,
|
|
2521
|
+
ct as customTextSchema,
|
|
2522
|
+
cn as dailyStatsSchema,
|
|
2523
|
+
Qt as emailProviderSchema,
|
|
2524
|
+
q as emailVerificationRulesSchema,
|
|
2525
|
+
V as emailVerifyActionSchema,
|
|
2526
|
+
Ie as endingSchema,
|
|
2527
|
+
lo as fieldComponentSchema,
|
|
2528
|
+
Z as flowActionStepSchema,
|
|
2529
|
+
J as flowInsertSchema,
|
|
2530
|
+
ht as flowSchema,
|
|
2531
|
+
de as flowsFieldComponentSchema,
|
|
2532
|
+
be as flowsFlowNodeSchema,
|
|
2533
|
+
he as flowsStepNodeSchema,
|
|
2490
2534
|
g as fontDetailsSchema,
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2535
|
+
Ho as fontsSchema,
|
|
2536
|
+
Rt as formControlSchema,
|
|
2537
|
+
uo as formInsertSchema,
|
|
2494
2538
|
v as formNodeComponentDefinition,
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2539
|
+
go as formNodeSchema,
|
|
2540
|
+
jt as formSchema,
|
|
2541
|
+
ge as genericComponentSchema,
|
|
2542
|
+
Ee as genericNodeSchema,
|
|
2543
|
+
Sn as getConnectionIdentifierConfig,
|
|
2544
|
+
Ft as hookInsertSchema,
|
|
2545
|
+
xt as hookSchema,
|
|
2502
2546
|
x as hookTemplateId,
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2547
|
+
Ut as hookTemplates,
|
|
2548
|
+
ee as identitySchema,
|
|
2549
|
+
Oo as inviteInsertSchema,
|
|
2550
|
+
Pt as inviteSchema,
|
|
2551
|
+
Co as inviteeSchema,
|
|
2552
|
+
yo as inviterSchema,
|
|
2553
|
+
Lt as isBlockComponent,
|
|
2554
|
+
kt as isFieldComponent,
|
|
2555
|
+
vt as isWidgetComponent,
|
|
2556
|
+
Mt as jwksKeySchema,
|
|
2557
|
+
To as jwksSchema,
|
|
2558
|
+
_e as legalComponentSchema,
|
|
2559
|
+
vo as logInsertSchema,
|
|
2560
|
+
Bt as logSchema,
|
|
2561
|
+
wo as loginSessionInsertSchema,
|
|
2562
|
+
Gt as loginSessionSchema,
|
|
2563
|
+
No as loginSessionStateSchema,
|
|
2564
|
+
mn as mfaEnrollmentInsertSchema,
|
|
2565
|
+
hn as mfaEnrollmentSchema,
|
|
2566
|
+
_t as mfaEnrollmentTypeSchema,
|
|
2567
|
+
Se as nodeSchema,
|
|
2568
|
+
Ht as openIDConfigurationSchema,
|
|
2569
|
+
it as organizationBrandingSchema,
|
|
2570
|
+
at as organizationEnabledConnectionSchema,
|
|
2571
|
+
rt as organizationInsertSchema,
|
|
2572
|
+
rn as organizationSchema,
|
|
2573
|
+
st as organizationTokenQuotaSchema,
|
|
2574
|
+
Go as pageBackgroundSchema,
|
|
2575
|
+
bn as parseUserId,
|
|
2576
|
+
ko as passwordInsertSchema,
|
|
2577
|
+
Wt as passwordSchema,
|
|
2578
|
+
$ as profileDataSchema,
|
|
2579
|
+
pt as promptScreenSchema,
|
|
2580
|
+
Yt as promptSettingSchema,
|
|
2581
|
+
Q as redirectActionSchema,
|
|
2582
|
+
Ko as refreshTokenInsertSchema,
|
|
2583
|
+
Zt as refreshTokenSchema,
|
|
2584
|
+
Xo as resourceServerInsertSchema,
|
|
2585
|
+
en as resourceServerListSchema,
|
|
2586
|
+
qo as resourceServerOptionsSchema,
|
|
2587
|
+
Vo as resourceServerSchema,
|
|
2588
|
+
zo as resourceServerScopeSchema,
|
|
2589
|
+
pe as richTextComponentSchema,
|
|
2590
|
+
tt as roleInsertSchema,
|
|
2591
|
+
sn as roleListSchema,
|
|
2592
|
+
Yo as rolePermissionInsertSchema,
|
|
2593
|
+
on as rolePermissionListSchema,
|
|
2594
|
+
Qo as rolePermissionSchema,
|
|
2595
|
+
nt as roleSchema,
|
|
2596
|
+
ho as screenLinkSchema,
|
|
2597
|
+
Uo as sessionInsertSchema,
|
|
2598
|
+
Kt as sessionSchema,
|
|
2599
|
+
zt as signingKeySchema,
|
|
2600
|
+
$t as smsProviderSchema,
|
|
2601
|
+
Jt as smsSendParamsSchema,
|
|
2602
|
+
Ae as startSchema,
|
|
2603
|
+
Fo as tenantInsertSchema,
|
|
2604
|
+
qt as tenantSchema,
|
|
2605
|
+
pn as tenantSettingsSchema,
|
|
2606
|
+
Wo as themeInsertSchema,
|
|
2607
|
+
Vt as themeSchema,
|
|
2608
|
+
Xt as tokenResponseSchema,
|
|
2609
|
+
ft as totalsSchema,
|
|
2610
|
+
Dt as uiScreenSchema,
|
|
2611
|
+
te as userInsertSchema,
|
|
2612
|
+
lt as userOrganizationInsertSchema,
|
|
2613
|
+
ln as userOrganizationSchema,
|
|
2614
|
+
Zo as userPermissionInsertSchema,
|
|
2615
|
+
tn as userPermissionListSchema,
|
|
2616
|
+
Jo as userPermissionSchema,
|
|
2617
|
+
nn as userPermissionWithDetailsListSchema,
|
|
2618
|
+
$o as userPermissionWithDetailsSchema,
|
|
2619
|
+
St as userResponseSchema,
|
|
2620
|
+
et as userRoleInsertSchema,
|
|
2621
|
+
an as userRoleListSchema,
|
|
2622
|
+
ot as userRoleSchema,
|
|
2623
|
+
ne as userSchema,
|
|
2624
|
+
je as verificationMethodsSchema,
|
|
2625
|
+
ro as widgetComponentSchema,
|
|
2626
|
+
Bo as widgetSchema
|
|
2580
2627
|
};
|