@authhero/adapter-interfaces 0.147.0 → 0.149.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,21 +1,21 @@
1
1
  import { z as e } from "@hono/zod-openapi";
2
- const s = e.object({
2
+ const r = e.object({
3
3
  created_at: e.string(),
4
4
  updated_at: e.string()
5
- }), pt = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), ct = e.enum([
5
+ }), gt = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), ut = e.enum([
6
6
  "CREATE_USER",
7
7
  "GET_USER",
8
8
  "UPDATE_USER",
9
9
  "SEND_REQUEST",
10
10
  "SEND_EMAIL"
11
- ]), _t = e.enum(["VERIFY_EMAIL"]), K = e.object({
11
+ ]), mt = e.enum(["VERIFY_EMAIL"]), q = e.object({
12
12
  require_mx_record: e.boolean().optional(),
13
13
  block_aliases: e.boolean().optional(),
14
14
  block_free_emails: e.boolean().optional(),
15
15
  block_disposable_emails: e.boolean().optional(),
16
16
  blocklist: e.array(e.string()).optional(),
17
17
  allowlist: e.array(e.string()).optional()
18
- }), z = e.object({
18
+ }), X = e.object({
19
19
  id: e.string(),
20
20
  alias: e.string().max(100).optional(),
21
21
  type: e.literal("AUTH0"),
@@ -27,7 +27,7 @@ const s = e.object({
27
27
  user_id: e.string(),
28
28
  changes: e.record(e.string(), e.any())
29
29
  })
30
- }), X = e.object({
30
+ }), V = e.object({
31
31
  id: e.string(),
32
32
  alias: e.string().max(100).optional(),
33
33
  type: e.literal("EMAIL"),
@@ -36,9 +36,9 @@ const s = e.object({
36
36
  mask_output: e.boolean().optional(),
37
37
  params: e.object({
38
38
  email: e.string(),
39
- rules: K.optional()
39
+ rules: q.optional()
40
40
  })
41
- }), q = e.enum(["change-email", "account", "custom"]), V = e.object({
41
+ }), Y = e.enum(["change-email", "account", "custom"]), Q = e.object({
42
42
  id: e.string(),
43
43
  alias: e.string().max(100).optional(),
44
44
  type: e.literal("REDIRECT"),
@@ -46,32 +46,32 @@ const s = e.object({
46
46
  allow_failure: e.boolean().optional(),
47
47
  mask_output: e.boolean().optional(),
48
48
  params: e.object({
49
- target: q.openapi({
49
+ target: Y.openapi({
50
50
  description: "The predefined target to redirect to, or 'custom' for a custom URL"
51
51
  }),
52
52
  custom_url: e.string().optional().openapi({
53
53
  description: "Custom URL to redirect to when target is 'custom'"
54
54
  })
55
55
  })
56
- }), Y = e.union([
57
- z,
56
+ }), Z = e.union([
58
57
  X,
59
- V
60
- ]), Q = e.object({
58
+ V,
59
+ Q
60
+ ]), J = e.object({
61
61
  name: e.string().min(1).max(150).openapi({
62
62
  description: "The name of the flow"
63
63
  }),
64
64
  // Actions is an array of action steps (Auth0 stores as JSON blob)
65
- actions: e.array(Y).optional().default([]).openapi({
65
+ actions: e.array(Z).optional().default([]).openapi({
66
66
  description: "The list of actions to execute in sequence"
67
67
  })
68
- }), dt = Q.extend({
69
- ...s.shape,
68
+ }), ht = J.extend({
69
+ ...r.shape,
70
70
  id: e.string().openapi({
71
71
  description: "Unique identifier for the flow",
72
72
  example: "af_12tMpdJ3iek7svMyZkSh5M"
73
73
  })
74
- }), gt = e.object({
74
+ }), bt = e.object({
75
75
  page: e.string().min(0).optional().default("0").transform((o) => parseInt(o, 10)).openapi({
76
76
  description: "The page number where 0 is the first page"
77
77
  }),
@@ -87,12 +87,12 @@ const s = e.object({
87
87
  q: e.string().optional().openapi({
88
88
  description: "A lucene query string used to filter the results"
89
89
  })
90
- }), ut = e.object({
90
+ }), ft = e.object({
91
91
  start: e.number(),
92
92
  limit: e.number(),
93
93
  length: e.number(),
94
94
  total: e.number().optional()
95
- }), J = e.object({
95
+ }), $ = e.object({
96
96
  email: e.string().optional(),
97
97
  email_verified: e.boolean().optional(),
98
98
  name: e.string().optional(),
@@ -101,7 +101,7 @@ const s = e.object({
101
101
  phone_number: e.string().optional(),
102
102
  phone_verified: e.boolean().optional(),
103
103
  family_name: e.string().optional()
104
- }).catchall(e.any()), Z = e.object({
104
+ }).catchall(e.any()), ee = e.object({
105
105
  connection: e.string(),
106
106
  user_id: e.string(),
107
107
  provider: e.string(),
@@ -114,8 +114,8 @@ const s = e.object({
114
114
  access_token: e.string().optional(),
115
115
  access_token_secret: e.string().optional(),
116
116
  refresh_token: e.string().optional(),
117
- profileData: J.optional()
118
- }), $ = e.object({
117
+ profileData: $.optional()
118
+ }), oe = e.object({
119
119
  formatted: e.string().optional(),
120
120
  // Full mailing address
121
121
  street_address: e.string().optional(),
@@ -160,8 +160,8 @@ const s = e.object({
160
160
  zoneinfo: e.string().optional(),
161
161
  // e.g., "Europe/Paris"
162
162
  // OIDC address claim (OIDC Core 5.1.1)
163
- address: $
164
- }), ee = N.extend({
163
+ address: oe
164
+ }), te = N.extend({
165
165
  email_verified: e.boolean().default(!1),
166
166
  verify_email: e.boolean().optional(),
167
167
  last_ip: e.string().optional(),
@@ -176,29 +176,29 @@ const s = e.object({
176
176
  hash: e.string(),
177
177
  algorithm: e.string()
178
178
  }).optional()
179
- }), oe = e.object({
180
- ...ee.omit({ password: !0 }).shape,
181
- ...s.shape,
179
+ }), ne = e.object({
180
+ ...te.omit({ password: !0 }).shape,
181
+ ...r.shape,
182
182
  user_id: e.string(),
183
183
  provider: e.string(),
184
184
  is_social: e.boolean(),
185
185
  email: e.string().optional(),
186
186
  login_count: e.number().default(0),
187
- identities: e.array(Z).optional()
188
- }), mt = oe, ht = N.extend({
187
+ identities: e.array(ee).optional()
188
+ }), Et = ne, St = N.extend({
189
189
  login_count: e.number(),
190
190
  multifactor: e.array(e.string()).optional(),
191
191
  last_ip: e.string().optional(),
192
192
  last_login: e.string().optional(),
193
193
  user_id: e.string()
194
194
  }).catchall(e.any());
195
- let te = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", ne = (o = 21) => {
195
+ let ie = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", ae = (o = 21) => {
196
196
  let n = "", i = crypto.getRandomValues(new Uint8Array(o |= 0));
197
197
  for (; o--; )
198
- n += te[i[o] & 63];
198
+ n += ie[i[o] & 63];
199
199
  return n;
200
200
  };
201
- const ie = e.object({
201
+ const se = e.object({
202
202
  client_id: e.string().openapi({
203
203
  description: "ID of this client."
204
204
  }),
@@ -211,7 +211,7 @@ const ie = e.object({
211
211
  global: e.boolean().default(!1).openapi({
212
212
  description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
213
213
  }),
214
- client_secret: e.string().default(() => ne()).optional().openapi({
214
+ client_secret: e.string().default(() => ae()).optional().openapi({
215
215
  description: "Client secret (which you must not make public)."
216
216
  }),
217
217
  app_type: e.enum([
@@ -371,11 +371,11 @@ const ie = e.object({
371
371
  description: "Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"
372
372
  }),
373
373
  token_quota: e.record(e.any()).default({}).optional()
374
- }), bt = e.object({
374
+ }), At = e.object({
375
375
  created_at: e.string(),
376
376
  updated_at: e.string(),
377
- ...ie.shape
378
- }), ae = e.object({
377
+ ...se.shape
378
+ }), re = e.object({
379
379
  client_id: e.string().min(1).openapi({
380
380
  description: "ID of the client."
381
381
  }),
@@ -400,23 +400,23 @@ const ie = e.object({
400
400
  authorization_details_types: e.array(e.string()).optional().openapi({
401
401
  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."
402
402
  })
403
- }), re = e.object({
403
+ }), le = e.object({
404
404
  id: e.string().openapi({
405
405
  description: "ID of the client grant."
406
406
  }),
407
- ...ae.shape,
407
+ ...re.shape,
408
408
  created_at: e.string().optional(),
409
409
  updated_at: e.string().optional()
410
- }), ft = e.array(re), u = e.object({
410
+ }), It = e.array(le), u = e.object({
411
411
  x: e.number(),
412
412
  y: e.number()
413
413
  });
414
- var R = /* @__PURE__ */ ((o) => (o.RICH_TEXT = "RICH_TEXT", o.NEXT_BUTTON = "NEXT_BUTTON", o.BACK_BUTTON = "BACK_BUTTON", o.SUBMIT_BUTTON = "SUBMIT_BUTTON", o.DIVIDER = "DIVIDER", o.TEXT = "TEXT", o.EMAIL = "EMAIL", o.PASSWORD = "PASSWORD", o.NUMBER = "NUMBER", o.PHONE = "PHONE", o.DATE = "DATE", o.CHECKBOX = "CHECKBOX", o.RADIO = "RADIO", o.SELECT = "SELECT", o.HIDDEN = "HIDDEN", o.LEGAL = "LEGAL", o))(R || {}), w = /* @__PURE__ */ ((o) => (o.BLOCK = "BLOCK", o.FIELD = "FIELD", o))(w || {});
414
+ var w = /* @__PURE__ */ ((o) => (o.RICH_TEXT = "RICH_TEXT", o.NEXT_BUTTON = "NEXT_BUTTON", o.BACK_BUTTON = "BACK_BUTTON", o.SUBMIT_BUTTON = "SUBMIT_BUTTON", o.DIVIDER = "DIVIDER", o.TEXT = "TEXT", o.EMAIL = "EMAIL", o.PASSWORD = "PASSWORD", o.NUMBER = "NUMBER", o.PHONE = "PHONE", o.DATE = "DATE", o.CHECKBOX = "CHECKBOX", o.RADIO = "RADIO", o.SELECT = "SELECT", o.HIDDEN = "HIDDEN", o.LEGAL = "LEGAL", o))(w || {}), R = /* @__PURE__ */ ((o) => (o.BLOCK = "BLOCK", o.FIELD = "FIELD", o))(R || {});
415
415
  const y = e.object({
416
416
  id: e.string(),
417
- category: e.nativeEnum(w),
418
- type: e.nativeEnum(R)
419
- }), se = y.extend({
417
+ category: e.nativeEnum(R),
418
+ type: e.nativeEnum(w)
419
+ }), pe = y.extend({
420
420
  category: e.literal(
421
421
  "BLOCK"
422
422
  /* BLOCK */
@@ -428,7 +428,7 @@ const y = e.object({
428
428
  config: e.object({
429
429
  content: e.string()
430
430
  }).passthrough()
431
- }), le = y.extend({
431
+ }), ce = y.extend({
432
432
  category: e.literal(
433
433
  "BLOCK"
434
434
  /* BLOCK */
@@ -450,7 +450,7 @@ const y = e.object({
450
450
  config: e.object({
451
451
  text: e.string()
452
452
  }).passthrough()
453
- }), pe = y.extend({
453
+ }), _e = y.extend({
454
454
  category: e.literal(
455
455
  "FIELD"
456
456
  /* FIELD */
@@ -464,7 +464,7 @@ const y = e.object({
464
464
  config: e.object({
465
465
  text: e.string()
466
466
  }).passthrough()
467
- }), ce = y.extend({
467
+ }), de = y.extend({
468
468
  category: e.literal(
469
469
  "FIELD"
470
470
  /* FIELD */
@@ -517,19 +517,19 @@ const y = e.object({
517
517
  label: e.string().optional(),
518
518
  placeholder: e.string().optional()
519
519
  }).passthrough()
520
- }), _e = e.object({
520
+ }), ge = e.object({
521
521
  id: e.string(),
522
522
  category: e.string(),
523
523
  type: e.string()
524
- }).passthrough(), de = e.union([
525
- se,
526
- le,
524
+ }).passthrough(), ue = e.union([
527
525
  pe,
528
526
  ce,
529
- _e
527
+ _e,
528
+ de,
529
+ ge
530
530
  ]);
531
- var ge = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(ge || {});
532
- const ue = e.object({
531
+ var me = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(me || {});
532
+ const he = e.object({
533
533
  id: e.string(),
534
534
  type: e.literal(
535
535
  "STEP"
@@ -538,10 +538,10 @@ const ue = e.object({
538
538
  coordinates: u,
539
539
  alias: e.string().optional(),
540
540
  config: e.object({
541
- components: e.array(de),
541
+ components: e.array(ue),
542
542
  next_node: e.string()
543
543
  }).passthrough()
544
- }), me = e.object({
544
+ }), be = e.object({
545
545
  id: e.string(),
546
546
  type: e.literal(
547
547
  "FLOW"
@@ -553,7 +553,7 @@ const ue = e.object({
553
553
  flow_id: e.string(),
554
554
  next_node: e.string()
555
555
  })
556
- }), he = e.object({
556
+ }), fe = e.object({
557
557
  id: e.string(),
558
558
  type: e.literal(
559
559
  "ACTION"
@@ -575,43 +575,43 @@ const ue = e.object({
575
575
  description: "The next node to navigate to after action (for non-redirect actions)"
576
576
  })
577
577
  }).passthrough()
578
- }), be = e.object({
578
+ }), Ee = e.object({
579
579
  id: e.string(),
580
580
  type: e.string(),
581
581
  coordinates: u
582
- }).passthrough(), fe = e.union([
583
- ue,
584
- me,
582
+ }).passthrough(), Se = e.union([
585
583
  he,
586
- be
587
- ]), Ee = e.object({
584
+ be,
585
+ fe,
586
+ Ee
587
+ ]), Ae = e.object({
588
588
  next_node: e.string(),
589
589
  coordinates: u
590
- }).passthrough(), Se = e.object({
590
+ }).passthrough(), Ie = e.object({
591
591
  resume_flow: e.boolean().optional(),
592
592
  coordinates: u
593
- }).passthrough(), Ae = e.object({
593
+ }).passthrough(), ye = e.object({
594
594
  id: e.string(),
595
595
  name: e.string(),
596
596
  languages: e.object({
597
597
  primary: e.string()
598
598
  }).passthrough(),
599
- nodes: e.array(fe),
600
- start: Ee,
601
- ending: Se,
599
+ nodes: e.array(Se),
600
+ start: Ae,
601
+ ending: Ie,
602
602
  created_at: e.string(),
603
603
  updated_at: e.string(),
604
604
  links: e.object({
605
605
  sdkSrc: e.string().optional(),
606
606
  sdk_src: e.string().optional()
607
607
  }).passthrough()
608
- }).passthrough(), Et = Ae.omit({
608
+ }).passthrough(), yt = ye.omit({
609
609
  id: !0,
610
610
  created_at: !0,
611
611
  updated_at: !0
612
612
  });
613
613
  var j = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "token id_token", o.CODE = "code", o))(j || {}), 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 || {});
614
- const Ie = e.object({
614
+ const Ce = e.object({
615
615
  client_id: e.string(),
616
616
  act_as: e.string().optional(),
617
617
  response_type: e.nativeEnum(j).optional(),
@@ -635,7 +635,7 @@ const Ie = e.object({
635
635
  acr_values: e.string().optional(),
636
636
  // The following fields are not available in Auth0
637
637
  vendor_id: e.string().optional()
638
- }), St = e.object({
638
+ }), Ct = e.object({
639
639
  colors: e.object({
640
640
  primary: e.string(),
641
641
  page_background: e.object({
@@ -651,14 +651,15 @@ const Ie = e.object({
651
651
  font: e.object({
652
652
  url: e.string()
653
653
  }).optional()
654
- }), ye = e.enum([
654
+ }), Oe = e.enum([
655
655
  "password_reset",
656
656
  "email_verification",
657
657
  "otp",
658
+ "mfa_otp",
658
659
  "authorization_code",
659
660
  "oauth2_state",
660
661
  "ticket"
661
- ]), Ce = e.object({
662
+ ]), Te = e.object({
662
663
  code_id: e.string().openapi({
663
664
  description: "The code that will be used in for instance an email verification flow"
664
665
  }),
@@ -668,7 +669,7 @@ const Ie = e.object({
668
669
  connection_id: e.string().optional().openapi({
669
670
  description: "The connection that the code is connected to"
670
671
  }),
671
- code_type: ye,
672
+ code_type: Oe,
672
673
  code_verifier: e.string().optional().openapi({
673
674
  description: "The code verifier used in PKCE in outbound flows"
674
675
  }),
@@ -681,6 +682,9 @@ const Ie = e.object({
681
682
  redirect_uri: e.string().optional().openapi({
682
683
  description: "The redirect URI associated with the code"
683
684
  }),
685
+ otp: e.string().optional().openapi({
686
+ description: "The one-time password value for OTP-based flows"
687
+ }),
684
688
  nonce: e.string().optional().openapi({
685
689
  description: "The nonce value used for security in OIDC flows"
686
690
  }),
@@ -690,10 +694,10 @@ const Ie = e.object({
690
694
  expires_at: e.string(),
691
695
  used_at: e.string().optional(),
692
696
  user_id: e.string().optional()
693
- }), At = e.object({
694
- ...Ce.shape,
697
+ }), Ot = e.object({
698
+ ...Te.shape,
695
699
  created_at: e.string()
696
- }), Oe = e.object({
700
+ }), Ne = e.object({
697
701
  kid: e.string().optional(),
698
702
  team_id: e.string().optional(),
699
703
  realms: e.string().optional(),
@@ -805,12 +809,12 @@ const Ie = e.object({
805
809
  }).optional(),
806
810
  // Controls when root user attributes are updated from external IdP
807
811
  set_user_root_attributes: e.enum(["on_each_login", "on_first_login", "never_on_login"]).optional()
808
- }), Te = e.object({
812
+ }), we = e.object({
809
813
  id: e.string().optional(),
810
814
  name: e.string(),
811
815
  display_name: e.string().optional(),
812
816
  strategy: e.string(),
813
- options: Oe.default({}),
817
+ options: Ne.default({}),
814
818
  enabled_clients: e.array(e.string()).default([]).optional(),
815
819
  response_type: e.custom().optional(),
816
820
  response_mode: e.custom().optional(),
@@ -818,11 +822,11 @@ const Ie = e.object({
818
822
  show_as_button: e.boolean().optional(),
819
823
  metadata: e.record(e.any()).optional(),
820
824
  is_system: e.boolean().optional()
821
- }), It = e.object({
825
+ }), Tt = e.object({
822
826
  id: e.string(),
823
827
  created_at: e.string().transform((o) => o === null ? "" : o),
824
828
  updated_at: e.string().transform((o) => o === null ? "" : o)
825
- }).extend(Te.shape), Ne = e.object({
829
+ }).extend(we.shape), Re = e.object({
826
830
  domain: e.string(),
827
831
  custom_domain_id: e.string().optional(),
828
832
  type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
@@ -836,7 +840,7 @@ const Ie = e.object({
836
840
  "null"
837
841
  ]).optional(),
838
842
  domain_metadata: e.record(e.string().max(255)).optional()
839
- }), Re = e.discriminatedUnion("name", [
843
+ }), je = e.discriminatedUnion("name", [
840
844
  e.object({
841
845
  name: e.literal("txt"),
842
846
  record: e.string(),
@@ -847,17 +851,17 @@ const Ie = e.object({
847
851
  http_body: e.string(),
848
852
  http_url: e.string()
849
853
  })
850
- ]), we = e.object({
851
- ...Ne.shape,
854
+ ]), De = e.object({
855
+ ...Re.shape,
852
856
  custom_domain_id: e.string(),
853
857
  primary: e.boolean(),
854
858
  status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
855
859
  origin_domain_name: e.string().optional(),
856
860
  verification: e.object({
857
- methods: e.array(Re)
861
+ methods: e.array(je)
858
862
  }).optional(),
859
863
  tls_policy: e.string().optional()
860
- }), yt = we.extend({
864
+ }), Nt = De.extend({
861
865
  tenant_id: e.string()
862
866
  }), C = e.object({
863
867
  id: e.string(),
@@ -865,17 +869,17 @@ const Ie = e.object({
865
869
  visible: e.boolean().optional().default(!0)
866
870
  }), l = C.extend({
867
871
  category: e.literal("BLOCK").optional()
868
- }), je = l.extend({
872
+ }), Le = l.extend({
869
873
  type: e.literal("DIVIDER"),
870
874
  config: e.object({
871
875
  text: e.string().optional()
872
876
  }).optional()
873
- }), De = l.extend({
877
+ }), ve = l.extend({
874
878
  type: e.literal("HTML"),
875
879
  config: e.object({
876
880
  content: e.string().optional()
877
881
  }).optional()
878
- }), Le = l.extend({
882
+ }), ke = l.extend({
879
883
  type: e.literal("IMAGE"),
880
884
  config: e.object({
881
885
  src: e.string().optional(),
@@ -883,29 +887,29 @@ const Ie = e.object({
883
887
  width: e.number().optional(),
884
888
  height: e.number().optional()
885
889
  }).optional()
886
- }), ve = l.extend({
890
+ }), Ue = l.extend({
887
891
  type: e.literal("JUMP_BUTTON"),
888
892
  config: e.object({
889
893
  text: e.string().optional(),
890
894
  target_step: e.string().optional()
891
895
  })
892
- }), ke = l.extend({
896
+ }), Fe = l.extend({
893
897
  type: e.literal("RESEND_BUTTON"),
894
898
  config: e.object({
895
899
  text: e.string().optional(),
896
900
  resend_action: e.string().optional()
897
901
  })
898
- }), Ue = l.extend({
902
+ }), xe = l.extend({
899
903
  type: e.literal("NEXT_BUTTON"),
900
904
  config: e.object({
901
905
  text: e.string().optional()
902
906
  })
903
- }), Fe = l.extend({
907
+ }), Pe = l.extend({
904
908
  type: e.literal("PREVIOUS_BUTTON"),
905
909
  config: e.object({
906
910
  text: e.string().optional()
907
911
  })
908
- }), xe = l.extend({
912
+ }), Me = l.extend({
909
913
  type: e.literal("RICH_TEXT"),
910
914
  config: e.object({
911
915
  content: e.string().optional()
@@ -916,17 +920,17 @@ const Ie = e.object({
916
920
  hint: e.string().min(1).max(500).optional(),
917
921
  required: e.boolean().optional(),
918
922
  sensitive: e.boolean().optional()
919
- }), Pe = O.extend({
923
+ }), He = O.extend({
920
924
  type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
921
925
  config: e.object({
922
926
  credential_type: e.string().optional()
923
927
  })
924
- }), Me = O.extend({
928
+ }), Ge = O.extend({
925
929
  type: e.literal("GMAPS_ADDRESS"),
926
930
  config: e.object({
927
931
  api_key: e.string().optional()
928
932
  })
929
- }), He = O.extend({
933
+ }), Be = O.extend({
930
934
  type: e.literal("RECAPTCHA"),
931
935
  config: e.object({
932
936
  site_key: e.string().optional()
@@ -944,12 +948,12 @@ const Ie = e.object({
944
948
  ).optional(),
945
949
  required: e.boolean().optional(),
946
950
  sensitive: e.boolean().optional()
947
- }), Ge = t.extend({
951
+ }), We = t.extend({
948
952
  type: e.literal("BOOLEAN"),
949
953
  config: e.object({
950
954
  default_value: e.boolean().optional()
951
955
  }).optional()
952
- }), Be = t.extend({
956
+ }), Ke = t.extend({
953
957
  type: e.literal("CARDS"),
954
958
  config: e.object({
955
959
  options: e.array(
@@ -962,7 +966,7 @@ const Ie = e.object({
962
966
  ).optional(),
963
967
  multi_select: e.boolean().optional()
964
968
  }).optional()
965
- }), We = t.extend({
969
+ }), ze = t.extend({
966
970
  type: e.literal("CHOICE"),
967
971
  config: e.object({
968
972
  options: e.array(
@@ -975,7 +979,7 @@ const Ie = e.object({
975
979
  multiple: e.boolean().optional(),
976
980
  default_value: e.union([e.string(), e.array(e.string())]).optional()
977
981
  }).optional()
978
- }), Ke = t.extend({
982
+ }), qe = t.extend({
979
983
  type: e.literal("CUSTOM"),
980
984
  config: e.object({
981
985
  component: e.string().optional(),
@@ -983,7 +987,7 @@ const Ie = e.object({
983
987
  schema: e.record(e.any()).optional(),
984
988
  code: e.string().optional()
985
989
  })
986
- }), ze = t.extend({
990
+ }), Xe = t.extend({
987
991
  type: e.literal("DATE"),
988
992
  config: e.object({
989
993
  format: e.string().optional(),
@@ -991,7 +995,7 @@ const Ie = e.object({
991
995
  max: e.string().optional(),
992
996
  default_value: e.string().optional()
993
997
  }).optional()
994
- }), Xe = t.extend({
998
+ }), Ve = t.extend({
995
999
  type: e.literal("DROPDOWN"),
996
1000
  config: e.object({
997
1001
  options: e.array(
@@ -1005,26 +1009,26 @@ const Ie = e.object({
1005
1009
  multiple: e.boolean().optional(),
1006
1010
  default_value: e.union([e.string(), e.array(e.string())]).optional()
1007
1011
  }).optional()
1008
- }), qe = t.extend({
1012
+ }), Ye = t.extend({
1009
1013
  type: e.literal("EMAIL"),
1010
1014
  config: e.object({
1011
1015
  placeholder: e.string().optional(),
1012
1016
  default_value: e.string().optional()
1013
1017
  }).optional()
1014
- }), Ve = t.extend({
1018
+ }), Qe = t.extend({
1015
1019
  type: e.literal("FILE"),
1016
1020
  config: e.object({
1017
1021
  accept: e.string().optional(),
1018
1022
  max_size: e.number().optional(),
1019
1023
  multiple: e.boolean().optional()
1020
1024
  }).optional()
1021
- }), Ye = t.extend({
1025
+ }), Ze = t.extend({
1022
1026
  type: e.literal("LEGAL"),
1023
1027
  config: e.object({
1024
1028
  text: e.string(),
1025
1029
  html: e.boolean().optional()
1026
1030
  }).optional()
1027
- }), Qe = t.extend({
1031
+ }), Je = t.extend({
1028
1032
  type: e.literal("NUMBER"),
1029
1033
  config: e.object({
1030
1034
  placeholder: e.string().optional(),
@@ -1033,7 +1037,7 @@ const Ie = e.object({
1033
1037
  step: e.number().optional(),
1034
1038
  default_value: e.string().optional()
1035
1039
  }).optional()
1036
- }), Je = t.extend({
1040
+ }), $e = t.extend({
1037
1041
  type: e.literal("PASSWORD"),
1038
1042
  config: e.object({
1039
1043
  placeholder: e.string().optional(),
@@ -1042,13 +1046,13 @@ const Ie = e.object({
1042
1046
  forgot_password_link: e.string().optional(),
1043
1047
  default_value: e.string().optional()
1044
1048
  }).optional()
1045
- }), Ze = t.extend({
1049
+ }), eo = t.extend({
1046
1050
  type: e.literal("PAYMENT"),
1047
1051
  config: e.object({
1048
1052
  provider: e.string().optional(),
1049
1053
  currency: e.string().optional()
1050
1054
  }).optional()
1051
- }), $e = t.extend({
1055
+ }), oo = t.extend({
1052
1056
  type: e.literal("SOCIAL"),
1053
1057
  config: e.object({
1054
1058
  providers: e.array(e.string()).optional(),
@@ -1063,7 +1067,7 @@ const Ie = e.object({
1063
1067
  })
1064
1068
  ).optional()
1065
1069
  }).optional()
1066
- }), eo = t.extend({
1070
+ }), to = t.extend({
1067
1071
  type: e.literal("TEL"),
1068
1072
  config: e.object({
1069
1073
  placeholder: e.string().optional(),
@@ -1071,7 +1075,7 @@ const Ie = e.object({
1071
1075
  default_value: e.string().optional(),
1072
1076
  allow_email: e.boolean().optional()
1073
1077
  }).optional()
1074
- }), oo = t.extend({
1078
+ }), no = t.extend({
1075
1079
  type: e.literal("TEXT"),
1076
1080
  config: e.object({
1077
1081
  placeholder: e.string().optional(),
@@ -1079,50 +1083,58 @@ const Ie = e.object({
1079
1083
  max_length: e.number().optional(),
1080
1084
  default_value: e.string().optional()
1081
1085
  }).optional()
1082
- }), to = t.extend({
1086
+ }), io = t.extend({
1087
+ type: e.literal("COUNTRY"),
1088
+ config: e.object({
1089
+ placeholder: e.string().optional(),
1090
+ default_value: e.string().optional()
1091
+ }).optional()
1092
+ }), ao = t.extend({
1083
1093
  type: e.literal("URL"),
1084
1094
  config: e.object({
1085
1095
  placeholder: e.string().optional(),
1086
1096
  default_value: e.string().optional()
1087
1097
  }).optional()
1088
- }), no = e.discriminatedUnion("type", [
1089
- je,
1090
- De,
1098
+ }), so = e.discriminatedUnion("type", [
1091
1099
  Le,
1092
1100
  ve,
1093
1101
  ke,
1094
1102
  Ue,
1095
1103
  Fe,
1096
- xe
1097
- ]), io = e.discriminatedUnion("type", [
1104
+ xe,
1098
1105
  Pe,
1099
- Me,
1100
- He
1101
- ]), ao = e.discriminatedUnion("type", [
1106
+ Me
1107
+ ]), ro = e.discriminatedUnion("type", [
1108
+ He,
1102
1109
  Ge,
1103
- Be,
1110
+ Be
1111
+ ]), lo = e.discriminatedUnion("type", [
1104
1112
  We,
1105
1113
  Ke,
1106
1114
  ze,
1107
- Xe,
1115
+ io,
1108
1116
  qe,
1117
+ Xe,
1109
1118
  Ve,
1110
1119
  Ye,
1111
1120
  Qe,
1112
- Je,
1113
1121
  Ze,
1122
+ Je,
1114
1123
  $e,
1115
1124
  eo,
1116
1125
  oo,
1117
- to
1118
- ]), v = e.union([
1126
+ to,
1119
1127
  no,
1120
- io,
1121
1128
  ao
1122
- ]), Ct = /* @__PURE__ */ new Set([
1129
+ ]), v = e.union([
1130
+ so,
1131
+ ro,
1132
+ lo
1133
+ ]), wt = /* @__PURE__ */ new Set([
1123
1134
  "BOOLEAN",
1124
1135
  "CARDS",
1125
1136
  "CHOICE",
1137
+ "COUNTRY",
1126
1138
  "DATE",
1127
1139
  "DROPDOWN",
1128
1140
  "EMAIL",
@@ -1132,7 +1144,7 @@ const Ie = e.object({
1132
1144
  "TEL",
1133
1145
  "TEXT",
1134
1146
  "URL"
1135
- ]), Ot = e.object({
1147
+ ]), Rt = e.object({
1136
1148
  id: e.string(),
1137
1149
  type: e.literal("submit"),
1138
1150
  label: e.string(),
@@ -1144,7 +1156,7 @@ const Ie = e.object({
1144
1156
  }), f = e.object({
1145
1157
  x: e.number(),
1146
1158
  y: e.number()
1147
- }), ro = e.object({
1159
+ }), po = e.object({
1148
1160
  id: e.string(),
1149
1161
  type: e.literal("FLOW"),
1150
1162
  coordinates: f,
@@ -1153,7 +1165,7 @@ const Ie = e.object({
1153
1165
  flow_id: e.string().max(30),
1154
1166
  next_node: e.string().optional()
1155
1167
  })
1156
- }), so = e.object({
1168
+ }), co = e.object({
1157
1169
  id: e.string(),
1158
1170
  type: e.literal("ROUTER"),
1159
1171
  coordinates: f,
@@ -1169,7 +1181,7 @@ const Ie = e.object({
1169
1181
  ),
1170
1182
  fallback: e.string()
1171
1183
  })
1172
- }), lo = e.object({
1184
+ }), _o = e.object({
1173
1185
  id: e.string(),
1174
1186
  type: e.literal("STEP"),
1175
1187
  coordinates: f,
@@ -1178,11 +1190,11 @@ const Ie = e.object({
1178
1190
  components: e.array(v),
1179
1191
  next_node: e.string().optional()
1180
1192
  })
1181
- }), po = e.discriminatedUnion("type", [
1182
- ro,
1183
- so,
1184
- lo
1185
- ]), co = e.object({
1193
+ }), go = e.discriminatedUnion("type", [
1194
+ po,
1195
+ co,
1196
+ _o
1197
+ ]), uo = e.object({
1186
1198
  name: e.string().openapi({
1187
1199
  description: "The name of the form"
1188
1200
  }),
@@ -1195,7 +1207,7 @@ const Ie = e.object({
1195
1207
  default: e.string().optional()
1196
1208
  }).optional(),
1197
1209
  translations: e.record(e.string(), e.any()).optional(),
1198
- nodes: e.array(po).optional(),
1210
+ nodes: e.array(go).optional(),
1199
1211
  start: e.object({
1200
1212
  hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
1201
1213
  next_node: e.string().optional(),
@@ -1217,20 +1229,20 @@ const Ie = e.object({
1217
1229
  }).optional()
1218
1230
  }).openapi({
1219
1231
  description: "Schema for flow-based forms (matches Auth0 Forms structure)"
1220
- }), Tt = e.object({
1221
- ...s.shape,
1222
- ...co.shape,
1232
+ }), jt = e.object({
1233
+ ...r.shape,
1234
+ ...uo.shape,
1223
1235
  id: e.string()
1224
- }), _o = e.object({
1236
+ }), mo = e.object({
1225
1237
  id: e.number().optional(),
1226
1238
  text: e.string(),
1227
1239
  type: e.enum(["info", "error", "success", "warning"])
1228
- }), go = e.object({
1240
+ }), ho = e.object({
1229
1241
  id: e.string().optional(),
1230
1242
  text: e.string(),
1231
1243
  href: e.string(),
1232
1244
  linkText: e.string().optional()
1233
- }), Nt = e.object({
1245
+ }), Dt = e.object({
1234
1246
  /** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
1235
1247
  name: e.string().optional(),
1236
1248
  action: e.string(),
@@ -1238,18 +1250,18 @@ const Ie = e.object({
1238
1250
  title: e.string().optional(),
1239
1251
  description: e.string().optional(),
1240
1252
  components: e.array(v),
1241
- messages: e.array(_o).optional(),
1242
- links: e.array(go).optional(),
1253
+ messages: e.array(mo).optional(),
1254
+ links: e.array(ho).optional(),
1243
1255
  /** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
1244
1256
  footer: e.string().optional()
1245
1257
  });
1246
- function Rt(o) {
1258
+ function Lt(o) {
1247
1259
  return o.category === "BLOCK";
1248
1260
  }
1249
- function wt(o) {
1261
+ function vt(o) {
1250
1262
  return o.category === "WIDGET";
1251
1263
  }
1252
- function jt(o) {
1264
+ function kt(o) {
1253
1265
  return o.category === "FIELD";
1254
1266
  }
1255
1267
  const k = e.enum([
@@ -1273,7 +1285,7 @@ const k = e.enum([
1273
1285
  ]), x = e.enum([
1274
1286
  "ensure-username",
1275
1287
  "set-preferred-username"
1276
- ]), Dt = {
1288
+ ]), Ut = {
1277
1289
  "ensure-username": {
1278
1290
  name: "Ensure Username",
1279
1291
  description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
@@ -1289,52 +1301,52 @@ const k = e.enum([
1289
1301
  synchronous: e.boolean().default(!1),
1290
1302
  priority: e.number().optional(),
1291
1303
  hook_id: e.string().optional()
1292
- }, uo = e.object({
1304
+ }, bo = e.object({
1293
1305
  ...m,
1294
1306
  trigger_id: k,
1295
1307
  url: e.string()
1296
- }), mo = e.object({
1308
+ }), fo = e.object({
1297
1309
  ...m,
1298
1310
  trigger_id: U,
1299
1311
  form_id: e.string()
1300
- }), ho = e.object({
1312
+ }), Eo = e.object({
1301
1313
  ...m,
1302
1314
  trigger_id: F,
1303
1315
  template_id: x
1304
- }), Lt = e.union([
1305
- uo,
1306
- mo,
1307
- ho
1308
- ]), bo = e.object({
1316
+ }), Ft = e.union([
1317
+ bo,
1318
+ fo,
1319
+ Eo
1320
+ ]), So = e.object({
1309
1321
  ...m,
1310
1322
  trigger_id: k,
1311
- ...s.shape,
1323
+ ...r.shape,
1312
1324
  hook_id: e.string(),
1313
1325
  url: e.string()
1314
- }), fo = e.object({
1326
+ }), Ao = e.object({
1315
1327
  ...m,
1316
1328
  trigger_id: U,
1317
- ...s.shape,
1329
+ ...r.shape,
1318
1330
  hook_id: e.string(),
1319
1331
  form_id: e.string()
1320
- }), Eo = e.object({
1332
+ }), Io = e.object({
1321
1333
  ...m,
1322
1334
  trigger_id: F,
1323
- ...s.shape,
1335
+ ...r.shape,
1324
1336
  hook_id: e.string(),
1325
1337
  template_id: x
1326
- }), vt = e.union([
1327
- bo,
1328
- fo,
1329
- Eo
1330
- ]), So = e.object({
1338
+ }), xt = e.union([
1339
+ So,
1340
+ Ao,
1341
+ Io
1342
+ ]), yo = e.object({
1331
1343
  name: e.string().optional()
1332
- }), Ao = e.object({
1344
+ }), Co = e.object({
1333
1345
  email: e.string().optional()
1334
- }), Io = e.object({
1346
+ }), Oo = e.object({
1335
1347
  organization_id: e.string().max(50),
1336
- inviter: So,
1337
- invitee: Ao,
1348
+ inviter: yo,
1349
+ invitee: Co,
1338
1350
  invitation_url: e.string().url(),
1339
1351
  client_id: e.string(),
1340
1352
  connection_id: e.string().optional(),
@@ -1343,13 +1355,13 @@ const k = e.enum([
1343
1355
  ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
1344
1356
  roles: e.array(e.string()).default([]).optional(),
1345
1357
  send_invitation_email: e.boolean().default(!0).optional()
1346
- }), kt = e.object({
1358
+ }), Pt = e.object({
1347
1359
  id: e.string(),
1348
1360
  organization_id: e.string().max(50),
1349
1361
  created_at: e.string().datetime(),
1350
1362
  expires_at: e.string().datetime(),
1351
1363
  ticket_id: e.string().optional()
1352
- }).extend(Io.shape), yo = e.object({
1364
+ }).extend(Oo.shape), To = e.object({
1353
1365
  alg: e.enum([
1354
1366
  "RS256",
1355
1367
  "RS384",
@@ -1368,9 +1380,9 @@ const k = e.enum([
1368
1380
  x5t: e.string().optional(),
1369
1381
  x5c: e.array(e.string()).optional(),
1370
1382
  use: e.enum(["sig", "enc"]).optional()
1371
- }), Ut = e.object({
1372
- keys: e.array(yo)
1373
- }), Ft = e.object({
1383
+ }), Mt = e.object({
1384
+ keys: e.array(To)
1385
+ }), Ht = e.object({
1374
1386
  issuer: e.string(),
1375
1387
  authorization_endpoint: e.string(),
1376
1388
  token_endpoint: e.string(),
@@ -1392,18 +1404,18 @@ const k = e.enum([
1392
1404
  request_parameter_supported: e.boolean(),
1393
1405
  token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
1394
1406
  });
1395
- var P = /* @__PURE__ */ ((o) => (o.PENDING = "pending", o.AUTHENTICATED = "authenticated", o.AWAITING_EMAIL_VERIFICATION = "awaiting_email_verification", o.AWAITING_HOOK = "awaiting_hook", o.AWAITING_CONTINUATION = "awaiting_continuation", o.COMPLETED = "completed", o.FAILED = "failed", o.EXPIRED = "expired", o))(P || {});
1396
- const Co = e.nativeEnum(P), Oo = e.object({
1407
+ var P = /* @__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))(P || {});
1408
+ const No = e.nativeEnum(P), wo = e.object({
1397
1409
  csrf_token: e.string(),
1398
1410
  auth0Client: e.string().optional(),
1399
- authParams: Ie,
1411
+ authParams: Ce,
1400
1412
  expires_at: e.string(),
1401
1413
  deleted_at: e.string().optional(),
1402
1414
  ip: e.string().optional(),
1403
1415
  useragent: e.string().optional(),
1404
1416
  session_id: e.string().optional(),
1405
1417
  authorization_url: e.string().optional(),
1406
- state: Co.optional().default(
1418
+ state: No.optional().default(
1407
1419
  "pending"
1408
1420
  /* PENDING */
1409
1421
  ),
@@ -1416,14 +1428,14 @@ const Co = e.nativeEnum(P), Oo = e.object({
1416
1428
  // The connection used to authenticate (may differ from primary user's connection)
1417
1429
  }).openapi({
1418
1430
  description: "This represents a login sesion"
1419
- }), xt = e.object({
1420
- ...Oo.shape,
1431
+ }), Gt = e.object({
1432
+ ...wo.shape,
1421
1433
  id: e.string().openapi({
1422
1434
  description: "This is is used as the state in the universal login"
1423
1435
  }),
1424
1436
  created_at: e.string(),
1425
1437
  updated_at: e.string()
1426
- }), To = {
1438
+ }), Ro = {
1427
1439
  // Network & System
1428
1440
  ACLS_SUMMARY: "acls_summary",
1429
1441
  ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
@@ -1594,24 +1606,24 @@ const Co = e.nativeEnum(P), Oo = e.object({
1594
1606
  WARNING_DURING_LOGIN: "w",
1595
1607
  WARNING_SENDING_NOTIFICATION: "wn",
1596
1608
  WARNING_USER_MANAGEMENT: "wum"
1597
- }, No = e.string().refine(
1598
- (o) => Object.values(To).includes(o),
1609
+ }, jo = e.string().refine(
1610
+ (o) => Object.values(Ro).includes(o),
1599
1611
  { message: "Invalid log type" }
1600
- ), Ro = e.object({
1612
+ ), Do = e.object({
1601
1613
  name: e.string(),
1602
1614
  version: e.string(),
1603
1615
  env: e.object({
1604
1616
  node: e.string().optional()
1605
1617
  }).optional()
1606
- }), wo = e.object({
1618
+ }), Lo = e.object({
1607
1619
  country_code: e.string().length(2),
1608
1620
  city_name: e.string(),
1609
1621
  latitude: e.string(),
1610
1622
  longitude: e.string(),
1611
1623
  time_zone: e.string(),
1612
1624
  continent_code: e.string()
1613
- }), jo = e.object({
1614
- type: No,
1625
+ }), vo = e.object({
1626
+ type: jo,
1615
1627
  date: e.string(),
1616
1628
  description: e.string().optional(),
1617
1629
  ip: e.string().optional(),
@@ -1630,19 +1642,19 @@ const Co = e.nativeEnum(P), Oo = e.object({
1630
1642
  strategy: e.string().optional(),
1631
1643
  strategy_type: e.string().optional(),
1632
1644
  hostname: e.string().optional(),
1633
- auth0_client: Ro.optional(),
1645
+ auth0_client: Do.optional(),
1634
1646
  log_id: e.string().optional(),
1635
- location_info: wo.optional()
1636
- }), Pt = e.object({
1637
- ...jo.shape,
1647
+ location_info: Lo.optional()
1648
+ }), Bt = e.object({
1649
+ ...vo.shape,
1638
1650
  log_id: e.string()
1639
- }), Do = e.object({
1651
+ }), ko = e.object({
1640
1652
  id: e.string().optional(),
1641
1653
  user_id: e.string(),
1642
1654
  password: e.string(),
1643
1655
  algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
1644
1656
  is_current: e.boolean().default(!0)
1645
- }), Mt = Do.extend({
1657
+ }), Wt = ko.extend({
1646
1658
  id: e.string(),
1647
1659
  created_at: e.string(),
1648
1660
  updated_at: e.string()
@@ -1653,7 +1665,7 @@ const Co = e.nativeEnum(P), Oo = e.object({
1653
1665
  last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
1654
1666
  last_ip: e.string().describe("Last IP address from which this user logged in"),
1655
1667
  last_asn: e.string().describe("Last autonomous system number from which this user logged in")
1656
- }), Lo = e.object({
1668
+ }), Uo = e.object({
1657
1669
  id: e.string(),
1658
1670
  revoked_at: e.string().optional(),
1659
1671
  used_at: e.string().optional(),
@@ -1665,13 +1677,13 @@ const Co = e.nativeEnum(P), Oo = e.object({
1665
1677
  "Metadata related to the device used in the session"
1666
1678
  ),
1667
1679
  clients: e.array(e.string()).describe("List of client details for the session")
1668
- }), Ht = e.object({
1680
+ }), Kt = e.object({
1669
1681
  created_at: e.string(),
1670
1682
  updated_at: e.string(),
1671
1683
  authenticated_at: e.string(),
1672
1684
  last_interaction_at: e.string(),
1673
- ...Lo.shape
1674
- }), Gt = e.object({
1685
+ ...Uo.shape
1686
+ }), zt = e.object({
1675
1687
  kid: e.string().openapi({ description: "The key id of the signing key" }),
1676
1688
  cert: e.string().openapi({ description: "The public certificate of the signing key" }),
1677
1689
  fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
@@ -1696,7 +1708,7 @@ const Co = e.nativeEnum(P), Oo = e.object({
1696
1708
  type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
1697
1709
  description: "The type of the signing key"
1698
1710
  })
1699
- }), vo = e.object({
1711
+ }), Fo = e.object({
1700
1712
  id: e.string().optional(),
1701
1713
  // Basic settings
1702
1714
  audience: e.string(),
@@ -1822,6 +1834,8 @@ const Co = e.nativeEnum(P), Oo = e.object({
1822
1834
  authorization_response_iss_parameter_supported: e.boolean().optional(),
1823
1835
  // Guardian MFA Factors configuration (internal storage, exposed via /guardian API)
1824
1836
  mfa: e.object({
1837
+ // MFA policy: "never" = MFA disabled, "always" = MFA required for all logins
1838
+ policy: e.enum(["never", "always"]).default("never").optional(),
1825
1839
  // Factor states
1826
1840
  factors: e.object({
1827
1841
  sms: e.boolean().default(!1),
@@ -1849,14 +1863,14 @@ const Co = e.nativeEnum(P), Oo = e.object({
1849
1863
  message: e.string().optional()
1850
1864
  }).optional()
1851
1865
  }).optional()
1852
- }), Bt = e.object({
1866
+ }), qt = e.object({
1853
1867
  created_at: e.string().nullable().transform((o) => o ?? ""),
1854
1868
  updated_at: e.string().nullable().transform((o) => o ?? ""),
1855
- ...vo.shape,
1869
+ ...Fo.shape,
1856
1870
  id: e.string()
1857
1871
  });
1858
- var ko = /* @__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))(ko || {});
1859
- const Wt = e.object({
1872
+ var xo = /* @__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))(xo || {});
1873
+ const Xt = e.object({
1860
1874
  access_token: e.string(),
1861
1875
  id_token: e.string().optional(),
1862
1876
  scope: e.string().optional(),
@@ -1869,7 +1883,7 @@ e.object({
1869
1883
  code: e.string(),
1870
1884
  state: e.string().optional()
1871
1885
  });
1872
- const Uo = e.object({
1886
+ const Po = e.object({
1873
1887
  button_border_radius: e.number(),
1874
1888
  button_border_weight: e.number(),
1875
1889
  buttons_style: e.enum(["pill", "rounded", "sharp"]),
@@ -1879,7 +1893,7 @@ const Uo = e.object({
1879
1893
  show_widget_shadow: e.boolean(),
1880
1894
  widget_border_weight: e.number(),
1881
1895
  widget_corner_radius: e.number()
1882
- }), Fo = e.object({
1896
+ }), Mo = e.object({
1883
1897
  base_focus_color: e.string(),
1884
1898
  base_hover_color: e.string(),
1885
1899
  body_text: e.string(),
@@ -1902,7 +1916,7 @@ const Uo = e.object({
1902
1916
  }), g = e.object({
1903
1917
  bold: e.boolean(),
1904
1918
  size: e.number()
1905
- }), xo = e.object({
1919
+ }), Ho = e.object({
1906
1920
  body_text: g,
1907
1921
  buttons_text: g,
1908
1922
  font_url: e.string(),
@@ -1912,31 +1926,31 @@ const Uo = e.object({
1912
1926
  reference_text_size: e.number(),
1913
1927
  subtitle: g,
1914
1928
  title: g
1915
- }), Po = e.object({
1929
+ }), Go = e.object({
1916
1930
  background_color: e.string(),
1917
1931
  background_image_url: e.string(),
1918
1932
  page_layout: e.enum(["center", "left", "right"])
1919
- }), Mo = e.object({
1933
+ }), Bo = e.object({
1920
1934
  header_text_alignment: e.enum(["center", "left", "right"]),
1921
1935
  logo_height: e.number(),
1922
1936
  logo_position: e.enum(["center", "left", "none", "right"]),
1923
1937
  logo_url: e.string(),
1924
1938
  social_buttons_layout: e.enum(["bottom", "top"])
1925
- }), Ho = e.object({
1926
- borders: Uo,
1927
- colors: Fo,
1939
+ }), Wo = e.object({
1940
+ borders: Po,
1941
+ colors: Mo,
1928
1942
  displayName: e.string(),
1929
- fonts: xo,
1930
- page_background: Po,
1931
- widget: Mo
1932
- }), Kt = Ho.extend({
1943
+ fonts: Ho,
1944
+ page_background: Go,
1945
+ widget: Bo
1946
+ }), Vt = Wo.extend({
1933
1947
  themeId: e.string()
1934
- }), zt = e.object({
1948
+ }), Yt = e.object({
1935
1949
  universal_login_experience: e.enum(["new", "classic"]).default("new"),
1936
1950
  identifier_first: e.boolean().default(!0),
1937
1951
  password_first: e.boolean().default(!1),
1938
1952
  webauthn_platform_first_factor: e.boolean()
1939
- }), Xt = e.object({
1953
+ }), Qt = e.object({
1940
1954
  name: e.string(),
1941
1955
  enabled: e.boolean().optional().default(!0),
1942
1956
  default_from_address: e.string().optional(),
@@ -1966,7 +1980,7 @@ const Uo = e.object({
1966
1980
  })
1967
1981
  ]),
1968
1982
  settings: e.object({}).optional()
1969
- }), Go = e.object({
1983
+ }), Ko = e.object({
1970
1984
  // The actual refresh token value (primary key).
1971
1985
  id: e.string(),
1972
1986
  // Link to the login session
@@ -1987,21 +2001,21 @@ const Uo = e.object({
1987
2001
  })
1988
2002
  ),
1989
2003
  rotating: e.boolean()
1990
- }), qt = e.object({
2004
+ }), Zt = e.object({
1991
2005
  // When the refresh token record was created.
1992
2006
  created_at: e.string(),
1993
2007
  // Spread in the rest of the refresh token properties.
1994
- ...Go.shape
1995
- }), Vt = e.object({
2008
+ ...Ko.shape
2009
+ }), Jt = e.object({
1996
2010
  to: e.string(),
1997
2011
  message: e.string()
1998
- }), Yt = e.object({
2012
+ }), $t = e.object({
1999
2013
  name: e.string(),
2000
2014
  options: e.object({})
2001
- }), Bo = e.object({
2015
+ }), zo = e.object({
2002
2016
  value: e.string(),
2003
2017
  description: e.string().optional()
2004
- }), Wo = e.object({
2018
+ }), qo = e.object({
2005
2019
  token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
2006
2020
  enforce_policies: e.boolean().optional(),
2007
2021
  allow_skipping_userinfo: e.boolean().optional(),
@@ -2011,11 +2025,11 @@ const Uo = e.object({
2011
2025
  mtls: e.object({
2012
2026
  bound_access_tokens: e.boolean().optional()
2013
2027
  }).optional()
2014
- }), Ko = e.object({
2028
+ }), Xo = e.object({
2015
2029
  id: e.string().optional(),
2016
2030
  name: e.string(),
2017
2031
  identifier: e.string(),
2018
- scopes: e.array(Bo).optional(),
2032
+ scopes: e.array(zo).optional(),
2019
2033
  signing_alg: e.string().optional(),
2020
2034
  signing_secret: e.string().optional(),
2021
2035
  token_lifetime: e.number().optional(),
@@ -2023,30 +2037,30 @@ const Uo = e.object({
2023
2037
  skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
2024
2038
  allow_offline_access: e.boolean().optional(),
2025
2039
  verificationKey: e.string().optional(),
2026
- options: Wo.optional(),
2040
+ options: qo.optional(),
2027
2041
  is_system: e.boolean().optional(),
2028
2042
  metadata: e.record(e.any()).optional()
2029
- }), zo = e.object({
2030
- ...Ko.shape,
2043
+ }), Vo = e.object({
2044
+ ...Xo.shape,
2031
2045
  created_at: e.string().optional(),
2032
2046
  updated_at: e.string().optional()
2033
- }), Qt = e.array(zo), Xo = e.object({
2047
+ }), en = e.array(Vo), Yo = e.object({
2034
2048
  role_id: e.string(),
2035
2049
  resource_server_identifier: e.string(),
2036
2050
  permission_name: e.string()
2037
- }), qo = e.object({
2038
- ...Xo.shape,
2051
+ }), Qo = e.object({
2052
+ ...Yo.shape,
2039
2053
  created_at: e.string()
2040
- }), Jt = e.array(qo), Vo = e.object({
2054
+ }), on = e.array(Qo), Zo = e.object({
2041
2055
  user_id: e.string(),
2042
2056
  resource_server_identifier: e.string(),
2043
2057
  permission_name: e.string(),
2044
2058
  organization_id: e.string().optional()
2045
- }), Yo = e.object({
2046
- ...Vo.shape,
2059
+ }), Jo = e.object({
2060
+ ...Zo.shape,
2047
2061
  tenant_id: e.string(),
2048
2062
  created_at: e.string().optional()
2049
- }), Zt = e.array(Yo), Qo = e.object({
2063
+ }), tn = e.array(Jo), $o = e.object({
2050
2064
  user_id: e.string(),
2051
2065
  resource_server_identifier: e.string(),
2052
2066
  resource_server_name: e.string(),
@@ -2054,17 +2068,17 @@ const Uo = e.object({
2054
2068
  description: e.string().nullable().optional(),
2055
2069
  created_at: e.string().optional(),
2056
2070
  organization_id: e.string().optional()
2057
- }), $t = e.array(
2058
- Qo
2059
- ), Jo = e.object({
2071
+ }), nn = e.array(
2072
+ $o
2073
+ ), et = e.object({
2060
2074
  user_id: e.string(),
2061
2075
  role_id: e.string(),
2062
2076
  organization_id: e.string().optional()
2063
- }), Zo = e.object({
2064
- ...Jo.shape,
2077
+ }), ot = e.object({
2078
+ ...et.shape,
2065
2079
  tenant_id: e.string(),
2066
2080
  created_at: e.string().optional()
2067
- }), en = e.array(Zo), $o = e.object({
2081
+ }), an = e.array(ot), tt = e.object({
2068
2082
  id: e.string().optional().openapi({
2069
2083
  description: "The unique identifier of the role. If not provided, one will be generated."
2070
2084
  }),
@@ -2078,13 +2092,13 @@ const Uo = e.object({
2078
2092
  metadata: e.record(e.any()).optional().openapi({
2079
2093
  description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
2080
2094
  })
2081
- }), et = $o.extend({
2095
+ }), nt = tt.extend({
2082
2096
  id: e.string().openapi({
2083
2097
  description: "The unique identifier of the role"
2084
2098
  }),
2085
2099
  created_at: e.string().optional(),
2086
2100
  updated_at: e.string().optional()
2087
- }), on = e.array(et), ot = e.object({
2101
+ }), sn = e.array(nt), it = e.object({
2088
2102
  logo_url: e.string().optional().openapi({
2089
2103
  description: "URL of the organization's logo"
2090
2104
  }),
@@ -2096,7 +2110,7 @@ const Uo = e.object({
2096
2110
  description: "Page background color in hex format (e.g., #FFFFFF)"
2097
2111
  })
2098
2112
  }).optional()
2099
- }).optional(), tt = e.object({
2113
+ }).optional(), at = e.object({
2100
2114
  connection_id: e.string().openapi({
2101
2115
  description: "ID of the connection"
2102
2116
  }),
@@ -2109,7 +2123,7 @@ const Uo = e.object({
2109
2123
  is_signup_enabled: e.boolean().default(!0).openapi({
2110
2124
  description: "Whether signup is enabled for this connection"
2111
2125
  })
2112
- }), nt = e.object({
2126
+ }), st = e.object({
2113
2127
  client_credentials: e.object({
2114
2128
  enforce: e.boolean().default(!1).openapi({
2115
2129
  description: "Whether to enforce token quota limits"
@@ -2121,7 +2135,7 @@ const Uo = e.object({
2121
2135
  description: "Maximum tokens per hour (0 = unlimited)"
2122
2136
  })
2123
2137
  }).optional()
2124
- }).optional(), it = e.object({
2138
+ }).optional(), rt = e.object({
2125
2139
  id: e.string().optional(),
2126
2140
  name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
2127
2141
  message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
@@ -2131,34 +2145,34 @@ const Uo = e.object({
2131
2145
  display_name: e.string().optional().openapi({
2132
2146
  description: "The display name of the organization"
2133
2147
  }),
2134
- branding: ot,
2148
+ branding: it,
2135
2149
  metadata: e.record(e.any()).default({}).optional().openapi({
2136
2150
  description: "Custom metadata for the organization"
2137
2151
  }),
2138
- enabled_connections: e.array(tt).default([]).optional().openapi({
2152
+ enabled_connections: e.array(at).default([]).optional().openapi({
2139
2153
  description: "List of enabled connections for the organization"
2140
2154
  }),
2141
- token_quota: nt
2142
- }), tn = e.object({
2143
- ...it.shape,
2144
- ...s.shape,
2155
+ token_quota: st
2156
+ }), rn = e.object({
2157
+ ...rt.shape,
2158
+ ...r.shape,
2145
2159
  id: e.string(),
2146
2160
  // Override name to be lenient when reading from database (to support existing uppercase names)
2147
2161
  name: e.string().min(1).openapi({
2148
2162
  description: "The name of the organization"
2149
2163
  })
2150
- }), at = e.object({
2164
+ }), lt = e.object({
2151
2165
  user_id: e.string().openapi({
2152
2166
  description: "ID of the user"
2153
2167
  }),
2154
2168
  organization_id: e.string().openapi({
2155
2169
  description: "ID of the organization"
2156
2170
  })
2157
- }), nn = e.object({
2158
- ...at.shape,
2159
- ...s.shape,
2171
+ }), ln = e.object({
2172
+ ...lt.shape,
2173
+ ...r.shape,
2160
2174
  id: e.string()
2161
- }), an = e.object({
2175
+ }), pn = e.object({
2162
2176
  // Session settings
2163
2177
  idle_session_lifetime: e.number().optional(),
2164
2178
  session_lifetime: e.number().optional(),
@@ -2229,6 +2243,8 @@ const Uo = e.object({
2229
2243
  }).optional(),
2230
2244
  // Guardian MFA Factors configuration (internal storage, exposed via /guardian API)
2231
2245
  mfa: e.object({
2246
+ // MFA policy: "never" = MFA disabled, "always" = MFA required for all logins
2247
+ policy: e.enum(["never", "always"]).default("never").optional(),
2232
2248
  // Factor states
2233
2249
  factors: e.object({
2234
2250
  sms: e.boolean().default(!1),
@@ -2256,7 +2272,7 @@ const Uo = e.object({
2256
2272
  message: e.string().optional()
2257
2273
  }).optional()
2258
2274
  }).optional()
2259
- }), rn = e.object({
2275
+ }), cn = e.object({
2260
2276
  date: e.string().openapi({
2261
2277
  description: "Date these events occurred in ISO 8601 format",
2262
2278
  example: "2025-12-19"
@@ -2281,10 +2297,10 @@ const Uo = e.object({
2281
2297
  description: "Approximate date and time the first event occurred in ISO 8601 format",
2282
2298
  example: "2025-12-19T00:00:00.000Z"
2283
2299
  })
2284
- }), sn = e.number().openapi({
2300
+ }), _n = e.number().openapi({
2285
2301
  description: "Number of active users in the last 30 days",
2286
2302
  example: 1234
2287
- }), rt = e.enum([
2303
+ }), pt = e.enum([
2288
2304
  "login",
2289
2305
  "login-id",
2290
2306
  "login-password",
@@ -2299,7 +2315,6 @@ const Uo = e.object({
2299
2315
  "mfa-voice",
2300
2316
  "mfa-phone",
2301
2317
  "mfa-webauthn",
2302
- "mfa-sms",
2303
2318
  "mfa-email",
2304
2319
  "mfa-recovery-code",
2305
2320
  "status",
@@ -2313,17 +2328,17 @@ const Uo = e.object({
2313
2328
  "captcha",
2314
2329
  "custom-form",
2315
2330
  "login-passwordless"
2316
- ]), st = e.record(e.string(), e.record(e.string(), e.string())).openapi({
2331
+ ]), ct = e.record(e.string(), e.record(e.string(), e.string())).openapi({
2317
2332
  type: "object",
2318
2333
  additionalProperties: {
2319
2334
  type: "object",
2320
2335
  additionalProperties: { type: "string" }
2321
2336
  }
2322
- }), ln = e.object({
2323
- prompt: rt,
2337
+ }), dn = e.object({
2338
+ prompt: pt,
2324
2339
  language: e.string(),
2325
- custom_text: st
2326
- }), pn = {
2340
+ custom_text: ct
2341
+ }), gn = {
2327
2342
  EMAIL: "email",
2328
2343
  SMS: "sms",
2329
2344
  USERNAME_PASSWORD: "Username-Password-Authentication",
@@ -2338,18 +2353,47 @@ const Uo = e.object({
2338
2353
  SAMLP: "samlp",
2339
2354
  WAAD: "waad",
2340
2355
  ADFS: "adfs"
2341
- }, cn = {
2356
+ }, un = {
2342
2357
  DATABASE: "database",
2343
2358
  SOCIAL: "social",
2344
2359
  PASSWORDLESS: "passwordless"
2345
- };
2346
- function _n(o) {
2360
+ }, _t = e.enum([
2361
+ "phone",
2362
+ "totp",
2363
+ "email",
2364
+ "push",
2365
+ "webauthn"
2366
+ ]), H = e.object({
2367
+ user_id: e.string(),
2368
+ type: _t,
2369
+ phone_number: e.string().optional(),
2370
+ totp_secret: e.string().optional(),
2371
+ confirmed: e.boolean().default(!1)
2372
+ });
2373
+ function G(o, n) {
2374
+ o.type === "phone" && !o.phone_number && n.addIssue({
2375
+ code: e.ZodIssueCode.custom,
2376
+ message: "phone_number is required when type is 'phone'",
2377
+ path: ["phone_number"]
2378
+ }), o.type === "totp" && !o.totp_secret && n.addIssue({
2379
+ code: e.ZodIssueCode.custom,
2380
+ message: "totp_secret is required when type is 'totp'",
2381
+ path: ["totp_secret"]
2382
+ });
2383
+ }
2384
+ const mn = H.superRefine(G), hn = e.object({
2385
+ ...H.shape,
2386
+ id: e.string(),
2387
+ created_at: e.string(),
2388
+ updated_at: e.string()
2389
+ }).superRefine(G);
2390
+ function bn(o) {
2347
2391
  const [n, i] = o.split("|");
2348
2392
  if (!n || !i)
2349
2393
  throw new Error(`Invalid user_id: ${o}`);
2350
2394
  return { connection: n, id: i };
2351
2395
  }
2352
- function dn(o) {
2396
+ function fn(o) {
2353
2397
  const {
2354
2398
  primary: n,
2355
2399
  secondaries: i,
@@ -2361,16 +2405,16 @@ function dn(o) {
2361
2405
  const c = p[a];
2362
2406
  return typeof c != "function" ? c : T.includes(a) ? async (..._) => {
2363
2407
  const S = await c.apply(p, _), d = [];
2364
- for (const r of i) {
2365
- const h = r.adapter[a];
2408
+ for (const s of i) {
2409
+ const h = s.adapter[a];
2366
2410
  if (typeof h != "function")
2367
2411
  continue;
2368
2412
  const A = (async () => {
2369
2413
  try {
2370
- await h.apply(r.adapter, _);
2414
+ await h.apply(s.adapter, _);
2371
2415
  } catch (b) {
2372
2416
  try {
2373
- r.onError ? r.onError(b, a, _) : console.error(
2417
+ s.onError ? s.onError(b, a, _) : console.error(
2374
2418
  `Passthrough adapter: secondary write failed for ${a}:`,
2375
2419
  b
2376
2420
  );
@@ -2382,7 +2426,7 @@ function dn(o) {
2382
2426
  }
2383
2427
  }
2384
2428
  })();
2385
- r.blocking && d.push(A);
2429
+ s.blocking && d.push(A);
2386
2430
  }
2387
2431
  return d.length > 0 && await Promise.all(d), S;
2388
2432
  } : c.bind(p);
@@ -2390,11 +2434,11 @@ function dn(o) {
2390
2434
  };
2391
2435
  return new Proxy(n, E);
2392
2436
  }
2393
- function gn(o) {
2437
+ function En(o) {
2394
2438
  return o;
2395
2439
  }
2396
- function un(o) {
2397
- var E, p, a, c, _, S, d, r, h, A, b, I;
2440
+ function Sn(o) {
2441
+ var E, p, a, c, _, S, d, s, h, A, b, I;
2398
2442
  const n = o == null ? void 0 : o.options;
2399
2443
  if (!n)
2400
2444
  return {
@@ -2405,12 +2449,12 @@ function un(o) {
2405
2449
  };
2406
2450
  const i = n.attributes;
2407
2451
  if (i) {
2408
- const H = ((p = (E = i.username) == null ? void 0 : E.identifier) == null ? void 0 : p.active) === !0, G = ((c = (a = i.email) == null ? void 0 : a.identifier) == null ? void 0 : c.active) !== !1, B = ((S = (_ = i.username) == null ? void 0 : _.validation) == null ? void 0 : S.min_length) ?? 1, W = ((r = (d = i.username) == null ? void 0 : d.validation) == null ? void 0 : r.max_length) ?? 15;
2452
+ const B = ((p = (E = i.username) == null ? void 0 : E.identifier) == null ? void 0 : p.active) === !0, W = ((c = (a = i.email) == null ? void 0 : a.identifier) == null ? void 0 : c.active) !== !1, K = ((S = (_ = i.username) == null ? void 0 : _.validation) == null ? void 0 : S.min_length) ?? 1, z = ((s = (d = i.username) == null ? void 0 : d.validation) == null ? void 0 : s.max_length) ?? 15;
2409
2453
  return {
2410
- usernameIdentifierActive: H,
2411
- emailIdentifierActive: G,
2412
- usernameMinLength: B,
2413
- usernameMaxLength: W
2454
+ usernameIdentifierActive: B,
2455
+ emailIdentifierActive: W,
2456
+ usernameMinLength: K,
2457
+ usernameMaxLength: z
2414
2458
  };
2415
2459
  }
2416
2460
  return {
@@ -2421,160 +2465,163 @@ function un(o) {
2421
2465
  };
2422
2466
  }
2423
2467
  export {
2424
- ct as Auth0ActionEnum,
2425
- Ro as Auth0Client,
2468
+ ut as Auth0ActionEnum,
2469
+ Do as Auth0Client,
2426
2470
  D as AuthorizationResponseMode,
2427
2471
  j as AuthorizationResponseType,
2428
2472
  L as CodeChallengeMethod,
2429
- w as ComponentCategory,
2430
- R as ComponentType,
2431
- _t as EmailActionEnum,
2432
- Ct as FORM_FIELD_TYPES,
2433
- pt as FlowActionTypeEnum,
2434
- ko as GrantType,
2435
- wo as LocationInfo,
2436
- To as LogTypes,
2473
+ R as ComponentCategory,
2474
+ w as ComponentType,
2475
+ mt as EmailActionEnum,
2476
+ wt as FORM_FIELD_TYPES,
2477
+ gt as FlowActionTypeEnum,
2478
+ xo as GrantType,
2479
+ Lo as LocationInfo,
2480
+ Ro as LogTypes,
2437
2481
  P as LoginSessionState,
2438
- ge as NodeType,
2439
- q as RedirectTargetEnum,
2440
- pn as Strategy,
2441
- cn as StrategyType,
2442
- he as actionNodeSchema,
2443
- sn as activeUsersResponseSchema,
2444
- $ as addressSchema,
2445
- Et as auth0FlowInsertSchema,
2446
- Ae as auth0FlowSchema,
2447
- gt as auth0QuerySchema,
2448
- z as auth0UpdateUserActionSchema,
2449
- mt as auth0UserResponseSchema,
2450
- Ie as authParamsSchema,
2482
+ me as NodeType,
2483
+ Y as RedirectTargetEnum,
2484
+ gn as Strategy,
2485
+ un as StrategyType,
2486
+ fe as actionNodeSchema,
2487
+ _n as activeUsersResponseSchema,
2488
+ oe as addressSchema,
2489
+ yt as auth0FlowInsertSchema,
2490
+ ye as auth0FlowSchema,
2491
+ bt as auth0QuerySchema,
2492
+ X as auth0UpdateUserActionSchema,
2493
+ Et as auth0UserResponseSchema,
2494
+ Ce as authParamsSchema,
2451
2495
  N as baseUserSchema,
2452
- no as blockComponentSchema,
2453
- Uo as bordersSchema,
2454
- St as brandingSchema,
2455
- le as buttonComponentSchema,
2456
- ae as clientGrantInsertSchema,
2457
- ft as clientGrantListSchema,
2458
- re as clientGrantSchema,
2459
- ie as clientInsertSchema,
2460
- bt as clientSchema,
2461
- Ce as codeInsertSchema,
2462
- At as codeSchema,
2463
- ye as codeTypeSchema,
2464
- Fo as colorsSchema,
2465
- _o as componentMessageSchema,
2466
- de as componentSchema,
2467
- Te as connectionInsertSchema,
2468
- Oe as connectionOptionsSchema,
2469
- It as connectionSchema,
2496
+ so as blockComponentSchema,
2497
+ Po as bordersSchema,
2498
+ Ct as brandingSchema,
2499
+ ce as buttonComponentSchema,
2500
+ re as clientGrantInsertSchema,
2501
+ It as clientGrantListSchema,
2502
+ le as clientGrantSchema,
2503
+ se as clientInsertSchema,
2504
+ At as clientSchema,
2505
+ Te as codeInsertSchema,
2506
+ Ot as codeSchema,
2507
+ Oe as codeTypeSchema,
2508
+ Mo as colorsSchema,
2509
+ mo as componentMessageSchema,
2510
+ ue as componentSchema,
2511
+ we as connectionInsertSchema,
2512
+ Ne as connectionOptionsSchema,
2513
+ Tt as connectionSchema,
2470
2514
  u as coordinatesSchema,
2471
- dn as createPassthroughAdapter,
2472
- gn as createWriteOnlyAdapter,
2473
- Ne as customDomainInsertSchema,
2474
- we as customDomainSchema,
2475
- yt as customDomainWithTenantIdSchema,
2476
- ln as customTextEntrySchema,
2477
- st as customTextSchema,
2478
- rn as dailyStatsSchema,
2479
- Xt as emailProviderSchema,
2480
- K as emailVerificationRulesSchema,
2481
- X as emailVerifyActionSchema,
2482
- Se as endingSchema,
2483
- ao as fieldComponentSchema,
2484
- Y as flowActionStepSchema,
2485
- Q as flowInsertSchema,
2486
- dt as flowSchema,
2487
- ce as flowsFieldComponentSchema,
2488
- me as flowsFlowNodeSchema,
2489
- ue as flowsStepNodeSchema,
2515
+ fn as createPassthroughAdapter,
2516
+ En as createWriteOnlyAdapter,
2517
+ Re as customDomainInsertSchema,
2518
+ De as customDomainSchema,
2519
+ Nt as customDomainWithTenantIdSchema,
2520
+ dn as customTextEntrySchema,
2521
+ ct as customTextSchema,
2522
+ cn as dailyStatsSchema,
2523
+ Qt as emailProviderSchema,
2524
+ q as emailVerificationRulesSchema,
2525
+ V as emailVerifyActionSchema,
2526
+ Ie as endingSchema,
2527
+ lo as fieldComponentSchema,
2528
+ Z as flowActionStepSchema,
2529
+ J as flowInsertSchema,
2530
+ ht as flowSchema,
2531
+ de as flowsFieldComponentSchema,
2532
+ be as flowsFlowNodeSchema,
2533
+ he as flowsStepNodeSchema,
2490
2534
  g as fontDetailsSchema,
2491
- xo as fontsSchema,
2492
- Ot as formControlSchema,
2493
- co as formInsertSchema,
2535
+ Ho as fontsSchema,
2536
+ Rt as formControlSchema,
2537
+ uo as formInsertSchema,
2494
2538
  v as formNodeComponentDefinition,
2495
- po as formNodeSchema,
2496
- Tt as formSchema,
2497
- _e as genericComponentSchema,
2498
- be as genericNodeSchema,
2499
- un as getConnectionIdentifierConfig,
2500
- Lt as hookInsertSchema,
2501
- vt as hookSchema,
2539
+ go as formNodeSchema,
2540
+ jt as formSchema,
2541
+ ge as genericComponentSchema,
2542
+ Ee as genericNodeSchema,
2543
+ Sn as getConnectionIdentifierConfig,
2544
+ Ft as hookInsertSchema,
2545
+ xt as hookSchema,
2502
2546
  x as hookTemplateId,
2503
- Dt as hookTemplates,
2504
- Z as identitySchema,
2505
- Io as inviteInsertSchema,
2506
- kt as inviteSchema,
2507
- Ao as inviteeSchema,
2508
- So as inviterSchema,
2509
- Rt as isBlockComponent,
2510
- jt as isFieldComponent,
2511
- wt as isWidgetComponent,
2512
- Ut as jwksKeySchema,
2513
- yo as jwksSchema,
2514
- pe as legalComponentSchema,
2515
- jo as logInsertSchema,
2516
- Pt as logSchema,
2517
- Oo as loginSessionInsertSchema,
2518
- xt as loginSessionSchema,
2519
- Co as loginSessionStateSchema,
2520
- fe as nodeSchema,
2521
- Ft as openIDConfigurationSchema,
2522
- ot as organizationBrandingSchema,
2523
- tt as organizationEnabledConnectionSchema,
2524
- it as organizationInsertSchema,
2525
- tn as organizationSchema,
2526
- nt as organizationTokenQuotaSchema,
2527
- Po as pageBackgroundSchema,
2528
- _n as parseUserId,
2529
- Do as passwordInsertSchema,
2530
- Mt as passwordSchema,
2531
- J as profileDataSchema,
2532
- rt as promptScreenSchema,
2533
- zt as promptSettingSchema,
2534
- V as redirectActionSchema,
2535
- Go as refreshTokenInsertSchema,
2536
- qt as refreshTokenSchema,
2537
- Ko as resourceServerInsertSchema,
2538
- Qt as resourceServerListSchema,
2539
- Wo as resourceServerOptionsSchema,
2540
- zo as resourceServerSchema,
2541
- Bo as resourceServerScopeSchema,
2542
- se as richTextComponentSchema,
2543
- $o as roleInsertSchema,
2544
- on as roleListSchema,
2545
- Xo as rolePermissionInsertSchema,
2546
- Jt as rolePermissionListSchema,
2547
- qo as rolePermissionSchema,
2548
- et as roleSchema,
2549
- go as screenLinkSchema,
2550
- Lo as sessionInsertSchema,
2551
- Ht as sessionSchema,
2552
- Gt as signingKeySchema,
2553
- Yt as smsProviderSchema,
2554
- Vt as smsSendParamsSchema,
2555
- Ee as startSchema,
2556
- vo as tenantInsertSchema,
2557
- Bt as tenantSchema,
2558
- an as tenantSettingsSchema,
2559
- Ho as themeInsertSchema,
2560
- Kt as themeSchema,
2561
- Wt as tokenResponseSchema,
2562
- ut as totalsSchema,
2563
- Nt as uiScreenSchema,
2564
- ee as userInsertSchema,
2565
- at as userOrganizationInsertSchema,
2566
- nn as userOrganizationSchema,
2567
- Vo as userPermissionInsertSchema,
2568
- Zt as userPermissionListSchema,
2569
- Yo as userPermissionSchema,
2570
- $t as userPermissionWithDetailsListSchema,
2571
- Qo as userPermissionWithDetailsSchema,
2572
- ht as userResponseSchema,
2573
- Jo as userRoleInsertSchema,
2574
- en as userRoleListSchema,
2575
- Zo as userRoleSchema,
2576
- oe as userSchema,
2577
- Re as verificationMethodsSchema,
2578
- io as widgetComponentSchema,
2579
- Mo as widgetSchema
2547
+ Ut as hookTemplates,
2548
+ ee as identitySchema,
2549
+ Oo as inviteInsertSchema,
2550
+ Pt as inviteSchema,
2551
+ Co as inviteeSchema,
2552
+ yo as inviterSchema,
2553
+ Lt as isBlockComponent,
2554
+ kt as isFieldComponent,
2555
+ vt as isWidgetComponent,
2556
+ Mt as jwksKeySchema,
2557
+ To as jwksSchema,
2558
+ _e as legalComponentSchema,
2559
+ vo as logInsertSchema,
2560
+ Bt as logSchema,
2561
+ wo as loginSessionInsertSchema,
2562
+ Gt as loginSessionSchema,
2563
+ No as loginSessionStateSchema,
2564
+ mn as mfaEnrollmentInsertSchema,
2565
+ hn as mfaEnrollmentSchema,
2566
+ _t as mfaEnrollmentTypeSchema,
2567
+ Se as nodeSchema,
2568
+ Ht as openIDConfigurationSchema,
2569
+ it as organizationBrandingSchema,
2570
+ at as organizationEnabledConnectionSchema,
2571
+ rt as organizationInsertSchema,
2572
+ rn as organizationSchema,
2573
+ st as organizationTokenQuotaSchema,
2574
+ Go as pageBackgroundSchema,
2575
+ bn as parseUserId,
2576
+ ko as passwordInsertSchema,
2577
+ Wt as passwordSchema,
2578
+ $ as profileDataSchema,
2579
+ pt as promptScreenSchema,
2580
+ Yt as promptSettingSchema,
2581
+ Q as redirectActionSchema,
2582
+ Ko as refreshTokenInsertSchema,
2583
+ Zt as refreshTokenSchema,
2584
+ Xo as resourceServerInsertSchema,
2585
+ en as resourceServerListSchema,
2586
+ qo as resourceServerOptionsSchema,
2587
+ Vo as resourceServerSchema,
2588
+ zo as resourceServerScopeSchema,
2589
+ pe as richTextComponentSchema,
2590
+ tt as roleInsertSchema,
2591
+ sn as roleListSchema,
2592
+ Yo as rolePermissionInsertSchema,
2593
+ on as rolePermissionListSchema,
2594
+ Qo as rolePermissionSchema,
2595
+ nt as roleSchema,
2596
+ ho as screenLinkSchema,
2597
+ Uo as sessionInsertSchema,
2598
+ Kt as sessionSchema,
2599
+ zt as signingKeySchema,
2600
+ $t as smsProviderSchema,
2601
+ Jt as smsSendParamsSchema,
2602
+ Ae as startSchema,
2603
+ Fo as tenantInsertSchema,
2604
+ qt as tenantSchema,
2605
+ pn as tenantSettingsSchema,
2606
+ Wo as themeInsertSchema,
2607
+ Vt as themeSchema,
2608
+ Xt as tokenResponseSchema,
2609
+ ft as totalsSchema,
2610
+ Dt as uiScreenSchema,
2611
+ te as userInsertSchema,
2612
+ lt as userOrganizationInsertSchema,
2613
+ ln as userOrganizationSchema,
2614
+ Zo as userPermissionInsertSchema,
2615
+ tn as userPermissionListSchema,
2616
+ Jo as userPermissionSchema,
2617
+ nn as userPermissionWithDetailsListSchema,
2618
+ $o as userPermissionWithDetailsSchema,
2619
+ St as userResponseSchema,
2620
+ et as userRoleInsertSchema,
2621
+ an as userRoleListSchema,
2622
+ ot as userRoleSchema,
2623
+ ne as userSchema,
2624
+ je as verificationMethodsSchema,
2625
+ ro as widgetComponentSchema,
2626
+ Bo as widgetSchema
2580
2627
  };