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