@authhero/adapter-interfaces 1.17.0 → 1.19.0

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