@authhero/adapter-interfaces 1.0.0 → 1.2.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.
@@ -1,10 +1,42 @@
1
1
  import { z as e } from "@hono/zod-openapi";
2
- const X = e.enum([
2
+ const s = e.object({
3
+ created_at: e.string(),
4
+ updated_at: e.string()
5
+ }), X = e.object({
6
+ id: e.string(),
7
+ version: e.string().optional()
8
+ }), V = e.object({
9
+ name: e.string(),
10
+ version: e.string()
11
+ }), Y = e.object({
12
+ name: e.string(),
13
+ value: e.string()
14
+ }), Q = e.object({
15
+ name: e.string().max(255),
16
+ code: e.string().max(1e5),
17
+ supported_triggers: e.array(X).optional(),
18
+ runtime: e.string().max(50).optional(),
19
+ dependencies: e.array(V).optional(),
20
+ secrets: e.array(Y).optional()
21
+ }), jt = Q.extend({
22
+ id: e.string(),
23
+ tenant_id: e.string(),
24
+ status: e.enum(["draft", "built"]).default("built"),
25
+ deployed_at: e.string().optional(),
26
+ // Override secrets to return names only (no values) in responses
27
+ secrets: e.array(
28
+ e.object({
29
+ name: e.string(),
30
+ value: e.string().optional()
31
+ })
32
+ ).optional(),
33
+ ...s.shape
34
+ }), Z = e.enum([
3
35
  "user_action",
4
36
  "admin_action",
5
37
  "system",
6
38
  "api"
7
- ]), V = e.object({
39
+ ]), $ = e.object({
8
40
  type: e.enum(["user", "admin", "system", "api_key", "client_credentials"]),
9
41
  id: e.string().optional(),
10
42
  email: e.string().optional(),
@@ -12,13 +44,13 @@ const X = e.enum([
12
44
  org_name: e.string().optional(),
13
45
  scopes: e.array(e.string()).optional(),
14
46
  client_id: e.string().optional()
15
- }), Y = e.object({
47
+ }), J = e.object({
16
48
  type: e.string(),
17
49
  id: e.string(),
18
50
  before: e.record(e.unknown()).optional(),
19
51
  after: e.record(e.unknown()).optional(),
20
52
  diff: e.record(e.object({ old: e.unknown(), new: e.unknown() })).optional()
21
- }), Q = e.object({
53
+ }), ee = e.object({
22
54
  method: e.string(),
23
55
  path: e.string(),
24
56
  query: e.record(e.string()).optional(),
@@ -26,57 +58,54 @@ const X = e.enum([
26
58
  ip: e.string(),
27
59
  user_agent: e.string().optional(),
28
60
  correlation_id: e.string().optional()
29
- }), Z = e.object({
61
+ }), oe = e.object({
30
62
  status_code: e.number(),
31
63
  body: e.unknown().optional()
32
- }), $ = e.object({
64
+ }), te = e.object({
33
65
  country_code: e.string(),
34
66
  city_name: e.string(),
35
67
  latitude: e.string(),
36
68
  longitude: e.string(),
37
69
  time_zone: e.string(),
38
70
  continent_code: e.string()
39
- }), J = e.object({
71
+ }), ne = e.object({
40
72
  name: e.string(),
41
73
  version: e.string(),
42
74
  env: e.record(e.string()).optional()
43
- }), ee = e.object({
75
+ }), ie = e.object({
44
76
  tenant_id: e.string(),
45
77
  event_type: e.string(),
46
78
  log_type: e.string(),
47
79
  description: e.string().optional(),
48
- category: X,
49
- actor: V,
50
- target: Y,
51
- request: Q,
52
- response: Z.optional(),
80
+ category: Z,
81
+ actor: $,
82
+ target: J,
83
+ request: ee,
84
+ response: oe.optional(),
53
85
  connection: e.string().optional(),
54
86
  strategy: e.string().optional(),
55
87
  strategy_type: e.string().optional(),
56
- location: $.optional(),
57
- auth0_client: J.optional(),
88
+ location: te.optional(),
89
+ auth0_client: ne.optional(),
58
90
  hostname: e.string(),
59
91
  is_mobile: e.boolean().optional(),
60
92
  timestamp: e.string()
61
- }), Tt = ee.extend({
93
+ }), Rt = ie.extend({
62
94
  id: e.string()
63
- }), s = e.object({
64
- created_at: e.string(),
65
- updated_at: e.string()
66
- }), Ot = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), Nt = e.enum([
95
+ }), Dt = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), Lt = e.enum([
67
96
  "CREATE_USER",
68
97
  "GET_USER",
69
98
  "UPDATE_USER",
70
99
  "SEND_REQUEST",
71
100
  "SEND_EMAIL"
72
- ]), wt = e.enum(["VERIFY_EMAIL"]), oe = e.object({
101
+ ]), vt = e.enum(["VERIFY_EMAIL"]), ae = e.object({
73
102
  require_mx_record: e.boolean().optional(),
74
103
  block_aliases: e.boolean().optional(),
75
104
  block_free_emails: e.boolean().optional(),
76
105
  block_disposable_emails: e.boolean().optional(),
77
106
  blocklist: e.array(e.string()).optional(),
78
107
  allowlist: e.array(e.string()).optional()
79
- }), te = e.object({
108
+ }), se = e.object({
80
109
  id: e.string(),
81
110
  alias: e.string().max(100).optional(),
82
111
  type: e.literal("AUTH0"),
@@ -88,7 +117,7 @@ const X = e.enum([
88
117
  user_id: e.string(),
89
118
  changes: e.record(e.string(), e.any())
90
119
  })
91
- }), ne = e.object({
120
+ }), re = e.object({
92
121
  id: e.string(),
93
122
  alias: e.string().max(100).optional(),
94
123
  type: e.literal("EMAIL"),
@@ -97,9 +126,9 @@ const X = e.enum([
97
126
  mask_output: e.boolean().optional(),
98
127
  params: e.object({
99
128
  email: e.string(),
100
- rules: oe.optional()
129
+ rules: ae.optional()
101
130
  })
102
- }), ie = e.enum(["change-email", "account", "custom"]), ae = e.object({
131
+ }), le = e.enum(["change-email", "account", "custom"]), ce = e.object({
103
132
  id: e.string(),
104
133
  alias: e.string().max(100).optional(),
105
134
  type: e.literal("REDIRECT"),
@@ -107,32 +136,32 @@ const X = e.enum([
107
136
  allow_failure: e.boolean().optional(),
108
137
  mask_output: e.boolean().optional(),
109
138
  params: e.object({
110
- target: ie.openapi({
139
+ target: le.openapi({
111
140
  description: "The predefined target to redirect to, or 'custom' for a custom URL"
112
141
  }),
113
142
  custom_url: e.string().optional().openapi({
114
143
  description: "Custom URL to redirect to when target is 'custom'"
115
144
  })
116
145
  })
117
- }), se = e.union([
118
- te,
119
- ne,
120
- ae
121
- ]), re = e.object({
146
+ }), pe = e.union([
147
+ se,
148
+ re,
149
+ ce
150
+ ]), _e = e.object({
122
151
  name: e.string().min(1).max(150).openapi({
123
152
  description: "The name of the flow"
124
153
  }),
125
154
  // Actions is an array of action steps (Auth0 stores as JSON blob)
126
- actions: e.array(se).optional().default([]).openapi({
155
+ actions: e.array(pe).optional().default([]).openapi({
127
156
  description: "The list of actions to execute in sequence"
128
157
  })
129
- }), jt = re.extend({
158
+ }), kt = _e.extend({
130
159
  ...s.shape,
131
160
  id: e.string().openapi({
132
161
  description: "Unique identifier for the flow",
133
162
  example: "af_12tMpdJ3iek7svMyZkSh5M"
134
163
  })
135
- }), Rt = e.object({
164
+ }), Ut = e.object({
136
165
  page: e.string().min(0).optional().default("0").transform((o) => parseInt(o, 10)).openapi({
137
166
  description: "The page number where 0 is the first page"
138
167
  }),
@@ -148,12 +177,12 @@ const X = e.enum([
148
177
  q: e.string().optional().openapi({
149
178
  description: "A lucene query string used to filter the results"
150
179
  })
151
- }), Dt = e.object({
180
+ }), Ft = e.object({
152
181
  start: e.number(),
153
182
  limit: e.number(),
154
183
  length: e.number(),
155
184
  total: e.number().optional()
156
- }), le = e.object({
185
+ }), de = e.object({
157
186
  email: e.string().optional(),
158
187
  email_verified: e.boolean().optional(),
159
188
  name: e.string().optional(),
@@ -162,7 +191,7 @@ const X = e.enum([
162
191
  phone_number: e.string().optional(),
163
192
  phone_verified: e.boolean().optional(),
164
193
  family_name: e.string().optional()
165
- }).catchall(e.any()), pe = e.object({
194
+ }).catchall(e.any()), ge = e.object({
166
195
  connection: e.string(),
167
196
  user_id: e.string(),
168
197
  provider: e.string(),
@@ -175,8 +204,8 @@ const X = e.enum([
175
204
  access_token: e.string().optional(),
176
205
  access_token_secret: e.string().optional(),
177
206
  refresh_token: e.string().optional(),
178
- profileData: le.optional()
179
- }), ce = e.object({
207
+ profileData: de.optional()
208
+ }), ue = e.object({
180
209
  formatted: e.string().optional(),
181
210
  // Full mailing address
182
211
  street_address: e.string().optional(),
@@ -221,8 +250,8 @@ const X = e.enum([
221
250
  zoneinfo: e.string().optional(),
222
251
  // e.g., "Europe/Paris"
223
252
  // OIDC address claim (OIDC Core 5.1.1)
224
- address: ce
225
- }), _e = N.extend({
253
+ address: ue
254
+ }), me = N.extend({
226
255
  email_verified: e.boolean().default(!1),
227
256
  verify_email: e.boolean().optional(),
228
257
  last_ip: e.string().optional(),
@@ -231,35 +260,43 @@ const X = e.enum([
231
260
  provider: e.string().optional(),
232
261
  connection: e.string(),
233
262
  is_social: e.boolean().optional(),
263
+ /**
264
+ * Set when the post-user-registration outbox event has reached processed
265
+ * state (all post-hook destinations succeeded) or when the inline dispatch
266
+ * path delivered the webhooks without error. Used by `postUserLoginHook`
267
+ * to decide whether to re-enqueue the event on the user's next login —
268
+ * the self-healing mechanism for transient post-registration failures.
269
+ */
270
+ registration_completed_at: e.string().optional(),
234
271
  // Optional password for atomic user+password creation
235
272
  // When provided, user and password are created in a single transaction
236
273
  password: e.object({
237
274
  hash: e.string(),
238
275
  algorithm: e.string()
239
276
  }).optional()
240
- }), de = e.object({
241
- ..._e.omit({ password: !0 }).shape,
277
+ }), he = e.object({
278
+ ...me.omit({ password: !0 }).shape,
242
279
  ...s.shape,
243
280
  user_id: e.string(),
244
281
  provider: e.string(),
245
282
  is_social: e.boolean(),
246
283
  email: e.string().optional(),
247
284
  login_count: e.number().default(0),
248
- identities: e.array(pe).optional()
249
- }), Lt = de, vt = N.extend({
285
+ identities: e.array(ge).optional()
286
+ }), xt = he, Pt = N.extend({
250
287
  login_count: e.number(),
251
288
  multifactor: e.array(e.string()).optional(),
252
289
  last_ip: e.string().optional(),
253
290
  last_login: e.string().optional(),
254
291
  user_id: e.string()
255
292
  }).catchall(e.any());
256
- let ge = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", ue = (o = 21) => {
293
+ let be = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", fe = (o = 21) => {
257
294
  let t = "", i = crypto.getRandomValues(new Uint8Array(o |= 0));
258
295
  for (; o--; )
259
- t += ge[i[o] & 63];
296
+ t += be[i[o] & 63];
260
297
  return t;
261
298
  };
262
- const me = e.object({
299
+ const Ee = e.object({
263
300
  client_id: e.string().openapi({
264
301
  description: "ID of this client."
265
302
  }),
@@ -272,7 +309,7 @@ const me = e.object({
272
309
  global: e.boolean().default(!1).openapi({
273
310
  description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
274
311
  }),
275
- client_secret: e.string().default(() => ue()).optional().openapi({
312
+ client_secret: e.string().default(() => fe()).optional().openapi({
276
313
  description: "Client secret (which you must not make public)."
277
314
  }),
278
315
  app_type: e.enum([
@@ -432,11 +469,11 @@ const me = e.object({
432
469
  description: "Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"
433
470
  }),
434
471
  token_quota: e.record(e.any()).default({}).optional()
435
- }), kt = e.object({
472
+ }), Mt = e.object({
436
473
  created_at: e.string(),
437
474
  updated_at: e.string(),
438
- ...me.shape
439
- }), he = e.object({
475
+ ...Ee.shape
476
+ }), Se = e.object({
440
477
  client_id: e.string().min(1).openapi({
441
478
  description: "ID of the client."
442
479
  }),
@@ -461,14 +498,14 @@ const me = e.object({
461
498
  authorization_details_types: e.array(e.string()).optional().openapi({
462
499
  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."
463
500
  })
464
- }), be = e.object({
501
+ }), Ae = e.object({
465
502
  id: e.string().openapi({
466
503
  description: "ID of the client grant."
467
504
  }),
468
- ...he.shape,
505
+ ...Se.shape,
469
506
  created_at: e.string().optional(),
470
507
  updated_at: e.string().optional()
471
- }), Ut = e.array(be), m = e.object({
508
+ }), Ht = e.array(Ae), m = e.object({
472
509
  x: e.number(),
473
510
  y: e.number()
474
511
  });
@@ -477,7 +514,7 @@ const I = e.object({
477
514
  id: e.string(),
478
515
  category: e.nativeEnum(j),
479
516
  type: e.nativeEnum(w)
480
- }), fe = I.extend({
517
+ }), ye = I.extend({
481
518
  category: e.literal(
482
519
  "BLOCK"
483
520
  /* BLOCK */
@@ -489,7 +526,7 @@ const I = e.object({
489
526
  config: e.object({
490
527
  content: e.string()
491
528
  }).passthrough()
492
- }), Ee = I.extend({
529
+ }), Ie = I.extend({
493
530
  category: e.literal(
494
531
  "BLOCK"
495
532
  /* BLOCK */
@@ -511,7 +548,7 @@ const I = e.object({
511
548
  config: e.object({
512
549
  text: e.string()
513
550
  }).passthrough()
514
- }), Se = I.extend({
551
+ }), Ce = I.extend({
515
552
  category: e.literal(
516
553
  "FIELD"
517
554
  /* FIELD */
@@ -525,7 +562,7 @@ const I = e.object({
525
562
  config: e.object({
526
563
  text: e.string()
527
564
  }).passthrough()
528
- }), Ae = I.extend({
565
+ }), Te = I.extend({
529
566
  category: e.literal(
530
567
  "FIELD"
531
568
  /* FIELD */
@@ -578,19 +615,19 @@ const I = e.object({
578
615
  label: e.string().optional(),
579
616
  placeholder: e.string().optional()
580
617
  }).passthrough()
581
- }), ye = e.object({
618
+ }), Oe = e.object({
582
619
  id: e.string(),
583
620
  category: e.string(),
584
621
  type: e.string()
585
- }).passthrough(), Ie = e.union([
586
- fe,
587
- Ee,
588
- Se,
589
- Ae,
590
- ye
622
+ }).passthrough(), Ne = e.union([
623
+ ye,
624
+ Ie,
625
+ Ce,
626
+ Te,
627
+ Oe
591
628
  ]);
592
- var Ce = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(Ce || {});
593
- const Te = e.object({
629
+ var we = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(we || {});
630
+ const je = e.object({
594
631
  id: e.string(),
595
632
  type: e.literal(
596
633
  "STEP"
@@ -599,10 +636,10 @@ const Te = e.object({
599
636
  coordinates: m,
600
637
  alias: e.string().optional(),
601
638
  config: e.object({
602
- components: e.array(Ie),
639
+ components: e.array(Ne),
603
640
  next_node: e.string()
604
641
  }).passthrough()
605
- }), Oe = e.object({
642
+ }), Re = e.object({
606
643
  id: e.string(),
607
644
  type: e.literal(
608
645
  "FLOW"
@@ -614,7 +651,7 @@ const Te = e.object({
614
651
  flow_id: e.string(),
615
652
  next_node: e.string()
616
653
  })
617
- }), Ne = e.object({
654
+ }), De = e.object({
618
655
  id: e.string(),
619
656
  type: e.literal(
620
657
  "ACTION"
@@ -636,43 +673,43 @@ const Te = e.object({
636
673
  description: "The next node to navigate to after action (for non-redirect actions)"
637
674
  })
638
675
  }).passthrough()
639
- }), we = e.object({
676
+ }), Le = e.object({
640
677
  id: e.string(),
641
678
  type: e.string(),
642
679
  coordinates: m
643
- }).passthrough(), je = e.union([
644
- Te,
645
- Oe,
646
- Ne,
647
- we
648
- ]), Re = e.object({
680
+ }).passthrough(), ve = e.union([
681
+ je,
682
+ Re,
683
+ De,
684
+ Le
685
+ ]), ke = e.object({
649
686
  next_node: e.string(),
650
687
  coordinates: m
651
- }).passthrough(), De = e.object({
688
+ }).passthrough(), Ue = e.object({
652
689
  resume_flow: e.boolean().optional(),
653
690
  coordinates: m
654
- }).passthrough(), Le = e.object({
691
+ }).passthrough(), Fe = e.object({
655
692
  id: e.string(),
656
693
  name: e.string(),
657
694
  languages: e.object({
658
695
  primary: e.string()
659
696
  }).passthrough(),
660
- nodes: e.array(je),
661
- start: Re,
662
- ending: De,
697
+ nodes: e.array(ve),
698
+ start: ke,
699
+ ending: Ue,
663
700
  created_at: e.string(),
664
701
  updated_at: e.string(),
665
702
  links: e.object({
666
703
  sdkSrc: e.string().optional(),
667
704
  sdk_src: e.string().optional()
668
705
  }).passthrough()
669
- }).passthrough(), Ft = Le.omit({
706
+ }).passthrough(), Gt = Fe.omit({
670
707
  id: !0,
671
708
  created_at: !0,
672
709
  updated_at: !0
673
710
  });
674
711
  var R = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "token id_token", o.CODE = "code", o))(R || {}), D = /* @__PURE__ */ ((o) => (o.QUERY = "query", o.FRAGMENT = "fragment", o.FORM_POST = "form_post", o.WEB_MESSAGE = "web_message", o.SAML_POST = "saml_post", o))(D || {}), L = /* @__PURE__ */ ((o) => (o.S256 = "S256", o.Plain = "plain", o))(L || {});
675
- const ve = e.object({
712
+ const xe = e.object({
676
713
  client_id: e.string(),
677
714
  act_as: e.string().optional(),
678
715
  response_type: e.nativeEnum(R).optional(),
@@ -696,7 +733,7 @@ const ve = e.object({
696
733
  acr_values: e.string().optional(),
697
734
  // The following fields are not available in Auth0
698
735
  vendor_id: e.string().optional()
699
- }), xt = e.object({
736
+ }), Bt = e.object({
700
737
  colors: e.object({
701
738
  primary: e.string(),
702
739
  page_background: e.object({
@@ -712,7 +749,7 @@ const ve = e.object({
712
749
  font: e.object({
713
750
  url: e.string()
714
751
  }).optional()
715
- }), ke = e.enum([
752
+ }), Pe = e.enum([
716
753
  "password_reset",
717
754
  "email_verification",
718
755
  "otp",
@@ -720,7 +757,7 @@ const ve = e.object({
720
757
  "authorization_code",
721
758
  "oauth2_state",
722
759
  "ticket"
723
- ]), Ue = e.object({
760
+ ]), Me = e.object({
724
761
  code_id: e.string().openapi({
725
762
  description: "The code that will be used in for instance an email verification flow"
726
763
  }),
@@ -730,7 +767,7 @@ const ve = e.object({
730
767
  connection_id: e.string().optional().openapi({
731
768
  description: "The connection that the code is connected to"
732
769
  }),
733
- code_type: ke,
770
+ code_type: Pe,
734
771
  code_verifier: e.string().optional().openapi({
735
772
  description: "The code verifier used in PKCE in outbound flows"
736
773
  }),
@@ -755,10 +792,10 @@ const ve = e.object({
755
792
  expires_at: e.string(),
756
793
  used_at: e.string().optional(),
757
794
  user_id: e.string().optional()
758
- }), Pt = e.object({
759
- ...Ue.shape,
795
+ }), Wt = e.object({
796
+ ...Me.shape,
760
797
  created_at: e.string()
761
- }), Fe = e.object({
798
+ }), He = e.object({
762
799
  kid: e.string().optional(),
763
800
  team_id: e.string().optional(),
764
801
  realms: e.string().optional(),
@@ -870,12 +907,12 @@ const ve = e.object({
870
907
  }).optional(),
871
908
  // Controls when root user attributes are updated from external IdP
872
909
  set_user_root_attributes: e.enum(["on_each_login", "on_first_login", "never_on_login"]).optional()
873
- }), xe = e.object({
910
+ }), Ge = e.object({
874
911
  id: e.string().optional(),
875
912
  name: e.string(),
876
913
  display_name: e.string().optional(),
877
914
  strategy: e.string(),
878
- options: Fe.default({}),
915
+ options: He.default({}),
879
916
  enabled_clients: e.array(e.string()).default([]).optional(),
880
917
  response_type: e.custom().optional(),
881
918
  response_mode: e.custom().optional(),
@@ -883,11 +920,11 @@ const ve = e.object({
883
920
  show_as_button: e.boolean().optional(),
884
921
  metadata: e.record(e.any()).optional(),
885
922
  is_system: e.boolean().optional()
886
- }), Mt = e.object({
923
+ }), Kt = e.object({
887
924
  id: e.string(),
888
925
  created_at: e.string().transform((o) => o === null ? "" : o),
889
926
  updated_at: e.string().transform((o) => o === null ? "" : o)
890
- }).extend(xe.shape), Pe = e.object({
927
+ }).extend(Ge.shape), Be = e.object({
891
928
  domain: e.string(),
892
929
  custom_domain_id: e.string().optional(),
893
930
  type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
@@ -901,7 +938,7 @@ const ve = e.object({
901
938
  "null"
902
939
  ]).optional(),
903
940
  domain_metadata: e.record(e.string().max(255)).optional()
904
- }), Me = e.discriminatedUnion("name", [
941
+ }), We = e.discriminatedUnion("name", [
905
942
  e.object({
906
943
  name: e.literal("txt"),
907
944
  record: e.string(),
@@ -912,17 +949,17 @@ const ve = e.object({
912
949
  http_body: e.string(),
913
950
  http_url: e.string()
914
951
  })
915
- ]), He = e.object({
916
- ...Pe.shape,
952
+ ]), Ke = e.object({
953
+ ...Be.shape,
917
954
  custom_domain_id: e.string(),
918
955
  primary: e.boolean(),
919
956
  status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
920
957
  origin_domain_name: e.string().optional(),
921
958
  verification: e.object({
922
- methods: e.array(Me)
959
+ methods: e.array(We)
923
960
  }).optional(),
924
961
  tls_policy: e.string().optional()
925
- }), Ht = He.extend({
962
+ }), zt = Ke.extend({
926
963
  tenant_id: e.string()
927
964
  }), C = e.object({
928
965
  id: e.string(),
@@ -930,17 +967,17 @@ const ve = e.object({
930
967
  visible: e.boolean().optional().default(!0)
931
968
  }), l = C.extend({
932
969
  category: e.literal("BLOCK").optional()
933
- }), Ge = l.extend({
970
+ }), ze = l.extend({
934
971
  type: e.literal("DIVIDER"),
935
972
  config: e.object({
936
973
  text: e.string().optional()
937
974
  }).optional()
938
- }), Be = l.extend({
975
+ }), qe = l.extend({
939
976
  type: e.literal("HTML"),
940
977
  config: e.object({
941
978
  content: e.string().optional()
942
979
  }).optional()
943
- }), We = l.extend({
980
+ }), Xe = l.extend({
944
981
  type: e.literal("IMAGE"),
945
982
  config: e.object({
946
983
  src: e.string().optional(),
@@ -948,29 +985,29 @@ const ve = e.object({
948
985
  width: e.number().optional(),
949
986
  height: e.number().optional()
950
987
  }).optional()
951
- }), Ke = l.extend({
988
+ }), Ve = l.extend({
952
989
  type: e.literal("JUMP_BUTTON"),
953
990
  config: e.object({
954
991
  text: e.string().optional(),
955
992
  target_step: e.string().optional()
956
993
  })
957
- }), ze = l.extend({
994
+ }), Ye = l.extend({
958
995
  type: e.literal("RESEND_BUTTON"),
959
996
  config: e.object({
960
997
  text: e.string().optional(),
961
998
  resend_action: e.string().optional()
962
999
  })
963
- }), qe = l.extend({
1000
+ }), Qe = l.extend({
964
1001
  type: e.literal("NEXT_BUTTON"),
965
1002
  config: e.object({
966
1003
  text: e.string().optional()
967
1004
  })
968
- }), Xe = l.extend({
1005
+ }), Ze = l.extend({
969
1006
  type: e.literal("PREVIOUS_BUTTON"),
970
1007
  config: e.object({
971
1008
  text: e.string().optional()
972
1009
  })
973
- }), Ve = l.extend({
1010
+ }), $e = l.extend({
974
1011
  type: e.literal("RICH_TEXT"),
975
1012
  config: e.object({
976
1013
  content: e.string().optional()
@@ -981,17 +1018,17 @@ const ve = e.object({
981
1018
  hint: e.string().min(1).max(500).optional(),
982
1019
  required: e.boolean().optional(),
983
1020
  sensitive: e.boolean().optional()
984
- }), Ye = T.extend({
1021
+ }), Je = T.extend({
985
1022
  type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
986
1023
  config: e.object({
987
1024
  credential_type: e.string().optional()
988
1025
  })
989
- }), Qe = T.extend({
1026
+ }), eo = T.extend({
990
1027
  type: e.literal("GMAPS_ADDRESS"),
991
1028
  config: e.object({
992
1029
  api_key: e.string().optional()
993
1030
  })
994
- }), Ze = T.extend({
1031
+ }), oo = T.extend({
995
1032
  type: e.literal("RECAPTCHA"),
996
1033
  config: e.object({
997
1034
  site_key: e.string().optional()
@@ -1009,12 +1046,12 @@ const ve = e.object({
1009
1046
  ).optional(),
1010
1047
  required: e.boolean().optional(),
1011
1048
  sensitive: e.boolean().optional()
1012
- }), $e = n.extend({
1049
+ }), to = n.extend({
1013
1050
  type: e.literal("BOOLEAN"),
1014
1051
  config: e.object({
1015
1052
  default_value: e.boolean().optional()
1016
1053
  }).optional()
1017
- }), Je = n.extend({
1054
+ }), no = n.extend({
1018
1055
  type: e.literal("CARDS"),
1019
1056
  config: e.object({
1020
1057
  options: e.array(
@@ -1027,7 +1064,7 @@ const ve = e.object({
1027
1064
  ).optional(),
1028
1065
  multi_select: e.boolean().optional()
1029
1066
  }).optional()
1030
- }), eo = n.extend({
1067
+ }), io = n.extend({
1031
1068
  type: e.literal("CHOICE"),
1032
1069
  config: e.object({
1033
1070
  options: e.array(
@@ -1040,7 +1077,7 @@ const ve = e.object({
1040
1077
  multiple: e.boolean().optional(),
1041
1078
  default_value: e.union([e.string(), e.array(e.string())]).optional()
1042
1079
  }).optional()
1043
- }), oo = n.extend({
1080
+ }), ao = n.extend({
1044
1081
  type: e.literal("CUSTOM"),
1045
1082
  config: e.object({
1046
1083
  component: e.string().optional(),
@@ -1048,7 +1085,7 @@ const ve = e.object({
1048
1085
  schema: e.record(e.any()).optional(),
1049
1086
  code: e.string().optional()
1050
1087
  })
1051
- }), to = n.extend({
1088
+ }), so = n.extend({
1052
1089
  type: e.literal("DATE"),
1053
1090
  config: e.object({
1054
1091
  format: e.string().optional(),
@@ -1056,7 +1093,7 @@ const ve = e.object({
1056
1093
  max: e.string().optional(),
1057
1094
  default_value: e.string().optional()
1058
1095
  }).optional()
1059
- }), no = n.extend({
1096
+ }), ro = n.extend({
1060
1097
  type: e.literal("DROPDOWN"),
1061
1098
  config: e.object({
1062
1099
  options: e.array(
@@ -1070,26 +1107,26 @@ const ve = e.object({
1070
1107
  multiple: e.boolean().optional(),
1071
1108
  default_value: e.union([e.string(), e.array(e.string())]).optional()
1072
1109
  }).optional()
1073
- }), io = n.extend({
1110
+ }), lo = n.extend({
1074
1111
  type: e.literal("EMAIL"),
1075
1112
  config: e.object({
1076
1113
  placeholder: e.string().optional(),
1077
1114
  default_value: e.string().optional()
1078
1115
  }).optional()
1079
- }), ao = n.extend({
1116
+ }), co = n.extend({
1080
1117
  type: e.literal("FILE"),
1081
1118
  config: e.object({
1082
1119
  accept: e.string().optional(),
1083
1120
  max_size: e.number().optional(),
1084
1121
  multiple: e.boolean().optional()
1085
1122
  }).optional()
1086
- }), so = n.extend({
1123
+ }), po = n.extend({
1087
1124
  type: e.literal("LEGAL"),
1088
1125
  config: e.object({
1089
1126
  text: e.string(),
1090
1127
  html: e.boolean().optional()
1091
1128
  }).optional()
1092
- }), ro = n.extend({
1129
+ }), _o = n.extend({
1093
1130
  type: e.literal("NUMBER"),
1094
1131
  config: e.object({
1095
1132
  placeholder: e.string().optional(),
@@ -1098,7 +1135,7 @@ const ve = e.object({
1098
1135
  step: e.number().optional(),
1099
1136
  default_value: e.string().optional()
1100
1137
  }).optional()
1101
- }), lo = n.extend({
1138
+ }), go = n.extend({
1102
1139
  type: e.literal("PASSWORD"),
1103
1140
  config: e.object({
1104
1141
  placeholder: e.string().optional(),
@@ -1107,13 +1144,13 @@ const ve = e.object({
1107
1144
  forgot_password_link: e.string().optional(),
1108
1145
  default_value: e.string().optional()
1109
1146
  }).optional()
1110
- }), po = n.extend({
1147
+ }), uo = n.extend({
1111
1148
  type: e.literal("PAYMENT"),
1112
1149
  config: e.object({
1113
1150
  provider: e.string().optional(),
1114
1151
  currency: e.string().optional()
1115
1152
  }).optional()
1116
- }), co = n.extend({
1153
+ }), mo = n.extend({
1117
1154
  type: e.literal("SOCIAL"),
1118
1155
  config: e.object({
1119
1156
  providers: e.array(e.string()).optional(),
@@ -1128,7 +1165,7 @@ const ve = e.object({
1128
1165
  })
1129
1166
  ).optional()
1130
1167
  }).optional()
1131
- }), _o = n.extend({
1168
+ }), ho = n.extend({
1132
1169
  type: e.literal("TEL"),
1133
1170
  config: e.object({
1134
1171
  placeholder: e.string().optional(),
@@ -1136,7 +1173,7 @@ const ve = e.object({
1136
1173
  default_value: e.string().optional(),
1137
1174
  allow_email: e.boolean().optional()
1138
1175
  }).optional()
1139
- }), go = n.extend({
1176
+ }), bo = n.extend({
1140
1177
  type: e.literal("TEXT"),
1141
1178
  config: e.object({
1142
1179
  placeholder: e.string().optional(),
@@ -1144,54 +1181,54 @@ const ve = e.object({
1144
1181
  max_length: e.number().optional(),
1145
1182
  default_value: e.string().optional()
1146
1183
  }).optional()
1147
- }), uo = n.extend({
1184
+ }), fo = n.extend({
1148
1185
  type: e.literal("COUNTRY"),
1149
1186
  config: e.object({
1150
1187
  placeholder: e.string().optional(),
1151
1188
  default_value: e.string().optional()
1152
1189
  }).optional()
1153
- }), mo = n.extend({
1190
+ }), Eo = n.extend({
1154
1191
  type: e.literal("URL"),
1155
1192
  config: e.object({
1156
1193
  placeholder: e.string().optional(),
1157
1194
  default_value: e.string().optional()
1158
1195
  }).optional()
1159
- }), ho = e.discriminatedUnion("type", [
1160
- Ge,
1161
- Be,
1162
- We,
1163
- Ke,
1196
+ }), So = e.discriminatedUnion("type", [
1164
1197
  ze,
1165
1198
  qe,
1166
1199
  Xe,
1167
- Ve
1168
- ]), bo = e.discriminatedUnion("type", [
1200
+ Ve,
1169
1201
  Ye,
1170
1202
  Qe,
1171
- Ze
1172
- ]), fo = e.discriminatedUnion("type", [
1173
- $e,
1203
+ Ze,
1204
+ $e
1205
+ ]), Ao = e.discriminatedUnion("type", [
1174
1206
  Je,
1175
1207
  eo,
1176
- uo,
1177
- oo,
1208
+ oo
1209
+ ]), yo = e.discriminatedUnion("type", [
1178
1210
  to,
1179
1211
  no,
1180
1212
  io,
1213
+ fo,
1181
1214
  ao,
1182
1215
  so,
1183
1216
  ro,
1184
1217
  lo,
1185
- po,
1186
1218
  co,
1219
+ po,
1187
1220
  _o,
1188
1221
  go,
1189
- mo
1190
- ]), v = e.union([
1222
+ uo,
1223
+ mo,
1191
1224
  ho,
1192
1225
  bo,
1193
- fo
1194
- ]), Gt = /* @__PURE__ */ new Set([
1226
+ Eo
1227
+ ]), v = e.union([
1228
+ So,
1229
+ Ao,
1230
+ yo
1231
+ ]), qt = /* @__PURE__ */ new Set([
1195
1232
  "BOOLEAN",
1196
1233
  "CARDS",
1197
1234
  "CHOICE",
@@ -1205,7 +1242,7 @@ const ve = e.object({
1205
1242
  "TEL",
1206
1243
  "TEXT",
1207
1244
  "URL"
1208
- ]), Bt = e.object({
1245
+ ]), Xt = e.object({
1209
1246
  id: e.string(),
1210
1247
  type: e.literal("submit"),
1211
1248
  label: e.string(),
@@ -1217,7 +1254,7 @@ const ve = e.object({
1217
1254
  }), f = e.object({
1218
1255
  x: e.number(),
1219
1256
  y: e.number()
1220
- }), Eo = e.object({
1257
+ }), Io = e.object({
1221
1258
  id: e.string(),
1222
1259
  type: e.literal("FLOW"),
1223
1260
  coordinates: f,
@@ -1226,7 +1263,7 @@ const ve = e.object({
1226
1263
  flow_id: e.string().max(30),
1227
1264
  next_node: e.string().optional()
1228
1265
  })
1229
- }), So = e.object({
1266
+ }), Co = e.object({
1230
1267
  id: e.string(),
1231
1268
  type: e.literal("ROUTER"),
1232
1269
  coordinates: f,
@@ -1242,7 +1279,7 @@ const ve = e.object({
1242
1279
  ),
1243
1280
  fallback: e.string()
1244
1281
  })
1245
- }), Ao = e.object({
1282
+ }), To = e.object({
1246
1283
  id: e.string(),
1247
1284
  type: e.literal("STEP"),
1248
1285
  coordinates: f,
@@ -1251,11 +1288,11 @@ const ve = e.object({
1251
1288
  components: e.array(v),
1252
1289
  next_node: e.string().optional()
1253
1290
  })
1254
- }), yo = e.discriminatedUnion("type", [
1255
- Eo,
1256
- So,
1257
- Ao
1258
- ]), Io = e.object({
1291
+ }), Oo = e.discriminatedUnion("type", [
1292
+ Io,
1293
+ Co,
1294
+ To
1295
+ ]), No = e.object({
1259
1296
  name: e.string().openapi({
1260
1297
  description: "The name of the form"
1261
1298
  }),
@@ -1268,7 +1305,7 @@ const ve = e.object({
1268
1305
  default: e.string().optional()
1269
1306
  }).optional(),
1270
1307
  translations: e.record(e.string(), e.any()).optional(),
1271
- nodes: e.array(yo).optional(),
1308
+ nodes: e.array(Oo).optional(),
1272
1309
  start: e.object({
1273
1310
  hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
1274
1311
  next_node: e.string().optional(),
@@ -1290,20 +1327,20 @@ const ve = e.object({
1290
1327
  }).optional()
1291
1328
  }).openapi({
1292
1329
  description: "Schema for flow-based forms (matches Auth0 Forms structure)"
1293
- }), Wt = e.object({
1330
+ }), Vt = e.object({
1294
1331
  ...s.shape,
1295
- ...Io.shape,
1332
+ ...No.shape,
1296
1333
  id: e.string()
1297
- }), Co = e.object({
1334
+ }), wo = e.object({
1298
1335
  id: e.number().optional(),
1299
1336
  text: e.string(),
1300
1337
  type: e.enum(["info", "error", "success", "warning"])
1301
- }), To = e.object({
1338
+ }), jo = e.object({
1302
1339
  id: e.string().optional(),
1303
1340
  text: e.string(),
1304
1341
  href: e.string(),
1305
1342
  linkText: e.string().optional()
1306
- }), Kt = e.object({
1343
+ }), Yt = e.object({
1307
1344
  /** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
1308
1345
  name: e.string().optional(),
1309
1346
  action: e.string(),
@@ -1311,18 +1348,18 @@ const ve = e.object({
1311
1348
  title: e.string().optional(),
1312
1349
  description: e.string().optional(),
1313
1350
  components: e.array(v),
1314
- messages: e.array(Co).optional(),
1315
- links: e.array(To).optional(),
1351
+ messages: e.array(wo).optional(),
1352
+ links: e.array(jo).optional(),
1316
1353
  /** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
1317
1354
  footer: e.string().optional()
1318
1355
  });
1319
- function zt(o) {
1356
+ function Qt(o) {
1320
1357
  return o.category === "BLOCK";
1321
1358
  }
1322
- function qt(o) {
1359
+ function Zt(o) {
1323
1360
  return o.category === "WIDGET";
1324
1361
  }
1325
- function Xt(o) {
1362
+ function $t(o) {
1326
1363
  return o.category === "FIELD";
1327
1364
  }
1328
1365
  const k = e.enum([
@@ -1351,7 +1388,7 @@ const k = e.enum([
1351
1388
  ]), P = e.enum([
1352
1389
  "ensure-username",
1353
1390
  "set-preferred-username"
1354
- ]), Vt = {
1391
+ ]), Jt = {
1355
1392
  "ensure-username": {
1356
1393
  name: "Ensure Username",
1357
1394
  description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
@@ -1362,76 +1399,76 @@ const k = e.enum([
1362
1399
  description: "Sets the preferred_username claim on tokens based on the username from the primary or linked user.",
1363
1400
  trigger_id: "credentials-exchange"
1364
1401
  }
1365
- }, p = {
1402
+ }, c = {
1366
1403
  enabled: e.boolean().default(!1),
1367
1404
  synchronous: e.boolean().default(!1),
1368
1405
  priority: e.number().optional(),
1369
1406
  hook_id: e.string().optional()
1370
- }, Oo = e.object({
1371
- ...p,
1407
+ }, Ro = e.object({
1408
+ ...c,
1372
1409
  trigger_id: k,
1373
1410
  url: e.string()
1374
- }), No = e.object({
1375
- ...p,
1411
+ }), Do = e.object({
1412
+ ...c,
1376
1413
  trigger_id: U,
1377
1414
  form_id: e.string()
1378
- }), wo = e.object({
1379
- ...p,
1415
+ }), Lo = e.object({
1416
+ ...c,
1380
1417
  trigger_id: F,
1381
1418
  template_id: P
1382
- }), jo = e.object({
1383
- ...p,
1419
+ }), vo = e.object({
1420
+ ...c,
1384
1421
  trigger_id: x,
1385
1422
  code_id: e.string()
1386
- }), Yt = e.union([
1387
- Oo,
1388
- No,
1389
- wo,
1390
- jo
1391
- ]), Ro = e.object({
1392
- ...p,
1423
+ }), en = e.union([
1424
+ Ro,
1425
+ Do,
1426
+ Lo,
1427
+ vo
1428
+ ]), ko = e.object({
1429
+ ...c,
1393
1430
  trigger_id: k,
1394
1431
  ...s.shape,
1395
1432
  hook_id: e.string(),
1396
1433
  url: e.string()
1397
- }), Do = e.object({
1398
- ...p,
1434
+ }), Uo = e.object({
1435
+ ...c,
1399
1436
  trigger_id: U,
1400
1437
  ...s.shape,
1401
1438
  hook_id: e.string(),
1402
1439
  form_id: e.string()
1403
- }), Lo = e.object({
1404
- ...p,
1440
+ }), Fo = e.object({
1441
+ ...c,
1405
1442
  trigger_id: F,
1406
1443
  ...s.shape,
1407
1444
  hook_id: e.string(),
1408
1445
  template_id: P
1409
- }), vo = e.object({
1410
- ...p,
1446
+ }), xo = e.object({
1447
+ ...c,
1411
1448
  trigger_id: x,
1412
1449
  ...s.shape,
1413
1450
  hook_id: e.string(),
1414
1451
  code_id: e.string()
1415
- }), Qt = e.union([
1416
- Ro,
1417
- Do,
1418
- Lo,
1419
- vo
1420
- ]), ko = e.object({
1452
+ }), on = e.union([
1453
+ ko,
1454
+ Uo,
1455
+ Fo,
1456
+ xo
1457
+ ]), Po = e.object({
1421
1458
  code: e.string().max(1e5),
1422
1459
  secrets: e.record(e.string()).optional()
1423
- }), Zt = ko.extend({
1460
+ }), tn = Po.extend({
1424
1461
  id: e.string(),
1425
1462
  tenant_id: e.string(),
1426
1463
  ...s.shape
1427
- }), Uo = e.object({
1464
+ }), Mo = e.object({
1428
1465
  name: e.string().optional()
1429
- }), Fo = e.object({
1466
+ }), Ho = e.object({
1430
1467
  email: e.string().optional()
1431
- }), xo = e.object({
1468
+ }), Go = e.object({
1432
1469
  organization_id: e.string().max(50),
1433
- inviter: Uo,
1434
- invitee: Fo,
1470
+ inviter: Mo,
1471
+ invitee: Ho,
1435
1472
  invitation_url: e.string().url(),
1436
1473
  client_id: e.string(),
1437
1474
  connection_id: e.string().optional(),
@@ -1440,13 +1477,13 @@ const k = e.enum([
1440
1477
  ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
1441
1478
  roles: e.array(e.string()).default([]).optional(),
1442
1479
  send_invitation_email: e.boolean().default(!0).optional()
1443
- }), $t = e.object({
1480
+ }), nn = e.object({
1444
1481
  id: e.string(),
1445
1482
  organization_id: e.string().max(50),
1446
1483
  created_at: e.string().datetime(),
1447
1484
  expires_at: e.string().datetime(),
1448
1485
  ticket_id: e.string().optional()
1449
- }).extend(xo.shape), Po = e.object({
1486
+ }).extend(Go.shape), Bo = e.object({
1450
1487
  alg: e.enum([
1451
1488
  "RS256",
1452
1489
  "RS384",
@@ -1465,9 +1502,9 @@ const k = e.enum([
1465
1502
  x5t: e.string().optional(),
1466
1503
  x5c: e.array(e.string()).optional(),
1467
1504
  use: e.enum(["sig", "enc"]).optional()
1468
- }), Jt = e.object({
1469
- keys: e.array(Po)
1470
- }), en = e.object({
1505
+ }), an = e.object({
1506
+ keys: e.array(Bo)
1507
+ }), sn = e.object({
1471
1508
  issuer: e.string(),
1472
1509
  authorization_endpoint: e.string(),
1473
1510
  token_endpoint: e.string(),
@@ -1490,17 +1527,17 @@ const k = e.enum([
1490
1527
  token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
1491
1528
  });
1492
1529
  var M = /* @__PURE__ */ ((o) => (o.PENDING = "pending", o.AUTHENTICATED = "authenticated", o.AWAITING_EMAIL_VERIFICATION = "awaiting_email_verification", o.AWAITING_MFA = "awaiting_mfa", o.AWAITING_HOOK = "awaiting_hook", o.AWAITING_CONTINUATION = "awaiting_continuation", o.COMPLETED = "completed", o.FAILED = "failed", o.EXPIRED = "expired", o))(M || {});
1493
- const Mo = e.nativeEnum(M), Ho = e.object({
1530
+ const Wo = e.nativeEnum(M), Ko = e.object({
1494
1531
  csrf_token: e.string(),
1495
1532
  auth0Client: e.string().optional(),
1496
- authParams: ve,
1533
+ authParams: xe,
1497
1534
  expires_at: e.string(),
1498
1535
  deleted_at: e.string().optional(),
1499
1536
  ip: e.string().optional(),
1500
1537
  useragent: e.string().optional(),
1501
1538
  session_id: e.string().optional(),
1502
1539
  authorization_url: e.string().optional(),
1503
- state: Mo.optional().default(
1540
+ state: Wo.optional().default(
1504
1541
  "pending"
1505
1542
  /* PENDING */
1506
1543
  ),
@@ -1513,14 +1550,14 @@ const Mo = e.nativeEnum(M), Ho = e.object({
1513
1550
  // The connection used to authenticate (may differ from primary user's connection)
1514
1551
  }).openapi({
1515
1552
  description: "This represents a login sesion"
1516
- }), on = e.object({
1517
- ...Ho.shape,
1553
+ }), rn = e.object({
1554
+ ...Ko.shape,
1518
1555
  id: e.string().openapi({
1519
1556
  description: "This is is used as the state in the universal login"
1520
1557
  }),
1521
1558
  created_at: e.string(),
1522
1559
  updated_at: e.string()
1523
- }), Go = {
1560
+ }), zo = {
1524
1561
  // Network & System
1525
1562
  ACLS_SUMMARY: "acls_summary",
1526
1563
  ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
@@ -1646,6 +1683,7 @@ const Mo = e.nativeEnum(M), Ho = e.object({
1646
1683
  // Successful operations
1647
1684
  SUCCESS_LOGIN: "s",
1648
1685
  SUCCESS_API_OPERATION: "sapi",
1686
+ FAILED_API_OPERATION: "fapi",
1649
1687
  SUCCESS_CHANGE_EMAIL: "sce",
1650
1688
  SUCCESS_CROSS_ORIGIN_AUTHENTICATION: "scoa",
1651
1689
  SUCCESS_CHANGE_PASSWORD: "scp",
@@ -1691,24 +1729,24 @@ const Mo = e.nativeEnum(M), Ho = e.object({
1691
1729
  WARNING_DURING_LOGIN: "w",
1692
1730
  WARNING_SENDING_NOTIFICATION: "wn",
1693
1731
  WARNING_USER_MANAGEMENT: "wum"
1694
- }, Bo = e.string().refine(
1695
- (o) => Object.values(Go).includes(o),
1732
+ }, qo = e.string().refine(
1733
+ (o) => Object.values(zo).includes(o),
1696
1734
  { message: "Invalid log type" }
1697
- ), Wo = e.object({
1735
+ ), Xo = e.object({
1698
1736
  name: e.string(),
1699
1737
  version: e.string(),
1700
1738
  env: e.object({
1701
1739
  node: e.string().optional()
1702
1740
  }).optional()
1703
- }), Ko = e.object({
1741
+ }), Vo = e.object({
1704
1742
  country_code: e.string().length(2),
1705
1743
  city_name: e.string(),
1706
1744
  latitude: e.string(),
1707
1745
  longitude: e.string(),
1708
1746
  time_zone: e.string(),
1709
1747
  continent_code: e.string()
1710
- }), zo = e.object({
1711
- type: Bo,
1748
+ }), Yo = e.object({
1749
+ type: qo,
1712
1750
  date: e.string(),
1713
1751
  description: e.string().optional(),
1714
1752
  ip: e.string().optional(),
@@ -1727,19 +1765,19 @@ const Mo = e.nativeEnum(M), Ho = e.object({
1727
1765
  strategy: e.string().optional(),
1728
1766
  strategy_type: e.string().optional(),
1729
1767
  hostname: e.string().optional(),
1730
- auth0_client: Wo.optional(),
1768
+ auth0_client: Xo.optional(),
1731
1769
  log_id: e.string().optional(),
1732
- location_info: Ko.optional()
1733
- }), tn = e.object({
1734
- ...zo.shape,
1770
+ location_info: Vo.optional()
1771
+ }), ln = e.object({
1772
+ ...Yo.shape,
1735
1773
  log_id: e.string()
1736
- }), qo = e.object({
1774
+ }), Qo = e.object({
1737
1775
  id: e.string().optional(),
1738
1776
  user_id: e.string(),
1739
1777
  password: e.string(),
1740
1778
  algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
1741
1779
  is_current: e.boolean().default(!0)
1742
- }), nn = qo.extend({
1780
+ }), cn = Qo.extend({
1743
1781
  id: e.string(),
1744
1782
  created_at: e.string(),
1745
1783
  updated_at: e.string()
@@ -1750,7 +1788,7 @@ const Mo = e.nativeEnum(M), Ho = e.object({
1750
1788
  last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
1751
1789
  last_ip: e.string().describe("Last IP address from which this user logged in"),
1752
1790
  last_asn: e.string().describe("Last autonomous system number from which this user logged in")
1753
- }), Xo = e.object({
1791
+ }), Zo = e.object({
1754
1792
  id: e.string(),
1755
1793
  revoked_at: e.string().optional(),
1756
1794
  used_at: e.string().optional(),
@@ -1762,13 +1800,13 @@ const Mo = e.nativeEnum(M), Ho = e.object({
1762
1800
  "Metadata related to the device used in the session"
1763
1801
  ),
1764
1802
  clients: e.array(e.string()).describe("List of client details for the session")
1765
- }), an = e.object({
1803
+ }), pn = e.object({
1766
1804
  created_at: e.string(),
1767
1805
  updated_at: e.string(),
1768
1806
  authenticated_at: e.string(),
1769
1807
  last_interaction_at: e.string(),
1770
- ...Xo.shape
1771
- }), sn = e.object({
1808
+ ...Zo.shape
1809
+ }), _n = e.object({
1772
1810
  kid: e.string().openapi({ description: "The key id of the signing key" }),
1773
1811
  cert: e.string().openapi({ description: "The public certificate of the signing key" }),
1774
1812
  fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
@@ -1793,7 +1831,7 @@ const Mo = e.nativeEnum(M), Ho = e.object({
1793
1831
  type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
1794
1832
  description: "The type of the signing key"
1795
1833
  })
1796
- }), Vo = e.object({
1834
+ }), $o = e.object({
1797
1835
  id: e.string().optional(),
1798
1836
  // Basic settings
1799
1837
  audience: e.string(),
@@ -1948,14 +1986,14 @@ const Mo = e.nativeEnum(M), Ho = e.object({
1948
1986
  message: e.string().optional()
1949
1987
  }).optional()
1950
1988
  }).optional()
1951
- }), rn = e.object({
1989
+ }), dn = e.object({
1952
1990
  created_at: e.string().nullable().transform((o) => o ?? ""),
1953
1991
  updated_at: e.string().nullable().transform((o) => o ?? ""),
1954
- ...Vo.shape,
1992
+ ...$o.shape,
1955
1993
  id: e.string()
1956
1994
  });
1957
- var Yo = /* @__PURE__ */ ((o) => (o.RefreshToken = "refresh_token", o.AuthorizationCode = "authorization_code", o.ClientCredential = "client_credentials", o.Passwordless = "passwordless", o.Password = "password", o.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", o))(Yo || {});
1958
- const ln = e.object({
1995
+ var Jo = /* @__PURE__ */ ((o) => (o.RefreshToken = "refresh_token", o.AuthorizationCode = "authorization_code", o.ClientCredential = "client_credentials", o.Passwordless = "passwordless", o.Password = "password", o.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", o))(Jo || {});
1996
+ const gn = e.object({
1959
1997
  access_token: e.string(),
1960
1998
  id_token: e.string().optional(),
1961
1999
  scope: e.string().optional(),
@@ -1968,7 +2006,7 @@ e.object({
1968
2006
  code: e.string(),
1969
2007
  state: e.string().optional()
1970
2008
  });
1971
- const Qo = e.object({
2009
+ const et = e.object({
1972
2010
  button_border_radius: e.number(),
1973
2011
  button_border_weight: e.number(),
1974
2012
  buttons_style: e.enum(["pill", "rounded", "sharp"]),
@@ -1978,7 +2016,7 @@ const Qo = e.object({
1978
2016
  show_widget_shadow: e.boolean(),
1979
2017
  widget_border_weight: e.number(),
1980
2018
  widget_corner_radius: e.number()
1981
- }), Zo = e.object({
2019
+ }), ot = e.object({
1982
2020
  base_focus_color: e.string(),
1983
2021
  base_hover_color: e.string(),
1984
2022
  body_text: e.string(),
@@ -2001,7 +2039,7 @@ const Qo = e.object({
2001
2039
  }), u = e.object({
2002
2040
  bold: e.boolean(),
2003
2041
  size: e.number()
2004
- }), $o = e.object({
2042
+ }), tt = e.object({
2005
2043
  body_text: u,
2006
2044
  buttons_text: u,
2007
2045
  font_url: e.string(),
@@ -2011,31 +2049,31 @@ const Qo = e.object({
2011
2049
  reference_text_size: e.number(),
2012
2050
  subtitle: u,
2013
2051
  title: u
2014
- }), Jo = e.object({
2052
+ }), nt = e.object({
2015
2053
  background_color: e.string(),
2016
2054
  background_image_url: e.string(),
2017
2055
  page_layout: e.enum(["center", "left", "right"])
2018
- }), et = e.object({
2056
+ }), it = e.object({
2019
2057
  header_text_alignment: e.enum(["center", "left", "right"]),
2020
2058
  logo_height: e.number(),
2021
2059
  logo_position: e.enum(["center", "left", "none", "right"]),
2022
2060
  logo_url: e.string(),
2023
2061
  social_buttons_layout: e.enum(["bottom", "top"])
2024
- }), ot = e.object({
2025
- borders: Qo,
2026
- colors: Zo,
2062
+ }), at = e.object({
2063
+ borders: et,
2064
+ colors: ot,
2027
2065
  displayName: e.string(),
2028
- fonts: $o,
2029
- page_background: Jo,
2030
- widget: et
2031
- }), pn = ot.extend({
2066
+ fonts: tt,
2067
+ page_background: nt,
2068
+ widget: it
2069
+ }), un = at.extend({
2032
2070
  themeId: e.string()
2033
- }), cn = e.object({
2071
+ }), mn = e.object({
2034
2072
  universal_login_experience: e.enum(["new", "classic"]).default("new"),
2035
2073
  identifier_first: e.boolean().default(!0),
2036
2074
  password_first: e.boolean().default(!1),
2037
2075
  webauthn_platform_first_factor: e.boolean()
2038
- }), _n = e.object({
2076
+ }), hn = e.object({
2039
2077
  name: e.string(),
2040
2078
  enabled: e.boolean().optional().default(!0),
2041
2079
  default_from_address: e.string().optional(),
@@ -2065,7 +2103,7 @@ const Qo = e.object({
2065
2103
  })
2066
2104
  ]),
2067
2105
  settings: e.object({}).optional()
2068
- }), tt = e.object({
2106
+ }), st = e.object({
2069
2107
  // The actual refresh token value (primary key).
2070
2108
  id: e.string(),
2071
2109
  // Link to the login session
@@ -2086,21 +2124,21 @@ const Qo = e.object({
2086
2124
  })
2087
2125
  ),
2088
2126
  rotating: e.boolean()
2089
- }), dn = e.object({
2127
+ }), bn = e.object({
2090
2128
  // When the refresh token record was created.
2091
2129
  created_at: e.string(),
2092
2130
  // Spread in the rest of the refresh token properties.
2093
- ...tt.shape
2094
- }), gn = e.object({
2131
+ ...st.shape
2132
+ }), fn = e.object({
2095
2133
  to: e.string(),
2096
2134
  message: e.string()
2097
- }), un = e.object({
2135
+ }), En = e.object({
2098
2136
  name: e.string(),
2099
2137
  options: e.object({})
2100
- }), nt = e.object({
2138
+ }), rt = e.object({
2101
2139
  value: e.string(),
2102
2140
  description: e.string().optional()
2103
- }), it = e.object({
2141
+ }), lt = e.object({
2104
2142
  token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
2105
2143
  enforce_policies: e.boolean().optional(),
2106
2144
  allow_skipping_userinfo: e.boolean().optional(),
@@ -2110,11 +2148,11 @@ const Qo = e.object({
2110
2148
  mtls: e.object({
2111
2149
  bound_access_tokens: e.boolean().optional()
2112
2150
  }).optional()
2113
- }), at = e.object({
2151
+ }), ct = e.object({
2114
2152
  id: e.string().optional(),
2115
2153
  name: e.string(),
2116
2154
  identifier: e.string(),
2117
- scopes: e.array(nt).optional(),
2155
+ scopes: e.array(rt).optional(),
2118
2156
  signing_alg: e.string().optional(),
2119
2157
  signing_secret: e.string().optional(),
2120
2158
  token_lifetime: e.number().optional(),
@@ -2122,30 +2160,30 @@ const Qo = e.object({
2122
2160
  skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
2123
2161
  allow_offline_access: e.boolean().optional(),
2124
2162
  verificationKey: e.string().optional(),
2125
- options: it.optional(),
2163
+ options: lt.optional(),
2126
2164
  is_system: e.boolean().optional(),
2127
2165
  metadata: e.record(e.any()).optional()
2128
- }), st = e.object({
2129
- ...at.shape,
2166
+ }), pt = e.object({
2167
+ ...ct.shape,
2130
2168
  created_at: e.string().optional(),
2131
2169
  updated_at: e.string().optional()
2132
- }), mn = e.array(st), rt = e.object({
2170
+ }), Sn = e.array(pt), _t = e.object({
2133
2171
  role_id: e.string(),
2134
2172
  resource_server_identifier: e.string(),
2135
2173
  permission_name: e.string()
2136
- }), lt = e.object({
2137
- ...rt.shape,
2174
+ }), dt = e.object({
2175
+ ..._t.shape,
2138
2176
  created_at: e.string()
2139
- }), hn = e.array(lt), pt = e.object({
2177
+ }), An = e.array(dt), gt = e.object({
2140
2178
  user_id: e.string(),
2141
2179
  resource_server_identifier: e.string(),
2142
2180
  permission_name: e.string(),
2143
2181
  organization_id: e.string().optional()
2144
- }), ct = e.object({
2145
- ...pt.shape,
2182
+ }), ut = e.object({
2183
+ ...gt.shape,
2146
2184
  tenant_id: e.string(),
2147
2185
  created_at: e.string().optional()
2148
- }), bn = e.array(ct), _t = e.object({
2186
+ }), yn = e.array(ut), mt = e.object({
2149
2187
  user_id: e.string(),
2150
2188
  resource_server_identifier: e.string(),
2151
2189
  resource_server_name: e.string(),
@@ -2153,17 +2191,17 @@ const Qo = e.object({
2153
2191
  description: e.string().nullable().optional(),
2154
2192
  created_at: e.string().optional(),
2155
2193
  organization_id: e.string().optional()
2156
- }), fn = e.array(
2157
- _t
2158
- ), dt = e.object({
2194
+ }), In = e.array(
2195
+ mt
2196
+ ), ht = e.object({
2159
2197
  user_id: e.string(),
2160
2198
  role_id: e.string(),
2161
2199
  organization_id: e.string().optional()
2162
- }), gt = e.object({
2163
- ...dt.shape,
2200
+ }), bt = e.object({
2201
+ ...ht.shape,
2164
2202
  tenant_id: e.string(),
2165
2203
  created_at: e.string().optional()
2166
- }), En = e.array(gt), ut = e.object({
2204
+ }), Cn = e.array(bt), ft = e.object({
2167
2205
  id: e.string().optional().openapi({
2168
2206
  description: "The unique identifier of the role. If not provided, one will be generated."
2169
2207
  }),
@@ -2177,13 +2215,13 @@ const Qo = e.object({
2177
2215
  metadata: e.record(e.any()).optional().openapi({
2178
2216
  description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
2179
2217
  })
2180
- }), mt = ut.extend({
2218
+ }), Et = ft.extend({
2181
2219
  id: e.string().openapi({
2182
2220
  description: "The unique identifier of the role"
2183
2221
  }),
2184
2222
  created_at: e.string().optional(),
2185
2223
  updated_at: e.string().optional()
2186
- }), Sn = e.array(mt), ht = e.object({
2224
+ }), Tn = e.array(Et), St = e.object({
2187
2225
  logo_url: e.string().optional().openapi({
2188
2226
  description: "URL of the organization's logo"
2189
2227
  }),
@@ -2195,7 +2233,7 @@ const Qo = e.object({
2195
2233
  description: "Page background color in hex format (e.g., #FFFFFF)"
2196
2234
  })
2197
2235
  }).optional()
2198
- }).optional(), bt = e.object({
2236
+ }).optional(), At = e.object({
2199
2237
  connection_id: e.string().openapi({
2200
2238
  description: "ID of the connection"
2201
2239
  }),
@@ -2208,7 +2246,7 @@ const Qo = e.object({
2208
2246
  is_signup_enabled: e.boolean().default(!0).openapi({
2209
2247
  description: "Whether signup is enabled for this connection"
2210
2248
  })
2211
- }), ft = e.object({
2249
+ }), yt = e.object({
2212
2250
  client_credentials: e.object({
2213
2251
  enforce: e.boolean().default(!1).openapi({
2214
2252
  description: "Whether to enforce token quota limits"
@@ -2220,7 +2258,7 @@ const Qo = e.object({
2220
2258
  description: "Maximum tokens per hour (0 = unlimited)"
2221
2259
  })
2222
2260
  }).optional()
2223
- }).optional(), Et = e.object({
2261
+ }).optional(), It = e.object({
2224
2262
  id: e.string().optional(),
2225
2263
  name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
2226
2264
  message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
@@ -2230,34 +2268,34 @@ const Qo = e.object({
2230
2268
  display_name: e.string().optional().openapi({
2231
2269
  description: "The display name of the organization"
2232
2270
  }),
2233
- branding: ht,
2271
+ branding: St,
2234
2272
  metadata: e.record(e.any()).default({}).optional().openapi({
2235
2273
  description: "Custom metadata for the organization"
2236
2274
  }),
2237
- enabled_connections: e.array(bt).default([]).optional().openapi({
2275
+ enabled_connections: e.array(At).default([]).optional().openapi({
2238
2276
  description: "List of enabled connections for the organization"
2239
2277
  }),
2240
- token_quota: ft
2241
- }), An = e.object({
2242
- ...Et.shape,
2278
+ token_quota: yt
2279
+ }), On = e.object({
2280
+ ...It.shape,
2243
2281
  ...s.shape,
2244
2282
  id: e.string(),
2245
2283
  // Override name to be lenient when reading from database (to support existing uppercase names)
2246
2284
  name: e.string().min(1).openapi({
2247
2285
  description: "The name of the organization"
2248
2286
  })
2249
- }), St = e.object({
2287
+ }), Ct = e.object({
2250
2288
  user_id: e.string().openapi({
2251
2289
  description: "ID of the user"
2252
2290
  }),
2253
2291
  organization_id: e.string().openapi({
2254
2292
  description: "ID of the organization"
2255
2293
  })
2256
- }), yn = e.object({
2257
- ...St.shape,
2294
+ }), Nn = e.object({
2295
+ ...Ct.shape,
2258
2296
  ...s.shape,
2259
2297
  id: e.string()
2260
- }), In = e.object({
2298
+ }), wn = e.object({
2261
2299
  // Session settings
2262
2300
  idle_session_lifetime: e.number().optional(),
2263
2301
  session_lifetime: e.number().optional(),
@@ -2357,7 +2395,7 @@ const Qo = e.object({
2357
2395
  message: e.string().optional()
2358
2396
  }).optional()
2359
2397
  }).optional()
2360
- }), Cn = e.object({
2398
+ }), jn = e.object({
2361
2399
  date: e.string().openapi({
2362
2400
  description: "Date these events occurred in ISO 8601 format",
2363
2401
  example: "2025-12-19"
@@ -2382,10 +2420,10 @@ const Qo = e.object({
2382
2420
  description: "Approximate date and time the first event occurred in ISO 8601 format",
2383
2421
  example: "2025-12-19T00:00:00.000Z"
2384
2422
  })
2385
- }), Tn = e.number().openapi({
2423
+ }), Rn = e.number().openapi({
2386
2424
  description: "Number of active users in the last 30 days",
2387
2425
  example: 1234
2388
- }), At = e.enum([
2426
+ }), Tt = e.enum([
2389
2427
  "login",
2390
2428
  "login-id",
2391
2429
  "login-password",
@@ -2414,17 +2452,17 @@ const Qo = e.object({
2414
2452
  "custom-form",
2415
2453
  "login-passwordless",
2416
2454
  "mfa-login-options"
2417
- ]), yt = e.record(e.string(), e.record(e.string(), e.string())).openapi({
2455
+ ]), Ot = e.record(e.string(), e.record(e.string(), e.string())).openapi({
2418
2456
  type: "object",
2419
2457
  additionalProperties: {
2420
2458
  type: "object",
2421
2459
  additionalProperties: { type: "string" }
2422
2460
  }
2423
- }), On = e.object({
2424
- prompt: At,
2461
+ }), Dn = e.object({
2462
+ prompt: Tt,
2425
2463
  language: e.string(),
2426
- custom_text: yt
2427
- }), Nn = {
2464
+ custom_text: Ot
2465
+ }), Ln = {
2428
2466
  EMAIL: "email",
2429
2467
  SMS: "sms",
2430
2468
  USERNAME_PASSWORD: "Username-Password-Authentication",
@@ -2439,11 +2477,11 @@ const Qo = e.object({
2439
2477
  SAMLP: "samlp",
2440
2478
  WAAD: "waad",
2441
2479
  ADFS: "adfs"
2442
- }, wn = {
2480
+ }, vn = {
2443
2481
  DATABASE: "database",
2444
2482
  SOCIAL: "social",
2445
2483
  PASSWORDLESS: "passwordless"
2446
- }, It = e.enum([
2484
+ }, Nt = e.enum([
2447
2485
  "phone",
2448
2486
  "totp",
2449
2487
  "email",
@@ -2453,7 +2491,7 @@ const Qo = e.object({
2453
2491
  "passkey"
2454
2492
  ]), G = e.object({
2455
2493
  user_id: e.string(),
2456
- type: It,
2494
+ type: Nt,
2457
2495
  // Phone-specific
2458
2496
  phone_number: e.string().optional(),
2459
2497
  // TOTP-specific
@@ -2487,30 +2525,30 @@ function B(o, t) {
2487
2525
  path: ["public_key"]
2488
2526
  }));
2489
2527
  }
2490
- const jn = G.superRefine(B), Rn = e.object({
2528
+ const kn = G.superRefine(B), Un = e.object({
2491
2529
  ...G.shape,
2492
2530
  id: e.string(),
2493
2531
  created_at: e.string(),
2494
2532
  updated_at: e.string()
2495
2533
  }).superRefine(B);
2496
- function Dn(o) {
2534
+ function Fn(o) {
2497
2535
  const [t, i] = o.split("|");
2498
2536
  if (!t || !i)
2499
2537
  throw new Error(`Invalid user_id: ${o}`);
2500
2538
  return { connection: t, id: i };
2501
2539
  }
2502
- function Ln(o) {
2540
+ function xn(o) {
2503
2541
  const {
2504
2542
  primary: t,
2505
2543
  secondaries: i,
2506
- syncMethods: O = ["create", "update", "remove", "delete", "set"]
2544
+ syncMethods: O = ["create", "rawCreate", "update", "remove", "delete", "set"]
2507
2545
  } = o, E = {
2508
- get(c, a) {
2546
+ get(p, a) {
2509
2547
  if (typeof a == "symbol")
2510
- return c[a];
2511
- const _ = c[a];
2548
+ return p[a];
2549
+ const _ = p[a];
2512
2550
  return typeof _ != "function" ? _ : O.includes(a) ? async (...d) => {
2513
- const S = await _.apply(c, d), g = [];
2551
+ const S = await _.apply(p, d), g = [];
2514
2552
  for (const r of i) {
2515
2553
  const h = r.adapter[a];
2516
2554
  if (typeof h != "function")
@@ -2535,16 +2573,16 @@ function Ln(o) {
2535
2573
  r.blocking && g.push(A);
2536
2574
  }
2537
2575
  return g.length > 0 && await Promise.all(g), S;
2538
- } : _.bind(c);
2576
+ } : _.bind(p);
2539
2577
  }
2540
2578
  };
2541
2579
  return new Proxy(t, E);
2542
2580
  }
2543
- function vn(o) {
2581
+ function Pn(o) {
2544
2582
  return o;
2545
2583
  }
2546
- function kn(o) {
2547
- var E, c, a, _, d, S, g, r, h, A, b, y;
2584
+ function Mn(o) {
2585
+ var E, p, a, _, d, S, g, r, h, A, b, y;
2548
2586
  const t = o == null ? void 0 : o.options;
2549
2587
  if (!t)
2550
2588
  return {
@@ -2555,7 +2593,7 @@ function kn(o) {
2555
2593
  };
2556
2594
  const i = t.attributes;
2557
2595
  if (i) {
2558
- const W = ((c = (E = i.username) == null ? void 0 : E.identifier) == null ? void 0 : c.active) === !0, K = ((_ = (a = i.email) == null ? void 0 : a.identifier) == null ? void 0 : _.active) !== !1, z = ((S = (d = i.username) == null ? void 0 : d.validation) == null ? void 0 : S.min_length) ?? 1, q = ((r = (g = i.username) == null ? void 0 : g.validation) == null ? void 0 : r.max_length) ?? 15;
2596
+ const W = ((p = (E = i.username) == null ? void 0 : E.identifier) == null ? void 0 : p.active) === !0, K = ((_ = (a = i.email) == null ? void 0 : a.identifier) == null ? void 0 : _.active) !== !1, z = ((S = (d = i.username) == null ? void 0 : d.validation) == null ? void 0 : S.min_length) ?? 1, q = ((r = (g = i.username) == null ? void 0 : g.validation) == null ? void 0 : r.max_length) ?? 15;
2559
2597
  return {
2560
2598
  usernameIdentifierActive: W,
2561
2599
  emailIdentifierActive: K,
@@ -2571,174 +2609,179 @@ function kn(o) {
2571
2609
  };
2572
2610
  }
2573
2611
  export {
2574
- Nt as Auth0ActionEnum,
2575
- Wo as Auth0Client,
2612
+ Lt as Auth0ActionEnum,
2613
+ Xo as Auth0Client,
2576
2614
  D as AuthorizationResponseMode,
2577
2615
  R as AuthorizationResponseType,
2578
2616
  L as CodeChallengeMethod,
2579
2617
  j as ComponentCategory,
2580
2618
  w as ComponentType,
2581
- wt as EmailActionEnum,
2582
- Gt as FORM_FIELD_TYPES,
2583
- Ot as FlowActionTypeEnum,
2584
- Yo as GrantType,
2585
- Ko as LocationInfo,
2586
- Go as LogTypes,
2619
+ vt as EmailActionEnum,
2620
+ qt as FORM_FIELD_TYPES,
2621
+ Dt as FlowActionTypeEnum,
2622
+ Jo as GrantType,
2623
+ Vo as LocationInfo,
2624
+ zo as LogTypes,
2587
2625
  M as LoginSessionState,
2588
- Ce as NodeType,
2589
- ie as RedirectTargetEnum,
2590
- Nn as Strategy,
2591
- wn as StrategyType,
2592
- Ne as actionNodeSchema,
2593
- Tn as activeUsersResponseSchema,
2594
- V as actorSchema,
2595
- ce as addressSchema,
2596
- X as auditCategorySchema,
2597
- ee as auditEventInsertSchema,
2598
- Tt as auditEventSchema,
2599
- J as auth0ClientSchema,
2600
- Ft as auth0FlowInsertSchema,
2601
- Le as auth0FlowSchema,
2602
- Rt as auth0QuerySchema,
2603
- te as auth0UpdateUserActionSchema,
2604
- Lt as auth0UserResponseSchema,
2605
- ve as authParamsSchema,
2606
- jn as authenticationMethodInsertSchema,
2607
- Rn as authenticationMethodSchema,
2608
- It as authenticationMethodTypeSchema,
2626
+ we as NodeType,
2627
+ le as RedirectTargetEnum,
2628
+ Ln as Strategy,
2629
+ vn as StrategyType,
2630
+ V as actionDependencySchema,
2631
+ Q as actionInsertSchema,
2632
+ De as actionNodeSchema,
2633
+ jt as actionSchema,
2634
+ Y as actionSecretSchema,
2635
+ X as actionTriggerSchema,
2636
+ Rn as activeUsersResponseSchema,
2637
+ $ as actorSchema,
2638
+ ue as addressSchema,
2639
+ Z as auditCategorySchema,
2640
+ ie as auditEventInsertSchema,
2641
+ Rt as auditEventSchema,
2642
+ ne as auth0ClientSchema,
2643
+ Gt as auth0FlowInsertSchema,
2644
+ Fe as auth0FlowSchema,
2645
+ Ut as auth0QuerySchema,
2646
+ se as auth0UpdateUserActionSchema,
2647
+ xt as auth0UserResponseSchema,
2648
+ xe as authParamsSchema,
2649
+ kn as authenticationMethodInsertSchema,
2650
+ Un as authenticationMethodSchema,
2651
+ Nt as authenticationMethodTypeSchema,
2609
2652
  N as baseUserSchema,
2610
- ho as blockComponentSchema,
2611
- Qo as bordersSchema,
2612
- xt as brandingSchema,
2613
- Ee as buttonComponentSchema,
2614
- he as clientGrantInsertSchema,
2615
- Ut as clientGrantListSchema,
2616
- be as clientGrantSchema,
2617
- me as clientInsertSchema,
2618
- kt as clientSchema,
2619
- Ue as codeInsertSchema,
2620
- Pt as codeSchema,
2621
- ke as codeTypeSchema,
2622
- Zo as colorsSchema,
2623
- Co as componentMessageSchema,
2624
- Ie as componentSchema,
2625
- xe as connectionInsertSchema,
2626
- Fe as connectionOptionsSchema,
2627
- Mt as connectionSchema,
2653
+ So as blockComponentSchema,
2654
+ et as bordersSchema,
2655
+ Bt as brandingSchema,
2656
+ Ie as buttonComponentSchema,
2657
+ Se as clientGrantInsertSchema,
2658
+ Ht as clientGrantListSchema,
2659
+ Ae as clientGrantSchema,
2660
+ Ee as clientInsertSchema,
2661
+ Mt as clientSchema,
2662
+ Me as codeInsertSchema,
2663
+ Wt as codeSchema,
2664
+ Pe as codeTypeSchema,
2665
+ ot as colorsSchema,
2666
+ wo as componentMessageSchema,
2667
+ Ne as componentSchema,
2668
+ Ge as connectionInsertSchema,
2669
+ He as connectionOptionsSchema,
2670
+ Kt as connectionSchema,
2628
2671
  m as coordinatesSchema,
2629
- Ln as createPassthroughAdapter,
2630
- vn as createWriteOnlyAdapter,
2631
- Pe as customDomainInsertSchema,
2632
- He as customDomainSchema,
2633
- Ht as customDomainWithTenantIdSchema,
2634
- On as customTextEntrySchema,
2635
- yt as customTextSchema,
2636
- Cn as dailyStatsSchema,
2637
- _n as emailProviderSchema,
2638
- oe as emailVerificationRulesSchema,
2639
- ne as emailVerifyActionSchema,
2640
- De as endingSchema,
2641
- fo as fieldComponentSchema,
2642
- se as flowActionStepSchema,
2643
- re as flowInsertSchema,
2644
- jt as flowSchema,
2645
- Ae as flowsFieldComponentSchema,
2646
- Oe as flowsFlowNodeSchema,
2647
- Te as flowsStepNodeSchema,
2672
+ xn as createPassthroughAdapter,
2673
+ Pn as createWriteOnlyAdapter,
2674
+ Be as customDomainInsertSchema,
2675
+ Ke as customDomainSchema,
2676
+ zt as customDomainWithTenantIdSchema,
2677
+ Dn as customTextEntrySchema,
2678
+ Ot as customTextSchema,
2679
+ jn as dailyStatsSchema,
2680
+ hn as emailProviderSchema,
2681
+ ae as emailVerificationRulesSchema,
2682
+ re as emailVerifyActionSchema,
2683
+ Ue as endingSchema,
2684
+ yo as fieldComponentSchema,
2685
+ pe as flowActionStepSchema,
2686
+ _e as flowInsertSchema,
2687
+ kt as flowSchema,
2688
+ Te as flowsFieldComponentSchema,
2689
+ Re as flowsFlowNodeSchema,
2690
+ je as flowsStepNodeSchema,
2648
2691
  u as fontDetailsSchema,
2649
- $o as fontsSchema,
2650
- Bt as formControlSchema,
2651
- Io as formInsertSchema,
2692
+ tt as fontsSchema,
2693
+ Xt as formControlSchema,
2694
+ No as formInsertSchema,
2652
2695
  v as formNodeComponentDefinition,
2653
- yo as formNodeSchema,
2654
- Wt as formSchema,
2655
- ye as genericComponentSchema,
2656
- we as genericNodeSchema,
2657
- kn as getConnectionIdentifierConfig,
2658
- ko as hookCodeInsertSchema,
2659
- Zt as hookCodeSchema,
2660
- Yt as hookInsertSchema,
2661
- Qt as hookSchema,
2696
+ Oo as formNodeSchema,
2697
+ Vt as formSchema,
2698
+ Oe as genericComponentSchema,
2699
+ Le as genericNodeSchema,
2700
+ Mn as getConnectionIdentifierConfig,
2701
+ Po as hookCodeInsertSchema,
2702
+ tn as hookCodeSchema,
2703
+ en as hookInsertSchema,
2704
+ on as hookSchema,
2662
2705
  P as hookTemplateId,
2663
- Vt as hookTemplates,
2664
- pe as identitySchema,
2665
- xo as inviteInsertSchema,
2666
- $t as inviteSchema,
2667
- Fo as inviteeSchema,
2668
- Uo as inviterSchema,
2669
- zt as isBlockComponent,
2670
- Xt as isFieldComponent,
2671
- qt as isWidgetComponent,
2672
- Jt as jwksKeySchema,
2673
- Po as jwksSchema,
2674
- Se as legalComponentSchema,
2675
- $ as locationInfoSchema,
2676
- zo as logInsertSchema,
2677
- tn as logSchema,
2678
- Ho as loginSessionInsertSchema,
2679
- on as loginSessionSchema,
2680
- Mo as loginSessionStateSchema,
2681
- je as nodeSchema,
2682
- en as openIDConfigurationSchema,
2683
- ht as organizationBrandingSchema,
2684
- bt as organizationEnabledConnectionSchema,
2685
- Et as organizationInsertSchema,
2686
- An as organizationSchema,
2687
- ft as organizationTokenQuotaSchema,
2688
- Jo as pageBackgroundSchema,
2689
- Dn as parseUserId,
2690
- qo as passwordInsertSchema,
2691
- nn as passwordSchema,
2692
- le as profileDataSchema,
2693
- At as promptScreenSchema,
2694
- cn as promptSettingSchema,
2695
- ae as redirectActionSchema,
2696
- tt as refreshTokenInsertSchema,
2697
- dn as refreshTokenSchema,
2698
- Q as requestContextSchema,
2699
- at as resourceServerInsertSchema,
2700
- mn as resourceServerListSchema,
2701
- it as resourceServerOptionsSchema,
2702
- st as resourceServerSchema,
2703
- nt as resourceServerScopeSchema,
2704
- Z as responseContextSchema,
2705
- fe as richTextComponentSchema,
2706
- ut as roleInsertSchema,
2707
- Sn as roleListSchema,
2708
- rt as rolePermissionInsertSchema,
2709
- hn as rolePermissionListSchema,
2710
- lt as rolePermissionSchema,
2711
- mt as roleSchema,
2712
- To as screenLinkSchema,
2713
- Xo as sessionInsertSchema,
2714
- an as sessionSchema,
2715
- sn as signingKeySchema,
2716
- un as smsProviderSchema,
2717
- gn as smsSendParamsSchema,
2718
- Re as startSchema,
2719
- Y as targetSchema,
2720
- Vo as tenantInsertSchema,
2721
- rn as tenantSchema,
2722
- In as tenantSettingsSchema,
2723
- ot as themeInsertSchema,
2724
- pn as themeSchema,
2725
- ln as tokenResponseSchema,
2726
- Dt as totalsSchema,
2727
- Kt as uiScreenSchema,
2728
- _e as userInsertSchema,
2729
- St as userOrganizationInsertSchema,
2730
- yn as userOrganizationSchema,
2731
- pt as userPermissionInsertSchema,
2732
- bn as userPermissionListSchema,
2733
- ct as userPermissionSchema,
2734
- fn as userPermissionWithDetailsListSchema,
2735
- _t as userPermissionWithDetailsSchema,
2736
- vt as userResponseSchema,
2737
- dt as userRoleInsertSchema,
2738
- En as userRoleListSchema,
2739
- gt as userRoleSchema,
2740
- de as userSchema,
2741
- Me as verificationMethodsSchema,
2742
- bo as widgetComponentSchema,
2743
- et as widgetSchema
2706
+ Jt as hookTemplates,
2707
+ ge as identitySchema,
2708
+ Go as inviteInsertSchema,
2709
+ nn as inviteSchema,
2710
+ Ho as inviteeSchema,
2711
+ Mo as inviterSchema,
2712
+ Qt as isBlockComponent,
2713
+ $t as isFieldComponent,
2714
+ Zt as isWidgetComponent,
2715
+ an as jwksKeySchema,
2716
+ Bo as jwksSchema,
2717
+ Ce as legalComponentSchema,
2718
+ te as locationInfoSchema,
2719
+ Yo as logInsertSchema,
2720
+ ln as logSchema,
2721
+ Ko as loginSessionInsertSchema,
2722
+ rn as loginSessionSchema,
2723
+ Wo as loginSessionStateSchema,
2724
+ ve as nodeSchema,
2725
+ sn as openIDConfigurationSchema,
2726
+ St as organizationBrandingSchema,
2727
+ At as organizationEnabledConnectionSchema,
2728
+ It as organizationInsertSchema,
2729
+ On as organizationSchema,
2730
+ yt as organizationTokenQuotaSchema,
2731
+ nt as pageBackgroundSchema,
2732
+ Fn as parseUserId,
2733
+ Qo as passwordInsertSchema,
2734
+ cn as passwordSchema,
2735
+ de as profileDataSchema,
2736
+ Tt as promptScreenSchema,
2737
+ mn as promptSettingSchema,
2738
+ ce as redirectActionSchema,
2739
+ st as refreshTokenInsertSchema,
2740
+ bn as refreshTokenSchema,
2741
+ ee as requestContextSchema,
2742
+ ct as resourceServerInsertSchema,
2743
+ Sn as resourceServerListSchema,
2744
+ lt as resourceServerOptionsSchema,
2745
+ pt as resourceServerSchema,
2746
+ rt as resourceServerScopeSchema,
2747
+ oe as responseContextSchema,
2748
+ ye as richTextComponentSchema,
2749
+ ft as roleInsertSchema,
2750
+ Tn as roleListSchema,
2751
+ _t as rolePermissionInsertSchema,
2752
+ An as rolePermissionListSchema,
2753
+ dt as rolePermissionSchema,
2754
+ Et as roleSchema,
2755
+ jo as screenLinkSchema,
2756
+ Zo as sessionInsertSchema,
2757
+ pn as sessionSchema,
2758
+ _n as signingKeySchema,
2759
+ En as smsProviderSchema,
2760
+ fn as smsSendParamsSchema,
2761
+ ke as startSchema,
2762
+ J as targetSchema,
2763
+ $o as tenantInsertSchema,
2764
+ dn as tenantSchema,
2765
+ wn as tenantSettingsSchema,
2766
+ at as themeInsertSchema,
2767
+ un as themeSchema,
2768
+ gn as tokenResponseSchema,
2769
+ Ft as totalsSchema,
2770
+ Yt as uiScreenSchema,
2771
+ me as userInsertSchema,
2772
+ Ct as userOrganizationInsertSchema,
2773
+ Nn as userOrganizationSchema,
2774
+ gt as userPermissionInsertSchema,
2775
+ yn as userPermissionListSchema,
2776
+ ut as userPermissionSchema,
2777
+ In as userPermissionWithDetailsListSchema,
2778
+ mt as userPermissionWithDetailsSchema,
2779
+ Pt as userResponseSchema,
2780
+ ht as userRoleInsertSchema,
2781
+ Cn as userRoleListSchema,
2782
+ bt as userRoleSchema,
2783
+ he as userSchema,
2784
+ We as verificationMethodsSchema,
2785
+ Ao as widgetComponentSchema,
2786
+ it as widgetSchema
2744
2787
  };