@authhero/adapter-interfaces 0.135.0 → 0.136.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 p = e.object({
2
+ const s = e.object({
3
3
  created_at: e.string(),
4
4
  updated_at: e.string()
5
- }), at = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), st = e.enum([
5
+ }), pt = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), ct = e.enum([
6
6
  "CREATE_USER",
7
7
  "GET_USER",
8
8
  "UPDATE_USER",
9
9
  "SEND_REQUEST",
10
10
  "SEND_EMAIL"
11
- ]), rt = e.enum(["VERIFY_EMAIL"]), B = e.object({
11
+ ]), _t = e.enum(["VERIFY_EMAIL"]), K = 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
- }), W = e.object({
18
+ }), z = 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 p = e.object({
27
27
  user_id: e.string(),
28
28
  changes: e.record(e.string(), e.any())
29
29
  })
30
- }), K = e.object({
30
+ }), X = 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 p = e.object({
36
36
  mask_output: e.boolean().optional(),
37
37
  params: e.object({
38
38
  email: e.string(),
39
- rules: B.optional()
39
+ rules: K.optional()
40
40
  })
41
- }), z = e.enum(["change-email", "account", "custom"]), X = e.object({
41
+ }), q = e.enum(["change-email", "account", "custom"]), V = 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 p = e.object({
46
46
  allow_failure: e.boolean().optional(),
47
47
  mask_output: e.boolean().optional(),
48
48
  params: e.object({
49
- target: z.openapi({
49
+ target: q.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
- }), V = e.union([
57
- W,
58
- K,
59
- X
60
- ]), q = e.object({
56
+ }), Y = e.union([
57
+ z,
58
+ X,
59
+ V
60
+ ]), Q = 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(V).optional().default([]).openapi({
65
+ actions: e.array(Y).optional().default([]).openapi({
66
66
  description: "The list of actions to execute in sequence"
67
67
  })
68
- }), lt = q.extend({
69
- ...p.shape,
68
+ }), dt = Q.extend({
69
+ ...s.shape,
70
70
  id: e.string().openapi({
71
71
  description: "Unique identifier for the flow",
72
72
  example: "af_12tMpdJ3iek7svMyZkSh5M"
73
73
  })
74
- }), ct = e.object({
74
+ }), gt = 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 p = e.object({
87
87
  q: e.string().optional().openapi({
88
88
  description: "A lucene query string used to filter the results"
89
89
  })
90
- }), pt = e.object({
90
+ }), ut = e.object({
91
91
  start: e.number(),
92
92
  limit: e.number(),
93
93
  length: e.number(),
94
94
  total: e.number().optional()
95
- }), Y = e.object({
95
+ }), J = 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 p = 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()), Q = e.object({
104
+ }).catchall(e.any()), Z = e.object({
105
105
  connection: e.string(),
106
106
  user_id: e.string(),
107
107
  provider: e.string(),
@@ -109,8 +109,8 @@ const p = e.object({
109
109
  access_token: e.string().optional(),
110
110
  access_token_secret: e.string().optional(),
111
111
  refresh_token: e.string().optional(),
112
- profileData: Y.optional()
113
- }), J = e.object({
112
+ profileData: J.optional()
113
+ }), $ = e.object({
114
114
  formatted: e.string().optional(),
115
115
  // Full mailing address
116
116
  street_address: e.string().optional(),
@@ -155,8 +155,8 @@ const p = e.object({
155
155
  zoneinfo: e.string().optional(),
156
156
  // e.g., "Europe/Paris"
157
157
  // OIDC address claim (OIDC Core 5.1.1)
158
- address: J
159
- }), Z = N.extend({
158
+ address: $
159
+ }), ee = N.extend({
160
160
  email_verified: e.boolean().default(!1),
161
161
  verify_email: e.boolean().optional(),
162
162
  last_ip: e.string().optional(),
@@ -171,29 +171,29 @@ const p = e.object({
171
171
  hash: e.string(),
172
172
  algorithm: e.string()
173
173
  }).optional()
174
- }), $ = e.object({
175
- ...Z.omit({ password: !0 }).shape,
176
- ...p.shape,
174
+ }), oe = e.object({
175
+ ...ee.omit({ password: !0 }).shape,
176
+ ...s.shape,
177
177
  user_id: e.string(),
178
178
  provider: e.string(),
179
179
  is_social: e.boolean(),
180
180
  email: e.string().optional(),
181
181
  login_count: e.number().default(0),
182
- identities: e.array(Q).optional()
183
- }), _t = $, dt = N.extend({
182
+ identities: e.array(Z).optional()
183
+ }), mt = oe, ht = N.extend({
184
184
  login_count: e.number(),
185
185
  multifactor: e.array(e.string()).optional(),
186
186
  last_ip: e.string().optional(),
187
187
  last_login: e.string().optional(),
188
188
  user_id: e.string()
189
- }).catchall(e.any()), ee = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
190
- let oe = (o = 21) => {
189
+ }).catchall(e.any()), te = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
190
+ let ne = (o = 21) => {
191
191
  let n = "", i = crypto.getRandomValues(new Uint8Array(o |= 0));
192
192
  for (; o--; )
193
- n += ee[i[o] & 63];
193
+ n += te[i[o] & 63];
194
194
  return n;
195
195
  };
196
- const te = e.object({
196
+ const ie = e.object({
197
197
  client_id: e.string().openapi({
198
198
  description: "ID of this client."
199
199
  }),
@@ -206,7 +206,7 @@ const te = e.object({
206
206
  global: e.boolean().default(!1).openapi({
207
207
  description: "Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."
208
208
  }),
209
- client_secret: e.string().default(() => oe()).optional().openapi({
209
+ client_secret: e.string().default(() => ne()).optional().openapi({
210
210
  description: "Client secret (which you must not make public)."
211
211
  }),
212
212
  app_type: e.enum([
@@ -366,11 +366,11 @@ const te = e.object({
366
366
  description: "Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"
367
367
  }),
368
368
  token_quota: e.record(e.any()).default({}).optional()
369
- }), gt = e.object({
369
+ }), bt = e.object({
370
370
  created_at: e.string(),
371
371
  updated_at: e.string(),
372
- ...te.shape
373
- }), ne = e.object({
372
+ ...ie.shape
373
+ }), ae = e.object({
374
374
  client_id: e.string().min(1).openapi({
375
375
  description: "ID of the client."
376
376
  }),
@@ -395,23 +395,23 @@ const te = e.object({
395
395
  authorization_details_types: e.array(e.string()).optional().openapi({
396
396
  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."
397
397
  })
398
- }), ie = e.object({
398
+ }), re = e.object({
399
399
  id: e.string().openapi({
400
400
  description: "ID of the client grant."
401
401
  }),
402
- ...ne.shape,
402
+ ...ae.shape,
403
403
  created_at: e.string().optional(),
404
404
  updated_at: e.string().optional()
405
- }), ut = e.array(ie), u = e.object({
405
+ }), ft = e.array(re), u = e.object({
406
406
  x: e.number(),
407
407
  y: e.number()
408
408
  });
409
- 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 || {});
410
- const I = e.object({
409
+ 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 || {}), j = /* @__PURE__ */ ((o) => (o.BLOCK = "BLOCK", o.FIELD = "FIELD", o))(j || {});
410
+ const y = e.object({
411
411
  id: e.string(),
412
- category: e.nativeEnum(w),
412
+ category: e.nativeEnum(j),
413
413
  type: e.nativeEnum(R)
414
- }), ae = I.extend({
414
+ }), se = y.extend({
415
415
  category: e.literal(
416
416
  "BLOCK"
417
417
  /* BLOCK */
@@ -423,7 +423,7 @@ const I = e.object({
423
423
  config: e.object({
424
424
  content: e.string()
425
425
  }).passthrough()
426
- }), se = I.extend({
426
+ }), le = y.extend({
427
427
  category: e.literal(
428
428
  "BLOCK"
429
429
  /* BLOCK */
@@ -445,7 +445,7 @@ const I = e.object({
445
445
  config: e.object({
446
446
  text: e.string()
447
447
  }).passthrough()
448
- }), re = I.extend({
448
+ }), pe = y.extend({
449
449
  category: e.literal(
450
450
  "FIELD"
451
451
  /* FIELD */
@@ -459,7 +459,7 @@ const I = e.object({
459
459
  config: e.object({
460
460
  text: e.string()
461
461
  }).passthrough()
462
- }), le = I.extend({
462
+ }), ce = y.extend({
463
463
  category: e.literal(
464
464
  "FIELD"
465
465
  /* FIELD */
@@ -512,19 +512,19 @@ const I = e.object({
512
512
  label: e.string().optional(),
513
513
  placeholder: e.string().optional()
514
514
  }).passthrough()
515
- }), ce = e.object({
515
+ }), _e = e.object({
516
516
  id: e.string(),
517
517
  category: e.string(),
518
518
  type: e.string()
519
- }).passthrough(), pe = e.union([
520
- ae,
519
+ }).passthrough(), de = e.union([
521
520
  se,
522
- re,
523
521
  le,
524
- ce
522
+ pe,
523
+ ce,
524
+ _e
525
525
  ]);
526
- var _e = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(_e || {});
527
- const de = e.object({
526
+ var ge = /* @__PURE__ */ ((o) => (o.STEP = "STEP", o.FLOW = "FLOW", o.CONDITION = "CONDITION", o.ACTION = "ACTION", o))(ge || {});
527
+ const ue = e.object({
528
528
  id: e.string(),
529
529
  type: e.literal(
530
530
  "STEP"
@@ -533,10 +533,10 @@ const de = e.object({
533
533
  coordinates: u,
534
534
  alias: e.string().optional(),
535
535
  config: e.object({
536
- components: e.array(pe),
536
+ components: e.array(de),
537
537
  next_node: e.string()
538
538
  }).passthrough()
539
- }), ge = e.object({
539
+ }), me = e.object({
540
540
  id: e.string(),
541
541
  type: e.literal(
542
542
  "FLOW"
@@ -548,7 +548,7 @@ const de = e.object({
548
548
  flow_id: e.string(),
549
549
  next_node: e.string()
550
550
  })
551
- }), ue = e.object({
551
+ }), he = e.object({
552
552
  id: e.string(),
553
553
  type: e.literal(
554
554
  "ACTION"
@@ -570,47 +570,47 @@ const de = e.object({
570
570
  description: "The next node to navigate to after action (for non-redirect actions)"
571
571
  })
572
572
  }).passthrough()
573
- }), me = e.object({
573
+ }), be = e.object({
574
574
  id: e.string(),
575
575
  type: e.string(),
576
576
  coordinates: u
577
- }).passthrough(), he = e.union([
578
- de,
579
- ge,
577
+ }).passthrough(), fe = e.union([
580
578
  ue,
581
- me
582
- ]), be = e.object({
579
+ me,
580
+ he,
581
+ be
582
+ ]), Ee = e.object({
583
583
  next_node: e.string(),
584
584
  coordinates: u
585
- }).passthrough(), fe = e.object({
585
+ }).passthrough(), Se = e.object({
586
586
  resume_flow: e.boolean().optional(),
587
587
  coordinates: u
588
- }).passthrough(), Ee = e.object({
588
+ }).passthrough(), Ae = e.object({
589
589
  id: e.string(),
590
590
  name: e.string(),
591
591
  languages: e.object({
592
592
  primary: e.string()
593
593
  }).passthrough(),
594
- nodes: e.array(he),
595
- start: be,
596
- ending: fe,
594
+ nodes: e.array(fe),
595
+ start: Ee,
596
+ ending: Se,
597
597
  created_at: e.string(),
598
598
  updated_at: e.string(),
599
599
  links: e.object({
600
600
  sdkSrc: e.string().optional(),
601
601
  sdk_src: e.string().optional()
602
602
  }).passthrough()
603
- }).passthrough(), mt = Ee.omit({
603
+ }).passthrough(), Et = Ae.omit({
604
604
  id: !0,
605
605
  created_at: !0,
606
606
  updated_at: !0
607
607
  });
608
- var D = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "token id_token", o.CODE = "code", o))(D || {}), j = /* @__PURE__ */ ((o) => (o.QUERY = "query", o.FRAGMENT = "fragment", o.FORM_POST = "form_post", o.WEB_MESSAGE = "web_message", o.SAML_POST = "saml_post", o))(j || {}), L = /* @__PURE__ */ ((o) => (o.S256 = "S256", o.Plain = "plain", o))(L || {});
609
- const Se = e.object({
608
+ var w = /* @__PURE__ */ ((o) => (o.TOKEN = "token", o.ID_TOKEN = "id_token", o.TOKEN_ID_TOKEN = "token id_token", o.CODE = "code", o))(w || {}), 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 || {});
609
+ const Ie = e.object({
610
610
  client_id: e.string(),
611
611
  act_as: e.string().optional(),
612
- response_type: e.nativeEnum(D).optional(),
613
- response_mode: e.nativeEnum(j).optional(),
612
+ response_type: e.nativeEnum(w).optional(),
613
+ response_mode: e.nativeEnum(D).optional(),
614
614
  redirect_uri: e.string().optional(),
615
615
  audience: e.string().optional(),
616
616
  organization: e.string().optional(),
@@ -630,7 +630,7 @@ const Se = e.object({
630
630
  acr_values: e.string().optional(),
631
631
  // The following fields are not available in Auth0
632
632
  vendor_id: e.string().optional()
633
- }), ht = e.object({
633
+ }), St = e.object({
634
634
  colors: e.object({
635
635
  primary: e.string(),
636
636
  page_background: e.object({
@@ -646,14 +646,14 @@ const Se = e.object({
646
646
  font: e.object({
647
647
  url: e.string()
648
648
  }).optional()
649
- }), Ae = e.enum([
649
+ }), ye = e.enum([
650
650
  "password_reset",
651
651
  "email_verification",
652
652
  "otp",
653
653
  "authorization_code",
654
654
  "oauth2_state",
655
655
  "ticket"
656
- ]), Ie = e.object({
656
+ ]), Ce = e.object({
657
657
  code_id: e.string().openapi({
658
658
  description: "The code that will be used in for instance an email verification flow"
659
659
  }),
@@ -663,7 +663,7 @@ const Se = e.object({
663
663
  connection_id: e.string().optional().openapi({
664
664
  description: "The connection that the code is connected to"
665
665
  }),
666
- code_type: Ae,
666
+ code_type: ye,
667
667
  code_verifier: e.string().optional().openapi({
668
668
  description: "The code verifier used in PKCE in outbound flows"
669
669
  }),
@@ -685,10 +685,10 @@ const Se = e.object({
685
685
  expires_at: e.string(),
686
686
  used_at: e.string().optional(),
687
687
  user_id: e.string().optional()
688
- }), bt = e.object({
689
- ...Ie.shape,
688
+ }), At = e.object({
689
+ ...Ce.shape,
690
690
  created_at: e.string()
691
- }), Ce = e.object({
691
+ }), Te = e.object({
692
692
  kid: e.string().optional(),
693
693
  team_id: e.string().optional(),
694
694
  realms: e.string().optional(),
@@ -744,7 +744,10 @@ const Se = e.object({
744
744
  }).optional(),
745
745
  validation: e.object({
746
746
  allowed: e.boolean().optional()
747
- }).optional()
747
+ }).optional(),
748
+ unique: e.boolean().optional(),
749
+ profile_required: e.boolean().optional(),
750
+ verification_method: e.enum(["link", "code"]).optional()
748
751
  }).optional(),
749
752
  username: e.object({
750
753
  identifier: e.object({
@@ -760,9 +763,33 @@ const Se = e.object({
760
763
  email: e.boolean().optional(),
761
764
  phone_number: e.boolean().optional()
762
765
  }).optional()
766
+ }).optional(),
767
+ profile_required: e.boolean().optional()
768
+ }).optional(),
769
+ phone_number: e.object({
770
+ identifier: e.object({
771
+ active: e.boolean().optional()
772
+ }).optional(),
773
+ signup: e.object({
774
+ status: e.enum(["required", "optional", "disabled"]).optional()
763
775
  }).optional()
764
776
  }).optional()
765
777
  }).optional(),
778
+ // Authentication methods for Username-Password-Authentication connections
779
+ authentication_methods: e.object({
780
+ password: e.object({
781
+ enabled: e.boolean().optional()
782
+ }).optional(),
783
+ passkey: e.object({
784
+ enabled: e.boolean().optional()
785
+ }).optional()
786
+ }).optional(),
787
+ // Passkey options for Username-Password-Authentication connections
788
+ passkey_options: e.object({
789
+ challenge_ui: e.enum(["both", "autofill", "button"]).optional(),
790
+ local_enrollment_enabled: e.boolean().optional(),
791
+ progressive_enrollment_enabled: e.boolean().optional()
792
+ }).optional(),
766
793
  // Legacy username options (deprecated, use attributes instead)
767
794
  requires_username: e.boolean().optional(),
768
795
  validation: e.object({
@@ -771,12 +798,12 @@ const Se = e.object({
771
798
  max: e.number().optional()
772
799
  }).optional()
773
800
  }).optional()
774
- }), ye = e.object({
801
+ }), Oe = e.object({
775
802
  id: e.string().optional(),
776
803
  name: e.string(),
777
804
  display_name: e.string().optional(),
778
805
  strategy: e.string(),
779
- options: Ce.default({}),
806
+ options: Te.default({}),
780
807
  enabled_clients: e.array(e.string()).default([]).optional(),
781
808
  response_type: e.custom().optional(),
782
809
  response_mode: e.custom().optional(),
@@ -784,11 +811,11 @@ const Se = e.object({
784
811
  show_as_button: e.boolean().optional(),
785
812
  metadata: e.record(e.any()).optional(),
786
813
  is_system: e.boolean().optional()
787
- }), ft = e.object({
814
+ }), It = e.object({
788
815
  id: e.string(),
789
816
  created_at: e.string().transform((o) => o === null ? "" : o),
790
817
  updated_at: e.string().transform((o) => o === null ? "" : o)
791
- }).extend(ye.shape), Oe = e.object({
818
+ }).extend(Oe.shape), Ne = e.object({
792
819
  domain: e.string(),
793
820
  custom_domain_id: e.string().optional(),
794
821
  type: e.enum(["auth0_managed_certs", "self_managed_certs"]),
@@ -802,37 +829,37 @@ const Se = e.object({
802
829
  "null"
803
830
  ]).optional(),
804
831
  domain_metadata: e.record(e.string().max(255)).optional()
805
- }), Te = e.object({
832
+ }), Re = e.object({
806
833
  name: e.literal("txt"),
807
834
  record: e.string(),
808
835
  domain: e.string()
809
- }), Ne = e.object({
810
- ...Oe.shape,
836
+ }), je = e.object({
837
+ ...Ne.shape,
811
838
  custom_domain_id: e.string(),
812
839
  primary: e.boolean(),
813
840
  status: e.enum(["disabled", "pending", "pending_verification", "ready"]),
814
841
  origin_domain_name: e.string().optional(),
815
842
  verification: e.object({
816
- methods: e.array(Te)
843
+ methods: e.array(Re)
817
844
  }).optional(),
818
845
  tls_policy: e.string().optional()
819
- }), Et = Ne.extend({
846
+ }), yt = je.extend({
820
847
  tenant_id: e.string()
821
- }), y = e.object({
848
+ }), C = e.object({
822
849
  id: e.string(),
823
850
  order: e.number().optional(),
824
851
  visible: e.boolean().optional().default(!0)
825
- }), r = y.extend({
852
+ }), l = C.extend({
826
853
  category: e.literal("BLOCK").optional()
827
- }), Re = r.extend({
854
+ }), we = l.extend({
828
855
  type: e.literal("DIVIDER"),
829
856
  config: e.object({}).optional()
830
- }), we = r.extend({
857
+ }), De = l.extend({
831
858
  type: e.literal("HTML"),
832
859
  config: e.object({
833
860
  content: e.string().optional()
834
861
  }).optional()
835
- }), De = r.extend({
862
+ }), Le = l.extend({
836
863
  type: e.literal("IMAGE"),
837
864
  config: e.object({
838
865
  src: e.string().optional(),
@@ -840,66 +867,66 @@ const Se = e.object({
840
867
  width: e.number().optional(),
841
868
  height: e.number().optional()
842
869
  }).optional()
843
- }), je = r.extend({
870
+ }), ve = l.extend({
844
871
  type: e.literal("JUMP_BUTTON"),
845
872
  config: e.object({
846
873
  text: e.string().optional(),
847
874
  target_step: e.string().optional()
848
875
  })
849
- }), Le = r.extend({
876
+ }), ke = l.extend({
850
877
  type: e.literal("RESEND_BUTTON"),
851
878
  config: e.object({
852
879
  text: e.string().optional(),
853
880
  resend_action: e.string().optional()
854
881
  })
855
- }), ve = r.extend({
882
+ }), Ue = l.extend({
856
883
  type: e.literal("NEXT_BUTTON"),
857
884
  config: e.object({
858
885
  text: e.string().optional()
859
886
  })
860
- }), ke = r.extend({
887
+ }), Fe = l.extend({
861
888
  type: e.literal("PREVIOUS_BUTTON"),
862
889
  config: e.object({
863
890
  text: e.string().optional()
864
891
  })
865
- }), Ue = r.extend({
892
+ }), xe = l.extend({
866
893
  type: e.literal("RICH_TEXT"),
867
894
  config: e.object({
868
895
  content: e.string().optional()
869
896
  }).optional()
870
- }), O = y.extend({
897
+ }), T = C.extend({
871
898
  category: e.literal("WIDGET").optional(),
872
899
  label: e.string().min(1).optional(),
873
900
  hint: e.string().min(1).max(500).optional(),
874
901
  required: e.boolean().optional(),
875
902
  sensitive: e.boolean().optional()
876
- }), Fe = O.extend({
903
+ }), Pe = T.extend({
877
904
  type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
878
905
  config: e.object({
879
906
  credential_type: e.string().optional()
880
907
  })
881
- }), xe = O.extend({
908
+ }), Me = T.extend({
882
909
  type: e.literal("GMAPS_ADDRESS"),
883
910
  config: e.object({
884
911
  api_key: e.string().optional()
885
912
  })
886
- }), Pe = O.extend({
913
+ }), He = T.extend({
887
914
  type: e.literal("RECAPTCHA"),
888
915
  config: e.object({
889
916
  site_key: e.string().optional()
890
917
  })
891
- }), t = y.extend({
918
+ }), t = C.extend({
892
919
  category: e.literal("FIELD").optional(),
893
920
  label: e.string().min(1).optional(),
894
921
  hint: e.string().min(1).max(500).optional(),
895
922
  required: e.boolean().optional(),
896
923
  sensitive: e.boolean().optional()
897
- }), Me = t.extend({
924
+ }), Ge = t.extend({
898
925
  type: e.literal("BOOLEAN"),
899
926
  config: e.object({
900
927
  default_value: e.boolean().optional()
901
928
  }).optional()
902
- }), He = t.extend({
929
+ }), Be = t.extend({
903
930
  type: e.literal("CARDS"),
904
931
  config: e.object({
905
932
  options: e.array(
@@ -912,7 +939,7 @@ const Se = e.object({
912
939
  ).optional(),
913
940
  multi_select: e.boolean().optional()
914
941
  }).optional()
915
- }), Ge = t.extend({
942
+ }), We = t.extend({
916
943
  type: e.literal("CHOICE"),
917
944
  config: e.object({
918
945
  options: e.array(
@@ -925,7 +952,7 @@ const Se = e.object({
925
952
  multiple: e.boolean().optional(),
926
953
  default_value: e.union([e.string(), e.array(e.string())]).optional()
927
954
  }).optional()
928
- }), Be = t.extend({
955
+ }), Ke = t.extend({
929
956
  type: e.literal("CUSTOM"),
930
957
  config: e.object({
931
958
  component: e.string().optional(),
@@ -933,7 +960,7 @@ const Se = e.object({
933
960
  schema: e.record(e.any()).optional(),
934
961
  code: e.string().optional()
935
962
  })
936
- }), We = t.extend({
963
+ }), ze = t.extend({
937
964
  type: e.literal("DATE"),
938
965
  config: e.object({
939
966
  format: e.string().optional(),
@@ -941,7 +968,7 @@ const Se = e.object({
941
968
  max: e.string().optional(),
942
969
  default_value: e.string().optional()
943
970
  }).optional()
944
- }), Ke = t.extend({
971
+ }), Xe = t.extend({
945
972
  type: e.literal("DROPDOWN"),
946
973
  config: e.object({
947
974
  options: e.array(
@@ -955,26 +982,26 @@ const Se = e.object({
955
982
  multiple: e.boolean().optional(),
956
983
  default_value: e.union([e.string(), e.array(e.string())]).optional()
957
984
  }).optional()
958
- }), ze = t.extend({
985
+ }), qe = t.extend({
959
986
  type: e.literal("EMAIL"),
960
987
  config: e.object({
961
988
  placeholder: e.string().optional(),
962
989
  default_value: e.string().optional()
963
990
  }).optional()
964
- }), Xe = t.extend({
991
+ }), Ve = t.extend({
965
992
  type: e.literal("FILE"),
966
993
  config: e.object({
967
994
  accept: e.string().optional(),
968
995
  max_size: e.number().optional(),
969
996
  multiple: e.boolean().optional()
970
997
  }).optional()
971
- }), Ve = t.extend({
998
+ }), Ye = t.extend({
972
999
  type: e.literal("LEGAL"),
973
1000
  config: e.object({
974
1001
  text: e.string(),
975
1002
  html: e.boolean().optional()
976
1003
  }).optional()
977
- }), qe = t.extend({
1004
+ }), Qe = t.extend({
978
1005
  type: e.literal("NUMBER"),
979
1006
  config: e.object({
980
1007
  placeholder: e.string().optional(),
@@ -983,7 +1010,7 @@ const Se = e.object({
983
1010
  step: e.number().optional(),
984
1011
  default_value: e.string().optional()
985
1012
  }).optional()
986
- }), Ye = t.extend({
1013
+ }), Je = t.extend({
987
1014
  type: e.literal("PASSWORD"),
988
1015
  config: e.object({
989
1016
  placeholder: e.string().optional(),
@@ -992,13 +1019,13 @@ const Se = e.object({
992
1019
  forgot_password_link: e.string().optional(),
993
1020
  default_value: e.string().optional()
994
1021
  }).optional()
995
- }), Qe = t.extend({
1022
+ }), Ze = t.extend({
996
1023
  type: e.literal("PAYMENT"),
997
1024
  config: e.object({
998
1025
  provider: e.string().optional(),
999
1026
  currency: e.string().optional()
1000
1027
  }).optional()
1001
- }), Je = t.extend({
1028
+ }), $e = t.extend({
1002
1029
  type: e.literal("SOCIAL"),
1003
1030
  config: e.object({
1004
1031
  providers: e.array(e.string()).optional(),
@@ -1012,14 +1039,14 @@ const Se = e.object({
1012
1039
  })
1013
1040
  ).optional()
1014
1041
  }).optional()
1015
- }), Ze = t.extend({
1042
+ }), eo = t.extend({
1016
1043
  type: e.literal("TEL"),
1017
1044
  config: e.object({
1018
1045
  placeholder: e.string().optional(),
1019
1046
  default_country: e.string().optional(),
1020
1047
  default_value: e.string().optional()
1021
1048
  }).optional()
1022
- }), $e = t.extend({
1049
+ }), oo = t.extend({
1023
1050
  type: e.literal("TEXT"),
1024
1051
  config: e.object({
1025
1052
  placeholder: e.string().optional(),
@@ -1027,47 +1054,47 @@ const Se = e.object({
1027
1054
  max_length: e.number().optional(),
1028
1055
  default_value: e.string().optional()
1029
1056
  }).optional()
1030
- }), eo = t.extend({
1057
+ }), to = t.extend({
1031
1058
  type: e.literal("URL"),
1032
1059
  config: e.object({
1033
1060
  placeholder: e.string().optional(),
1034
1061
  default_value: e.string().optional()
1035
1062
  }).optional()
1036
- }), oo = e.discriminatedUnion("type", [
1037
- Re,
1063
+ }), no = e.discriminatedUnion("type", [
1038
1064
  we,
1039
1065
  De,
1040
- je,
1041
1066
  Le,
1042
1067
  ve,
1043
1068
  ke,
1044
- Ue
1045
- ]), to = e.discriminatedUnion("type", [
1069
+ Ue,
1046
1070
  Fe,
1047
- xe,
1048
- Pe
1049
- ]), no = e.discriminatedUnion("type", [
1071
+ xe
1072
+ ]), io = e.discriminatedUnion("type", [
1073
+ Pe,
1050
1074
  Me,
1051
- He,
1075
+ He
1076
+ ]), ao = e.discriminatedUnion("type", [
1052
1077
  Ge,
1053
1078
  Be,
1054
1079
  We,
1055
1080
  Ke,
1056
1081
  ze,
1057
1082
  Xe,
1058
- Ve,
1059
1083
  qe,
1084
+ Ve,
1060
1085
  Ye,
1061
1086
  Qe,
1062
1087
  Je,
1063
1088
  Ze,
1064
1089
  $e,
1065
- eo
1066
- ]), v = e.union([
1090
+ eo,
1067
1091
  oo,
1068
- to,
1069
- no
1070
- ]), St = /* @__PURE__ */ new Set([
1092
+ to
1093
+ ]), v = e.union([
1094
+ no,
1095
+ io,
1096
+ ao
1097
+ ]), Ct = /* @__PURE__ */ new Set([
1071
1098
  "BOOLEAN",
1072
1099
  "CARDS",
1073
1100
  "CHOICE",
@@ -1080,7 +1107,7 @@ const Se = e.object({
1080
1107
  "TEL",
1081
1108
  "TEXT",
1082
1109
  "URL"
1083
- ]), At = e.object({
1110
+ ]), Tt = e.object({
1084
1111
  id: e.string(),
1085
1112
  type: e.literal("submit"),
1086
1113
  label: e.string(),
@@ -1089,22 +1116,22 @@ const Se = e.object({
1089
1116
  order: e.number().optional(),
1090
1117
  visible: e.boolean().optional().default(!0),
1091
1118
  customizations: e.record(e.string(), e.any()).optional()
1092
- }), b = e.object({
1119
+ }), f = e.object({
1093
1120
  x: e.number(),
1094
1121
  y: e.number()
1095
- }), io = e.object({
1122
+ }), ro = e.object({
1096
1123
  id: e.string(),
1097
1124
  type: e.literal("FLOW"),
1098
- coordinates: b,
1125
+ coordinates: f,
1099
1126
  alias: e.string().min(1).max(150).optional(),
1100
1127
  config: e.object({
1101
1128
  flow_id: e.string().max(30),
1102
1129
  next_node: e.string().optional()
1103
1130
  })
1104
- }), ao = e.object({
1131
+ }), so = e.object({
1105
1132
  id: e.string(),
1106
1133
  type: e.literal("ROUTER"),
1107
- coordinates: b,
1134
+ coordinates: f,
1108
1135
  alias: e.string().min(1).max(150),
1109
1136
  config: e.object({
1110
1137
  rules: e.array(
@@ -1117,20 +1144,20 @@ const Se = e.object({
1117
1144
  ),
1118
1145
  fallback: e.string()
1119
1146
  })
1120
- }), so = e.object({
1147
+ }), lo = e.object({
1121
1148
  id: e.string(),
1122
1149
  type: e.literal("STEP"),
1123
- coordinates: b,
1150
+ coordinates: f,
1124
1151
  alias: e.string().min(1).max(150).optional(),
1125
1152
  config: e.object({
1126
1153
  components: e.array(v),
1127
1154
  next_node: e.string().optional()
1128
1155
  })
1129
- }), ro = e.discriminatedUnion("type", [
1130
- io,
1131
- ao,
1132
- so
1133
- ]), lo = e.object({
1156
+ }), po = e.discriminatedUnion("type", [
1157
+ ro,
1158
+ so,
1159
+ lo
1160
+ ]), co = e.object({
1134
1161
  name: e.string().openapi({
1135
1162
  description: "The name of the form"
1136
1163
  }),
@@ -1143,11 +1170,11 @@ const Se = e.object({
1143
1170
  default: e.string().optional()
1144
1171
  }).optional(),
1145
1172
  translations: e.record(e.string(), e.any()).optional(),
1146
- nodes: e.array(ro).optional(),
1173
+ nodes: e.array(po).optional(),
1147
1174
  start: e.object({
1148
1175
  hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
1149
1176
  next_node: e.string().optional(),
1150
- coordinates: b.optional()
1177
+ coordinates: f.optional()
1151
1178
  }).optional(),
1152
1179
  ending: e.object({
1153
1180
  redirection: e.object({
@@ -1155,7 +1182,7 @@ const Se = e.object({
1155
1182
  target: e.string().optional()
1156
1183
  }).optional(),
1157
1184
  after_submit: e.object({ flow_id: e.string().optional() }).optional(),
1158
- coordinates: b.optional(),
1185
+ coordinates: f.optional(),
1159
1186
  resume_flow: e.boolean().optional()
1160
1187
  }).optional(),
1161
1188
  style: e.object({ css: e.string().optional() }).optional(),
@@ -1165,20 +1192,20 @@ const Se = e.object({
1165
1192
  }).optional()
1166
1193
  }).openapi({
1167
1194
  description: "Schema for flow-based forms (matches Auth0 Forms structure)"
1168
- }), It = e.object({
1169
- ...p.shape,
1170
- ...lo.shape,
1195
+ }), Ot = e.object({
1196
+ ...s.shape,
1197
+ ...co.shape,
1171
1198
  id: e.string()
1172
- }), co = e.object({
1199
+ }), _o = e.object({
1173
1200
  id: e.number().optional(),
1174
1201
  text: e.string(),
1175
1202
  type: e.enum(["info", "error", "success", "warning"])
1176
- }), po = e.object({
1203
+ }), go = e.object({
1177
1204
  id: e.string().optional(),
1178
1205
  text: e.string(),
1179
1206
  href: e.string(),
1180
1207
  linkText: e.string().optional()
1181
- }), Ct = e.object({
1208
+ }), Nt = e.object({
1182
1209
  /** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
1183
1210
  name: e.string().optional(),
1184
1211
  action: e.string(),
@@ -1186,18 +1213,18 @@ const Se = e.object({
1186
1213
  title: e.string().optional(),
1187
1214
  description: e.string().optional(),
1188
1215
  components: e.array(v),
1189
- messages: e.array(co).optional(),
1190
- links: e.array(po).optional(),
1216
+ messages: e.array(_o).optional(),
1217
+ links: e.array(go).optional(),
1191
1218
  /** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
1192
1219
  footer: e.string().optional()
1193
1220
  });
1194
- function yt(o) {
1221
+ function Rt(o) {
1195
1222
  return o.category === "BLOCK";
1196
1223
  }
1197
- function Ot(o) {
1224
+ function jt(o) {
1198
1225
  return o.category === "WIDGET";
1199
1226
  }
1200
- function Tt(o) {
1227
+ function wt(o) {
1201
1228
  return o.category === "FIELD";
1202
1229
  }
1203
1230
  const k = e.enum([
@@ -1215,42 +1242,74 @@ const k = e.enum([
1215
1242
  "validate-registration-username",
1216
1243
  "pre-user-deletion",
1217
1244
  "post-user-deletion"
1218
- ]), C = {
1245
+ ]), F = e.enum([
1246
+ "post-user-login",
1247
+ "credentials-exchange"
1248
+ ]), x = e.enum([
1249
+ "ensure-username",
1250
+ "set-preferred-username"
1251
+ ]), Dt = {
1252
+ "ensure-username": {
1253
+ name: "Ensure Username",
1254
+ description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
1255
+ trigger_id: "post-user-login"
1256
+ },
1257
+ "set-preferred-username": {
1258
+ name: "Set Preferred Username",
1259
+ description: "Sets the preferred_username claim on tokens based on the username from the primary or linked user.",
1260
+ trigger_id: "credentials-exchange"
1261
+ }
1262
+ }, m = {
1219
1263
  enabled: e.boolean().default(!1),
1220
1264
  synchronous: e.boolean().default(!1),
1221
1265
  priority: e.number().optional(),
1222
1266
  hook_id: e.string().optional()
1223
- }, _o = e.object({
1224
- ...C,
1267
+ }, uo = e.object({
1268
+ ...m,
1225
1269
  trigger_id: k,
1226
1270
  url: e.string()
1227
- }), go = e.object({
1228
- ...C,
1271
+ }), mo = e.object({
1272
+ ...m,
1229
1273
  trigger_id: U,
1230
1274
  form_id: e.string()
1231
- }), Nt = e.union([
1232
- _o,
1233
- go
1234
- ]), uo = e.object({
1235
- ...C,
1275
+ }), ho = e.object({
1276
+ ...m,
1277
+ trigger_id: F,
1278
+ template_id: x
1279
+ }), Lt = e.union([
1280
+ uo,
1281
+ mo,
1282
+ ho
1283
+ ]), bo = e.object({
1284
+ ...m,
1236
1285
  trigger_id: k,
1237
- ...p.shape,
1286
+ ...s.shape,
1238
1287
  hook_id: e.string(),
1239
1288
  url: e.string()
1240
- }), mo = e.object({
1241
- ...C,
1289
+ }), fo = e.object({
1290
+ ...m,
1242
1291
  trigger_id: U,
1243
- ...p.shape,
1292
+ ...s.shape,
1244
1293
  hook_id: e.string(),
1245
1294
  form_id: e.string()
1246
- }), Rt = e.union([uo, mo]), ho = e.object({
1295
+ }), Eo = e.object({
1296
+ ...m,
1297
+ trigger_id: F,
1298
+ ...s.shape,
1299
+ hook_id: e.string(),
1300
+ template_id: x
1301
+ }), vt = e.union([
1302
+ bo,
1303
+ fo,
1304
+ Eo
1305
+ ]), So = e.object({
1247
1306
  name: e.string().optional()
1248
- }), bo = e.object({
1307
+ }), Ao = e.object({
1249
1308
  email: e.string().optional()
1250
- }), fo = e.object({
1309
+ }), Io = e.object({
1251
1310
  organization_id: e.string().max(50),
1252
- inviter: ho,
1253
- invitee: bo,
1311
+ inviter: So,
1312
+ invitee: Ao,
1254
1313
  invitation_url: e.string().url(),
1255
1314
  client_id: e.string(),
1256
1315
  connection_id: e.string().optional(),
@@ -1259,13 +1318,13 @@ const k = e.enum([
1259
1318
  ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
1260
1319
  roles: e.array(e.string()).default([]).optional(),
1261
1320
  send_invitation_email: e.boolean().default(!0).optional()
1262
- }), wt = e.object({
1321
+ }), kt = e.object({
1263
1322
  id: e.string(),
1264
1323
  organization_id: e.string().max(50),
1265
1324
  created_at: e.string().datetime(),
1266
1325
  expires_at: e.string().datetime(),
1267
1326
  ticket_id: e.string().optional()
1268
- }).extend(fo.shape), Eo = e.object({
1327
+ }).extend(Io.shape), yo = e.object({
1269
1328
  alg: e.enum([
1270
1329
  "RS256",
1271
1330
  "RS384",
@@ -1284,9 +1343,9 @@ const k = e.enum([
1284
1343
  x5t: e.string().optional(),
1285
1344
  x5c: e.array(e.string()).optional(),
1286
1345
  use: e.enum(["sig", "enc"]).optional()
1287
- }), Dt = e.object({
1288
- keys: e.array(Eo)
1289
- }), jt = e.object({
1346
+ }), Ut = e.object({
1347
+ keys: e.array(yo)
1348
+ }), Ft = e.object({
1290
1349
  issuer: e.string(),
1291
1350
  authorization_endpoint: e.string(),
1292
1351
  token_endpoint: e.string(),
@@ -1308,18 +1367,18 @@ const k = e.enum([
1308
1367
  request_parameter_supported: e.boolean(),
1309
1368
  token_endpoint_auth_signing_alg_values_supported: e.array(e.string())
1310
1369
  });
1311
- var F = /* @__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))(F || {});
1312
- const So = e.nativeEnum(F), Ao = e.object({
1370
+ 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 || {});
1371
+ const Co = e.nativeEnum(P), To = e.object({
1313
1372
  csrf_token: e.string(),
1314
1373
  auth0Client: e.string().optional(),
1315
- authParams: Se,
1374
+ authParams: Ie,
1316
1375
  expires_at: e.string(),
1317
1376
  deleted_at: e.string().optional(),
1318
1377
  ip: e.string().optional(),
1319
1378
  useragent: e.string().optional(),
1320
1379
  session_id: e.string().optional(),
1321
1380
  authorization_url: e.string().optional(),
1322
- state: So.optional().default(
1381
+ state: Co.optional().default(
1323
1382
  "pending"
1324
1383
  /* PENDING */
1325
1384
  ),
@@ -1330,14 +1389,14 @@ const So = e.nativeEnum(F), Ao = e.object({
1330
1389
  // Set once user is authenticated
1331
1390
  }).openapi({
1332
1391
  description: "This represents a login sesion"
1333
- }), Lt = e.object({
1334
- ...Ao.shape,
1392
+ }), xt = e.object({
1393
+ ...To.shape,
1335
1394
  id: e.string().openapi({
1336
1395
  description: "This is is used as the state in the universal login"
1337
1396
  }),
1338
1397
  created_at: e.string(),
1339
1398
  updated_at: e.string()
1340
- }), Io = {
1399
+ }), Oo = {
1341
1400
  // Network & System
1342
1401
  ACLS_SUMMARY: "acls_summary",
1343
1402
  ACTIONS_EXECUTION_FAILED: "actions_execution_failed",
@@ -1508,24 +1567,24 @@ const So = e.nativeEnum(F), Ao = e.object({
1508
1567
  WARNING_DURING_LOGIN: "w",
1509
1568
  WARNING_SENDING_NOTIFICATION: "wn",
1510
1569
  WARNING_USER_MANAGEMENT: "wum"
1511
- }, Co = e.string().refine(
1512
- (o) => Object.values(Io).includes(o),
1570
+ }, No = e.string().refine(
1571
+ (o) => Object.values(Oo).includes(o),
1513
1572
  { message: "Invalid log type" }
1514
- ), yo = e.object({
1573
+ ), Ro = e.object({
1515
1574
  name: e.string(),
1516
1575
  version: e.string(),
1517
1576
  env: e.object({
1518
1577
  node: e.string().optional()
1519
1578
  }).optional()
1520
- }), Oo = e.object({
1579
+ }), jo = e.object({
1521
1580
  country_code: e.string().length(2),
1522
1581
  city_name: e.string(),
1523
1582
  latitude: e.string(),
1524
1583
  longitude: e.string(),
1525
1584
  time_zone: e.string(),
1526
1585
  continent_code: e.string()
1527
- }), To = e.object({
1528
- type: Co,
1586
+ }), wo = e.object({
1587
+ type: No,
1529
1588
  date: e.string(),
1530
1589
  description: e.string().optional(),
1531
1590
  ip: e.string().optional(),
@@ -1544,30 +1603,30 @@ const So = e.nativeEnum(F), Ao = e.object({
1544
1603
  strategy: e.string().optional(),
1545
1604
  strategy_type: e.string().optional(),
1546
1605
  hostname: e.string().optional(),
1547
- auth0_client: yo.optional(),
1606
+ auth0_client: Ro.optional(),
1548
1607
  log_id: e.string().optional(),
1549
- location_info: Oo.optional()
1550
- }), vt = e.object({
1551
- ...To.shape,
1608
+ location_info: jo.optional()
1609
+ }), Pt = e.object({
1610
+ ...wo.shape,
1552
1611
  log_id: e.string()
1553
- }), No = e.object({
1612
+ }), Do = e.object({
1554
1613
  id: e.string().optional(),
1555
1614
  user_id: e.string(),
1556
1615
  password: e.string(),
1557
1616
  algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
1558
1617
  is_current: e.boolean().default(!0)
1559
- }), kt = No.extend({
1618
+ }), Mt = Do.extend({
1560
1619
  id: e.string(),
1561
1620
  created_at: e.string(),
1562
1621
  updated_at: e.string()
1563
- }), x = e.object({
1622
+ }), M = e.object({
1564
1623
  initial_user_agent: e.string().describe("First user agent of the device from which this user logged in"),
1565
1624
  initial_ip: e.string().describe("First IP address associated with this session"),
1566
1625
  initial_asn: e.string().describe("First autonomous system number associated with this session"),
1567
1626
  last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
1568
1627
  last_ip: e.string().describe("Last IP address from which this user logged in"),
1569
1628
  last_asn: e.string().describe("Last autonomous system number from which this user logged in")
1570
- }), Ro = e.object({
1629
+ }), Lo = e.object({
1571
1630
  id: e.string(),
1572
1631
  revoked_at: e.string().optional(),
1573
1632
  used_at: e.string().optional(),
@@ -1575,17 +1634,17 @@ const So = e.nativeEnum(F), Ao = e.object({
1575
1634
  expires_at: e.string().optional(),
1576
1635
  login_session_id: e.string(),
1577
1636
  idle_expires_at: e.string().optional(),
1578
- device: x.describe(
1637
+ device: M.describe(
1579
1638
  "Metadata related to the device used in the session"
1580
1639
  ),
1581
1640
  clients: e.array(e.string()).describe("List of client details for the session")
1582
- }), Ut = e.object({
1641
+ }), Ht = e.object({
1583
1642
  created_at: e.string(),
1584
1643
  updated_at: e.string(),
1585
1644
  authenticated_at: e.string(),
1586
1645
  last_interaction_at: e.string(),
1587
- ...Ro.shape
1588
- }), Ft = e.object({
1646
+ ...Lo.shape
1647
+ }), Gt = e.object({
1589
1648
  kid: e.string().openapi({ description: "The key id of the signing key" }),
1590
1649
  cert: e.string().openapi({ description: "The public certificate of the signing key" }),
1591
1650
  fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
@@ -1610,7 +1669,7 @@ const So = e.nativeEnum(F), Ao = e.object({
1610
1669
  type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
1611
1670
  description: "The type of the signing key"
1612
1671
  })
1613
- }), wo = e.object({
1672
+ }), vo = e.object({
1614
1673
  id: e.string().optional(),
1615
1674
  // Basic settings
1616
1675
  audience: e.string(),
@@ -1763,14 +1822,14 @@ const So = e.nativeEnum(F), Ao = e.object({
1763
1822
  message: e.string().optional()
1764
1823
  }).optional()
1765
1824
  }).optional()
1766
- }), xt = e.object({
1825
+ }), Bt = e.object({
1767
1826
  created_at: e.string().nullable().transform((o) => o ?? ""),
1768
1827
  updated_at: e.string().nullable().transform((o) => o ?? ""),
1769
- ...wo.shape,
1828
+ ...vo.shape,
1770
1829
  id: e.string()
1771
1830
  });
1772
- var Do = /* @__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))(Do || {});
1773
- const Pt = e.object({
1831
+ 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 || {});
1832
+ const Wt = e.object({
1774
1833
  access_token: e.string(),
1775
1834
  id_token: e.string().optional(),
1776
1835
  scope: e.string().optional(),
@@ -1783,7 +1842,7 @@ e.object({
1783
1842
  code: e.string(),
1784
1843
  state: e.string().optional()
1785
1844
  });
1786
- const jo = e.object({
1845
+ const Uo = e.object({
1787
1846
  button_border_radius: e.number(),
1788
1847
  button_border_weight: e.number(),
1789
1848
  buttons_style: e.enum(["pill", "rounded", "sharp"]),
@@ -1793,7 +1852,7 @@ const jo = e.object({
1793
1852
  show_widget_shadow: e.boolean(),
1794
1853
  widget_border_weight: e.number(),
1795
1854
  widget_corner_radius: e.number()
1796
- }), Lo = e.object({
1855
+ }), Fo = e.object({
1797
1856
  base_focus_color: e.string(),
1798
1857
  base_hover_color: e.string(),
1799
1858
  body_text: e.string(),
@@ -1816,7 +1875,7 @@ const jo = e.object({
1816
1875
  }), g = e.object({
1817
1876
  bold: e.boolean(),
1818
1877
  size: e.number()
1819
- }), vo = e.object({
1878
+ }), xo = e.object({
1820
1879
  body_text: g,
1821
1880
  buttons_text: g,
1822
1881
  font_url: e.string(),
@@ -1826,31 +1885,31 @@ const jo = e.object({
1826
1885
  reference_text_size: e.number(),
1827
1886
  subtitle: g,
1828
1887
  title: g
1829
- }), ko = e.object({
1888
+ }), Po = e.object({
1830
1889
  background_color: e.string(),
1831
1890
  background_image_url: e.string(),
1832
1891
  page_layout: e.enum(["center", "left", "right"])
1833
- }), Uo = e.object({
1892
+ }), Mo = e.object({
1834
1893
  header_text_alignment: e.enum(["center", "left", "right"]),
1835
1894
  logo_height: e.number(),
1836
1895
  logo_position: e.enum(["center", "left", "none", "right"]),
1837
1896
  logo_url: e.string(),
1838
1897
  social_buttons_layout: e.enum(["bottom", "top"])
1839
- }), Fo = e.object({
1840
- borders: jo,
1841
- colors: Lo,
1898
+ }), Ho = e.object({
1899
+ borders: Uo,
1900
+ colors: Fo,
1842
1901
  displayName: e.string(),
1843
- fonts: vo,
1844
- page_background: ko,
1845
- widget: Uo
1846
- }), Mt = Fo.extend({
1902
+ fonts: xo,
1903
+ page_background: Po,
1904
+ widget: Mo
1905
+ }), Kt = Ho.extend({
1847
1906
  themeId: e.string()
1848
- }), Ht = e.object({
1907
+ }), zt = e.object({
1849
1908
  universal_login_experience: e.enum(["new", "classic"]).default("new"),
1850
1909
  identifier_first: e.boolean().default(!0),
1851
1910
  password_first: e.boolean().default(!1),
1852
1911
  webauthn_platform_first_factor: e.boolean()
1853
- }), Gt = e.object({
1912
+ }), Xt = e.object({
1854
1913
  name: e.string(),
1855
1914
  enabled: e.boolean().optional().default(!0),
1856
1915
  default_from_address: e.string().optional(),
@@ -1880,7 +1939,7 @@ const jo = e.object({
1880
1939
  })
1881
1940
  ]),
1882
1941
  settings: e.object({}).optional()
1883
- }), xo = e.object({
1942
+ }), Go = e.object({
1884
1943
  // The actual refresh token value (primary key).
1885
1944
  id: e.string(),
1886
1945
  // Link to the session record
@@ -1893,7 +1952,7 @@ const jo = e.object({
1893
1952
  idle_expires_at: e.string().optional(),
1894
1953
  // When the token was last used.
1895
1954
  last_exchanged_at: e.string().optional(),
1896
- device: x,
1955
+ device: M,
1897
1956
  resource_servers: e.array(
1898
1957
  e.object({
1899
1958
  audience: e.string(),
@@ -1901,21 +1960,21 @@ const jo = e.object({
1901
1960
  })
1902
1961
  ),
1903
1962
  rotating: e.boolean()
1904
- }), Bt = e.object({
1963
+ }), qt = e.object({
1905
1964
  // When the refresh token record was created.
1906
1965
  created_at: e.string(),
1907
1966
  // Spread in the rest of the refresh token properties.
1908
- ...xo.shape
1909
- }), Wt = e.object({
1967
+ ...Go.shape
1968
+ }), Vt = e.object({
1910
1969
  to: e.string(),
1911
1970
  message: e.string()
1912
- }), Kt = e.object({
1971
+ }), Yt = e.object({
1913
1972
  name: e.string(),
1914
1973
  options: e.object({})
1915
- }), Po = e.object({
1974
+ }), Bo = e.object({
1916
1975
  value: e.string(),
1917
1976
  description: e.string().optional()
1918
- }), Mo = e.object({
1977
+ }), Wo = e.object({
1919
1978
  token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
1920
1979
  enforce_policies: e.boolean().optional(),
1921
1980
  allow_skipping_userinfo: e.boolean().optional(),
@@ -1925,11 +1984,11 @@ const jo = e.object({
1925
1984
  mtls: e.object({
1926
1985
  bound_access_tokens: e.boolean().optional()
1927
1986
  }).optional()
1928
- }), Ho = e.object({
1987
+ }), Ko = e.object({
1929
1988
  id: e.string().optional(),
1930
1989
  name: e.string(),
1931
1990
  identifier: e.string(),
1932
- scopes: e.array(Po).optional(),
1991
+ scopes: e.array(Bo).optional(),
1933
1992
  signing_alg: e.string().optional(),
1934
1993
  signing_secret: e.string().optional(),
1935
1994
  token_lifetime: e.number().optional(),
@@ -1937,30 +1996,30 @@ const jo = e.object({
1937
1996
  skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
1938
1997
  allow_offline_access: e.boolean().optional(),
1939
1998
  verificationKey: e.string().optional(),
1940
- options: Mo.optional(),
1999
+ options: Wo.optional(),
1941
2000
  is_system: e.boolean().optional(),
1942
2001
  metadata: e.record(e.any()).optional()
1943
- }), Go = e.object({
1944
- ...Ho.shape,
2002
+ }), zo = e.object({
2003
+ ...Ko.shape,
1945
2004
  created_at: e.string().optional(),
1946
2005
  updated_at: e.string().optional()
1947
- }), zt = e.array(Go), Bo = e.object({
2006
+ }), Qt = e.array(zo), Xo = e.object({
1948
2007
  role_id: e.string(),
1949
2008
  resource_server_identifier: e.string(),
1950
2009
  permission_name: e.string()
1951
- }), Wo = e.object({
1952
- ...Bo.shape,
2010
+ }), qo = e.object({
2011
+ ...Xo.shape,
1953
2012
  created_at: e.string()
1954
- }), Xt = e.array(Wo), Ko = e.object({
2013
+ }), Jt = e.array(qo), Vo = e.object({
1955
2014
  user_id: e.string(),
1956
2015
  resource_server_identifier: e.string(),
1957
2016
  permission_name: e.string(),
1958
2017
  organization_id: e.string().optional()
1959
- }), zo = e.object({
1960
- ...Ko.shape,
2018
+ }), Yo = e.object({
2019
+ ...Vo.shape,
1961
2020
  tenant_id: e.string(),
1962
2021
  created_at: e.string().optional()
1963
- }), Vt = e.array(zo), Xo = e.object({
2022
+ }), Zt = e.array(Yo), Qo = e.object({
1964
2023
  user_id: e.string(),
1965
2024
  resource_server_identifier: e.string(),
1966
2025
  resource_server_name: e.string(),
@@ -1968,17 +2027,17 @@ const jo = e.object({
1968
2027
  description: e.string().nullable().optional(),
1969
2028
  created_at: e.string().optional(),
1970
2029
  organization_id: e.string().optional()
1971
- }), qt = e.array(
1972
- Xo
1973
- ), Vo = e.object({
2030
+ }), $t = e.array(
2031
+ Qo
2032
+ ), Jo = e.object({
1974
2033
  user_id: e.string(),
1975
2034
  role_id: e.string(),
1976
2035
  organization_id: e.string().optional()
1977
- }), qo = e.object({
1978
- ...Vo.shape,
2036
+ }), Zo = e.object({
2037
+ ...Jo.shape,
1979
2038
  tenant_id: e.string(),
1980
2039
  created_at: e.string().optional()
1981
- }), Yt = e.array(qo), Yo = e.object({
2040
+ }), en = e.array(Zo), $o = e.object({
1982
2041
  id: e.string().optional().openapi({
1983
2042
  description: "The unique identifier of the role. If not provided, one will be generated."
1984
2043
  }),
@@ -1992,13 +2051,13 @@ const jo = e.object({
1992
2051
  metadata: e.record(e.any()).optional().openapi({
1993
2052
  description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
1994
2053
  })
1995
- }), Qo = Yo.extend({
2054
+ }), et = $o.extend({
1996
2055
  id: e.string().openapi({
1997
2056
  description: "The unique identifier of the role"
1998
2057
  }),
1999
2058
  created_at: e.string().optional(),
2000
2059
  updated_at: e.string().optional()
2001
- }), Qt = e.array(Qo), Jo = e.object({
2060
+ }), on = e.array(et), ot = e.object({
2002
2061
  logo_url: e.string().optional().openapi({
2003
2062
  description: "URL of the organization's logo"
2004
2063
  }),
@@ -2010,7 +2069,7 @@ const jo = e.object({
2010
2069
  description: "Page background color in hex format (e.g., #FFFFFF)"
2011
2070
  })
2012
2071
  }).optional()
2013
- }).optional(), Zo = e.object({
2072
+ }).optional(), tt = e.object({
2014
2073
  connection_id: e.string().openapi({
2015
2074
  description: "ID of the connection"
2016
2075
  }),
@@ -2023,7 +2082,7 @@ const jo = e.object({
2023
2082
  is_signup_enabled: e.boolean().default(!0).openapi({
2024
2083
  description: "Whether signup is enabled for this connection"
2025
2084
  })
2026
- }), $o = e.object({
2085
+ }), nt = e.object({
2027
2086
  client_credentials: e.object({
2028
2087
  enforce: e.boolean().default(!1).openapi({
2029
2088
  description: "Whether to enforce token quota limits"
@@ -2035,7 +2094,7 @@ const jo = e.object({
2035
2094
  description: "Maximum tokens per hour (0 = unlimited)"
2036
2095
  })
2037
2096
  }).optional()
2038
- }).optional(), et = e.object({
2097
+ }).optional(), it = e.object({
2039
2098
  id: e.string().optional(),
2040
2099
  name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
2041
2100
  message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
@@ -2045,34 +2104,34 @@ const jo = e.object({
2045
2104
  display_name: e.string().optional().openapi({
2046
2105
  description: "The display name of the organization"
2047
2106
  }),
2048
- branding: Jo,
2107
+ branding: ot,
2049
2108
  metadata: e.record(e.any()).default({}).optional().openapi({
2050
2109
  description: "Custom metadata for the organization"
2051
2110
  }),
2052
- enabled_connections: e.array(Zo).default([]).optional().openapi({
2111
+ enabled_connections: e.array(tt).default([]).optional().openapi({
2053
2112
  description: "List of enabled connections for the organization"
2054
2113
  }),
2055
- token_quota: $o
2056
- }), Jt = e.object({
2057
- ...et.shape,
2058
- ...p.shape,
2114
+ token_quota: nt
2115
+ }), tn = e.object({
2116
+ ...it.shape,
2117
+ ...s.shape,
2059
2118
  id: e.string(),
2060
2119
  // Override name to be lenient when reading from database (to support existing uppercase names)
2061
2120
  name: e.string().min(1).openapi({
2062
2121
  description: "The name of the organization"
2063
2122
  })
2064
- }), ot = e.object({
2123
+ }), at = e.object({
2065
2124
  user_id: e.string().openapi({
2066
2125
  description: "ID of the user"
2067
2126
  }),
2068
2127
  organization_id: e.string().openapi({
2069
2128
  description: "ID of the organization"
2070
2129
  })
2071
- }), Zt = e.object({
2072
- ...ot.shape,
2073
- ...p.shape,
2130
+ }), nn = e.object({
2131
+ ...at.shape,
2132
+ ...s.shape,
2074
2133
  id: e.string()
2075
- }), $t = e.object({
2134
+ }), an = e.object({
2076
2135
  // Session settings
2077
2136
  idle_session_lifetime: e.number().optional(),
2078
2137
  session_lifetime: e.number().optional(),
@@ -2170,7 +2229,7 @@ const jo = e.object({
2170
2229
  message: e.string().optional()
2171
2230
  }).optional()
2172
2231
  }).optional()
2173
- }), en = e.object({
2232
+ }), rn = e.object({
2174
2233
  date: e.string().openapi({
2175
2234
  description: "Date these events occurred in ISO 8601 format",
2176
2235
  example: "2025-12-19"
@@ -2195,10 +2254,10 @@ const jo = e.object({
2195
2254
  description: "Approximate date and time the first event occurred in ISO 8601 format",
2196
2255
  example: "2025-12-19T00:00:00.000Z"
2197
2256
  })
2198
- }), on = e.number().openapi({
2257
+ }), sn = e.number().openapi({
2199
2258
  description: "Number of active users in the last 30 days",
2200
2259
  example: 1234
2201
- }), tt = e.enum([
2260
+ }), rt = e.enum([
2202
2261
  "login",
2203
2262
  "login-id",
2204
2263
  "login-password",
@@ -2226,66 +2285,66 @@ const jo = e.object({
2226
2285
  "passkeys",
2227
2286
  "captcha",
2228
2287
  "custom-form"
2229
- ]), nt = e.record(e.string(), e.string()).openapi({
2288
+ ]), st = e.record(e.string(), e.string()).openapi({
2230
2289
  type: "object",
2231
2290
  additionalProperties: { type: "string" }
2232
- }), tn = e.object({
2233
- prompt: tt,
2291
+ }), ln = e.object({
2292
+ prompt: rt,
2234
2293
  language: e.string(),
2235
- custom_text: nt
2294
+ custom_text: st
2236
2295
  });
2237
- function nn(o) {
2296
+ function pn(o) {
2238
2297
  const [n, i] = o.split("|");
2239
2298
  if (!n || !i)
2240
2299
  throw new Error(`Invalid user_id: ${o}`);
2241
2300
  return { connection: n, id: i };
2242
2301
  }
2243
- function an(o) {
2302
+ function cn(o) {
2244
2303
  const {
2245
2304
  primary: n,
2246
2305
  secondaries: i,
2247
- syncMethods: T = ["create", "update", "remove", "delete", "set"]
2248
- } = o, f = {
2249
- get(l, a) {
2306
+ syncMethods: O = ["create", "update", "remove", "delete", "set"]
2307
+ } = o, E = {
2308
+ get(p, a) {
2250
2309
  if (typeof a == "symbol")
2251
- return l[a];
2252
- const c = l[a];
2253
- return typeof c != "function" ? c : T.includes(a) ? async (..._) => {
2254
- const E = await c.apply(l, _), d = [];
2255
- for (const s of i) {
2256
- const m = s.adapter[a];
2257
- if (typeof m != "function")
2310
+ return p[a];
2311
+ const c = p[a];
2312
+ return typeof c != "function" ? c : O.includes(a) ? async (..._) => {
2313
+ const S = await c.apply(p, _), d = [];
2314
+ for (const r of i) {
2315
+ const h = r.adapter[a];
2316
+ if (typeof h != "function")
2258
2317
  continue;
2259
- const S = (async () => {
2318
+ const A = (async () => {
2260
2319
  try {
2261
- await m.apply(s.adapter, _);
2262
- } catch (h) {
2320
+ await h.apply(r.adapter, _);
2321
+ } catch (b) {
2263
2322
  try {
2264
- s.onError ? s.onError(h, a, _) : console.error(
2323
+ r.onError ? r.onError(b, a, _) : console.error(
2265
2324
  `Passthrough adapter: secondary write failed for ${a}:`,
2266
- h
2325
+ b
2267
2326
  );
2268
- } catch (A) {
2327
+ } catch (I) {
2269
2328
  console.error(
2270
2329
  `Passthrough adapter: onError handler threw for ${a}:`,
2271
- A
2330
+ I
2272
2331
  );
2273
2332
  }
2274
2333
  }
2275
2334
  })();
2276
- s.blocking && d.push(S);
2335
+ r.blocking && d.push(A);
2277
2336
  }
2278
- return d.length > 0 && await Promise.all(d), E;
2279
- } : c.bind(l);
2337
+ return d.length > 0 && await Promise.all(d), S;
2338
+ } : c.bind(p);
2280
2339
  }
2281
2340
  };
2282
- return new Proxy(n, f);
2341
+ return new Proxy(n, E);
2283
2342
  }
2284
- function sn(o) {
2343
+ function _n(o) {
2285
2344
  return o;
2286
2345
  }
2287
- function rn(o) {
2288
- var f, l, a, c, _, E, d, s, m, S, h, A;
2346
+ function dn(o) {
2347
+ var E, p, a, c, _, S, d, r, h, A, b, I;
2289
2348
  const n = o == null ? void 0 : o.options;
2290
2349
  if (!n)
2291
2350
  return {
@@ -2296,172 +2355,174 @@ function rn(o) {
2296
2355
  };
2297
2356
  const i = n.attributes;
2298
2357
  if (i) {
2299
- const P = ((l = (f = i.username) == null ? void 0 : f.identifier) == null ? void 0 : l.active) === !0, M = ((c = (a = i.email) == null ? void 0 : a.identifier) == null ? void 0 : c.active) !== !1, H = ((E = (_ = i.username) == null ? void 0 : _.validation) == null ? void 0 : E.min_length) ?? 1, G = ((s = (d = i.username) == null ? void 0 : d.validation) == null ? void 0 : s.max_length) ?? 15;
2358
+ 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;
2300
2359
  return {
2301
- usernameIdentifierActive: P,
2302
- emailIdentifierActive: M,
2303
- usernameMinLength: H,
2304
- usernameMaxLength: G
2360
+ usernameIdentifierActive: H,
2361
+ emailIdentifierActive: G,
2362
+ usernameMinLength: B,
2363
+ usernameMaxLength: W
2305
2364
  };
2306
2365
  }
2307
2366
  return {
2308
2367
  usernameIdentifierActive: n.requires_username === !0,
2309
2368
  emailIdentifierActive: !0,
2310
- usernameMinLength: ((S = (m = n.validation) == null ? void 0 : m.username) == null ? void 0 : S.min) ?? 1,
2311
- usernameMaxLength: ((A = (h = n.validation) == null ? void 0 : h.username) == null ? void 0 : A.max) ?? 15
2369
+ usernameMinLength: ((A = (h = n.validation) == null ? void 0 : h.username) == null ? void 0 : A.min) ?? 1,
2370
+ usernameMaxLength: ((I = (b = n.validation) == null ? void 0 : b.username) == null ? void 0 : I.max) ?? 15
2312
2371
  };
2313
2372
  }
2314
2373
  export {
2315
- st as Auth0ActionEnum,
2316
- yo as Auth0Client,
2317
- j as AuthorizationResponseMode,
2318
- D as AuthorizationResponseType,
2374
+ ct as Auth0ActionEnum,
2375
+ Ro as Auth0Client,
2376
+ D as AuthorizationResponseMode,
2377
+ w as AuthorizationResponseType,
2319
2378
  L as CodeChallengeMethod,
2320
- w as ComponentCategory,
2379
+ j as ComponentCategory,
2321
2380
  R as ComponentType,
2322
- rt as EmailActionEnum,
2323
- St as FORM_FIELD_TYPES,
2324
- at as FlowActionTypeEnum,
2325
- Do as GrantType,
2326
- Oo as LocationInfo,
2327
- Io as LogTypes,
2328
- F as LoginSessionState,
2329
- _e as NodeType,
2330
- z as RedirectTargetEnum,
2331
- ue as actionNodeSchema,
2332
- on as activeUsersResponseSchema,
2333
- J as addressSchema,
2334
- mt as auth0FlowInsertSchema,
2335
- Ee as auth0FlowSchema,
2336
- ct as auth0QuerySchema,
2337
- W as auth0UpdateUserActionSchema,
2338
- _t as auth0UserResponseSchema,
2339
- Se as authParamsSchema,
2381
+ _t as EmailActionEnum,
2382
+ Ct as FORM_FIELD_TYPES,
2383
+ pt as FlowActionTypeEnum,
2384
+ ko as GrantType,
2385
+ jo as LocationInfo,
2386
+ Oo as LogTypes,
2387
+ P as LoginSessionState,
2388
+ ge as NodeType,
2389
+ q as RedirectTargetEnum,
2390
+ he as actionNodeSchema,
2391
+ sn as activeUsersResponseSchema,
2392
+ $ as addressSchema,
2393
+ Et as auth0FlowInsertSchema,
2394
+ Ae as auth0FlowSchema,
2395
+ gt as auth0QuerySchema,
2396
+ z as auth0UpdateUserActionSchema,
2397
+ mt as auth0UserResponseSchema,
2398
+ Ie as authParamsSchema,
2340
2399
  N as baseUserSchema,
2341
- oo as blockComponentSchema,
2342
- jo as bordersSchema,
2343
- ht as brandingSchema,
2344
- se as buttonComponentSchema,
2345
- ne as clientGrantInsertSchema,
2346
- ut as clientGrantListSchema,
2347
- ie as clientGrantSchema,
2348
- te as clientInsertSchema,
2349
- gt as clientSchema,
2350
- Ie as codeInsertSchema,
2351
- bt as codeSchema,
2352
- Ae as codeTypeSchema,
2353
- Lo as colorsSchema,
2354
- co as componentMessageSchema,
2355
- pe as componentSchema,
2356
- ye as connectionInsertSchema,
2357
- Ce as connectionOptionsSchema,
2358
- ft as connectionSchema,
2400
+ no as blockComponentSchema,
2401
+ Uo as bordersSchema,
2402
+ St as brandingSchema,
2403
+ le as buttonComponentSchema,
2404
+ ae as clientGrantInsertSchema,
2405
+ ft as clientGrantListSchema,
2406
+ re as clientGrantSchema,
2407
+ ie as clientInsertSchema,
2408
+ bt as clientSchema,
2409
+ Ce as codeInsertSchema,
2410
+ At as codeSchema,
2411
+ ye as codeTypeSchema,
2412
+ Fo as colorsSchema,
2413
+ _o as componentMessageSchema,
2414
+ de as componentSchema,
2415
+ Oe as connectionInsertSchema,
2416
+ Te as connectionOptionsSchema,
2417
+ It as connectionSchema,
2359
2418
  u as coordinatesSchema,
2360
- an as createPassthroughAdapter,
2361
- sn as createWriteOnlyAdapter,
2362
- Oe as customDomainInsertSchema,
2363
- Ne as customDomainSchema,
2364
- Et as customDomainWithTenantIdSchema,
2365
- tn as customTextEntrySchema,
2366
- nt as customTextSchema,
2367
- en as dailyStatsSchema,
2368
- Gt as emailProviderSchema,
2369
- B as emailVerificationRulesSchema,
2370
- K as emailVerifyActionSchema,
2371
- fe as endingSchema,
2372
- no as fieldComponentSchema,
2373
- V as flowActionStepSchema,
2374
- q as flowInsertSchema,
2375
- lt as flowSchema,
2376
- le as flowsFieldComponentSchema,
2377
- ge as flowsFlowNodeSchema,
2378
- de as flowsStepNodeSchema,
2419
+ cn as createPassthroughAdapter,
2420
+ _n as createWriteOnlyAdapter,
2421
+ Ne as customDomainInsertSchema,
2422
+ je as customDomainSchema,
2423
+ yt as customDomainWithTenantIdSchema,
2424
+ ln as customTextEntrySchema,
2425
+ st as customTextSchema,
2426
+ rn as dailyStatsSchema,
2427
+ Xt as emailProviderSchema,
2428
+ K as emailVerificationRulesSchema,
2429
+ X as emailVerifyActionSchema,
2430
+ Se as endingSchema,
2431
+ ao as fieldComponentSchema,
2432
+ Y as flowActionStepSchema,
2433
+ Q as flowInsertSchema,
2434
+ dt as flowSchema,
2435
+ ce as flowsFieldComponentSchema,
2436
+ me as flowsFlowNodeSchema,
2437
+ ue as flowsStepNodeSchema,
2379
2438
  g as fontDetailsSchema,
2380
- vo as fontsSchema,
2381
- At as formControlSchema,
2382
- lo as formInsertSchema,
2439
+ xo as fontsSchema,
2440
+ Tt as formControlSchema,
2441
+ co as formInsertSchema,
2383
2442
  v as formNodeComponentDefinition,
2384
- ro as formNodeSchema,
2385
- It as formSchema,
2386
- ce as genericComponentSchema,
2387
- me as genericNodeSchema,
2388
- rn as getConnectionIdentifierConfig,
2389
- Nt as hookInsertSchema,
2390
- Rt as hookSchema,
2391
- Q as identitySchema,
2392
- fo as inviteInsertSchema,
2393
- wt as inviteSchema,
2394
- bo as inviteeSchema,
2395
- ho as inviterSchema,
2396
- yt as isBlockComponent,
2397
- Tt as isFieldComponent,
2398
- Ot as isWidgetComponent,
2399
- Dt as jwksKeySchema,
2400
- Eo as jwksSchema,
2401
- re as legalComponentSchema,
2402
- To as logInsertSchema,
2403
- vt as logSchema,
2404
- Ao as loginSessionInsertSchema,
2405
- Lt as loginSessionSchema,
2406
- So as loginSessionStateSchema,
2407
- he as nodeSchema,
2408
- jt as openIDConfigurationSchema,
2409
- Jo as organizationBrandingSchema,
2410
- Zo as organizationEnabledConnectionSchema,
2411
- et as organizationInsertSchema,
2412
- Jt as organizationSchema,
2413
- $o as organizationTokenQuotaSchema,
2414
- ko as pageBackgroundSchema,
2415
- nn as parseUserId,
2416
- No as passwordInsertSchema,
2417
- kt as passwordSchema,
2418
- Y as profileDataSchema,
2419
- tt as promptScreenSchema,
2420
- Ht as promptSettingSchema,
2421
- X as redirectActionSchema,
2422
- xo as refreshTokenInsertSchema,
2423
- Bt as refreshTokenSchema,
2424
- Ho as resourceServerInsertSchema,
2425
- zt as resourceServerListSchema,
2426
- Mo as resourceServerOptionsSchema,
2427
- Go as resourceServerSchema,
2428
- Po as resourceServerScopeSchema,
2429
- ae as richTextComponentSchema,
2430
- Yo as roleInsertSchema,
2431
- Qt as roleListSchema,
2432
- Bo as rolePermissionInsertSchema,
2433
- Xt as rolePermissionListSchema,
2434
- Wo as rolePermissionSchema,
2435
- Qo as roleSchema,
2436
- po as screenLinkSchema,
2437
- Ro as sessionInsertSchema,
2438
- Ut as sessionSchema,
2439
- Ft as signingKeySchema,
2440
- Kt as smsProviderSchema,
2441
- Wt as smsSendParamsSchema,
2442
- be as startSchema,
2443
- wo as tenantInsertSchema,
2444
- xt as tenantSchema,
2445
- $t as tenantSettingsSchema,
2446
- Fo as themeInsertSchema,
2447
- Mt as themeSchema,
2448
- Pt as tokenResponseSchema,
2449
- pt as totalsSchema,
2450
- Ct as uiScreenSchema,
2451
- Z as userInsertSchema,
2452
- ot as userOrganizationInsertSchema,
2453
- Zt as userOrganizationSchema,
2454
- Ko as userPermissionInsertSchema,
2455
- Vt as userPermissionListSchema,
2456
- zo as userPermissionSchema,
2457
- qt as userPermissionWithDetailsListSchema,
2458
- Xo as userPermissionWithDetailsSchema,
2459
- dt as userResponseSchema,
2460
- Vo as userRoleInsertSchema,
2461
- Yt as userRoleListSchema,
2462
- qo as userRoleSchema,
2463
- $ as userSchema,
2464
- Te as verificationMethodsSchema,
2465
- to as widgetComponentSchema,
2466
- Uo as widgetSchema
2443
+ po as formNodeSchema,
2444
+ Ot as formSchema,
2445
+ _e as genericComponentSchema,
2446
+ be as genericNodeSchema,
2447
+ dn as getConnectionIdentifierConfig,
2448
+ Lt as hookInsertSchema,
2449
+ vt as hookSchema,
2450
+ x as hookTemplateId,
2451
+ Dt as hookTemplates,
2452
+ Z as identitySchema,
2453
+ Io as inviteInsertSchema,
2454
+ kt as inviteSchema,
2455
+ Ao as inviteeSchema,
2456
+ So as inviterSchema,
2457
+ Rt as isBlockComponent,
2458
+ wt as isFieldComponent,
2459
+ jt as isWidgetComponent,
2460
+ Ut as jwksKeySchema,
2461
+ yo as jwksSchema,
2462
+ pe as legalComponentSchema,
2463
+ wo as logInsertSchema,
2464
+ Pt as logSchema,
2465
+ To as loginSessionInsertSchema,
2466
+ xt as loginSessionSchema,
2467
+ Co as loginSessionStateSchema,
2468
+ fe as nodeSchema,
2469
+ Ft as openIDConfigurationSchema,
2470
+ ot as organizationBrandingSchema,
2471
+ tt as organizationEnabledConnectionSchema,
2472
+ it as organizationInsertSchema,
2473
+ tn as organizationSchema,
2474
+ nt as organizationTokenQuotaSchema,
2475
+ Po as pageBackgroundSchema,
2476
+ pn as parseUserId,
2477
+ Do as passwordInsertSchema,
2478
+ Mt as passwordSchema,
2479
+ J as profileDataSchema,
2480
+ rt as promptScreenSchema,
2481
+ zt as promptSettingSchema,
2482
+ V as redirectActionSchema,
2483
+ Go as refreshTokenInsertSchema,
2484
+ qt as refreshTokenSchema,
2485
+ Ko as resourceServerInsertSchema,
2486
+ Qt as resourceServerListSchema,
2487
+ Wo as resourceServerOptionsSchema,
2488
+ zo as resourceServerSchema,
2489
+ Bo as resourceServerScopeSchema,
2490
+ se as richTextComponentSchema,
2491
+ $o as roleInsertSchema,
2492
+ on as roleListSchema,
2493
+ Xo as rolePermissionInsertSchema,
2494
+ Jt as rolePermissionListSchema,
2495
+ qo as rolePermissionSchema,
2496
+ et as roleSchema,
2497
+ go as screenLinkSchema,
2498
+ Lo as sessionInsertSchema,
2499
+ Ht as sessionSchema,
2500
+ Gt as signingKeySchema,
2501
+ Yt as smsProviderSchema,
2502
+ Vt as smsSendParamsSchema,
2503
+ Ee as startSchema,
2504
+ vo as tenantInsertSchema,
2505
+ Bt as tenantSchema,
2506
+ an as tenantSettingsSchema,
2507
+ Ho as themeInsertSchema,
2508
+ Kt as themeSchema,
2509
+ Wt as tokenResponseSchema,
2510
+ ut as totalsSchema,
2511
+ Nt as uiScreenSchema,
2512
+ ee as userInsertSchema,
2513
+ at as userOrganizationInsertSchema,
2514
+ nn as userOrganizationSchema,
2515
+ Vo as userPermissionInsertSchema,
2516
+ Zt as userPermissionListSchema,
2517
+ Yo as userPermissionSchema,
2518
+ $t as userPermissionWithDetailsListSchema,
2519
+ Qo as userPermissionWithDetailsSchema,
2520
+ ht as userResponseSchema,
2521
+ Jo as userRoleInsertSchema,
2522
+ en as userRoleListSchema,
2523
+ Zo as userRoleSchema,
2524
+ oe as userSchema,
2525
+ Re as verificationMethodsSchema,
2526
+ io as widgetComponentSchema,
2527
+ Mo as widgetSchema
2467
2528
  };