@authhero/adapter-interfaces 1.0.0 → 1.2.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 +347 -102
- package/dist/adapter-interfaces.mjs +512 -469
- package/package.json +1 -1
|
@@ -1,10 +1,42 @@
|
|
|
1
1
|
import { z as e } from "@hono/zod-openapi";
|
|
2
|
-
const
|
|
2
|
+
const s = e.object({
|
|
3
|
+
created_at: e.string(),
|
|
4
|
+
updated_at: e.string()
|
|
5
|
+
}), X = e.object({
|
|
6
|
+
id: e.string(),
|
|
7
|
+
version: e.string().optional()
|
|
8
|
+
}), V = e.object({
|
|
9
|
+
name: e.string(),
|
|
10
|
+
version: e.string()
|
|
11
|
+
}), Y = e.object({
|
|
12
|
+
name: e.string(),
|
|
13
|
+
value: e.string()
|
|
14
|
+
}), Q = e.object({
|
|
15
|
+
name: e.string().max(255),
|
|
16
|
+
code: e.string().max(1e5),
|
|
17
|
+
supported_triggers: e.array(X).optional(),
|
|
18
|
+
runtime: e.string().max(50).optional(),
|
|
19
|
+
dependencies: e.array(V).optional(),
|
|
20
|
+
secrets: e.array(Y).optional()
|
|
21
|
+
}), jt = Q.extend({
|
|
22
|
+
id: e.string(),
|
|
23
|
+
tenant_id: e.string(),
|
|
24
|
+
status: e.enum(["draft", "built"]).default("built"),
|
|
25
|
+
deployed_at: e.string().optional(),
|
|
26
|
+
// Override secrets to return names only (no values) in responses
|
|
27
|
+
secrets: e.array(
|
|
28
|
+
e.object({
|
|
29
|
+
name: e.string(),
|
|
30
|
+
value: e.string().optional()
|
|
31
|
+
})
|
|
32
|
+
).optional(),
|
|
33
|
+
...s.shape
|
|
34
|
+
}), Z = e.enum([
|
|
3
35
|
"user_action",
|
|
4
36
|
"admin_action",
|
|
5
37
|
"system",
|
|
6
38
|
"api"
|
|
7
|
-
]),
|
|
39
|
+
]), $ = e.object({
|
|
8
40
|
type: e.enum(["user", "admin", "system", "api_key", "client_credentials"]),
|
|
9
41
|
id: e.string().optional(),
|
|
10
42
|
email: e.string().optional(),
|
|
@@ -12,13 +44,13 @@ const X = e.enum([
|
|
|
12
44
|
org_name: e.string().optional(),
|
|
13
45
|
scopes: e.array(e.string()).optional(),
|
|
14
46
|
client_id: e.string().optional()
|
|
15
|
-
}),
|
|
47
|
+
}), J = e.object({
|
|
16
48
|
type: e.string(),
|
|
17
49
|
id: e.string(),
|
|
18
50
|
before: e.record(e.unknown()).optional(),
|
|
19
51
|
after: e.record(e.unknown()).optional(),
|
|
20
52
|
diff: e.record(e.object({ old: e.unknown(), new: e.unknown() })).optional()
|
|
21
|
-
}),
|
|
53
|
+
}), ee = e.object({
|
|
22
54
|
method: e.string(),
|
|
23
55
|
path: e.string(),
|
|
24
56
|
query: e.record(e.string()).optional(),
|
|
@@ -26,57 +58,54 @@ const X = e.enum([
|
|
|
26
58
|
ip: e.string(),
|
|
27
59
|
user_agent: e.string().optional(),
|
|
28
60
|
correlation_id: e.string().optional()
|
|
29
|
-
}),
|
|
61
|
+
}), oe = e.object({
|
|
30
62
|
status_code: e.number(),
|
|
31
63
|
body: e.unknown().optional()
|
|
32
|
-
}),
|
|
64
|
+
}), te = e.object({
|
|
33
65
|
country_code: e.string(),
|
|
34
66
|
city_name: e.string(),
|
|
35
67
|
latitude: e.string(),
|
|
36
68
|
longitude: e.string(),
|
|
37
69
|
time_zone: e.string(),
|
|
38
70
|
continent_code: e.string()
|
|
39
|
-
}),
|
|
71
|
+
}), ne = e.object({
|
|
40
72
|
name: e.string(),
|
|
41
73
|
version: e.string(),
|
|
42
74
|
env: e.record(e.string()).optional()
|
|
43
|
-
}),
|
|
75
|
+
}), ie = e.object({
|
|
44
76
|
tenant_id: e.string(),
|
|
45
77
|
event_type: e.string(),
|
|
46
78
|
log_type: e.string(),
|
|
47
79
|
description: e.string().optional(),
|
|
48
|
-
category:
|
|
49
|
-
actor:
|
|
50
|
-
target:
|
|
51
|
-
request:
|
|
52
|
-
response:
|
|
80
|
+
category: Z,
|
|
81
|
+
actor: $,
|
|
82
|
+
target: J,
|
|
83
|
+
request: ee,
|
|
84
|
+
response: oe.optional(),
|
|
53
85
|
connection: e.string().optional(),
|
|
54
86
|
strategy: e.string().optional(),
|
|
55
87
|
strategy_type: e.string().optional(),
|
|
56
|
-
location:
|
|
57
|
-
auth0_client:
|
|
88
|
+
location: te.optional(),
|
|
89
|
+
auth0_client: ne.optional(),
|
|
58
90
|
hostname: e.string(),
|
|
59
91
|
is_mobile: e.boolean().optional(),
|
|
60
92
|
timestamp: e.string()
|
|
61
|
-
}),
|
|
93
|
+
}), Rt = ie.extend({
|
|
62
94
|
id: e.string()
|
|
63
|
-
}),
|
|
64
|
-
created_at: e.string(),
|
|
65
|
-
updated_at: e.string()
|
|
66
|
-
}), Ot = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), Nt = e.enum([
|
|
95
|
+
}), Dt = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), Lt = e.enum([
|
|
67
96
|
"CREATE_USER",
|
|
68
97
|
"GET_USER",
|
|
69
98
|
"UPDATE_USER",
|
|
70
99
|
"SEND_REQUEST",
|
|
71
100
|
"SEND_EMAIL"
|
|
72
|
-
]),
|
|
101
|
+
]), vt = e.enum(["VERIFY_EMAIL"]), ae = e.object({
|
|
73
102
|
require_mx_record: e.boolean().optional(),
|
|
74
103
|
block_aliases: e.boolean().optional(),
|
|
75
104
|
block_free_emails: e.boolean().optional(),
|
|
76
105
|
block_disposable_emails: e.boolean().optional(),
|
|
77
106
|
blocklist: e.array(e.string()).optional(),
|
|
78
107
|
allowlist: e.array(e.string()).optional()
|
|
79
|
-
}),
|
|
108
|
+
}), se = e.object({
|
|
80
109
|
id: e.string(),
|
|
81
110
|
alias: e.string().max(100).optional(),
|
|
82
111
|
type: e.literal("AUTH0"),
|
|
@@ -88,7 +117,7 @@ const X = e.enum([
|
|
|
88
117
|
user_id: e.string(),
|
|
89
118
|
changes: e.record(e.string(), e.any())
|
|
90
119
|
})
|
|
91
|
-
}),
|
|
120
|
+
}), re = e.object({
|
|
92
121
|
id: e.string(),
|
|
93
122
|
alias: e.string().max(100).optional(),
|
|
94
123
|
type: e.literal("EMAIL"),
|
|
@@ -97,9 +126,9 @@ const X = e.enum([
|
|
|
97
126
|
mask_output: e.boolean().optional(),
|
|
98
127
|
params: e.object({
|
|
99
128
|
email: e.string(),
|
|
100
|
-
rules:
|
|
129
|
+
rules: ae.optional()
|
|
101
130
|
})
|
|
102
|
-
}),
|
|
131
|
+
}), le = e.enum(["change-email", "account", "custom"]), ce = e.object({
|
|
103
132
|
id: e.string(),
|
|
104
133
|
alias: e.string().max(100).optional(),
|
|
105
134
|
type: e.literal("REDIRECT"),
|
|
@@ -107,32 +136,32 @@ const X = e.enum([
|
|
|
107
136
|
allow_failure: e.boolean().optional(),
|
|
108
137
|
mask_output: e.boolean().optional(),
|
|
109
138
|
params: e.object({
|
|
110
|
-
target:
|
|
139
|
+
target: le.openapi({
|
|
111
140
|
description: "The predefined target to redirect to, or 'custom' for a custom URL"
|
|
112
141
|
}),
|
|
113
142
|
custom_url: e.string().optional().openapi({
|
|
114
143
|
description: "Custom URL to redirect to when target is 'custom'"
|
|
115
144
|
})
|
|
116
145
|
})
|
|
117
|
-
}),
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
]),
|
|
146
|
+
}), pe = e.union([
|
|
147
|
+
se,
|
|
148
|
+
re,
|
|
149
|
+
ce
|
|
150
|
+
]), _e = e.object({
|
|
122
151
|
name: e.string().min(1).max(150).openapi({
|
|
123
152
|
description: "The name of the flow"
|
|
124
153
|
}),
|
|
125
154
|
// Actions is an array of action steps (Auth0 stores as JSON blob)
|
|
126
|
-
actions: e.array(
|
|
155
|
+
actions: e.array(pe).optional().default([]).openapi({
|
|
127
156
|
description: "The list of actions to execute in sequence"
|
|
128
157
|
})
|
|
129
|
-
}),
|
|
158
|
+
}), kt = _e.extend({
|
|
130
159
|
...s.shape,
|
|
131
160
|
id: e.string().openapi({
|
|
132
161
|
description: "Unique identifier for the flow",
|
|
133
162
|
example: "af_12tMpdJ3iek7svMyZkSh5M"
|
|
134
163
|
})
|
|
135
|
-
}),
|
|
164
|
+
}), Ut = e.object({
|
|
136
165
|
page: e.string().min(0).optional().default("0").transform((o) => parseInt(o, 10)).openapi({
|
|
137
166
|
description: "The page number where 0 is the first page"
|
|
138
167
|
}),
|
|
@@ -148,12 +177,12 @@ const X = e.enum([
|
|
|
148
177
|
q: e.string().optional().openapi({
|
|
149
178
|
description: "A lucene query string used to filter the results"
|
|
150
179
|
})
|
|
151
|
-
}),
|
|
180
|
+
}), Ft = e.object({
|
|
152
181
|
start: e.number(),
|
|
153
182
|
limit: e.number(),
|
|
154
183
|
length: e.number(),
|
|
155
184
|
total: e.number().optional()
|
|
156
|
-
}),
|
|
185
|
+
}), de = e.object({
|
|
157
186
|
email: e.string().optional(),
|
|
158
187
|
email_verified: e.boolean().optional(),
|
|
159
188
|
name: e.string().optional(),
|
|
@@ -162,7 +191,7 @@ const X = e.enum([
|
|
|
162
191
|
phone_number: e.string().optional(),
|
|
163
192
|
phone_verified: e.boolean().optional(),
|
|
164
193
|
family_name: e.string().optional()
|
|
165
|
-
}).catchall(e.any()),
|
|
194
|
+
}).catchall(e.any()), ge = e.object({
|
|
166
195
|
connection: e.string(),
|
|
167
196
|
user_id: e.string(),
|
|
168
197
|
provider: e.string(),
|
|
@@ -175,8 +204,8 @@ const X = e.enum([
|
|
|
175
204
|
access_token: e.string().optional(),
|
|
176
205
|
access_token_secret: e.string().optional(),
|
|
177
206
|
refresh_token: e.string().optional(),
|
|
178
|
-
profileData:
|
|
179
|
-
}),
|
|
207
|
+
profileData: de.optional()
|
|
208
|
+
}), ue = e.object({
|
|
180
209
|
formatted: e.string().optional(),
|
|
181
210
|
// Full mailing address
|
|
182
211
|
street_address: e.string().optional(),
|
|
@@ -221,8 +250,8 @@ const X = e.enum([
|
|
|
221
250
|
zoneinfo: e.string().optional(),
|
|
222
251
|
// e.g., "Europe/Paris"
|
|
223
252
|
// OIDC address claim (OIDC Core 5.1.1)
|
|
224
|
-
address:
|
|
225
|
-
}),
|
|
253
|
+
address: ue
|
|
254
|
+
}), me = N.extend({
|
|
226
255
|
email_verified: e.boolean().default(!1),
|
|
227
256
|
verify_email: e.boolean().optional(),
|
|
228
257
|
last_ip: e.string().optional(),
|
|
@@ -231,35 +260,43 @@ const X = e.enum([
|
|
|
231
260
|
provider: e.string().optional(),
|
|
232
261
|
connection: e.string(),
|
|
233
262
|
is_social: e.boolean().optional(),
|
|
263
|
+
/**
|
|
264
|
+
* Set when the post-user-registration outbox event has reached processed
|
|
265
|
+
* state (all post-hook destinations succeeded) or when the inline dispatch
|
|
266
|
+
* path delivered the webhooks without error. Used by `postUserLoginHook`
|
|
267
|
+
* to decide whether to re-enqueue the event on the user's next login —
|
|
268
|
+
* the self-healing mechanism for transient post-registration failures.
|
|
269
|
+
*/
|
|
270
|
+
registration_completed_at: e.string().optional(),
|
|
234
271
|
// Optional password for atomic user+password creation
|
|
235
272
|
// When provided, user and password are created in a single transaction
|
|
236
273
|
password: e.object({
|
|
237
274
|
hash: e.string(),
|
|
238
275
|
algorithm: e.string()
|
|
239
276
|
}).optional()
|
|
240
|
-
}),
|
|
241
|
-
...
|
|
277
|
+
}), he = e.object({
|
|
278
|
+
...me.omit({ password: !0 }).shape,
|
|
242
279
|
...s.shape,
|
|
243
280
|
user_id: e.string(),
|
|
244
281
|
provider: e.string(),
|
|
245
282
|
is_social: e.boolean(),
|
|
246
283
|
email: e.string().optional(),
|
|
247
284
|
login_count: e.number().default(0),
|
|
248
|
-
identities: e.array(
|
|
249
|
-
}),
|
|
285
|
+
identities: e.array(ge).optional()
|
|
286
|
+
}), xt = he, Pt = N.extend({
|
|
250
287
|
login_count: e.number(),
|
|
251
288
|
multifactor: e.array(e.string()).optional(),
|
|
252
289
|
last_ip: e.string().optional(),
|
|
253
290
|
last_login: e.string().optional(),
|
|
254
291
|
user_id: e.string()
|
|
255
292
|
}).catchall(e.any());
|
|
256
|
-
let
|
|
293
|
+
let be = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", fe = (o = 21) => {
|
|
257
294
|
let t = "", i = crypto.getRandomValues(new Uint8Array(o |= 0));
|
|
258
295
|
for (; o--; )
|
|
259
|
-
t +=
|
|
296
|
+
t += be[i[o] & 63];
|
|
260
297
|
return t;
|
|
261
298
|
};
|
|
262
|
-
const
|
|
299
|
+
const Ee = e.object({
|
|
263
300
|
client_id: e.string().openapi({
|
|
264
301
|
description: "ID of this client."
|
|
265
302
|
}),
|
|
@@ -272,7 +309,7 @@ const me = e.object({
|
|
|
272
309
|
global: e.boolean().default(!1).openapi({
|
|
273
310
|
description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
|
|
274
311
|
}),
|
|
275
|
-
client_secret: e.string().default(() =>
|
|
312
|
+
client_secret: e.string().default(() => fe()).optional().openapi({
|
|
276
313
|
description: "Client secret (which you must not make public)."
|
|
277
314
|
}),
|
|
278
315
|
app_type: e.enum([
|
|
@@ -432,11 +469,11 @@ const me = e.object({
|
|
|
432
469
|
description: "Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"
|
|
433
470
|
}),
|
|
434
471
|
token_quota: e.record(e.any()).default({}).optional()
|
|
435
|
-
}),
|
|
472
|
+
}), Mt = e.object({
|
|
436
473
|
created_at: e.string(),
|
|
437
474
|
updated_at: e.string(),
|
|
438
|
-
...
|
|
439
|
-
}),
|
|
475
|
+
...Ee.shape
|
|
476
|
+
}), Se = e.object({
|
|
440
477
|
client_id: e.string().min(1).openapi({
|
|
441
478
|
description: "ID of the client."
|
|
442
479
|
}),
|
|
@@ -461,14 +498,14 @@ const me = e.object({
|
|
|
461
498
|
authorization_details_types: e.array(e.string()).optional().openapi({
|
|
462
499
|
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."
|
|
463
500
|
})
|
|
464
|
-
}),
|
|
501
|
+
}), Ae = e.object({
|
|
465
502
|
id: e.string().openapi({
|
|
466
503
|
description: "ID of the client grant."
|
|
467
504
|
}),
|
|
468
|
-
...
|
|
505
|
+
...Se.shape,
|
|
469
506
|
created_at: e.string().optional(),
|
|
470
507
|
updated_at: e.string().optional()
|
|
471
|
-
}),
|
|
508
|
+
}), Ht = e.array(Ae), m = e.object({
|
|
472
509
|
x: e.number(),
|
|
473
510
|
y: e.number()
|
|
474
511
|
});
|
|
@@ -477,7 +514,7 @@ const I = e.object({
|
|
|
477
514
|
id: e.string(),
|
|
478
515
|
category: e.nativeEnum(j),
|
|
479
516
|
type: e.nativeEnum(w)
|
|
480
|
-
}),
|
|
517
|
+
}), ye = I.extend({
|
|
481
518
|
category: e.literal(
|
|
482
519
|
"BLOCK"
|
|
483
520
|
/* BLOCK */
|
|
@@ -489,7 +526,7 @@ const I = e.object({
|
|
|
489
526
|
config: e.object({
|
|
490
527
|
content: e.string()
|
|
491
528
|
}).passthrough()
|
|
492
|
-
}),
|
|
529
|
+
}), Ie = I.extend({
|
|
493
530
|
category: e.literal(
|
|
494
531
|
"BLOCK"
|
|
495
532
|
/* BLOCK */
|
|
@@ -511,7 +548,7 @@ const I = e.object({
|
|
|
511
548
|
config: e.object({
|
|
512
549
|
text: e.string()
|
|
513
550
|
}).passthrough()
|
|
514
|
-
}),
|
|
551
|
+
}), Ce = I.extend({
|
|
515
552
|
category: e.literal(
|
|
516
553
|
"FIELD"
|
|
517
554
|
/* FIELD */
|
|
@@ -525,7 +562,7 @@ const I = e.object({
|
|
|
525
562
|
config: e.object({
|
|
526
563
|
text: e.string()
|
|
527
564
|
}).passthrough()
|
|
528
|
-
}),
|
|
565
|
+
}), Te = I.extend({
|
|
529
566
|
category: e.literal(
|
|
530
567
|
"FIELD"
|
|
531
568
|
/* FIELD */
|
|
@@ -578,19 +615,19 @@ const I = e.object({
|
|
|
578
615
|
label: e.string().optional(),
|
|
579
616
|
placeholder: e.string().optional()
|
|
580
617
|
}).passthrough()
|
|
581
|
-
}),
|
|
618
|
+
}), Oe = e.object({
|
|
582
619
|
id: e.string(),
|
|
583
620
|
category: e.string(),
|
|
584
621
|
type: e.string()
|
|
585
|
-
}).passthrough(),
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
622
|
+
}).passthrough(), Ne = e.union([
|
|
623
|
+
ye,
|
|
624
|
+
Ie,
|
|
625
|
+
Ce,
|
|
626
|
+
Te,
|
|
627
|
+
Oe
|
|
591
628
|
]);
|
|
592
|
-
var
|
|
593
|
-
const
|
|
629
|
+
var we = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(we || {});
|
|
630
|
+
const je = e.object({
|
|
594
631
|
id: e.string(),
|
|
595
632
|
type: e.literal(
|
|
596
633
|
"STEP"
|
|
@@ -599,10 +636,10 @@ const Te = e.object({
|
|
|
599
636
|
coordinates: m,
|
|
600
637
|
alias: e.string().optional(),
|
|
601
638
|
config: e.object({
|
|
602
|
-
components: e.array(
|
|
639
|
+
components: e.array(Ne),
|
|
603
640
|
next_node: e.string()
|
|
604
641
|
}).passthrough()
|
|
605
|
-
}),
|
|
642
|
+
}), Re = e.object({
|
|
606
643
|
id: e.string(),
|
|
607
644
|
type: e.literal(
|
|
608
645
|
"FLOW"
|
|
@@ -614,7 +651,7 @@ const Te = e.object({
|
|
|
614
651
|
flow_id: e.string(),
|
|
615
652
|
next_node: e.string()
|
|
616
653
|
})
|
|
617
|
-
}),
|
|
654
|
+
}), De = e.object({
|
|
618
655
|
id: e.string(),
|
|
619
656
|
type: e.literal(
|
|
620
657
|
"ACTION"
|
|
@@ -636,43 +673,43 @@ const Te = e.object({
|
|
|
636
673
|
description: "The next node to navigate to after action (for non-redirect actions)"
|
|
637
674
|
})
|
|
638
675
|
}).passthrough()
|
|
639
|
-
}),
|
|
676
|
+
}), Le = e.object({
|
|
640
677
|
id: e.string(),
|
|
641
678
|
type: e.string(),
|
|
642
679
|
coordinates: m
|
|
643
|
-
}).passthrough(),
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
]),
|
|
680
|
+
}).passthrough(), ve = e.union([
|
|
681
|
+
je,
|
|
682
|
+
Re,
|
|
683
|
+
De,
|
|
684
|
+
Le
|
|
685
|
+
]), ke = e.object({
|
|
649
686
|
next_node: e.string(),
|
|
650
687
|
coordinates: m
|
|
651
|
-
}).passthrough(),
|
|
688
|
+
}).passthrough(), Ue = e.object({
|
|
652
689
|
resume_flow: e.boolean().optional(),
|
|
653
690
|
coordinates: m
|
|
654
|
-
}).passthrough(),
|
|
691
|
+
}).passthrough(), Fe = e.object({
|
|
655
692
|
id: e.string(),
|
|
656
693
|
name: e.string(),
|
|
657
694
|
languages: e.object({
|
|
658
695
|
primary: e.string()
|
|
659
696
|
}).passthrough(),
|
|
660
|
-
nodes: e.array(
|
|
661
|
-
start:
|
|
662
|
-
ending:
|
|
697
|
+
nodes: e.array(ve),
|
|
698
|
+
start: ke,
|
|
699
|
+
ending: Ue,
|
|
663
700
|
created_at: e.string(),
|
|
664
701
|
updated_at: e.string(),
|
|
665
702
|
links: e.object({
|
|
666
703
|
sdkSrc: e.string().optional(),
|
|
667
704
|
sdk_src: e.string().optional()
|
|
668
705
|
}).passthrough()
|
|
669
|
-
}).passthrough(),
|
|
706
|
+
}).passthrough(), Gt = Fe.omit({
|
|
670
707
|
id: !0,
|
|
671
708
|
created_at: !0,
|
|
672
709
|
updated_at: !0
|
|
673
710
|
});
|
|
674
711
|
var R = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "token id_token", o.CODE = "code", o))(R || {}), D = /* @__PURE__ */ ((o) => (o.QUERY = "query", o.FRAGMENT = "fragment", o.FORM_POST = "form_post", o.WEB_MESSAGE = "web_message", o.SAML_POST = "saml_post", o))(D || {}), L = /* @__PURE__ */ ((o) => (o.S256 = "S256", o.Plain = "plain", o))(L || {});
|
|
675
|
-
const
|
|
712
|
+
const xe = e.object({
|
|
676
713
|
client_id: e.string(),
|
|
677
714
|
act_as: e.string().optional(),
|
|
678
715
|
response_type: e.nativeEnum(R).optional(),
|
|
@@ -696,7 +733,7 @@ const ve = e.object({
|
|
|
696
733
|
acr_values: e.string().optional(),
|
|
697
734
|
// The following fields are not available in Auth0
|
|
698
735
|
vendor_id: e.string().optional()
|
|
699
|
-
}),
|
|
736
|
+
}), Bt = e.object({
|
|
700
737
|
colors: e.object({
|
|
701
738
|
primary: e.string(),
|
|
702
739
|
page_background: e.object({
|
|
@@ -712,7 +749,7 @@ const ve = e.object({
|
|
|
712
749
|
font: e.object({
|
|
713
750
|
url: e.string()
|
|
714
751
|
}).optional()
|
|
715
|
-
}),
|
|
752
|
+
}), Pe = e.enum([
|
|
716
753
|
"password_reset",
|
|
717
754
|
"email_verification",
|
|
718
755
|
"otp",
|
|
@@ -720,7 +757,7 @@ const ve = e.object({
|
|
|
720
757
|
"authorization_code",
|
|
721
758
|
"oauth2_state",
|
|
722
759
|
"ticket"
|
|
723
|
-
]),
|
|
760
|
+
]), Me = e.object({
|
|
724
761
|
code_id: e.string().openapi({
|
|
725
762
|
description: "The code that will be used in for instance an email verification flow"
|
|
726
763
|
}),
|
|
@@ -730,7 +767,7 @@ const ve = e.object({
|
|
|
730
767
|
connection_id: e.string().optional().openapi({
|
|
731
768
|
description: "The connection that the code is connected to"
|
|
732
769
|
}),
|
|
733
|
-
code_type:
|
|
770
|
+
code_type: Pe,
|
|
734
771
|
code_verifier: e.string().optional().openapi({
|
|
735
772
|
description: "The code verifier used in PKCE in outbound flows"
|
|
736
773
|
}),
|
|
@@ -755,10 +792,10 @@ const ve = e.object({
|
|
|
755
792
|
expires_at: e.string(),
|
|
756
793
|
used_at: e.string().optional(),
|
|
757
794
|
user_id: e.string().optional()
|
|
758
|
-
}),
|
|
759
|
-
...
|
|
795
|
+
}), Wt = e.object({
|
|
796
|
+
...Me.shape,
|
|
760
797
|
created_at: e.string()
|
|
761
|
-
}),
|
|
798
|
+
}), He = e.object({
|
|
762
799
|
kid: e.string().optional(),
|
|
763
800
|
team_id: e.string().optional(),
|
|
764
801
|
realms: e.string().optional(),
|
|
@@ -870,12 +907,12 @@ const ve = e.object({
|
|
|
870
907
|
}).optional(),
|
|
871
908
|
// Controls when root user attributes are updated from external IdP
|
|
872
909
|
set_user_root_attributes: e.enum(["on_each_login", "on_first_login", "never_on_login"]).optional()
|
|
873
|
-
}),
|
|
910
|
+
}), Ge = e.object({
|
|
874
911
|
id: e.string().optional(),
|
|
875
912
|
name: e.string(),
|
|
876
913
|
display_name: e.string().optional(),
|
|
877
914
|
strategy: e.string(),
|
|
878
|
-
options:
|
|
915
|
+
options: He.default({}),
|
|
879
916
|
enabled_clients: e.array(e.string()).default([]).optional(),
|
|
880
917
|
response_type: e.custom().optional(),
|
|
881
918
|
response_mode: e.custom().optional(),
|
|
@@ -883,11 +920,11 @@ const ve = e.object({
|
|
|
883
920
|
show_as_button: e.boolean().optional(),
|
|
884
921
|
metadata: e.record(e.any()).optional(),
|
|
885
922
|
is_system: e.boolean().optional()
|
|
886
|
-
}),
|
|
923
|
+
}), Kt = e.object({
|
|
887
924
|
id: e.string(),
|
|
888
925
|
created_at: e.string().transform((o) => o === null ? "" : o),
|
|
889
926
|
updated_at: e.string().transform((o) => o === null ? "" : o)
|
|
890
|
-
}).extend(
|
|
927
|
+
}).extend(Ge.shape), Be = e.object({
|
|
891
928
|
domain: e.string(),
|
|
892
929
|
custom_domain_id: e.string().optional(),
|
|
893
930
|
type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
|
|
@@ -901,7 +938,7 @@ const ve = e.object({
|
|
|
901
938
|
"null"
|
|
902
939
|
]).optional(),
|
|
903
940
|
domain_metadata: e.record(e.string().max(255)).optional()
|
|
904
|
-
}),
|
|
941
|
+
}), We = e.discriminatedUnion("name", [
|
|
905
942
|
e.object({
|
|
906
943
|
name: e.literal("txt"),
|
|
907
944
|
record: e.string(),
|
|
@@ -912,17 +949,17 @@ const ve = e.object({
|
|
|
912
949
|
http_body: e.string(),
|
|
913
950
|
http_url: e.string()
|
|
914
951
|
})
|
|
915
|
-
]),
|
|
916
|
-
...
|
|
952
|
+
]), Ke = e.object({
|
|
953
|
+
...Be.shape,
|
|
917
954
|
custom_domain_id: e.string(),
|
|
918
955
|
primary: e.boolean(),
|
|
919
956
|
status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
|
|
920
957
|
origin_domain_name: e.string().optional(),
|
|
921
958
|
verification: e.object({
|
|
922
|
-
methods: e.array(
|
|
959
|
+
methods: e.array(We)
|
|
923
960
|
}).optional(),
|
|
924
961
|
tls_policy: e.string().optional()
|
|
925
|
-
}),
|
|
962
|
+
}), zt = Ke.extend({
|
|
926
963
|
tenant_id: e.string()
|
|
927
964
|
}), C = e.object({
|
|
928
965
|
id: e.string(),
|
|
@@ -930,17 +967,17 @@ const ve = e.object({
|
|
|
930
967
|
visible: e.boolean().optional().default(!0)
|
|
931
968
|
}), l = C.extend({
|
|
932
969
|
category: e.literal("BLOCK").optional()
|
|
933
|
-
}),
|
|
970
|
+
}), ze = l.extend({
|
|
934
971
|
type: e.literal("DIVIDER"),
|
|
935
972
|
config: e.object({
|
|
936
973
|
text: e.string().optional()
|
|
937
974
|
}).optional()
|
|
938
|
-
}),
|
|
975
|
+
}), qe = l.extend({
|
|
939
976
|
type: e.literal("HTML"),
|
|
940
977
|
config: e.object({
|
|
941
978
|
content: e.string().optional()
|
|
942
979
|
}).optional()
|
|
943
|
-
}),
|
|
980
|
+
}), Xe = l.extend({
|
|
944
981
|
type: e.literal("IMAGE"),
|
|
945
982
|
config: e.object({
|
|
946
983
|
src: e.string().optional(),
|
|
@@ -948,29 +985,29 @@ const ve = e.object({
|
|
|
948
985
|
width: e.number().optional(),
|
|
949
986
|
height: e.number().optional()
|
|
950
987
|
}).optional()
|
|
951
|
-
}),
|
|
988
|
+
}), Ve = l.extend({
|
|
952
989
|
type: e.literal("JUMP_BUTTON"),
|
|
953
990
|
config: e.object({
|
|
954
991
|
text: e.string().optional(),
|
|
955
992
|
target_step: e.string().optional()
|
|
956
993
|
})
|
|
957
|
-
}),
|
|
994
|
+
}), Ye = l.extend({
|
|
958
995
|
type: e.literal("RESEND_BUTTON"),
|
|
959
996
|
config: e.object({
|
|
960
997
|
text: e.string().optional(),
|
|
961
998
|
resend_action: e.string().optional()
|
|
962
999
|
})
|
|
963
|
-
}),
|
|
1000
|
+
}), Qe = l.extend({
|
|
964
1001
|
type: e.literal("NEXT_BUTTON"),
|
|
965
1002
|
config: e.object({
|
|
966
1003
|
text: e.string().optional()
|
|
967
1004
|
})
|
|
968
|
-
}),
|
|
1005
|
+
}), Ze = l.extend({
|
|
969
1006
|
type: e.literal("PREVIOUS_BUTTON"),
|
|
970
1007
|
config: e.object({
|
|
971
1008
|
text: e.string().optional()
|
|
972
1009
|
})
|
|
973
|
-
}),
|
|
1010
|
+
}), $e = l.extend({
|
|
974
1011
|
type: e.literal("RICH_TEXT"),
|
|
975
1012
|
config: e.object({
|
|
976
1013
|
content: e.string().optional()
|
|
@@ -981,17 +1018,17 @@ const ve = e.object({
|
|
|
981
1018
|
hint: e.string().min(1).max(500).optional(),
|
|
982
1019
|
required: e.boolean().optional(),
|
|
983
1020
|
sensitive: e.boolean().optional()
|
|
984
|
-
}),
|
|
1021
|
+
}), Je = T.extend({
|
|
985
1022
|
type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
|
|
986
1023
|
config: e.object({
|
|
987
1024
|
credential_type: e.string().optional()
|
|
988
1025
|
})
|
|
989
|
-
}),
|
|
1026
|
+
}), eo = T.extend({
|
|
990
1027
|
type: e.literal("GMAPS_ADDRESS"),
|
|
991
1028
|
config: e.object({
|
|
992
1029
|
api_key: e.string().optional()
|
|
993
1030
|
})
|
|
994
|
-
}),
|
|
1031
|
+
}), oo = T.extend({
|
|
995
1032
|
type: e.literal("RECAPTCHA"),
|
|
996
1033
|
config: e.object({
|
|
997
1034
|
site_key: e.string().optional()
|
|
@@ -1009,12 +1046,12 @@ const ve = e.object({
|
|
|
1009
1046
|
).optional(),
|
|
1010
1047
|
required: e.boolean().optional(),
|
|
1011
1048
|
sensitive: e.boolean().optional()
|
|
1012
|
-
}),
|
|
1049
|
+
}), to = n.extend({
|
|
1013
1050
|
type: e.literal("BOOLEAN"),
|
|
1014
1051
|
config: e.object({
|
|
1015
1052
|
default_value: e.boolean().optional()
|
|
1016
1053
|
}).optional()
|
|
1017
|
-
}),
|
|
1054
|
+
}), no = n.extend({
|
|
1018
1055
|
type: e.literal("CARDS"),
|
|
1019
1056
|
config: e.object({
|
|
1020
1057
|
options: e.array(
|
|
@@ -1027,7 +1064,7 @@ const ve = e.object({
|
|
|
1027
1064
|
).optional(),
|
|
1028
1065
|
multi_select: e.boolean().optional()
|
|
1029
1066
|
}).optional()
|
|
1030
|
-
}),
|
|
1067
|
+
}), io = n.extend({
|
|
1031
1068
|
type: e.literal("CHOICE"),
|
|
1032
1069
|
config: e.object({
|
|
1033
1070
|
options: e.array(
|
|
@@ -1040,7 +1077,7 @@ const ve = e.object({
|
|
|
1040
1077
|
multiple: e.boolean().optional(),
|
|
1041
1078
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1042
1079
|
}).optional()
|
|
1043
|
-
}),
|
|
1080
|
+
}), ao = n.extend({
|
|
1044
1081
|
type: e.literal("CUSTOM"),
|
|
1045
1082
|
config: e.object({
|
|
1046
1083
|
component: e.string().optional(),
|
|
@@ -1048,7 +1085,7 @@ const ve = e.object({
|
|
|
1048
1085
|
schema: e.record(e.any()).optional(),
|
|
1049
1086
|
code: e.string().optional()
|
|
1050
1087
|
})
|
|
1051
|
-
}),
|
|
1088
|
+
}), so = n.extend({
|
|
1052
1089
|
type: e.literal("DATE"),
|
|
1053
1090
|
config: e.object({
|
|
1054
1091
|
format: e.string().optional(),
|
|
@@ -1056,7 +1093,7 @@ const ve = e.object({
|
|
|
1056
1093
|
max: e.string().optional(),
|
|
1057
1094
|
default_value: e.string().optional()
|
|
1058
1095
|
}).optional()
|
|
1059
|
-
}),
|
|
1096
|
+
}), ro = n.extend({
|
|
1060
1097
|
type: e.literal("DROPDOWN"),
|
|
1061
1098
|
config: e.object({
|
|
1062
1099
|
options: e.array(
|
|
@@ -1070,26 +1107,26 @@ const ve = e.object({
|
|
|
1070
1107
|
multiple: e.boolean().optional(),
|
|
1071
1108
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1072
1109
|
}).optional()
|
|
1073
|
-
}),
|
|
1110
|
+
}), lo = n.extend({
|
|
1074
1111
|
type: e.literal("EMAIL"),
|
|
1075
1112
|
config: e.object({
|
|
1076
1113
|
placeholder: e.string().optional(),
|
|
1077
1114
|
default_value: e.string().optional()
|
|
1078
1115
|
}).optional()
|
|
1079
|
-
}),
|
|
1116
|
+
}), co = n.extend({
|
|
1080
1117
|
type: e.literal("FILE"),
|
|
1081
1118
|
config: e.object({
|
|
1082
1119
|
accept: e.string().optional(),
|
|
1083
1120
|
max_size: e.number().optional(),
|
|
1084
1121
|
multiple: e.boolean().optional()
|
|
1085
1122
|
}).optional()
|
|
1086
|
-
}),
|
|
1123
|
+
}), po = n.extend({
|
|
1087
1124
|
type: e.literal("LEGAL"),
|
|
1088
1125
|
config: e.object({
|
|
1089
1126
|
text: e.string(),
|
|
1090
1127
|
html: e.boolean().optional()
|
|
1091
1128
|
}).optional()
|
|
1092
|
-
}),
|
|
1129
|
+
}), _o = n.extend({
|
|
1093
1130
|
type: e.literal("NUMBER"),
|
|
1094
1131
|
config: e.object({
|
|
1095
1132
|
placeholder: e.string().optional(),
|
|
@@ -1098,7 +1135,7 @@ const ve = e.object({
|
|
|
1098
1135
|
step: e.number().optional(),
|
|
1099
1136
|
default_value: e.string().optional()
|
|
1100
1137
|
}).optional()
|
|
1101
|
-
}),
|
|
1138
|
+
}), go = n.extend({
|
|
1102
1139
|
type: e.literal("PASSWORD"),
|
|
1103
1140
|
config: e.object({
|
|
1104
1141
|
placeholder: e.string().optional(),
|
|
@@ -1107,13 +1144,13 @@ const ve = e.object({
|
|
|
1107
1144
|
forgot_password_link: e.string().optional(),
|
|
1108
1145
|
default_value: e.string().optional()
|
|
1109
1146
|
}).optional()
|
|
1110
|
-
}),
|
|
1147
|
+
}), uo = n.extend({
|
|
1111
1148
|
type: e.literal("PAYMENT"),
|
|
1112
1149
|
config: e.object({
|
|
1113
1150
|
provider: e.string().optional(),
|
|
1114
1151
|
currency: e.string().optional()
|
|
1115
1152
|
}).optional()
|
|
1116
|
-
}),
|
|
1153
|
+
}), mo = n.extend({
|
|
1117
1154
|
type: e.literal("SOCIAL"),
|
|
1118
1155
|
config: e.object({
|
|
1119
1156
|
providers: e.array(e.string()).optional(),
|
|
@@ -1128,7 +1165,7 @@ const ve = e.object({
|
|
|
1128
1165
|
})
|
|
1129
1166
|
).optional()
|
|
1130
1167
|
}).optional()
|
|
1131
|
-
}),
|
|
1168
|
+
}), ho = n.extend({
|
|
1132
1169
|
type: e.literal("TEL"),
|
|
1133
1170
|
config: e.object({
|
|
1134
1171
|
placeholder: e.string().optional(),
|
|
@@ -1136,7 +1173,7 @@ const ve = e.object({
|
|
|
1136
1173
|
default_value: e.string().optional(),
|
|
1137
1174
|
allow_email: e.boolean().optional()
|
|
1138
1175
|
}).optional()
|
|
1139
|
-
}),
|
|
1176
|
+
}), bo = n.extend({
|
|
1140
1177
|
type: e.literal("TEXT"),
|
|
1141
1178
|
config: e.object({
|
|
1142
1179
|
placeholder: e.string().optional(),
|
|
@@ -1144,54 +1181,54 @@ const ve = e.object({
|
|
|
1144
1181
|
max_length: e.number().optional(),
|
|
1145
1182
|
default_value: e.string().optional()
|
|
1146
1183
|
}).optional()
|
|
1147
|
-
}),
|
|
1184
|
+
}), fo = n.extend({
|
|
1148
1185
|
type: e.literal("COUNTRY"),
|
|
1149
1186
|
config: e.object({
|
|
1150
1187
|
placeholder: e.string().optional(),
|
|
1151
1188
|
default_value: e.string().optional()
|
|
1152
1189
|
}).optional()
|
|
1153
|
-
}),
|
|
1190
|
+
}), Eo = n.extend({
|
|
1154
1191
|
type: e.literal("URL"),
|
|
1155
1192
|
config: e.object({
|
|
1156
1193
|
placeholder: e.string().optional(),
|
|
1157
1194
|
default_value: e.string().optional()
|
|
1158
1195
|
}).optional()
|
|
1159
|
-
}),
|
|
1160
|
-
Ge,
|
|
1161
|
-
Be,
|
|
1162
|
-
We,
|
|
1163
|
-
Ke,
|
|
1196
|
+
}), So = e.discriminatedUnion("type", [
|
|
1164
1197
|
ze,
|
|
1165
1198
|
qe,
|
|
1166
1199
|
Xe,
|
|
1167
|
-
Ve
|
|
1168
|
-
]), bo = e.discriminatedUnion("type", [
|
|
1200
|
+
Ve,
|
|
1169
1201
|
Ye,
|
|
1170
1202
|
Qe,
|
|
1171
|
-
Ze
|
|
1172
|
-
|
|
1173
|
-
|
|
1203
|
+
Ze,
|
|
1204
|
+
$e
|
|
1205
|
+
]), Ao = e.discriminatedUnion("type", [
|
|
1174
1206
|
Je,
|
|
1175
1207
|
eo,
|
|
1176
|
-
|
|
1177
|
-
|
|
1208
|
+
oo
|
|
1209
|
+
]), yo = e.discriminatedUnion("type", [
|
|
1178
1210
|
to,
|
|
1179
1211
|
no,
|
|
1180
1212
|
io,
|
|
1213
|
+
fo,
|
|
1181
1214
|
ao,
|
|
1182
1215
|
so,
|
|
1183
1216
|
ro,
|
|
1184
1217
|
lo,
|
|
1185
|
-
po,
|
|
1186
1218
|
co,
|
|
1219
|
+
po,
|
|
1187
1220
|
_o,
|
|
1188
1221
|
go,
|
|
1189
|
-
|
|
1190
|
-
|
|
1222
|
+
uo,
|
|
1223
|
+
mo,
|
|
1191
1224
|
ho,
|
|
1192
1225
|
bo,
|
|
1193
|
-
|
|
1194
|
-
]),
|
|
1226
|
+
Eo
|
|
1227
|
+
]), v = e.union([
|
|
1228
|
+
So,
|
|
1229
|
+
Ao,
|
|
1230
|
+
yo
|
|
1231
|
+
]), qt = /* @__PURE__ */ new Set([
|
|
1195
1232
|
"BOOLEAN",
|
|
1196
1233
|
"CARDS",
|
|
1197
1234
|
"CHOICE",
|
|
@@ -1205,7 +1242,7 @@ const ve = e.object({
|
|
|
1205
1242
|
"TEL",
|
|
1206
1243
|
"TEXT",
|
|
1207
1244
|
"URL"
|
|
1208
|
-
]),
|
|
1245
|
+
]), Xt = e.object({
|
|
1209
1246
|
id: e.string(),
|
|
1210
1247
|
type: e.literal("submit"),
|
|
1211
1248
|
label: e.string(),
|
|
@@ -1217,7 +1254,7 @@ const ve = e.object({
|
|
|
1217
1254
|
}), f = e.object({
|
|
1218
1255
|
x: e.number(),
|
|
1219
1256
|
y: e.number()
|
|
1220
|
-
}),
|
|
1257
|
+
}), Io = e.object({
|
|
1221
1258
|
id: e.string(),
|
|
1222
1259
|
type: e.literal("FLOW"),
|
|
1223
1260
|
coordinates: f,
|
|
@@ -1226,7 +1263,7 @@ const ve = e.object({
|
|
|
1226
1263
|
flow_id: e.string().max(30),
|
|
1227
1264
|
next_node: e.string().optional()
|
|
1228
1265
|
})
|
|
1229
|
-
}),
|
|
1266
|
+
}), Co = e.object({
|
|
1230
1267
|
id: e.string(),
|
|
1231
1268
|
type: e.literal("ROUTER"),
|
|
1232
1269
|
coordinates: f,
|
|
@@ -1242,7 +1279,7 @@ const ve = e.object({
|
|
|
1242
1279
|
),
|
|
1243
1280
|
fallback: e.string()
|
|
1244
1281
|
})
|
|
1245
|
-
}),
|
|
1282
|
+
}), To = e.object({
|
|
1246
1283
|
id: e.string(),
|
|
1247
1284
|
type: e.literal("STEP"),
|
|
1248
1285
|
coordinates: f,
|
|
@@ -1251,11 +1288,11 @@ const ve = e.object({
|
|
|
1251
1288
|
components: e.array(v),
|
|
1252
1289
|
next_node: e.string().optional()
|
|
1253
1290
|
})
|
|
1254
|
-
}),
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
]),
|
|
1291
|
+
}), Oo = e.discriminatedUnion("type", [
|
|
1292
|
+
Io,
|
|
1293
|
+
Co,
|
|
1294
|
+
To
|
|
1295
|
+
]), No = e.object({
|
|
1259
1296
|
name: e.string().openapi({
|
|
1260
1297
|
description: "The name of the form"
|
|
1261
1298
|
}),
|
|
@@ -1268,7 +1305,7 @@ const ve = e.object({
|
|
|
1268
1305
|
default: e.string().optional()
|
|
1269
1306
|
}).optional(),
|
|
1270
1307
|
translations: e.record(e.string(), e.any()).optional(),
|
|
1271
|
-
nodes: e.array(
|
|
1308
|
+
nodes: e.array(Oo).optional(),
|
|
1272
1309
|
start: e.object({
|
|
1273
1310
|
hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
|
|
1274
1311
|
next_node: e.string().optional(),
|
|
@@ -1290,20 +1327,20 @@ const ve = e.object({
|
|
|
1290
1327
|
}).optional()
|
|
1291
1328
|
}).openapi({
|
|
1292
1329
|
description: "Schema for flow-based forms (matches Auth0 Forms structure)"
|
|
1293
|
-
}),
|
|
1330
|
+
}), Vt = e.object({
|
|
1294
1331
|
...s.shape,
|
|
1295
|
-
...
|
|
1332
|
+
...No.shape,
|
|
1296
1333
|
id: e.string()
|
|
1297
|
-
}),
|
|
1334
|
+
}), wo = e.object({
|
|
1298
1335
|
id: e.number().optional(),
|
|
1299
1336
|
text: e.string(),
|
|
1300
1337
|
type: e.enum(["info", "error", "success", "warning"])
|
|
1301
|
-
}),
|
|
1338
|
+
}), jo = e.object({
|
|
1302
1339
|
id: e.string().optional(),
|
|
1303
1340
|
text: e.string(),
|
|
1304
1341
|
href: e.string(),
|
|
1305
1342
|
linkText: e.string().optional()
|
|
1306
|
-
}),
|
|
1343
|
+
}), Yt = e.object({
|
|
1307
1344
|
/** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
|
|
1308
1345
|
name: e.string().optional(),
|
|
1309
1346
|
action: e.string(),
|
|
@@ -1311,18 +1348,18 @@ const ve = e.object({
|
|
|
1311
1348
|
title: e.string().optional(),
|
|
1312
1349
|
description: e.string().optional(),
|
|
1313
1350
|
components: e.array(v),
|
|
1314
|
-
messages: e.array(
|
|
1315
|
-
links: e.array(
|
|
1351
|
+
messages: e.array(wo).optional(),
|
|
1352
|
+
links: e.array(jo).optional(),
|
|
1316
1353
|
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
1317
1354
|
footer: e.string().optional()
|
|
1318
1355
|
});
|
|
1319
|
-
function
|
|
1356
|
+
function Qt(o) {
|
|
1320
1357
|
return o.category === "BLOCK";
|
|
1321
1358
|
}
|
|
1322
|
-
function
|
|
1359
|
+
function Zt(o) {
|
|
1323
1360
|
return o.category === "WIDGET";
|
|
1324
1361
|
}
|
|
1325
|
-
function
|
|
1362
|
+
function $t(o) {
|
|
1326
1363
|
return o.category === "FIELD";
|
|
1327
1364
|
}
|
|
1328
1365
|
const k = e.enum([
|
|
@@ -1351,7 +1388,7 @@ const k = e.enum([
|
|
|
1351
1388
|
]), P = e.enum([
|
|
1352
1389
|
"ensure-username",
|
|
1353
1390
|
"set-preferred-username"
|
|
1354
|
-
]),
|
|
1391
|
+
]), Jt = {
|
|
1355
1392
|
"ensure-username": {
|
|
1356
1393
|
name: "Ensure Username",
|
|
1357
1394
|
description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
|
|
@@ -1362,76 +1399,76 @@ const k = e.enum([
|
|
|
1362
1399
|
description: "Sets the preferred_username claim on tokens based on the username from the primary or linked user.",
|
|
1363
1400
|
trigger_id: "credentials-exchange"
|
|
1364
1401
|
}
|
|
1365
|
-
},
|
|
1402
|
+
}, c = {
|
|
1366
1403
|
enabled: e.boolean().default(!1),
|
|
1367
1404
|
synchronous: e.boolean().default(!1),
|
|
1368
1405
|
priority: e.number().optional(),
|
|
1369
1406
|
hook_id: e.string().optional()
|
|
1370
|
-
},
|
|
1371
|
-
...
|
|
1407
|
+
}, Ro = e.object({
|
|
1408
|
+
...c,
|
|
1372
1409
|
trigger_id: k,
|
|
1373
1410
|
url: e.string()
|
|
1374
|
-
}),
|
|
1375
|
-
...
|
|
1411
|
+
}), Do = e.object({
|
|
1412
|
+
...c,
|
|
1376
1413
|
trigger_id: U,
|
|
1377
1414
|
form_id: e.string()
|
|
1378
|
-
}),
|
|
1379
|
-
...
|
|
1415
|
+
}), Lo = e.object({
|
|
1416
|
+
...c,
|
|
1380
1417
|
trigger_id: F,
|
|
1381
1418
|
template_id: P
|
|
1382
|
-
}),
|
|
1383
|
-
...
|
|
1419
|
+
}), vo = e.object({
|
|
1420
|
+
...c,
|
|
1384
1421
|
trigger_id: x,
|
|
1385
1422
|
code_id: e.string()
|
|
1386
|
-
}),
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
]),
|
|
1392
|
-
...
|
|
1423
|
+
}), en = e.union([
|
|
1424
|
+
Ro,
|
|
1425
|
+
Do,
|
|
1426
|
+
Lo,
|
|
1427
|
+
vo
|
|
1428
|
+
]), ko = e.object({
|
|
1429
|
+
...c,
|
|
1393
1430
|
trigger_id: k,
|
|
1394
1431
|
...s.shape,
|
|
1395
1432
|
hook_id: e.string(),
|
|
1396
1433
|
url: e.string()
|
|
1397
|
-
}),
|
|
1398
|
-
...
|
|
1434
|
+
}), Uo = e.object({
|
|
1435
|
+
...c,
|
|
1399
1436
|
trigger_id: U,
|
|
1400
1437
|
...s.shape,
|
|
1401
1438
|
hook_id: e.string(),
|
|
1402
1439
|
form_id: e.string()
|
|
1403
|
-
}),
|
|
1404
|
-
...
|
|
1440
|
+
}), Fo = e.object({
|
|
1441
|
+
...c,
|
|
1405
1442
|
trigger_id: F,
|
|
1406
1443
|
...s.shape,
|
|
1407
1444
|
hook_id: e.string(),
|
|
1408
1445
|
template_id: P
|
|
1409
|
-
}),
|
|
1410
|
-
...
|
|
1446
|
+
}), xo = e.object({
|
|
1447
|
+
...c,
|
|
1411
1448
|
trigger_id: x,
|
|
1412
1449
|
...s.shape,
|
|
1413
1450
|
hook_id: e.string(),
|
|
1414
1451
|
code_id: e.string()
|
|
1415
|
-
}),
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
]),
|
|
1452
|
+
}), on = e.union([
|
|
1453
|
+
ko,
|
|
1454
|
+
Uo,
|
|
1455
|
+
Fo,
|
|
1456
|
+
xo
|
|
1457
|
+
]), Po = e.object({
|
|
1421
1458
|
code: e.string().max(1e5),
|
|
1422
1459
|
secrets: e.record(e.string()).optional()
|
|
1423
|
-
}),
|
|
1460
|
+
}), tn = Po.extend({
|
|
1424
1461
|
id: e.string(),
|
|
1425
1462
|
tenant_id: e.string(),
|
|
1426
1463
|
...s.shape
|
|
1427
|
-
}),
|
|
1464
|
+
}), Mo = e.object({
|
|
1428
1465
|
name: e.string().optional()
|
|
1429
|
-
}),
|
|
1466
|
+
}), Ho = e.object({
|
|
1430
1467
|
email: e.string().optional()
|
|
1431
|
-
}),
|
|
1468
|
+
}), Go = e.object({
|
|
1432
1469
|
organization_id: e.string().max(50),
|
|
1433
|
-
inviter:
|
|
1434
|
-
invitee:
|
|
1470
|
+
inviter: Mo,
|
|
1471
|
+
invitee: Ho,
|
|
1435
1472
|
invitation_url: e.string().url(),
|
|
1436
1473
|
client_id: e.string(),
|
|
1437
1474
|
connection_id: e.string().optional(),
|
|
@@ -1440,13 +1477,13 @@ const k = e.enum([
|
|
|
1440
1477
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
1441
1478
|
roles: e.array(e.string()).default([]).optional(),
|
|
1442
1479
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
1443
|
-
}),
|
|
1480
|
+
}), nn = e.object({
|
|
1444
1481
|
id: e.string(),
|
|
1445
1482
|
organization_id: e.string().max(50),
|
|
1446
1483
|
created_at: e.string().datetime(),
|
|
1447
1484
|
expires_at: e.string().datetime(),
|
|
1448
1485
|
ticket_id: e.string().optional()
|
|
1449
|
-
}).extend(
|
|
1486
|
+
}).extend(Go.shape), Bo = e.object({
|
|
1450
1487
|
alg: e.enum([
|
|
1451
1488
|
"RS256",
|
|
1452
1489
|
"RS384",
|
|
@@ -1465,9 +1502,9 @@ const k = e.enum([
|
|
|
1465
1502
|
x5t: e.string().optional(),
|
|
1466
1503
|
x5c: e.array(e.string()).optional(),
|
|
1467
1504
|
use: e.enum(["sig", "enc"]).optional()
|
|
1468
|
-
}),
|
|
1469
|
-
keys: e.array(
|
|
1470
|
-
}),
|
|
1505
|
+
}), an = e.object({
|
|
1506
|
+
keys: e.array(Bo)
|
|
1507
|
+
}), sn = e.object({
|
|
1471
1508
|
issuer: e.string(),
|
|
1472
1509
|
authorization_endpoint: e.string(),
|
|
1473
1510
|
token_endpoint: e.string(),
|
|
@@ -1490,17 +1527,17 @@ const k = e.enum([
|
|
|
1490
1527
|
token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
|
|
1491
1528
|
});
|
|
1492
1529
|
var M = /* @__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))(M || {});
|
|
1493
|
-
const
|
|
1530
|
+
const Wo = e.nativeEnum(M), Ko = e.object({
|
|
1494
1531
|
csrf_token: e.string(),
|
|
1495
1532
|
auth0Client: e.string().optional(),
|
|
1496
|
-
authParams:
|
|
1533
|
+
authParams: xe,
|
|
1497
1534
|
expires_at: e.string(),
|
|
1498
1535
|
deleted_at: e.string().optional(),
|
|
1499
1536
|
ip: e.string().optional(),
|
|
1500
1537
|
useragent: e.string().optional(),
|
|
1501
1538
|
session_id: e.string().optional(),
|
|
1502
1539
|
authorization_url: e.string().optional(),
|
|
1503
|
-
state:
|
|
1540
|
+
state: Wo.optional().default(
|
|
1504
1541
|
"pending"
|
|
1505
1542
|
/* PENDING */
|
|
1506
1543
|
),
|
|
@@ -1513,14 +1550,14 @@ const Mo = e.nativeEnum(M), Ho = e.object({
|
|
|
1513
1550
|
// The connection used to authenticate (may differ from primary user's connection)
|
|
1514
1551
|
}).openapi({
|
|
1515
1552
|
description: "This represents a login sesion"
|
|
1516
|
-
}),
|
|
1517
|
-
...
|
|
1553
|
+
}), rn = e.object({
|
|
1554
|
+
...Ko.shape,
|
|
1518
1555
|
id: e.string().openapi({
|
|
1519
1556
|
description: "This is is used as the state in the universal login"
|
|
1520
1557
|
}),
|
|
1521
1558
|
created_at: e.string(),
|
|
1522
1559
|
updated_at: e.string()
|
|
1523
|
-
}),
|
|
1560
|
+
}), zo = {
|
|
1524
1561
|
// Network & System
|
|
1525
1562
|
ACLS_SUMMARY: "acls_summary",
|
|
1526
1563
|
ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
|
|
@@ -1646,6 +1683,7 @@ const Mo = e.nativeEnum(M), Ho = e.object({
|
|
|
1646
1683
|
// Successful operations
|
|
1647
1684
|
SUCCESS_LOGIN: "s",
|
|
1648
1685
|
SUCCESS_API_OPERATION: "sapi",
|
|
1686
|
+
FAILED_API_OPERATION: "fapi",
|
|
1649
1687
|
SUCCESS_CHANGE_EMAIL: "sce",
|
|
1650
1688
|
SUCCESS_CROSS_ORIGIN_AUTHENTICATION: "scoa",
|
|
1651
1689
|
SUCCESS_CHANGE_PASSWORD: "scp",
|
|
@@ -1691,24 +1729,24 @@ const Mo = e.nativeEnum(M), Ho = e.object({
|
|
|
1691
1729
|
WARNING_DURING_LOGIN: "w",
|
|
1692
1730
|
WARNING_SENDING_NOTIFICATION: "wn",
|
|
1693
1731
|
WARNING_USER_MANAGEMENT: "wum"
|
|
1694
|
-
},
|
|
1695
|
-
(o) => Object.values(
|
|
1732
|
+
}, qo = e.string().refine(
|
|
1733
|
+
(o) => Object.values(zo).includes(o),
|
|
1696
1734
|
{ message: "Invalid log type" }
|
|
1697
|
-
),
|
|
1735
|
+
), Xo = e.object({
|
|
1698
1736
|
name: e.string(),
|
|
1699
1737
|
version: e.string(),
|
|
1700
1738
|
env: e.object({
|
|
1701
1739
|
node: e.string().optional()
|
|
1702
1740
|
}).optional()
|
|
1703
|
-
}),
|
|
1741
|
+
}), Vo = e.object({
|
|
1704
1742
|
country_code: e.string().length(2),
|
|
1705
1743
|
city_name: e.string(),
|
|
1706
1744
|
latitude: e.string(),
|
|
1707
1745
|
longitude: e.string(),
|
|
1708
1746
|
time_zone: e.string(),
|
|
1709
1747
|
continent_code: e.string()
|
|
1710
|
-
}),
|
|
1711
|
-
type:
|
|
1748
|
+
}), Yo = e.object({
|
|
1749
|
+
type: qo,
|
|
1712
1750
|
date: e.string(),
|
|
1713
1751
|
description: e.string().optional(),
|
|
1714
1752
|
ip: e.string().optional(),
|
|
@@ -1727,19 +1765,19 @@ const Mo = e.nativeEnum(M), Ho = e.object({
|
|
|
1727
1765
|
strategy: e.string().optional(),
|
|
1728
1766
|
strategy_type: e.string().optional(),
|
|
1729
1767
|
hostname: e.string().optional(),
|
|
1730
|
-
auth0_client:
|
|
1768
|
+
auth0_client: Xo.optional(),
|
|
1731
1769
|
log_id: e.string().optional(),
|
|
1732
|
-
location_info:
|
|
1733
|
-
}),
|
|
1734
|
-
...
|
|
1770
|
+
location_info: Vo.optional()
|
|
1771
|
+
}), ln = e.object({
|
|
1772
|
+
...Yo.shape,
|
|
1735
1773
|
log_id: e.string()
|
|
1736
|
-
}),
|
|
1774
|
+
}), Qo = e.object({
|
|
1737
1775
|
id: e.string().optional(),
|
|
1738
1776
|
user_id: e.string(),
|
|
1739
1777
|
password: e.string(),
|
|
1740
1778
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
|
|
1741
1779
|
is_current: e.boolean().default(!0)
|
|
1742
|
-
}),
|
|
1780
|
+
}), cn = Qo.extend({
|
|
1743
1781
|
id: e.string(),
|
|
1744
1782
|
created_at: e.string(),
|
|
1745
1783
|
updated_at: e.string()
|
|
@@ -1750,7 +1788,7 @@ const Mo = e.nativeEnum(M), Ho = e.object({
|
|
|
1750
1788
|
last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
|
|
1751
1789
|
last_ip: e.string().describe("Last IP address from which this user logged in"),
|
|
1752
1790
|
last_asn: e.string().describe("Last autonomous system number from which this user logged in")
|
|
1753
|
-
}),
|
|
1791
|
+
}), Zo = e.object({
|
|
1754
1792
|
id: e.string(),
|
|
1755
1793
|
revoked_at: e.string().optional(),
|
|
1756
1794
|
used_at: e.string().optional(),
|
|
@@ -1762,13 +1800,13 @@ const Mo = e.nativeEnum(M), Ho = e.object({
|
|
|
1762
1800
|
"Metadata related to the device used in the session"
|
|
1763
1801
|
),
|
|
1764
1802
|
clients: e.array(e.string()).describe("List of client details for the session")
|
|
1765
|
-
}),
|
|
1803
|
+
}), pn = e.object({
|
|
1766
1804
|
created_at: e.string(),
|
|
1767
1805
|
updated_at: e.string(),
|
|
1768
1806
|
authenticated_at: e.string(),
|
|
1769
1807
|
last_interaction_at: e.string(),
|
|
1770
|
-
...
|
|
1771
|
-
}),
|
|
1808
|
+
...Zo.shape
|
|
1809
|
+
}), _n = e.object({
|
|
1772
1810
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
1773
1811
|
cert: e.string().openapi({ description: "The public certificate of the signing key" }),
|
|
1774
1812
|
fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
|
|
@@ -1793,7 +1831,7 @@ const Mo = e.nativeEnum(M), Ho = e.object({
|
|
|
1793
1831
|
type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
|
|
1794
1832
|
description: "The type of the signing key"
|
|
1795
1833
|
})
|
|
1796
|
-
}),
|
|
1834
|
+
}), $o = e.object({
|
|
1797
1835
|
id: e.string().optional(),
|
|
1798
1836
|
// Basic settings
|
|
1799
1837
|
audience: e.string(),
|
|
@@ -1948,14 +1986,14 @@ const Mo = e.nativeEnum(M), Ho = e.object({
|
|
|
1948
1986
|
message: e.string().optional()
|
|
1949
1987
|
}).optional()
|
|
1950
1988
|
}).optional()
|
|
1951
|
-
}),
|
|
1989
|
+
}), dn = e.object({
|
|
1952
1990
|
created_at: e.string().nullable().transform((o) => o ?? ""),
|
|
1953
1991
|
updated_at: e.string().nullable().transform((o) => o ?? ""),
|
|
1954
|
-
|
|
1992
|
+
...$o.shape,
|
|
1955
1993
|
id: e.string()
|
|
1956
1994
|
});
|
|
1957
|
-
var
|
|
1958
|
-
const
|
|
1995
|
+
var Jo = /* @__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))(Jo || {});
|
|
1996
|
+
const gn = e.object({
|
|
1959
1997
|
access_token: e.string(),
|
|
1960
1998
|
id_token: e.string().optional(),
|
|
1961
1999
|
scope: e.string().optional(),
|
|
@@ -1968,7 +2006,7 @@ e.object({
|
|
|
1968
2006
|
code: e.string(),
|
|
1969
2007
|
state: e.string().optional()
|
|
1970
2008
|
});
|
|
1971
|
-
const
|
|
2009
|
+
const et = e.object({
|
|
1972
2010
|
button_border_radius: e.number(),
|
|
1973
2011
|
button_border_weight: e.number(),
|
|
1974
2012
|
buttons_style: e.enum(["pill", "rounded", "sharp"]),
|
|
@@ -1978,7 +2016,7 @@ const Qo = e.object({
|
|
|
1978
2016
|
show_widget_shadow: e.boolean(),
|
|
1979
2017
|
widget_border_weight: e.number(),
|
|
1980
2018
|
widget_corner_radius: e.number()
|
|
1981
|
-
}),
|
|
2019
|
+
}), ot = e.object({
|
|
1982
2020
|
base_focus_color: e.string(),
|
|
1983
2021
|
base_hover_color: e.string(),
|
|
1984
2022
|
body_text: e.string(),
|
|
@@ -2001,7 +2039,7 @@ const Qo = e.object({
|
|
|
2001
2039
|
}), u = e.object({
|
|
2002
2040
|
bold: e.boolean(),
|
|
2003
2041
|
size: e.number()
|
|
2004
|
-
}),
|
|
2042
|
+
}), tt = e.object({
|
|
2005
2043
|
body_text: u,
|
|
2006
2044
|
buttons_text: u,
|
|
2007
2045
|
font_url: e.string(),
|
|
@@ -2011,31 +2049,31 @@ const Qo = e.object({
|
|
|
2011
2049
|
reference_text_size: e.number(),
|
|
2012
2050
|
subtitle: u,
|
|
2013
2051
|
title: u
|
|
2014
|
-
}),
|
|
2052
|
+
}), nt = e.object({
|
|
2015
2053
|
background_color: e.string(),
|
|
2016
2054
|
background_image_url: e.string(),
|
|
2017
2055
|
page_layout: e.enum(["center", "left", "right"])
|
|
2018
|
-
}),
|
|
2056
|
+
}), it = e.object({
|
|
2019
2057
|
header_text_alignment: e.enum(["center", "left", "right"]),
|
|
2020
2058
|
logo_height: e.number(),
|
|
2021
2059
|
logo_position: e.enum(["center", "left", "none", "right"]),
|
|
2022
2060
|
logo_url: e.string(),
|
|
2023
2061
|
social_buttons_layout: e.enum(["bottom", "top"])
|
|
2024
|
-
}),
|
|
2025
|
-
borders:
|
|
2026
|
-
colors:
|
|
2062
|
+
}), at = e.object({
|
|
2063
|
+
borders: et,
|
|
2064
|
+
colors: ot,
|
|
2027
2065
|
displayName: e.string(),
|
|
2028
|
-
fonts:
|
|
2029
|
-
page_background:
|
|
2030
|
-
widget:
|
|
2031
|
-
}),
|
|
2066
|
+
fonts: tt,
|
|
2067
|
+
page_background: nt,
|
|
2068
|
+
widget: it
|
|
2069
|
+
}), un = at.extend({
|
|
2032
2070
|
themeId: e.string()
|
|
2033
|
-
}),
|
|
2071
|
+
}), mn = e.object({
|
|
2034
2072
|
universal_login_experience: e.enum(["new", "classic"]).default("new"),
|
|
2035
2073
|
identifier_first: e.boolean().default(!0),
|
|
2036
2074
|
password_first: e.boolean().default(!1),
|
|
2037
2075
|
webauthn_platform_first_factor: e.boolean()
|
|
2038
|
-
}),
|
|
2076
|
+
}), hn = e.object({
|
|
2039
2077
|
name: e.string(),
|
|
2040
2078
|
enabled: e.boolean().optional().default(!0),
|
|
2041
2079
|
default_from_address: e.string().optional(),
|
|
@@ -2065,7 +2103,7 @@ const Qo = e.object({
|
|
|
2065
2103
|
})
|
|
2066
2104
|
]),
|
|
2067
2105
|
settings: e.object({}).optional()
|
|
2068
|
-
}),
|
|
2106
|
+
}), st = e.object({
|
|
2069
2107
|
// The actual refresh token value (primary key).
|
|
2070
2108
|
id: e.string(),
|
|
2071
2109
|
// Link to the login session
|
|
@@ -2086,21 +2124,21 @@ const Qo = e.object({
|
|
|
2086
2124
|
})
|
|
2087
2125
|
),
|
|
2088
2126
|
rotating: e.boolean()
|
|
2089
|
-
}),
|
|
2127
|
+
}), bn = e.object({
|
|
2090
2128
|
// When the refresh token record was created.
|
|
2091
2129
|
created_at: e.string(),
|
|
2092
2130
|
// Spread in the rest of the refresh token properties.
|
|
2093
|
-
...
|
|
2094
|
-
}),
|
|
2131
|
+
...st.shape
|
|
2132
|
+
}), fn = e.object({
|
|
2095
2133
|
to: e.string(),
|
|
2096
2134
|
message: e.string()
|
|
2097
|
-
}),
|
|
2135
|
+
}), En = e.object({
|
|
2098
2136
|
name: e.string(),
|
|
2099
2137
|
options: e.object({})
|
|
2100
|
-
}),
|
|
2138
|
+
}), rt = e.object({
|
|
2101
2139
|
value: e.string(),
|
|
2102
2140
|
description: e.string().optional()
|
|
2103
|
-
}),
|
|
2141
|
+
}), lt = e.object({
|
|
2104
2142
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
2105
2143
|
enforce_policies: e.boolean().optional(),
|
|
2106
2144
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -2110,11 +2148,11 @@ const Qo = e.object({
|
|
|
2110
2148
|
mtls: e.object({
|
|
2111
2149
|
bound_access_tokens: e.boolean().optional()
|
|
2112
2150
|
}).optional()
|
|
2113
|
-
}),
|
|
2151
|
+
}), ct = e.object({
|
|
2114
2152
|
id: e.string().optional(),
|
|
2115
2153
|
name: e.string(),
|
|
2116
2154
|
identifier: e.string(),
|
|
2117
|
-
scopes: e.array(
|
|
2155
|
+
scopes: e.array(rt).optional(),
|
|
2118
2156
|
signing_alg: e.string().optional(),
|
|
2119
2157
|
signing_secret: e.string().optional(),
|
|
2120
2158
|
token_lifetime: e.number().optional(),
|
|
@@ -2122,30 +2160,30 @@ const Qo = e.object({
|
|
|
2122
2160
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
2123
2161
|
allow_offline_access: e.boolean().optional(),
|
|
2124
2162
|
verificationKey: e.string().optional(),
|
|
2125
|
-
options:
|
|
2163
|
+
options: lt.optional(),
|
|
2126
2164
|
is_system: e.boolean().optional(),
|
|
2127
2165
|
metadata: e.record(e.any()).optional()
|
|
2128
|
-
}),
|
|
2129
|
-
...
|
|
2166
|
+
}), pt = e.object({
|
|
2167
|
+
...ct.shape,
|
|
2130
2168
|
created_at: e.string().optional(),
|
|
2131
2169
|
updated_at: e.string().optional()
|
|
2132
|
-
}),
|
|
2170
|
+
}), Sn = e.array(pt), _t = e.object({
|
|
2133
2171
|
role_id: e.string(),
|
|
2134
2172
|
resource_server_identifier: e.string(),
|
|
2135
2173
|
permission_name: e.string()
|
|
2136
|
-
}),
|
|
2137
|
-
...
|
|
2174
|
+
}), dt = e.object({
|
|
2175
|
+
..._t.shape,
|
|
2138
2176
|
created_at: e.string()
|
|
2139
|
-
}),
|
|
2177
|
+
}), An = e.array(dt), gt = e.object({
|
|
2140
2178
|
user_id: e.string(),
|
|
2141
2179
|
resource_server_identifier: e.string(),
|
|
2142
2180
|
permission_name: e.string(),
|
|
2143
2181
|
organization_id: e.string().optional()
|
|
2144
|
-
}),
|
|
2145
|
-
...
|
|
2182
|
+
}), ut = e.object({
|
|
2183
|
+
...gt.shape,
|
|
2146
2184
|
tenant_id: e.string(),
|
|
2147
2185
|
created_at: e.string().optional()
|
|
2148
|
-
}),
|
|
2186
|
+
}), yn = e.array(ut), mt = e.object({
|
|
2149
2187
|
user_id: e.string(),
|
|
2150
2188
|
resource_server_identifier: e.string(),
|
|
2151
2189
|
resource_server_name: e.string(),
|
|
@@ -2153,17 +2191,17 @@ const Qo = e.object({
|
|
|
2153
2191
|
description: e.string().nullable().optional(),
|
|
2154
2192
|
created_at: e.string().optional(),
|
|
2155
2193
|
organization_id: e.string().optional()
|
|
2156
|
-
}),
|
|
2157
|
-
|
|
2158
|
-
),
|
|
2194
|
+
}), In = e.array(
|
|
2195
|
+
mt
|
|
2196
|
+
), ht = e.object({
|
|
2159
2197
|
user_id: e.string(),
|
|
2160
2198
|
role_id: e.string(),
|
|
2161
2199
|
organization_id: e.string().optional()
|
|
2162
|
-
}),
|
|
2163
|
-
...
|
|
2200
|
+
}), bt = e.object({
|
|
2201
|
+
...ht.shape,
|
|
2164
2202
|
tenant_id: e.string(),
|
|
2165
2203
|
created_at: e.string().optional()
|
|
2166
|
-
}),
|
|
2204
|
+
}), Cn = e.array(bt), ft = e.object({
|
|
2167
2205
|
id: e.string().optional().openapi({
|
|
2168
2206
|
description: "The unique identifier of the role. If not provided, one will be generated."
|
|
2169
2207
|
}),
|
|
@@ -2177,13 +2215,13 @@ const Qo = e.object({
|
|
|
2177
2215
|
metadata: e.record(e.any()).optional().openapi({
|
|
2178
2216
|
description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
|
|
2179
2217
|
})
|
|
2180
|
-
}),
|
|
2218
|
+
}), Et = ft.extend({
|
|
2181
2219
|
id: e.string().openapi({
|
|
2182
2220
|
description: "The unique identifier of the role"
|
|
2183
2221
|
}),
|
|
2184
2222
|
created_at: e.string().optional(),
|
|
2185
2223
|
updated_at: e.string().optional()
|
|
2186
|
-
}),
|
|
2224
|
+
}), Tn = e.array(Et), St = e.object({
|
|
2187
2225
|
logo_url: e.string().optional().openapi({
|
|
2188
2226
|
description: "URL of the organization's logo"
|
|
2189
2227
|
}),
|
|
@@ -2195,7 +2233,7 @@ const Qo = e.object({
|
|
|
2195
2233
|
description: "Page background color in hex format (e.g., #FFFFFF)"
|
|
2196
2234
|
})
|
|
2197
2235
|
}).optional()
|
|
2198
|
-
}).optional(),
|
|
2236
|
+
}).optional(), At = e.object({
|
|
2199
2237
|
connection_id: e.string().openapi({
|
|
2200
2238
|
description: "ID of the connection"
|
|
2201
2239
|
}),
|
|
@@ -2208,7 +2246,7 @@ const Qo = e.object({
|
|
|
2208
2246
|
is_signup_enabled: e.boolean().default(!0).openapi({
|
|
2209
2247
|
description: "Whether signup is enabled for this connection"
|
|
2210
2248
|
})
|
|
2211
|
-
}),
|
|
2249
|
+
}), yt = e.object({
|
|
2212
2250
|
client_credentials: e.object({
|
|
2213
2251
|
enforce: e.boolean().default(!1).openapi({
|
|
2214
2252
|
description: "Whether to enforce token quota limits"
|
|
@@ -2220,7 +2258,7 @@ const Qo = e.object({
|
|
|
2220
2258
|
description: "Maximum tokens per hour (0 = unlimited)"
|
|
2221
2259
|
})
|
|
2222
2260
|
}).optional()
|
|
2223
|
-
}).optional(),
|
|
2261
|
+
}).optional(), It = e.object({
|
|
2224
2262
|
id: e.string().optional(),
|
|
2225
2263
|
name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
|
|
2226
2264
|
message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
|
|
@@ -2230,34 +2268,34 @@ const Qo = e.object({
|
|
|
2230
2268
|
display_name: e.string().optional().openapi({
|
|
2231
2269
|
description: "The display name of the organization"
|
|
2232
2270
|
}),
|
|
2233
|
-
branding:
|
|
2271
|
+
branding: St,
|
|
2234
2272
|
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
2235
2273
|
description: "Custom metadata for the organization"
|
|
2236
2274
|
}),
|
|
2237
|
-
enabled_connections: e.array(
|
|
2275
|
+
enabled_connections: e.array(At).default([]).optional().openapi({
|
|
2238
2276
|
description: "List of enabled connections for the organization"
|
|
2239
2277
|
}),
|
|
2240
|
-
token_quota:
|
|
2241
|
-
}),
|
|
2242
|
-
...
|
|
2278
|
+
token_quota: yt
|
|
2279
|
+
}), On = e.object({
|
|
2280
|
+
...It.shape,
|
|
2243
2281
|
...s.shape,
|
|
2244
2282
|
id: e.string(),
|
|
2245
2283
|
// Override name to be lenient when reading from database (to support existing uppercase names)
|
|
2246
2284
|
name: e.string().min(1).openapi({
|
|
2247
2285
|
description: "The name of the organization"
|
|
2248
2286
|
})
|
|
2249
|
-
}),
|
|
2287
|
+
}), Ct = e.object({
|
|
2250
2288
|
user_id: e.string().openapi({
|
|
2251
2289
|
description: "ID of the user"
|
|
2252
2290
|
}),
|
|
2253
2291
|
organization_id: e.string().openapi({
|
|
2254
2292
|
description: "ID of the organization"
|
|
2255
2293
|
})
|
|
2256
|
-
}),
|
|
2257
|
-
...
|
|
2294
|
+
}), Nn = e.object({
|
|
2295
|
+
...Ct.shape,
|
|
2258
2296
|
...s.shape,
|
|
2259
2297
|
id: e.string()
|
|
2260
|
-
}),
|
|
2298
|
+
}), wn = e.object({
|
|
2261
2299
|
// Session settings
|
|
2262
2300
|
idle_session_lifetime: e.number().optional(),
|
|
2263
2301
|
session_lifetime: e.number().optional(),
|
|
@@ -2357,7 +2395,7 @@ const Qo = e.object({
|
|
|
2357
2395
|
message: e.string().optional()
|
|
2358
2396
|
}).optional()
|
|
2359
2397
|
}).optional()
|
|
2360
|
-
}),
|
|
2398
|
+
}), jn = e.object({
|
|
2361
2399
|
date: e.string().openapi({
|
|
2362
2400
|
description: "Date these events occurred in ISO 8601 format",
|
|
2363
2401
|
example: "2025-12-19"
|
|
@@ -2382,10 +2420,10 @@ const Qo = e.object({
|
|
|
2382
2420
|
description: "Approximate date and time the first event occurred in ISO 8601 format",
|
|
2383
2421
|
example: "2025-12-19T00:00:00.000Z"
|
|
2384
2422
|
})
|
|
2385
|
-
}),
|
|
2423
|
+
}), Rn = e.number().openapi({
|
|
2386
2424
|
description: "Number of active users in the last 30 days",
|
|
2387
2425
|
example: 1234
|
|
2388
|
-
}),
|
|
2426
|
+
}), Tt = e.enum([
|
|
2389
2427
|
"login",
|
|
2390
2428
|
"login-id",
|
|
2391
2429
|
"login-password",
|
|
@@ -2414,17 +2452,17 @@ const Qo = e.object({
|
|
|
2414
2452
|
"custom-form",
|
|
2415
2453
|
"login-passwordless",
|
|
2416
2454
|
"mfa-login-options"
|
|
2417
|
-
]),
|
|
2455
|
+
]), Ot = e.record(e.string(), e.record(e.string(), e.string())).openapi({
|
|
2418
2456
|
type: "object",
|
|
2419
2457
|
additionalProperties: {
|
|
2420
2458
|
type: "object",
|
|
2421
2459
|
additionalProperties: { type: "string" }
|
|
2422
2460
|
}
|
|
2423
|
-
}),
|
|
2424
|
-
prompt:
|
|
2461
|
+
}), Dn = e.object({
|
|
2462
|
+
prompt: Tt,
|
|
2425
2463
|
language: e.string(),
|
|
2426
|
-
custom_text:
|
|
2427
|
-
}),
|
|
2464
|
+
custom_text: Ot
|
|
2465
|
+
}), Ln = {
|
|
2428
2466
|
EMAIL: "email",
|
|
2429
2467
|
SMS: "sms",
|
|
2430
2468
|
USERNAME_PASSWORD: "Username-Password-Authentication",
|
|
@@ -2439,11 +2477,11 @@ const Qo = e.object({
|
|
|
2439
2477
|
SAMLP: "samlp",
|
|
2440
2478
|
WAAD: "waad",
|
|
2441
2479
|
ADFS: "adfs"
|
|
2442
|
-
},
|
|
2480
|
+
}, vn = {
|
|
2443
2481
|
DATABASE: "database",
|
|
2444
2482
|
SOCIAL: "social",
|
|
2445
2483
|
PASSWORDLESS: "passwordless"
|
|
2446
|
-
},
|
|
2484
|
+
}, Nt = e.enum([
|
|
2447
2485
|
"phone",
|
|
2448
2486
|
"totp",
|
|
2449
2487
|
"email",
|
|
@@ -2453,7 +2491,7 @@ const Qo = e.object({
|
|
|
2453
2491
|
"passkey"
|
|
2454
2492
|
]), G = e.object({
|
|
2455
2493
|
user_id: e.string(),
|
|
2456
|
-
type:
|
|
2494
|
+
type: Nt,
|
|
2457
2495
|
// Phone-specific
|
|
2458
2496
|
phone_number: e.string().optional(),
|
|
2459
2497
|
// TOTP-specific
|
|
@@ -2487,30 +2525,30 @@ function B(o, t) {
|
|
|
2487
2525
|
path: ["public_key"]
|
|
2488
2526
|
}));
|
|
2489
2527
|
}
|
|
2490
|
-
const
|
|
2528
|
+
const kn = G.superRefine(B), Un = e.object({
|
|
2491
2529
|
...G.shape,
|
|
2492
2530
|
id: e.string(),
|
|
2493
2531
|
created_at: e.string(),
|
|
2494
2532
|
updated_at: e.string()
|
|
2495
2533
|
}).superRefine(B);
|
|
2496
|
-
function
|
|
2534
|
+
function Fn(o) {
|
|
2497
2535
|
const [t, i] = o.split("|");
|
|
2498
2536
|
if (!t || !i)
|
|
2499
2537
|
throw new Error(`Invalid user_id: ${o}`);
|
|
2500
2538
|
return { connection: t, id: i };
|
|
2501
2539
|
}
|
|
2502
|
-
function
|
|
2540
|
+
function xn(o) {
|
|
2503
2541
|
const {
|
|
2504
2542
|
primary: t,
|
|
2505
2543
|
secondaries: i,
|
|
2506
|
-
syncMethods: O = ["create", "update", "remove", "delete", "set"]
|
|
2544
|
+
syncMethods: O = ["create", "rawCreate", "update", "remove", "delete", "set"]
|
|
2507
2545
|
} = o, E = {
|
|
2508
|
-
get(
|
|
2546
|
+
get(p, a) {
|
|
2509
2547
|
if (typeof a == "symbol")
|
|
2510
|
-
return
|
|
2511
|
-
const _ =
|
|
2548
|
+
return p[a];
|
|
2549
|
+
const _ = p[a];
|
|
2512
2550
|
return typeof _ != "function" ? _ : O.includes(a) ? async (...d) => {
|
|
2513
|
-
const S = await _.apply(
|
|
2551
|
+
const S = await _.apply(p, d), g = [];
|
|
2514
2552
|
for (const r of i) {
|
|
2515
2553
|
const h = r.adapter[a];
|
|
2516
2554
|
if (typeof h != "function")
|
|
@@ -2535,16 +2573,16 @@ function Ln(o) {
|
|
|
2535
2573
|
r.blocking && g.push(A);
|
|
2536
2574
|
}
|
|
2537
2575
|
return g.length > 0 && await Promise.all(g), S;
|
|
2538
|
-
} : _.bind(
|
|
2576
|
+
} : _.bind(p);
|
|
2539
2577
|
}
|
|
2540
2578
|
};
|
|
2541
2579
|
return new Proxy(t, E);
|
|
2542
2580
|
}
|
|
2543
|
-
function
|
|
2581
|
+
function Pn(o) {
|
|
2544
2582
|
return o;
|
|
2545
2583
|
}
|
|
2546
|
-
function
|
|
2547
|
-
var E,
|
|
2584
|
+
function Mn(o) {
|
|
2585
|
+
var E, p, a, _, d, S, g, r, h, A, b, y;
|
|
2548
2586
|
const t = o == null ? void 0 : o.options;
|
|
2549
2587
|
if (!t)
|
|
2550
2588
|
return {
|
|
@@ -2555,7 +2593,7 @@ function kn(o) {
|
|
|
2555
2593
|
};
|
|
2556
2594
|
const i = t.attributes;
|
|
2557
2595
|
if (i) {
|
|
2558
|
-
const W = ((
|
|
2596
|
+
const W = ((p = (E = i.username) == null ? void 0 : E.identifier) == null ? void 0 : p.active) === !0, K = ((_ = (a = i.email) == null ? void 0 : a.identifier) == null ? void 0 : _.active) !== !1, z = ((S = (d = i.username) == null ? void 0 : d.validation) == null ? void 0 : S.min_length) ?? 1, q = ((r = (g = i.username) == null ? void 0 : g.validation) == null ? void 0 : r.max_length) ?? 15;
|
|
2559
2597
|
return {
|
|
2560
2598
|
usernameIdentifierActive: W,
|
|
2561
2599
|
emailIdentifierActive: K,
|
|
@@ -2571,174 +2609,179 @@ function kn(o) {
|
|
|
2571
2609
|
};
|
|
2572
2610
|
}
|
|
2573
2611
|
export {
|
|
2574
|
-
|
|
2575
|
-
|
|
2612
|
+
Lt as Auth0ActionEnum,
|
|
2613
|
+
Xo as Auth0Client,
|
|
2576
2614
|
D as AuthorizationResponseMode,
|
|
2577
2615
|
R as AuthorizationResponseType,
|
|
2578
2616
|
L as CodeChallengeMethod,
|
|
2579
2617
|
j as ComponentCategory,
|
|
2580
2618
|
w as ComponentType,
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2619
|
+
vt as EmailActionEnum,
|
|
2620
|
+
qt as FORM_FIELD_TYPES,
|
|
2621
|
+
Dt as FlowActionTypeEnum,
|
|
2622
|
+
Jo as GrantType,
|
|
2623
|
+
Vo as LocationInfo,
|
|
2624
|
+
zo as LogTypes,
|
|
2587
2625
|
M as LoginSessionState,
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2626
|
+
we as NodeType,
|
|
2627
|
+
le as RedirectTargetEnum,
|
|
2628
|
+
Ln as Strategy,
|
|
2629
|
+
vn as StrategyType,
|
|
2630
|
+
V as actionDependencySchema,
|
|
2631
|
+
Q as actionInsertSchema,
|
|
2632
|
+
De as actionNodeSchema,
|
|
2633
|
+
jt as actionSchema,
|
|
2634
|
+
Y as actionSecretSchema,
|
|
2635
|
+
X as actionTriggerSchema,
|
|
2636
|
+
Rn as activeUsersResponseSchema,
|
|
2637
|
+
$ as actorSchema,
|
|
2638
|
+
ue as addressSchema,
|
|
2639
|
+
Z as auditCategorySchema,
|
|
2640
|
+
ie as auditEventInsertSchema,
|
|
2641
|
+
Rt as auditEventSchema,
|
|
2642
|
+
ne as auth0ClientSchema,
|
|
2643
|
+
Gt as auth0FlowInsertSchema,
|
|
2644
|
+
Fe as auth0FlowSchema,
|
|
2645
|
+
Ut as auth0QuerySchema,
|
|
2646
|
+
se as auth0UpdateUserActionSchema,
|
|
2647
|
+
xt as auth0UserResponseSchema,
|
|
2648
|
+
xe as authParamsSchema,
|
|
2649
|
+
kn as authenticationMethodInsertSchema,
|
|
2650
|
+
Un as authenticationMethodSchema,
|
|
2651
|
+
Nt as authenticationMethodTypeSchema,
|
|
2609
2652
|
N as baseUserSchema,
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2653
|
+
So as blockComponentSchema,
|
|
2654
|
+
et as bordersSchema,
|
|
2655
|
+
Bt as brandingSchema,
|
|
2656
|
+
Ie as buttonComponentSchema,
|
|
2657
|
+
Se as clientGrantInsertSchema,
|
|
2658
|
+
Ht as clientGrantListSchema,
|
|
2659
|
+
Ae as clientGrantSchema,
|
|
2660
|
+
Ee as clientInsertSchema,
|
|
2661
|
+
Mt as clientSchema,
|
|
2662
|
+
Me as codeInsertSchema,
|
|
2663
|
+
Wt as codeSchema,
|
|
2664
|
+
Pe as codeTypeSchema,
|
|
2665
|
+
ot as colorsSchema,
|
|
2666
|
+
wo as componentMessageSchema,
|
|
2667
|
+
Ne as componentSchema,
|
|
2668
|
+
Ge as connectionInsertSchema,
|
|
2669
|
+
He as connectionOptionsSchema,
|
|
2670
|
+
Kt as connectionSchema,
|
|
2628
2671
|
m as coordinatesSchema,
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2672
|
+
xn as createPassthroughAdapter,
|
|
2673
|
+
Pn as createWriteOnlyAdapter,
|
|
2674
|
+
Be as customDomainInsertSchema,
|
|
2675
|
+
Ke as customDomainSchema,
|
|
2676
|
+
zt as customDomainWithTenantIdSchema,
|
|
2677
|
+
Dn as customTextEntrySchema,
|
|
2678
|
+
Ot as customTextSchema,
|
|
2679
|
+
jn as dailyStatsSchema,
|
|
2680
|
+
hn as emailProviderSchema,
|
|
2681
|
+
ae as emailVerificationRulesSchema,
|
|
2682
|
+
re as emailVerifyActionSchema,
|
|
2683
|
+
Ue as endingSchema,
|
|
2684
|
+
yo as fieldComponentSchema,
|
|
2685
|
+
pe as flowActionStepSchema,
|
|
2686
|
+
_e as flowInsertSchema,
|
|
2687
|
+
kt as flowSchema,
|
|
2688
|
+
Te as flowsFieldComponentSchema,
|
|
2689
|
+
Re as flowsFlowNodeSchema,
|
|
2690
|
+
je as flowsStepNodeSchema,
|
|
2648
2691
|
u as fontDetailsSchema,
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2692
|
+
tt as fontsSchema,
|
|
2693
|
+
Xt as formControlSchema,
|
|
2694
|
+
No as formInsertSchema,
|
|
2652
2695
|
v as formNodeComponentDefinition,
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2696
|
+
Oo as formNodeSchema,
|
|
2697
|
+
Vt as formSchema,
|
|
2698
|
+
Oe as genericComponentSchema,
|
|
2699
|
+
Le as genericNodeSchema,
|
|
2700
|
+
Mn as getConnectionIdentifierConfig,
|
|
2701
|
+
Po as hookCodeInsertSchema,
|
|
2702
|
+
tn as hookCodeSchema,
|
|
2703
|
+
en as hookInsertSchema,
|
|
2704
|
+
on as hookSchema,
|
|
2662
2705
|
P as hookTemplateId,
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2706
|
+
Jt as hookTemplates,
|
|
2707
|
+
ge as identitySchema,
|
|
2708
|
+
Go as inviteInsertSchema,
|
|
2709
|
+
nn as inviteSchema,
|
|
2710
|
+
Ho as inviteeSchema,
|
|
2711
|
+
Mo as inviterSchema,
|
|
2712
|
+
Qt as isBlockComponent,
|
|
2713
|
+
$t as isFieldComponent,
|
|
2714
|
+
Zt as isWidgetComponent,
|
|
2715
|
+
an as jwksKeySchema,
|
|
2716
|
+
Bo as jwksSchema,
|
|
2717
|
+
Ce as legalComponentSchema,
|
|
2718
|
+
te as locationInfoSchema,
|
|
2719
|
+
Yo as logInsertSchema,
|
|
2720
|
+
ln as logSchema,
|
|
2721
|
+
Ko as loginSessionInsertSchema,
|
|
2722
|
+
rn as loginSessionSchema,
|
|
2723
|
+
Wo as loginSessionStateSchema,
|
|
2724
|
+
ve as nodeSchema,
|
|
2725
|
+
sn as openIDConfigurationSchema,
|
|
2726
|
+
St as organizationBrandingSchema,
|
|
2727
|
+
At as organizationEnabledConnectionSchema,
|
|
2728
|
+
It as organizationInsertSchema,
|
|
2729
|
+
On as organizationSchema,
|
|
2730
|
+
yt as organizationTokenQuotaSchema,
|
|
2731
|
+
nt as pageBackgroundSchema,
|
|
2732
|
+
Fn as parseUserId,
|
|
2733
|
+
Qo as passwordInsertSchema,
|
|
2734
|
+
cn as passwordSchema,
|
|
2735
|
+
de as profileDataSchema,
|
|
2736
|
+
Tt as promptScreenSchema,
|
|
2737
|
+
mn as promptSettingSchema,
|
|
2738
|
+
ce as redirectActionSchema,
|
|
2739
|
+
st as refreshTokenInsertSchema,
|
|
2740
|
+
bn as refreshTokenSchema,
|
|
2741
|
+
ee as requestContextSchema,
|
|
2742
|
+
ct as resourceServerInsertSchema,
|
|
2743
|
+
Sn as resourceServerListSchema,
|
|
2744
|
+
lt as resourceServerOptionsSchema,
|
|
2745
|
+
pt as resourceServerSchema,
|
|
2746
|
+
rt as resourceServerScopeSchema,
|
|
2747
|
+
oe as responseContextSchema,
|
|
2748
|
+
ye as richTextComponentSchema,
|
|
2749
|
+
ft as roleInsertSchema,
|
|
2750
|
+
Tn as roleListSchema,
|
|
2751
|
+
_t as rolePermissionInsertSchema,
|
|
2752
|
+
An as rolePermissionListSchema,
|
|
2753
|
+
dt as rolePermissionSchema,
|
|
2754
|
+
Et as roleSchema,
|
|
2755
|
+
jo as screenLinkSchema,
|
|
2756
|
+
Zo as sessionInsertSchema,
|
|
2757
|
+
pn as sessionSchema,
|
|
2758
|
+
_n as signingKeySchema,
|
|
2759
|
+
En as smsProviderSchema,
|
|
2760
|
+
fn as smsSendParamsSchema,
|
|
2761
|
+
ke as startSchema,
|
|
2762
|
+
J as targetSchema,
|
|
2763
|
+
$o as tenantInsertSchema,
|
|
2764
|
+
dn as tenantSchema,
|
|
2765
|
+
wn as tenantSettingsSchema,
|
|
2766
|
+
at as themeInsertSchema,
|
|
2767
|
+
un as themeSchema,
|
|
2768
|
+
gn as tokenResponseSchema,
|
|
2769
|
+
Ft as totalsSchema,
|
|
2770
|
+
Yt as uiScreenSchema,
|
|
2771
|
+
me as userInsertSchema,
|
|
2772
|
+
Ct as userOrganizationInsertSchema,
|
|
2773
|
+
Nn as userOrganizationSchema,
|
|
2774
|
+
gt as userPermissionInsertSchema,
|
|
2775
|
+
yn as userPermissionListSchema,
|
|
2776
|
+
ut as userPermissionSchema,
|
|
2777
|
+
In as userPermissionWithDetailsListSchema,
|
|
2778
|
+
mt as userPermissionWithDetailsSchema,
|
|
2779
|
+
Pt as userResponseSchema,
|
|
2780
|
+
ht as userRoleInsertSchema,
|
|
2781
|
+
Cn as userRoleListSchema,
|
|
2782
|
+
bt as userRoleSchema,
|
|
2783
|
+
he as userSchema,
|
|
2784
|
+
We as verificationMethodsSchema,
|
|
2785
|
+
Ao as widgetComponentSchema,
|
|
2786
|
+
it as widgetSchema
|
|
2744
2787
|
};
|