@authhero/adapter-interfaces 4.8.0 → 4.9.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 +76 -3
- package/dist/adapter-interfaces.mjs +312 -285
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/RefreshTokens.d.ts +27 -1
- package/dist/types/types/RefreshTokens.d.ts +14 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/lucene.d.ts +1 -0
- package/dist/types/utils/user-id.d.ts +10 -0
- package/dist/types/utils/username-validation.d.ts +21 -0
- package/package.json +1 -1
|
@@ -44,12 +44,12 @@ var t = e.object({
|
|
|
44
44
|
id: e.string(),
|
|
45
45
|
msg: e.string(),
|
|
46
46
|
url: e.string().optional()
|
|
47
|
-
}),
|
|
47
|
+
}), u = e.object({
|
|
48
48
|
action_name: e.string(),
|
|
49
49
|
error: l.nullable(),
|
|
50
50
|
started_at: e.string(),
|
|
51
51
|
ended_at: e.string()
|
|
52
|
-
}),
|
|
52
|
+
}), te = e.object({
|
|
53
53
|
level: e.enum([
|
|
54
54
|
"log",
|
|
55
55
|
"info",
|
|
@@ -58,23 +58,23 @@ var t = e.object({
|
|
|
58
58
|
"debug"
|
|
59
59
|
]),
|
|
60
60
|
message: e.string()
|
|
61
|
-
}),
|
|
61
|
+
}), ne = e.array(e.object({
|
|
62
62
|
action_name: e.string(),
|
|
63
|
-
lines: e.array(
|
|
64
|
-
})),
|
|
63
|
+
lines: e.array(te)
|
|
64
|
+
})), re = e.object({
|
|
65
65
|
id: e.string(),
|
|
66
66
|
tenant_id: e.string(),
|
|
67
67
|
trigger_id: ee,
|
|
68
68
|
status: c,
|
|
69
|
-
results: e.array(
|
|
70
|
-
logs:
|
|
69
|
+
results: e.array(u),
|
|
70
|
+
logs: ne.optional(),
|
|
71
71
|
created_at: e.string(),
|
|
72
72
|
updated_at: e.string()
|
|
73
|
-
}),
|
|
73
|
+
}), ie = re.omit({
|
|
74
74
|
tenant_id: !0,
|
|
75
75
|
created_at: !0,
|
|
76
76
|
updated_at: !0
|
|
77
|
-
}),
|
|
77
|
+
}), ae = e.object({
|
|
78
78
|
action_id: e.string(),
|
|
79
79
|
code: e.string().max(1e5),
|
|
80
80
|
runtime: e.string().max(50).optional(),
|
|
@@ -82,16 +82,16 @@ var t = e.object({
|
|
|
82
82
|
secrets: e.array(i).optional(),
|
|
83
83
|
supported_triggers: e.array(n).optional(),
|
|
84
84
|
deployed: e.boolean().default(!0)
|
|
85
|
-
}),
|
|
85
|
+
}), oe = ae.extend({
|
|
86
86
|
id: e.string(),
|
|
87
87
|
tenant_id: e.string(),
|
|
88
88
|
number: e.number().int()
|
|
89
|
-
}).extend(t.shape),
|
|
89
|
+
}).extend(t.shape), se = e.enum([
|
|
90
90
|
"user_action",
|
|
91
91
|
"admin_action",
|
|
92
92
|
"system",
|
|
93
93
|
"api"
|
|
94
|
-
]),
|
|
94
|
+
]), ce = e.object({
|
|
95
95
|
type: e.enum([
|
|
96
96
|
"user",
|
|
97
97
|
"admin",
|
|
@@ -105,7 +105,7 @@ var t = e.object({
|
|
|
105
105
|
org_name: e.string().optional(),
|
|
106
106
|
scopes: e.array(e.string()).optional(),
|
|
107
107
|
client_id: e.string().optional()
|
|
108
|
-
}),
|
|
108
|
+
}), le = e.object({
|
|
109
109
|
type: e.string(),
|
|
110
110
|
id: e.string(),
|
|
111
111
|
before: e.record(e.string(), e.unknown()).optional(),
|
|
@@ -114,7 +114,7 @@ var t = e.object({
|
|
|
114
114
|
old: e.unknown(),
|
|
115
115
|
new: e.unknown()
|
|
116
116
|
})).optional()
|
|
117
|
-
}),
|
|
117
|
+
}), ue = e.object({
|
|
118
118
|
method: e.string(),
|
|
119
119
|
path: e.string(),
|
|
120
120
|
query: e.record(e.string(), e.string()).optional(),
|
|
@@ -123,30 +123,30 @@ var t = e.object({
|
|
|
123
123
|
user_agent: e.string().optional(),
|
|
124
124
|
correlation_id: e.string().optional(),
|
|
125
125
|
redirect_uri: e.string().optional()
|
|
126
|
-
}),
|
|
126
|
+
}), de = e.object({
|
|
127
127
|
status_code: e.number(),
|
|
128
128
|
body: e.unknown().optional()
|
|
129
|
-
}),
|
|
129
|
+
}), fe = e.object({
|
|
130
130
|
country_code: e.string(),
|
|
131
131
|
city_name: e.string(),
|
|
132
132
|
latitude: e.string(),
|
|
133
133
|
longitude: e.string(),
|
|
134
134
|
time_zone: e.string(),
|
|
135
135
|
continent_code: e.string()
|
|
136
|
-
}),
|
|
136
|
+
}), pe = e.object({
|
|
137
137
|
name: e.string(),
|
|
138
138
|
version: e.string(),
|
|
139
139
|
env: e.record(e.string(), e.string()).optional()
|
|
140
|
-
}),
|
|
140
|
+
}), me = e.object({
|
|
141
141
|
tenant_id: e.string(),
|
|
142
142
|
event_type: e.string(),
|
|
143
143
|
log_type: e.string(),
|
|
144
144
|
description: e.string().optional(),
|
|
145
|
-
category:
|
|
146
|
-
actor:
|
|
147
|
-
target:
|
|
148
|
-
request:
|
|
149
|
-
response:
|
|
145
|
+
category: se,
|
|
146
|
+
actor: ce,
|
|
147
|
+
target: le,
|
|
148
|
+
request: ue,
|
|
149
|
+
response: de.optional(),
|
|
150
150
|
connection: e.string().optional(),
|
|
151
151
|
connection_id: e.string().optional(),
|
|
152
152
|
client_name: e.string().optional(),
|
|
@@ -154,29 +154,29 @@ var t = e.object({
|
|
|
154
154
|
strategy_type: e.string().optional(),
|
|
155
155
|
audience: e.string().optional(),
|
|
156
156
|
scope: e.string().optional(),
|
|
157
|
-
location:
|
|
158
|
-
auth0_client:
|
|
157
|
+
location: fe.optional(),
|
|
158
|
+
auth0_client: pe.optional(),
|
|
159
159
|
hostname: e.string(),
|
|
160
160
|
is_mobile: e.boolean().optional(),
|
|
161
161
|
timestamp: e.string()
|
|
162
|
-
}),
|
|
162
|
+
}), he = me.extend({ id: e.string() }), ge = e.enum([
|
|
163
163
|
"AUTH0",
|
|
164
164
|
"EMAIL",
|
|
165
165
|
"REDIRECT"
|
|
166
|
-
]),
|
|
166
|
+
]), _e = e.enum([
|
|
167
167
|
"CREATE_USER",
|
|
168
168
|
"GET_USER",
|
|
169
169
|
"UPDATE_USER",
|
|
170
170
|
"SEND_REQUEST",
|
|
171
171
|
"SEND_EMAIL"
|
|
172
|
-
]),
|
|
172
|
+
]), ve = e.enum(["VERIFY_EMAIL"]), ye = e.object({
|
|
173
173
|
require_mx_record: e.boolean().optional(),
|
|
174
174
|
block_aliases: e.boolean().optional(),
|
|
175
175
|
block_free_emails: e.boolean().optional(),
|
|
176
176
|
block_disposable_emails: e.boolean().optional(),
|
|
177
177
|
blocklist: e.array(e.string()).optional(),
|
|
178
178
|
allowlist: e.array(e.string()).optional()
|
|
179
|
-
}),
|
|
179
|
+
}), be = e.object({
|
|
180
180
|
id: e.string(),
|
|
181
181
|
alias: e.string().max(100).optional(),
|
|
182
182
|
type: e.literal("AUTH0"),
|
|
@@ -188,7 +188,7 @@ var t = e.object({
|
|
|
188
188
|
user_id: e.string(),
|
|
189
189
|
changes: e.record(e.string(), e.any())
|
|
190
190
|
})
|
|
191
|
-
}),
|
|
191
|
+
}), xe = e.object({
|
|
192
192
|
id: e.string(),
|
|
193
193
|
alias: e.string().max(100).optional(),
|
|
194
194
|
type: e.literal("EMAIL"),
|
|
@@ -197,13 +197,13 @@ var t = e.object({
|
|
|
197
197
|
mask_output: e.boolean().optional(),
|
|
198
198
|
params: e.object({
|
|
199
199
|
email: e.string(),
|
|
200
|
-
rules:
|
|
200
|
+
rules: ye.optional()
|
|
201
201
|
})
|
|
202
|
-
}),
|
|
202
|
+
}), Se = e.enum([
|
|
203
203
|
"change-email",
|
|
204
204
|
"account",
|
|
205
205
|
"custom"
|
|
206
|
-
]),
|
|
206
|
+
]), Ce = e.object({
|
|
207
207
|
id: e.string(),
|
|
208
208
|
alias: e.string().max(100).optional(),
|
|
209
209
|
type: e.literal("REDIRECT"),
|
|
@@ -211,32 +211,32 @@ var t = e.object({
|
|
|
211
211
|
allow_failure: e.boolean().optional(),
|
|
212
212
|
mask_output: e.boolean().optional(),
|
|
213
213
|
params: e.object({
|
|
214
|
-
target:
|
|
214
|
+
target: Se.openapi({ description: "The predefined target to redirect to, or 'custom' for a custom URL" }),
|
|
215
215
|
custom_url: e.string().optional().openapi({ description: "Custom URL to redirect to when target is 'custom'" })
|
|
216
216
|
})
|
|
217
|
-
}),
|
|
217
|
+
}), d = e.union([
|
|
218
|
+
be,
|
|
218
219
|
xe,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
]), Ee = e.object({
|
|
220
|
+
Ce
|
|
221
|
+
]), we = e.object({
|
|
222
222
|
name: e.string().min(1).max(150).openapi({ description: "The name of the flow" }),
|
|
223
|
-
actions: e.array(
|
|
224
|
-
}),
|
|
223
|
+
actions: e.array(d).optional().default([]).openapi({ description: "The list of actions to execute in sequence" })
|
|
224
|
+
}), Te = we.extend(t.shape).extend({ id: e.string().openapi({
|
|
225
225
|
description: "Unique identifier for the flow",
|
|
226
226
|
example: "af_12tMpdJ3iek7svMyZkSh5M"
|
|
227
|
-
}) }),
|
|
227
|
+
}) }), Ee = e.object({
|
|
228
228
|
page: e.string().min(0).optional().default("0").transform((e) => parseInt(e, 10)).openapi({ description: "The page number where 0 is the first page" }),
|
|
229
229
|
per_page: e.string().min(1).optional().default("50").transform((e) => parseInt(e, 10)).openapi({ description: "The number of items per page. Defaults to 50." }),
|
|
230
230
|
include_totals: e.string().optional().default("false").transform((e) => e === "true").openapi({ description: "If the total number of items should be included in the response" }),
|
|
231
231
|
sort: e.string().regex(/^.+:(-1|1)$/).optional().openapi({ description: "A property that should have the format 'string:-1' or 'string:1'" }),
|
|
232
232
|
q: e.string().optional().openapi({ description: "A lucene query string used to filter the results" })
|
|
233
|
-
}),
|
|
233
|
+
}), De = e.object({
|
|
234
234
|
start: e.number(),
|
|
235
235
|
limit: e.number(),
|
|
236
236
|
length: e.number(),
|
|
237
237
|
total: e.number().optional(),
|
|
238
238
|
next: e.string().optional()
|
|
239
|
-
}),
|
|
239
|
+
}), Oe = e.object({
|
|
240
240
|
email: e.string().optional(),
|
|
241
241
|
email_verified: e.boolean().optional(),
|
|
242
242
|
name: e.string().optional(),
|
|
@@ -245,7 +245,7 @@ var t = e.object({
|
|
|
245
245
|
phone_number: e.string().optional(),
|
|
246
246
|
phone_verified: e.boolean().optional(),
|
|
247
247
|
family_name: e.string().optional()
|
|
248
|
-
}).catchall(e.any()),
|
|
248
|
+
}).catchall(e.any()), f = e.object({
|
|
249
249
|
connection: e.string(),
|
|
250
250
|
user_id: e.string(),
|
|
251
251
|
provider: e.string(),
|
|
@@ -258,15 +258,15 @@ var t = e.object({
|
|
|
258
258
|
access_token: e.string().optional(),
|
|
259
259
|
access_token_secret: e.string().optional(),
|
|
260
260
|
refresh_token: e.string().optional(),
|
|
261
|
-
profileData:
|
|
262
|
-
}),
|
|
261
|
+
profileData: Oe.optional()
|
|
262
|
+
}), p = e.object({
|
|
263
263
|
formatted: e.string().optional(),
|
|
264
264
|
street_address: e.string().optional(),
|
|
265
265
|
locality: e.string().optional(),
|
|
266
266
|
region: e.string().optional(),
|
|
267
267
|
postal_code: e.string().optional(),
|
|
268
268
|
country: e.string().optional()
|
|
269
|
-
}).optional(),
|
|
269
|
+
}).optional(), m = e.object({
|
|
270
270
|
email: e.string().transform((e) => e.toLowerCase()).optional(),
|
|
271
271
|
username: e.string().refine((e) => !e.includes("@"), { message: "Usernames must not contain \"@\". Use the email field for email addresses." }).optional(),
|
|
272
272
|
phone_number: e.string().optional(),
|
|
@@ -289,8 +289,8 @@ var t = e.object({
|
|
|
289
289
|
gender: e.string().optional(),
|
|
290
290
|
birthdate: e.string().optional(),
|
|
291
291
|
zoneinfo: e.string().optional(),
|
|
292
|
-
address:
|
|
293
|
-
}),
|
|
292
|
+
address: p
|
|
293
|
+
}), h = m.extend({
|
|
294
294
|
email_verified: e.boolean().default(!1),
|
|
295
295
|
verify_email: e.boolean().optional(),
|
|
296
296
|
last_ip: e.string().optional(),
|
|
@@ -305,29 +305,29 @@ var t = e.object({
|
|
|
305
305
|
hash: e.string(),
|
|
306
306
|
algorithm: e.string()
|
|
307
307
|
}).optional()
|
|
308
|
-
}),
|
|
308
|
+
}), g = h.omit({ password: !0 }).extend(t.shape).extend({
|
|
309
309
|
user_id: e.string(),
|
|
310
310
|
provider: e.string(),
|
|
311
311
|
is_social: e.boolean(),
|
|
312
312
|
email: e.string().optional(),
|
|
313
313
|
login_count: e.number().default(0),
|
|
314
|
-
identities: e.array(
|
|
315
|
-
}),
|
|
314
|
+
identities: e.array(f).optional()
|
|
315
|
+
}), ke = g.omit({ registration_completed_at: !0 }), Ae = m.extend({
|
|
316
316
|
login_count: e.number(),
|
|
317
317
|
multifactor: e.array(e.string()).optional(),
|
|
318
318
|
last_ip: e.string().optional(),
|
|
319
319
|
last_login: e.string().optional(),
|
|
320
320
|
user_id: e.string()
|
|
321
|
-
}).catchall(e.any()),
|
|
321
|
+
}).catchall(e.any()), je = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", Me = (e = 21) => {
|
|
322
322
|
let t = "", n = crypto.getRandomValues(new Uint8Array(e |= 0));
|
|
323
|
-
for (; e--;) t +=
|
|
323
|
+
for (; e--;) t += je[n[e] & 63];
|
|
324
324
|
return t;
|
|
325
|
-
},
|
|
325
|
+
}, _ = e.object({
|
|
326
326
|
client_id: e.string().optional().openapi({ description: "ID of this client. Generated server-side if omitted (Auth0 behavior)." }),
|
|
327
327
|
name: e.string().min(1).openapi({ description: "Name of this client (min length: 1 character, does not allow < or >)." }),
|
|
328
328
|
description: e.string().max(140).optional().openapi({ description: "Free text description of this client (max length: 140 characters)." }),
|
|
329
329
|
global: e.boolean().default(!1).openapi({ description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)." }),
|
|
330
|
-
client_secret: e.string().default(() =>
|
|
330
|
+
client_secret: e.string().default(() => Me()).optional().openapi({ description: "Client secret (which you must not make public)." }),
|
|
331
331
|
app_type: e.enum([
|
|
332
332
|
"native",
|
|
333
333
|
"spa",
|
|
@@ -440,10 +440,10 @@ var t = e.object({
|
|
|
440
440
|
]).optional().openapi({ description: "Provenance of this client. `manual` = Management API; `open_dcr` = RFC 7591 without IAT; `iat_dcr` = RFC 7591 with an Initial Access Token." }),
|
|
441
441
|
registration_metadata: e.record(e.string(), e.any()).default({}).optional().openapi({ description: "Arbitrary metadata captured at Dynamic Client Registration time that isn't a first-class client field (e.g. integration_type, domain). Also stores `iat_constraints` for clients created via IAT so RFC 7592 PUT can enforce field immutability." }),
|
|
442
442
|
user_linking_mode: e.enum(["builtin", "off"]).optional().openapi({ 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." })
|
|
443
|
-
}),
|
|
443
|
+
}), Ne = e.object({
|
|
444
444
|
created_at: e.string(),
|
|
445
445
|
updated_at: e.string()
|
|
446
|
-
}).extend(
|
|
446
|
+
}).extend(_.shape).extend({ client_id: e.string() }), v = e.object({
|
|
447
447
|
client_id: e.string().min(1).openapi({ description: "ID of the client." }),
|
|
448
448
|
audience: e.string().min(1).openapi({ description: "The audience (API identifier) of this client grant." }),
|
|
449
449
|
scope: e.array(e.string()).optional().openapi({ description: "Scopes allowed for this client grant." }),
|
|
@@ -456,38 +456,38 @@ var t = e.object({
|
|
|
456
456
|
is_system: e.boolean().optional().openapi({ description: "If enabled, this grant is a special grant created by Auth0. It cannot be modified or deleted directly." }),
|
|
457
457
|
subject_type: e.enum(["client", "user"]).optional().openapi({ description: "The type of application access the client grant allows. Use of this field is subject to the applicable Free Trial terms in Okta's Master Subscription Agreement." }),
|
|
458
458
|
authorization_details_types: e.array(e.string()).optional().openapi({ 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." })
|
|
459
|
-
}),
|
|
459
|
+
}), y = e.object({ id: e.string().openapi({ description: "ID of the client grant." }) }).extend(v.shape).extend({
|
|
460
460
|
created_at: e.string().optional(),
|
|
461
461
|
updated_at: e.string().optional()
|
|
462
|
-
}),
|
|
462
|
+
}), Pe = e.array(y), b = e.enum(["iat", "rat"]), x = e.object({
|
|
463
463
|
id: e.string(),
|
|
464
464
|
token_hash: e.string(),
|
|
465
|
-
type:
|
|
465
|
+
type: b,
|
|
466
466
|
client_id: e.string().optional(),
|
|
467
467
|
sub: e.string().optional(),
|
|
468
468
|
constraints: e.record(e.string(), e.unknown()).optional(),
|
|
469
469
|
single_use: e.boolean().default(!1),
|
|
470
470
|
expires_at: e.string().optional()
|
|
471
|
-
}),
|
|
471
|
+
}), Fe = e.object({
|
|
472
472
|
created_at: e.string(),
|
|
473
473
|
used_at: e.string().optional(),
|
|
474
474
|
revoked_at: e.string().optional()
|
|
475
|
-
}).extend(
|
|
475
|
+
}).extend(x.shape), S = e.object({
|
|
476
476
|
x: e.number(),
|
|
477
477
|
y: e.number()
|
|
478
|
-
}),
|
|
478
|
+
}), C = /* @__PURE__ */ function(e) {
|
|
479
479
|
return e.RICH_TEXT = "RICH_TEXT", e.NEXT_BUTTON = "NEXT_BUTTON", e.BACK_BUTTON = "BACK_BUTTON", e.SUBMIT_BUTTON = "SUBMIT_BUTTON", e.DIVIDER = "DIVIDER", e.TEXT = "TEXT", e.EMAIL = "EMAIL", e.PASSWORD = "PASSWORD", e.NUMBER = "NUMBER", e.PHONE = "PHONE", e.DATE = "DATE", e.CHECKBOX = "CHECKBOX", e.RADIO = "RADIO", e.SELECT = "SELECT", e.HIDDEN = "HIDDEN", e.LEGAL = "LEGAL", e;
|
|
480
|
-
}({}),
|
|
480
|
+
}({}), w = /* @__PURE__ */ function(e) {
|
|
481
481
|
return e.BLOCK = "BLOCK", e.FIELD = "FIELD", e;
|
|
482
|
-
}({}),
|
|
482
|
+
}({}), T = e.object({
|
|
483
483
|
id: e.string(),
|
|
484
|
-
category: e.nativeEnum(
|
|
485
|
-
type: e.nativeEnum(
|
|
486
|
-
}),
|
|
484
|
+
category: e.nativeEnum(w),
|
|
485
|
+
type: e.nativeEnum(C)
|
|
486
|
+
}), E = T.extend({
|
|
487
487
|
category: e.literal("BLOCK"),
|
|
488
488
|
type: e.literal("RICH_TEXT"),
|
|
489
489
|
config: e.object({ content: e.string() }).passthrough()
|
|
490
|
-
}),
|
|
490
|
+
}), Ie = T.extend({
|
|
491
491
|
category: e.literal("BLOCK"),
|
|
492
492
|
type: e.union([
|
|
493
493
|
e.literal("NEXT_BUTTON"),
|
|
@@ -495,13 +495,13 @@ var t = e.object({
|
|
|
495
495
|
e.literal("SUBMIT_BUTTON")
|
|
496
496
|
]),
|
|
497
497
|
config: e.object({ text: e.string() }).passthrough()
|
|
498
|
-
}),
|
|
498
|
+
}), Le = T.extend({
|
|
499
499
|
category: e.literal("FIELD"),
|
|
500
500
|
type: e.literal("LEGAL"),
|
|
501
501
|
required: e.boolean().optional(),
|
|
502
502
|
sensitive: e.boolean().optional(),
|
|
503
503
|
config: e.object({ text: e.string() }).passthrough()
|
|
504
|
-
}),
|
|
504
|
+
}), Re = T.extend({
|
|
505
505
|
category: e.literal("FIELD"),
|
|
506
506
|
type: e.union([
|
|
507
507
|
e.literal("TEXT"),
|
|
@@ -521,40 +521,40 @@ var t = e.object({
|
|
|
521
521
|
label: e.string().optional(),
|
|
522
522
|
placeholder: e.string().optional()
|
|
523
523
|
}).passthrough()
|
|
524
|
-
}),
|
|
524
|
+
}), ze = e.object({
|
|
525
525
|
id: e.string(),
|
|
526
526
|
category: e.string(),
|
|
527
527
|
type: e.string()
|
|
528
|
-
}).passthrough(),
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
]),
|
|
528
|
+
}).passthrough(), Be = e.union([
|
|
529
|
+
E,
|
|
530
|
+
Ie,
|
|
531
|
+
Le,
|
|
532
|
+
Re,
|
|
533
|
+
ze
|
|
534
|
+
]), Ve = /* @__PURE__ */ function(e) {
|
|
535
535
|
return e.STEP = "STEP", e.FLOW = "FLOW", e.CONDITION = "CONDITION", e.ACTION = "ACTION", e;
|
|
536
|
-
}({}),
|
|
536
|
+
}({}), He = e.object({
|
|
537
537
|
id: e.string(),
|
|
538
538
|
type: e.literal("STEP"),
|
|
539
|
-
coordinates:
|
|
539
|
+
coordinates: S,
|
|
540
540
|
alias: e.string().optional(),
|
|
541
541
|
config: e.object({
|
|
542
|
-
components: e.array(
|
|
542
|
+
components: e.array(Be),
|
|
543
543
|
next_node: e.string()
|
|
544
544
|
}).passthrough()
|
|
545
|
-
}),
|
|
545
|
+
}), Ue = e.object({
|
|
546
546
|
id: e.string(),
|
|
547
547
|
type: e.literal("FLOW"),
|
|
548
|
-
coordinates:
|
|
548
|
+
coordinates: S,
|
|
549
549
|
alias: e.string().optional(),
|
|
550
550
|
config: e.object({
|
|
551
551
|
flow_id: e.string(),
|
|
552
552
|
next_node: e.string()
|
|
553
553
|
})
|
|
554
|
-
}),
|
|
554
|
+
}), We = e.object({
|
|
555
555
|
id: e.string(),
|
|
556
556
|
type: e.literal("ACTION"),
|
|
557
|
-
coordinates:
|
|
557
|
+
coordinates: S,
|
|
558
558
|
alias: e.string().optional(),
|
|
559
559
|
config: e.object({
|
|
560
560
|
action_type: e.enum(["REDIRECT"]).openapi({ description: "The type of action to perform" }),
|
|
@@ -566,21 +566,21 @@ var t = e.object({
|
|
|
566
566
|
custom_url: e.string().optional().openapi({ description: "Custom URL when target is 'custom'" }),
|
|
567
567
|
next_node: e.string().openapi({ description: "The next node to navigate to after action (for non-redirect actions)" })
|
|
568
568
|
}).passthrough()
|
|
569
|
-
}),
|
|
569
|
+
}), Ge = e.object({
|
|
570
570
|
id: e.string(),
|
|
571
571
|
type: e.string(),
|
|
572
|
-
coordinates:
|
|
572
|
+
coordinates: S
|
|
573
573
|
}).passthrough(), Ke = e.union([
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
574
|
+
He,
|
|
575
|
+
Ue,
|
|
576
|
+
We,
|
|
577
|
+
Ge
|
|
578
578
|
]), qe = e.object({
|
|
579
579
|
next_node: e.string(),
|
|
580
|
-
coordinates:
|
|
580
|
+
coordinates: S
|
|
581
581
|
}).passthrough(), Je = e.object({
|
|
582
582
|
resume_flow: e.boolean().optional(),
|
|
583
|
-
coordinates:
|
|
583
|
+
coordinates: S
|
|
584
584
|
}).passthrough(), Ye = e.object({
|
|
585
585
|
id: e.string(),
|
|
586
586
|
name: e.string(),
|
|
@@ -1493,10 +1493,10 @@ var H = e.enum(["impersonate"]), U = e.enum([
|
|
|
1493
1493
|
backchannel_logout_session_supported: e.boolean().optional()
|
|
1494
1494
|
}), An = /* @__PURE__ */ function(e) {
|
|
1495
1495
|
return e.PENDING = "pending", e.AUTHENTICATED = "authenticated", e.AWAITING_EMAIL_VERIFICATION = "awaiting_email_verification", e.AWAITING_MFA = "awaiting_mfa", e.AWAITING_HOOK = "awaiting_hook", e.AWAITING_CONTINUATION = "awaiting_continuation", e.AWAITING_CONSENT = "awaiting_consent", e.COMPLETED = "completed", e.FAILED = "failed", e.EXPIRED = "expired", e;
|
|
1496
|
-
}({}), jn = e.nativeEnum(An),
|
|
1496
|
+
}({}), jn = e.nativeEnum(An), G = e.object({
|
|
1497
1497
|
strategy: e.string(),
|
|
1498
1498
|
strategy_type: e.string()
|
|
1499
|
-
}),
|
|
1499
|
+
}), Mn = e.object({
|
|
1500
1500
|
csrf_token: e.string(),
|
|
1501
1501
|
auth0Client: e.string().optional(),
|
|
1502
1502
|
authParams: et,
|
|
@@ -1511,13 +1511,13 @@ var H = e.enum(["impersonate"]), U = e.enum([
|
|
|
1511
1511
|
failure_reason: e.string().optional(),
|
|
1512
1512
|
user_id: e.string().optional(),
|
|
1513
1513
|
auth_connection: e.string().optional(),
|
|
1514
|
-
auth_strategy:
|
|
1514
|
+
auth_strategy: G.optional(),
|
|
1515
1515
|
authenticated_at: e.string().optional()
|
|
1516
|
-
}).openapi({ description: "This represents a login sesion" }),
|
|
1516
|
+
}).openapi({ description: "This represents a login sesion" }), Nn = Mn.extend({
|
|
1517
1517
|
id: e.string().openapi({ description: "This is is used as the state in the universal login" }),
|
|
1518
1518
|
created_at: e.string(),
|
|
1519
1519
|
updated_at: e.string()
|
|
1520
|
-
}),
|
|
1520
|
+
}), K = {
|
|
1521
1521
|
ACLS_SUMMARY: "acls_summary",
|
|
1522
1522
|
ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
|
|
1523
1523
|
API_LIMIT: "api_limit",
|
|
@@ -1677,190 +1677,190 @@ var H = e.enum(["impersonate"]), U = e.enum([
|
|
|
1677
1677
|
WARNING_DURING_LOGIN: "w",
|
|
1678
1678
|
WARNING_SENDING_NOTIFICATION: "wn",
|
|
1679
1679
|
WARNING_USER_MANAGEMENT: "wum"
|
|
1680
|
-
},
|
|
1681
|
-
[
|
|
1682
|
-
[
|
|
1683
|
-
[
|
|
1684
|
-
[
|
|
1685
|
-
[
|
|
1686
|
-
[
|
|
1687
|
-
[
|
|
1688
|
-
[
|
|
1689
|
-
[
|
|
1690
|
-
[
|
|
1691
|
-
[
|
|
1692
|
-
[
|
|
1693
|
-
[
|
|
1694
|
-
[
|
|
1695
|
-
[
|
|
1696
|
-
[
|
|
1697
|
-
[
|
|
1698
|
-
[
|
|
1699
|
-
[
|
|
1700
|
-
[
|
|
1701
|
-
[
|
|
1702
|
-
[
|
|
1703
|
-
[
|
|
1704
|
-
[
|
|
1705
|
-
[
|
|
1706
|
-
[
|
|
1707
|
-
[
|
|
1708
|
-
[
|
|
1709
|
-
[
|
|
1710
|
-
[
|
|
1711
|
-
[
|
|
1712
|
-
[
|
|
1713
|
-
[
|
|
1714
|
-
[
|
|
1715
|
-
[
|
|
1716
|
-
[
|
|
1717
|
-
[
|
|
1718
|
-
[
|
|
1719
|
-
[
|
|
1720
|
-
[
|
|
1721
|
-
[
|
|
1722
|
-
[
|
|
1723
|
-
[
|
|
1724
|
-
[
|
|
1725
|
-
[
|
|
1726
|
-
[
|
|
1727
|
-
[
|
|
1728
|
-
[
|
|
1729
|
-
[
|
|
1730
|
-
[
|
|
1731
|
-
[
|
|
1732
|
-
[
|
|
1733
|
-
[
|
|
1734
|
-
[
|
|
1735
|
-
[
|
|
1736
|
-
[
|
|
1737
|
-
[
|
|
1738
|
-
[
|
|
1739
|
-
[
|
|
1740
|
-
[
|
|
1741
|
-
[
|
|
1742
|
-
[
|
|
1743
|
-
[
|
|
1744
|
-
[
|
|
1745
|
-
[
|
|
1746
|
-
[
|
|
1747
|
-
[
|
|
1748
|
-
[
|
|
1749
|
-
[
|
|
1750
|
-
[
|
|
1751
|
-
[
|
|
1752
|
-
[
|
|
1753
|
-
[
|
|
1754
|
-
[
|
|
1755
|
-
[
|
|
1756
|
-
[
|
|
1757
|
-
[
|
|
1758
|
-
[
|
|
1759
|
-
[
|
|
1760
|
-
[
|
|
1761
|
-
[
|
|
1762
|
-
[
|
|
1763
|
-
[
|
|
1764
|
-
[
|
|
1765
|
-
[
|
|
1766
|
-
[
|
|
1767
|
-
[
|
|
1768
|
-
[
|
|
1769
|
-
[
|
|
1770
|
-
[
|
|
1771
|
-
[
|
|
1772
|
-
[
|
|
1773
|
-
[
|
|
1774
|
-
[
|
|
1775
|
-
[
|
|
1776
|
-
[
|
|
1777
|
-
[
|
|
1778
|
-
[
|
|
1779
|
-
[
|
|
1780
|
-
[
|
|
1781
|
-
[
|
|
1782
|
-
[
|
|
1783
|
-
[
|
|
1784
|
-
[
|
|
1785
|
-
[
|
|
1786
|
-
[
|
|
1787
|
-
[
|
|
1788
|
-
[
|
|
1789
|
-
[
|
|
1790
|
-
[
|
|
1791
|
-
[
|
|
1792
|
-
[
|
|
1793
|
-
[
|
|
1794
|
-
[
|
|
1795
|
-
[
|
|
1796
|
-
[
|
|
1797
|
-
[
|
|
1798
|
-
[
|
|
1799
|
-
[
|
|
1800
|
-
[
|
|
1801
|
-
[
|
|
1802
|
-
[
|
|
1803
|
-
[
|
|
1804
|
-
[
|
|
1805
|
-
[
|
|
1806
|
-
[
|
|
1807
|
-
[
|
|
1808
|
-
[
|
|
1809
|
-
[
|
|
1810
|
-
[
|
|
1811
|
-
[
|
|
1812
|
-
[
|
|
1813
|
-
[
|
|
1814
|
-
[
|
|
1815
|
-
[
|
|
1816
|
-
[
|
|
1817
|
-
[
|
|
1818
|
-
[
|
|
1819
|
-
[
|
|
1820
|
-
[
|
|
1821
|
-
[
|
|
1822
|
-
[
|
|
1823
|
-
[
|
|
1824
|
-
[
|
|
1825
|
-
[
|
|
1826
|
-
[
|
|
1827
|
-
[
|
|
1828
|
-
[
|
|
1829
|
-
[
|
|
1830
|
-
[
|
|
1831
|
-
[
|
|
1832
|
-
[
|
|
1833
|
-
[
|
|
1834
|
-
[
|
|
1835
|
-
[
|
|
1836
|
-
[
|
|
1837
|
-
[
|
|
1838
|
-
[
|
|
1839
|
-
[
|
|
1840
|
-
},
|
|
1680
|
+
}, Pn = e.string().refine((e) => Object.values(K).includes(e), { message: "Invalid log type" }), Fn = {
|
|
1681
|
+
[K.ACLS_SUMMARY]: "ACLs Summary",
|
|
1682
|
+
[K.ACTIONS_EXECUTION_FAILED]: "Actions Execution Failed",
|
|
1683
|
+
[K.API_LIMIT]: "API Rate Limit Reached",
|
|
1684
|
+
[K.API_LIMIT_WARNING]: "API Rate Limit Warning",
|
|
1685
|
+
[K.APPI]: "API Operation",
|
|
1686
|
+
[K.CIBA_EXCHANGE_FAILED]: "CIBA Exchange Failed",
|
|
1687
|
+
[K.CIBA_EXCHANGE_SUCCEEDED]: "CIBA Exchange Succeeded",
|
|
1688
|
+
[K.CIBA_START_FAILED]: "CIBA Start Failed",
|
|
1689
|
+
[K.CIBA_START_SUCCEEDED]: "CIBA Start Succeeded",
|
|
1690
|
+
[K.CODE_LINK_SENT]: "Code/Link Sent",
|
|
1691
|
+
[K.CODE_SENT]: "Code Sent",
|
|
1692
|
+
[K.DEPRECATION_NOTICE]: "Deprecation Notice",
|
|
1693
|
+
[K.FAILED_LOGIN]: "Failed Login",
|
|
1694
|
+
[K.FAILED_BY_CONNECTOR]: "Failed by Connector",
|
|
1695
|
+
[K.FAILED_CHANGE_EMAIL]: "Failed Change Email",
|
|
1696
|
+
[K.FAILED_BY_CORS]: "Failed by CORS",
|
|
1697
|
+
[K.FAILED_CROSS_ORIGIN_AUTHENTICATION]: "Failed Cross Origin Authentication",
|
|
1698
|
+
[K.FAILED_CHANGE_PASSWORD]: "Failed Change Password",
|
|
1699
|
+
[K.FAILED_POST_CHANGE_PASSWORD_HOOK]: "Failed Post-Change Password Hook",
|
|
1700
|
+
[K.FAILED_CHANGE_PHONE_NUMBER]: "Failed Change Phone Number",
|
|
1701
|
+
[K.FAILED_CHANGE_PASSWORD_REQUEST]: "Failed Change Password Request",
|
|
1702
|
+
[K.FAILED_CONNECTOR_PROVISIONING]: "Failed Connector Provisioning",
|
|
1703
|
+
[K.FAILED_CHANGE_USERNAME]: "Failed Change Username",
|
|
1704
|
+
[K.FAILED_DELEGATION]: "Failed Delegation",
|
|
1705
|
+
[K.FAILED_DEVICE_ACTIVATION]: "Failed Device Activation",
|
|
1706
|
+
[K.FAILED_DEVICE_AUTHORIZATION_REQUEST]: "Failed Device Authorization Request",
|
|
1707
|
+
[K.USER_CANCELED_DEVICE_CONFIRMATION]: "User Canceled Device Confirmation",
|
|
1708
|
+
[K.FAILED_USER_DELETION]: "Failed User Deletion",
|
|
1709
|
+
[K.FAILED_EXCHANGE_AUTHORIZATION_CODE_FOR_ACCESS_TOKEN]: "Failed Exchange Authorization Code for Access Token",
|
|
1710
|
+
[K.FAILED_EXCHANGE_ACCESS_TOKEN_FOR_CLIENT_CREDENTIALS]: "Failed Exchange Access Token for Client Credentials",
|
|
1711
|
+
[K.FAILED_EXCHANGE_CUSTOM_TOKEN]: "Failed Exchange Custom Token",
|
|
1712
|
+
[K.FAILED_EXCHANGE_DEVICE_CODE_FOR_ACCESS_TOKEN]: "Failed Exchange Device Code for Access Token",
|
|
1713
|
+
[K.FAILED_FEDERATED_LOGOUT]: "Failed Federated Logout",
|
|
1714
|
+
[K.FAILED_EXCHANGE_NATIVE_SOCIAL_LOGIN]: "Failed Exchange Native Social Login",
|
|
1715
|
+
[K.FAILED_EXCHANGE_PASSWORD_OOB_FOR_ACCESS_TOKEN]: "Failed Exchange Password OOB for Access Token",
|
|
1716
|
+
[K.FAILED_EXCHANGE_PASSWORD_OTP_FOR_ACCESS_TOKEN]: "Failed Exchange Password OTP for Access Token",
|
|
1717
|
+
[K.FAILED_EXCHANGE_PASSWORD_FOR_ACCESS_TOKEN]: "Failed Exchange Password for Access Token",
|
|
1718
|
+
[K.FAILED_EXCHANGE_PASSWORDLESS_OTP_FOR_ACCESS_TOKEN]: "Failed Exchange Passwordless OTP for Access Token",
|
|
1719
|
+
[K.FAILED_EXCHANGE_PASSWORD_MFA_RECOVERY_FOR_ACCESS_TOKEN]: "Failed Exchange Password MFA Recovery for Access Token",
|
|
1720
|
+
[K.FAILED_EXCHANGE_ROTATING_REFRESH_TOKEN]: "Failed Exchange Rotating Refresh Token",
|
|
1721
|
+
[K.FAILED_EXCHANGE_REFRESH_TOKEN_FOR_ACCESS_TOKEN]: "Failed Exchange Refresh Token for Access Token",
|
|
1722
|
+
[K.FAILED_EXCHANGE_SUBJECT_TOKEN_FOR_ACCESS_TOKEN]: "Failed Exchange Subject Token for Access Token",
|
|
1723
|
+
[K.FAILED_HOOK]: "Failed Hook",
|
|
1724
|
+
[K.FAILED_IMPERSONATION]: "Failed Impersonation",
|
|
1725
|
+
[K.FAILED_INVITE_ACCEPT]: "Failed Invite Accept",
|
|
1726
|
+
[K.FAILED_LOGOUT]: "Failed Logout",
|
|
1727
|
+
[K.FLOWS_EXECUTION_COMPLETED]: "Flows Execution Completed",
|
|
1728
|
+
[K.FLOWS_EXECUTION_FAILED]: "Flows Execution Failed",
|
|
1729
|
+
[K.FAILED_SENDING_NOTIFICATION]: "Failed Sending Notification",
|
|
1730
|
+
[K.FORMS_SUBMISSION_FAILED]: "Forms Submission Failed",
|
|
1731
|
+
[K.FORMS_SUBMISSION_SUCCEEDED]: "Forms Submission Succeeded",
|
|
1732
|
+
[K.FAILED_LOGIN_INCORRECT_PASSWORD]: "Failed Login - Incorrect Password",
|
|
1733
|
+
[K.FAILED_PUSHED_AUTHORIZATION_REQUEST]: "Failed Pushed Authorization Request",
|
|
1734
|
+
[K.FAILED_POST_USER_REGISTRATION_HOOK]: "Failed Post-User Registration Hook",
|
|
1735
|
+
[K.FAILED_SIGNUP]: "Failed Signup",
|
|
1736
|
+
[K.FAILED_SILENT_AUTH]: "Failed Silent Auth",
|
|
1737
|
+
[K.FAILED_LOGIN_INVALID_EMAIL_USERNAME]: "Failed Login - Invalid Email/Username",
|
|
1738
|
+
[K.FAILED_USERS_IMPORT]: "Failed Users Import",
|
|
1739
|
+
[K.FAILED_VERIFICATION_EMAIL]: "Failed Verification Email",
|
|
1740
|
+
[K.FAILED_VERIFICATION_EMAIL_REQUEST]: "Failed Verification Email Request",
|
|
1741
|
+
[K.EMAIL_VERIFICATION_CONFIRMED]: "Email Verification Confirmed",
|
|
1742
|
+
[K.EMAIL_VERIFICATION_FAILED]: "Email Verification Failed",
|
|
1743
|
+
[K.MFA_AUTH_FAILED]: "MFA Auth Failed",
|
|
1744
|
+
[K.MFA_AUTH_REJECTED]: "MFA Auth Rejected",
|
|
1745
|
+
[K.MFA_AUTH_SUCCESS]: "MFA Auth Success",
|
|
1746
|
+
[K.MFA_ENROLLMENT_COMPLETE]: "MFA Enrollment Complete",
|
|
1747
|
+
[K.TOO_MANY_MFA_FAILURES]: "Too Many MFA Failures",
|
|
1748
|
+
[K.MFA_RECOVERY_FAILED]: "MFA Recovery Failed",
|
|
1749
|
+
[K.MFA_RECOVERY_RATE_LIMIT_EXCEED]: "MFA Recovery Rate Limit Exceeded",
|
|
1750
|
+
[K.MFA_RECOVERY_SUCCESS]: "MFA Recovery Success",
|
|
1751
|
+
[K.MFA_EMAIL_SENT]: "MFA Email Sent",
|
|
1752
|
+
[K.EMAIL_VERIFICATION_SENT]: "Email Verification Sent",
|
|
1753
|
+
[K.EMAIL_VERIFICATION_SEND_FAILURE]: "Email Verification Send Failure",
|
|
1754
|
+
[K.PUSH_NOTIFICATION_SENT]: "Push Notification Sent",
|
|
1755
|
+
[K.ERROR_SENDING_MFA_PUSH_NOTIFICATION]: "Error Sending MFA Push Notification",
|
|
1756
|
+
[K.MFA_SMS_SENT]: "MFA SMS Sent",
|
|
1757
|
+
[K.ERROR_SENDING_MFA_SMS]: "Error Sending MFA SMS",
|
|
1758
|
+
[K.MFA_VOICE_CALL_SUCCESS]: "MFA Voice Call Success",
|
|
1759
|
+
[K.MFA_VOICE_CALL_FAILED]: "MFA Voice Call Failed",
|
|
1760
|
+
[K.SECOND_FACTOR_STARTED]: "Second Factor Started",
|
|
1761
|
+
[K.MFA_ENROLL_STARTED]: "MFA Enroll Started",
|
|
1762
|
+
[K.MFA_ENROLLMENT_FAILED]: "MFA Enrollment Failed",
|
|
1763
|
+
[K.GUARDIAN_TENANT_UPDATE]: "Guardian Tenant Update",
|
|
1764
|
+
[K.UNENROLL_DEVICE_ACCOUNT]: "Unenroll Device Account",
|
|
1765
|
+
[K.UPDATE_DEVICE_ACCOUNT]: "Update Device Account",
|
|
1766
|
+
[K.WEBAUTHN_CHALLENGE_FAILED]: "WebAuthn Challenge Failed",
|
|
1767
|
+
[K.WEBAUTHN_ENROLLMENT_FAILED]: "WebAuthn Enrollment Failed",
|
|
1768
|
+
[K.FAILED_KMS_API_OPERATION]: "Failed KMS API Operation",
|
|
1769
|
+
[K.SUCCESS_KMS_API_OPERATION]: "Success KMS API Operation",
|
|
1770
|
+
[K.KMS_KEY_STATE_CHANGED]: "KMS Key State Changed",
|
|
1771
|
+
[K.TOO_MANY_CALLS_TO_DELEGATION]: "Too Many Calls to Delegation",
|
|
1772
|
+
[K.BLOCKED_IP_ADDRESS]: "Blocked IP Address",
|
|
1773
|
+
[K.BLOCKED_ACCOUNT_IP]: "Blocked Account (IP)",
|
|
1774
|
+
[K.BLOCKED_ACCOUNT_EMAIL]: "Blocked Account (Email)",
|
|
1775
|
+
[K.INFORMATION]: "Information",
|
|
1776
|
+
[K.MFA_REQUIRED]: "MFA Required",
|
|
1777
|
+
[K.MANAGEMENT_API_READ_OPERATION]: "Management API Read Operation",
|
|
1778
|
+
[K.FAILED_AUTHENTICATION_METHOD_OPERATION_MY_ACCOUNT]: "Failed Authentication Method Operation (My Account)",
|
|
1779
|
+
[K.SUCCESSFUL_AUTHENTICATION_METHOD_OPERATION_MY_ACCOUNT]: "Successful Authentication Method Operation (My Account)",
|
|
1780
|
+
[K.FAILED_OIDC_BACKCHANNEL_LOGOUT]: "Failed OIDC Backchannel Logout",
|
|
1781
|
+
[K.SUCCESSFUL_OIDC_BACKCHANNEL_LOGOUT]: "Successful OIDC Backchannel Logout",
|
|
1782
|
+
[K.ORGANIZATION_MEMBER_ADDED]: "Organization Member Added",
|
|
1783
|
+
[K.PASSKEY_CHALLENGE_FAILED]: "Passkey Challenge Failed",
|
|
1784
|
+
[K.PASSKEY_CHALLENGE_STARTED]: "Passkey Challenge Started",
|
|
1785
|
+
[K.PRE_LOGIN_ASSESSMENT]: "Pre-Login Assessment",
|
|
1786
|
+
[K.BREACHED_PASSWORD]: "Breached Password",
|
|
1787
|
+
[K.BREACHED_PASSWORD_ON_RESET]: "Breached Password on Reset",
|
|
1788
|
+
[K.SUCCESS_RESOURCE_CLEANUP]: "Success Resource Cleanup",
|
|
1789
|
+
[K.RICH_CONSENTS_ACCESS_ERROR]: "Rich Consents Access Error",
|
|
1790
|
+
[K.SUCCESS_LOGIN]: "Success Login",
|
|
1791
|
+
[K.SUCCESS_API_OPERATION]: "Success API Operation",
|
|
1792
|
+
[K.FAILED_API_OPERATION]: "Failed API Operation",
|
|
1793
|
+
[K.SUCCESS_CHANGE_EMAIL]: "Success Change Email",
|
|
1794
|
+
[K.SUCCESS_CROSS_ORIGIN_AUTHENTICATION]: "Success Cross Origin Authentication",
|
|
1795
|
+
[K.SUCCESS_CHANGE_PASSWORD]: "Success Change Password",
|
|
1796
|
+
[K.SUCCESS_CHANGE_PHONE_NUMBER]: "Success Change Phone Number",
|
|
1797
|
+
[K.SUCCESS_CHANGE_PASSWORD_REQUEST]: "Success Change Password Request",
|
|
1798
|
+
[K.SUCCESS_CHANGE_USERNAME]: "Success Change Username",
|
|
1799
|
+
[K.SUCCESS_CREDENTIAL_VALIDATION]: "Success Credential Validation",
|
|
1800
|
+
[K.SUCCESS_DELEGATION]: "Success Delegation",
|
|
1801
|
+
[K.SUCCESS_USER_DELETION]: "Success User Deletion",
|
|
1802
|
+
[K.SUCCESS_EXCHANGE_AUTHORIZATION_CODE_FOR_ACCESS_TOKEN]: "Success Exchange Authorization Code for Access Token",
|
|
1803
|
+
[K.SUCCESS_EXCHANGE_ACCESS_TOKEN_FOR_CLIENT_CREDENTIALS]: "Success Exchange Access Token for Client Credentials",
|
|
1804
|
+
[K.SUCCESS_EXCHANGE_CUSTOM_TOKEN]: "Success Exchange Custom Token",
|
|
1805
|
+
[K.SUCCESS_EXCHANGE_DEVICE_CODE_FOR_ACCESS_TOKEN]: "Success Exchange Device Code for Access Token",
|
|
1806
|
+
[K.SUCCESS_EXCHANGE_NATIVE_SOCIAL_LOGIN]: "Success Exchange Native Social Login",
|
|
1807
|
+
[K.SUCCESS_EXCHANGE_PASSWORD_OOB_FOR_ACCESS_TOKEN]: "Success Exchange Password OOB for Access Token",
|
|
1808
|
+
[K.SUCCESS_EXCHANGE_PASSWORD_OTP_FOR_ACCESS_TOKEN]: "Success Exchange Password OTP for Access Token",
|
|
1809
|
+
[K.SUCCESS_EXCHANGE_PASSWORDLESS_OTP_FOR_ACCESS_TOKEN]: "Success Exchange Passwordless OTP for Access Token",
|
|
1810
|
+
[K.SUCCESS_EXCHANGE_PASSWORD_FOR_ACCESS_TOKEN]: "Success Exchange Password for Access Token",
|
|
1811
|
+
[K.SUCCESS_EXCHANGE_PASSKEY_OOB_FOR_ACCESS_TOKEN]: "Success Exchange Passkey OOB for Access Token",
|
|
1812
|
+
[K.SUCCESS_EXCHANGE_PASSKEY_OTP_FOR_ACCESS_TOKEN]: "Success Exchange Passkey OTP for Access Token",
|
|
1813
|
+
[K.SUCCESS_EXCHANGE_PASSKEY_MFA_RECOVERY_FOR_ACCESS_TOKEN]: "Success Exchange Passkey MFA Recovery for Access Token",
|
|
1814
|
+
[K.SUCCESS_EXCHANGE_PASSWORD_MFA_RECOVERY_FOR_ACCESS_TOKEN]: "Success Exchange Password MFA Recovery for Access Token",
|
|
1815
|
+
[K.SUCCESS_EXCHANGE_REFRESH_TOKEN_FOR_ACCESS_TOKEN]: "Success Exchange Refresh Token for Access Token",
|
|
1816
|
+
[K.SUCCESS_EXCHANGE_SUBJECT_TOKEN_FOR_ACCESS_TOKEN]: "Success Exchange Subject Token for Access Token",
|
|
1817
|
+
[K.SUCCESS_IMPERSONATION]: "Success Impersonation",
|
|
1818
|
+
[K.SUCCESSFULLY_ACCEPTED_USER_INVITE]: "Successfully Accepted User Invite",
|
|
1819
|
+
[K.BREACHED_PASSWORD_ON_SIGNUP]: "Breached Password on Signup",
|
|
1820
|
+
[K.SUCCESS_LOGOUT]: "Success Logout",
|
|
1821
|
+
[K.SUCCESS_HOOK]: "Success Hook",
|
|
1822
|
+
[K.SUCCESS_PASSWORD_MIGRATION]: "Success Password Migration",
|
|
1823
|
+
[K.SUCCESS_REVOCATION]: "Success Revocation",
|
|
1824
|
+
[K.SUCCESS_SIGNUP]: "Success Signup",
|
|
1825
|
+
[K.FAILED_SS_SSO_OPERATION]: "Failed SS SSO Operation",
|
|
1826
|
+
[K.INFORMATION_FROM_SS_SSO_OPERATION]: "Information from SS SSO Operation",
|
|
1827
|
+
[K.SUCCESS_SS_SSO_OPERATION]: "Success SS SSO Operation",
|
|
1828
|
+
[K.SUCCESS_SILENT_AUTH]: "Success Silent Auth",
|
|
1829
|
+
[K.SUCCESSFUL_SCIM_OPERATION]: "Successful SCIM Operation",
|
|
1830
|
+
[K.SUCCESSFULLY_IMPORTED_USERS]: "Successfully Imported Users",
|
|
1831
|
+
[K.SUCCESS_VERIFICATION_EMAIL]: "Success Verification Email",
|
|
1832
|
+
[K.SUCCESS_VERIFICATION_EMAIL_REQUEST]: "Success Verification Email Request",
|
|
1833
|
+
[K.MAX_AMOUNT_OF_AUTHENTICATORS]: "Max Amount of Authenticators",
|
|
1834
|
+
[K.USER_LOGIN_BLOCK_RELEASED]: "User Login Block Released",
|
|
1835
|
+
[K.FAILED_UNIVERSAL_LOGOUT]: "Failed Universal Logout",
|
|
1836
|
+
[K.SUCCESSFUL_UNIVERSAL_LOGOUT]: "Successful Universal Logout",
|
|
1837
|
+
[K.WARNING_DURING_LOGIN]: "Warning During Login",
|
|
1838
|
+
[K.WARNING_SENDING_NOTIFICATION]: "Warning Sending Notification",
|
|
1839
|
+
[K.WARNING_USER_MANAGEMENT]: "Warning User Management"
|
|
1840
|
+
}, In = (() => {
|
|
1841
1841
|
let e = {};
|
|
1842
|
-
for (let [t, n] of Object.entries(
|
|
1842
|
+
for (let [t, n] of Object.entries(K)) t.startsWith("SUCCESS_") || t.startsWith("SUCCESSFUL_") || t.startsWith("SUCCESSFULLY_") || t.endsWith("_SUCCEEDED") || t.endsWith("_COMPLETED") ? e[n] = "success" : t.startsWith("FAILED_") || t.startsWith("ERROR_") || t.startsWith("BREACHED_") || t.startsWith("BLOCKED_") || t === "MFA_AUTH_FAILED" || t === "MFA_AUTH_REJECTED" || t === "MFA_RECOVERY_FAILED" || t === "MFA_ENROLLMENT_FAILED" || t === "EMAIL_VERIFICATION_FAILED" || t === "WEBAUTHN_CHALLENGE_FAILED" || t === "WEBAUTHN_ENROLLMENT_FAILED" || t === "PASSKEY_CHALLENGE_FAILED" || t === "FLOWS_EXECUTION_FAILED" || t === "FORMS_SUBMISSION_FAILED" || t === "CIBA_EXCHANGE_FAILED" || t === "CIBA_START_FAILED" || t === "ACTIONS_EXECUTION_FAILED" || t === "RICH_CONSENTS_ACCESS_ERROR" || t === "USER_CANCELED_DEVICE_CONFIRMATION" || t === "TOO_MANY_MFA_FAILURES" || t === "MFA_RECOVERY_RATE_LIMIT_EXCEED" || t === "API_LIMIT" || t === "MAX_AMOUNT_OF_AUTHENTICATORS" ? e[n] = "failure" : t.startsWith("WARNING_") || t === "API_LIMIT_WARNING" || t === "DEPRECATION_NOTICE" || t === "PRE_LOGIN_ASSESSMENT" ? e[n] = "warning" : t === "CODE_SENT" || t === "CODE_LINK_SENT" || t === "MFA_EMAIL_SENT" || t === "MFA_SMS_SENT" || t === "EMAIL_VERIFICATION_SENT" || t === "PUSH_NOTIFICATION_SENT" ? e[n] = "code_sent" : t === "INFORMATION" || t === "INFORMATION_FROM_SS_SSO_OPERATION" || t === "MANAGEMENT_API_READ_OPERATION" || t === "APPI" || t === "ACLS_SUMMARY" || t === "ORGANIZATION_MEMBER_ADDED" ? e[n] = "info" : e[n] = "other";
|
|
1843
1843
|
return e;
|
|
1844
1844
|
})();
|
|
1845
|
-
function
|
|
1846
|
-
return
|
|
1845
|
+
function Ln(e) {
|
|
1846
|
+
return Fn[e] ?? e;
|
|
1847
1847
|
}
|
|
1848
|
-
function
|
|
1849
|
-
return
|
|
1848
|
+
function Rn(e) {
|
|
1849
|
+
return In[e] ?? "other";
|
|
1850
1850
|
}
|
|
1851
|
-
var
|
|
1851
|
+
var zn = e.object({
|
|
1852
1852
|
name: e.string(),
|
|
1853
1853
|
version: e.string(),
|
|
1854
1854
|
env: e.object({ node: e.string().optional() }).optional()
|
|
1855
|
-
}),
|
|
1855
|
+
}), Bn = e.object({
|
|
1856
1856
|
country_code: e.string().length(2),
|
|
1857
1857
|
city_name: e.string(),
|
|
1858
1858
|
latitude: e.string(),
|
|
1859
1859
|
longitude: e.string(),
|
|
1860
1860
|
time_zone: e.string(),
|
|
1861
1861
|
continent_code: e.string()
|
|
1862
|
-
}),
|
|
1863
|
-
type:
|
|
1862
|
+
}), Vn = e.object({
|
|
1863
|
+
type: Pn,
|
|
1864
1864
|
date: e.string(),
|
|
1865
1865
|
description: e.string().optional(),
|
|
1866
1866
|
ip: e.string().optional(),
|
|
@@ -1878,10 +1878,10 @@ var Bn = e.object({
|
|
|
1878
1878
|
strategy: e.string().optional(),
|
|
1879
1879
|
strategy_type: e.string().optional(),
|
|
1880
1880
|
hostname: e.string().optional(),
|
|
1881
|
-
auth0_client:
|
|
1881
|
+
auth0_client: zn.optional(),
|
|
1882
1882
|
log_id: e.string().optional(),
|
|
1883
|
-
location_info:
|
|
1884
|
-
}), Hn =
|
|
1883
|
+
location_info: Bn.optional()
|
|
1884
|
+
}), Hn = Vn.extend({ log_id: e.string() }), Un = e.enum([
|
|
1885
1885
|
"http",
|
|
1886
1886
|
"eventbridge",
|
|
1887
1887
|
"eventgrid",
|
|
@@ -2436,6 +2436,10 @@ var Tr = e.object({
|
|
|
2436
2436
|
}), qr = e.object({
|
|
2437
2437
|
id: e.string(),
|
|
2438
2438
|
login_id: e.string(),
|
|
2439
|
+
session_id: e.string().optional(),
|
|
2440
|
+
organization: e.string().optional(),
|
|
2441
|
+
auth_connection: e.string().optional(),
|
|
2442
|
+
auth_strategy: G.optional(),
|
|
2439
2443
|
user_id: e.string(),
|
|
2440
2444
|
client_id: e.string(),
|
|
2441
2445
|
expires_at: e.string().optional(),
|
|
@@ -2857,11 +2861,11 @@ var $i = Zi.superRefine(Qi), ea = Zi.extend({
|
|
|
2857
2861
|
//#endregion
|
|
2858
2862
|
//#region src/utils/user-id.ts
|
|
2859
2863
|
function ra(e) {
|
|
2860
|
-
let
|
|
2861
|
-
if (
|
|
2864
|
+
let t = e.indexOf("|"), n = e.slice(0, t), r = e.slice(t + 1);
|
|
2865
|
+
if (t === -1 || !n || !r) throw Error(`Invalid user_id: ${e}`);
|
|
2862
2866
|
return {
|
|
2863
|
-
connection:
|
|
2864
|
-
id:
|
|
2867
|
+
connection: n,
|
|
2868
|
+
id: r
|
|
2865
2869
|
};
|
|
2866
2870
|
}
|
|
2867
2871
|
//#endregion
|
|
@@ -3019,25 +3023,29 @@ function ya(e, t) {
|
|
|
3019
3023
|
}, i = e.split(/ OR /i);
|
|
3020
3024
|
return i.length > 1 ? i.map(r).filter((e) => e.length > 0).join(" OR ") : r(e);
|
|
3021
3025
|
}
|
|
3026
|
+
var ba = /^[^\s@%_*?"'()[\]{}^~:\\/]+@[^\s@%_*?"'()[\]{}^~:\\/]+\.[^\s@%_*?"'()[\]{}^~:\\/]+$/;
|
|
3027
|
+
function xa(e) {
|
|
3028
|
+
return ba.test(e);
|
|
3029
|
+
}
|
|
3022
3030
|
//#endregion
|
|
3023
3031
|
//#region src/utils/session-retention.ts
|
|
3024
3032
|
var Z = 10080 * 60 * 1e3, Q = 4320 * 60 * 1e3;
|
|
3025
|
-
function
|
|
3033
|
+
function Sa(e) {
|
|
3026
3034
|
return Math.floor((e + Q) / Z);
|
|
3027
3035
|
}
|
|
3028
3036
|
function $(e) {
|
|
3029
3037
|
return e * Z - Q;
|
|
3030
3038
|
}
|
|
3031
|
-
function
|
|
3032
|
-
let n =
|
|
3039
|
+
function Ca(e, t = Date.now()) {
|
|
3040
|
+
let n = Sa(t), r = n - e + 1;
|
|
3033
3041
|
return {
|
|
3034
3042
|
currentWeek: n,
|
|
3035
3043
|
firstWeek: r,
|
|
3036
3044
|
sinceMs: $(r)
|
|
3037
3045
|
};
|
|
3038
3046
|
}
|
|
3039
|
-
function
|
|
3040
|
-
let { currentWeek: r, firstWeek: i, sinceMs: a } =
|
|
3047
|
+
function wa(e, t, n = Date.now()) {
|
|
3048
|
+
let { currentWeek: r, firstWeek: i, sinceMs: a } = Ca(t, n), o = /* @__PURE__ */ new Map();
|
|
3041
3049
|
for (let t of e) {
|
|
3042
3050
|
if (t.created_week < i || t.created_week > r) continue;
|
|
3043
3051
|
let e = Math.min(Math.max(0, t.used_week - t.created_week), r - t.created_week), n = o.get(t.created_week);
|
|
@@ -3060,8 +3068,8 @@ function Sa(e, t, n = Date.now()) {
|
|
|
3060
3068
|
cohorts: s
|
|
3061
3069
|
};
|
|
3062
3070
|
}
|
|
3063
|
-
function
|
|
3064
|
-
let r =
|
|
3071
|
+
function Ta(e, t, n = Date.now()) {
|
|
3072
|
+
let r = wa(e, t, n);
|
|
3065
3073
|
return {
|
|
3066
3074
|
interval: r.interval,
|
|
3067
3075
|
from: r.from,
|
|
@@ -3074,4 +3082,23 @@ function Ca(e, t, n = Date.now()) {
|
|
|
3074
3082
|
};
|
|
3075
3083
|
}
|
|
3076
3084
|
//#endregion
|
|
3077
|
-
|
|
3085
|
+
//#region src/utils/username-validation.ts
|
|
3086
|
+
var Ea = /^[A-Za-z0-9_+\-.!#$'^`~]+$/, Da = "Username can only contain alphanumeric characters and the following characters: '_', '+', '-', '.', '!', '#', '$', \"'\", '^', '`', '~'", Oa = "Usernames must not contain \"@\". Use the email field for email addresses.";
|
|
3087
|
+
function ka(e) {
|
|
3088
|
+
return Ea.test(e);
|
|
3089
|
+
}
|
|
3090
|
+
function Aa(e) {
|
|
3091
|
+
return e.toLowerCase();
|
|
3092
|
+
}
|
|
3093
|
+
function ja(e, t) {
|
|
3094
|
+
if (e.includes("@")) return Oa;
|
|
3095
|
+
if (!ka(e)) return Da;
|
|
3096
|
+
if (t) {
|
|
3097
|
+
let n = [...e].length;
|
|
3098
|
+
if (n < t.min) return `Username must be at least ${t.min} characters`;
|
|
3099
|
+
if (n > t.max) return `Username must be at most ${t.max} characters`;
|
|
3100
|
+
}
|
|
3101
|
+
return null;
|
|
3102
|
+
}
|
|
3103
|
+
//#endregion
|
|
3104
|
+
export { _e as Auth0ActionEnum, zn as Auth0Client, O as AuthorizationResponseMode, D as AuthorizationResponseType, Ze as CodeChallengeMethod, w as ComponentCategory, C as ComponentType, Ji as DATABASE_CONNECTION_STRATEGY, ve as EmailActionEnum, Gt as FORM_FIELD_TYPES, ge as FlowActionTypeEnum, Cr as GrantType, Bn as LocationInfo, K as LogTypes, An as LoginSessionState, Q as MONDAY_EPOCH_SHIFT_MS, Ve as NodeType, Se as RedirectTargetEnum, Ki as Strategy, qi as StrategyType, na as TRIGGER_API_SHAPES, Oa as USERNAME_CONTAINS_AT_MESSAGE, Da as USERNAME_INVALID_CHARACTERS_MESSAGE, Z as WEEK_MS, r as actionDependencySchema, l as actionExecutionErrorSchema, ie as actionExecutionInsertSchema, te as actionExecutionLogEntrySchema, ne as actionExecutionLogsSchema, u as actionExecutionResultSchema, re as actionExecutionSchema, c as actionExecutionStatusSchema, ee as actionExecutionTriggerIdSchema, a as actionInsertSchema, We as actionNodeSchema, s as actionSchema, i as actionSecretSchema, n as actionTriggerSchema, o as actionUpdateSchema, ae as actionVersionInsertSchema, oe as actionVersionSchema, ji as activeUsersResponseSchema, ce as actorSchema, p as addressSchema, sn as allowedTriggersForHook, Bi as analyticsColumnMetaSchema, Pi as analyticsGroupBySchema, Ni as analyticsIntervalSchema, Hi as analyticsQueryResponseSchema, Mi as analyticsResourceSchema, Vi as analyticsStatisticsSchema, Fi as analyticsUserTypeSchema, er as attackProtectionSchema, se as auditCategorySchema, me as auditEventInsertSchema, he as auditEventSchema, pe as auth0ClientSchema, Xe as auth0FlowInsertSchema, Ye as auth0FlowSchema, Ee as auth0QuerySchema, be as auth0UpdateUserActionSchema, ke as auth0UserResponseSchema, et as authParamsSchema, $i as authenticationMethodInsertSchema, ea as authenticationMethodSchema, Xi as authenticationMethodTypeSchema, m as baseUserSchema, Ht as blockComponentSchema, Tr as bordersSchema, tt as brandingSchema, Zn as breachedPasswordDetectionSchema, Qn as bruteForceProtectionSchema, Ta as buildRefreshTokenRetention, wa as buildSessionRetention, Ie as buttonComponentSchema, $e as claimsRequestSchema, v as clientGrantInsertSchema, Pe as clientGrantListSchema, y as clientGrantSchema, _ as clientInsertSchema, x as clientRegistrationTokenInsertSchema, Fe as clientRegistrationTokenSchema, b as clientRegistrationTokenTypeSchema, Ne as clientSchema, rt as codeInsertSchema, it as codeSchema, nt as codeTypeSchema, Er as colorsSchema, $t as componentMessageSchema, Be as componentSchema, ot as connectionInsertSchema, at as connectionOptionsSchema, st as connectionSchema, S as coordinatesSchema, ia as createPassthroughAdapter, aa as createWriteOnlyAdapter, ft as customDomainCertificateUploadSchema, A as customDomainInsertSchema, lt as customDomainSchema, ut as customDomainUpdateSchema, dt as customDomainWithTenantIdSchema, Gi as customTextEntrySchema, Wi as customTextSchema, Ai as dailyStatsSchema, ha as decodeBase32, pa as decodeBase64, la as decodeBase64Url, da as decodeBase64UrlString, va as decodeCursor, Wr as emailProviderSchema, Gr as emailTemplateNameSchema, Kr as emailTemplateSchema, ye as emailVerificationRulesSchema, xe as emailVerifyActionSchema, ma as encodeBase32, fa as encodeBase64, ca as encodeBase64Url, ua as encodeBase64UrlString, _a as encodeCursor, ga as encodeHex, Je as endingSchema, Wt as fieldComponentSchema, d as flowActionStepSchema, we as flowInsertSchema, Te as flowSchema, Re as flowsFieldComponentSchema, Ue as flowsFlowNodeSchema, He as flowsStepNodeSchema, J as fontDetailsSchema, Dr as fontsSchema, Kt as formControlSchema, Zt as formInsertSchema, F as formNodeComponentDefinition, Xt as formNodeSchema, Qt as formSchema, ze as genericComponentSchema, Ge as genericNodeSchema, oa as getConnectionIdentifierConfig, Rn as getLogTypeCategory, Ln as getLogTypeDescription, ai as grantInsertSchema, oi as grantSchema, Pr as handlerConfigSchema, xn as hookCodeInsertSchema, Sn as hookCodeSchema, mn as hookInsertSchema, H as hookPageId, bn as hookSchema, U as hookTemplateId, cn as hookTemplates, f as identitySchema, ta as importMetadataSchema, Tn as inviteInsertSchema, En as inviteSchema, wn as inviteeSchema, Cn as inviterSchema, nn as isBlockComponent, Yi as isDatabaseConnectionStrategy, xa as isEmailSearchTerm, an as isFieldComponent, sa as isPlainObject, rn as isWidgetComponent, On as jwksKeySchema, Dn as jwksSchema, Le as legalComponentSchema, fe as locationInfoSchema, Vn as logInsertSchema, Hn as logSchema, Wn as logStreamFilterSchema, Gn as logStreamInsertSchema, Kn as logStreamSchema, q as logStreamStatusSchema, Un as logStreamTypeSchema, In as logTypeCategories, Fn as logTypeDescriptions, G as loginSessionAuthStrategySchema, Mn as loginSessionInsertSchema, Nn as loginSessionSchema, jn as loginSessionStateSchema, Nr as matchSchema, qn as migrationProviderTypeSchema, Jn as migrationSourceCredentialsSchema, Yn as migrationSourceInsertSchema, Xn as migrationSourceSchema, Ke as nodeSchema, Aa as normalizeUsername, kn as openIDConfigurationSchema, yi as organizationBrandingSchema, wi as organizationConnectionInsertSchema, Ei as organizationConnectionListSchema, Ti as organizationConnectionSchema, bi as organizationEnabledConnectionSchema, Si as organizationInsertSchema, Ci as organizationSchema, xi as organizationTokenQuotaSchema, Or as pageBackgroundSchema, ra as parseUserId, tr as passwordInsertSchema, nr as passwordSchema, Oe as profileDataSchema, Ui as promptScreenSchema, Mr as promptSettingSchema, Y as proxyRouteInsertSchema, Fr as proxyRouteSchema, Ir as proxyRouteUpdateSchema, Ce as redirectActionSchema, qr as refreshTokenInsertSchema, Ri as refreshTokenRetentionCohortSchema, zi as refreshTokenRetentionResponseSchema, Jr as refreshTokenSchema, ue as requestContextSchema, $r as resourceServerInsertSchema, ti as resourceServerListSchema, Qr as resourceServerOptionsSchema, ei as resourceServerSchema, Zr as resourceServerScopeSchema, de as responseContextSchema, E as richTextComponentSchema, gi as roleInsertSchema, vi as roleListSchema, ni as rolePermissionInsertSchema, ii as rolePermissionListSchema, ri as rolePermissionSchema, _i as roleSchema, br as rolloutInsertSchema, vr as rolloutKindSchema, xr as rolloutSchema, yr as rolloutStatusSchema, Sr as rolloutUpdateSchema, ya as sanitizeLuceneQuery, Rr as scimConfigurationInsertSchema, zr as scimConfigurationSchema, Hr as scimExternalIdInsertSchema, Ur as scimExternalIdSchema, Lr as scimMappingEntrySchema, Br as scimTokenInsertSchema, Vr as scimTokenSchema, en as screenLinkSchema, ir as sessionInsertSchema, Ii as sessionRetentionCohortSchema, Li as sessionRetentionResponseSchema, Ca as sessionRetentionWindow, ar as sessionSchema, or as signingKeySchema, Xr as smsProviderSchema, Yr as smsSendParamsSchema, qe as startSchema, $n as suspiciousIpThrottlingSchema, le as targetSchema, sr as tenantInsertSchema, dr as tenantOperationEngineSchema, gr as tenantOperationEventInsertSchema, hr as tenantOperationEventOutcomeSchema, _r as tenantOperationEventSchema, fr as tenantOperationInsertSchema, lr as tenantOperationKindSchema, pr as tenantOperationSchema, ur as tenantOperationStatusSchema, mr as tenantOperationUpdateSchema, cr as tenantSchema, ki as tenantSettingsSchema, Ar as themeInsertSchema, jr as themeSchema, wr as tokenResponseSchema, De as totalsSchema, tn as uiScreenSchema, si as userActivitySchema, h as userInsertSchema, Di as userOrganizationInsertSchema, Oi as userOrganizationSchema, ci as userPermissionInsertSchema, ui as userPermissionListSchema, li as userPermissionSchema, fi as userPermissionWithDetailsListSchema, di as userPermissionWithDetailsSchema, Ae as userResponseSchema, pi as userRoleInsertSchema, hi as userRoleListSchema, mi as userRoleSchema, g as userSchema, ka as usernameHasOnlyAllowedCharacters, ja as validateUsername, ct as verificationMethodsSchema, Sa as weekIndex, $ as weekStartMs, Ut as widgetComponentSchema, kr as widgetSchema };
|