@authhero/adapter-interfaces 1.18.0 → 1.19.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 +1695 -942
- package/dist/adapter-interfaces.mjs +660 -590
- package/package.json +1 -1
|
@@ -2,28 +2,28 @@ import { z as e } from "@hono/zod-openapi";
|
|
|
2
2
|
const a = e.object({
|
|
3
3
|
created_at: e.string(),
|
|
4
4
|
updated_at: e.string()
|
|
5
|
-
}),
|
|
5
|
+
}), j = e.object({
|
|
6
6
|
id: e.string(),
|
|
7
7
|
version: e.string().optional()
|
|
8
|
-
}),
|
|
8
|
+
}), k = e.object({
|
|
9
9
|
name: e.string(),
|
|
10
10
|
version: e.string()
|
|
11
|
-
}),
|
|
11
|
+
}), R = e.object({
|
|
12
12
|
name: e.string(),
|
|
13
13
|
// Optional on writes so PATCH callers can omit the value to preserve the
|
|
14
14
|
// existing secret. The adapter merges by name when value is missing.
|
|
15
15
|
value: e.string().optional()
|
|
16
|
-
}),
|
|
16
|
+
}), v = e.object({
|
|
17
17
|
name: e.string().max(255),
|
|
18
18
|
code: e.string().max(1e5),
|
|
19
|
-
supported_triggers: e.array(
|
|
19
|
+
supported_triggers: e.array(j).optional(),
|
|
20
20
|
runtime: e.string().max(50).optional(),
|
|
21
|
-
dependencies: e.array(
|
|
22
|
-
secrets: e.array(
|
|
23
|
-
}),
|
|
21
|
+
dependencies: e.array(k).optional(),
|
|
22
|
+
secrets: e.array(R).optional()
|
|
23
|
+
}), en = v.partial().extend({
|
|
24
24
|
status: e.enum(["draft", "built"]).optional(),
|
|
25
25
|
deployed_at: e.string().optional()
|
|
26
|
-
}),
|
|
26
|
+
}), tn = v.extend({
|
|
27
27
|
id: e.string(),
|
|
28
28
|
tenant_id: e.string(),
|
|
29
29
|
status: e.enum(["draft", "built"]).default("built"),
|
|
@@ -36,25 +36,62 @@ const a = e.object({
|
|
|
36
36
|
})
|
|
37
37
|
).optional(),
|
|
38
38
|
...a.shape
|
|
39
|
-
}),
|
|
39
|
+
}), ee = e.string(), te = e.enum([
|
|
40
|
+
"unspecified",
|
|
41
|
+
"pending",
|
|
42
|
+
"final",
|
|
43
|
+
"partial",
|
|
44
|
+
"canceled",
|
|
45
|
+
"suspended"
|
|
46
|
+
]), oe = e.object({
|
|
47
|
+
id: e.string(),
|
|
48
|
+
msg: e.string(),
|
|
49
|
+
url: e.string().optional()
|
|
50
|
+
}), ne = e.object({
|
|
51
|
+
action_name: e.string(),
|
|
52
|
+
error: oe.nullable(),
|
|
53
|
+
started_at: e.string(),
|
|
54
|
+
ended_at: e.string()
|
|
55
|
+
}), ie = e.object({
|
|
56
|
+
level: e.enum(["log", "info", "warn", "error", "debug"]),
|
|
57
|
+
message: e.string()
|
|
58
|
+
}), ae = e.array(
|
|
59
|
+
e.object({
|
|
60
|
+
action_name: e.string(),
|
|
61
|
+
lines: e.array(ie)
|
|
62
|
+
})
|
|
63
|
+
), se = e.object({
|
|
64
|
+
id: e.string(),
|
|
65
|
+
tenant_id: e.string(),
|
|
66
|
+
trigger_id: ee,
|
|
67
|
+
status: te,
|
|
68
|
+
results: e.array(ne),
|
|
69
|
+
logs: ae.optional(),
|
|
70
|
+
created_at: e.string(),
|
|
71
|
+
updated_at: e.string()
|
|
72
|
+
}), on = se.omit({
|
|
73
|
+
tenant_id: !0,
|
|
74
|
+
created_at: !0,
|
|
75
|
+
updated_at: !0
|
|
76
|
+
}), re = e.object({
|
|
40
77
|
action_id: e.string(),
|
|
41
78
|
code: e.string().max(1e5),
|
|
42
79
|
runtime: e.string().max(50).optional(),
|
|
43
|
-
dependencies: e.array(
|
|
44
|
-
secrets: e.array(
|
|
45
|
-
supported_triggers: e.array(
|
|
80
|
+
dependencies: e.array(k).optional(),
|
|
81
|
+
secrets: e.array(R).optional(),
|
|
82
|
+
supported_triggers: e.array(j).optional(),
|
|
46
83
|
deployed: e.boolean().default(!0)
|
|
47
|
-
}),
|
|
84
|
+
}), nn = re.extend({
|
|
48
85
|
id: e.string(),
|
|
49
86
|
tenant_id: e.string(),
|
|
50
87
|
number: e.number().int(),
|
|
51
88
|
...a.shape
|
|
52
|
-
}),
|
|
89
|
+
}), le = e.enum([
|
|
53
90
|
"user_action",
|
|
54
91
|
"admin_action",
|
|
55
92
|
"system",
|
|
56
93
|
"api"
|
|
57
|
-
]),
|
|
94
|
+
]), ce = e.object({
|
|
58
95
|
type: e.enum(["user", "admin", "system", "api_key", "client_credentials"]),
|
|
59
96
|
id: e.string().optional(),
|
|
60
97
|
email: e.string().optional(),
|
|
@@ -62,13 +99,13 @@ const a = e.object({
|
|
|
62
99
|
org_name: e.string().optional(),
|
|
63
100
|
scopes: e.array(e.string()).optional(),
|
|
64
101
|
client_id: e.string().optional()
|
|
65
|
-
}),
|
|
102
|
+
}), pe = e.object({
|
|
66
103
|
type: e.string(),
|
|
67
104
|
id: e.string(),
|
|
68
105
|
before: e.record(e.unknown()).optional(),
|
|
69
106
|
after: e.record(e.unknown()).optional(),
|
|
70
107
|
diff: e.record(e.object({ old: e.unknown(), new: e.unknown() })).optional()
|
|
71
|
-
}),
|
|
108
|
+
}), de = e.object({
|
|
72
109
|
method: e.string(),
|
|
73
110
|
path: e.string(),
|
|
74
111
|
query: e.record(e.string()).optional(),
|
|
@@ -76,56 +113,56 @@ const a = e.object({
|
|
|
76
113
|
ip: e.string(),
|
|
77
114
|
user_agent: e.string().optional(),
|
|
78
115
|
correlation_id: e.string().optional()
|
|
79
|
-
}),
|
|
116
|
+
}), _e = e.object({
|
|
80
117
|
status_code: e.number(),
|
|
81
118
|
body: e.unknown().optional()
|
|
82
|
-
}),
|
|
119
|
+
}), ge = e.object({
|
|
83
120
|
country_code: e.string(),
|
|
84
121
|
city_name: e.string(),
|
|
85
122
|
latitude: e.string(),
|
|
86
123
|
longitude: e.string(),
|
|
87
124
|
time_zone: e.string(),
|
|
88
125
|
continent_code: e.string()
|
|
89
|
-
}),
|
|
126
|
+
}), ue = e.object({
|
|
90
127
|
name: e.string(),
|
|
91
128
|
version: e.string(),
|
|
92
129
|
env: e.record(e.string()).optional()
|
|
93
|
-
}),
|
|
130
|
+
}), me = e.object({
|
|
94
131
|
tenant_id: e.string(),
|
|
95
132
|
event_type: e.string(),
|
|
96
133
|
log_type: e.string(),
|
|
97
134
|
description: e.string().optional(),
|
|
98
|
-
category:
|
|
99
|
-
actor:
|
|
100
|
-
target:
|
|
101
|
-
request:
|
|
102
|
-
response:
|
|
135
|
+
category: le,
|
|
136
|
+
actor: ce,
|
|
137
|
+
target: pe,
|
|
138
|
+
request: de,
|
|
139
|
+
response: _e.optional(),
|
|
103
140
|
connection: e.string().optional(),
|
|
104
141
|
strategy: e.string().optional(),
|
|
105
142
|
strategy_type: e.string().optional(),
|
|
106
143
|
audience: e.string().optional(),
|
|
107
144
|
scope: e.string().optional(),
|
|
108
|
-
location:
|
|
109
|
-
auth0_client:
|
|
145
|
+
location: ge.optional(),
|
|
146
|
+
auth0_client: ue.optional(),
|
|
110
147
|
hostname: e.string(),
|
|
111
148
|
is_mobile: e.boolean().optional(),
|
|
112
149
|
timestamp: e.string()
|
|
113
|
-
}),
|
|
150
|
+
}), an = me.extend({
|
|
114
151
|
id: e.string()
|
|
115
|
-
}),
|
|
152
|
+
}), sn = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), rn = e.enum([
|
|
116
153
|
"CREATE_USER",
|
|
117
154
|
"GET_USER",
|
|
118
155
|
"UPDATE_USER",
|
|
119
156
|
"SEND_REQUEST",
|
|
120
157
|
"SEND_EMAIL"
|
|
121
|
-
]),
|
|
158
|
+
]), ln = e.enum(["VERIFY_EMAIL"]), he = e.object({
|
|
122
159
|
require_mx_record: e.boolean().optional(),
|
|
123
160
|
block_aliases: e.boolean().optional(),
|
|
124
161
|
block_free_emails: e.boolean().optional(),
|
|
125
162
|
block_disposable_emails: e.boolean().optional(),
|
|
126
163
|
blocklist: e.array(e.string()).optional(),
|
|
127
164
|
allowlist: e.array(e.string()).optional()
|
|
128
|
-
}),
|
|
165
|
+
}), be = e.object({
|
|
129
166
|
id: e.string(),
|
|
130
167
|
alias: e.string().max(100).optional(),
|
|
131
168
|
type: e.literal("AUTH0"),
|
|
@@ -137,7 +174,7 @@ const a = e.object({
|
|
|
137
174
|
user_id: e.string(),
|
|
138
175
|
changes: e.record(e.string(), e.any())
|
|
139
176
|
})
|
|
140
|
-
}),
|
|
177
|
+
}), fe = e.object({
|
|
141
178
|
id: e.string(),
|
|
142
179
|
alias: e.string().max(100).optional(),
|
|
143
180
|
type: e.literal("EMAIL"),
|
|
@@ -146,9 +183,9 @@ const a = e.object({
|
|
|
146
183
|
mask_output: e.boolean().optional(),
|
|
147
184
|
params: e.object({
|
|
148
185
|
email: e.string(),
|
|
149
|
-
rules:
|
|
186
|
+
rules: he.optional()
|
|
150
187
|
})
|
|
151
|
-
}),
|
|
188
|
+
}), Ee = e.enum(["change-email", "account", "custom"]), Se = e.object({
|
|
152
189
|
id: e.string(),
|
|
153
190
|
alias: e.string().max(100).optional(),
|
|
154
191
|
type: e.literal("REDIRECT"),
|
|
@@ -156,32 +193,32 @@ const a = e.object({
|
|
|
156
193
|
allow_failure: e.boolean().optional(),
|
|
157
194
|
mask_output: e.boolean().optional(),
|
|
158
195
|
params: e.object({
|
|
159
|
-
target:
|
|
196
|
+
target: Ee.openapi({
|
|
160
197
|
description: "The predefined target to redirect to, or 'custom' for a custom URL"
|
|
161
198
|
}),
|
|
162
199
|
custom_url: e.string().optional().openapi({
|
|
163
200
|
description: "Custom URL to redirect to when target is 'custom'"
|
|
164
201
|
})
|
|
165
202
|
})
|
|
166
|
-
}),
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
]),
|
|
203
|
+
}), ye = e.union([
|
|
204
|
+
be,
|
|
205
|
+
fe,
|
|
206
|
+
Se
|
|
207
|
+
]), Ae = e.object({
|
|
171
208
|
name: e.string().min(1).max(150).openapi({
|
|
172
209
|
description: "The name of the flow"
|
|
173
210
|
}),
|
|
174
211
|
// Actions is an array of action steps (Auth0 stores as JSON blob)
|
|
175
|
-
actions: e.array(
|
|
212
|
+
actions: e.array(ye).optional().default([]).openapi({
|
|
176
213
|
description: "The list of actions to execute in sequence"
|
|
177
214
|
})
|
|
178
|
-
}),
|
|
215
|
+
}), cn = Ae.extend({
|
|
179
216
|
...a.shape,
|
|
180
217
|
id: e.string().openapi({
|
|
181
218
|
description: "Unique identifier for the flow",
|
|
182
219
|
example: "af_12tMpdJ3iek7svMyZkSh5M"
|
|
183
220
|
})
|
|
184
|
-
}),
|
|
221
|
+
}), pn = e.object({
|
|
185
222
|
page: e.string().min(0).optional().default("0").transform((t) => parseInt(t, 10)).openapi({
|
|
186
223
|
description: "The page number where 0 is the first page"
|
|
187
224
|
}),
|
|
@@ -197,12 +234,12 @@ const a = e.object({
|
|
|
197
234
|
q: e.string().optional().openapi({
|
|
198
235
|
description: "A lucene query string used to filter the results"
|
|
199
236
|
})
|
|
200
|
-
}),
|
|
237
|
+
}), dn = e.object({
|
|
201
238
|
start: e.number(),
|
|
202
239
|
limit: e.number(),
|
|
203
240
|
length: e.number(),
|
|
204
241
|
total: e.number().optional()
|
|
205
|
-
}),
|
|
242
|
+
}), Ie = e.object({
|
|
206
243
|
email: e.string().optional(),
|
|
207
244
|
email_verified: e.boolean().optional(),
|
|
208
245
|
name: e.string().optional(),
|
|
@@ -211,7 +248,7 @@ const a = e.object({
|
|
|
211
248
|
phone_number: e.string().optional(),
|
|
212
249
|
phone_verified: e.boolean().optional(),
|
|
213
250
|
family_name: e.string().optional()
|
|
214
|
-
}).catchall(e.any()),
|
|
251
|
+
}).catchall(e.any()), Ce = e.object({
|
|
215
252
|
connection: e.string(),
|
|
216
253
|
user_id: e.string(),
|
|
217
254
|
provider: e.string(),
|
|
@@ -224,8 +261,8 @@ const a = e.object({
|
|
|
224
261
|
access_token: e.string().optional(),
|
|
225
262
|
access_token_secret: e.string().optional(),
|
|
226
263
|
refresh_token: e.string().optional(),
|
|
227
|
-
profileData:
|
|
228
|
-
}),
|
|
264
|
+
profileData: Ie.optional()
|
|
265
|
+
}), Te = e.object({
|
|
229
266
|
formatted: e.string().optional(),
|
|
230
267
|
// Full mailing address
|
|
231
268
|
street_address: e.string().optional(),
|
|
@@ -238,7 +275,7 @@ const a = e.object({
|
|
|
238
275
|
// Zip code or postal code
|
|
239
276
|
country: e.string().optional()
|
|
240
277
|
// Country name
|
|
241
|
-
}).optional(),
|
|
278
|
+
}).optional(), D = e.object({
|
|
242
279
|
email: e.string().optional().transform((t) => t && t.toLowerCase()),
|
|
243
280
|
username: e.string().refine((t) => !t.includes("@"), {
|
|
244
281
|
message: 'Usernames must not contain "@". Use the email field for email addresses.'
|
|
@@ -270,8 +307,8 @@ const a = e.object({
|
|
|
270
307
|
zoneinfo: e.string().optional(),
|
|
271
308
|
// e.g., "Europe/Paris"
|
|
272
309
|
// OIDC address claim (OIDC Core 5.1.1)
|
|
273
|
-
address:
|
|
274
|
-
}),
|
|
310
|
+
address: Te
|
|
311
|
+
}), Oe = D.extend({
|
|
275
312
|
email_verified: e.boolean().default(!1),
|
|
276
313
|
verify_email: e.boolean().optional(),
|
|
277
314
|
last_ip: e.string().optional(),
|
|
@@ -294,31 +331,31 @@ const a = e.object({
|
|
|
294
331
|
hash: e.string(),
|
|
295
332
|
algorithm: e.string()
|
|
296
333
|
}).optional()
|
|
297
|
-
}),
|
|
298
|
-
...
|
|
334
|
+
}), Ne = e.object({
|
|
335
|
+
...Oe.omit({ password: !0 }).shape,
|
|
299
336
|
...a.shape,
|
|
300
337
|
user_id: e.string(),
|
|
301
338
|
provider: e.string(),
|
|
302
339
|
is_social: e.boolean(),
|
|
303
340
|
email: e.string().optional(),
|
|
304
341
|
login_count: e.number().default(0),
|
|
305
|
-
identities: e.array(
|
|
306
|
-
}),
|
|
342
|
+
identities: e.array(Ce).optional()
|
|
343
|
+
}), _n = Ne.omit({
|
|
307
344
|
registration_completed_at: !0
|
|
308
|
-
}),
|
|
345
|
+
}), gn = D.extend({
|
|
309
346
|
login_count: e.number(),
|
|
310
347
|
multifactor: e.array(e.string()).optional(),
|
|
311
348
|
last_ip: e.string().optional(),
|
|
312
349
|
last_login: e.string().optional(),
|
|
313
350
|
user_id: e.string()
|
|
314
351
|
}).catchall(e.any());
|
|
315
|
-
let
|
|
352
|
+
let we = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", je = (t = 21) => {
|
|
316
353
|
let o = "", n = crypto.getRandomValues(new Uint8Array(t |= 0));
|
|
317
354
|
for (; t--; )
|
|
318
|
-
o +=
|
|
355
|
+
o += we[n[t] & 63];
|
|
319
356
|
return o;
|
|
320
357
|
};
|
|
321
|
-
const
|
|
358
|
+
const ke = e.object({
|
|
322
359
|
client_id: e.string().optional().openapi({
|
|
323
360
|
description: "ID of this client. Generated server-side if omitted (Auth0 behavior)."
|
|
324
361
|
}),
|
|
@@ -331,7 +368,7 @@ const Ae = e.object({
|
|
|
331
368
|
global: e.boolean().default(!1).openapi({
|
|
332
369
|
description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
|
|
333
370
|
}),
|
|
334
|
-
client_secret: e.string().default(() =>
|
|
371
|
+
client_secret: e.string().default(() => je()).optional().openapi({
|
|
335
372
|
description: "Client secret (which you must not make public)."
|
|
336
373
|
}),
|
|
337
374
|
app_type: e.enum([
|
|
@@ -453,6 +490,12 @@ const Ae = e.object({
|
|
|
453
490
|
client_metadata: e.record(e.string().max(255)).default({}).optional().openapi({
|
|
454
491
|
description: 'Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/()<>@ [Tab][Space]'
|
|
455
492
|
}),
|
|
493
|
+
disable_sign_ups: e.boolean().default(!1).optional().openapi({
|
|
494
|
+
description: "When true, blocks new user sign-ups via this client. The identifier/signup screen rejects emails that don't match an existing user with `User account does not exist` (unless `hide_sign_up_disabled_error` is also set). Existing users — including those signing in via a federated connection that links to an existing account — are unaffected."
|
|
495
|
+
}),
|
|
496
|
+
hide_sign_up_disabled_error: e.boolean().default(!1).optional().openapi({
|
|
497
|
+
description: "Enumeration-safe variant of `disable_sign_ups`. When both are true, the identifier screen does not reveal that an email is unknown — it advances to the OTP/password challenge as if the account existed and fails at credential check. Mitigates email enumeration at the cost of UX: users without an account see a generic credential failure instead of an explicit signup-disabled message."
|
|
498
|
+
}),
|
|
456
499
|
mobile: e.record(e.any()).default({}).optional().openapi({
|
|
457
500
|
description: "Additional configuration for native mobile apps."
|
|
458
501
|
}),
|
|
@@ -536,14 +579,14 @@ const Ae = e.object({
|
|
|
536
579
|
user_linking_mode: e.enum(["builtin", "off"]).optional().openapi({
|
|
537
580
|
description: "Per-client override for the built-in email-based user-linking path. `builtin` runs the legacy in-process linking at user creation/email update. `off` disables the legacy path; linking only happens if the tenant has enabled the `account-linking` template hook. When unset, the service-level `userLinkingMode` default applies."
|
|
538
581
|
})
|
|
539
|
-
}),
|
|
582
|
+
}), un = e.object({
|
|
540
583
|
created_at: e.string(),
|
|
541
584
|
updated_at: e.string(),
|
|
542
|
-
...
|
|
585
|
+
...ke.shape,
|
|
543
586
|
// Insert allows omitting (server-generated to match Auth0). The read schema
|
|
544
587
|
// always has it — the row in storage is non-null.
|
|
545
588
|
client_id: e.string()
|
|
546
|
-
}),
|
|
589
|
+
}), Re = e.object({
|
|
547
590
|
client_id: e.string().min(1).openapi({
|
|
548
591
|
description: "ID of the client."
|
|
549
592
|
}),
|
|
@@ -568,37 +611,37 @@ const Ae = e.object({
|
|
|
568
611
|
authorization_details_types: e.array(e.string()).optional().openapi({
|
|
569
612
|
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."
|
|
570
613
|
})
|
|
571
|
-
}),
|
|
614
|
+
}), ve = e.object({
|
|
572
615
|
id: e.string().openapi({
|
|
573
616
|
description: "ID of the client grant."
|
|
574
617
|
}),
|
|
575
|
-
...
|
|
618
|
+
...Re.shape,
|
|
576
619
|
created_at: e.string().optional(),
|
|
577
620
|
updated_at: e.string().optional()
|
|
578
|
-
}),
|
|
621
|
+
}), mn = e.array(ve), De = e.enum(["iat", "rat"]), Le = e.object({
|
|
579
622
|
id: e.string(),
|
|
580
623
|
token_hash: e.string(),
|
|
581
|
-
type:
|
|
624
|
+
type: De,
|
|
582
625
|
client_id: e.string().optional(),
|
|
583
626
|
sub: e.string().optional(),
|
|
584
627
|
constraints: e.record(e.unknown()).optional(),
|
|
585
628
|
single_use: e.boolean().default(!1),
|
|
586
629
|
expires_at: e.string().optional()
|
|
587
|
-
}),
|
|
630
|
+
}), hn = e.object({
|
|
588
631
|
created_at: e.string(),
|
|
589
632
|
used_at: e.string().optional(),
|
|
590
633
|
revoked_at: e.string().optional(),
|
|
591
|
-
...
|
|
634
|
+
...Le.shape
|
|
592
635
|
}), m = e.object({
|
|
593
636
|
x: e.number(),
|
|
594
637
|
y: e.number()
|
|
595
638
|
});
|
|
596
|
-
var
|
|
639
|
+
var L = /* @__PURE__ */ ((t) => (t.RICH_TEXT = "RICH_TEXT", t.NEXT_BUTTON = "NEXT_BUTTON", t.BACK_BUTTON = "BACK_BUTTON", t.SUBMIT_BUTTON = "SUBMIT_BUTTON", t.DIVIDER = "DIVIDER", t.TEXT = "TEXT", t.EMAIL = "EMAIL", t.PASSWORD = "PASSWORD", t.NUMBER = "NUMBER", t.PHONE = "PHONE", t.DATE = "DATE", t.CHECKBOX = "CHECKBOX", t.RADIO = "RADIO", t.SELECT = "SELECT", t.HIDDEN = "HIDDEN", t.LEGAL = "LEGAL", t))(L || {}), x = /* @__PURE__ */ ((t) => (t.BLOCK = "BLOCK", t.FIELD = "FIELD", t))(x || {});
|
|
597
640
|
const C = e.object({
|
|
598
641
|
id: e.string(),
|
|
599
|
-
category: e.nativeEnum(
|
|
600
|
-
type: e.nativeEnum(
|
|
601
|
-
}),
|
|
642
|
+
category: e.nativeEnum(x),
|
|
643
|
+
type: e.nativeEnum(L)
|
|
644
|
+
}), xe = C.extend({
|
|
602
645
|
category: e.literal(
|
|
603
646
|
"BLOCK"
|
|
604
647
|
/* BLOCK */
|
|
@@ -610,7 +653,7 @@ const C = e.object({
|
|
|
610
653
|
config: e.object({
|
|
611
654
|
content: e.string()
|
|
612
655
|
}).passthrough()
|
|
613
|
-
}),
|
|
656
|
+
}), Ue = C.extend({
|
|
614
657
|
category: e.literal(
|
|
615
658
|
"BLOCK"
|
|
616
659
|
/* BLOCK */
|
|
@@ -632,7 +675,7 @@ const C = e.object({
|
|
|
632
675
|
config: e.object({
|
|
633
676
|
text: e.string()
|
|
634
677
|
}).passthrough()
|
|
635
|
-
}),
|
|
678
|
+
}), Fe = C.extend({
|
|
636
679
|
category: e.literal(
|
|
637
680
|
"FIELD"
|
|
638
681
|
/* FIELD */
|
|
@@ -646,7 +689,7 @@ const C = e.object({
|
|
|
646
689
|
config: e.object({
|
|
647
690
|
text: e.string()
|
|
648
691
|
}).passthrough()
|
|
649
|
-
}),
|
|
692
|
+
}), Pe = C.extend({
|
|
650
693
|
category: e.literal(
|
|
651
694
|
"FIELD"
|
|
652
695
|
/* FIELD */
|
|
@@ -699,19 +742,19 @@ const C = e.object({
|
|
|
699
742
|
label: e.string().optional(),
|
|
700
743
|
placeholder: e.string().optional()
|
|
701
744
|
}).passthrough()
|
|
702
|
-
}),
|
|
745
|
+
}), Me = e.object({
|
|
703
746
|
id: e.string(),
|
|
704
747
|
category: e.string(),
|
|
705
748
|
type: e.string()
|
|
706
|
-
}).passthrough(),
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
749
|
+
}).passthrough(), He = e.union([
|
|
750
|
+
xe,
|
|
751
|
+
Ue,
|
|
752
|
+
Fe,
|
|
753
|
+
Pe,
|
|
754
|
+
Me
|
|
712
755
|
]);
|
|
713
|
-
var
|
|
714
|
-
const
|
|
756
|
+
var Ge = /* @__PURE__ */ ((t) => (t.STEP = "STEP", t.FLOW = "FLOW", t.CONDITION = "CONDITION", t.ACTION = "ACTION", t))(Ge || {});
|
|
757
|
+
const We = e.object({
|
|
715
758
|
id: e.string(),
|
|
716
759
|
type: e.literal(
|
|
717
760
|
"STEP"
|
|
@@ -720,10 +763,10 @@ const Le = e.object({
|
|
|
720
763
|
coordinates: m,
|
|
721
764
|
alias: e.string().optional(),
|
|
722
765
|
config: e.object({
|
|
723
|
-
components: e.array(
|
|
766
|
+
components: e.array(He),
|
|
724
767
|
next_node: e.string()
|
|
725
768
|
}).passthrough()
|
|
726
|
-
}),
|
|
769
|
+
}), Be = e.object({
|
|
727
770
|
id: e.string(),
|
|
728
771
|
type: e.literal(
|
|
729
772
|
"FLOW"
|
|
@@ -735,7 +778,7 @@ const Le = e.object({
|
|
|
735
778
|
flow_id: e.string(),
|
|
736
779
|
next_node: e.string()
|
|
737
780
|
})
|
|
738
|
-
}),
|
|
781
|
+
}), Ke = e.object({
|
|
739
782
|
id: e.string(),
|
|
740
783
|
type: e.literal(
|
|
741
784
|
"ACTION"
|
|
@@ -757,47 +800,57 @@ const Le = e.object({
|
|
|
757
800
|
description: "The next node to navigate to after action (for non-redirect actions)"
|
|
758
801
|
})
|
|
759
802
|
}).passthrough()
|
|
760
|
-
}),
|
|
803
|
+
}), ze = e.object({
|
|
761
804
|
id: e.string(),
|
|
762
805
|
type: e.string(),
|
|
763
806
|
coordinates: m
|
|
764
|
-
}).passthrough(),
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
]),
|
|
807
|
+
}).passthrough(), qe = e.union([
|
|
808
|
+
We,
|
|
809
|
+
Be,
|
|
810
|
+
Ke,
|
|
811
|
+
ze
|
|
812
|
+
]), Xe = e.object({
|
|
770
813
|
next_node: e.string(),
|
|
771
814
|
coordinates: m
|
|
772
|
-
}).passthrough(),
|
|
815
|
+
}).passthrough(), Ve = e.object({
|
|
773
816
|
resume_flow: e.boolean().optional(),
|
|
774
817
|
coordinates: m
|
|
775
|
-
}).passthrough(),
|
|
818
|
+
}).passthrough(), Ye = e.object({
|
|
776
819
|
id: e.string(),
|
|
777
820
|
name: e.string(),
|
|
778
821
|
languages: e.object({
|
|
779
822
|
primary: e.string()
|
|
780
823
|
}).passthrough(),
|
|
781
|
-
nodes: e.array(
|
|
782
|
-
start:
|
|
783
|
-
ending:
|
|
824
|
+
nodes: e.array(qe),
|
|
825
|
+
start: Xe,
|
|
826
|
+
ending: Ve,
|
|
784
827
|
created_at: e.string(),
|
|
785
828
|
updated_at: e.string(),
|
|
786
829
|
links: e.object({
|
|
787
830
|
sdkSrc: e.string().optional(),
|
|
788
831
|
sdk_src: e.string().optional()
|
|
789
832
|
}).passthrough()
|
|
790
|
-
}).passthrough(),
|
|
833
|
+
}).passthrough(), bn = Ye.omit({
|
|
791
834
|
id: !0,
|
|
792
835
|
created_at: !0,
|
|
793
836
|
updated_at: !0
|
|
794
837
|
});
|
|
795
|
-
var U = /* @__PURE__ */ ((t) => (t.TOKEN = "token", t.ID_TOKEN = "id_token", t.TOKEN_ID_TOKEN = "id_token token", t.CODE = "code", t.CODE_ID_TOKEN = "code id_token", t.CODE_TOKEN = "code token", t.CODE_ID_TOKEN_TOKEN = "code id_token token", t))(U || {}),
|
|
796
|
-
const
|
|
838
|
+
var U = /* @__PURE__ */ ((t) => (t.TOKEN = "token", t.ID_TOKEN = "id_token", t.TOKEN_ID_TOKEN = "id_token token", t.CODE = "code", t.CODE_ID_TOKEN = "code id_token", t.CODE_TOKEN = "code token", t.CODE_ID_TOKEN_TOKEN = "code id_token token", t))(U || {}), F = /* @__PURE__ */ ((t) => (t.QUERY = "query", t.FRAGMENT = "fragment", t.FORM_POST = "form_post", t.WEB_MESSAGE = "web_message", t.SAML_POST = "saml_post", t))(F || {}), P = /* @__PURE__ */ ((t) => (t.S256 = "S256", t.Plain = "plain", t))(P || {});
|
|
839
|
+
const w = e.union([
|
|
840
|
+
e.null(),
|
|
841
|
+
e.object({
|
|
842
|
+
essential: e.boolean().optional(),
|
|
843
|
+
value: e.unknown().optional(),
|
|
844
|
+
values: e.array(e.unknown()).optional()
|
|
845
|
+
})
|
|
846
|
+
]).nullable(), Ze = e.object({
|
|
847
|
+
userinfo: e.record(e.string(), w).optional(),
|
|
848
|
+
id_token: e.record(e.string(), w).optional()
|
|
849
|
+
}), Qe = e.object({
|
|
797
850
|
client_id: e.string(),
|
|
798
851
|
act_as: e.string().optional(),
|
|
799
852
|
response_type: e.nativeEnum(U).optional(),
|
|
800
|
-
response_mode: e.nativeEnum(
|
|
853
|
+
response_mode: e.nativeEnum(F).optional(),
|
|
801
854
|
redirect_uri: e.string().optional(),
|
|
802
855
|
audience: e.string().optional(),
|
|
803
856
|
organization: e.string().optional(),
|
|
@@ -805,7 +858,7 @@ const Be = e.object({
|
|
|
805
858
|
nonce: e.string().optional(),
|
|
806
859
|
scope: e.string().optional(),
|
|
807
860
|
prompt: e.string().optional(),
|
|
808
|
-
code_challenge_method: e.nativeEnum(
|
|
861
|
+
code_challenge_method: e.nativeEnum(P).optional(),
|
|
809
862
|
code_challenge: e.string().optional(),
|
|
810
863
|
username: e.string().optional(),
|
|
811
864
|
ui_locales: e.string().optional(),
|
|
@@ -815,9 +868,12 @@ const Be = e.object({
|
|
|
815
868
|
// OIDC Core 3.1.2.1 - acr_values is a space-separated string of requested
|
|
816
869
|
// Authentication Context Class Reference values
|
|
817
870
|
acr_values: e.string().optional(),
|
|
871
|
+
// OIDC Core 5.5 - parsed `claims` request parameter (individual claim
|
|
872
|
+
// requests for the id_token and/or userinfo response).
|
|
873
|
+
claims: Ze.optional(),
|
|
818
874
|
// The following fields are not available in Auth0
|
|
819
875
|
vendor_id: e.string().optional()
|
|
820
|
-
}),
|
|
876
|
+
}), fn = e.object({
|
|
821
877
|
colors: e.object({
|
|
822
878
|
primary: e.string(),
|
|
823
879
|
// Auth0 supports either a hex color string ("#ffffff") or a gradient
|
|
@@ -842,7 +898,7 @@ const Be = e.object({
|
|
|
842
898
|
// Auth0 has no equivalent. Per-user toggle (ah-dark-mode cookie) still
|
|
843
899
|
// overrides this at runtime.
|
|
844
900
|
dark_mode: e.enum(["dark", "light", "auto"]).optional()
|
|
845
|
-
}),
|
|
901
|
+
}), $e = e.enum([
|
|
846
902
|
"password_reset",
|
|
847
903
|
"email_verification",
|
|
848
904
|
"otp",
|
|
@@ -850,7 +906,7 @@ const Be = e.object({
|
|
|
850
906
|
"authorization_code",
|
|
851
907
|
"oauth2_state",
|
|
852
908
|
"ticket"
|
|
853
|
-
]),
|
|
909
|
+
]), Je = e.object({
|
|
854
910
|
code_id: e.string().openapi({
|
|
855
911
|
description: "The code that will be used in for instance an email verification flow"
|
|
856
912
|
}),
|
|
@@ -860,7 +916,7 @@ const Be = e.object({
|
|
|
860
916
|
connection_id: e.string().optional().openapi({
|
|
861
917
|
description: "The connection that the code is connected to"
|
|
862
918
|
}),
|
|
863
|
-
code_type:
|
|
919
|
+
code_type: $e,
|
|
864
920
|
code_verifier: e.string().optional().openapi({
|
|
865
921
|
description: "The code verifier used in PKCE in outbound flows"
|
|
866
922
|
}),
|
|
@@ -885,10 +941,10 @@ const Be = e.object({
|
|
|
885
941
|
expires_at: e.string(),
|
|
886
942
|
used_at: e.string().optional(),
|
|
887
943
|
user_id: e.string().optional()
|
|
888
|
-
}),
|
|
889
|
-
...
|
|
944
|
+
}), En = e.object({
|
|
945
|
+
...Je.shape,
|
|
890
946
|
created_at: e.string()
|
|
891
|
-
}),
|
|
947
|
+
}), et = e.object({
|
|
892
948
|
kid: e.string().optional(),
|
|
893
949
|
team_id: e.string().optional(),
|
|
894
950
|
realms: e.string().optional(),
|
|
@@ -903,6 +959,10 @@ const Be = e.object({
|
|
|
903
959
|
jwks_uri: e.string().optional(),
|
|
904
960
|
discovery_url: e.string().optional(),
|
|
905
961
|
issuer: e.string().optional(),
|
|
962
|
+
// How client credentials are sent to the token endpoint for upstream OIDC /
|
|
963
|
+
// OAuth2 connections. Defaults to `client_secret_basic` (HTTP Basic auth).
|
|
964
|
+
// Set to `client_secret_post` for providers like JumpCloud that reject Basic.
|
|
965
|
+
token_endpoint_auth_method: e.enum(["client_secret_basic", "client_secret_post"]).optional(),
|
|
906
966
|
provider: e.string().optional(),
|
|
907
967
|
from: e.string().optional(),
|
|
908
968
|
twilio_sid: e.string().optional(),
|
|
@@ -1022,14 +1082,14 @@ function T(t) {
|
|
|
1022
1082
|
return t;
|
|
1023
1083
|
}
|
|
1024
1084
|
}
|
|
1025
|
-
const
|
|
1085
|
+
const tt = e.object({
|
|
1026
1086
|
id: e.string().optional(),
|
|
1027
1087
|
name: e.string(),
|
|
1028
1088
|
display_name: e.string().optional(),
|
|
1029
1089
|
strategy: e.string(),
|
|
1030
1090
|
options: e.preprocess(
|
|
1031
1091
|
(t) => t === null ? {} : T(t),
|
|
1032
|
-
|
|
1092
|
+
et
|
|
1033
1093
|
).default({}),
|
|
1034
1094
|
enabled_clients: e.array(e.string()).default([]).optional(),
|
|
1035
1095
|
response_type: e.custom().optional(),
|
|
@@ -1038,11 +1098,11 @@ const qe = e.object({
|
|
|
1038
1098
|
show_as_button: e.boolean().optional(),
|
|
1039
1099
|
metadata: e.record(e.any()).optional(),
|
|
1040
1100
|
is_system: e.boolean().optional()
|
|
1041
|
-
}),
|
|
1101
|
+
}), Sn = e.object({
|
|
1042
1102
|
id: e.string(),
|
|
1043
1103
|
created_at: e.string().transform((t) => t === null ? "" : t),
|
|
1044
1104
|
updated_at: e.string().transform((t) => t === null ? "" : t)
|
|
1045
|
-
}).extend(
|
|
1105
|
+
}).extend(tt.shape), ot = e.object({
|
|
1046
1106
|
domain: e.string(),
|
|
1047
1107
|
custom_domain_id: e.string().optional(),
|
|
1048
1108
|
type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
|
|
@@ -1056,7 +1116,7 @@ const qe = e.object({
|
|
|
1056
1116
|
"null"
|
|
1057
1117
|
]).optional(),
|
|
1058
1118
|
domain_metadata: e.record(e.string().max(255)).optional()
|
|
1059
|
-
}),
|
|
1119
|
+
}), nt = e.discriminatedUnion("name", [
|
|
1060
1120
|
e.object({
|
|
1061
1121
|
name: e.literal("txt"),
|
|
1062
1122
|
record: e.string(),
|
|
@@ -1067,17 +1127,17 @@ const qe = e.object({
|
|
|
1067
1127
|
http_body: e.string(),
|
|
1068
1128
|
http_url: e.string()
|
|
1069
1129
|
})
|
|
1070
|
-
]),
|
|
1071
|
-
...
|
|
1130
|
+
]), it = e.object({
|
|
1131
|
+
...ot.shape,
|
|
1072
1132
|
custom_domain_id: e.string(),
|
|
1073
1133
|
primary: e.boolean(),
|
|
1074
1134
|
status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
|
|
1075
1135
|
origin_domain_name: e.string().optional(),
|
|
1076
1136
|
verification: e.object({
|
|
1077
|
-
methods: e.array(
|
|
1137
|
+
methods: e.array(nt)
|
|
1078
1138
|
}).optional(),
|
|
1079
1139
|
tls_policy: e.string().optional()
|
|
1080
|
-
}),
|
|
1140
|
+
}), yn = it.extend({
|
|
1081
1141
|
tenant_id: e.string()
|
|
1082
1142
|
}), O = e.object({
|
|
1083
1143
|
id: e.string(),
|
|
@@ -1085,17 +1145,17 @@ const qe = e.object({
|
|
|
1085
1145
|
visible: e.boolean().optional().default(!0)
|
|
1086
1146
|
}), l = O.extend({
|
|
1087
1147
|
category: e.literal("BLOCK").optional()
|
|
1088
|
-
}),
|
|
1148
|
+
}), at = l.extend({
|
|
1089
1149
|
type: e.literal("DIVIDER"),
|
|
1090
1150
|
config: e.object({
|
|
1091
1151
|
text: e.string().optional()
|
|
1092
1152
|
}).optional()
|
|
1093
|
-
}),
|
|
1153
|
+
}), st = l.extend({
|
|
1094
1154
|
type: e.literal("HTML"),
|
|
1095
1155
|
config: e.object({
|
|
1096
1156
|
content: e.string().optional()
|
|
1097
1157
|
}).optional()
|
|
1098
|
-
}),
|
|
1158
|
+
}), rt = l.extend({
|
|
1099
1159
|
type: e.literal("IMAGE"),
|
|
1100
1160
|
config: e.object({
|
|
1101
1161
|
src: e.string().optional(),
|
|
@@ -1103,29 +1163,29 @@ const qe = e.object({
|
|
|
1103
1163
|
width: e.number().optional(),
|
|
1104
1164
|
height: e.number().optional()
|
|
1105
1165
|
}).optional()
|
|
1106
|
-
}),
|
|
1166
|
+
}), lt = l.extend({
|
|
1107
1167
|
type: e.literal("JUMP_BUTTON"),
|
|
1108
1168
|
config: e.object({
|
|
1109
1169
|
text: e.string().optional(),
|
|
1110
1170
|
target_step: e.string().optional()
|
|
1111
1171
|
})
|
|
1112
|
-
}),
|
|
1172
|
+
}), ct = l.extend({
|
|
1113
1173
|
type: e.literal("RESEND_BUTTON"),
|
|
1114
1174
|
config: e.object({
|
|
1115
1175
|
text: e.string().optional(),
|
|
1116
1176
|
resend_action: e.string().optional()
|
|
1117
1177
|
})
|
|
1118
|
-
}),
|
|
1178
|
+
}), pt = l.extend({
|
|
1119
1179
|
type: e.literal("NEXT_BUTTON"),
|
|
1120
1180
|
config: e.object({
|
|
1121
1181
|
text: e.string().optional()
|
|
1122
1182
|
})
|
|
1123
|
-
}),
|
|
1183
|
+
}), dt = l.extend({
|
|
1124
1184
|
type: e.literal("PREVIOUS_BUTTON"),
|
|
1125
1185
|
config: e.object({
|
|
1126
1186
|
text: e.string().optional()
|
|
1127
1187
|
})
|
|
1128
|
-
}),
|
|
1188
|
+
}), _t = l.extend({
|
|
1129
1189
|
type: e.literal("RICH_TEXT"),
|
|
1130
1190
|
config: e.object({
|
|
1131
1191
|
content: e.string().optional()
|
|
@@ -1136,17 +1196,17 @@ const qe = e.object({
|
|
|
1136
1196
|
hint: e.string().min(1).max(500).optional(),
|
|
1137
1197
|
required: e.boolean().optional(),
|
|
1138
1198
|
sensitive: e.boolean().optional()
|
|
1139
|
-
}),
|
|
1199
|
+
}), gt = N.extend({
|
|
1140
1200
|
type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
|
|
1141
1201
|
config: e.object({
|
|
1142
1202
|
credential_type: e.string().optional()
|
|
1143
1203
|
})
|
|
1144
|
-
}),
|
|
1204
|
+
}), ut = N.extend({
|
|
1145
1205
|
type: e.literal("GMAPS_ADDRESS"),
|
|
1146
1206
|
config: e.object({
|
|
1147
1207
|
api_key: e.string().optional()
|
|
1148
1208
|
})
|
|
1149
|
-
}),
|
|
1209
|
+
}), mt = N.extend({
|
|
1150
1210
|
type: e.literal("RECAPTCHA"),
|
|
1151
1211
|
config: e.object({
|
|
1152
1212
|
site_key: e.string().optional()
|
|
@@ -1164,12 +1224,12 @@ const qe = e.object({
|
|
|
1164
1224
|
).optional(),
|
|
1165
1225
|
required: e.boolean().optional(),
|
|
1166
1226
|
sensitive: e.boolean().optional()
|
|
1167
|
-
}),
|
|
1227
|
+
}), ht = i.extend({
|
|
1168
1228
|
type: e.literal("BOOLEAN"),
|
|
1169
1229
|
config: e.object({
|
|
1170
1230
|
default_value: e.boolean().optional()
|
|
1171
1231
|
}).optional()
|
|
1172
|
-
}),
|
|
1232
|
+
}), bt = i.extend({
|
|
1173
1233
|
type: e.literal("CARDS"),
|
|
1174
1234
|
config: e.object({
|
|
1175
1235
|
options: e.array(
|
|
@@ -1182,7 +1242,7 @@ const qe = e.object({
|
|
|
1182
1242
|
).optional(),
|
|
1183
1243
|
multi_select: e.boolean().optional()
|
|
1184
1244
|
}).optional()
|
|
1185
|
-
}),
|
|
1245
|
+
}), ft = i.extend({
|
|
1186
1246
|
type: e.literal("CHOICE"),
|
|
1187
1247
|
config: e.object({
|
|
1188
1248
|
options: e.array(
|
|
@@ -1195,7 +1255,7 @@ const qe = e.object({
|
|
|
1195
1255
|
multiple: e.boolean().optional(),
|
|
1196
1256
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1197
1257
|
}).optional()
|
|
1198
|
-
}),
|
|
1258
|
+
}), Et = i.extend({
|
|
1199
1259
|
type: e.literal("CUSTOM"),
|
|
1200
1260
|
config: e.object({
|
|
1201
1261
|
component: e.string().optional(),
|
|
@@ -1203,7 +1263,7 @@ const qe = e.object({
|
|
|
1203
1263
|
schema: e.record(e.any()).optional(),
|
|
1204
1264
|
code: e.string().optional()
|
|
1205
1265
|
})
|
|
1206
|
-
}),
|
|
1266
|
+
}), St = i.extend({
|
|
1207
1267
|
type: e.literal("DATE"),
|
|
1208
1268
|
config: e.object({
|
|
1209
1269
|
format: e.string().optional(),
|
|
@@ -1211,7 +1271,7 @@ const qe = e.object({
|
|
|
1211
1271
|
max: e.string().optional(),
|
|
1212
1272
|
default_value: e.string().optional()
|
|
1213
1273
|
}).optional()
|
|
1214
|
-
}),
|
|
1274
|
+
}), yt = i.extend({
|
|
1215
1275
|
type: e.literal("DROPDOWN"),
|
|
1216
1276
|
config: e.object({
|
|
1217
1277
|
options: e.array(
|
|
@@ -1225,26 +1285,26 @@ const qe = e.object({
|
|
|
1225
1285
|
multiple: e.boolean().optional(),
|
|
1226
1286
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1227
1287
|
}).optional()
|
|
1228
|
-
}),
|
|
1288
|
+
}), At = i.extend({
|
|
1229
1289
|
type: e.literal("EMAIL"),
|
|
1230
1290
|
config: e.object({
|
|
1231
1291
|
placeholder: e.string().optional(),
|
|
1232
1292
|
default_value: e.string().optional()
|
|
1233
1293
|
}).optional()
|
|
1234
|
-
}),
|
|
1294
|
+
}), It = i.extend({
|
|
1235
1295
|
type: e.literal("FILE"),
|
|
1236
1296
|
config: e.object({
|
|
1237
1297
|
accept: e.string().optional(),
|
|
1238
1298
|
max_size: e.number().optional(),
|
|
1239
1299
|
multiple: e.boolean().optional()
|
|
1240
1300
|
}).optional()
|
|
1241
|
-
}),
|
|
1301
|
+
}), Ct = i.extend({
|
|
1242
1302
|
type: e.literal("LEGAL"),
|
|
1243
1303
|
config: e.object({
|
|
1244
1304
|
text: e.string(),
|
|
1245
1305
|
html: e.boolean().optional()
|
|
1246
1306
|
}).optional()
|
|
1247
|
-
}),
|
|
1307
|
+
}), Tt = i.extend({
|
|
1248
1308
|
type: e.literal("NUMBER"),
|
|
1249
1309
|
config: e.object({
|
|
1250
1310
|
placeholder: e.string().optional(),
|
|
@@ -1253,7 +1313,7 @@ const qe = e.object({
|
|
|
1253
1313
|
step: e.number().optional(),
|
|
1254
1314
|
default_value: e.string().optional()
|
|
1255
1315
|
}).optional()
|
|
1256
|
-
}),
|
|
1316
|
+
}), Ot = i.extend({
|
|
1257
1317
|
type: e.literal("PASSWORD"),
|
|
1258
1318
|
config: e.object({
|
|
1259
1319
|
placeholder: e.string().optional(),
|
|
@@ -1262,13 +1322,13 @@ const qe = e.object({
|
|
|
1262
1322
|
forgot_password_link: e.string().optional(),
|
|
1263
1323
|
default_value: e.string().optional()
|
|
1264
1324
|
}).optional()
|
|
1265
|
-
}),
|
|
1325
|
+
}), Nt = i.extend({
|
|
1266
1326
|
type: e.literal("PAYMENT"),
|
|
1267
1327
|
config: e.object({
|
|
1268
1328
|
provider: e.string().optional(),
|
|
1269
1329
|
currency: e.string().optional()
|
|
1270
1330
|
}).optional()
|
|
1271
|
-
}),
|
|
1331
|
+
}), wt = i.extend({
|
|
1272
1332
|
type: e.literal("SOCIAL"),
|
|
1273
1333
|
config: e.object({
|
|
1274
1334
|
providers: e.array(e.string()).optional(),
|
|
@@ -1283,7 +1343,7 @@ const qe = e.object({
|
|
|
1283
1343
|
})
|
|
1284
1344
|
).optional()
|
|
1285
1345
|
}).optional()
|
|
1286
|
-
}),
|
|
1346
|
+
}), jt = i.extend({
|
|
1287
1347
|
type: e.literal("TEL"),
|
|
1288
1348
|
config: e.object({
|
|
1289
1349
|
placeholder: e.string().optional(),
|
|
@@ -1291,7 +1351,7 @@ const qe = e.object({
|
|
|
1291
1351
|
default_value: e.string().optional(),
|
|
1292
1352
|
allow_email: e.boolean().optional()
|
|
1293
1353
|
}).optional()
|
|
1294
|
-
}),
|
|
1354
|
+
}), kt = i.extend({
|
|
1295
1355
|
type: e.literal("TEXT"),
|
|
1296
1356
|
config: e.object({
|
|
1297
1357
|
placeholder: e.string().optional(),
|
|
@@ -1299,54 +1359,54 @@ const qe = e.object({
|
|
|
1299
1359
|
max_length: e.number().optional(),
|
|
1300
1360
|
default_value: e.string().optional()
|
|
1301
1361
|
}).optional()
|
|
1302
|
-
}),
|
|
1362
|
+
}), Rt = i.extend({
|
|
1303
1363
|
type: e.literal("COUNTRY"),
|
|
1304
1364
|
config: e.object({
|
|
1305
1365
|
placeholder: e.string().optional(),
|
|
1306
1366
|
default_value: e.string().optional()
|
|
1307
1367
|
}).optional()
|
|
1308
|
-
}),
|
|
1368
|
+
}), vt = i.extend({
|
|
1309
1369
|
type: e.literal("URL"),
|
|
1310
1370
|
config: e.object({
|
|
1311
1371
|
placeholder: e.string().optional(),
|
|
1312
1372
|
default_value: e.string().optional()
|
|
1313
1373
|
}).optional()
|
|
1314
|
-
}),
|
|
1315
|
-
Ze,
|
|
1316
|
-
Qe,
|
|
1317
|
-
$e,
|
|
1318
|
-
Je,
|
|
1319
|
-
et,
|
|
1320
|
-
tt,
|
|
1321
|
-
ot,
|
|
1322
|
-
nt
|
|
1323
|
-
]), Tt = e.discriminatedUnion("type", [
|
|
1324
|
-
it,
|
|
1374
|
+
}), Dt = e.discriminatedUnion("type", [
|
|
1325
1375
|
at,
|
|
1326
|
-
rt
|
|
1327
|
-
]), Ot = e.discriminatedUnion("type", [
|
|
1328
1376
|
st,
|
|
1377
|
+
rt,
|
|
1329
1378
|
lt,
|
|
1330
|
-
pt,
|
|
1331
|
-
At,
|
|
1332
1379
|
ct,
|
|
1380
|
+
pt,
|
|
1333
1381
|
dt,
|
|
1334
|
-
_t
|
|
1382
|
+
_t
|
|
1383
|
+
]), Lt = e.discriminatedUnion("type", [
|
|
1335
1384
|
gt,
|
|
1336
1385
|
ut,
|
|
1337
|
-
mt
|
|
1386
|
+
mt
|
|
1387
|
+
]), xt = e.discriminatedUnion("type", [
|
|
1338
1388
|
ht,
|
|
1339
1389
|
bt,
|
|
1340
1390
|
ft,
|
|
1391
|
+
Rt,
|
|
1341
1392
|
Et,
|
|
1342
1393
|
St,
|
|
1343
1394
|
yt,
|
|
1344
|
-
|
|
1345
|
-
|
|
1395
|
+
At,
|
|
1396
|
+
It,
|
|
1346
1397
|
Ct,
|
|
1347
1398
|
Tt,
|
|
1348
|
-
Ot
|
|
1349
|
-
|
|
1399
|
+
Ot,
|
|
1400
|
+
Nt,
|
|
1401
|
+
wt,
|
|
1402
|
+
jt,
|
|
1403
|
+
kt,
|
|
1404
|
+
vt
|
|
1405
|
+
]), M = e.union([
|
|
1406
|
+
Dt,
|
|
1407
|
+
Lt,
|
|
1408
|
+
xt
|
|
1409
|
+
]), An = /* @__PURE__ */ new Set([
|
|
1350
1410
|
"BOOLEAN",
|
|
1351
1411
|
"CARDS",
|
|
1352
1412
|
"CHOICE",
|
|
@@ -1360,7 +1420,7 @@ const qe = e.object({
|
|
|
1360
1420
|
"TEL",
|
|
1361
1421
|
"TEXT",
|
|
1362
1422
|
"URL"
|
|
1363
|
-
]),
|
|
1423
|
+
]), In = e.object({
|
|
1364
1424
|
id: e.string(),
|
|
1365
1425
|
type: e.literal("submit"),
|
|
1366
1426
|
label: e.string(),
|
|
@@ -1372,7 +1432,7 @@ const qe = e.object({
|
|
|
1372
1432
|
}), E = e.object({
|
|
1373
1433
|
x: e.number(),
|
|
1374
1434
|
y: e.number()
|
|
1375
|
-
}),
|
|
1435
|
+
}), Ut = e.object({
|
|
1376
1436
|
id: e.string(),
|
|
1377
1437
|
type: e.literal("FLOW"),
|
|
1378
1438
|
coordinates: E,
|
|
@@ -1381,7 +1441,7 @@ const qe = e.object({
|
|
|
1381
1441
|
flow_id: e.string().max(30),
|
|
1382
1442
|
next_node: e.string().optional()
|
|
1383
1443
|
})
|
|
1384
|
-
}),
|
|
1444
|
+
}), Ft = e.object({
|
|
1385
1445
|
id: e.string(),
|
|
1386
1446
|
type: e.literal("ROUTER"),
|
|
1387
1447
|
coordinates: E,
|
|
@@ -1397,20 +1457,20 @@ const qe = e.object({
|
|
|
1397
1457
|
),
|
|
1398
1458
|
fallback: e.string()
|
|
1399
1459
|
})
|
|
1400
|
-
}),
|
|
1460
|
+
}), Pt = e.object({
|
|
1401
1461
|
id: e.string(),
|
|
1402
1462
|
type: e.literal("STEP"),
|
|
1403
1463
|
coordinates: E,
|
|
1404
1464
|
alias: e.string().min(1).max(150).optional(),
|
|
1405
1465
|
config: e.object({
|
|
1406
|
-
components: e.array(
|
|
1466
|
+
components: e.array(M),
|
|
1407
1467
|
next_node: e.string().optional()
|
|
1408
1468
|
})
|
|
1409
|
-
}),
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
]),
|
|
1469
|
+
}), Mt = e.discriminatedUnion("type", [
|
|
1470
|
+
Ut,
|
|
1471
|
+
Ft,
|
|
1472
|
+
Pt
|
|
1473
|
+
]), Ht = e.object({
|
|
1414
1474
|
name: e.string().openapi({
|
|
1415
1475
|
description: "The name of the form"
|
|
1416
1476
|
}),
|
|
@@ -1423,7 +1483,7 @@ const qe = e.object({
|
|
|
1423
1483
|
default: e.string().optional()
|
|
1424
1484
|
}).optional(),
|
|
1425
1485
|
translations: e.record(e.string(), e.any()).optional(),
|
|
1426
|
-
nodes: e.array(
|
|
1486
|
+
nodes: e.array(Mt).optional(),
|
|
1427
1487
|
start: e.object({
|
|
1428
1488
|
hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
|
|
1429
1489
|
next_node: e.string().optional(),
|
|
@@ -1445,42 +1505,42 @@ const qe = e.object({
|
|
|
1445
1505
|
}).optional()
|
|
1446
1506
|
}).openapi({
|
|
1447
1507
|
description: "Schema for flow-based forms (matches Auth0 Forms structure)"
|
|
1448
|
-
}),
|
|
1508
|
+
}), Cn = e.object({
|
|
1449
1509
|
...a.shape,
|
|
1450
|
-
...
|
|
1510
|
+
...Ht.shape,
|
|
1451
1511
|
id: e.string()
|
|
1452
|
-
}),
|
|
1512
|
+
}), Gt = e.object({
|
|
1453
1513
|
id: e.number().optional(),
|
|
1454
1514
|
text: e.string(),
|
|
1455
1515
|
type: e.enum(["info", "error", "success", "warning"])
|
|
1456
|
-
}),
|
|
1516
|
+
}), Wt = e.object({
|
|
1457
1517
|
id: e.string().optional(),
|
|
1458
1518
|
text: e.string(),
|
|
1459
1519
|
href: e.string(),
|
|
1460
1520
|
linkText: e.string().optional()
|
|
1461
|
-
}),
|
|
1521
|
+
}), Tn = e.object({
|
|
1462
1522
|
/** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
|
|
1463
1523
|
name: e.string().optional(),
|
|
1464
1524
|
action: e.string(),
|
|
1465
1525
|
method: e.enum(["POST", "GET"]),
|
|
1466
1526
|
title: e.string().optional(),
|
|
1467
1527
|
description: e.string().optional(),
|
|
1468
|
-
components: e.array(
|
|
1469
|
-
messages: e.array(
|
|
1470
|
-
links: e.array(
|
|
1528
|
+
components: e.array(M),
|
|
1529
|
+
messages: e.array(Gt).optional(),
|
|
1530
|
+
links: e.array(Wt).optional(),
|
|
1471
1531
|
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
1472
1532
|
footer: e.string().optional()
|
|
1473
1533
|
});
|
|
1474
|
-
function
|
|
1534
|
+
function On(t) {
|
|
1475
1535
|
return t.category === "BLOCK";
|
|
1476
1536
|
}
|
|
1477
|
-
function
|
|
1537
|
+
function Nn(t) {
|
|
1478
1538
|
return t.category === "WIDGET";
|
|
1479
1539
|
}
|
|
1480
|
-
function
|
|
1540
|
+
function wn(t) {
|
|
1481
1541
|
return t.category === "FIELD";
|
|
1482
1542
|
}
|
|
1483
|
-
const
|
|
1543
|
+
const H = e.enum([
|
|
1484
1544
|
"pre-user-registration",
|
|
1485
1545
|
"post-user-registration",
|
|
1486
1546
|
"post-user-login",
|
|
@@ -1489,14 +1549,14 @@ const M = e.enum([
|
|
|
1489
1549
|
"pre-user-deletion",
|
|
1490
1550
|
"post-user-deletion"
|
|
1491
1551
|
// Potentially other triggers specific to webhooks in the future
|
|
1492
|
-
]),
|
|
1552
|
+
]), G = e.enum([
|
|
1493
1553
|
"pre-user-registration",
|
|
1494
1554
|
"post-user-registration",
|
|
1495
1555
|
"post-user-login",
|
|
1496
1556
|
"validate-registration-username",
|
|
1497
1557
|
"pre-user-deletion",
|
|
1498
1558
|
"post-user-deletion"
|
|
1499
|
-
]),
|
|
1559
|
+
]), W = e.enum([
|
|
1500
1560
|
"post-user-login",
|
|
1501
1561
|
"post-user-registration",
|
|
1502
1562
|
"post-user-update",
|
|
@@ -1506,11 +1566,11 @@ const M = e.enum([
|
|
|
1506
1566
|
"credentials-exchange",
|
|
1507
1567
|
"pre-user-registration",
|
|
1508
1568
|
"post-user-registration"
|
|
1509
|
-
]),
|
|
1569
|
+
]), K = e.enum([
|
|
1510
1570
|
"ensure-username",
|
|
1511
1571
|
"set-preferred-username",
|
|
1512
1572
|
"account-linking"
|
|
1513
|
-
]),
|
|
1573
|
+
]), jn = {
|
|
1514
1574
|
"ensure-username": {
|
|
1515
1575
|
name: "Ensure Username",
|
|
1516
1576
|
description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
|
|
@@ -1530,7 +1590,7 @@ const M = e.enum([
|
|
|
1530
1590
|
"post-user-update"
|
|
1531
1591
|
]
|
|
1532
1592
|
}
|
|
1533
|
-
},
|
|
1593
|
+
}, c = {
|
|
1534
1594
|
enabled: e.boolean().default(!1),
|
|
1535
1595
|
synchronous: e.boolean().default(!1),
|
|
1536
1596
|
priority: e.number().optional(),
|
|
@@ -1547,71 +1607,71 @@ const M = e.enum([
|
|
|
1547
1607
|
* Everything else is opaque to the runtime. Persisted as JSON.
|
|
1548
1608
|
*/
|
|
1549
1609
|
metadata: e.record(e.unknown()).optional()
|
|
1550
|
-
},
|
|
1551
|
-
...
|
|
1552
|
-
trigger_id: M,
|
|
1553
|
-
url: e.string()
|
|
1554
|
-
}), Ut = e.object({
|
|
1555
|
-
...p,
|
|
1610
|
+
}, Bt = e.object({
|
|
1611
|
+
...c,
|
|
1556
1612
|
trigger_id: H,
|
|
1557
|
-
|
|
1558
|
-
}),
|
|
1559
|
-
...
|
|
1613
|
+
url: e.string()
|
|
1614
|
+
}), Kt = e.object({
|
|
1615
|
+
...c,
|
|
1560
1616
|
trigger_id: G,
|
|
1561
|
-
|
|
1562
|
-
}),
|
|
1563
|
-
...
|
|
1617
|
+
form_id: e.string()
|
|
1618
|
+
}), zt = e.object({
|
|
1619
|
+
...c,
|
|
1620
|
+
trigger_id: W,
|
|
1621
|
+
template_id: K
|
|
1622
|
+
}), qt = e.object({
|
|
1623
|
+
...c,
|
|
1564
1624
|
trigger_id: B,
|
|
1565
1625
|
code_id: e.string()
|
|
1566
|
-
}),
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
]),
|
|
1572
|
-
...
|
|
1573
|
-
trigger_id:
|
|
1626
|
+
}), kn = e.union([
|
|
1627
|
+
Bt,
|
|
1628
|
+
Kt,
|
|
1629
|
+
zt,
|
|
1630
|
+
qt
|
|
1631
|
+
]), Xt = e.object({
|
|
1632
|
+
...c,
|
|
1633
|
+
trigger_id: H,
|
|
1574
1634
|
...a.shape,
|
|
1575
1635
|
hook_id: e.string(),
|
|
1576
1636
|
url: e.string()
|
|
1577
|
-
}),
|
|
1578
|
-
...
|
|
1579
|
-
trigger_id:
|
|
1637
|
+
}), Vt = e.object({
|
|
1638
|
+
...c,
|
|
1639
|
+
trigger_id: G,
|
|
1580
1640
|
...a.shape,
|
|
1581
1641
|
hook_id: e.string(),
|
|
1582
1642
|
form_id: e.string()
|
|
1583
|
-
}),
|
|
1584
|
-
...
|
|
1585
|
-
trigger_id:
|
|
1643
|
+
}), Yt = e.object({
|
|
1644
|
+
...c,
|
|
1645
|
+
trigger_id: W,
|
|
1586
1646
|
...a.shape,
|
|
1587
1647
|
hook_id: e.string(),
|
|
1588
|
-
template_id:
|
|
1589
|
-
}),
|
|
1590
|
-
...
|
|
1648
|
+
template_id: K
|
|
1649
|
+
}), Zt = e.object({
|
|
1650
|
+
...c,
|
|
1591
1651
|
trigger_id: B,
|
|
1592
1652
|
...a.shape,
|
|
1593
1653
|
hook_id: e.string(),
|
|
1594
1654
|
code_id: e.string()
|
|
1595
|
-
}),
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
]),
|
|
1655
|
+
}), Rn = e.union([
|
|
1656
|
+
Xt,
|
|
1657
|
+
Vt,
|
|
1658
|
+
Yt,
|
|
1659
|
+
Zt
|
|
1660
|
+
]), Qt = e.object({
|
|
1601
1661
|
code: e.string().max(1e5),
|
|
1602
1662
|
secrets: e.record(e.string()).optional()
|
|
1603
|
-
}),
|
|
1663
|
+
}), vn = Qt.extend({
|
|
1604
1664
|
id: e.string(),
|
|
1605
1665
|
tenant_id: e.string(),
|
|
1606
1666
|
...a.shape
|
|
1607
|
-
}),
|
|
1667
|
+
}), $t = e.object({
|
|
1608
1668
|
name: e.string().optional()
|
|
1609
|
-
}),
|
|
1669
|
+
}), Jt = e.object({
|
|
1610
1670
|
email: e.string().optional()
|
|
1611
|
-
}),
|
|
1671
|
+
}), eo = e.object({
|
|
1612
1672
|
organization_id: e.string().max(50),
|
|
1613
|
-
inviter:
|
|
1614
|
-
invitee:
|
|
1673
|
+
inviter: $t,
|
|
1674
|
+
invitee: Jt,
|
|
1615
1675
|
invitation_url: e.string().url(),
|
|
1616
1676
|
client_id: e.string(),
|
|
1617
1677
|
connection_id: e.string().optional(),
|
|
@@ -1620,13 +1680,13 @@ const M = e.enum([
|
|
|
1620
1680
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
1621
1681
|
roles: e.array(e.string()).default([]).optional(),
|
|
1622
1682
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
1623
|
-
}),
|
|
1683
|
+
}), Dn = e.object({
|
|
1624
1684
|
id: e.string(),
|
|
1625
1685
|
organization_id: e.string().max(50),
|
|
1626
1686
|
created_at: e.string().datetime(),
|
|
1627
1687
|
expires_at: e.string().datetime(),
|
|
1628
1688
|
ticket_id: e.string().optional()
|
|
1629
|
-
}).extend(
|
|
1689
|
+
}).extend(eo.shape), to = e.object({
|
|
1630
1690
|
alg: e.enum([
|
|
1631
1691
|
"RS256",
|
|
1632
1692
|
"RS384",
|
|
@@ -1665,9 +1725,9 @@ const M = e.enum([
|
|
|
1665
1725
|
path: [n],
|
|
1666
1726
|
message: `EC JWK is missing required member '${n}'`
|
|
1667
1727
|
});
|
|
1668
|
-
}),
|
|
1669
|
-
keys: e.array(
|
|
1670
|
-
}),
|
|
1728
|
+
}), Ln = e.object({
|
|
1729
|
+
keys: e.array(to)
|
|
1730
|
+
}), xn = e.object({
|
|
1671
1731
|
issuer: e.string(),
|
|
1672
1732
|
authorization_endpoint: e.string(),
|
|
1673
1733
|
token_endpoint: e.string(),
|
|
@@ -1687,24 +1747,25 @@ const M = e.enum([
|
|
|
1687
1747
|
claims_supported: e.array(e.string()),
|
|
1688
1748
|
request_uri_parameter_supported: e.boolean(),
|
|
1689
1749
|
request_parameter_supported: e.boolean(),
|
|
1750
|
+
claims_parameter_supported: e.boolean().optional(),
|
|
1690
1751
|
request_object_signing_alg_values_supported: e.array(e.string()).optional(),
|
|
1691
1752
|
token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
|
|
1692
1753
|
});
|
|
1693
|
-
var
|
|
1694
|
-
const
|
|
1754
|
+
var z = /* @__PURE__ */ ((t) => (t.PENDING = "pending", t.AUTHENTICATED = "authenticated", t.AWAITING_EMAIL_VERIFICATION = "awaiting_email_verification", t.AWAITING_MFA = "awaiting_mfa", t.AWAITING_HOOK = "awaiting_hook", t.AWAITING_CONTINUATION = "awaiting_continuation", t.COMPLETED = "completed", t.FAILED = "failed", t.EXPIRED = "expired", t))(z || {});
|
|
1755
|
+
const oo = e.nativeEnum(z), no = e.object({
|
|
1695
1756
|
strategy: e.string(),
|
|
1696
1757
|
strategy_type: e.string()
|
|
1697
|
-
}),
|
|
1758
|
+
}), io = e.object({
|
|
1698
1759
|
csrf_token: e.string(),
|
|
1699
1760
|
auth0Client: e.string().optional(),
|
|
1700
|
-
authParams:
|
|
1761
|
+
authParams: Qe,
|
|
1701
1762
|
expires_at: e.string(),
|
|
1702
1763
|
deleted_at: e.string().optional(),
|
|
1703
1764
|
ip: e.string().optional(),
|
|
1704
1765
|
useragent: e.string().optional(),
|
|
1705
1766
|
session_id: e.string().optional(),
|
|
1706
1767
|
authorization_url: e.string().optional(),
|
|
1707
|
-
state:
|
|
1768
|
+
state: oo.optional().default(
|
|
1708
1769
|
"pending"
|
|
1709
1770
|
/* PENDING */
|
|
1710
1771
|
),
|
|
@@ -1715,19 +1776,19 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1715
1776
|
// Set once user is authenticated
|
|
1716
1777
|
auth_connection: e.string().optional(),
|
|
1717
1778
|
// The connection used to authenticate (may differ from primary user's connection)
|
|
1718
|
-
auth_strategy:
|
|
1779
|
+
auth_strategy: no.optional(),
|
|
1719
1780
|
authenticated_at: e.string().optional()
|
|
1720
1781
|
// ISO timestamp persisted for audit/metadata; not used to reject resumed sessions
|
|
1721
1782
|
}).openapi({
|
|
1722
1783
|
description: "This represents a login sesion"
|
|
1723
|
-
}),
|
|
1724
|
-
...
|
|
1784
|
+
}), Un = e.object({
|
|
1785
|
+
...io.shape,
|
|
1725
1786
|
id: e.string().openapi({
|
|
1726
1787
|
description: "This is is used as the state in the universal login"
|
|
1727
1788
|
}),
|
|
1728
1789
|
created_at: e.string(),
|
|
1729
1790
|
updated_at: e.string()
|
|
1730
|
-
}),
|
|
1791
|
+
}), ao = {
|
|
1731
1792
|
// Network & System
|
|
1732
1793
|
ACLS_SUMMARY: "acls_summary",
|
|
1733
1794
|
ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
|
|
@@ -1901,24 +1962,24 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1901
1962
|
WARNING_DURING_LOGIN: "w",
|
|
1902
1963
|
WARNING_SENDING_NOTIFICATION: "wn",
|
|
1903
1964
|
WARNING_USER_MANAGEMENT: "wum"
|
|
1904
|
-
},
|
|
1905
|
-
(t) => Object.values(
|
|
1965
|
+
}, so = e.string().refine(
|
|
1966
|
+
(t) => Object.values(ao).includes(t),
|
|
1906
1967
|
{ message: "Invalid log type" }
|
|
1907
|
-
),
|
|
1968
|
+
), ro = e.object({
|
|
1908
1969
|
name: e.string(),
|
|
1909
1970
|
version: e.string(),
|
|
1910
1971
|
env: e.object({
|
|
1911
1972
|
node: e.string().optional()
|
|
1912
1973
|
}).optional()
|
|
1913
|
-
}),
|
|
1974
|
+
}), lo = e.object({
|
|
1914
1975
|
country_code: e.string().length(2),
|
|
1915
1976
|
city_name: e.string(),
|
|
1916
1977
|
latitude: e.string(),
|
|
1917
1978
|
longitude: e.string(),
|
|
1918
1979
|
time_zone: e.string(),
|
|
1919
1980
|
continent_code: e.string()
|
|
1920
|
-
}),
|
|
1921
|
-
type:
|
|
1981
|
+
}), co = e.object({
|
|
1982
|
+
type: so,
|
|
1922
1983
|
date: e.string(),
|
|
1923
1984
|
description: e.string().optional(),
|
|
1924
1985
|
ip: e.string().optional(),
|
|
@@ -1937,39 +1998,39 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1937
1998
|
strategy: e.string().optional(),
|
|
1938
1999
|
strategy_type: e.string().optional(),
|
|
1939
2000
|
hostname: e.string().optional(),
|
|
1940
|
-
auth0_client:
|
|
2001
|
+
auth0_client: ro.optional(),
|
|
1941
2002
|
log_id: e.string().optional(),
|
|
1942
|
-
location_info:
|
|
1943
|
-
}),
|
|
1944
|
-
...
|
|
2003
|
+
location_info: lo.optional()
|
|
2004
|
+
}), Fn = e.object({
|
|
2005
|
+
...co.shape,
|
|
1945
2006
|
log_id: e.string()
|
|
1946
|
-
}),
|
|
2007
|
+
}), po = e.enum([
|
|
1947
2008
|
"http",
|
|
1948
2009
|
"eventbridge",
|
|
1949
2010
|
"eventgrid",
|
|
1950
2011
|
"splunk",
|
|
1951
2012
|
"datadog",
|
|
1952
2013
|
"sumo"
|
|
1953
|
-
]),
|
|
2014
|
+
]), q = e.enum([
|
|
1954
2015
|
"active",
|
|
1955
2016
|
"paused",
|
|
1956
2017
|
"suspended"
|
|
1957
|
-
]),
|
|
2018
|
+
]), _o = e.object({
|
|
1958
2019
|
type: e.string(),
|
|
1959
2020
|
name: e.string()
|
|
1960
|
-
}),
|
|
2021
|
+
}), go = e.object({
|
|
1961
2022
|
name: e.string(),
|
|
1962
|
-
type:
|
|
1963
|
-
status:
|
|
2023
|
+
type: po,
|
|
2024
|
+
status: q.optional(),
|
|
1964
2025
|
sink: e.record(e.string(), e.unknown()),
|
|
1965
|
-
filters: e.array(
|
|
2026
|
+
filters: e.array(_o).optional(),
|
|
1966
2027
|
isPriority: e.boolean().optional()
|
|
1967
|
-
}),
|
|
2028
|
+
}), Pn = go.extend({
|
|
1968
2029
|
id: e.string(),
|
|
1969
|
-
status:
|
|
2030
|
+
status: q,
|
|
1970
2031
|
created_at: e.string().optional(),
|
|
1971
2032
|
updated_at: e.string().optional()
|
|
1972
|
-
}),
|
|
2033
|
+
}), uo = e.object({
|
|
1973
2034
|
enabled: e.boolean().optional(),
|
|
1974
2035
|
shields: e.array(e.string()).optional(),
|
|
1975
2036
|
admin_notification_frequency: e.array(e.string()).optional(),
|
|
@@ -1982,13 +2043,13 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1982
2043
|
shields: e.array(e.string()).optional()
|
|
1983
2044
|
}).optional()
|
|
1984
2045
|
}).optional()
|
|
1985
|
-
}),
|
|
2046
|
+
}), mo = e.object({
|
|
1986
2047
|
enabled: e.boolean().optional(),
|
|
1987
2048
|
shields: e.array(e.string()).optional(),
|
|
1988
2049
|
allowlist: e.array(e.string()).optional(),
|
|
1989
2050
|
mode: e.string().optional(),
|
|
1990
2051
|
max_attempts: e.number().optional()
|
|
1991
|
-
}),
|
|
2052
|
+
}), ho = e.object({
|
|
1992
2053
|
enabled: e.boolean().optional(),
|
|
1993
2054
|
shields: e.array(e.string()).optional(),
|
|
1994
2055
|
allowlist: e.array(e.string()).optional(),
|
|
@@ -2002,28 +2063,28 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2002
2063
|
rate: e.number().optional()
|
|
2003
2064
|
}).optional()
|
|
2004
2065
|
}).optional()
|
|
2005
|
-
}),
|
|
2006
|
-
breached_password_detection:
|
|
2007
|
-
brute_force_protection:
|
|
2008
|
-
suspicious_ip_throttling:
|
|
2009
|
-
}),
|
|
2066
|
+
}), bo = e.object({
|
|
2067
|
+
breached_password_detection: uo.optional(),
|
|
2068
|
+
brute_force_protection: mo.optional(),
|
|
2069
|
+
suspicious_ip_throttling: ho.optional()
|
|
2070
|
+
}), fo = e.object({
|
|
2010
2071
|
id: e.string().optional(),
|
|
2011
2072
|
user_id: e.string(),
|
|
2012
2073
|
password: e.string(),
|
|
2013
2074
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
|
|
2014
2075
|
is_current: e.boolean().default(!0)
|
|
2015
|
-
}),
|
|
2076
|
+
}), Mn = fo.extend({
|
|
2016
2077
|
id: e.string(),
|
|
2017
2078
|
created_at: e.string(),
|
|
2018
2079
|
updated_at: e.string()
|
|
2019
|
-
}),
|
|
2080
|
+
}), X = e.object({
|
|
2020
2081
|
initial_user_agent: e.string().describe("First user agent of the device from which this user logged in"),
|
|
2021
2082
|
initial_ip: e.string().describe("First IP address associated with this session"),
|
|
2022
2083
|
initial_asn: e.string().describe("First autonomous system number associated with this session"),
|
|
2023
2084
|
last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
|
|
2024
2085
|
last_ip: e.string().describe("Last IP address from which this user logged in"),
|
|
2025
2086
|
last_asn: e.string().describe("Last autonomous system number from which this user logged in")
|
|
2026
|
-
}),
|
|
2087
|
+
}), Eo = e.object({
|
|
2027
2088
|
id: e.string(),
|
|
2028
2089
|
revoked_at: e.string().optional(),
|
|
2029
2090
|
used_at: e.string().optional(),
|
|
@@ -2031,17 +2092,17 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2031
2092
|
expires_at: e.string().optional(),
|
|
2032
2093
|
login_session_id: e.string(),
|
|
2033
2094
|
idle_expires_at: e.string().optional(),
|
|
2034
|
-
device:
|
|
2095
|
+
device: X.describe(
|
|
2035
2096
|
"Metadata related to the device used in the session"
|
|
2036
2097
|
),
|
|
2037
2098
|
clients: e.array(e.string()).describe("List of client details for the session")
|
|
2038
|
-
}),
|
|
2099
|
+
}), Hn = e.object({
|
|
2039
2100
|
created_at: e.string(),
|
|
2040
2101
|
updated_at: e.string(),
|
|
2041
2102
|
authenticated_at: e.string(),
|
|
2042
2103
|
last_interaction_at: e.string(),
|
|
2043
|
-
...
|
|
2044
|
-
}),
|
|
2104
|
+
...Eo.shape
|
|
2105
|
+
}), Gn = e.object({
|
|
2045
2106
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
2046
2107
|
tenant_id: e.string().optional().openapi({
|
|
2047
2108
|
description: "The tenant the key belongs to. Omitted means the key is shared / control-plane scoped."
|
|
@@ -2069,7 +2130,7 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2069
2130
|
type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
|
|
2070
2131
|
description: "The type of the signing key"
|
|
2071
2132
|
})
|
|
2072
|
-
}),
|
|
2133
|
+
}), So = e.object({
|
|
2073
2134
|
id: e.string().optional(),
|
|
2074
2135
|
// Basic settings
|
|
2075
2136
|
audience: e.string(),
|
|
@@ -2222,7 +2283,7 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2222
2283
|
pushed_authorization_requests_supported: e.boolean().optional(),
|
|
2223
2284
|
authorization_response_iss_parameter_supported: e.boolean().optional(),
|
|
2224
2285
|
// Attack-protection config (singleton, exposed via /api/v2/attack-protection)
|
|
2225
|
-
attack_protection:
|
|
2286
|
+
attack_protection: bo.optional(),
|
|
2226
2287
|
// Guardian MFA Factors configuration (internal storage, exposed via /guardian API)
|
|
2227
2288
|
mfa: e.object({
|
|
2228
2289
|
// MFA policy: "never" = MFA disabled, "always" = MFA required for all logins
|
|
@@ -2254,14 +2315,14 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2254
2315
|
message: e.string().optional()
|
|
2255
2316
|
}).optional()
|
|
2256
2317
|
}).optional()
|
|
2257
|
-
}),
|
|
2318
|
+
}), Wn = e.object({
|
|
2258
2319
|
created_at: e.string().nullable().transform((t) => t ?? ""),
|
|
2259
2320
|
updated_at: e.string().nullable().transform((t) => t ?? ""),
|
|
2260
|
-
...
|
|
2321
|
+
...So.shape,
|
|
2261
2322
|
id: e.string()
|
|
2262
2323
|
});
|
|
2263
|
-
var
|
|
2264
|
-
const
|
|
2324
|
+
var yo = /* @__PURE__ */ ((t) => (t.RefreshToken = "refresh_token", t.AuthorizationCode = "authorization_code", t.ClientCredential = "client_credentials", t.Passwordless = "passwordless", t.Password = "password", t.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", t))(yo || {});
|
|
2325
|
+
const Bn = e.object({
|
|
2265
2326
|
access_token: e.string(),
|
|
2266
2327
|
id_token: e.string().optional(),
|
|
2267
2328
|
scope: e.string().optional(),
|
|
@@ -2274,7 +2335,7 @@ e.object({
|
|
|
2274
2335
|
code: e.string(),
|
|
2275
2336
|
state: e.string().optional()
|
|
2276
2337
|
});
|
|
2277
|
-
const
|
|
2338
|
+
const Ao = e.object({
|
|
2278
2339
|
button_border_radius: e.number(),
|
|
2279
2340
|
button_border_weight: e.number(),
|
|
2280
2341
|
buttons_style: e.enum(["pill", "rounded", "sharp"]),
|
|
@@ -2284,7 +2345,7 @@ const go = e.object({
|
|
|
2284
2345
|
show_widget_shadow: e.boolean(),
|
|
2285
2346
|
widget_border_weight: e.number(),
|
|
2286
2347
|
widget_corner_radius: e.number()
|
|
2287
|
-
}),
|
|
2348
|
+
}), Io = e.object({
|
|
2288
2349
|
base_focus_color: e.string(),
|
|
2289
2350
|
base_hover_color: e.string(),
|
|
2290
2351
|
body_text: e.string(),
|
|
@@ -2307,7 +2368,7 @@ const go = e.object({
|
|
|
2307
2368
|
}), u = e.object({
|
|
2308
2369
|
bold: e.boolean(),
|
|
2309
2370
|
size: e.number()
|
|
2310
|
-
}),
|
|
2371
|
+
}), Co = e.object({
|
|
2311
2372
|
body_text: u,
|
|
2312
2373
|
buttons_text: u,
|
|
2313
2374
|
font_url: e.string(),
|
|
@@ -2317,7 +2378,7 @@ const go = e.object({
|
|
|
2317
2378
|
reference_text_size: e.number(),
|
|
2318
2379
|
subtitle: u,
|
|
2319
2380
|
title: u
|
|
2320
|
-
}),
|
|
2381
|
+
}), To = e.object({
|
|
2321
2382
|
background_color: e.string(),
|
|
2322
2383
|
background_image_url: e.string(),
|
|
2323
2384
|
page_layout: e.enum(["center", "left", "right"]),
|
|
@@ -2330,33 +2391,33 @@ const go = e.object({
|
|
|
2330
2391
|
* Optional for backwards compatibility; absent values mean "widget".
|
|
2331
2392
|
*/
|
|
2332
2393
|
logo_placement: e.enum(["widget", "chip", "none"]).optional()
|
|
2333
|
-
}),
|
|
2394
|
+
}), Oo = e.object({
|
|
2334
2395
|
header_text_alignment: e.enum(["center", "left", "right"]),
|
|
2335
2396
|
logo_height: e.number(),
|
|
2336
2397
|
logo_position: e.enum(["center", "left", "none", "right"]),
|
|
2337
2398
|
logo_url: e.string(),
|
|
2338
2399
|
social_buttons_layout: e.enum(["bottom", "top"])
|
|
2339
|
-
}),
|
|
2340
|
-
borders:
|
|
2341
|
-
colors:
|
|
2400
|
+
}), No = e.object({
|
|
2401
|
+
borders: Ao,
|
|
2402
|
+
colors: Io,
|
|
2342
2403
|
displayName: e.string(),
|
|
2343
|
-
fonts:
|
|
2344
|
-
page_background:
|
|
2345
|
-
widget:
|
|
2346
|
-
}),
|
|
2404
|
+
fonts: Co,
|
|
2405
|
+
page_background: To,
|
|
2406
|
+
widget: Oo
|
|
2407
|
+
}), Kn = No.extend({
|
|
2347
2408
|
themeId: e.string()
|
|
2348
|
-
}),
|
|
2409
|
+
}), zn = e.object({
|
|
2349
2410
|
universal_login_experience: e.enum(["new", "classic"]).default("new"),
|
|
2350
2411
|
identifier_first: e.boolean().default(!0),
|
|
2351
2412
|
password_first: e.boolean().default(!1),
|
|
2352
2413
|
webauthn_platform_first_factor: e.boolean()
|
|
2353
|
-
}),
|
|
2414
|
+
}), qn = e.object({
|
|
2354
2415
|
name: e.string(),
|
|
2355
2416
|
enabled: e.boolean().optional().default(!0),
|
|
2356
2417
|
default_from_address: e.string().optional(),
|
|
2357
2418
|
credentials: e.record(e.string(), e.unknown()),
|
|
2358
2419
|
settings: e.object({}).optional()
|
|
2359
|
-
}),
|
|
2420
|
+
}), wo = e.enum([
|
|
2360
2421
|
"verify_email",
|
|
2361
2422
|
"verify_email_by_code",
|
|
2362
2423
|
"reset_email",
|
|
@@ -2369,8 +2430,8 @@ const go = e.object({
|
|
|
2369
2430
|
"change_password",
|
|
2370
2431
|
"password_reset",
|
|
2371
2432
|
"user_invitation"
|
|
2372
|
-
]),
|
|
2373
|
-
template:
|
|
2433
|
+
]), Xn = e.object({
|
|
2434
|
+
template: wo,
|
|
2374
2435
|
body: e.string(),
|
|
2375
2436
|
from: e.string(),
|
|
2376
2437
|
subject: e.string(),
|
|
@@ -2379,7 +2440,7 @@ const go = e.object({
|
|
|
2379
2440
|
urlLifetimeInSeconds: e.number().int().nonnegative().optional(),
|
|
2380
2441
|
includeEmailInRedirect: e.boolean().default(!1),
|
|
2381
2442
|
enabled: e.boolean().default(!0)
|
|
2382
|
-
}),
|
|
2443
|
+
}), jo = e.object({
|
|
2383
2444
|
// Internal primary key (ULID). Never sent to clients in the new wire format.
|
|
2384
2445
|
id: e.string(),
|
|
2385
2446
|
// Link to the login session
|
|
@@ -2392,7 +2453,7 @@ const go = e.object({
|
|
|
2392
2453
|
idle_expires_at: e.string().optional(),
|
|
2393
2454
|
// When the token was last used.
|
|
2394
2455
|
last_exchanged_at: e.string().optional(),
|
|
2395
|
-
device:
|
|
2456
|
+
device: X,
|
|
2396
2457
|
resource_servers: e.array(
|
|
2397
2458
|
e.object({
|
|
2398
2459
|
audience: e.string(),
|
|
@@ -2413,23 +2474,23 @@ const go = e.object({
|
|
|
2413
2474
|
// ISO of the *first* rotation. Anchors the leeway window so siblings minted
|
|
2414
2475
|
// within the window don't extend the parent's exposure.
|
|
2415
2476
|
rotated_at: e.string().optional()
|
|
2416
|
-
}),
|
|
2477
|
+
}), Vn = e.object({
|
|
2417
2478
|
// When the refresh token record was created.
|
|
2418
2479
|
created_at: e.string(),
|
|
2419
2480
|
// When the token was explicitly revoked (null = still active).
|
|
2420
2481
|
revoked_at: e.string().optional(),
|
|
2421
2482
|
// Spread in the rest of the refresh token properties.
|
|
2422
|
-
...
|
|
2423
|
-
}),
|
|
2483
|
+
...jo.shape
|
|
2484
|
+
}), Yn = e.object({
|
|
2424
2485
|
to: e.string(),
|
|
2425
2486
|
message: e.string()
|
|
2426
|
-
}),
|
|
2487
|
+
}), Zn = e.object({
|
|
2427
2488
|
name: e.string(),
|
|
2428
2489
|
options: e.object({})
|
|
2429
|
-
}),
|
|
2490
|
+
}), ko = e.object({
|
|
2430
2491
|
value: e.string(),
|
|
2431
2492
|
description: e.string().optional()
|
|
2432
|
-
}),
|
|
2493
|
+
}), Ro = e.object({
|
|
2433
2494
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
2434
2495
|
enforce_policies: e.boolean().optional(),
|
|
2435
2496
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -2439,11 +2500,11 @@ const go = e.object({
|
|
|
2439
2500
|
mtls: e.object({
|
|
2440
2501
|
bound_access_tokens: e.boolean().optional()
|
|
2441
2502
|
}).optional()
|
|
2442
|
-
}),
|
|
2503
|
+
}), vo = e.object({
|
|
2443
2504
|
id: e.string().optional(),
|
|
2444
2505
|
name: e.string(),
|
|
2445
2506
|
identifier: e.string(),
|
|
2446
|
-
scopes: e.array(
|
|
2507
|
+
scopes: e.array(ko).optional(),
|
|
2447
2508
|
signing_alg: e.string().optional(),
|
|
2448
2509
|
signing_secret: e.string().optional(),
|
|
2449
2510
|
token_lifetime: e.number().default(86400),
|
|
@@ -2451,30 +2512,30 @@ const go = e.object({
|
|
|
2451
2512
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
2452
2513
|
allow_offline_access: e.boolean().optional(),
|
|
2453
2514
|
verificationKey: e.string().optional(),
|
|
2454
|
-
options:
|
|
2515
|
+
options: Ro.optional(),
|
|
2455
2516
|
is_system: e.boolean().optional(),
|
|
2456
2517
|
metadata: e.record(e.any()).optional()
|
|
2457
|
-
}),
|
|
2458
|
-
...
|
|
2518
|
+
}), Do = e.object({
|
|
2519
|
+
...vo.shape,
|
|
2459
2520
|
created_at: e.string().optional(),
|
|
2460
2521
|
updated_at: e.string().optional()
|
|
2461
|
-
}),
|
|
2522
|
+
}), Qn = e.array(Do), Lo = e.object({
|
|
2462
2523
|
role_id: e.string(),
|
|
2463
2524
|
resource_server_identifier: e.string(),
|
|
2464
2525
|
permission_name: e.string()
|
|
2465
|
-
}),
|
|
2466
|
-
...
|
|
2526
|
+
}), xo = e.object({
|
|
2527
|
+
...Lo.shape,
|
|
2467
2528
|
created_at: e.string()
|
|
2468
|
-
}),
|
|
2529
|
+
}), $n = e.array(xo), Uo = e.object({
|
|
2469
2530
|
user_id: e.string(),
|
|
2470
2531
|
resource_server_identifier: e.string(),
|
|
2471
2532
|
permission_name: e.string(),
|
|
2472
2533
|
organization_id: e.string().optional()
|
|
2473
|
-
}),
|
|
2474
|
-
...
|
|
2534
|
+
}), Fo = e.object({
|
|
2535
|
+
...Uo.shape,
|
|
2475
2536
|
tenant_id: e.string(),
|
|
2476
2537
|
created_at: e.string().optional()
|
|
2477
|
-
}),
|
|
2538
|
+
}), Jn = e.array(Fo), Po = e.object({
|
|
2478
2539
|
user_id: e.string(),
|
|
2479
2540
|
resource_server_identifier: e.string(),
|
|
2480
2541
|
resource_server_name: e.string(),
|
|
@@ -2482,17 +2543,17 @@ const go = e.object({
|
|
|
2482
2543
|
description: e.string().nullable().optional(),
|
|
2483
2544
|
created_at: e.string().optional(),
|
|
2484
2545
|
organization_id: e.string().optional()
|
|
2485
|
-
}),
|
|
2486
|
-
|
|
2487
|
-
),
|
|
2546
|
+
}), ei = e.array(
|
|
2547
|
+
Po
|
|
2548
|
+
), Mo = e.object({
|
|
2488
2549
|
user_id: e.string(),
|
|
2489
2550
|
role_id: e.string(),
|
|
2490
2551
|
organization_id: e.string().optional()
|
|
2491
|
-
}),
|
|
2492
|
-
...
|
|
2552
|
+
}), Ho = e.object({
|
|
2553
|
+
...Mo.shape,
|
|
2493
2554
|
tenant_id: e.string(),
|
|
2494
2555
|
created_at: e.string().optional()
|
|
2495
|
-
}),
|
|
2556
|
+
}), ti = e.array(Ho), Go = e.object({
|
|
2496
2557
|
id: e.string().optional().openapi({
|
|
2497
2558
|
description: "The unique identifier of the role. If not provided, one will be generated."
|
|
2498
2559
|
}),
|
|
@@ -2506,13 +2567,13 @@ const go = e.object({
|
|
|
2506
2567
|
metadata: e.record(e.any()).optional().openapi({
|
|
2507
2568
|
description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
|
|
2508
2569
|
})
|
|
2509
|
-
}),
|
|
2570
|
+
}), Wo = Go.extend({
|
|
2510
2571
|
id: e.string().openapi({
|
|
2511
2572
|
description: "The unique identifier of the role"
|
|
2512
2573
|
}),
|
|
2513
2574
|
created_at: e.string().optional(),
|
|
2514
2575
|
updated_at: e.string().optional()
|
|
2515
|
-
}),
|
|
2576
|
+
}), oi = e.array(Wo), Bo = e.object({
|
|
2516
2577
|
logo_url: e.string().optional().openapi({
|
|
2517
2578
|
description: "URL of the organization's logo"
|
|
2518
2579
|
}),
|
|
@@ -2524,7 +2585,7 @@ const go = e.object({
|
|
|
2524
2585
|
description: "Page background color in hex format (e.g., #FFFFFF)"
|
|
2525
2586
|
})
|
|
2526
2587
|
}).optional()
|
|
2527
|
-
}).optional(),
|
|
2588
|
+
}).optional(), Ko = e.object({
|
|
2528
2589
|
connection_id: e.string().openapi({
|
|
2529
2590
|
description: "ID of the connection"
|
|
2530
2591
|
}),
|
|
@@ -2537,7 +2598,7 @@ const go = e.object({
|
|
|
2537
2598
|
is_signup_enabled: e.boolean().default(!0).openapi({
|
|
2538
2599
|
description: "Whether signup is enabled for this connection"
|
|
2539
2600
|
})
|
|
2540
|
-
}),
|
|
2601
|
+
}), zo = e.object({
|
|
2541
2602
|
client_credentials: e.object({
|
|
2542
2603
|
enforce: e.boolean().default(!1).openapi({
|
|
2543
2604
|
description: "Whether to enforce token quota limits"
|
|
@@ -2549,7 +2610,7 @@ const go = e.object({
|
|
|
2549
2610
|
description: "Maximum tokens per hour (0 = unlimited)"
|
|
2550
2611
|
})
|
|
2551
2612
|
}).optional()
|
|
2552
|
-
}).optional(),
|
|
2613
|
+
}).optional(), qo = e.object({
|
|
2553
2614
|
id: e.string().optional(),
|
|
2554
2615
|
name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
|
|
2555
2616
|
message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
|
|
@@ -2559,31 +2620,31 @@ const go = e.object({
|
|
|
2559
2620
|
display_name: e.string().optional().openapi({
|
|
2560
2621
|
description: "The display name of the organization"
|
|
2561
2622
|
}),
|
|
2562
|
-
branding:
|
|
2623
|
+
branding: Bo,
|
|
2563
2624
|
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
2564
2625
|
description: "Custom metadata for the organization"
|
|
2565
2626
|
}),
|
|
2566
|
-
enabled_connections: e.array(
|
|
2627
|
+
enabled_connections: e.array(Ko).default([]).optional().openapi({
|
|
2567
2628
|
description: "List of enabled connections for the organization"
|
|
2568
2629
|
}),
|
|
2569
|
-
token_quota:
|
|
2570
|
-
}),
|
|
2571
|
-
...
|
|
2630
|
+
token_quota: zo
|
|
2631
|
+
}), ni = e.object({
|
|
2632
|
+
...qo.shape,
|
|
2572
2633
|
...a.shape,
|
|
2573
2634
|
id: e.string(),
|
|
2574
2635
|
// Override name to be lenient when reading from database (to support existing uppercase names)
|
|
2575
2636
|
name: e.string().min(1).openapi({
|
|
2576
2637
|
description: "The name of the organization"
|
|
2577
2638
|
})
|
|
2578
|
-
}),
|
|
2639
|
+
}), Xo = e.object({
|
|
2579
2640
|
connection_id: e.string().openapi({
|
|
2580
2641
|
description: "ID of the tenant-level connection to enable for the org."
|
|
2581
2642
|
}),
|
|
2582
2643
|
assign_membership_on_login: e.boolean().optional().default(!1),
|
|
2583
2644
|
show_as_button: e.boolean().optional().default(!0),
|
|
2584
2645
|
is_signup_enabled: e.boolean().optional().default(!0)
|
|
2585
|
-
}),
|
|
2586
|
-
...
|
|
2646
|
+
}), Vo = e.object({
|
|
2647
|
+
...Xo.shape,
|
|
2587
2648
|
// Auth0 includes the embedded connection in GET responses.
|
|
2588
2649
|
connection: e.object({
|
|
2589
2650
|
name: e.string().optional(),
|
|
@@ -2591,20 +2652,20 @@ const go = e.object({
|
|
|
2591
2652
|
}).optional(),
|
|
2592
2653
|
created_at: e.string().optional(),
|
|
2593
2654
|
updated_at: e.string().optional()
|
|
2594
|
-
}),
|
|
2595
|
-
|
|
2596
|
-
),
|
|
2655
|
+
}), ii = e.array(
|
|
2656
|
+
Vo
|
|
2657
|
+
), Yo = e.object({
|
|
2597
2658
|
user_id: e.string().openapi({
|
|
2598
2659
|
description: "ID of the user"
|
|
2599
2660
|
}),
|
|
2600
2661
|
organization_id: e.string().openapi({
|
|
2601
2662
|
description: "ID of the organization"
|
|
2602
2663
|
})
|
|
2603
|
-
}),
|
|
2604
|
-
...
|
|
2664
|
+
}), ai = e.object({
|
|
2665
|
+
...Yo.shape,
|
|
2605
2666
|
...a.shape,
|
|
2606
2667
|
id: e.string()
|
|
2607
|
-
}),
|
|
2668
|
+
}), si = e.object({
|
|
2608
2669
|
// Session settings
|
|
2609
2670
|
idle_session_lifetime: e.number().default(72),
|
|
2610
2671
|
session_lifetime: e.number().default(168),
|
|
@@ -2704,7 +2765,7 @@ const go = e.object({
|
|
|
2704
2765
|
message: e.string().optional()
|
|
2705
2766
|
}).optional()
|
|
2706
2767
|
}).optional()
|
|
2707
|
-
}),
|
|
2768
|
+
}), ri = e.object({
|
|
2708
2769
|
date: e.string().openapi({
|
|
2709
2770
|
description: "Date these events occurred in ISO 8601 format",
|
|
2710
2771
|
example: "2025-12-19"
|
|
@@ -2729,10 +2790,10 @@ const go = e.object({
|
|
|
2729
2790
|
description: "Approximate date and time the first event occurred in ISO 8601 format",
|
|
2730
2791
|
example: "2025-12-19T00:00:00.000Z"
|
|
2731
2792
|
})
|
|
2732
|
-
}),
|
|
2793
|
+
}), li = e.number().openapi({
|
|
2733
2794
|
description: "Number of active users in the last 30 days",
|
|
2734
2795
|
example: 1234
|
|
2735
|
-
}),
|
|
2796
|
+
}), Zo = e.enum([
|
|
2736
2797
|
"login",
|
|
2737
2798
|
"login-id",
|
|
2738
2799
|
"login-password",
|
|
@@ -2761,17 +2822,17 @@ const go = e.object({
|
|
|
2761
2822
|
"custom-form",
|
|
2762
2823
|
"login-passwordless",
|
|
2763
2824
|
"mfa-login-options"
|
|
2764
|
-
]),
|
|
2825
|
+
]), Qo = e.record(e.string(), e.record(e.string(), e.string())).openapi({
|
|
2765
2826
|
type: "object",
|
|
2766
2827
|
additionalProperties: {
|
|
2767
2828
|
type: "object",
|
|
2768
2829
|
additionalProperties: { type: "string" }
|
|
2769
2830
|
}
|
|
2770
|
-
}),
|
|
2771
|
-
prompt:
|
|
2831
|
+
}), ci = e.object({
|
|
2832
|
+
prompt: Zo,
|
|
2772
2833
|
language: e.string(),
|
|
2773
|
-
custom_text:
|
|
2774
|
-
}),
|
|
2834
|
+
custom_text: Qo
|
|
2835
|
+
}), pi = {
|
|
2775
2836
|
EMAIL: "email",
|
|
2776
2837
|
SMS: "sms",
|
|
2777
2838
|
USERNAME_PASSWORD: "Username-Password-Authentication",
|
|
@@ -2787,11 +2848,11 @@ const go = e.object({
|
|
|
2787
2848
|
WAAD: "waad",
|
|
2788
2849
|
ADFS: "adfs",
|
|
2789
2850
|
AUTH0: "auth0"
|
|
2790
|
-
},
|
|
2851
|
+
}, di = {
|
|
2791
2852
|
DATABASE: "database",
|
|
2792
2853
|
SOCIAL: "social",
|
|
2793
2854
|
PASSWORDLESS: "passwordless"
|
|
2794
|
-
},
|
|
2855
|
+
}, $o = e.enum([
|
|
2795
2856
|
"phone",
|
|
2796
2857
|
"totp",
|
|
2797
2858
|
"email",
|
|
@@ -2801,7 +2862,7 @@ const go = e.object({
|
|
|
2801
2862
|
"passkey"
|
|
2802
2863
|
]), V = e.object({
|
|
2803
2864
|
user_id: e.string(),
|
|
2804
|
-
type:
|
|
2865
|
+
type: $o,
|
|
2805
2866
|
// Phone-specific
|
|
2806
2867
|
phone_number: e.string().optional(),
|
|
2807
2868
|
// TOTP-specific
|
|
@@ -2816,7 +2877,7 @@ const go = e.object({
|
|
|
2816
2877
|
// Common
|
|
2817
2878
|
confirmed: e.boolean().default(!1)
|
|
2818
2879
|
});
|
|
2819
|
-
function
|
|
2880
|
+
function Y(t, o) {
|
|
2820
2881
|
t.type === "phone" && !t.phone_number && o.addIssue({
|
|
2821
2882
|
code: e.ZodIssueCode.custom,
|
|
2822
2883
|
message: "phone_number is required when type is 'phone'",
|
|
@@ -2835,64 +2896,64 @@ function X(t, o) {
|
|
|
2835
2896
|
path: ["public_key"]
|
|
2836
2897
|
}));
|
|
2837
2898
|
}
|
|
2838
|
-
const
|
|
2899
|
+
const _i = V.superRefine(Y), gi = e.object({
|
|
2839
2900
|
...V.shape,
|
|
2840
2901
|
id: e.string(),
|
|
2841
2902
|
created_at: e.string(),
|
|
2842
2903
|
updated_at: e.string()
|
|
2843
|
-
}).superRefine(
|
|
2844
|
-
function
|
|
2904
|
+
}).superRefine(Y);
|
|
2905
|
+
function ui(t) {
|
|
2845
2906
|
const [o, n] = t.split("|");
|
|
2846
2907
|
if (!o || !n)
|
|
2847
2908
|
throw new Error(`Invalid user_id: ${t}`);
|
|
2848
2909
|
return { connection: o, id: n };
|
|
2849
2910
|
}
|
|
2850
|
-
function
|
|
2911
|
+
function mi(t) {
|
|
2851
2912
|
const {
|
|
2852
2913
|
primary: o,
|
|
2853
2914
|
secondaries: n,
|
|
2854
2915
|
syncMethods: h = ["create", "rawCreate", "update", "remove", "delete", "set"]
|
|
2855
2916
|
} = t, S = {
|
|
2856
|
-
get(
|
|
2857
|
-
if (typeof
|
|
2858
|
-
return
|
|
2859
|
-
const d =
|
|
2860
|
-
return typeof d != "function" ? d : h.includes(
|
|
2861
|
-
const y = await d.apply(
|
|
2862
|
-
for (const
|
|
2863
|
-
const b =
|
|
2917
|
+
get(p, s) {
|
|
2918
|
+
if (typeof s == "symbol")
|
|
2919
|
+
return p[s];
|
|
2920
|
+
const d = p[s];
|
|
2921
|
+
return typeof d != "function" ? d : h.includes(s) ? async (..._) => {
|
|
2922
|
+
const y = await d.apply(p, _), g = [];
|
|
2923
|
+
for (const r of n) {
|
|
2924
|
+
const b = r.adapter[s];
|
|
2864
2925
|
if (typeof b != "function")
|
|
2865
2926
|
continue;
|
|
2866
2927
|
const A = (async () => {
|
|
2867
2928
|
try {
|
|
2868
|
-
await b.apply(
|
|
2929
|
+
await b.apply(r.adapter, _);
|
|
2869
2930
|
} catch (f) {
|
|
2870
2931
|
try {
|
|
2871
|
-
|
|
2872
|
-
`Passthrough adapter: secondary write failed for ${
|
|
2932
|
+
r.onError ? r.onError(f, s, _) : console.error(
|
|
2933
|
+
`Passthrough adapter: secondary write failed for ${s}:`,
|
|
2873
2934
|
f
|
|
2874
2935
|
);
|
|
2875
2936
|
} catch (I) {
|
|
2876
2937
|
console.error(
|
|
2877
|
-
`Passthrough adapter: onError handler threw for ${
|
|
2938
|
+
`Passthrough adapter: onError handler threw for ${s}:`,
|
|
2878
2939
|
I
|
|
2879
2940
|
);
|
|
2880
2941
|
}
|
|
2881
2942
|
}
|
|
2882
2943
|
})();
|
|
2883
|
-
|
|
2944
|
+
r.blocking && g.push(A);
|
|
2884
2945
|
}
|
|
2885
2946
|
return g.length > 0 && await Promise.all(g), y;
|
|
2886
|
-
} : d.bind(
|
|
2947
|
+
} : d.bind(p);
|
|
2887
2948
|
}
|
|
2888
2949
|
};
|
|
2889
2950
|
return new Proxy(o, S);
|
|
2890
2951
|
}
|
|
2891
|
-
function
|
|
2952
|
+
function hi(t) {
|
|
2892
2953
|
return t;
|
|
2893
2954
|
}
|
|
2894
|
-
function
|
|
2895
|
-
var S,
|
|
2955
|
+
function bi(t) {
|
|
2956
|
+
var S, p, s, d, _, y, g, r, b, A, f, I;
|
|
2896
2957
|
const o = t == null ? void 0 : t.options;
|
|
2897
2958
|
if (!o)
|
|
2898
2959
|
return {
|
|
@@ -2903,12 +2964,12 @@ function si(t) {
|
|
|
2903
2964
|
};
|
|
2904
2965
|
const n = o.attributes;
|
|
2905
2966
|
if (n) {
|
|
2906
|
-
const
|
|
2967
|
+
const Z = ((p = (S = n.username) == null ? void 0 : S.identifier) == null ? void 0 : p.active) === !0, Q = ((d = (s = n.email) == null ? void 0 : s.identifier) == null ? void 0 : d.active) !== !1, $ = ((y = (_ = n.username) == null ? void 0 : _.validation) == null ? void 0 : y.min_length) ?? 1, J = ((r = (g = n.username) == null ? void 0 : g.validation) == null ? void 0 : r.max_length) ?? 15;
|
|
2907
2968
|
return {
|
|
2908
|
-
usernameIdentifierActive:
|
|
2909
|
-
emailIdentifierActive:
|
|
2910
|
-
usernameMinLength:
|
|
2911
|
-
usernameMaxLength:
|
|
2969
|
+
usernameIdentifierActive: Z,
|
|
2970
|
+
emailIdentifierActive: Q,
|
|
2971
|
+
usernameMinLength: $,
|
|
2972
|
+
usernameMaxLength: J
|
|
2912
2973
|
};
|
|
2913
2974
|
}
|
|
2914
2975
|
return {
|
|
@@ -2918,205 +2979,214 @@ function si(t) {
|
|
|
2918
2979
|
usernameMaxLength: ((I = (f = o.validation) == null ? void 0 : f.username) == null ? void 0 : I.max) ?? 15
|
|
2919
2980
|
};
|
|
2920
2981
|
}
|
|
2921
|
-
function
|
|
2982
|
+
function fi(t) {
|
|
2922
2983
|
return typeof t == "object" && t !== null && !Array.isArray(t);
|
|
2923
2984
|
}
|
|
2924
2985
|
export {
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2986
|
+
rn as Auth0ActionEnum,
|
|
2987
|
+
ro as Auth0Client,
|
|
2988
|
+
F as AuthorizationResponseMode,
|
|
2928
2989
|
U as AuthorizationResponseType,
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2990
|
+
P as CodeChallengeMethod,
|
|
2991
|
+
x as ComponentCategory,
|
|
2992
|
+
L as ComponentType,
|
|
2993
|
+
ln as EmailActionEnum,
|
|
2994
|
+
An as FORM_FIELD_TYPES,
|
|
2995
|
+
sn as FlowActionTypeEnum,
|
|
2996
|
+
yo as GrantType,
|
|
2997
|
+
lo as LocationInfo,
|
|
2998
|
+
ao as LogTypes,
|
|
2999
|
+
z as LoginSessionState,
|
|
3000
|
+
Ge as NodeType,
|
|
3001
|
+
Ee as RedirectTargetEnum,
|
|
3002
|
+
pi as Strategy,
|
|
3003
|
+
di as StrategyType,
|
|
3004
|
+
k as actionDependencySchema,
|
|
3005
|
+
oe as actionExecutionErrorSchema,
|
|
3006
|
+
on as actionExecutionInsertSchema,
|
|
3007
|
+
ie as actionExecutionLogEntrySchema,
|
|
3008
|
+
ae as actionExecutionLogsSchema,
|
|
3009
|
+
ne as actionExecutionResultSchema,
|
|
3010
|
+
se as actionExecutionSchema,
|
|
3011
|
+
te as actionExecutionStatusSchema,
|
|
3012
|
+
ee as actionExecutionTriggerIdSchema,
|
|
3013
|
+
v as actionInsertSchema,
|
|
3014
|
+
Ke as actionNodeSchema,
|
|
3015
|
+
tn as actionSchema,
|
|
3016
|
+
R as actionSecretSchema,
|
|
3017
|
+
j as actionTriggerSchema,
|
|
3018
|
+
en as actionUpdateSchema,
|
|
3019
|
+
re as actionVersionInsertSchema,
|
|
3020
|
+
nn as actionVersionSchema,
|
|
3021
|
+
li as activeUsersResponseSchema,
|
|
3022
|
+
ce as actorSchema,
|
|
3023
|
+
Te as addressSchema,
|
|
3024
|
+
bo as attackProtectionSchema,
|
|
3025
|
+
le as auditCategorySchema,
|
|
3026
|
+
me as auditEventInsertSchema,
|
|
3027
|
+
an as auditEventSchema,
|
|
3028
|
+
ue as auth0ClientSchema,
|
|
3029
|
+
bn as auth0FlowInsertSchema,
|
|
3030
|
+
Ye as auth0FlowSchema,
|
|
3031
|
+
pn as auth0QuerySchema,
|
|
3032
|
+
be as auth0UpdateUserActionSchema,
|
|
3033
|
+
_n as auth0UserResponseSchema,
|
|
3034
|
+
Qe as authParamsSchema,
|
|
3035
|
+
_i as authenticationMethodInsertSchema,
|
|
3036
|
+
gi as authenticationMethodSchema,
|
|
3037
|
+
$o as authenticationMethodTypeSchema,
|
|
3038
|
+
D as baseUserSchema,
|
|
3039
|
+
Dt as blockComponentSchema,
|
|
3040
|
+
Ao as bordersSchema,
|
|
3041
|
+
fn as brandingSchema,
|
|
3042
|
+
uo as breachedPasswordDetectionSchema,
|
|
3043
|
+
mo as bruteForceProtectionSchema,
|
|
3044
|
+
Ue as buttonComponentSchema,
|
|
3045
|
+
Ze as claimsRequestSchema,
|
|
3046
|
+
Re as clientGrantInsertSchema,
|
|
3047
|
+
mn as clientGrantListSchema,
|
|
3048
|
+
ve as clientGrantSchema,
|
|
3049
|
+
ke as clientInsertSchema,
|
|
3050
|
+
Le as clientRegistrationTokenInsertSchema,
|
|
3051
|
+
hn as clientRegistrationTokenSchema,
|
|
3052
|
+
De as clientRegistrationTokenTypeSchema,
|
|
3053
|
+
un as clientSchema,
|
|
3054
|
+
Je as codeInsertSchema,
|
|
3055
|
+
En as codeSchema,
|
|
3056
|
+
$e as codeTypeSchema,
|
|
3057
|
+
Io as colorsSchema,
|
|
3058
|
+
Gt as componentMessageSchema,
|
|
3059
|
+
He as componentSchema,
|
|
3060
|
+
tt as connectionInsertSchema,
|
|
3061
|
+
et as connectionOptionsSchema,
|
|
3062
|
+
Sn as connectionSchema,
|
|
2993
3063
|
m as coordinatesSchema,
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3064
|
+
mi as createPassthroughAdapter,
|
|
3065
|
+
hi as createWriteOnlyAdapter,
|
|
3066
|
+
ot as customDomainInsertSchema,
|
|
3067
|
+
it as customDomainSchema,
|
|
3068
|
+
yn as customDomainWithTenantIdSchema,
|
|
3069
|
+
ci as customTextEntrySchema,
|
|
3070
|
+
Qo as customTextSchema,
|
|
3071
|
+
ri as dailyStatsSchema,
|
|
3072
|
+
qn as emailProviderSchema,
|
|
3073
|
+
wo as emailTemplateNameSchema,
|
|
3074
|
+
Xn as emailTemplateSchema,
|
|
3075
|
+
he as emailVerificationRulesSchema,
|
|
3076
|
+
fe as emailVerifyActionSchema,
|
|
3077
|
+
Ve as endingSchema,
|
|
3078
|
+
xt as fieldComponentSchema,
|
|
3079
|
+
ye as flowActionStepSchema,
|
|
3080
|
+
Ae as flowInsertSchema,
|
|
3081
|
+
cn as flowSchema,
|
|
3082
|
+
Pe as flowsFieldComponentSchema,
|
|
3083
|
+
Be as flowsFlowNodeSchema,
|
|
3084
|
+
We as flowsStepNodeSchema,
|
|
3015
3085
|
u as fontDetailsSchema,
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3086
|
+
Co as fontsSchema,
|
|
3087
|
+
In as formControlSchema,
|
|
3088
|
+
Ht as formInsertSchema,
|
|
3089
|
+
M as formNodeComponentDefinition,
|
|
3090
|
+
Mt as formNodeSchema,
|
|
3091
|
+
Cn as formSchema,
|
|
3092
|
+
Me as genericComponentSchema,
|
|
3093
|
+
ze as genericNodeSchema,
|
|
3094
|
+
bi as getConnectionIdentifierConfig,
|
|
3095
|
+
Qt as hookCodeInsertSchema,
|
|
3096
|
+
vn as hookCodeSchema,
|
|
3097
|
+
kn as hookInsertSchema,
|
|
3098
|
+
Rn as hookSchema,
|
|
3099
|
+
K as hookTemplateId,
|
|
3100
|
+
jn as hookTemplates,
|
|
3101
|
+
Ce as identitySchema,
|
|
3102
|
+
eo as inviteInsertSchema,
|
|
3103
|
+
Dn as inviteSchema,
|
|
3104
|
+
Jt as inviteeSchema,
|
|
3105
|
+
$t as inviterSchema,
|
|
3106
|
+
On as isBlockComponent,
|
|
3107
|
+
wn as isFieldComponent,
|
|
3108
|
+
fi as isPlainObject,
|
|
3109
|
+
Nn as isWidgetComponent,
|
|
3110
|
+
Ln as jwksKeySchema,
|
|
3111
|
+
to as jwksSchema,
|
|
3112
|
+
Fe as legalComponentSchema,
|
|
3113
|
+
ge as locationInfoSchema,
|
|
3114
|
+
co as logInsertSchema,
|
|
3115
|
+
Fn as logSchema,
|
|
3116
|
+
_o as logStreamFilterSchema,
|
|
3117
|
+
go as logStreamInsertSchema,
|
|
3118
|
+
Pn as logStreamSchema,
|
|
3119
|
+
q as logStreamStatusSchema,
|
|
3120
|
+
po as logStreamTypeSchema,
|
|
3121
|
+
no as loginSessionAuthStrategySchema,
|
|
3122
|
+
io as loginSessionInsertSchema,
|
|
3123
|
+
Un as loginSessionSchema,
|
|
3124
|
+
oo as loginSessionStateSchema,
|
|
3125
|
+
qe as nodeSchema,
|
|
3126
|
+
xn as openIDConfigurationSchema,
|
|
3127
|
+
Bo as organizationBrandingSchema,
|
|
3128
|
+
Xo as organizationConnectionInsertSchema,
|
|
3129
|
+
ii as organizationConnectionListSchema,
|
|
3130
|
+
Vo as organizationConnectionSchema,
|
|
3131
|
+
Ko as organizationEnabledConnectionSchema,
|
|
3132
|
+
qo as organizationInsertSchema,
|
|
3133
|
+
ni as organizationSchema,
|
|
3134
|
+
zo as organizationTokenQuotaSchema,
|
|
3135
|
+
To as pageBackgroundSchema,
|
|
3136
|
+
ui as parseUserId,
|
|
3137
|
+
fo as passwordInsertSchema,
|
|
3138
|
+
Mn as passwordSchema,
|
|
3139
|
+
Ie as profileDataSchema,
|
|
3140
|
+
Zo as promptScreenSchema,
|
|
3141
|
+
zn as promptSettingSchema,
|
|
3142
|
+
Se as redirectActionSchema,
|
|
3143
|
+
jo as refreshTokenInsertSchema,
|
|
3144
|
+
Vn as refreshTokenSchema,
|
|
3145
|
+
de as requestContextSchema,
|
|
3146
|
+
vo as resourceServerInsertSchema,
|
|
3147
|
+
Qn as resourceServerListSchema,
|
|
3148
|
+
Ro as resourceServerOptionsSchema,
|
|
3149
|
+
Do as resourceServerSchema,
|
|
3150
|
+
ko as resourceServerScopeSchema,
|
|
3151
|
+
_e as responseContextSchema,
|
|
3152
|
+
xe as richTextComponentSchema,
|
|
3153
|
+
Go as roleInsertSchema,
|
|
3154
|
+
oi as roleListSchema,
|
|
3155
|
+
Lo as rolePermissionInsertSchema,
|
|
3156
|
+
$n as rolePermissionListSchema,
|
|
3157
|
+
xo as rolePermissionSchema,
|
|
3158
|
+
Wo as roleSchema,
|
|
3159
|
+
Wt as screenLinkSchema,
|
|
3160
|
+
Eo as sessionInsertSchema,
|
|
3161
|
+
Hn as sessionSchema,
|
|
3162
|
+
Gn as signingKeySchema,
|
|
3163
|
+
Zn as smsProviderSchema,
|
|
3164
|
+
Yn as smsSendParamsSchema,
|
|
3165
|
+
Xe as startSchema,
|
|
3166
|
+
ho as suspiciousIpThrottlingSchema,
|
|
3167
|
+
pe as targetSchema,
|
|
3168
|
+
So as tenantInsertSchema,
|
|
3169
|
+
Wn as tenantSchema,
|
|
3170
|
+
si as tenantSettingsSchema,
|
|
3171
|
+
No as themeInsertSchema,
|
|
3172
|
+
Kn as themeSchema,
|
|
3173
|
+
Bn as tokenResponseSchema,
|
|
3174
|
+
dn as totalsSchema,
|
|
3175
|
+
Tn as uiScreenSchema,
|
|
3176
|
+
Oe as userInsertSchema,
|
|
3177
|
+
Yo as userOrganizationInsertSchema,
|
|
3178
|
+
ai as userOrganizationSchema,
|
|
3179
|
+
Uo as userPermissionInsertSchema,
|
|
3180
|
+
Jn as userPermissionListSchema,
|
|
3181
|
+
Fo as userPermissionSchema,
|
|
3182
|
+
ei as userPermissionWithDetailsListSchema,
|
|
3183
|
+
Po as userPermissionWithDetailsSchema,
|
|
3184
|
+
gn as userResponseSchema,
|
|
3185
|
+
Mo as userRoleInsertSchema,
|
|
3186
|
+
ti as userRoleListSchema,
|
|
3187
|
+
Ho as userRoleSchema,
|
|
3188
|
+
Ne as userSchema,
|
|
3189
|
+
nt as verificationMethodsSchema,
|
|
3190
|
+
Lt as widgetComponentSchema,
|
|
3191
|
+
Oo as widgetSchema
|
|
3122
3192
|
};
|