@authhero/adapter-interfaces 2.4.0 → 2.6.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 +3747 -44777
- package/dist/adapter-interfaces.mjs +287 -306
- package/package.json +3 -3
|
@@ -2,10 +2,10 @@ import { z as e } from "@hono/zod-openapi";
|
|
|
2
2
|
const s = e.object({
|
|
3
3
|
created_at: e.string(),
|
|
4
4
|
updated_at: e.string()
|
|
5
|
-
}),
|
|
5
|
+
}), D = e.object({
|
|
6
6
|
id: e.string(),
|
|
7
7
|
version: e.string().optional()
|
|
8
|
-
}),
|
|
8
|
+
}), F = e.object({
|
|
9
9
|
name: e.string(),
|
|
10
10
|
version: e.string()
|
|
11
11
|
}), U = e.object({
|
|
@@ -16,9 +16,9 @@ const s = e.object({
|
|
|
16
16
|
}), w = 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(D).optional(),
|
|
20
20
|
runtime: e.string().max(50).optional(),
|
|
21
|
-
dependencies: e.array(
|
|
21
|
+
dependencies: e.array(F).optional(),
|
|
22
22
|
secrets: e.array(U).optional(),
|
|
23
23
|
// Marks this action as a shared template owned by the control-plane tenant.
|
|
24
24
|
// Other tenants can opt-in by creating a row with the same `name` and
|
|
@@ -42,9 +42,8 @@ const s = e.object({
|
|
|
42
42
|
name: e.string(),
|
|
43
43
|
value: e.string().optional()
|
|
44
44
|
})
|
|
45
|
-
).optional()
|
|
46
|
-
|
|
47
|
-
}), te = e.string(), oe = e.enum([
|
|
45
|
+
).optional()
|
|
46
|
+
}).extend(s.shape), te = e.string(), oe = e.enum([
|
|
48
47
|
"unspecified",
|
|
49
48
|
"pending",
|
|
50
49
|
"final",
|
|
@@ -77,7 +76,7 @@ const s = e.object({
|
|
|
77
76
|
logs: se.optional(),
|
|
78
77
|
created_at: e.string(),
|
|
79
78
|
updated_at: e.string()
|
|
80
|
-
}),
|
|
79
|
+
}), _n = re.omit({
|
|
81
80
|
tenant_id: !0,
|
|
82
81
|
created_at: !0,
|
|
83
82
|
updated_at: !0
|
|
@@ -85,21 +84,20 @@ const s = e.object({
|
|
|
85
84
|
action_id: e.string(),
|
|
86
85
|
code: e.string().max(1e5),
|
|
87
86
|
runtime: e.string().max(50).optional(),
|
|
88
|
-
dependencies: e.array(
|
|
87
|
+
dependencies: e.array(F).optional(),
|
|
89
88
|
secrets: e.array(U).optional(),
|
|
90
|
-
supported_triggers: e.array(
|
|
89
|
+
supported_triggers: e.array(D).optional(),
|
|
91
90
|
deployed: e.boolean().default(!0)
|
|
92
|
-
}),
|
|
91
|
+
}), pn = le.extend({
|
|
93
92
|
id: e.string(),
|
|
94
93
|
tenant_id: e.string(),
|
|
95
|
-
number: e.number().int()
|
|
96
|
-
|
|
97
|
-
}), ce = e.enum([
|
|
94
|
+
number: e.number().int()
|
|
95
|
+
}).extend(s.shape), ce = e.enum([
|
|
98
96
|
"user_action",
|
|
99
97
|
"admin_action",
|
|
100
98
|
"system",
|
|
101
99
|
"api"
|
|
102
|
-
]),
|
|
100
|
+
]), _e = e.object({
|
|
103
101
|
type: e.enum(["user", "admin", "system", "api_key", "client_credentials"]),
|
|
104
102
|
id: e.string().optional(),
|
|
105
103
|
email: e.string().optional(),
|
|
@@ -107,16 +105,16 @@ const s = e.object({
|
|
|
107
105
|
org_name: e.string().optional(),
|
|
108
106
|
scopes: e.array(e.string()).optional(),
|
|
109
107
|
client_id: e.string().optional()
|
|
110
|
-
}),
|
|
108
|
+
}), pe = e.object({
|
|
111
109
|
type: e.string(),
|
|
112
110
|
id: e.string(),
|
|
113
|
-
before: e.record(e.unknown()).optional(),
|
|
114
|
-
after: e.record(e.unknown()).optional(),
|
|
115
|
-
diff: e.record(e.object({ old: e.unknown(), new: e.unknown() })).optional()
|
|
111
|
+
before: e.record(e.string(), e.unknown()).optional(),
|
|
112
|
+
after: e.record(e.string(), e.unknown()).optional(),
|
|
113
|
+
diff: e.record(e.string(), e.object({ old: e.unknown(), new: e.unknown() })).optional()
|
|
116
114
|
}), de = e.object({
|
|
117
115
|
method: e.string(),
|
|
118
116
|
path: e.string(),
|
|
119
|
-
query: e.record(e.string()).optional(),
|
|
117
|
+
query: e.record(e.string(), e.string()).optional(),
|
|
120
118
|
body: e.unknown().optional(),
|
|
121
119
|
ip: e.string(),
|
|
122
120
|
user_agent: e.string().optional(),
|
|
@@ -134,15 +132,15 @@ const s = e.object({
|
|
|
134
132
|
}), me = e.object({
|
|
135
133
|
name: e.string(),
|
|
136
134
|
version: e.string(),
|
|
137
|
-
env: e.record(e.string()).optional()
|
|
135
|
+
env: e.record(e.string(), e.string()).optional()
|
|
138
136
|
}), Ee = e.object({
|
|
139
137
|
tenant_id: e.string(),
|
|
140
138
|
event_type: e.string(),
|
|
141
139
|
log_type: e.string(),
|
|
142
140
|
description: e.string().optional(),
|
|
143
141
|
category: ce,
|
|
144
|
-
actor:
|
|
145
|
-
target:
|
|
142
|
+
actor: _e,
|
|
143
|
+
target: pe,
|
|
146
144
|
request: de,
|
|
147
145
|
response: ge.optional(),
|
|
148
146
|
connection: e.string().optional(),
|
|
@@ -182,7 +180,7 @@ const s = e.object({
|
|
|
182
180
|
user_id: e.string(),
|
|
183
181
|
changes: e.record(e.string(), e.any())
|
|
184
182
|
})
|
|
185
|
-
}),
|
|
183
|
+
}), Ae = e.object({
|
|
186
184
|
id: e.string(),
|
|
187
185
|
alias: e.string().max(100).optional(),
|
|
188
186
|
type: e.literal("EMAIL"),
|
|
@@ -193,7 +191,7 @@ const s = e.object({
|
|
|
193
191
|
email: e.string(),
|
|
194
192
|
rules: Se.optional()
|
|
195
193
|
})
|
|
196
|
-
}),
|
|
194
|
+
}), be = e.enum(["change-email", "account", "custom"]), fe = e.object({
|
|
197
195
|
id: e.string(),
|
|
198
196
|
alias: e.string().max(100).optional(),
|
|
199
197
|
type: e.literal("REDIRECT"),
|
|
@@ -201,27 +199,26 @@ const s = e.object({
|
|
|
201
199
|
allow_failure: e.boolean().optional(),
|
|
202
200
|
mask_output: e.boolean().optional(),
|
|
203
201
|
params: e.object({
|
|
204
|
-
target:
|
|
202
|
+
target: be.openapi({
|
|
205
203
|
description: "The predefined target to redirect to, or 'custom' for a custom URL"
|
|
206
204
|
}),
|
|
207
205
|
custom_url: e.string().optional().openapi({
|
|
208
206
|
description: "Custom URL to redirect to when target is 'custom'"
|
|
209
207
|
})
|
|
210
208
|
})
|
|
211
|
-
}),
|
|
209
|
+
}), Ce = e.union([
|
|
212
210
|
he,
|
|
213
|
-
|
|
211
|
+
Ae,
|
|
214
212
|
fe
|
|
215
|
-
]),
|
|
213
|
+
]), Ie = e.object({
|
|
216
214
|
name: e.string().min(1).max(150).openapi({
|
|
217
215
|
description: "The name of the flow"
|
|
218
216
|
}),
|
|
219
217
|
// Actions is an array of action steps (Auth0 stores as JSON blob)
|
|
220
|
-
actions: e.array(
|
|
218
|
+
actions: e.array(Ce).optional().default([]).openapi({
|
|
221
219
|
description: "The list of actions to execute in sequence"
|
|
222
220
|
})
|
|
223
|
-
}), En =
|
|
224
|
-
...s.shape,
|
|
221
|
+
}), En = Ie.extend(s.shape).extend({
|
|
225
222
|
id: e.string().openapi({
|
|
226
223
|
description: "Unique identifier for the flow",
|
|
227
224
|
example: "af_12tMpdJ3iek7svMyZkSh5M"
|
|
@@ -284,7 +281,11 @@ const s = e.object({
|
|
|
284
281
|
country: e.string().optional()
|
|
285
282
|
// Country name
|
|
286
283
|
}).optional(), k = e.object({
|
|
287
|
-
|
|
284
|
+
// Apply the lowercase transform *before* `.optional()` so the key remains
|
|
285
|
+
// optional (`email?: string`) in inference. Zod 4 strips the optional-key
|
|
286
|
+
// marker when a transform runs over an `.optional()` schema, which made
|
|
287
|
+
// User/UserInsert types diverge.
|
|
288
|
+
email: e.string().transform((o) => o.toLowerCase()).optional(),
|
|
288
289
|
username: e.string().refine((o) => !o.includes("@"), {
|
|
289
290
|
message: 'Usernames must not contain "@". Use the email field for email addresses.'
|
|
290
291
|
}).optional(),
|
|
@@ -339,31 +340,29 @@ const s = e.object({
|
|
|
339
340
|
hash: e.string(),
|
|
340
341
|
algorithm: e.string()
|
|
341
342
|
}).optional()
|
|
342
|
-
}), Re =
|
|
343
|
-
...ye.omit({ password: !0 }).shape,
|
|
344
|
-
...s.shape,
|
|
343
|
+
}), Re = ye.omit({ password: !0 }).extend(s.shape).extend({
|
|
345
344
|
user_id: e.string(),
|
|
346
345
|
provider: e.string(),
|
|
347
346
|
is_social: e.boolean(),
|
|
348
347
|
email: e.string().optional(),
|
|
349
348
|
login_count: e.number().default(0),
|
|
350
349
|
identities: e.array(Te).optional()
|
|
351
|
-
}),
|
|
350
|
+
}), An = Re.omit({
|
|
352
351
|
registration_completed_at: !0
|
|
353
|
-
}),
|
|
352
|
+
}), bn = k.extend({
|
|
354
353
|
login_count: e.number(),
|
|
355
354
|
multifactor: e.array(e.string()).optional(),
|
|
356
355
|
last_ip: e.string().optional(),
|
|
357
356
|
last_login: e.string().optional(),
|
|
358
357
|
user_id: e.string()
|
|
359
358
|
}).catchall(e.any());
|
|
360
|
-
let Le = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict",
|
|
359
|
+
let Le = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", De = (o = 21) => {
|
|
361
360
|
let n = "", i = crypto.getRandomValues(new Uint8Array(o |= 0));
|
|
362
361
|
for (; o--; )
|
|
363
362
|
n += Le[i[o] & 63];
|
|
364
363
|
return n;
|
|
365
364
|
};
|
|
366
|
-
const
|
|
365
|
+
const Fe = e.object({
|
|
367
366
|
client_id: e.string().optional().openapi({
|
|
368
367
|
description: "ID of this client. Generated server-side if omitted (Auth0 behavior)."
|
|
369
368
|
}),
|
|
@@ -376,7 +375,7 @@ const De = e.object({
|
|
|
376
375
|
global: e.boolean().default(!1).openapi({
|
|
377
376
|
description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
|
|
378
377
|
}),
|
|
379
|
-
client_secret: e.string().default(() =>
|
|
378
|
+
client_secret: e.string().default(() => De()).optional().openapi({
|
|
380
379
|
description: "Client secret (which you must not make public)."
|
|
381
380
|
}),
|
|
382
381
|
app_type: e.enum([
|
|
@@ -441,22 +440,22 @@ const De = e.object({
|
|
|
441
440
|
allowed_logout_urls: e.array(e.string()).default([]).optional().openapi({
|
|
442
441
|
description: "Comma-separated list of URLs that are valid to redirect to after logout from Auth0. Wildcards are allowed for subdomains."
|
|
443
442
|
}),
|
|
444
|
-
session_transfer: e.record(e.any()).default({}).optional().openapi({
|
|
443
|
+
session_transfer: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
445
444
|
description: "Native to Web SSO Configuration"
|
|
446
445
|
}),
|
|
447
|
-
oidc_logout: e.record(e.any()).default({}).optional().openapi({
|
|
446
|
+
oidc_logout: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
448
447
|
description: "Configuration for OIDC backchannel logout"
|
|
449
448
|
}),
|
|
450
449
|
grant_types: e.array(e.string()).default([]).optional().openapi({
|
|
451
450
|
description: "List of grant types supported for this application. Can include authorization_code, implicit, refresh_token, client_credentials, password, http://auth0.com/oauth/grant-type/password-realm, http://auth0.com/oauth/grant-type/mfa-oob, http://auth0.com/oauth/grant-type/mfa-otp, http://auth0.com/oauth/grant-type/mfa-recovery-code, urn:openid:params:grant-type:ciba, and urn:ietf:params:oauth:grant-type:device_code."
|
|
452
451
|
}),
|
|
453
|
-
jwt_configuration: e.record(e.any()).default({}).optional().openapi({
|
|
452
|
+
jwt_configuration: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
454
453
|
description: "Configuration related to JWTs for the client."
|
|
455
454
|
}),
|
|
456
|
-
signing_keys: e.array(e.record(e.any())).default([]).optional().openapi({
|
|
455
|
+
signing_keys: e.array(e.record(e.string(), e.any())).default([]).optional().openapi({
|
|
457
456
|
description: "Signing certificates associated with this client."
|
|
458
457
|
}),
|
|
459
|
-
encryption_key: e.record(e.any()).default({}).optional().openapi({
|
|
458
|
+
encryption_key: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
460
459
|
description: "Encryption used for WsFed responses with this client."
|
|
461
460
|
}),
|
|
462
461
|
sso: e.boolean().default(!1).openapi({
|
|
@@ -483,7 +482,7 @@ const De = e.object({
|
|
|
483
482
|
form_template: e.string().optional().openapi({
|
|
484
483
|
description: "HTML form template to be used for WS-Federation."
|
|
485
484
|
}),
|
|
486
|
-
addons: e.record(e.any()).default({}).optional().openapi({
|
|
485
|
+
addons: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
487
486
|
description: "Addons enabled for this client and their associated configurations."
|
|
488
487
|
}),
|
|
489
488
|
token_endpoint_auth_method: e.enum([
|
|
@@ -495,19 +494,19 @@ const De = e.object({
|
|
|
495
494
|
]).default("client_secret_basic").optional().openapi({
|
|
496
495
|
description: "Defines the requested authentication method for the token endpoint. `none` (public client), `client_secret_post` / `client_secret_basic` (HTTP POST / Basic), `client_secret_jwt` (RFC 7523 HMAC assertion using client_secret), or `private_key_jwt` (RFC 7523 asymmetric assertion verified against the client's `jwks` / `jwks_uri`)."
|
|
497
496
|
}),
|
|
498
|
-
client_metadata: e.record(e.string().max(255)).default({}).optional().openapi({
|
|
497
|
+
client_metadata: e.record(e.string(), e.string().max(255)).default({}).optional().openapi({
|
|
499
498
|
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]'
|
|
500
499
|
}),
|
|
501
500
|
hide_sign_up_disabled_error: e.boolean().default(!1).optional().openapi({
|
|
502
501
|
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
502
|
}),
|
|
504
|
-
mobile: e.record(e.any()).default({}).optional().openapi({
|
|
503
|
+
mobile: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
505
504
|
description: "Additional configuration for native mobile apps."
|
|
506
505
|
}),
|
|
507
506
|
initiate_login_uri: e.string().url().optional().openapi({
|
|
508
507
|
description: "Initiate login uri, must be https"
|
|
509
508
|
}),
|
|
510
|
-
native_social_login: e.record(e.any()).default({}).optional(),
|
|
509
|
+
native_social_login: e.record(e.string(), e.any()).default({}).optional(),
|
|
511
510
|
refresh_token: e.object({
|
|
512
511
|
rotation_type: e.enum(["rotating", "non-rotating"]).optional().openapi({
|
|
513
512
|
description: "Whether refresh tokens for this client are rotated on every exchange (Auth0 'rotating' behavior) or kept stable (legacy non-rotating). Defaults to 'non-rotating' when unset."
|
|
@@ -538,7 +537,7 @@ const De = e.object({
|
|
|
538
537
|
}).default({}).optional().openapi({
|
|
539
538
|
description: "Refresh token configuration"
|
|
540
539
|
}),
|
|
541
|
-
default_organization: e.record(e.any()).default({}).optional().openapi({
|
|
540
|
+
default_organization: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
542
541
|
description: "Defines the default Organization ID and flows"
|
|
543
542
|
}),
|
|
544
543
|
organization_usage: e.enum(["deny", "allow", "require"]).default("deny").optional().openapi({
|
|
@@ -547,7 +546,7 @@ const De = e.object({
|
|
|
547
546
|
organization_require_behavior: e.enum(["no_prompt", "pre_login_prompt", "post_login_prompt"]).default("no_prompt").optional().openapi({
|
|
548
547
|
description: "Defines how to proceed during an authentication transaction when client.organization_usage: 'require'. Can be no_prompt (default), pre_login_prompt or post_login_prompt. post_login_prompt requires oidc_conformant: true."
|
|
549
548
|
}),
|
|
550
|
-
client_authentication_methods: e.record(e.any()).default({}).optional().openapi({
|
|
549
|
+
client_authentication_methods: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
551
550
|
description: "Defines client authentication methods."
|
|
552
551
|
}),
|
|
553
552
|
require_pushed_authorization_requests: e.boolean().default(!1).openapi({
|
|
@@ -556,7 +555,7 @@ const De = e.object({
|
|
|
556
555
|
require_proof_of_possession: e.boolean().default(!1).openapi({
|
|
557
556
|
description: "Makes the use of Proof-of-Possession mandatory for this client"
|
|
558
557
|
}),
|
|
559
|
-
signed_request_object: e.record(e.any()).default({}).optional().openapi({
|
|
558
|
+
signed_request_object: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
560
559
|
description: "JWT-secured Authorization Requests (JAR) settings."
|
|
561
560
|
}),
|
|
562
561
|
compliance_level: e.enum([
|
|
@@ -571,14 +570,14 @@ const De = e.object({
|
|
|
571
570
|
par_request_expiry: e.number().optional().openapi({
|
|
572
571
|
description: "Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"
|
|
573
572
|
}),
|
|
574
|
-
token_quota: e.record(e.any()).default({}).optional(),
|
|
573
|
+
token_quota: e.record(e.string(), e.any()).default({}).optional(),
|
|
575
574
|
owner_user_id: e.string().optional().openapi({
|
|
576
575
|
description: "User ID of the consenting user when this client was created via IAT-gated Dynamic Client Registration. NULL for clients created via the Management API or open DCR."
|
|
577
576
|
}),
|
|
578
577
|
registration_type: e.enum(["manual", "open_dcr", "iat_dcr"]).optional().openapi({
|
|
579
578
|
description: "Provenance of this client. `manual` = Management API; `open_dcr` = RFC 7591 without IAT; `iat_dcr` = RFC 7591 with an Initial Access Token."
|
|
580
579
|
}),
|
|
581
|
-
registration_metadata: e.record(e.any()).default({}).optional().openapi({
|
|
580
|
+
registration_metadata: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
582
581
|
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."
|
|
583
582
|
}),
|
|
584
583
|
user_linking_mode: e.enum(["builtin", "off"]).optional().openapi({
|
|
@@ -586,8 +585,8 @@ const De = e.object({
|
|
|
586
585
|
})
|
|
587
586
|
}), fn = e.object({
|
|
588
587
|
created_at: e.string(),
|
|
589
|
-
updated_at: e.string()
|
|
590
|
-
|
|
588
|
+
updated_at: e.string()
|
|
589
|
+
}).extend(Fe.shape).extend({
|
|
591
590
|
// Insert allows omitting (server-generated to match Auth0). The read schema
|
|
592
591
|
// always has it — the row in storage is non-null.
|
|
593
592
|
client_id: e.string()
|
|
@@ -619,34 +618,33 @@ const De = e.object({
|
|
|
619
618
|
}), we = e.object({
|
|
620
619
|
id: e.string().openapi({
|
|
621
620
|
description: "ID of the client grant."
|
|
622
|
-
})
|
|
623
|
-
|
|
621
|
+
})
|
|
622
|
+
}).extend(Ue.shape).extend({
|
|
624
623
|
created_at: e.string().optional(),
|
|
625
624
|
updated_at: e.string().optional()
|
|
626
|
-
}),
|
|
625
|
+
}), Cn = e.array(we), ke = e.enum(["iat", "rat"]), Me = e.object({
|
|
627
626
|
id: e.string(),
|
|
628
627
|
token_hash: e.string(),
|
|
629
628
|
type: ke,
|
|
630
629
|
client_id: e.string().optional(),
|
|
631
630
|
sub: e.string().optional(),
|
|
632
|
-
constraints: e.record(e.unknown()).optional(),
|
|
631
|
+
constraints: e.record(e.string(), e.unknown()).optional(),
|
|
633
632
|
single_use: e.boolean().default(!1),
|
|
634
633
|
expires_at: e.string().optional()
|
|
635
|
-
}),
|
|
634
|
+
}), In = e.object({
|
|
636
635
|
created_at: e.string(),
|
|
637
636
|
used_at: e.string().optional(),
|
|
638
|
-
revoked_at: e.string().optional()
|
|
639
|
-
|
|
640
|
-
}), E = e.object({
|
|
637
|
+
revoked_at: e.string().optional()
|
|
638
|
+
}).extend(Me.shape), E = e.object({
|
|
641
639
|
x: e.number(),
|
|
642
640
|
y: e.number()
|
|
643
641
|
});
|
|
644
|
-
var
|
|
642
|
+
var M = /* @__PURE__ */ ((o) => (o.RICH_TEXT = "RICH_TEXT", o.NEXT_BUTTON = "NEXT_BUTTON", o.BACK_BUTTON = "BACK_BUTTON", o.SUBMIT_BUTTON = "SUBMIT_BUTTON", o.DIVIDER = "DIVIDER", o.TEXT = "TEXT", o.EMAIL = "EMAIL", o.PASSWORD = "PASSWORD", o.NUMBER = "NUMBER", o.PHONE = "PHONE", o.DATE = "DATE", o.CHECKBOX = "CHECKBOX", o.RADIO = "RADIO", o.SELECT = "SELECT", o.HIDDEN = "HIDDEN", o.LEGAL = "LEGAL", o))(M || {}), v = /* @__PURE__ */ ((o) => (o.BLOCK = "BLOCK", o.FIELD = "FIELD", o))(v || {});
|
|
645
643
|
const T = e.object({
|
|
646
644
|
id: e.string(),
|
|
647
|
-
category: e.nativeEnum(
|
|
648
|
-
type: e.nativeEnum(
|
|
649
|
-
}),
|
|
645
|
+
category: e.nativeEnum(v),
|
|
646
|
+
type: e.nativeEnum(M)
|
|
647
|
+
}), ve = T.extend({
|
|
650
648
|
category: e.literal(
|
|
651
649
|
"BLOCK"
|
|
652
650
|
/* BLOCK */
|
|
@@ -658,7 +656,7 @@ const T = e.object({
|
|
|
658
656
|
config: e.object({
|
|
659
657
|
content: e.string()
|
|
660
658
|
}).passthrough()
|
|
661
|
-
}),
|
|
659
|
+
}), Pe = T.extend({
|
|
662
660
|
category: e.literal(
|
|
663
661
|
"BLOCK"
|
|
664
662
|
/* BLOCK */
|
|
@@ -680,7 +678,7 @@ const T = e.object({
|
|
|
680
678
|
config: e.object({
|
|
681
679
|
text: e.string()
|
|
682
680
|
}).passthrough()
|
|
683
|
-
}),
|
|
681
|
+
}), je = T.extend({
|
|
684
682
|
category: e.literal(
|
|
685
683
|
"FIELD"
|
|
686
684
|
/* FIELD */
|
|
@@ -752,14 +750,14 @@ const T = e.object({
|
|
|
752
750
|
category: e.string(),
|
|
753
751
|
type: e.string()
|
|
754
752
|
}).passthrough(), Ge = e.union([
|
|
755
|
-
Me,
|
|
756
753
|
ve,
|
|
757
754
|
Pe,
|
|
755
|
+
je,
|
|
758
756
|
xe,
|
|
759
757
|
He
|
|
760
758
|
]);
|
|
761
|
-
var
|
|
762
|
-
const
|
|
759
|
+
var We = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(We || {});
|
|
760
|
+
const Be = e.object({
|
|
763
761
|
id: e.string(),
|
|
764
762
|
type: e.literal(
|
|
765
763
|
"STEP"
|
|
@@ -771,7 +769,7 @@ const Ke = e.object({
|
|
|
771
769
|
components: e.array(Ge),
|
|
772
770
|
next_node: e.string()
|
|
773
771
|
}).passthrough()
|
|
774
|
-
}),
|
|
772
|
+
}), Ke = e.object({
|
|
775
773
|
id: e.string(),
|
|
776
774
|
type: e.literal(
|
|
777
775
|
"FLOW"
|
|
@@ -810,8 +808,8 @@ const Ke = e.object({
|
|
|
810
808
|
type: e.string(),
|
|
811
809
|
coordinates: E
|
|
812
810
|
}).passthrough(), qe = e.union([
|
|
811
|
+
Be,
|
|
813
812
|
Ke,
|
|
814
|
-
We,
|
|
815
813
|
Ve,
|
|
816
814
|
Xe
|
|
817
815
|
]), ze = e.object({
|
|
@@ -840,7 +838,7 @@ const Ke = e.object({
|
|
|
840
838
|
created_at: !0,
|
|
841
839
|
updated_at: !0
|
|
842
840
|
});
|
|
843
|
-
var
|
|
841
|
+
var P = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "id_token token", o.CODE = "code", o.CODE_ID_TOKEN = "code id_token", o.CODE_TOKEN = "code token", o.CODE_ID_TOKEN_TOKEN = "code id_token token", o))(P || {}), j = /* @__PURE__ */ ((o) => (o.QUERY = "query", o.FRAGMENT = "fragment", o.FORM_POST = "form_post", o.WEB_MESSAGE = "web_message", o.SAML_POST = "saml_post", o))(j || {}), x = /* @__PURE__ */ ((o) => (o.S256 = "S256", o.Plain = "plain", o))(x || {});
|
|
844
842
|
const L = e.union([
|
|
845
843
|
e.null(),
|
|
846
844
|
e.object({
|
|
@@ -854,8 +852,8 @@ const L = e.union([
|
|
|
854
852
|
}), Je = e.object({
|
|
855
853
|
client_id: e.string(),
|
|
856
854
|
act_as: e.string().optional(),
|
|
857
|
-
response_type: e.nativeEnum(
|
|
858
|
-
response_mode: e.nativeEnum(
|
|
855
|
+
response_type: e.nativeEnum(P).optional(),
|
|
856
|
+
response_mode: e.nativeEnum(j).optional(),
|
|
859
857
|
redirect_uri: e.string().optional(),
|
|
860
858
|
audience: e.string().optional(),
|
|
861
859
|
organization: e.string().optional(),
|
|
@@ -946,8 +944,7 @@ const L = e.union([
|
|
|
946
944
|
expires_at: e.string(),
|
|
947
945
|
used_at: e.string().optional(),
|
|
948
946
|
user_id: e.string().optional()
|
|
949
|
-
}), Nn =
|
|
950
|
-
...et.shape,
|
|
947
|
+
}), Nn = et.extend({
|
|
951
948
|
created_at: e.string()
|
|
952
949
|
}), tt = e.object({
|
|
953
950
|
kid: e.string().optional(),
|
|
@@ -1115,7 +1112,7 @@ const ot = e.object({
|
|
|
1115
1112
|
response_mode: e.custom().optional(),
|
|
1116
1113
|
is_domain_connection: e.boolean().optional(),
|
|
1117
1114
|
show_as_button: e.boolean().optional(),
|
|
1118
|
-
metadata: e.record(e.any()).optional(),
|
|
1115
|
+
metadata: e.record(e.string(), e.any()).optional(),
|
|
1119
1116
|
is_system: e.boolean().optional()
|
|
1120
1117
|
}), yn = e.object({
|
|
1121
1118
|
id: e.string(),
|
|
@@ -1134,7 +1131,7 @@ const ot = e.object({
|
|
|
1134
1131
|
"x-azure-clientip",
|
|
1135
1132
|
"null"
|
|
1136
1133
|
]).optional(),
|
|
1137
|
-
domain_metadata: e.record(e.string().max(255)).optional()
|
|
1134
|
+
domain_metadata: e.record(e.string(), e.string().max(255)).optional()
|
|
1138
1135
|
}), it = e.discriminatedUnion("name", [
|
|
1139
1136
|
e.object({
|
|
1140
1137
|
name: e.literal("txt"),
|
|
@@ -1146,8 +1143,7 @@ const ot = e.object({
|
|
|
1146
1143
|
http_body: e.string(),
|
|
1147
1144
|
http_url: e.string()
|
|
1148
1145
|
})
|
|
1149
|
-
]), at =
|
|
1150
|
-
...nt.shape,
|
|
1146
|
+
]), at = nt.extend({
|
|
1151
1147
|
custom_domain_id: e.string(),
|
|
1152
1148
|
primary: e.boolean(),
|
|
1153
1149
|
status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
|
|
@@ -1188,13 +1184,13 @@ const ot = e.object({
|
|
|
1188
1184
|
text: e.string().optional(),
|
|
1189
1185
|
target_step: e.string().optional()
|
|
1190
1186
|
})
|
|
1191
|
-
}),
|
|
1187
|
+
}), _t = c.extend({
|
|
1192
1188
|
type: e.literal("RESEND_BUTTON"),
|
|
1193
1189
|
config: e.object({
|
|
1194
1190
|
text: e.string().optional(),
|
|
1195
1191
|
resend_action: e.string().optional()
|
|
1196
1192
|
})
|
|
1197
|
-
}),
|
|
1193
|
+
}), pt = c.extend({
|
|
1198
1194
|
type: e.literal("NEXT_BUTTON"),
|
|
1199
1195
|
config: e.object({
|
|
1200
1196
|
text: e.string().optional()
|
|
@@ -1261,7 +1257,7 @@ const ot = e.object({
|
|
|
1261
1257
|
).optional(),
|
|
1262
1258
|
multi_select: e.boolean().optional()
|
|
1263
1259
|
}).optional()
|
|
1264
|
-
}),
|
|
1260
|
+
}), At = a.extend({
|
|
1265
1261
|
type: e.literal("CHOICE"),
|
|
1266
1262
|
config: e.object({
|
|
1267
1263
|
options: e.array(
|
|
@@ -1274,12 +1270,12 @@ const ot = e.object({
|
|
|
1274
1270
|
multiple: e.boolean().optional(),
|
|
1275
1271
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1276
1272
|
}).optional()
|
|
1277
|
-
}),
|
|
1273
|
+
}), bt = a.extend({
|
|
1278
1274
|
type: e.literal("CUSTOM"),
|
|
1279
1275
|
config: e.object({
|
|
1280
1276
|
component: e.string().optional(),
|
|
1281
|
-
props: e.record(e.any()).optional(),
|
|
1282
|
-
schema: e.record(e.any()).optional(),
|
|
1277
|
+
props: e.record(e.string(), e.any()).optional(),
|
|
1278
|
+
schema: e.record(e.string(), e.any()).optional(),
|
|
1283
1279
|
code: e.string().optional()
|
|
1284
1280
|
})
|
|
1285
1281
|
}), ft = a.extend({
|
|
@@ -1290,7 +1286,7 @@ const ot = e.object({
|
|
|
1290
1286
|
max: e.string().optional(),
|
|
1291
1287
|
default_value: e.string().optional()
|
|
1292
1288
|
}).optional()
|
|
1293
|
-
}),
|
|
1289
|
+
}), Ct = a.extend({
|
|
1294
1290
|
type: e.literal("DROPDOWN"),
|
|
1295
1291
|
config: e.object({
|
|
1296
1292
|
options: e.array(
|
|
@@ -1304,7 +1300,7 @@ const ot = e.object({
|
|
|
1304
1300
|
multiple: e.boolean().optional(),
|
|
1305
1301
|
default_value: e.union([e.string(), e.array(e.string())]).optional()
|
|
1306
1302
|
}).optional()
|
|
1307
|
-
}),
|
|
1303
|
+
}), It = a.extend({
|
|
1308
1304
|
type: e.literal("EMAIL"),
|
|
1309
1305
|
config: e.object({
|
|
1310
1306
|
placeholder: e.string().optional(),
|
|
@@ -1362,7 +1358,7 @@ const ot = e.object({
|
|
|
1362
1358
|
})
|
|
1363
1359
|
).optional()
|
|
1364
1360
|
}).optional()
|
|
1365
|
-
}),
|
|
1361
|
+
}), Dt = a.extend({
|
|
1366
1362
|
type: e.literal("TEL"),
|
|
1367
1363
|
config: e.object({
|
|
1368
1364
|
placeholder: e.string().optional(),
|
|
@@ -1370,7 +1366,7 @@ const ot = e.object({
|
|
|
1370
1366
|
default_value: e.string().optional(),
|
|
1371
1367
|
allow_email: e.boolean().optional()
|
|
1372
1368
|
}).optional()
|
|
1373
|
-
}),
|
|
1369
|
+
}), Ft = a.extend({
|
|
1374
1370
|
type: e.literal("TEXT"),
|
|
1375
1371
|
config: e.object({
|
|
1376
1372
|
placeholder: e.string().optional(),
|
|
@@ -1395,36 +1391,36 @@ const ot = e.object({
|
|
|
1395
1391
|
rt,
|
|
1396
1392
|
lt,
|
|
1397
1393
|
ct,
|
|
1398
|
-
pt,
|
|
1399
1394
|
_t,
|
|
1395
|
+
pt,
|
|
1400
1396
|
dt,
|
|
1401
1397
|
gt
|
|
1402
|
-
]),
|
|
1398
|
+
]), Mt = e.discriminatedUnion("type", [
|
|
1403
1399
|
ut,
|
|
1404
1400
|
mt,
|
|
1405
1401
|
Et
|
|
1406
|
-
]),
|
|
1402
|
+
]), vt = e.discriminatedUnion("type", [
|
|
1407
1403
|
St,
|
|
1408
1404
|
ht,
|
|
1409
|
-
bt,
|
|
1410
|
-
Ut,
|
|
1411
1405
|
At,
|
|
1406
|
+
Ut,
|
|
1407
|
+
bt,
|
|
1412
1408
|
ft,
|
|
1413
|
-
It,
|
|
1414
1409
|
Ct,
|
|
1410
|
+
It,
|
|
1415
1411
|
Ot,
|
|
1416
1412
|
Tt,
|
|
1417
1413
|
Nt,
|
|
1418
1414
|
yt,
|
|
1419
1415
|
Rt,
|
|
1420
1416
|
Lt,
|
|
1421
|
-
Ft,
|
|
1422
1417
|
Dt,
|
|
1418
|
+
Ft,
|
|
1423
1419
|
wt
|
|
1424
1420
|
]), H = e.union([
|
|
1425
1421
|
kt,
|
|
1426
|
-
|
|
1427
|
-
|
|
1422
|
+
Mt,
|
|
1423
|
+
vt
|
|
1428
1424
|
]), Ln = /* @__PURE__ */ new Set([
|
|
1429
1425
|
"BOOLEAN",
|
|
1430
1426
|
"CARDS",
|
|
@@ -1439,7 +1435,7 @@ const ot = e.object({
|
|
|
1439
1435
|
"TEL",
|
|
1440
1436
|
"TEXT",
|
|
1441
1437
|
"URL"
|
|
1442
|
-
]),
|
|
1438
|
+
]), Dn = e.object({
|
|
1443
1439
|
id: e.string(),
|
|
1444
1440
|
type: e.literal("submit"),
|
|
1445
1441
|
label: e.string(),
|
|
@@ -1448,22 +1444,22 @@ const ot = e.object({
|
|
|
1448
1444
|
order: e.number().optional(),
|
|
1449
1445
|
visible: e.boolean().optional().default(!0),
|
|
1450
1446
|
customizations: e.record(e.string(), e.any()).optional()
|
|
1451
|
-
}),
|
|
1447
|
+
}), b = e.object({
|
|
1452
1448
|
x: e.number(),
|
|
1453
1449
|
y: e.number()
|
|
1454
|
-
}),
|
|
1450
|
+
}), Pt = e.object({
|
|
1455
1451
|
id: e.string(),
|
|
1456
1452
|
type: e.literal("FLOW"),
|
|
1457
|
-
coordinates:
|
|
1453
|
+
coordinates: b,
|
|
1458
1454
|
alias: e.string().min(1).max(150).optional(),
|
|
1459
1455
|
config: e.object({
|
|
1460
1456
|
flow_id: e.string().max(30),
|
|
1461
1457
|
next_node: e.string().optional()
|
|
1462
1458
|
})
|
|
1463
|
-
}),
|
|
1459
|
+
}), jt = e.object({
|
|
1464
1460
|
id: e.string(),
|
|
1465
1461
|
type: e.literal("ROUTER"),
|
|
1466
|
-
coordinates:
|
|
1462
|
+
coordinates: b,
|
|
1467
1463
|
alias: e.string().min(1).max(150),
|
|
1468
1464
|
config: e.object({
|
|
1469
1465
|
rules: e.array(
|
|
@@ -1479,15 +1475,15 @@ const ot = e.object({
|
|
|
1479
1475
|
}), xt = e.object({
|
|
1480
1476
|
id: e.string(),
|
|
1481
1477
|
type: e.literal("STEP"),
|
|
1482
|
-
coordinates:
|
|
1478
|
+
coordinates: b,
|
|
1483
1479
|
alias: e.string().min(1).max(150).optional(),
|
|
1484
1480
|
config: e.object({
|
|
1485
1481
|
components: e.array(H),
|
|
1486
1482
|
next_node: e.string().optional()
|
|
1487
1483
|
})
|
|
1488
1484
|
}), Ht = e.discriminatedUnion("type", [
|
|
1489
|
-
vt,
|
|
1490
1485
|
Pt,
|
|
1486
|
+
jt,
|
|
1491
1487
|
xt
|
|
1492
1488
|
]), Gt = e.object({
|
|
1493
1489
|
name: e.string().openapi({
|
|
@@ -1506,7 +1502,7 @@ const ot = e.object({
|
|
|
1506
1502
|
start: e.object({
|
|
1507
1503
|
hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
|
|
1508
1504
|
next_node: e.string().optional(),
|
|
1509
|
-
coordinates:
|
|
1505
|
+
coordinates: b.optional()
|
|
1510
1506
|
}).optional(),
|
|
1511
1507
|
ending: e.object({
|
|
1512
1508
|
redirection: e.object({
|
|
@@ -1514,7 +1510,7 @@ const ot = e.object({
|
|
|
1514
1510
|
target: e.string().optional()
|
|
1515
1511
|
}).optional(),
|
|
1516
1512
|
after_submit: e.object({ flow_id: e.string().optional() }).optional(),
|
|
1517
|
-
coordinates:
|
|
1513
|
+
coordinates: b.optional(),
|
|
1518
1514
|
resume_flow: e.boolean().optional()
|
|
1519
1515
|
}).optional(),
|
|
1520
1516
|
style: e.object({ css: e.string().optional() }).optional(),
|
|
@@ -1524,15 +1520,13 @@ const ot = e.object({
|
|
|
1524
1520
|
}).optional()
|
|
1525
1521
|
}).openapi({
|
|
1526
1522
|
description: "Schema for flow-based forms (matches Auth0 Forms structure)"
|
|
1527
|
-
}),
|
|
1528
|
-
...s.shape,
|
|
1529
|
-
...Gt.shape,
|
|
1523
|
+
}), Fn = s.extend(Gt.shape).extend({
|
|
1530
1524
|
id: e.string()
|
|
1531
|
-
}),
|
|
1525
|
+
}), Wt = e.object({
|
|
1532
1526
|
id: e.number().optional(),
|
|
1533
1527
|
text: e.string(),
|
|
1534
1528
|
type: e.enum(["info", "error", "success", "warning"])
|
|
1535
|
-
}),
|
|
1529
|
+
}), Bt = e.object({
|
|
1536
1530
|
id: e.string().optional(),
|
|
1537
1531
|
text: e.string(),
|
|
1538
1532
|
href: e.string(),
|
|
@@ -1545,8 +1539,8 @@ const ot = e.object({
|
|
|
1545
1539
|
title: e.string().optional(),
|
|
1546
1540
|
description: e.string().optional(),
|
|
1547
1541
|
components: e.array(H),
|
|
1548
|
-
messages: e.array(
|
|
1549
|
-
links: e.array(
|
|
1542
|
+
messages: e.array(Wt).optional(),
|
|
1543
|
+
links: e.array(Bt).optional(),
|
|
1550
1544
|
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
1551
1545
|
footer: e.string().optional()
|
|
1552
1546
|
});
|
|
@@ -1556,7 +1550,7 @@ function wn(o) {
|
|
|
1556
1550
|
function kn(o) {
|
|
1557
1551
|
return o.category === "WIDGET";
|
|
1558
1552
|
}
|
|
1559
|
-
function
|
|
1553
|
+
function Mn(o) {
|
|
1560
1554
|
return o.category === "FIELD";
|
|
1561
1555
|
}
|
|
1562
1556
|
const G = e.enum([
|
|
@@ -1568,19 +1562,19 @@ const G = e.enum([
|
|
|
1568
1562
|
"pre-user-deletion",
|
|
1569
1563
|
"post-user-deletion"
|
|
1570
1564
|
// Potentially other triggers specific to webhooks in the future
|
|
1571
|
-
]),
|
|
1565
|
+
]), W = e.enum([
|
|
1572
1566
|
"pre-user-registration",
|
|
1573
1567
|
"post-user-registration",
|
|
1574
1568
|
"post-user-login",
|
|
1575
1569
|
"validate-registration-username",
|
|
1576
1570
|
"pre-user-deletion",
|
|
1577
1571
|
"post-user-deletion"
|
|
1578
|
-
]),
|
|
1572
|
+
]), B = e.enum([
|
|
1579
1573
|
"post-user-login",
|
|
1580
1574
|
"post-user-registration",
|
|
1581
1575
|
"post-user-update",
|
|
1582
1576
|
"credentials-exchange"
|
|
1583
|
-
]),
|
|
1577
|
+
]), K = e.enum([
|
|
1584
1578
|
"post-user-login",
|
|
1585
1579
|
"credentials-exchange",
|
|
1586
1580
|
"pre-user-registration",
|
|
@@ -1589,7 +1583,7 @@ const G = e.enum([
|
|
|
1589
1583
|
"ensure-username",
|
|
1590
1584
|
"set-preferred-username",
|
|
1591
1585
|
"account-linking"
|
|
1592
|
-
]),
|
|
1586
|
+
]), vn = {
|
|
1593
1587
|
"ensure-username": {
|
|
1594
1588
|
name: "Ensure Username",
|
|
1595
1589
|
description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
|
|
@@ -1609,7 +1603,7 @@ const G = e.enum([
|
|
|
1609
1603
|
"post-user-update"
|
|
1610
1604
|
]
|
|
1611
1605
|
}
|
|
1612
|
-
},
|
|
1606
|
+
}, _ = {
|
|
1613
1607
|
enabled: e.boolean().default(!1),
|
|
1614
1608
|
synchronous: e.boolean().default(!1),
|
|
1615
1609
|
priority: e.number().optional(),
|
|
@@ -1625,77 +1619,77 @@ const G = e.enum([
|
|
|
1625
1619
|
*
|
|
1626
1620
|
* Everything else is opaque to the runtime. Persisted as JSON.
|
|
1627
1621
|
*/
|
|
1628
|
-
metadata: e.record(e.unknown()).optional()
|
|
1629
|
-
},
|
|
1630
|
-
...
|
|
1622
|
+
metadata: e.record(e.string(), e.unknown()).optional()
|
|
1623
|
+
}, Kt = e.object({
|
|
1624
|
+
..._,
|
|
1631
1625
|
trigger_id: G,
|
|
1632
1626
|
url: e.string()
|
|
1633
1627
|
}), Vt = e.object({
|
|
1634
|
-
...
|
|
1635
|
-
trigger_id:
|
|
1628
|
+
..._,
|
|
1629
|
+
trigger_id: W,
|
|
1636
1630
|
form_id: e.string()
|
|
1637
1631
|
}), Xt = e.object({
|
|
1638
|
-
...
|
|
1639
|
-
trigger_id:
|
|
1632
|
+
..._,
|
|
1633
|
+
trigger_id: B,
|
|
1640
1634
|
template_id: V
|
|
1641
1635
|
}), qt = e.object({
|
|
1642
|
-
...
|
|
1643
|
-
trigger_id:
|
|
1636
|
+
..._,
|
|
1637
|
+
trigger_id: K,
|
|
1644
1638
|
code_id: e.string()
|
|
1645
|
-
}),
|
|
1646
|
-
|
|
1639
|
+
}), Pn = e.union([
|
|
1640
|
+
Kt,
|
|
1647
1641
|
Vt,
|
|
1648
1642
|
Xt,
|
|
1649
1643
|
qt
|
|
1650
1644
|
]), zt = e.object({
|
|
1651
|
-
...
|
|
1652
|
-
trigger_id: G
|
|
1653
|
-
|
|
1645
|
+
..._,
|
|
1646
|
+
trigger_id: G
|
|
1647
|
+
}).extend(s.shape).extend({
|
|
1654
1648
|
hook_id: e.string(),
|
|
1655
1649
|
url: e.string()
|
|
1656
1650
|
}), Yt = e.object({
|
|
1657
|
-
...
|
|
1658
|
-
trigger_id:
|
|
1659
|
-
|
|
1651
|
+
..._,
|
|
1652
|
+
trigger_id: W
|
|
1653
|
+
}).extend(s.shape).extend({
|
|
1660
1654
|
hook_id: e.string(),
|
|
1661
1655
|
form_id: e.string()
|
|
1662
1656
|
}), Qt = e.object({
|
|
1663
|
-
...
|
|
1664
|
-
trigger_id:
|
|
1665
|
-
|
|
1657
|
+
..._,
|
|
1658
|
+
trigger_id: B
|
|
1659
|
+
}).extend(s.shape).extend({
|
|
1666
1660
|
hook_id: e.string(),
|
|
1667
1661
|
template_id: V
|
|
1668
1662
|
}), Zt = e.object({
|
|
1669
|
-
...
|
|
1670
|
-
trigger_id:
|
|
1671
|
-
|
|
1663
|
+
..._,
|
|
1664
|
+
trigger_id: K
|
|
1665
|
+
}).extend(s.shape).extend({
|
|
1672
1666
|
hook_id: e.string(),
|
|
1673
1667
|
code_id: e.string()
|
|
1674
|
-
}),
|
|
1668
|
+
}), jn = e.union([
|
|
1675
1669
|
zt,
|
|
1676
1670
|
Yt,
|
|
1677
1671
|
Qt,
|
|
1678
1672
|
Zt
|
|
1679
1673
|
]), Jt = e.object({
|
|
1680
1674
|
code: e.string().max(1e5),
|
|
1681
|
-
secrets: e.record(e.string()).optional()
|
|
1675
|
+
secrets: e.record(e.string(), e.string()).optional()
|
|
1682
1676
|
}), xn = Jt.extend({
|
|
1683
1677
|
id: e.string(),
|
|
1684
|
-
tenant_id: e.string()
|
|
1685
|
-
|
|
1686
|
-
}), $t = e.object({
|
|
1678
|
+
tenant_id: e.string()
|
|
1679
|
+
}).extend(s.shape), $t = e.object({
|
|
1687
1680
|
name: e.string().optional()
|
|
1688
1681
|
}), eo = e.object({
|
|
1689
1682
|
email: e.string().optional()
|
|
1690
1683
|
}), to = e.object({
|
|
1684
|
+
id: e.string().optional(),
|
|
1691
1685
|
organization_id: e.string().max(50),
|
|
1692
1686
|
inviter: $t,
|
|
1693
1687
|
invitee: eo,
|
|
1694
1688
|
invitation_url: e.string().url(),
|
|
1695
1689
|
client_id: e.string(),
|
|
1696
1690
|
connection_id: e.string().optional(),
|
|
1697
|
-
app_metadata: e.record(e.any()).default({}).optional(),
|
|
1698
|
-
user_metadata: e.record(e.any()).default({}).optional(),
|
|
1691
|
+
app_metadata: e.record(e.string(), e.any()).default({}).optional(),
|
|
1692
|
+
user_metadata: e.record(e.string(), e.any()).default({}).optional(),
|
|
1699
1693
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
1700
1694
|
roles: e.array(e.string()).default([]).optional(),
|
|
1701
1695
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
@@ -1705,7 +1699,7 @@ const G = e.enum([
|
|
|
1705
1699
|
created_at: e.string().datetime(),
|
|
1706
1700
|
expires_at: e.string().datetime(),
|
|
1707
1701
|
ticket_id: e.string().optional()
|
|
1708
|
-
}).extend(to.shape), oo = e.object({
|
|
1702
|
+
}).extend(to.omit({ id: !0 }).shape), oo = e.object({
|
|
1709
1703
|
alg: e.enum([
|
|
1710
1704
|
"RS256",
|
|
1711
1705
|
"RS384",
|
|
@@ -1746,7 +1740,7 @@ const G = e.enum([
|
|
|
1746
1740
|
});
|
|
1747
1741
|
}), Gn = e.object({
|
|
1748
1742
|
keys: e.array(oo)
|
|
1749
|
-
}),
|
|
1743
|
+
}), Wn = e.object({
|
|
1750
1744
|
issuer: e.string(),
|
|
1751
1745
|
authorization_endpoint: e.string(),
|
|
1752
1746
|
token_endpoint: e.string(),
|
|
@@ -1800,8 +1794,7 @@ const no = e.nativeEnum(X), io = e.object({
|
|
|
1800
1794
|
// ISO timestamp persisted for audit/metadata; not used to reject resumed sessions
|
|
1801
1795
|
}).openapi({
|
|
1802
1796
|
description: "This represents a login sesion"
|
|
1803
|
-
}),
|
|
1804
|
-
...ao.shape,
|
|
1797
|
+
}), Bn = ao.extend({
|
|
1805
1798
|
id: e.string().openapi({
|
|
1806
1799
|
description: "This is is used as the state in the universal login"
|
|
1807
1800
|
}),
|
|
@@ -1952,6 +1945,7 @@ const no = e.nativeEnum(X), io = e.object({
|
|
|
1952
1945
|
SUCCESS_EXCHANGE_NATIVE_SOCIAL_LOGIN: "sens",
|
|
1953
1946
|
SUCCESS_EXCHANGE_PASSWORD_OOB_FOR_ACCESS_TOKEN: "seoobft",
|
|
1954
1947
|
SUCCESS_EXCHANGE_PASSWORD_OTP_FOR_ACCESS_TOKEN: "seotpft",
|
|
1948
|
+
SUCCESS_EXCHANGE_PASSWORDLESS_OTP_FOR_ACCESS_TOKEN: "sepotpft",
|
|
1955
1949
|
SUCCESS_EXCHANGE_PASSWORD_FOR_ACCESS_TOKEN: "sepft",
|
|
1956
1950
|
SUCCESS_EXCHANGE_PASSKEY_OOB_FOR_ACCESS_TOKEN: "sepkoobft",
|
|
1957
1951
|
SUCCESS_EXCHANGE_PASSKEY_OTP_FOR_ACCESS_TOKEN: "sepkotpft",
|
|
@@ -2116,6 +2110,7 @@ const no = e.nativeEnum(X), io = e.object({
|
|
|
2116
2110
|
[t.SUCCESS_EXCHANGE_NATIVE_SOCIAL_LOGIN]: "Success Exchange Native Social Login",
|
|
2117
2111
|
[t.SUCCESS_EXCHANGE_PASSWORD_OOB_FOR_ACCESS_TOKEN]: "Success Exchange Password OOB for Access Token",
|
|
2118
2112
|
[t.SUCCESS_EXCHANGE_PASSWORD_OTP_FOR_ACCESS_TOKEN]: "Success Exchange Password OTP for Access Token",
|
|
2113
|
+
[t.SUCCESS_EXCHANGE_PASSWORDLESS_OTP_FOR_ACCESS_TOKEN]: "Success Exchange Passwordless OTP for Access Token",
|
|
2119
2114
|
[t.SUCCESS_EXCHANGE_PASSWORD_FOR_ACCESS_TOKEN]: "Success Exchange Password for Access Token",
|
|
2120
2115
|
[t.SUCCESS_EXCHANGE_PASSKEY_OOB_FOR_ACCESS_TOKEN]: "Success Exchange Passkey OOB for Access Token",
|
|
2121
2116
|
[t.SUCCESS_EXCHANGE_PASSKEY_OTP_FOR_ACCESS_TOKEN]: "Success Exchange Passkey OTP for Access Token",
|
|
@@ -2148,10 +2143,10 @@ const no = e.nativeEnum(X), io = e.object({
|
|
|
2148
2143
|
}, lo = (() => {
|
|
2149
2144
|
const o = {};
|
|
2150
2145
|
for (const [n, i] of Object.entries(t))
|
|
2151
|
-
n.startsWith("SUCCESS_") || n.startsWith("SUCCESSFUL_") || n.startsWith("SUCCESSFULLY_") ? o[i] = "success" : n.startsWith("FAILED_") || n.startsWith("ERROR_") || n.startsWith("BREACHED_") || n.startsWith("BLOCKED_") || n === "MFA_AUTH_FAILED" || n === "MFA_AUTH_REJECTED" || n === "MFA_RECOVERY_FAILED" || n === "MFA_ENROLLMENT_FAILED" || n === "EMAIL_VERIFICATION_FAILED" || n === "WEBAUTHN_CHALLENGE_FAILED" || n === "WEBAUTHN_ENROLLMENT_FAILED" || n === "PASSKEY_CHALLENGE_FAILED" || n === "FLOWS_EXECUTION_FAILED" || n === "FORMS_SUBMISSION_FAILED" || n === "CIBA_EXCHANGE_FAILED" || n === "CIBA_START_FAILED" || n === "ACTIONS_EXECUTION_FAILED" || n === "RICH_CONSENTS_ACCESS_ERROR" || n === "USER_CANCELED_DEVICE_CONFIRMATION" || n === "TOO_MANY_MFA_FAILURES" || n === "MFA_RECOVERY_RATE_LIMIT_EXCEED" || n === "API_LIMIT" || n === "MAX_AMOUNT_OF_AUTHENTICATORS" ? o[i] = "failure" : n.startsWith("WARNING_") || n === "API_LIMIT_WARNING" || n === "DEPRECATION_NOTICE" || n === "PRE_LOGIN_ASSESSMENT" ? o[i] = "warning" : n === "CODE_SENT" || n === "CODE_LINK_SENT" || n === "MFA_EMAIL_SENT" || n === "MFA_SMS_SENT" || n === "EMAIL_VERIFICATION_SENT" || n === "PUSH_NOTIFICATION_SENT" ? o[i] = "code_sent" : n === "INFORMATION" || n === "INFORMATION_FROM_SS_SSO_OPERATION" || n === "MANAGEMENT_API_READ_OPERATION" || n === "APPI" || n === "ACLS_SUMMARY" || n === "ORGANIZATION_MEMBER_ADDED" ? o[i] = "info" : o[i] = "other";
|
|
2146
|
+
n.startsWith("SUCCESS_") || n.startsWith("SUCCESSFUL_") || n.startsWith("SUCCESSFULLY_") || n.endsWith("_SUCCEEDED") || n.endsWith("_COMPLETED") ? o[i] = "success" : n.startsWith("FAILED_") || n.startsWith("ERROR_") || n.startsWith("BREACHED_") || n.startsWith("BLOCKED_") || n === "MFA_AUTH_FAILED" || n === "MFA_AUTH_REJECTED" || n === "MFA_RECOVERY_FAILED" || n === "MFA_ENROLLMENT_FAILED" || n === "EMAIL_VERIFICATION_FAILED" || n === "WEBAUTHN_CHALLENGE_FAILED" || n === "WEBAUTHN_ENROLLMENT_FAILED" || n === "PASSKEY_CHALLENGE_FAILED" || n === "FLOWS_EXECUTION_FAILED" || n === "FORMS_SUBMISSION_FAILED" || n === "CIBA_EXCHANGE_FAILED" || n === "CIBA_START_FAILED" || n === "ACTIONS_EXECUTION_FAILED" || n === "RICH_CONSENTS_ACCESS_ERROR" || n === "USER_CANCELED_DEVICE_CONFIRMATION" || n === "TOO_MANY_MFA_FAILURES" || n === "MFA_RECOVERY_RATE_LIMIT_EXCEED" || n === "API_LIMIT" || n === "MAX_AMOUNT_OF_AUTHENTICATORS" ? o[i] = "failure" : n.startsWith("WARNING_") || n === "API_LIMIT_WARNING" || n === "DEPRECATION_NOTICE" || n === "PRE_LOGIN_ASSESSMENT" ? o[i] = "warning" : n === "CODE_SENT" || n === "CODE_LINK_SENT" || n === "MFA_EMAIL_SENT" || n === "MFA_SMS_SENT" || n === "EMAIL_VERIFICATION_SENT" || n === "PUSH_NOTIFICATION_SENT" ? o[i] = "code_sent" : n === "INFORMATION" || n === "INFORMATION_FROM_SS_SSO_OPERATION" || n === "MANAGEMENT_API_READ_OPERATION" || n === "APPI" || n === "ACLS_SUMMARY" || n === "ORGANIZATION_MEMBER_ADDED" ? o[i] = "info" : o[i] = "other";
|
|
2152
2147
|
return o;
|
|
2153
2148
|
})();
|
|
2154
|
-
function
|
|
2149
|
+
function Kn(o) {
|
|
2155
2150
|
return ro[o] ?? o;
|
|
2156
2151
|
}
|
|
2157
2152
|
function Vn(o) {
|
|
@@ -2163,14 +2158,14 @@ const co = e.object({
|
|
|
2163
2158
|
env: e.object({
|
|
2164
2159
|
node: e.string().optional()
|
|
2165
2160
|
}).optional()
|
|
2166
|
-
}),
|
|
2161
|
+
}), _o = e.object({
|
|
2167
2162
|
country_code: e.string().length(2),
|
|
2168
2163
|
city_name: e.string(),
|
|
2169
2164
|
latitude: e.string(),
|
|
2170
2165
|
longitude: e.string(),
|
|
2171
2166
|
time_zone: e.string(),
|
|
2172
2167
|
continent_code: e.string()
|
|
2173
|
-
}),
|
|
2168
|
+
}), po = e.object({
|
|
2174
2169
|
type: so,
|
|
2175
2170
|
date: e.string(),
|
|
2176
2171
|
description: e.string().optional(),
|
|
@@ -2192,9 +2187,8 @@ const co = e.object({
|
|
|
2192
2187
|
hostname: e.string().optional(),
|
|
2193
2188
|
auth0_client: co.optional(),
|
|
2194
2189
|
log_id: e.string().optional(),
|
|
2195
|
-
location_info:
|
|
2196
|
-
}), Xn =
|
|
2197
|
-
..._o.shape,
|
|
2190
|
+
location_info: _o.optional()
|
|
2191
|
+
}), Xn = po.extend({
|
|
2198
2192
|
log_id: e.string()
|
|
2199
2193
|
}), go = e.enum([
|
|
2200
2194
|
"http",
|
|
@@ -2240,7 +2234,7 @@ const co = e.object({
|
|
|
2240
2234
|
id: e.string(),
|
|
2241
2235
|
created_at: e.string(),
|
|
2242
2236
|
updated_at: e.string()
|
|
2243
|
-
}).extend(ho.shape),
|
|
2237
|
+
}).extend(ho.shape), Ao = e.object({
|
|
2244
2238
|
enabled: e.boolean().optional(),
|
|
2245
2239
|
shields: e.array(e.string()).optional(),
|
|
2246
2240
|
admin_notification_frequency: e.array(e.string()).optional(),
|
|
@@ -2253,7 +2247,7 @@ const co = e.object({
|
|
|
2253
2247
|
shields: e.array(e.string()).optional()
|
|
2254
2248
|
}).optional()
|
|
2255
2249
|
}).optional()
|
|
2256
|
-
}),
|
|
2250
|
+
}), bo = e.object({
|
|
2257
2251
|
enabled: e.boolean().optional(),
|
|
2258
2252
|
shields: e.array(e.string()).optional(),
|
|
2259
2253
|
allowlist: e.array(e.string()).optional(),
|
|
@@ -2273,17 +2267,17 @@ const co = e.object({
|
|
|
2273
2267
|
rate: e.number().optional()
|
|
2274
2268
|
}).optional()
|
|
2275
2269
|
}).optional()
|
|
2276
|
-
}), Io = e.object({
|
|
2277
|
-
breached_password_detection: bo.optional(),
|
|
2278
|
-
brute_force_protection: Ao.optional(),
|
|
2279
|
-
suspicious_ip_throttling: fo.optional()
|
|
2280
2270
|
}), Co = e.object({
|
|
2271
|
+
breached_password_detection: Ao.optional(),
|
|
2272
|
+
brute_force_protection: bo.optional(),
|
|
2273
|
+
suspicious_ip_throttling: fo.optional()
|
|
2274
|
+
}), Io = e.object({
|
|
2281
2275
|
id: e.string().optional(),
|
|
2282
2276
|
user_id: e.string(),
|
|
2283
2277
|
password: e.string(),
|
|
2284
2278
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
|
|
2285
2279
|
is_current: e.boolean().default(!0)
|
|
2286
|
-
}), Yn =
|
|
2280
|
+
}), Yn = Io.extend({
|
|
2287
2281
|
id: e.string(),
|
|
2288
2282
|
created_at: e.string(),
|
|
2289
2283
|
updated_at: e.string()
|
|
@@ -2310,9 +2304,8 @@ const co = e.object({
|
|
|
2310
2304
|
created_at: e.string(),
|
|
2311
2305
|
updated_at: e.string(),
|
|
2312
2306
|
authenticated_at: e.string(),
|
|
2313
|
-
last_interaction_at: e.string()
|
|
2314
|
-
|
|
2315
|
-
}), Zn = e.object({
|
|
2307
|
+
last_interaction_at: e.string()
|
|
2308
|
+
}).extend(Oo.shape), Zn = e.object({
|
|
2316
2309
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
2317
2310
|
tenant_id: e.string().optional().openapi({
|
|
2318
2311
|
description: "The tenant the key belongs to. Omitted means the key is shared / control-plane scoped."
|
|
@@ -2461,10 +2454,10 @@ const co = e.object({
|
|
|
2461
2454
|
// Default token quota
|
|
2462
2455
|
default_token_quota: e.object({
|
|
2463
2456
|
clients: e.object({
|
|
2464
|
-
client_credentials: e.record(e.any()).optional()
|
|
2457
|
+
client_credentials: e.record(e.string(), e.any()).optional()
|
|
2465
2458
|
}).optional(),
|
|
2466
2459
|
organizations: e.object({
|
|
2467
|
-
client_credentials: e.record(e.any()).optional()
|
|
2460
|
+
client_credentials: e.record(e.string(), e.any()).optional()
|
|
2468
2461
|
}).optional()
|
|
2469
2462
|
}).nullish(),
|
|
2470
2463
|
// Default audience
|
|
@@ -2493,7 +2486,7 @@ const co = e.object({
|
|
|
2493
2486
|
pushed_authorization_requests_supported: e.boolean().optional(),
|
|
2494
2487
|
authorization_response_iss_parameter_supported: e.boolean().optional(),
|
|
2495
2488
|
// Attack-protection config (singleton, exposed via /api/v2/attack-protection)
|
|
2496
|
-
attack_protection:
|
|
2489
|
+
attack_protection: Co.optional(),
|
|
2497
2490
|
// Guardian MFA Factors configuration (internal storage, exposed via /guardian API)
|
|
2498
2491
|
mfa: e.object({
|
|
2499
2492
|
// MFA policy: "never" = MFA disabled, "always" = MFA required for all logins
|
|
@@ -2527,8 +2520,8 @@ const co = e.object({
|
|
|
2527
2520
|
}).optional()
|
|
2528
2521
|
}), Jn = e.object({
|
|
2529
2522
|
created_at: e.string().nullable().transform((o) => o ?? ""),
|
|
2530
|
-
updated_at: e.string().nullable().transform((o) => o ?? "")
|
|
2531
|
-
|
|
2523
|
+
updated_at: e.string().nullable().transform((o) => o ?? "")
|
|
2524
|
+
}).extend(To.shape).extend({
|
|
2532
2525
|
id: e.string(),
|
|
2533
2526
|
// Computed server-side: true when this tenant is the deployment's control
|
|
2534
2527
|
// plane (either `multiTenancyConfig.controlPlaneTenantId` matches the
|
|
@@ -2593,7 +2586,7 @@ const yo = e.object({
|
|
|
2593
2586
|
reference_text_size: e.number(),
|
|
2594
2587
|
subtitle: m,
|
|
2595
2588
|
title: m
|
|
2596
|
-
}),
|
|
2589
|
+
}), Do = e.object({
|
|
2597
2590
|
background_color: e.string(),
|
|
2598
2591
|
background_image_url: e.string(),
|
|
2599
2592
|
page_layout: e.enum(["center", "left", "right"]),
|
|
@@ -2606,7 +2599,7 @@ const yo = e.object({
|
|
|
2606
2599
|
* Optional for backwards compatibility; absent values mean "widget".
|
|
2607
2600
|
*/
|
|
2608
2601
|
logo_placement: e.enum(["widget", "chip", "none"]).optional()
|
|
2609
|
-
}),
|
|
2602
|
+
}), Fo = e.object({
|
|
2610
2603
|
header_text_alignment: e.enum(["center", "left", "right"]),
|
|
2611
2604
|
logo_height: e.number(),
|
|
2612
2605
|
logo_position: e.enum(["center", "left", "none", "right"]),
|
|
@@ -2617,8 +2610,8 @@ const yo = e.object({
|
|
|
2617
2610
|
colors: Ro,
|
|
2618
2611
|
displayName: e.string(),
|
|
2619
2612
|
fonts: Lo,
|
|
2620
|
-
page_background:
|
|
2621
|
-
widget:
|
|
2613
|
+
page_background: Do,
|
|
2614
|
+
widget: Fo
|
|
2622
2615
|
}), ei = Uo.extend({
|
|
2623
2616
|
themeId: e.string()
|
|
2624
2617
|
}), ti = e.object({
|
|
@@ -2689,23 +2682,21 @@ const yo = e.object({
|
|
|
2689
2682
|
// ISO of the *first* rotation. Anchors the leeway window so siblings minted
|
|
2690
2683
|
// within the window don't extend the parent's exposure.
|
|
2691
2684
|
rotated_at: e.string().optional()
|
|
2692
|
-
}), ii =
|
|
2685
|
+
}), ii = ko.extend({
|
|
2693
2686
|
// When the refresh token record was created.
|
|
2694
2687
|
created_at: e.string(),
|
|
2695
2688
|
// When the token was explicitly revoked (null = still active).
|
|
2696
|
-
revoked_at: e.string().optional()
|
|
2697
|
-
// Spread in the rest of the refresh token properties.
|
|
2698
|
-
...ko.shape
|
|
2689
|
+
revoked_at: e.string().optional()
|
|
2699
2690
|
}), ai = e.object({
|
|
2700
2691
|
to: e.string(),
|
|
2701
2692
|
message: e.string()
|
|
2702
2693
|
}), si = e.object({
|
|
2703
2694
|
name: e.string(),
|
|
2704
2695
|
options: e.object({})
|
|
2705
|
-
}),
|
|
2696
|
+
}), Mo = e.object({
|
|
2706
2697
|
value: e.string(),
|
|
2707
2698
|
description: e.string().optional()
|
|
2708
|
-
}),
|
|
2699
|
+
}), vo = e.object({
|
|
2709
2700
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
2710
2701
|
enforce_policies: e.boolean().optional(),
|
|
2711
2702
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -2715,11 +2706,11 @@ const yo = e.object({
|
|
|
2715
2706
|
mtls: e.object({
|
|
2716
2707
|
bound_access_tokens: e.boolean().optional()
|
|
2717
2708
|
}).optional()
|
|
2718
|
-
}),
|
|
2709
|
+
}), Po = e.object({
|
|
2719
2710
|
id: e.string().optional(),
|
|
2720
2711
|
name: e.string(),
|
|
2721
2712
|
identifier: e.string(),
|
|
2722
|
-
scopes: e.array(
|
|
2713
|
+
scopes: e.array(Mo).optional(),
|
|
2723
2714
|
signing_alg: e.string().optional(),
|
|
2724
2715
|
signing_secret: e.string().optional(),
|
|
2725
2716
|
token_lifetime: e.number().default(86400),
|
|
@@ -2727,30 +2718,27 @@ const yo = e.object({
|
|
|
2727
2718
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
2728
2719
|
allow_offline_access: e.boolean().optional(),
|
|
2729
2720
|
verificationKey: e.string().optional(),
|
|
2730
|
-
options:
|
|
2721
|
+
options: vo.optional(),
|
|
2731
2722
|
is_system: e.boolean().optional(),
|
|
2732
|
-
metadata: e.record(e.any()).optional()
|
|
2733
|
-
}),
|
|
2734
|
-
...vo.shape,
|
|
2723
|
+
metadata: e.record(e.string(), e.any()).optional()
|
|
2724
|
+
}), jo = Po.extend({
|
|
2735
2725
|
created_at: e.string().optional(),
|
|
2736
2726
|
updated_at: e.string().optional()
|
|
2737
|
-
}), ri = e.array(
|
|
2727
|
+
}), ri = e.array(jo), xo = e.object({
|
|
2738
2728
|
role_id: e.string(),
|
|
2739
2729
|
resource_server_identifier: e.string(),
|
|
2740
2730
|
permission_name: e.string()
|
|
2741
|
-
}), Ho =
|
|
2742
|
-
...xo.shape,
|
|
2731
|
+
}), Ho = xo.extend({
|
|
2743
2732
|
created_at: e.string()
|
|
2744
2733
|
}), li = e.array(Ho), Go = e.object({
|
|
2745
2734
|
user_id: e.string(),
|
|
2746
2735
|
resource_server_identifier: e.string(),
|
|
2747
2736
|
permission_name: e.string(),
|
|
2748
2737
|
organization_id: e.string().optional()
|
|
2749
|
-
}),
|
|
2750
|
-
...Go.shape,
|
|
2738
|
+
}), Wo = Go.extend({
|
|
2751
2739
|
tenant_id: e.string(),
|
|
2752
2740
|
created_at: e.string().optional()
|
|
2753
|
-
}), ci = e.array(
|
|
2741
|
+
}), ci = e.array(Wo), Bo = e.object({
|
|
2754
2742
|
user_id: e.string(),
|
|
2755
2743
|
resource_server_identifier: e.string(),
|
|
2756
2744
|
resource_server_name: e.string(),
|
|
@@ -2758,17 +2746,16 @@ const yo = e.object({
|
|
|
2758
2746
|
description: e.string().nullable().optional(),
|
|
2759
2747
|
created_at: e.string().optional(),
|
|
2760
2748
|
organization_id: e.string().optional()
|
|
2761
|
-
}),
|
|
2762
|
-
|
|
2763
|
-
),
|
|
2749
|
+
}), _i = e.array(
|
|
2750
|
+
Bo
|
|
2751
|
+
), Ko = e.object({
|
|
2764
2752
|
user_id: e.string(),
|
|
2765
2753
|
role_id: e.string(),
|
|
2766
2754
|
organization_id: e.string().optional()
|
|
2767
|
-
}), Vo =
|
|
2768
|
-
...Wo.shape,
|
|
2755
|
+
}), Vo = Ko.extend({
|
|
2769
2756
|
tenant_id: e.string(),
|
|
2770
2757
|
created_at: e.string().optional()
|
|
2771
|
-
}),
|
|
2758
|
+
}), pi = e.array(Vo), Xo = e.object({
|
|
2772
2759
|
id: e.string().optional().openapi({
|
|
2773
2760
|
description: "The unique identifier of the role. If not provided, one will be generated."
|
|
2774
2761
|
}),
|
|
@@ -2779,7 +2766,7 @@ const yo = e.object({
|
|
|
2779
2766
|
description: "The description of the role"
|
|
2780
2767
|
}),
|
|
2781
2768
|
is_system: e.boolean().optional(),
|
|
2782
|
-
metadata: e.record(e.any()).optional().openapi({
|
|
2769
|
+
metadata: e.record(e.string(), e.any()).optional().openapi({
|
|
2783
2770
|
description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
|
|
2784
2771
|
})
|
|
2785
2772
|
}), qo = Xo.extend({
|
|
@@ -2836,16 +2823,14 @@ const yo = e.object({
|
|
|
2836
2823
|
description: "The display name of the organization"
|
|
2837
2824
|
}),
|
|
2838
2825
|
branding: zo,
|
|
2839
|
-
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
2826
|
+
metadata: e.record(e.string(), e.any()).default({}).optional().openapi({
|
|
2840
2827
|
description: "Custom metadata for the organization"
|
|
2841
2828
|
}),
|
|
2842
2829
|
enabled_connections: e.array(Yo).default([]).optional().openapi({
|
|
2843
2830
|
description: "List of enabled connections for the organization"
|
|
2844
2831
|
}),
|
|
2845
2832
|
token_quota: Qo
|
|
2846
|
-
}), gi =
|
|
2847
|
-
...Zo.shape,
|
|
2848
|
-
...s.shape,
|
|
2833
|
+
}), gi = Zo.extend(s.shape).extend({
|
|
2849
2834
|
id: e.string(),
|
|
2850
2835
|
// Override name to be lenient when reading from database (to support existing uppercase names)
|
|
2851
2836
|
name: e.string().min(1).openapi({
|
|
@@ -2858,8 +2843,7 @@ const yo = e.object({
|
|
|
2858
2843
|
assign_membership_on_login: e.boolean().optional().default(!1),
|
|
2859
2844
|
show_as_button: e.boolean().optional().default(!0),
|
|
2860
2845
|
is_signup_enabled: e.boolean().optional().default(!0)
|
|
2861
|
-
}), $o =
|
|
2862
|
-
...Jo.shape,
|
|
2846
|
+
}), $o = Jo.extend({
|
|
2863
2847
|
// Auth0 includes the embedded connection in GET responses.
|
|
2864
2848
|
connection: e.object({
|
|
2865
2849
|
name: e.string().optional(),
|
|
@@ -2876,9 +2860,7 @@ const yo = e.object({
|
|
|
2876
2860
|
organization_id: e.string().openapi({
|
|
2877
2861
|
description: "ID of the organization"
|
|
2878
2862
|
})
|
|
2879
|
-
}), mi =
|
|
2880
|
-
...en.shape,
|
|
2881
|
-
...s.shape,
|
|
2863
|
+
}), mi = en.extend(s.shape).extend({
|
|
2882
2864
|
id: e.string()
|
|
2883
2865
|
}), Ei = e.object({
|
|
2884
2866
|
// Session settings
|
|
@@ -3008,19 +2990,19 @@ const yo = e.object({
|
|
|
3008
2990
|
}), hi = e.number().openapi({
|
|
3009
2991
|
description: "Number of active users in the last 30 days",
|
|
3010
2992
|
example: 1234
|
|
3011
|
-
}),
|
|
2993
|
+
}), Ai = e.enum([
|
|
3012
2994
|
"active-users",
|
|
3013
2995
|
"logins",
|
|
3014
2996
|
"signups",
|
|
3015
2997
|
"refresh-tokens",
|
|
3016
2998
|
"sessions"
|
|
3017
|
-
]),
|
|
2999
|
+
]), bi = e.enum(["hour", "day", "week", "month"]), fi = e.enum([
|
|
3018
3000
|
"time",
|
|
3019
3001
|
"connection",
|
|
3020
3002
|
"client_id",
|
|
3021
3003
|
"user_type",
|
|
3022
3004
|
"event"
|
|
3023
|
-
]),
|
|
3005
|
+
]), Ci = e.enum([
|
|
3024
3006
|
"password",
|
|
3025
3007
|
"social",
|
|
3026
3008
|
"passwordless",
|
|
@@ -3032,7 +3014,7 @@ const yo = e.object({
|
|
|
3032
3014
|
elapsed: e.number(),
|
|
3033
3015
|
rows_read: e.number().optional(),
|
|
3034
3016
|
bytes_read: e.number().optional()
|
|
3035
|
-
}),
|
|
3017
|
+
}), Ii = e.object({
|
|
3036
3018
|
meta: e.array(tn),
|
|
3037
3019
|
data: e.array(e.record(e.string(), e.any())),
|
|
3038
3020
|
rows: e.number(),
|
|
@@ -3140,8 +3122,7 @@ function Q(o, n) {
|
|
|
3140
3122
|
path: ["public_key"]
|
|
3141
3123
|
}));
|
|
3142
3124
|
}
|
|
3143
|
-
const yi = Y.superRefine(Q), Ri =
|
|
3144
|
-
...Y.shape,
|
|
3125
|
+
const yi = Y.superRefine(Q), Ri = Y.extend({
|
|
3145
3126
|
id: e.string(),
|
|
3146
3127
|
created_at: e.string(),
|
|
3147
3128
|
updated_at: e.string()
|
|
@@ -3152,30 +3133,30 @@ function Li(o) {
|
|
|
3152
3133
|
throw new Error(`Invalid user_id: ${o}`);
|
|
3153
3134
|
return { connection: n, id: i };
|
|
3154
3135
|
}
|
|
3155
|
-
function
|
|
3136
|
+
function Di(o) {
|
|
3156
3137
|
const {
|
|
3157
3138
|
primary: n,
|
|
3158
3139
|
secondaries: i,
|
|
3159
3140
|
syncMethods: S = ["create", "rawCreate", "update", "remove", "delete", "set"]
|
|
3160
3141
|
} = o, f = {
|
|
3161
|
-
get(
|
|
3142
|
+
get(p, r) {
|
|
3162
3143
|
if (typeof r == "symbol")
|
|
3163
|
-
return
|
|
3164
|
-
const d =
|
|
3144
|
+
return p[r];
|
|
3145
|
+
const d = p[r];
|
|
3165
3146
|
return typeof d != "function" ? d : S.includes(r) ? async (...g) => {
|
|
3166
|
-
const
|
|
3147
|
+
const C = await d.apply(p, g), u = [];
|
|
3167
3148
|
for (const l of i) {
|
|
3168
3149
|
const h = l.adapter[r];
|
|
3169
3150
|
if (typeof h != "function")
|
|
3170
3151
|
continue;
|
|
3171
|
-
const
|
|
3152
|
+
const I = (async () => {
|
|
3172
3153
|
try {
|
|
3173
3154
|
await h.apply(l.adapter, g);
|
|
3174
|
-
} catch (
|
|
3155
|
+
} catch (A) {
|
|
3175
3156
|
try {
|
|
3176
|
-
l.onError ? l.onError(
|
|
3157
|
+
l.onError ? l.onError(A, r, g) : console.error(
|
|
3177
3158
|
`Passthrough adapter: secondary write failed for ${r}:`,
|
|
3178
|
-
|
|
3159
|
+
A
|
|
3179
3160
|
);
|
|
3180
3161
|
} catch (O) {
|
|
3181
3162
|
console.error(
|
|
@@ -3185,19 +3166,19 @@ function Fi(o) {
|
|
|
3185
3166
|
}
|
|
3186
3167
|
}
|
|
3187
3168
|
})();
|
|
3188
|
-
l.blocking && u.push(
|
|
3169
|
+
l.blocking && u.push(I);
|
|
3189
3170
|
}
|
|
3190
|
-
return u.length > 0 && await Promise.all(u),
|
|
3191
|
-
} : d.bind(
|
|
3171
|
+
return u.length > 0 && await Promise.all(u), C;
|
|
3172
|
+
} : d.bind(p);
|
|
3192
3173
|
}
|
|
3193
3174
|
};
|
|
3194
3175
|
return new Proxy(n, f);
|
|
3195
3176
|
}
|
|
3196
|
-
function
|
|
3177
|
+
function Fi(o) {
|
|
3197
3178
|
return o;
|
|
3198
3179
|
}
|
|
3199
3180
|
function Ui(o) {
|
|
3200
|
-
var f,
|
|
3181
|
+
var f, p, r, d, g, C, u, l, h, I, A, O;
|
|
3201
3182
|
const n = o == null ? void 0 : o.options;
|
|
3202
3183
|
if (!n)
|
|
3203
3184
|
return {
|
|
@@ -3208,7 +3189,7 @@ function Ui(o) {
|
|
|
3208
3189
|
};
|
|
3209
3190
|
const i = n.attributes;
|
|
3210
3191
|
if (i) {
|
|
3211
|
-
const Z = ((
|
|
3192
|
+
const Z = ((p = (f = i.username) == null ? void 0 : f.identifier) == null ? void 0 : p.active) === !0, J = ((d = (r = i.email) == null ? void 0 : r.identifier) == null ? void 0 : d.active) !== !1, $ = ((C = (g = i.username) == null ? void 0 : g.validation) == null ? void 0 : C.min_length) ?? 1, ee = ((l = (u = i.username) == null ? void 0 : u.validation) == null ? void 0 : l.max_length) ?? 15;
|
|
3212
3193
|
return {
|
|
3213
3194
|
usernameIdentifierActive: Z,
|
|
3214
3195
|
emailIdentifierActive: J,
|
|
@@ -3219,8 +3200,8 @@ function Ui(o) {
|
|
|
3219
3200
|
return {
|
|
3220
3201
|
usernameIdentifierActive: n.requires_username === !0,
|
|
3221
3202
|
emailIdentifierActive: !0,
|
|
3222
|
-
usernameMinLength: ((
|
|
3223
|
-
usernameMaxLength: ((O = (
|
|
3203
|
+
usernameMinLength: ((I = (h = n.validation) == null ? void 0 : h.username) == null ? void 0 : I.min) ?? 1,
|
|
3204
|
+
usernameMaxLength: ((O = (A = n.validation) == null ? void 0 : A.username) == null ? void 0 : O.max) ?? 15
|
|
3224
3205
|
};
|
|
3225
3206
|
}
|
|
3226
3207
|
function wi(o) {
|
|
@@ -3229,25 +3210,25 @@ function wi(o) {
|
|
|
3229
3210
|
export {
|
|
3230
3211
|
un as Auth0ActionEnum,
|
|
3231
3212
|
co as Auth0Client,
|
|
3232
|
-
|
|
3233
|
-
|
|
3213
|
+
j as AuthorizationResponseMode,
|
|
3214
|
+
P as AuthorizationResponseType,
|
|
3234
3215
|
x as CodeChallengeMethod,
|
|
3235
|
-
|
|
3236
|
-
|
|
3216
|
+
v as ComponentCategory,
|
|
3217
|
+
M as ComponentType,
|
|
3237
3218
|
mn as EmailActionEnum,
|
|
3238
3219
|
Ln as FORM_FIELD_TYPES,
|
|
3239
3220
|
gn as FlowActionTypeEnum,
|
|
3240
3221
|
No as GrantType,
|
|
3241
|
-
|
|
3222
|
+
_o as LocationInfo,
|
|
3242
3223
|
t as LogTypes,
|
|
3243
3224
|
X as LoginSessionState,
|
|
3244
|
-
|
|
3245
|
-
|
|
3225
|
+
We as NodeType,
|
|
3226
|
+
be as RedirectTargetEnum,
|
|
3246
3227
|
Ti as Strategy,
|
|
3247
3228
|
Ni as StrategyType,
|
|
3248
|
-
|
|
3229
|
+
F as actionDependencySchema,
|
|
3249
3230
|
ne as actionExecutionErrorSchema,
|
|
3250
|
-
|
|
3231
|
+
_n as actionExecutionInsertSchema,
|
|
3251
3232
|
ae as actionExecutionLogEntrySchema,
|
|
3252
3233
|
se as actionExecutionLogsSchema,
|
|
3253
3234
|
ie as actionExecutionResultSchema,
|
|
@@ -3258,21 +3239,21 @@ export {
|
|
|
3258
3239
|
Ve as actionNodeSchema,
|
|
3259
3240
|
cn as actionSchema,
|
|
3260
3241
|
U as actionSecretSchema,
|
|
3261
|
-
|
|
3242
|
+
D as actionTriggerSchema,
|
|
3262
3243
|
ln as actionUpdateSchema,
|
|
3263
3244
|
le as actionVersionInsertSchema,
|
|
3264
|
-
|
|
3245
|
+
pn as actionVersionSchema,
|
|
3265
3246
|
hi as activeUsersResponseSchema,
|
|
3266
|
-
|
|
3247
|
+
_e as actorSchema,
|
|
3267
3248
|
Ne as addressSchema,
|
|
3268
3249
|
tn as analyticsColumnMetaSchema,
|
|
3269
3250
|
fi as analyticsGroupBySchema,
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3251
|
+
bi as analyticsIntervalSchema,
|
|
3252
|
+
Ii as analyticsQueryResponseSchema,
|
|
3253
|
+
Ai as analyticsResourceSchema,
|
|
3273
3254
|
on as analyticsStatisticsSchema,
|
|
3274
|
-
|
|
3275
|
-
|
|
3255
|
+
Ci as analyticsUserTypeSchema,
|
|
3256
|
+
Co as attackProtectionSchema,
|
|
3276
3257
|
ce as auditCategorySchema,
|
|
3277
3258
|
Ee as auditEventInsertSchema,
|
|
3278
3259
|
dn as auditEventSchema,
|
|
@@ -3281,7 +3262,7 @@ export {
|
|
|
3281
3262
|
Qe as auth0FlowSchema,
|
|
3282
3263
|
Sn as auth0QuerySchema,
|
|
3283
3264
|
he as auth0UpdateUserActionSchema,
|
|
3284
|
-
|
|
3265
|
+
An as auth0UserResponseSchema,
|
|
3285
3266
|
Je as authParamsSchema,
|
|
3286
3267
|
yi as authenticationMethodInsertSchema,
|
|
3287
3268
|
Ri as authenticationMethodSchema,
|
|
@@ -3290,30 +3271,30 @@ export {
|
|
|
3290
3271
|
kt as blockComponentSchema,
|
|
3291
3272
|
yo as bordersSchema,
|
|
3292
3273
|
Tn as brandingSchema,
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3274
|
+
Ao as breachedPasswordDetectionSchema,
|
|
3275
|
+
bo as bruteForceProtectionSchema,
|
|
3276
|
+
Pe as buttonComponentSchema,
|
|
3296
3277
|
Ze as claimsRequestSchema,
|
|
3297
3278
|
Ue as clientGrantInsertSchema,
|
|
3298
|
-
|
|
3279
|
+
Cn as clientGrantListSchema,
|
|
3299
3280
|
we as clientGrantSchema,
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3281
|
+
Fe as clientInsertSchema,
|
|
3282
|
+
Me as clientRegistrationTokenInsertSchema,
|
|
3283
|
+
In as clientRegistrationTokenSchema,
|
|
3303
3284
|
ke as clientRegistrationTokenTypeSchema,
|
|
3304
3285
|
fn as clientSchema,
|
|
3305
3286
|
et as codeInsertSchema,
|
|
3306
3287
|
Nn as codeSchema,
|
|
3307
3288
|
$e as codeTypeSchema,
|
|
3308
3289
|
Ro as colorsSchema,
|
|
3309
|
-
|
|
3290
|
+
Wt as componentMessageSchema,
|
|
3310
3291
|
Ge as componentSchema,
|
|
3311
3292
|
ot as connectionInsertSchema,
|
|
3312
3293
|
tt as connectionOptionsSchema,
|
|
3313
3294
|
yn as connectionSchema,
|
|
3314
3295
|
E as coordinatesSchema,
|
|
3315
|
-
|
|
3316
|
-
|
|
3296
|
+
Di as createPassthroughAdapter,
|
|
3297
|
+
Fi as createWriteOnlyAdapter,
|
|
3317
3298
|
nt as customDomainInsertSchema,
|
|
3318
3299
|
at as customDomainSchema,
|
|
3319
3300
|
Rn as customDomainWithTenantIdSchema,
|
|
@@ -3324,47 +3305,47 @@ export {
|
|
|
3324
3305
|
wo as emailTemplateNameSchema,
|
|
3325
3306
|
ni as emailTemplateSchema,
|
|
3326
3307
|
Se as emailVerificationRulesSchema,
|
|
3327
|
-
|
|
3308
|
+
Ae as emailVerifyActionSchema,
|
|
3328
3309
|
Ye as endingSchema,
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3310
|
+
vt as fieldComponentSchema,
|
|
3311
|
+
Ce as flowActionStepSchema,
|
|
3312
|
+
Ie as flowInsertSchema,
|
|
3332
3313
|
En as flowSchema,
|
|
3333
3314
|
xe as flowsFieldComponentSchema,
|
|
3334
|
-
|
|
3335
|
-
|
|
3315
|
+
Ke as flowsFlowNodeSchema,
|
|
3316
|
+
Be as flowsStepNodeSchema,
|
|
3336
3317
|
m as fontDetailsSchema,
|
|
3337
3318
|
Lo as fontsSchema,
|
|
3338
|
-
|
|
3319
|
+
Dn as formControlSchema,
|
|
3339
3320
|
Gt as formInsertSchema,
|
|
3340
3321
|
H as formNodeComponentDefinition,
|
|
3341
3322
|
Ht as formNodeSchema,
|
|
3342
|
-
|
|
3323
|
+
Fn as formSchema,
|
|
3343
3324
|
He as genericComponentSchema,
|
|
3344
3325
|
Xe as genericNodeSchema,
|
|
3345
3326
|
Ui as getConnectionIdentifierConfig,
|
|
3346
3327
|
Vn as getLogTypeCategory,
|
|
3347
|
-
|
|
3328
|
+
Kn as getLogTypeDescription,
|
|
3348
3329
|
Jt as hookCodeInsertSchema,
|
|
3349
3330
|
xn as hookCodeSchema,
|
|
3350
|
-
|
|
3351
|
-
|
|
3331
|
+
Pn as hookInsertSchema,
|
|
3332
|
+
jn as hookSchema,
|
|
3352
3333
|
V as hookTemplateId,
|
|
3353
|
-
|
|
3334
|
+
vn as hookTemplates,
|
|
3354
3335
|
Te as identitySchema,
|
|
3355
3336
|
to as inviteInsertSchema,
|
|
3356
3337
|
Hn as inviteSchema,
|
|
3357
3338
|
eo as inviteeSchema,
|
|
3358
3339
|
$t as inviterSchema,
|
|
3359
3340
|
wn as isBlockComponent,
|
|
3360
|
-
|
|
3341
|
+
Mn as isFieldComponent,
|
|
3361
3342
|
wi as isPlainObject,
|
|
3362
3343
|
kn as isWidgetComponent,
|
|
3363
3344
|
Gn as jwksKeySchema,
|
|
3364
3345
|
oo as jwksSchema,
|
|
3365
|
-
|
|
3346
|
+
je as legalComponentSchema,
|
|
3366
3347
|
ue as locationInfoSchema,
|
|
3367
|
-
|
|
3348
|
+
po as logInsertSchema,
|
|
3368
3349
|
Xn as logSchema,
|
|
3369
3350
|
uo as logStreamFilterSchema,
|
|
3370
3351
|
mo as logStreamInsertSchema,
|
|
@@ -3375,14 +3356,14 @@ export {
|
|
|
3375
3356
|
ro as logTypeDescriptions,
|
|
3376
3357
|
io as loginSessionAuthStrategySchema,
|
|
3377
3358
|
ao as loginSessionInsertSchema,
|
|
3378
|
-
|
|
3359
|
+
Bn as loginSessionSchema,
|
|
3379
3360
|
no as loginSessionStateSchema,
|
|
3380
3361
|
Eo as migrationProviderTypeSchema,
|
|
3381
3362
|
So as migrationSourceCredentialsSchema,
|
|
3382
3363
|
ho as migrationSourceInsertSchema,
|
|
3383
3364
|
zn as migrationSourceSchema,
|
|
3384
3365
|
qe as nodeSchema,
|
|
3385
|
-
|
|
3366
|
+
Wn as openIDConfigurationSchema,
|
|
3386
3367
|
zo as organizationBrandingSchema,
|
|
3387
3368
|
Jo as organizationConnectionInsertSchema,
|
|
3388
3369
|
ui as organizationConnectionListSchema,
|
|
@@ -3391,9 +3372,9 @@ export {
|
|
|
3391
3372
|
Zo as organizationInsertSchema,
|
|
3392
3373
|
gi as organizationSchema,
|
|
3393
3374
|
Qo as organizationTokenQuotaSchema,
|
|
3394
|
-
|
|
3375
|
+
Do as pageBackgroundSchema,
|
|
3395
3376
|
Li as parseUserId,
|
|
3396
|
-
|
|
3377
|
+
Io as passwordInsertSchema,
|
|
3397
3378
|
Yn as passwordSchema,
|
|
3398
3379
|
Oe as profileDataSchema,
|
|
3399
3380
|
nn as promptScreenSchema,
|
|
@@ -3402,20 +3383,20 @@ export {
|
|
|
3402
3383
|
ko as refreshTokenInsertSchema,
|
|
3403
3384
|
ii as refreshTokenSchema,
|
|
3404
3385
|
de as requestContextSchema,
|
|
3405
|
-
|
|
3386
|
+
Po as resourceServerInsertSchema,
|
|
3406
3387
|
ri as resourceServerListSchema,
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3388
|
+
vo as resourceServerOptionsSchema,
|
|
3389
|
+
jo as resourceServerSchema,
|
|
3390
|
+
Mo as resourceServerScopeSchema,
|
|
3410
3391
|
ge as responseContextSchema,
|
|
3411
|
-
|
|
3392
|
+
ve as richTextComponentSchema,
|
|
3412
3393
|
Xo as roleInsertSchema,
|
|
3413
3394
|
di as roleListSchema,
|
|
3414
3395
|
xo as rolePermissionInsertSchema,
|
|
3415
3396
|
li as rolePermissionListSchema,
|
|
3416
3397
|
Ho as rolePermissionSchema,
|
|
3417
3398
|
qo as roleSchema,
|
|
3418
|
-
|
|
3399
|
+
Bt as screenLinkSchema,
|
|
3419
3400
|
Oo as sessionInsertSchema,
|
|
3420
3401
|
Qn as sessionSchema,
|
|
3421
3402
|
Zn as signingKeySchema,
|
|
@@ -3423,7 +3404,7 @@ export {
|
|
|
3423
3404
|
ai as smsSendParamsSchema,
|
|
3424
3405
|
ze as startSchema,
|
|
3425
3406
|
fo as suspiciousIpThrottlingSchema,
|
|
3426
|
-
|
|
3407
|
+
pe as targetSchema,
|
|
3427
3408
|
To as tenantInsertSchema,
|
|
3428
3409
|
Jn as tenantSchema,
|
|
3429
3410
|
Ei as tenantSettingsSchema,
|
|
@@ -3437,15 +3418,15 @@ export {
|
|
|
3437
3418
|
mi as userOrganizationSchema,
|
|
3438
3419
|
Go as userPermissionInsertSchema,
|
|
3439
3420
|
ci as userPermissionListSchema,
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3421
|
+
Wo as userPermissionSchema,
|
|
3422
|
+
_i as userPermissionWithDetailsListSchema,
|
|
3423
|
+
Bo as userPermissionWithDetailsSchema,
|
|
3424
|
+
bn as userResponseSchema,
|
|
3425
|
+
Ko as userRoleInsertSchema,
|
|
3426
|
+
pi as userRoleListSchema,
|
|
3446
3427
|
Vo as userRoleSchema,
|
|
3447
3428
|
Re as userSchema,
|
|
3448
3429
|
it as verificationMethodsSchema,
|
|
3449
|
-
|
|
3450
|
-
|
|
3430
|
+
Mt as widgetComponentSchema,
|
|
3431
|
+
Fo as widgetSchema
|
|
3451
3432
|
};
|