@authhero/adapter-interfaces 1.17.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 +1716 -953
- package/dist/adapter-interfaces.mjs +661 -587
- package/package.json +1 -1
|
@@ -2,10 +2,10 @@ 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({
|
|
@@ -13,17 +13,17 @@ const a = e.object({
|
|
|
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(
|
|
21
|
+
dependencies: e.array(k).optional(),
|
|
22
22
|
secrets: e.array(R).optional()
|
|
23
|
-
}),
|
|
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(
|
|
80
|
+
dependencies: e.array(k).optional(),
|
|
44
81
|
secrets: e.array(R).optional(),
|
|
45
|
-
supported_triggers: e.array(
|
|
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))(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
|
|
@@ -837,8 +893,12 @@ const Be = e.object({
|
|
|
837
893
|
powered_by_logo_url: e.string().optional(),
|
|
838
894
|
font: e.object({
|
|
839
895
|
url: e.string()
|
|
840
|
-
}).optional()
|
|
841
|
-
|
|
896
|
+
}).optional(),
|
|
897
|
+
// AuthHero-specific: default color scheme for the universal login page.
|
|
898
|
+
// Auth0 has no equivalent. Per-user toggle (ah-dark-mode cookie) still
|
|
899
|
+
// overrides this at runtime.
|
|
900
|
+
dark_mode: e.enum(["dark", "light", "auto"]).optional()
|
|
901
|
+
}), $e = e.enum([
|
|
842
902
|
"password_reset",
|
|
843
903
|
"email_verification",
|
|
844
904
|
"otp",
|
|
@@ -846,7 +906,7 @@ const Be = e.object({
|
|
|
846
906
|
"authorization_code",
|
|
847
907
|
"oauth2_state",
|
|
848
908
|
"ticket"
|
|
849
|
-
]),
|
|
909
|
+
]), Je = e.object({
|
|
850
910
|
code_id: e.string().openapi({
|
|
851
911
|
description: "The code that will be used in for instance an email verification flow"
|
|
852
912
|
}),
|
|
@@ -856,7 +916,7 @@ const Be = e.object({
|
|
|
856
916
|
connection_id: e.string().optional().openapi({
|
|
857
917
|
description: "The connection that the code is connected to"
|
|
858
918
|
}),
|
|
859
|
-
code_type:
|
|
919
|
+
code_type: $e,
|
|
860
920
|
code_verifier: e.string().optional().openapi({
|
|
861
921
|
description: "The code verifier used in PKCE in outbound flows"
|
|
862
922
|
}),
|
|
@@ -881,10 +941,10 @@ const Be = e.object({
|
|
|
881
941
|
expires_at: e.string(),
|
|
882
942
|
used_at: e.string().optional(),
|
|
883
943
|
user_id: e.string().optional()
|
|
884
|
-
}),
|
|
885
|
-
...
|
|
944
|
+
}), En = e.object({
|
|
945
|
+
...Je.shape,
|
|
886
946
|
created_at: e.string()
|
|
887
|
-
}),
|
|
947
|
+
}), et = e.object({
|
|
888
948
|
kid: e.string().optional(),
|
|
889
949
|
team_id: e.string().optional(),
|
|
890
950
|
realms: e.string().optional(),
|
|
@@ -899,6 +959,10 @@ const Be = e.object({
|
|
|
899
959
|
jwks_uri: e.string().optional(),
|
|
900
960
|
discovery_url: e.string().optional(),
|
|
901
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(),
|
|
902
966
|
provider: e.string().optional(),
|
|
903
967
|
from: e.string().optional(),
|
|
904
968
|
twilio_sid: e.string().optional(),
|
|
@@ -1018,14 +1082,14 @@ function T(t) {
|
|
|
1018
1082
|
return t;
|
|
1019
1083
|
}
|
|
1020
1084
|
}
|
|
1021
|
-
const
|
|
1085
|
+
const tt = e.object({
|
|
1022
1086
|
id: e.string().optional(),
|
|
1023
1087
|
name: e.string(),
|
|
1024
1088
|
display_name: e.string().optional(),
|
|
1025
1089
|
strategy: e.string(),
|
|
1026
1090
|
options: e.preprocess(
|
|
1027
1091
|
(t) => t === null ? {} : T(t),
|
|
1028
|
-
|
|
1092
|
+
et
|
|
1029
1093
|
).default({}),
|
|
1030
1094
|
enabled_clients: e.array(e.string()).default([]).optional(),
|
|
1031
1095
|
response_type: e.custom().optional(),
|
|
@@ -1034,11 +1098,11 @@ const qe = e.object({
|
|
|
1034
1098
|
show_as_button: e.boolean().optional(),
|
|
1035
1099
|
metadata: e.record(e.any()).optional(),
|
|
1036
1100
|
is_system: e.boolean().optional()
|
|
1037
|
-
}),
|
|
1101
|
+
}), Sn = e.object({
|
|
1038
1102
|
id: e.string(),
|
|
1039
1103
|
created_at: e.string().transform((t) => t === null ? "" : t),
|
|
1040
1104
|
updated_at: e.string().transform((t) => t === null ? "" : t)
|
|
1041
|
-
}).extend(
|
|
1105
|
+
}).extend(tt.shape), ot = e.object({
|
|
1042
1106
|
domain: e.string(),
|
|
1043
1107
|
custom_domain_id: e.string().optional(),
|
|
1044
1108
|
type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
|
|
@@ -1052,7 +1116,7 @@ const qe = e.object({
|
|
|
1052
1116
|
"null"
|
|
1053
1117
|
]).optional(),
|
|
1054
1118
|
domain_metadata: e.record(e.string().max(255)).optional()
|
|
1055
|
-
}),
|
|
1119
|
+
}), nt = e.discriminatedUnion("name", [
|
|
1056
1120
|
e.object({
|
|
1057
1121
|
name: e.literal("txt"),
|
|
1058
1122
|
record: e.string(),
|
|
@@ -1063,17 +1127,17 @@ const qe = e.object({
|
|
|
1063
1127
|
http_body: e.string(),
|
|
1064
1128
|
http_url: e.string()
|
|
1065
1129
|
})
|
|
1066
|
-
]),
|
|
1067
|
-
...
|
|
1130
|
+
]), it = e.object({
|
|
1131
|
+
...ot.shape,
|
|
1068
1132
|
custom_domain_id: e.string(),
|
|
1069
1133
|
primary: e.boolean(),
|
|
1070
1134
|
status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
|
|
1071
1135
|
origin_domain_name: e.string().optional(),
|
|
1072
1136
|
verification: e.object({
|
|
1073
|
-
methods: e.array(
|
|
1137
|
+
methods: e.array(nt)
|
|
1074
1138
|
}).optional(),
|
|
1075
1139
|
tls_policy: e.string().optional()
|
|
1076
|
-
}),
|
|
1140
|
+
}), yn = it.extend({
|
|
1077
1141
|
tenant_id: e.string()
|
|
1078
1142
|
}), O = e.object({
|
|
1079
1143
|
id: e.string(),
|
|
@@ -1081,17 +1145,17 @@ const qe = e.object({
|
|
|
1081
1145
|
visible: e.boolean().optional().default(!0)
|
|
1082
1146
|
}), l = O.extend({
|
|
1083
1147
|
category: e.literal("BLOCK").optional()
|
|
1084
|
-
}),
|
|
1148
|
+
}), at = l.extend({
|
|
1085
1149
|
type: e.literal("DIVIDER"),
|
|
1086
1150
|
config: e.object({
|
|
1087
1151
|
text: e.string().optional()
|
|
1088
1152
|
}).optional()
|
|
1089
|
-
}),
|
|
1153
|
+
}), st = l.extend({
|
|
1090
1154
|
type: e.literal("HTML"),
|
|
1091
1155
|
config: e.object({
|
|
1092
1156
|
content: e.string().optional()
|
|
1093
1157
|
}).optional()
|
|
1094
|
-
}),
|
|
1158
|
+
}), rt = l.extend({
|
|
1095
1159
|
type: e.literal("IMAGE"),
|
|
1096
1160
|
config: e.object({
|
|
1097
1161
|
src: e.string().optional(),
|
|
@@ -1099,29 +1163,29 @@ const qe = e.object({
|
|
|
1099
1163
|
width: e.number().optional(),
|
|
1100
1164
|
height: e.number().optional()
|
|
1101
1165
|
}).optional()
|
|
1102
|
-
}),
|
|
1166
|
+
}), lt = l.extend({
|
|
1103
1167
|
type: e.literal("JUMP_BUTTON"),
|
|
1104
1168
|
config: e.object({
|
|
1105
1169
|
text: e.string().optional(),
|
|
1106
1170
|
target_step: e.string().optional()
|
|
1107
1171
|
})
|
|
1108
|
-
}),
|
|
1172
|
+
}), ct = l.extend({
|
|
1109
1173
|
type: e.literal("RESEND_BUTTON"),
|
|
1110
1174
|
config: e.object({
|
|
1111
1175
|
text: e.string().optional(),
|
|
1112
1176
|
resend_action: e.string().optional()
|
|
1113
1177
|
})
|
|
1114
|
-
}),
|
|
1178
|
+
}), pt = l.extend({
|
|
1115
1179
|
type: e.literal("NEXT_BUTTON"),
|
|
1116
1180
|
config: e.object({
|
|
1117
1181
|
text: e.string().optional()
|
|
1118
1182
|
})
|
|
1119
|
-
}),
|
|
1183
|
+
}), dt = l.extend({
|
|
1120
1184
|
type: e.literal("PREVIOUS_BUTTON"),
|
|
1121
1185
|
config: e.object({
|
|
1122
1186
|
text: e.string().optional()
|
|
1123
1187
|
})
|
|
1124
|
-
}),
|
|
1188
|
+
}), _t = l.extend({
|
|
1125
1189
|
type: e.literal("RICH_TEXT"),
|
|
1126
1190
|
config: e.object({
|
|
1127
1191
|
content: e.string().optional()
|
|
@@ -1132,17 +1196,17 @@ const qe = e.object({
|
|
|
1132
1196
|
hint: e.string().min(1).max(500).optional(),
|
|
1133
1197
|
required: e.boolean().optional(),
|
|
1134
1198
|
sensitive: e.boolean().optional()
|
|
1135
|
-
}),
|
|
1199
|
+
}), gt = N.extend({
|
|
1136
1200
|
type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
|
|
1137
1201
|
config: e.object({
|
|
1138
1202
|
credential_type: e.string().optional()
|
|
1139
1203
|
})
|
|
1140
|
-
}),
|
|
1204
|
+
}), ut = N.extend({
|
|
1141
1205
|
type: e.literal("GMAPS_ADDRESS"),
|
|
1142
1206
|
config: e.object({
|
|
1143
1207
|
api_key: e.string().optional()
|
|
1144
1208
|
})
|
|
1145
|
-
}),
|
|
1209
|
+
}), mt = N.extend({
|
|
1146
1210
|
type: e.literal("RECAPTCHA"),
|
|
1147
1211
|
config: e.object({
|
|
1148
1212
|
site_key: e.string().optional()
|
|
@@ -1160,12 +1224,12 @@ const qe = e.object({
|
|
|
1160
1224
|
).optional(),
|
|
1161
1225
|
required: e.boolean().optional(),
|
|
1162
1226
|
sensitive: e.boolean().optional()
|
|
1163
|
-
}),
|
|
1227
|
+
}), ht = i.extend({
|
|
1164
1228
|
type: e.literal("BOOLEAN"),
|
|
1165
1229
|
config: e.object({
|
|
1166
1230
|
default_value: e.boolean().optional()
|
|
1167
1231
|
}).optional()
|
|
1168
|
-
}),
|
|
1232
|
+
}), bt = i.extend({
|
|
1169
1233
|
type: e.literal("CARDS"),
|
|
1170
1234
|
config: e.object({
|
|
1171
1235
|
options: e.array(
|
|
@@ -1178,7 +1242,7 @@ const qe = e.object({
|
|
|
1178
1242
|
).optional(),
|
|
1179
1243
|
multi_select: e.boolean().optional()
|
|
1180
1244
|
}).optional()
|
|
1181
|
-
}),
|
|
1245
|
+
}), ft = i.extend({
|
|
1182
1246
|
type: e.literal("CHOICE"),
|
|
1183
1247
|
config: e.object({
|
|
1184
1248
|
options: e.array(
|
|
@@ -1191,7 +1255,7 @@ const qe = e.object({
|
|
|
1191
1255
|
multiple: e.boolean().optional(),
|
|
1192
1256
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1193
1257
|
}).optional()
|
|
1194
|
-
}),
|
|
1258
|
+
}), Et = i.extend({
|
|
1195
1259
|
type: e.literal("CUSTOM"),
|
|
1196
1260
|
config: e.object({
|
|
1197
1261
|
component: e.string().optional(),
|
|
@@ -1199,7 +1263,7 @@ const qe = e.object({
|
|
|
1199
1263
|
schema: e.record(e.any()).optional(),
|
|
1200
1264
|
code: e.string().optional()
|
|
1201
1265
|
})
|
|
1202
|
-
}),
|
|
1266
|
+
}), St = i.extend({
|
|
1203
1267
|
type: e.literal("DATE"),
|
|
1204
1268
|
config: e.object({
|
|
1205
1269
|
format: e.string().optional(),
|
|
@@ -1207,7 +1271,7 @@ const qe = e.object({
|
|
|
1207
1271
|
max: e.string().optional(),
|
|
1208
1272
|
default_value: e.string().optional()
|
|
1209
1273
|
}).optional()
|
|
1210
|
-
}),
|
|
1274
|
+
}), yt = i.extend({
|
|
1211
1275
|
type: e.literal("DROPDOWN"),
|
|
1212
1276
|
config: e.object({
|
|
1213
1277
|
options: e.array(
|
|
@@ -1221,26 +1285,26 @@ const qe = e.object({
|
|
|
1221
1285
|
multiple: e.boolean().optional(),
|
|
1222
1286
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1223
1287
|
}).optional()
|
|
1224
|
-
}),
|
|
1288
|
+
}), At = i.extend({
|
|
1225
1289
|
type: e.literal("EMAIL"),
|
|
1226
1290
|
config: e.object({
|
|
1227
1291
|
placeholder: e.string().optional(),
|
|
1228
1292
|
default_value: e.string().optional()
|
|
1229
1293
|
}).optional()
|
|
1230
|
-
}),
|
|
1294
|
+
}), It = i.extend({
|
|
1231
1295
|
type: e.literal("FILE"),
|
|
1232
1296
|
config: e.object({
|
|
1233
1297
|
accept: e.string().optional(),
|
|
1234
1298
|
max_size: e.number().optional(),
|
|
1235
1299
|
multiple: e.boolean().optional()
|
|
1236
1300
|
}).optional()
|
|
1237
|
-
}),
|
|
1301
|
+
}), Ct = i.extend({
|
|
1238
1302
|
type: e.literal("LEGAL"),
|
|
1239
1303
|
config: e.object({
|
|
1240
1304
|
text: e.string(),
|
|
1241
1305
|
html: e.boolean().optional()
|
|
1242
1306
|
}).optional()
|
|
1243
|
-
}),
|
|
1307
|
+
}), Tt = i.extend({
|
|
1244
1308
|
type: e.literal("NUMBER"),
|
|
1245
1309
|
config: e.object({
|
|
1246
1310
|
placeholder: e.string().optional(),
|
|
@@ -1249,7 +1313,7 @@ const qe = e.object({
|
|
|
1249
1313
|
step: e.number().optional(),
|
|
1250
1314
|
default_value: e.string().optional()
|
|
1251
1315
|
}).optional()
|
|
1252
|
-
}),
|
|
1316
|
+
}), Ot = i.extend({
|
|
1253
1317
|
type: e.literal("PASSWORD"),
|
|
1254
1318
|
config: e.object({
|
|
1255
1319
|
placeholder: e.string().optional(),
|
|
@@ -1258,13 +1322,13 @@ const qe = e.object({
|
|
|
1258
1322
|
forgot_password_link: e.string().optional(),
|
|
1259
1323
|
default_value: e.string().optional()
|
|
1260
1324
|
}).optional()
|
|
1261
|
-
}),
|
|
1325
|
+
}), Nt = i.extend({
|
|
1262
1326
|
type: e.literal("PAYMENT"),
|
|
1263
1327
|
config: e.object({
|
|
1264
1328
|
provider: e.string().optional(),
|
|
1265
1329
|
currency: e.string().optional()
|
|
1266
1330
|
}).optional()
|
|
1267
|
-
}),
|
|
1331
|
+
}), wt = i.extend({
|
|
1268
1332
|
type: e.literal("SOCIAL"),
|
|
1269
1333
|
config: e.object({
|
|
1270
1334
|
providers: e.array(e.string()).optional(),
|
|
@@ -1279,7 +1343,7 @@ const qe = e.object({
|
|
|
1279
1343
|
})
|
|
1280
1344
|
).optional()
|
|
1281
1345
|
}).optional()
|
|
1282
|
-
}),
|
|
1346
|
+
}), jt = i.extend({
|
|
1283
1347
|
type: e.literal("TEL"),
|
|
1284
1348
|
config: e.object({
|
|
1285
1349
|
placeholder: e.string().optional(),
|
|
@@ -1287,7 +1351,7 @@ const qe = e.object({
|
|
|
1287
1351
|
default_value: e.string().optional(),
|
|
1288
1352
|
allow_email: e.boolean().optional()
|
|
1289
1353
|
}).optional()
|
|
1290
|
-
}),
|
|
1354
|
+
}), kt = i.extend({
|
|
1291
1355
|
type: e.literal("TEXT"),
|
|
1292
1356
|
config: e.object({
|
|
1293
1357
|
placeholder: e.string().optional(),
|
|
@@ -1295,54 +1359,54 @@ const qe = e.object({
|
|
|
1295
1359
|
max_length: e.number().optional(),
|
|
1296
1360
|
default_value: e.string().optional()
|
|
1297
1361
|
}).optional()
|
|
1298
|
-
}),
|
|
1362
|
+
}), Rt = i.extend({
|
|
1299
1363
|
type: e.literal("COUNTRY"),
|
|
1300
1364
|
config: e.object({
|
|
1301
1365
|
placeholder: e.string().optional(),
|
|
1302
1366
|
default_value: e.string().optional()
|
|
1303
1367
|
}).optional()
|
|
1304
|
-
}),
|
|
1368
|
+
}), vt = i.extend({
|
|
1305
1369
|
type: e.literal("URL"),
|
|
1306
1370
|
config: e.object({
|
|
1307
1371
|
placeholder: e.string().optional(),
|
|
1308
1372
|
default_value: e.string().optional()
|
|
1309
1373
|
}).optional()
|
|
1310
|
-
}),
|
|
1311
|
-
Ze,
|
|
1312
|
-
Qe,
|
|
1313
|
-
$e,
|
|
1314
|
-
Je,
|
|
1315
|
-
et,
|
|
1316
|
-
tt,
|
|
1317
|
-
ot,
|
|
1318
|
-
nt
|
|
1319
|
-
]), Tt = e.discriminatedUnion("type", [
|
|
1320
|
-
it,
|
|
1374
|
+
}), Dt = e.discriminatedUnion("type", [
|
|
1321
1375
|
at,
|
|
1322
|
-
rt
|
|
1323
|
-
]), Ot = e.discriminatedUnion("type", [
|
|
1324
1376
|
st,
|
|
1377
|
+
rt,
|
|
1325
1378
|
lt,
|
|
1326
|
-
pt,
|
|
1327
|
-
At,
|
|
1328
1379
|
ct,
|
|
1380
|
+
pt,
|
|
1329
1381
|
dt,
|
|
1330
|
-
_t
|
|
1382
|
+
_t
|
|
1383
|
+
]), Lt = e.discriminatedUnion("type", [
|
|
1331
1384
|
gt,
|
|
1332
1385
|
ut,
|
|
1333
|
-
mt
|
|
1386
|
+
mt
|
|
1387
|
+
]), xt = e.discriminatedUnion("type", [
|
|
1334
1388
|
ht,
|
|
1335
1389
|
bt,
|
|
1336
1390
|
ft,
|
|
1391
|
+
Rt,
|
|
1337
1392
|
Et,
|
|
1338
1393
|
St,
|
|
1339
1394
|
yt,
|
|
1340
|
-
|
|
1341
|
-
|
|
1395
|
+
At,
|
|
1396
|
+
It,
|
|
1342
1397
|
Ct,
|
|
1343
1398
|
Tt,
|
|
1344
|
-
Ot
|
|
1345
|
-
|
|
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([
|
|
1346
1410
|
"BOOLEAN",
|
|
1347
1411
|
"CARDS",
|
|
1348
1412
|
"CHOICE",
|
|
@@ -1356,7 +1420,7 @@ const qe = e.object({
|
|
|
1356
1420
|
"TEL",
|
|
1357
1421
|
"TEXT",
|
|
1358
1422
|
"URL"
|
|
1359
|
-
]),
|
|
1423
|
+
]), In = e.object({
|
|
1360
1424
|
id: e.string(),
|
|
1361
1425
|
type: e.literal("submit"),
|
|
1362
1426
|
label: e.string(),
|
|
@@ -1368,7 +1432,7 @@ const qe = e.object({
|
|
|
1368
1432
|
}), E = e.object({
|
|
1369
1433
|
x: e.number(),
|
|
1370
1434
|
y: e.number()
|
|
1371
|
-
}),
|
|
1435
|
+
}), Ut = e.object({
|
|
1372
1436
|
id: e.string(),
|
|
1373
1437
|
type: e.literal("FLOW"),
|
|
1374
1438
|
coordinates: E,
|
|
@@ -1377,7 +1441,7 @@ const qe = e.object({
|
|
|
1377
1441
|
flow_id: e.string().max(30),
|
|
1378
1442
|
next_node: e.string().optional()
|
|
1379
1443
|
})
|
|
1380
|
-
}),
|
|
1444
|
+
}), Ft = e.object({
|
|
1381
1445
|
id: e.string(),
|
|
1382
1446
|
type: e.literal("ROUTER"),
|
|
1383
1447
|
coordinates: E,
|
|
@@ -1393,20 +1457,20 @@ const qe = e.object({
|
|
|
1393
1457
|
),
|
|
1394
1458
|
fallback: e.string()
|
|
1395
1459
|
})
|
|
1396
|
-
}),
|
|
1460
|
+
}), Pt = e.object({
|
|
1397
1461
|
id: e.string(),
|
|
1398
1462
|
type: e.literal("STEP"),
|
|
1399
1463
|
coordinates: E,
|
|
1400
1464
|
alias: e.string().min(1).max(150).optional(),
|
|
1401
1465
|
config: e.object({
|
|
1402
|
-
components: e.array(
|
|
1466
|
+
components: e.array(M),
|
|
1403
1467
|
next_node: e.string().optional()
|
|
1404
1468
|
})
|
|
1405
|
-
}),
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
]),
|
|
1469
|
+
}), Mt = e.discriminatedUnion("type", [
|
|
1470
|
+
Ut,
|
|
1471
|
+
Ft,
|
|
1472
|
+
Pt
|
|
1473
|
+
]), Ht = e.object({
|
|
1410
1474
|
name: e.string().openapi({
|
|
1411
1475
|
description: "The name of the form"
|
|
1412
1476
|
}),
|
|
@@ -1419,7 +1483,7 @@ const qe = e.object({
|
|
|
1419
1483
|
default: e.string().optional()
|
|
1420
1484
|
}).optional(),
|
|
1421
1485
|
translations: e.record(e.string(), e.any()).optional(),
|
|
1422
|
-
nodes: e.array(
|
|
1486
|
+
nodes: e.array(Mt).optional(),
|
|
1423
1487
|
start: e.object({
|
|
1424
1488
|
hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
|
|
1425
1489
|
next_node: e.string().optional(),
|
|
@@ -1441,42 +1505,42 @@ const qe = e.object({
|
|
|
1441
1505
|
}).optional()
|
|
1442
1506
|
}).openapi({
|
|
1443
1507
|
description: "Schema for flow-based forms (matches Auth0 Forms structure)"
|
|
1444
|
-
}),
|
|
1508
|
+
}), Cn = e.object({
|
|
1445
1509
|
...a.shape,
|
|
1446
|
-
...
|
|
1510
|
+
...Ht.shape,
|
|
1447
1511
|
id: e.string()
|
|
1448
|
-
}),
|
|
1512
|
+
}), Gt = e.object({
|
|
1449
1513
|
id: e.number().optional(),
|
|
1450
1514
|
text: e.string(),
|
|
1451
1515
|
type: e.enum(["info", "error", "success", "warning"])
|
|
1452
|
-
}),
|
|
1516
|
+
}), Wt = e.object({
|
|
1453
1517
|
id: e.string().optional(),
|
|
1454
1518
|
text: e.string(),
|
|
1455
1519
|
href: e.string(),
|
|
1456
1520
|
linkText: e.string().optional()
|
|
1457
|
-
}),
|
|
1521
|
+
}), Tn = e.object({
|
|
1458
1522
|
/** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
|
|
1459
1523
|
name: e.string().optional(),
|
|
1460
1524
|
action: e.string(),
|
|
1461
1525
|
method: e.enum(["POST", "GET"]),
|
|
1462
1526
|
title: e.string().optional(),
|
|
1463
1527
|
description: e.string().optional(),
|
|
1464
|
-
components: e.array(
|
|
1465
|
-
messages: e.array(
|
|
1466
|
-
links: e.array(
|
|
1528
|
+
components: e.array(M),
|
|
1529
|
+
messages: e.array(Gt).optional(),
|
|
1530
|
+
links: e.array(Wt).optional(),
|
|
1467
1531
|
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
1468
1532
|
footer: e.string().optional()
|
|
1469
1533
|
});
|
|
1470
|
-
function
|
|
1534
|
+
function On(t) {
|
|
1471
1535
|
return t.category === "BLOCK";
|
|
1472
1536
|
}
|
|
1473
|
-
function
|
|
1537
|
+
function Nn(t) {
|
|
1474
1538
|
return t.category === "WIDGET";
|
|
1475
1539
|
}
|
|
1476
|
-
function
|
|
1540
|
+
function wn(t) {
|
|
1477
1541
|
return t.category === "FIELD";
|
|
1478
1542
|
}
|
|
1479
|
-
const
|
|
1543
|
+
const H = e.enum([
|
|
1480
1544
|
"pre-user-registration",
|
|
1481
1545
|
"post-user-registration",
|
|
1482
1546
|
"post-user-login",
|
|
@@ -1485,14 +1549,14 @@ const M = e.enum([
|
|
|
1485
1549
|
"pre-user-deletion",
|
|
1486
1550
|
"post-user-deletion"
|
|
1487
1551
|
// Potentially other triggers specific to webhooks in the future
|
|
1488
|
-
]),
|
|
1552
|
+
]), G = e.enum([
|
|
1489
1553
|
"pre-user-registration",
|
|
1490
1554
|
"post-user-registration",
|
|
1491
1555
|
"post-user-login",
|
|
1492
1556
|
"validate-registration-username",
|
|
1493
1557
|
"pre-user-deletion",
|
|
1494
1558
|
"post-user-deletion"
|
|
1495
|
-
]),
|
|
1559
|
+
]), W = e.enum([
|
|
1496
1560
|
"post-user-login",
|
|
1497
1561
|
"post-user-registration",
|
|
1498
1562
|
"post-user-update",
|
|
@@ -1502,11 +1566,11 @@ const M = e.enum([
|
|
|
1502
1566
|
"credentials-exchange",
|
|
1503
1567
|
"pre-user-registration",
|
|
1504
1568
|
"post-user-registration"
|
|
1505
|
-
]),
|
|
1569
|
+
]), K = e.enum([
|
|
1506
1570
|
"ensure-username",
|
|
1507
1571
|
"set-preferred-username",
|
|
1508
1572
|
"account-linking"
|
|
1509
|
-
]),
|
|
1573
|
+
]), jn = {
|
|
1510
1574
|
"ensure-username": {
|
|
1511
1575
|
name: "Ensure Username",
|
|
1512
1576
|
description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
|
|
@@ -1526,7 +1590,7 @@ const M = e.enum([
|
|
|
1526
1590
|
"post-user-update"
|
|
1527
1591
|
]
|
|
1528
1592
|
}
|
|
1529
|
-
},
|
|
1593
|
+
}, c = {
|
|
1530
1594
|
enabled: e.boolean().default(!1),
|
|
1531
1595
|
synchronous: e.boolean().default(!1),
|
|
1532
1596
|
priority: e.number().optional(),
|
|
@@ -1543,71 +1607,71 @@ const M = e.enum([
|
|
|
1543
1607
|
* Everything else is opaque to the runtime. Persisted as JSON.
|
|
1544
1608
|
*/
|
|
1545
1609
|
metadata: e.record(e.unknown()).optional()
|
|
1546
|
-
},
|
|
1547
|
-
...
|
|
1548
|
-
trigger_id: M,
|
|
1549
|
-
url: e.string()
|
|
1550
|
-
}), Ut = e.object({
|
|
1551
|
-
...p,
|
|
1610
|
+
}, Bt = e.object({
|
|
1611
|
+
...c,
|
|
1552
1612
|
trigger_id: H,
|
|
1553
|
-
|
|
1554
|
-
}),
|
|
1555
|
-
...
|
|
1613
|
+
url: e.string()
|
|
1614
|
+
}), Kt = e.object({
|
|
1615
|
+
...c,
|
|
1556
1616
|
trigger_id: G,
|
|
1557
|
-
|
|
1558
|
-
}),
|
|
1559
|
-
...
|
|
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,
|
|
1560
1624
|
trigger_id: B,
|
|
1561
1625
|
code_id: e.string()
|
|
1562
|
-
}),
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
]),
|
|
1568
|
-
...
|
|
1569
|
-
trigger_id:
|
|
1626
|
+
}), kn = e.union([
|
|
1627
|
+
Bt,
|
|
1628
|
+
Kt,
|
|
1629
|
+
zt,
|
|
1630
|
+
qt
|
|
1631
|
+
]), Xt = e.object({
|
|
1632
|
+
...c,
|
|
1633
|
+
trigger_id: H,
|
|
1570
1634
|
...a.shape,
|
|
1571
1635
|
hook_id: e.string(),
|
|
1572
1636
|
url: e.string()
|
|
1573
|
-
}),
|
|
1574
|
-
...
|
|
1575
|
-
trigger_id:
|
|
1637
|
+
}), Vt = e.object({
|
|
1638
|
+
...c,
|
|
1639
|
+
trigger_id: G,
|
|
1576
1640
|
...a.shape,
|
|
1577
1641
|
hook_id: e.string(),
|
|
1578
1642
|
form_id: e.string()
|
|
1579
|
-
}),
|
|
1580
|
-
...
|
|
1581
|
-
trigger_id:
|
|
1643
|
+
}), Yt = e.object({
|
|
1644
|
+
...c,
|
|
1645
|
+
trigger_id: W,
|
|
1582
1646
|
...a.shape,
|
|
1583
1647
|
hook_id: e.string(),
|
|
1584
|
-
template_id:
|
|
1585
|
-
}),
|
|
1586
|
-
...
|
|
1648
|
+
template_id: K
|
|
1649
|
+
}), Zt = e.object({
|
|
1650
|
+
...c,
|
|
1587
1651
|
trigger_id: B,
|
|
1588
1652
|
...a.shape,
|
|
1589
1653
|
hook_id: e.string(),
|
|
1590
1654
|
code_id: e.string()
|
|
1591
|
-
}),
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
]),
|
|
1655
|
+
}), Rn = e.union([
|
|
1656
|
+
Xt,
|
|
1657
|
+
Vt,
|
|
1658
|
+
Yt,
|
|
1659
|
+
Zt
|
|
1660
|
+
]), Qt = e.object({
|
|
1597
1661
|
code: e.string().max(1e5),
|
|
1598
1662
|
secrets: e.record(e.string()).optional()
|
|
1599
|
-
}),
|
|
1663
|
+
}), vn = Qt.extend({
|
|
1600
1664
|
id: e.string(),
|
|
1601
1665
|
tenant_id: e.string(),
|
|
1602
1666
|
...a.shape
|
|
1603
|
-
}),
|
|
1667
|
+
}), $t = e.object({
|
|
1604
1668
|
name: e.string().optional()
|
|
1605
|
-
}),
|
|
1669
|
+
}), Jt = e.object({
|
|
1606
1670
|
email: e.string().optional()
|
|
1607
|
-
}),
|
|
1671
|
+
}), eo = e.object({
|
|
1608
1672
|
organization_id: e.string().max(50),
|
|
1609
|
-
inviter:
|
|
1610
|
-
invitee:
|
|
1673
|
+
inviter: $t,
|
|
1674
|
+
invitee: Jt,
|
|
1611
1675
|
invitation_url: e.string().url(),
|
|
1612
1676
|
client_id: e.string(),
|
|
1613
1677
|
connection_id: e.string().optional(),
|
|
@@ -1616,13 +1680,13 @@ const M = e.enum([
|
|
|
1616
1680
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
1617
1681
|
roles: e.array(e.string()).default([]).optional(),
|
|
1618
1682
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
1619
|
-
}),
|
|
1683
|
+
}), Dn = e.object({
|
|
1620
1684
|
id: e.string(),
|
|
1621
1685
|
organization_id: e.string().max(50),
|
|
1622
1686
|
created_at: e.string().datetime(),
|
|
1623
1687
|
expires_at: e.string().datetime(),
|
|
1624
1688
|
ticket_id: e.string().optional()
|
|
1625
|
-
}).extend(
|
|
1689
|
+
}).extend(eo.shape), to = e.object({
|
|
1626
1690
|
alg: e.enum([
|
|
1627
1691
|
"RS256",
|
|
1628
1692
|
"RS384",
|
|
@@ -1661,9 +1725,9 @@ const M = e.enum([
|
|
|
1661
1725
|
path: [n],
|
|
1662
1726
|
message: `EC JWK is missing required member '${n}'`
|
|
1663
1727
|
});
|
|
1664
|
-
}),
|
|
1665
|
-
keys: e.array(
|
|
1666
|
-
}),
|
|
1728
|
+
}), Ln = e.object({
|
|
1729
|
+
keys: e.array(to)
|
|
1730
|
+
}), xn = e.object({
|
|
1667
1731
|
issuer: e.string(),
|
|
1668
1732
|
authorization_endpoint: e.string(),
|
|
1669
1733
|
token_endpoint: e.string(),
|
|
@@ -1683,24 +1747,25 @@ const M = e.enum([
|
|
|
1683
1747
|
claims_supported: e.array(e.string()),
|
|
1684
1748
|
request_uri_parameter_supported: e.boolean(),
|
|
1685
1749
|
request_parameter_supported: e.boolean(),
|
|
1750
|
+
claims_parameter_supported: e.boolean().optional(),
|
|
1686
1751
|
request_object_signing_alg_values_supported: e.array(e.string()).optional(),
|
|
1687
1752
|
token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
|
|
1688
1753
|
});
|
|
1689
|
-
var
|
|
1690
|
-
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({
|
|
1691
1756
|
strategy: e.string(),
|
|
1692
1757
|
strategy_type: e.string()
|
|
1693
|
-
}),
|
|
1758
|
+
}), io = e.object({
|
|
1694
1759
|
csrf_token: e.string(),
|
|
1695
1760
|
auth0Client: e.string().optional(),
|
|
1696
|
-
authParams:
|
|
1761
|
+
authParams: Qe,
|
|
1697
1762
|
expires_at: e.string(),
|
|
1698
1763
|
deleted_at: e.string().optional(),
|
|
1699
1764
|
ip: e.string().optional(),
|
|
1700
1765
|
useragent: e.string().optional(),
|
|
1701
1766
|
session_id: e.string().optional(),
|
|
1702
1767
|
authorization_url: e.string().optional(),
|
|
1703
|
-
state:
|
|
1768
|
+
state: oo.optional().default(
|
|
1704
1769
|
"pending"
|
|
1705
1770
|
/* PENDING */
|
|
1706
1771
|
),
|
|
@@ -1711,19 +1776,19 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1711
1776
|
// Set once user is authenticated
|
|
1712
1777
|
auth_connection: e.string().optional(),
|
|
1713
1778
|
// The connection used to authenticate (may differ from primary user's connection)
|
|
1714
|
-
auth_strategy:
|
|
1779
|
+
auth_strategy: no.optional(),
|
|
1715
1780
|
authenticated_at: e.string().optional()
|
|
1716
1781
|
// ISO timestamp persisted for audit/metadata; not used to reject resumed sessions
|
|
1717
1782
|
}).openapi({
|
|
1718
1783
|
description: "This represents a login sesion"
|
|
1719
|
-
}),
|
|
1720
|
-
...
|
|
1784
|
+
}), Un = e.object({
|
|
1785
|
+
...io.shape,
|
|
1721
1786
|
id: e.string().openapi({
|
|
1722
1787
|
description: "This is is used as the state in the universal login"
|
|
1723
1788
|
}),
|
|
1724
1789
|
created_at: e.string(),
|
|
1725
1790
|
updated_at: e.string()
|
|
1726
|
-
}),
|
|
1791
|
+
}), ao = {
|
|
1727
1792
|
// Network & System
|
|
1728
1793
|
ACLS_SUMMARY: "acls_summary",
|
|
1729
1794
|
ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
|
|
@@ -1897,24 +1962,24 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1897
1962
|
WARNING_DURING_LOGIN: "w",
|
|
1898
1963
|
WARNING_SENDING_NOTIFICATION: "wn",
|
|
1899
1964
|
WARNING_USER_MANAGEMENT: "wum"
|
|
1900
|
-
},
|
|
1901
|
-
(t) => Object.values(
|
|
1965
|
+
}, so = e.string().refine(
|
|
1966
|
+
(t) => Object.values(ao).includes(t),
|
|
1902
1967
|
{ message: "Invalid log type" }
|
|
1903
|
-
),
|
|
1968
|
+
), ro = e.object({
|
|
1904
1969
|
name: e.string(),
|
|
1905
1970
|
version: e.string(),
|
|
1906
1971
|
env: e.object({
|
|
1907
1972
|
node: e.string().optional()
|
|
1908
1973
|
}).optional()
|
|
1909
|
-
}),
|
|
1974
|
+
}), lo = e.object({
|
|
1910
1975
|
country_code: e.string().length(2),
|
|
1911
1976
|
city_name: e.string(),
|
|
1912
1977
|
latitude: e.string(),
|
|
1913
1978
|
longitude: e.string(),
|
|
1914
1979
|
time_zone: e.string(),
|
|
1915
1980
|
continent_code: e.string()
|
|
1916
|
-
}),
|
|
1917
|
-
type:
|
|
1981
|
+
}), co = e.object({
|
|
1982
|
+
type: so,
|
|
1918
1983
|
date: e.string(),
|
|
1919
1984
|
description: e.string().optional(),
|
|
1920
1985
|
ip: e.string().optional(),
|
|
@@ -1933,39 +1998,39 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1933
1998
|
strategy: e.string().optional(),
|
|
1934
1999
|
strategy_type: e.string().optional(),
|
|
1935
2000
|
hostname: e.string().optional(),
|
|
1936
|
-
auth0_client:
|
|
2001
|
+
auth0_client: ro.optional(),
|
|
1937
2002
|
log_id: e.string().optional(),
|
|
1938
|
-
location_info:
|
|
1939
|
-
}),
|
|
1940
|
-
...
|
|
2003
|
+
location_info: lo.optional()
|
|
2004
|
+
}), Fn = e.object({
|
|
2005
|
+
...co.shape,
|
|
1941
2006
|
log_id: e.string()
|
|
1942
|
-
}),
|
|
2007
|
+
}), po = e.enum([
|
|
1943
2008
|
"http",
|
|
1944
2009
|
"eventbridge",
|
|
1945
2010
|
"eventgrid",
|
|
1946
2011
|
"splunk",
|
|
1947
2012
|
"datadog",
|
|
1948
2013
|
"sumo"
|
|
1949
|
-
]),
|
|
2014
|
+
]), q = e.enum([
|
|
1950
2015
|
"active",
|
|
1951
2016
|
"paused",
|
|
1952
2017
|
"suspended"
|
|
1953
|
-
]),
|
|
2018
|
+
]), _o = e.object({
|
|
1954
2019
|
type: e.string(),
|
|
1955
2020
|
name: e.string()
|
|
1956
|
-
}),
|
|
2021
|
+
}), go = e.object({
|
|
1957
2022
|
name: e.string(),
|
|
1958
|
-
type:
|
|
1959
|
-
status:
|
|
2023
|
+
type: po,
|
|
2024
|
+
status: q.optional(),
|
|
1960
2025
|
sink: e.record(e.string(), e.unknown()),
|
|
1961
|
-
filters: e.array(
|
|
2026
|
+
filters: e.array(_o).optional(),
|
|
1962
2027
|
isPriority: e.boolean().optional()
|
|
1963
|
-
}),
|
|
2028
|
+
}), Pn = go.extend({
|
|
1964
2029
|
id: e.string(),
|
|
1965
|
-
status:
|
|
2030
|
+
status: q,
|
|
1966
2031
|
created_at: e.string().optional(),
|
|
1967
2032
|
updated_at: e.string().optional()
|
|
1968
|
-
}),
|
|
2033
|
+
}), uo = e.object({
|
|
1969
2034
|
enabled: e.boolean().optional(),
|
|
1970
2035
|
shields: e.array(e.string()).optional(),
|
|
1971
2036
|
admin_notification_frequency: e.array(e.string()).optional(),
|
|
@@ -1978,13 +2043,13 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1978
2043
|
shields: e.array(e.string()).optional()
|
|
1979
2044
|
}).optional()
|
|
1980
2045
|
}).optional()
|
|
1981
|
-
}),
|
|
2046
|
+
}), mo = e.object({
|
|
1982
2047
|
enabled: e.boolean().optional(),
|
|
1983
2048
|
shields: e.array(e.string()).optional(),
|
|
1984
2049
|
allowlist: e.array(e.string()).optional(),
|
|
1985
2050
|
mode: e.string().optional(),
|
|
1986
2051
|
max_attempts: e.number().optional()
|
|
1987
|
-
}),
|
|
2052
|
+
}), ho = e.object({
|
|
1988
2053
|
enabled: e.boolean().optional(),
|
|
1989
2054
|
shields: e.array(e.string()).optional(),
|
|
1990
2055
|
allowlist: e.array(e.string()).optional(),
|
|
@@ -1998,28 +2063,28 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
1998
2063
|
rate: e.number().optional()
|
|
1999
2064
|
}).optional()
|
|
2000
2065
|
}).optional()
|
|
2001
|
-
}),
|
|
2002
|
-
breached_password_detection:
|
|
2003
|
-
brute_force_protection:
|
|
2004
|
-
suspicious_ip_throttling:
|
|
2005
|
-
}),
|
|
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({
|
|
2006
2071
|
id: e.string().optional(),
|
|
2007
2072
|
user_id: e.string(),
|
|
2008
2073
|
password: e.string(),
|
|
2009
2074
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
|
|
2010
2075
|
is_current: e.boolean().default(!0)
|
|
2011
|
-
}),
|
|
2076
|
+
}), Mn = fo.extend({
|
|
2012
2077
|
id: e.string(),
|
|
2013
2078
|
created_at: e.string(),
|
|
2014
2079
|
updated_at: e.string()
|
|
2015
|
-
}),
|
|
2080
|
+
}), X = e.object({
|
|
2016
2081
|
initial_user_agent: e.string().describe("First user agent of the device from which this user logged in"),
|
|
2017
2082
|
initial_ip: e.string().describe("First IP address associated with this session"),
|
|
2018
2083
|
initial_asn: e.string().describe("First autonomous system number associated with this session"),
|
|
2019
2084
|
last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
|
|
2020
2085
|
last_ip: e.string().describe("Last IP address from which this user logged in"),
|
|
2021
2086
|
last_asn: e.string().describe("Last autonomous system number from which this user logged in")
|
|
2022
|
-
}),
|
|
2087
|
+
}), Eo = e.object({
|
|
2023
2088
|
id: e.string(),
|
|
2024
2089
|
revoked_at: e.string().optional(),
|
|
2025
2090
|
used_at: e.string().optional(),
|
|
@@ -2027,17 +2092,17 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2027
2092
|
expires_at: e.string().optional(),
|
|
2028
2093
|
login_session_id: e.string(),
|
|
2029
2094
|
idle_expires_at: e.string().optional(),
|
|
2030
|
-
device:
|
|
2095
|
+
device: X.describe(
|
|
2031
2096
|
"Metadata related to the device used in the session"
|
|
2032
2097
|
),
|
|
2033
2098
|
clients: e.array(e.string()).describe("List of client details for the session")
|
|
2034
|
-
}),
|
|
2099
|
+
}), Hn = e.object({
|
|
2035
2100
|
created_at: e.string(),
|
|
2036
2101
|
updated_at: e.string(),
|
|
2037
2102
|
authenticated_at: e.string(),
|
|
2038
2103
|
last_interaction_at: e.string(),
|
|
2039
|
-
...
|
|
2040
|
-
}),
|
|
2104
|
+
...Eo.shape
|
|
2105
|
+
}), Gn = e.object({
|
|
2041
2106
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
2042
2107
|
tenant_id: e.string().optional().openapi({
|
|
2043
2108
|
description: "The tenant the key belongs to. Omitted means the key is shared / control-plane scoped."
|
|
@@ -2065,7 +2130,7 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2065
2130
|
type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
|
|
2066
2131
|
description: "The type of the signing key"
|
|
2067
2132
|
})
|
|
2068
|
-
}),
|
|
2133
|
+
}), So = e.object({
|
|
2069
2134
|
id: e.string().optional(),
|
|
2070
2135
|
// Basic settings
|
|
2071
2136
|
audience: e.string(),
|
|
@@ -2218,7 +2283,7 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2218
2283
|
pushed_authorization_requests_supported: e.boolean().optional(),
|
|
2219
2284
|
authorization_response_iss_parameter_supported: e.boolean().optional(),
|
|
2220
2285
|
// Attack-protection config (singleton, exposed via /api/v2/attack-protection)
|
|
2221
|
-
attack_protection:
|
|
2286
|
+
attack_protection: bo.optional(),
|
|
2222
2287
|
// Guardian MFA Factors configuration (internal storage, exposed via /guardian API)
|
|
2223
2288
|
mfa: e.object({
|
|
2224
2289
|
// MFA policy: "never" = MFA disabled, "always" = MFA required for all logins
|
|
@@ -2250,14 +2315,14 @@ const Vt = e.nativeEnum(K), Xt = e.object({
|
|
|
2250
2315
|
message: e.string().optional()
|
|
2251
2316
|
}).optional()
|
|
2252
2317
|
}).optional()
|
|
2253
|
-
}),
|
|
2318
|
+
}), Wn = e.object({
|
|
2254
2319
|
created_at: e.string().nullable().transform((t) => t ?? ""),
|
|
2255
2320
|
updated_at: e.string().nullable().transform((t) => t ?? ""),
|
|
2256
|
-
...
|
|
2321
|
+
...So.shape,
|
|
2257
2322
|
id: e.string()
|
|
2258
2323
|
});
|
|
2259
|
-
var
|
|
2260
|
-
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({
|
|
2261
2326
|
access_token: e.string(),
|
|
2262
2327
|
id_token: e.string().optional(),
|
|
2263
2328
|
scope: e.string().optional(),
|
|
@@ -2270,7 +2335,7 @@ e.object({
|
|
|
2270
2335
|
code: e.string(),
|
|
2271
2336
|
state: e.string().optional()
|
|
2272
2337
|
});
|
|
2273
|
-
const
|
|
2338
|
+
const Ao = e.object({
|
|
2274
2339
|
button_border_radius: e.number(),
|
|
2275
2340
|
button_border_weight: e.number(),
|
|
2276
2341
|
buttons_style: e.enum(["pill", "rounded", "sharp"]),
|
|
@@ -2280,7 +2345,7 @@ const go = e.object({
|
|
|
2280
2345
|
show_widget_shadow: e.boolean(),
|
|
2281
2346
|
widget_border_weight: e.number(),
|
|
2282
2347
|
widget_corner_radius: e.number()
|
|
2283
|
-
}),
|
|
2348
|
+
}), Io = e.object({
|
|
2284
2349
|
base_focus_color: e.string(),
|
|
2285
2350
|
base_hover_color: e.string(),
|
|
2286
2351
|
body_text: e.string(),
|
|
@@ -2303,7 +2368,7 @@ const go = e.object({
|
|
|
2303
2368
|
}), u = e.object({
|
|
2304
2369
|
bold: e.boolean(),
|
|
2305
2370
|
size: e.number()
|
|
2306
|
-
}),
|
|
2371
|
+
}), Co = e.object({
|
|
2307
2372
|
body_text: u,
|
|
2308
2373
|
buttons_text: u,
|
|
2309
2374
|
font_url: e.string(),
|
|
@@ -2313,7 +2378,7 @@ const go = e.object({
|
|
|
2313
2378
|
reference_text_size: e.number(),
|
|
2314
2379
|
subtitle: u,
|
|
2315
2380
|
title: u
|
|
2316
|
-
}),
|
|
2381
|
+
}), To = e.object({
|
|
2317
2382
|
background_color: e.string(),
|
|
2318
2383
|
background_image_url: e.string(),
|
|
2319
2384
|
page_layout: e.enum(["center", "left", "right"]),
|
|
@@ -2326,33 +2391,33 @@ const go = e.object({
|
|
|
2326
2391
|
* Optional for backwards compatibility; absent values mean "widget".
|
|
2327
2392
|
*/
|
|
2328
2393
|
logo_placement: e.enum(["widget", "chip", "none"]).optional()
|
|
2329
|
-
}),
|
|
2394
|
+
}), Oo = e.object({
|
|
2330
2395
|
header_text_alignment: e.enum(["center", "left", "right"]),
|
|
2331
2396
|
logo_height: e.number(),
|
|
2332
2397
|
logo_position: e.enum(["center", "left", "none", "right"]),
|
|
2333
2398
|
logo_url: e.string(),
|
|
2334
2399
|
social_buttons_layout: e.enum(["bottom", "top"])
|
|
2335
|
-
}),
|
|
2336
|
-
borders:
|
|
2337
|
-
colors:
|
|
2400
|
+
}), No = e.object({
|
|
2401
|
+
borders: Ao,
|
|
2402
|
+
colors: Io,
|
|
2338
2403
|
displayName: e.string(),
|
|
2339
|
-
fonts:
|
|
2340
|
-
page_background:
|
|
2341
|
-
widget:
|
|
2342
|
-
}),
|
|
2404
|
+
fonts: Co,
|
|
2405
|
+
page_background: To,
|
|
2406
|
+
widget: Oo
|
|
2407
|
+
}), Kn = No.extend({
|
|
2343
2408
|
themeId: e.string()
|
|
2344
|
-
}),
|
|
2409
|
+
}), zn = e.object({
|
|
2345
2410
|
universal_login_experience: e.enum(["new", "classic"]).default("new"),
|
|
2346
2411
|
identifier_first: e.boolean().default(!0),
|
|
2347
2412
|
password_first: e.boolean().default(!1),
|
|
2348
2413
|
webauthn_platform_first_factor: e.boolean()
|
|
2349
|
-
}),
|
|
2414
|
+
}), qn = e.object({
|
|
2350
2415
|
name: e.string(),
|
|
2351
2416
|
enabled: e.boolean().optional().default(!0),
|
|
2352
2417
|
default_from_address: e.string().optional(),
|
|
2353
2418
|
credentials: e.record(e.string(), e.unknown()),
|
|
2354
2419
|
settings: e.object({}).optional()
|
|
2355
|
-
}),
|
|
2420
|
+
}), wo = e.enum([
|
|
2356
2421
|
"verify_email",
|
|
2357
2422
|
"verify_email_by_code",
|
|
2358
2423
|
"reset_email",
|
|
@@ -2365,8 +2430,8 @@ const go = e.object({
|
|
|
2365
2430
|
"change_password",
|
|
2366
2431
|
"password_reset",
|
|
2367
2432
|
"user_invitation"
|
|
2368
|
-
]),
|
|
2369
|
-
template:
|
|
2433
|
+
]), Xn = e.object({
|
|
2434
|
+
template: wo,
|
|
2370
2435
|
body: e.string(),
|
|
2371
2436
|
from: e.string(),
|
|
2372
2437
|
subject: e.string(),
|
|
@@ -2375,7 +2440,7 @@ const go = e.object({
|
|
|
2375
2440
|
urlLifetimeInSeconds: e.number().int().nonnegative().optional(),
|
|
2376
2441
|
includeEmailInRedirect: e.boolean().default(!1),
|
|
2377
2442
|
enabled: e.boolean().default(!0)
|
|
2378
|
-
}),
|
|
2443
|
+
}), jo = e.object({
|
|
2379
2444
|
// Internal primary key (ULID). Never sent to clients in the new wire format.
|
|
2380
2445
|
id: e.string(),
|
|
2381
2446
|
// Link to the login session
|
|
@@ -2388,7 +2453,7 @@ const go = e.object({
|
|
|
2388
2453
|
idle_expires_at: e.string().optional(),
|
|
2389
2454
|
// When the token was last used.
|
|
2390
2455
|
last_exchanged_at: e.string().optional(),
|
|
2391
|
-
device:
|
|
2456
|
+
device: X,
|
|
2392
2457
|
resource_servers: e.array(
|
|
2393
2458
|
e.object({
|
|
2394
2459
|
audience: e.string(),
|
|
@@ -2409,23 +2474,23 @@ const go = e.object({
|
|
|
2409
2474
|
// ISO of the *first* rotation. Anchors the leeway window so siblings minted
|
|
2410
2475
|
// within the window don't extend the parent's exposure.
|
|
2411
2476
|
rotated_at: e.string().optional()
|
|
2412
|
-
}),
|
|
2477
|
+
}), Vn = e.object({
|
|
2413
2478
|
// When the refresh token record was created.
|
|
2414
2479
|
created_at: e.string(),
|
|
2415
2480
|
// When the token was explicitly revoked (null = still active).
|
|
2416
2481
|
revoked_at: e.string().optional(),
|
|
2417
2482
|
// Spread in the rest of the refresh token properties.
|
|
2418
|
-
...
|
|
2419
|
-
}),
|
|
2483
|
+
...jo.shape
|
|
2484
|
+
}), Yn = e.object({
|
|
2420
2485
|
to: e.string(),
|
|
2421
2486
|
message: e.string()
|
|
2422
|
-
}),
|
|
2487
|
+
}), Zn = e.object({
|
|
2423
2488
|
name: e.string(),
|
|
2424
2489
|
options: e.object({})
|
|
2425
|
-
}),
|
|
2490
|
+
}), ko = e.object({
|
|
2426
2491
|
value: e.string(),
|
|
2427
2492
|
description: e.string().optional()
|
|
2428
|
-
}),
|
|
2493
|
+
}), Ro = e.object({
|
|
2429
2494
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
2430
2495
|
enforce_policies: e.boolean().optional(),
|
|
2431
2496
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -2435,11 +2500,11 @@ const go = e.object({
|
|
|
2435
2500
|
mtls: e.object({
|
|
2436
2501
|
bound_access_tokens: e.boolean().optional()
|
|
2437
2502
|
}).optional()
|
|
2438
|
-
}),
|
|
2503
|
+
}), vo = e.object({
|
|
2439
2504
|
id: e.string().optional(),
|
|
2440
2505
|
name: e.string(),
|
|
2441
2506
|
identifier: e.string(),
|
|
2442
|
-
scopes: e.array(
|
|
2507
|
+
scopes: e.array(ko).optional(),
|
|
2443
2508
|
signing_alg: e.string().optional(),
|
|
2444
2509
|
signing_secret: e.string().optional(),
|
|
2445
2510
|
token_lifetime: e.number().default(86400),
|
|
@@ -2447,30 +2512,30 @@ const go = e.object({
|
|
|
2447
2512
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
2448
2513
|
allow_offline_access: e.boolean().optional(),
|
|
2449
2514
|
verificationKey: e.string().optional(),
|
|
2450
|
-
options:
|
|
2515
|
+
options: Ro.optional(),
|
|
2451
2516
|
is_system: e.boolean().optional(),
|
|
2452
2517
|
metadata: e.record(e.any()).optional()
|
|
2453
|
-
}),
|
|
2454
|
-
...
|
|
2518
|
+
}), Do = e.object({
|
|
2519
|
+
...vo.shape,
|
|
2455
2520
|
created_at: e.string().optional(),
|
|
2456
2521
|
updated_at: e.string().optional()
|
|
2457
|
-
}),
|
|
2522
|
+
}), Qn = e.array(Do), Lo = e.object({
|
|
2458
2523
|
role_id: e.string(),
|
|
2459
2524
|
resource_server_identifier: e.string(),
|
|
2460
2525
|
permission_name: e.string()
|
|
2461
|
-
}),
|
|
2462
|
-
...
|
|
2526
|
+
}), xo = e.object({
|
|
2527
|
+
...Lo.shape,
|
|
2463
2528
|
created_at: e.string()
|
|
2464
|
-
}),
|
|
2529
|
+
}), $n = e.array(xo), Uo = e.object({
|
|
2465
2530
|
user_id: e.string(),
|
|
2466
2531
|
resource_server_identifier: e.string(),
|
|
2467
2532
|
permission_name: e.string(),
|
|
2468
2533
|
organization_id: e.string().optional()
|
|
2469
|
-
}),
|
|
2470
|
-
...
|
|
2534
|
+
}), Fo = e.object({
|
|
2535
|
+
...Uo.shape,
|
|
2471
2536
|
tenant_id: e.string(),
|
|
2472
2537
|
created_at: e.string().optional()
|
|
2473
|
-
}),
|
|
2538
|
+
}), Jn = e.array(Fo), Po = e.object({
|
|
2474
2539
|
user_id: e.string(),
|
|
2475
2540
|
resource_server_identifier: e.string(),
|
|
2476
2541
|
resource_server_name: e.string(),
|
|
@@ -2478,17 +2543,17 @@ const go = e.object({
|
|
|
2478
2543
|
description: e.string().nullable().optional(),
|
|
2479
2544
|
created_at: e.string().optional(),
|
|
2480
2545
|
organization_id: e.string().optional()
|
|
2481
|
-
}),
|
|
2482
|
-
|
|
2483
|
-
),
|
|
2546
|
+
}), ei = e.array(
|
|
2547
|
+
Po
|
|
2548
|
+
), Mo = e.object({
|
|
2484
2549
|
user_id: e.string(),
|
|
2485
2550
|
role_id: e.string(),
|
|
2486
2551
|
organization_id: e.string().optional()
|
|
2487
|
-
}),
|
|
2488
|
-
...
|
|
2552
|
+
}), Ho = e.object({
|
|
2553
|
+
...Mo.shape,
|
|
2489
2554
|
tenant_id: e.string(),
|
|
2490
2555
|
created_at: e.string().optional()
|
|
2491
|
-
}),
|
|
2556
|
+
}), ti = e.array(Ho), Go = e.object({
|
|
2492
2557
|
id: e.string().optional().openapi({
|
|
2493
2558
|
description: "The unique identifier of the role. If not provided, one will be generated."
|
|
2494
2559
|
}),
|
|
@@ -2502,13 +2567,13 @@ const go = e.object({
|
|
|
2502
2567
|
metadata: e.record(e.any()).optional().openapi({
|
|
2503
2568
|
description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
|
|
2504
2569
|
})
|
|
2505
|
-
}),
|
|
2570
|
+
}), Wo = Go.extend({
|
|
2506
2571
|
id: e.string().openapi({
|
|
2507
2572
|
description: "The unique identifier of the role"
|
|
2508
2573
|
}),
|
|
2509
2574
|
created_at: e.string().optional(),
|
|
2510
2575
|
updated_at: e.string().optional()
|
|
2511
|
-
}),
|
|
2576
|
+
}), oi = e.array(Wo), Bo = e.object({
|
|
2512
2577
|
logo_url: e.string().optional().openapi({
|
|
2513
2578
|
description: "URL of the organization's logo"
|
|
2514
2579
|
}),
|
|
@@ -2520,7 +2585,7 @@ const go = e.object({
|
|
|
2520
2585
|
description: "Page background color in hex format (e.g., #FFFFFF)"
|
|
2521
2586
|
})
|
|
2522
2587
|
}).optional()
|
|
2523
|
-
}).optional(),
|
|
2588
|
+
}).optional(), Ko = e.object({
|
|
2524
2589
|
connection_id: e.string().openapi({
|
|
2525
2590
|
description: "ID of the connection"
|
|
2526
2591
|
}),
|
|
@@ -2533,7 +2598,7 @@ const go = e.object({
|
|
|
2533
2598
|
is_signup_enabled: e.boolean().default(!0).openapi({
|
|
2534
2599
|
description: "Whether signup is enabled for this connection"
|
|
2535
2600
|
})
|
|
2536
|
-
}),
|
|
2601
|
+
}), zo = e.object({
|
|
2537
2602
|
client_credentials: e.object({
|
|
2538
2603
|
enforce: e.boolean().default(!1).openapi({
|
|
2539
2604
|
description: "Whether to enforce token quota limits"
|
|
@@ -2545,7 +2610,7 @@ const go = e.object({
|
|
|
2545
2610
|
description: "Maximum tokens per hour (0 = unlimited)"
|
|
2546
2611
|
})
|
|
2547
2612
|
}).optional()
|
|
2548
|
-
}).optional(),
|
|
2613
|
+
}).optional(), qo = e.object({
|
|
2549
2614
|
id: e.string().optional(),
|
|
2550
2615
|
name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
|
|
2551
2616
|
message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
|
|
@@ -2555,31 +2620,31 @@ const go = e.object({
|
|
|
2555
2620
|
display_name: e.string().optional().openapi({
|
|
2556
2621
|
description: "The display name of the organization"
|
|
2557
2622
|
}),
|
|
2558
|
-
branding:
|
|
2623
|
+
branding: Bo,
|
|
2559
2624
|
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
2560
2625
|
description: "Custom metadata for the organization"
|
|
2561
2626
|
}),
|
|
2562
|
-
enabled_connections: e.array(
|
|
2627
|
+
enabled_connections: e.array(Ko).default([]).optional().openapi({
|
|
2563
2628
|
description: "List of enabled connections for the organization"
|
|
2564
2629
|
}),
|
|
2565
|
-
token_quota:
|
|
2566
|
-
}),
|
|
2567
|
-
...
|
|
2630
|
+
token_quota: zo
|
|
2631
|
+
}), ni = e.object({
|
|
2632
|
+
...qo.shape,
|
|
2568
2633
|
...a.shape,
|
|
2569
2634
|
id: e.string(),
|
|
2570
2635
|
// Override name to be lenient when reading from database (to support existing uppercase names)
|
|
2571
2636
|
name: e.string().min(1).openapi({
|
|
2572
2637
|
description: "The name of the organization"
|
|
2573
2638
|
})
|
|
2574
|
-
}),
|
|
2639
|
+
}), Xo = e.object({
|
|
2575
2640
|
connection_id: e.string().openapi({
|
|
2576
2641
|
description: "ID of the tenant-level connection to enable for the org."
|
|
2577
2642
|
}),
|
|
2578
2643
|
assign_membership_on_login: e.boolean().optional().default(!1),
|
|
2579
2644
|
show_as_button: e.boolean().optional().default(!0),
|
|
2580
2645
|
is_signup_enabled: e.boolean().optional().default(!0)
|
|
2581
|
-
}),
|
|
2582
|
-
...
|
|
2646
|
+
}), Vo = e.object({
|
|
2647
|
+
...Xo.shape,
|
|
2583
2648
|
// Auth0 includes the embedded connection in GET responses.
|
|
2584
2649
|
connection: e.object({
|
|
2585
2650
|
name: e.string().optional(),
|
|
@@ -2587,20 +2652,20 @@ const go = e.object({
|
|
|
2587
2652
|
}).optional(),
|
|
2588
2653
|
created_at: e.string().optional(),
|
|
2589
2654
|
updated_at: e.string().optional()
|
|
2590
|
-
}),
|
|
2591
|
-
|
|
2592
|
-
),
|
|
2655
|
+
}), ii = e.array(
|
|
2656
|
+
Vo
|
|
2657
|
+
), Yo = e.object({
|
|
2593
2658
|
user_id: e.string().openapi({
|
|
2594
2659
|
description: "ID of the user"
|
|
2595
2660
|
}),
|
|
2596
2661
|
organization_id: e.string().openapi({
|
|
2597
2662
|
description: "ID of the organization"
|
|
2598
2663
|
})
|
|
2599
|
-
}),
|
|
2600
|
-
...
|
|
2664
|
+
}), ai = e.object({
|
|
2665
|
+
...Yo.shape,
|
|
2601
2666
|
...a.shape,
|
|
2602
2667
|
id: e.string()
|
|
2603
|
-
}),
|
|
2668
|
+
}), si = e.object({
|
|
2604
2669
|
// Session settings
|
|
2605
2670
|
idle_session_lifetime: e.number().default(72),
|
|
2606
2671
|
session_lifetime: e.number().default(168),
|
|
@@ -2700,7 +2765,7 @@ const go = e.object({
|
|
|
2700
2765
|
message: e.string().optional()
|
|
2701
2766
|
}).optional()
|
|
2702
2767
|
}).optional()
|
|
2703
|
-
}),
|
|
2768
|
+
}), ri = e.object({
|
|
2704
2769
|
date: e.string().openapi({
|
|
2705
2770
|
description: "Date these events occurred in ISO 8601 format",
|
|
2706
2771
|
example: "2025-12-19"
|
|
@@ -2725,10 +2790,10 @@ const go = e.object({
|
|
|
2725
2790
|
description: "Approximate date and time the first event occurred in ISO 8601 format",
|
|
2726
2791
|
example: "2025-12-19T00:00:00.000Z"
|
|
2727
2792
|
})
|
|
2728
|
-
}),
|
|
2793
|
+
}), li = e.number().openapi({
|
|
2729
2794
|
description: "Number of active users in the last 30 days",
|
|
2730
2795
|
example: 1234
|
|
2731
|
-
}),
|
|
2796
|
+
}), Zo = e.enum([
|
|
2732
2797
|
"login",
|
|
2733
2798
|
"login-id",
|
|
2734
2799
|
"login-password",
|
|
@@ -2757,17 +2822,17 @@ const go = e.object({
|
|
|
2757
2822
|
"custom-form",
|
|
2758
2823
|
"login-passwordless",
|
|
2759
2824
|
"mfa-login-options"
|
|
2760
|
-
]),
|
|
2825
|
+
]), Qo = e.record(e.string(), e.record(e.string(), e.string())).openapi({
|
|
2761
2826
|
type: "object",
|
|
2762
2827
|
additionalProperties: {
|
|
2763
2828
|
type: "object",
|
|
2764
2829
|
additionalProperties: { type: "string" }
|
|
2765
2830
|
}
|
|
2766
|
-
}),
|
|
2767
|
-
prompt:
|
|
2831
|
+
}), ci = e.object({
|
|
2832
|
+
prompt: Zo,
|
|
2768
2833
|
language: e.string(),
|
|
2769
|
-
custom_text:
|
|
2770
|
-
}),
|
|
2834
|
+
custom_text: Qo
|
|
2835
|
+
}), pi = {
|
|
2771
2836
|
EMAIL: "email",
|
|
2772
2837
|
SMS: "sms",
|
|
2773
2838
|
USERNAME_PASSWORD: "Username-Password-Authentication",
|
|
@@ -2783,11 +2848,11 @@ const go = e.object({
|
|
|
2783
2848
|
WAAD: "waad",
|
|
2784
2849
|
ADFS: "adfs",
|
|
2785
2850
|
AUTH0: "auth0"
|
|
2786
|
-
},
|
|
2851
|
+
}, di = {
|
|
2787
2852
|
DATABASE: "database",
|
|
2788
2853
|
SOCIAL: "social",
|
|
2789
2854
|
PASSWORDLESS: "passwordless"
|
|
2790
|
-
},
|
|
2855
|
+
}, $o = e.enum([
|
|
2791
2856
|
"phone",
|
|
2792
2857
|
"totp",
|
|
2793
2858
|
"email",
|
|
@@ -2797,7 +2862,7 @@ const go = e.object({
|
|
|
2797
2862
|
"passkey"
|
|
2798
2863
|
]), V = e.object({
|
|
2799
2864
|
user_id: e.string(),
|
|
2800
|
-
type:
|
|
2865
|
+
type: $o,
|
|
2801
2866
|
// Phone-specific
|
|
2802
2867
|
phone_number: e.string().optional(),
|
|
2803
2868
|
// TOTP-specific
|
|
@@ -2812,7 +2877,7 @@ const go = e.object({
|
|
|
2812
2877
|
// Common
|
|
2813
2878
|
confirmed: e.boolean().default(!1)
|
|
2814
2879
|
});
|
|
2815
|
-
function
|
|
2880
|
+
function Y(t, o) {
|
|
2816
2881
|
t.type === "phone" && !t.phone_number && o.addIssue({
|
|
2817
2882
|
code: e.ZodIssueCode.custom,
|
|
2818
2883
|
message: "phone_number is required when type is 'phone'",
|
|
@@ -2831,64 +2896,64 @@ function X(t, o) {
|
|
|
2831
2896
|
path: ["public_key"]
|
|
2832
2897
|
}));
|
|
2833
2898
|
}
|
|
2834
|
-
const
|
|
2899
|
+
const _i = V.superRefine(Y), gi = e.object({
|
|
2835
2900
|
...V.shape,
|
|
2836
2901
|
id: e.string(),
|
|
2837
2902
|
created_at: e.string(),
|
|
2838
2903
|
updated_at: e.string()
|
|
2839
|
-
}).superRefine(
|
|
2840
|
-
function
|
|
2904
|
+
}).superRefine(Y);
|
|
2905
|
+
function ui(t) {
|
|
2841
2906
|
const [o, n] = t.split("|");
|
|
2842
2907
|
if (!o || !n)
|
|
2843
2908
|
throw new Error(`Invalid user_id: ${t}`);
|
|
2844
2909
|
return { connection: o, id: n };
|
|
2845
2910
|
}
|
|
2846
|
-
function
|
|
2911
|
+
function mi(t) {
|
|
2847
2912
|
const {
|
|
2848
2913
|
primary: o,
|
|
2849
2914
|
secondaries: n,
|
|
2850
2915
|
syncMethods: h = ["create", "rawCreate", "update", "remove", "delete", "set"]
|
|
2851
2916
|
} = t, S = {
|
|
2852
|
-
get(
|
|
2853
|
-
if (typeof
|
|
2854
|
-
return
|
|
2855
|
-
const d =
|
|
2856
|
-
return typeof d != "function" ? d : h.includes(
|
|
2857
|
-
const y = await d.apply(
|
|
2858
|
-
for (const
|
|
2859
|
-
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];
|
|
2860
2925
|
if (typeof b != "function")
|
|
2861
2926
|
continue;
|
|
2862
2927
|
const A = (async () => {
|
|
2863
2928
|
try {
|
|
2864
|
-
await b.apply(
|
|
2929
|
+
await b.apply(r.adapter, _);
|
|
2865
2930
|
} catch (f) {
|
|
2866
2931
|
try {
|
|
2867
|
-
|
|
2868
|
-
`Passthrough adapter: secondary write failed for ${
|
|
2932
|
+
r.onError ? r.onError(f, s, _) : console.error(
|
|
2933
|
+
`Passthrough adapter: secondary write failed for ${s}:`,
|
|
2869
2934
|
f
|
|
2870
2935
|
);
|
|
2871
2936
|
} catch (I) {
|
|
2872
2937
|
console.error(
|
|
2873
|
-
`Passthrough adapter: onError handler threw for ${
|
|
2938
|
+
`Passthrough adapter: onError handler threw for ${s}:`,
|
|
2874
2939
|
I
|
|
2875
2940
|
);
|
|
2876
2941
|
}
|
|
2877
2942
|
}
|
|
2878
2943
|
})();
|
|
2879
|
-
|
|
2944
|
+
r.blocking && g.push(A);
|
|
2880
2945
|
}
|
|
2881
2946
|
return g.length > 0 && await Promise.all(g), y;
|
|
2882
|
-
} : d.bind(
|
|
2947
|
+
} : d.bind(p);
|
|
2883
2948
|
}
|
|
2884
2949
|
};
|
|
2885
2950
|
return new Proxy(o, S);
|
|
2886
2951
|
}
|
|
2887
|
-
function
|
|
2952
|
+
function hi(t) {
|
|
2888
2953
|
return t;
|
|
2889
2954
|
}
|
|
2890
|
-
function
|
|
2891
|
-
var S,
|
|
2955
|
+
function bi(t) {
|
|
2956
|
+
var S, p, s, d, _, y, g, r, b, A, f, I;
|
|
2892
2957
|
const o = t == null ? void 0 : t.options;
|
|
2893
2958
|
if (!o)
|
|
2894
2959
|
return {
|
|
@@ -2899,12 +2964,12 @@ function si(t) {
|
|
|
2899
2964
|
};
|
|
2900
2965
|
const n = o.attributes;
|
|
2901
2966
|
if (n) {
|
|
2902
|
-
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;
|
|
2903
2968
|
return {
|
|
2904
|
-
usernameIdentifierActive:
|
|
2905
|
-
emailIdentifierActive:
|
|
2906
|
-
usernameMinLength:
|
|
2907
|
-
usernameMaxLength:
|
|
2969
|
+
usernameIdentifierActive: Z,
|
|
2970
|
+
emailIdentifierActive: Q,
|
|
2971
|
+
usernameMinLength: $,
|
|
2972
|
+
usernameMaxLength: J
|
|
2908
2973
|
};
|
|
2909
2974
|
}
|
|
2910
2975
|
return {
|
|
@@ -2914,205 +2979,214 @@ function si(t) {
|
|
|
2914
2979
|
usernameMaxLength: ((I = (f = o.validation) == null ? void 0 : f.username) == null ? void 0 : I.max) ?? 15
|
|
2915
2980
|
};
|
|
2916
2981
|
}
|
|
2917
|
-
function
|
|
2982
|
+
function fi(t) {
|
|
2918
2983
|
return typeof t == "object" && t !== null && !Array.isArray(t);
|
|
2919
2984
|
}
|
|
2920
2985
|
export {
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2986
|
+
rn as Auth0ActionEnum,
|
|
2987
|
+
ro as Auth0Client,
|
|
2988
|
+
F as AuthorizationResponseMode,
|
|
2924
2989
|
U as AuthorizationResponseType,
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
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,
|
|
2943
3016
|
R as actionSecretSchema,
|
|
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
|
-
|
|
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,
|
|
2989
3063
|
m as coordinatesSchema,
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
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,
|
|
3011
3085
|
u as fontDetailsSchema,
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
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
|
-
|
|
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
|
|
3118
3192
|
};
|