@authhero/adapter-interfaces 1.19.0 → 2.1.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.
@@ -19,11 +19,19 @@ const a = e.object({
19
19
  supported_triggers: e.array(j).optional(),
20
20
  runtime: e.string().max(50).optional(),
21
21
  dependencies: e.array(k).optional(),
22
- secrets: e.array(R).optional()
23
- }), en = v.partial().extend({
22
+ secrets: e.array(R).optional(),
23
+ // Marks this action as a shared template owned by the control-plane tenant.
24
+ // Other tenants can opt-in by creating a row with the same `name` and
25
+ // `inherit: true`; at execute time the loader reads code from this row.
26
+ is_system: e.boolean().optional(),
27
+ // On a non-control-plane tenant, indicates the action's `code` should be
28
+ // read through from the control-plane system action with a matching name.
29
+ // The local `secrets` still override (local-first then upstream fallback).
30
+ inherit: e.boolean().optional()
31
+ }), sn = v.partial().extend({
24
32
  status: e.enum(["draft", "built"]).optional(),
25
33
  deployed_at: e.string().optional()
26
- }), tn = v.extend({
34
+ }), rn = v.extend({
27
35
  id: e.string(),
28
36
  tenant_id: e.string(),
29
37
  status: e.enum(["draft", "built"]).default("built"),
@@ -69,7 +77,7 @@ const a = e.object({
69
77
  logs: ae.optional(),
70
78
  created_at: e.string(),
71
79
  updated_at: e.string()
72
- }), on = se.omit({
80
+ }), ln = se.omit({
73
81
  tenant_id: !0,
74
82
  created_at: !0,
75
83
  updated_at: !0
@@ -81,7 +89,7 @@ const a = e.object({
81
89
  secrets: e.array(R).optional(),
82
90
  supported_triggers: e.array(j).optional(),
83
91
  deployed: e.boolean().default(!0)
84
- }), nn = re.extend({
92
+ }), cn = re.extend({
85
93
  id: e.string(),
86
94
  tenant_id: e.string(),
87
95
  number: e.number().int(),
@@ -147,15 +155,15 @@ const a = e.object({
147
155
  hostname: e.string(),
148
156
  is_mobile: e.boolean().optional(),
149
157
  timestamp: e.string()
150
- }), an = me.extend({
158
+ }), pn = me.extend({
151
159
  id: e.string()
152
- }), sn = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), rn = e.enum([
160
+ }), dn = e.enum(["AUTH0", "EMAIL", "REDIRECT"]), _n = e.enum([
153
161
  "CREATE_USER",
154
162
  "GET_USER",
155
163
  "UPDATE_USER",
156
164
  "SEND_REQUEST",
157
165
  "SEND_EMAIL"
158
- ]), ln = e.enum(["VERIFY_EMAIL"]), he = e.object({
166
+ ]), gn = e.enum(["VERIFY_EMAIL"]), he = e.object({
159
167
  require_mx_record: e.boolean().optional(),
160
168
  block_aliases: e.boolean().optional(),
161
169
  block_free_emails: e.boolean().optional(),
@@ -185,7 +193,7 @@ const a = e.object({
185
193
  email: e.string(),
186
194
  rules: he.optional()
187
195
  })
188
- }), Ee = e.enum(["change-email", "account", "custom"]), Se = e.object({
196
+ }), Se = e.enum(["change-email", "account", "custom"]), Ee = e.object({
189
197
  id: e.string(),
190
198
  alias: e.string().max(100).optional(),
191
199
  type: e.literal("REDIRECT"),
@@ -193,7 +201,7 @@ const a = e.object({
193
201
  allow_failure: e.boolean().optional(),
194
202
  mask_output: e.boolean().optional(),
195
203
  params: e.object({
196
- target: Ee.openapi({
204
+ target: Se.openapi({
197
205
  description: "The predefined target to redirect to, or 'custom' for a custom URL"
198
206
  }),
199
207
  custom_url: e.string().optional().openapi({
@@ -203,7 +211,7 @@ const a = e.object({
203
211
  }), ye = e.union([
204
212
  be,
205
213
  fe,
206
- Se
214
+ Ee
207
215
  ]), Ae = e.object({
208
216
  name: e.string().min(1).max(150).openapi({
209
217
  description: "The name of the flow"
@@ -212,13 +220,13 @@ const a = e.object({
212
220
  actions: e.array(ye).optional().default([]).openapi({
213
221
  description: "The list of actions to execute in sequence"
214
222
  })
215
- }), cn = Ae.extend({
223
+ }), un = Ae.extend({
216
224
  ...a.shape,
217
225
  id: e.string().openapi({
218
226
  description: "Unique identifier for the flow",
219
227
  example: "af_12tMpdJ3iek7svMyZkSh5M"
220
228
  })
221
- }), pn = e.object({
229
+ }), mn = e.object({
222
230
  page: e.string().min(0).optional().default("0").transform((t) => parseInt(t, 10)).openapi({
223
231
  description: "The page number where 0 is the first page"
224
232
  }),
@@ -234,7 +242,7 @@ const a = e.object({
234
242
  q: e.string().optional().openapi({
235
243
  description: "A lucene query string used to filter the results"
236
244
  })
237
- }), dn = e.object({
245
+ }), hn = e.object({
238
246
  start: e.number(),
239
247
  limit: e.number(),
240
248
  length: e.number(),
@@ -331,7 +339,7 @@ const a = e.object({
331
339
  hash: e.string(),
332
340
  algorithm: e.string()
333
341
  }).optional()
334
- }), Ne = e.object({
342
+ }), we = e.object({
335
343
  ...Oe.omit({ password: !0 }).shape,
336
344
  ...a.shape,
337
345
  user_id: e.string(),
@@ -340,19 +348,19 @@ const a = e.object({
340
348
  email: e.string().optional(),
341
349
  login_count: e.number().default(0),
342
350
  identities: e.array(Ce).optional()
343
- }), _n = Ne.omit({
351
+ }), bn = we.omit({
344
352
  registration_completed_at: !0
345
- }), gn = D.extend({
353
+ }), fn = D.extend({
346
354
  login_count: e.number(),
347
355
  multifactor: e.array(e.string()).optional(),
348
356
  last_ip: e.string().optional(),
349
357
  last_login: e.string().optional(),
350
358
  user_id: e.string()
351
359
  }).catchall(e.any());
352
- let we = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", je = (t = 21) => {
360
+ let Ne = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", je = (t = 21) => {
353
361
  let o = "", n = crypto.getRandomValues(new Uint8Array(t |= 0));
354
362
  for (; t--; )
355
- o += we[n[t] & 63];
363
+ o += Ne[n[t] & 63];
356
364
  return o;
357
365
  };
358
366
  const ke = e.object({
@@ -490,11 +498,8 @@ const ke = e.object({
490
498
  client_metadata: e.record(e.string().max(255)).default({}).optional().openapi({
491
499
  description: 'Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/()<>@ [Tab][Space]'
492
500
  }),
493
- disable_sign_ups: e.boolean().default(!1).optional().openapi({
494
- description: "When true, blocks new user sign-ups via this client. The identifier/signup screen rejects emails that don't match an existing user with `User account does not exist` (unless `hide_sign_up_disabled_error` is also set). Existing users — including those signing in via a federated connection that links to an existing account — are unaffected."
495
- }),
496
501
  hide_sign_up_disabled_error: e.boolean().default(!1).optional().openapi({
497
- description: "Enumeration-safe variant of `disable_sign_ups`. When both are true, the identifier screen does not reveal that an email is unknown — it advances to the OTP/password challenge as if the account existed and fails at credential check. Mitigates email enumeration at the cost of UX: users without an account see a generic credential failure instead of an explicit signup-disabled message."
502
+ description: "Enumeration-safe variant of the connection-level `disable_signup` flag. When a signup is blocked by the password connection and this is true, the identifier screen does not reveal that an email is unknown — it advances to the OTP/password challenge as if the account existed and fails at credential check. Mitigates email enumeration at the cost of UX: users without an account see a generic credential failure instead of an explicit signup-disabled message."
498
503
  }),
499
504
  mobile: e.record(e.any()).default({}).optional().openapi({
500
505
  description: "Additional configuration for native mobile apps."
@@ -579,7 +584,7 @@ const ke = e.object({
579
584
  user_linking_mode: e.enum(["builtin", "off"]).optional().openapi({
580
585
  description: "Per-client override for the built-in email-based user-linking path. `builtin` runs the legacy in-process linking at user creation/email update. `off` disables the legacy path; linking only happens if the tenant has enabled the `account-linking` template hook. When unset, the service-level `userLinkingMode` default applies."
581
586
  })
582
- }), un = e.object({
587
+ }), Sn = e.object({
583
588
  created_at: e.string(),
584
589
  updated_at: e.string(),
585
590
  ...ke.shape,
@@ -618,7 +623,7 @@ const ke = e.object({
618
623
  ...Re.shape,
619
624
  created_at: e.string().optional(),
620
625
  updated_at: e.string().optional()
621
- }), mn = e.array(ve), De = e.enum(["iat", "rat"]), Le = e.object({
626
+ }), En = e.array(ve), De = e.enum(["iat", "rat"]), Le = e.object({
622
627
  id: e.string(),
623
628
  token_hash: e.string(),
624
629
  type: De,
@@ -627,7 +632,7 @@ const ke = e.object({
627
632
  constraints: e.record(e.unknown()).optional(),
628
633
  single_use: e.boolean().default(!1),
629
634
  expires_at: e.string().optional()
630
- }), hn = e.object({
635
+ }), yn = e.object({
631
636
  created_at: e.string(),
632
637
  used_at: e.string().optional(),
633
638
  revoked_at: e.string().optional(),
@@ -754,7 +759,7 @@ const C = e.object({
754
759
  Me
755
760
  ]);
756
761
  var Ge = /* @__PURE__ */ ((t) => (t.STEP = "STEP", t.FLOW = "FLOW", t.CONDITION = "CONDITION", t.ACTION = "ACTION", t))(Ge || {});
757
- const We = e.object({
762
+ const Be = e.object({
758
763
  id: e.string(),
759
764
  type: e.literal(
760
765
  "STEP"
@@ -766,7 +771,7 @@ const We = e.object({
766
771
  components: e.array(He),
767
772
  next_node: e.string()
768
773
  }).passthrough()
769
- }), Be = e.object({
774
+ }), We = e.object({
770
775
  id: e.string(),
771
776
  type: e.literal(
772
777
  "FLOW"
@@ -805,8 +810,8 @@ const We = e.object({
805
810
  type: e.string(),
806
811
  coordinates: m
807
812
  }).passthrough(), qe = e.union([
808
- We,
809
813
  Be,
814
+ We,
810
815
  Ke,
811
816
  ze
812
817
  ]), Xe = e.object({
@@ -830,13 +835,13 @@ const We = e.object({
830
835
  sdkSrc: e.string().optional(),
831
836
  sdk_src: e.string().optional()
832
837
  }).passthrough()
833
- }).passthrough(), bn = Ye.omit({
838
+ }).passthrough(), An = Ye.omit({
834
839
  id: !0,
835
840
  created_at: !0,
836
841
  updated_at: !0
837
842
  });
838
843
  var U = /* @__PURE__ */ ((t) => (t.TOKEN = "token", t.ID_TOKEN = "id_token", t.TOKEN_ID_TOKEN = "id_token token", t.CODE = "code", t.CODE_ID_TOKEN = "code id_token", t.CODE_TOKEN = "code token", t.CODE_ID_TOKEN_TOKEN = "code id_token token", t))(U || {}), F = /* @__PURE__ */ ((t) => (t.QUERY = "query", t.FRAGMENT = "fragment", t.FORM_POST = "form_post", t.WEB_MESSAGE = "web_message", t.SAML_POST = "saml_post", t))(F || {}), P = /* @__PURE__ */ ((t) => (t.S256 = "S256", t.Plain = "plain", t))(P || {});
839
- const w = e.union([
844
+ const N = e.union([
840
845
  e.null(),
841
846
  e.object({
842
847
  essential: e.boolean().optional(),
@@ -844,8 +849,8 @@ const w = e.union([
844
849
  values: e.array(e.unknown()).optional()
845
850
  })
846
851
  ]).nullable(), Ze = e.object({
847
- userinfo: e.record(e.string(), w).optional(),
848
- id_token: e.record(e.string(), w).optional()
852
+ userinfo: e.record(e.string(), N).optional(),
853
+ id_token: e.record(e.string(), N).optional()
849
854
  }), Qe = e.object({
850
855
  client_id: e.string(),
851
856
  act_as: e.string().optional(),
@@ -873,7 +878,7 @@ const w = e.union([
873
878
  claims: Ze.optional(),
874
879
  // The following fields are not available in Auth0
875
880
  vendor_id: e.string().optional()
876
- }), fn = e.object({
881
+ }), In = e.object({
877
882
  colors: e.object({
878
883
  primary: e.string(),
879
884
  // Auth0 supports either a hex color string ("#ffffff") or a gradient
@@ -941,7 +946,7 @@ const w = e.union([
941
946
  expires_at: e.string(),
942
947
  used_at: e.string().optional(),
943
948
  user_id: e.string().optional()
944
- }), En = e.object({
949
+ }), Cn = e.object({
945
950
  ...Je.shape,
946
951
  created_at: e.string()
947
952
  }), et = e.object({
@@ -996,8 +1001,19 @@ const w = e.union([
996
1001
  disable_signup: e.boolean().optional(),
997
1002
  // Brute force protection
998
1003
  brute_force_protection: e.boolean().optional(),
999
- // Import mode
1004
+ // Import mode (Auth0 custom-DB semantics): when true and a successful
1005
+ // upstream verification occurs, the user/password row is created locally
1006
+ // so subsequent logins are served entirely from authhero.
1000
1007
  import_mode: e.boolean().optional(),
1008
+ // Upstream migration credentials. Mirrors Auth0's
1009
+ // `options.configuration` (encrypted env-vars accessed from custom
1010
+ // scripts). For lazy migration, set when `import_mode: true`.
1011
+ configuration: e.object({
1012
+ token_endpoint: e.string().optional(),
1013
+ userinfo_endpoint: e.string().optional(),
1014
+ client_id: e.string().optional(),
1015
+ client_secret: e.string().optional()
1016
+ }).optional(),
1001
1017
  // Flexible Identifiers: attributes schema (replaces legacy requires_username)
1002
1018
  attributes: e.object({
1003
1019
  email: e.object({
@@ -1098,7 +1114,7 @@ const tt = e.object({
1098
1114
  show_as_button: e.boolean().optional(),
1099
1115
  metadata: e.record(e.any()).optional(),
1100
1116
  is_system: e.boolean().optional()
1101
- }), Sn = e.object({
1117
+ }), Tn = e.object({
1102
1118
  id: e.string(),
1103
1119
  created_at: e.string().transform((t) => t === null ? "" : t),
1104
1120
  updated_at: e.string().transform((t) => t === null ? "" : t)
@@ -1137,7 +1153,7 @@ const tt = e.object({
1137
1153
  methods: e.array(nt)
1138
1154
  }).optional(),
1139
1155
  tls_policy: e.string().optional()
1140
- }), yn = it.extend({
1156
+ }), On = it.extend({
1141
1157
  tenant_id: e.string()
1142
1158
  }), O = e.object({
1143
1159
  id: e.string(),
@@ -1190,23 +1206,23 @@ const tt = e.object({
1190
1206
  config: e.object({
1191
1207
  content: e.string().optional()
1192
1208
  }).optional()
1193
- }), N = O.extend({
1209
+ }), w = O.extend({
1194
1210
  category: e.literal("WIDGET").optional(),
1195
1211
  label: e.string().min(1).optional(),
1196
1212
  hint: e.string().min(1).max(500).optional(),
1197
1213
  required: e.boolean().optional(),
1198
1214
  sensitive: e.boolean().optional()
1199
- }), gt = N.extend({
1215
+ }), gt = w.extend({
1200
1216
  type: e.literal("AUTH0_VERIFIABLE_CREDENTIALS"),
1201
1217
  config: e.object({
1202
1218
  credential_type: e.string().optional()
1203
1219
  })
1204
- }), ut = N.extend({
1220
+ }), ut = w.extend({
1205
1221
  type: e.literal("GMAPS_ADDRESS"),
1206
1222
  config: e.object({
1207
1223
  api_key: e.string().optional()
1208
1224
  })
1209
- }), mt = N.extend({
1225
+ }), mt = w.extend({
1210
1226
  type: e.literal("RECAPTCHA"),
1211
1227
  config: e.object({
1212
1228
  site_key: e.string().optional()
@@ -1255,7 +1271,7 @@ const tt = e.object({
1255
1271
  multiple: e.boolean().optional(),
1256
1272
  default_value: e.union([e.string(), e.array(e.string())]).optional()
1257
1273
  }).optional()
1258
- }), Et = i.extend({
1274
+ }), St = i.extend({
1259
1275
  type: e.literal("CUSTOM"),
1260
1276
  config: e.object({
1261
1277
  component: e.string().optional(),
@@ -1263,7 +1279,7 @@ const tt = e.object({
1263
1279
  schema: e.record(e.any()).optional(),
1264
1280
  code: e.string().optional()
1265
1281
  })
1266
- }), St = i.extend({
1282
+ }), Et = i.extend({
1267
1283
  type: e.literal("DATE"),
1268
1284
  config: e.object({
1269
1285
  format: e.string().optional(),
@@ -1322,13 +1338,13 @@ const tt = e.object({
1322
1338
  forgot_password_link: e.string().optional(),
1323
1339
  default_value: e.string().optional()
1324
1340
  }).optional()
1325
- }), Nt = i.extend({
1341
+ }), wt = i.extend({
1326
1342
  type: e.literal("PAYMENT"),
1327
1343
  config: e.object({
1328
1344
  provider: e.string().optional(),
1329
1345
  currency: e.string().optional()
1330
1346
  }).optional()
1331
- }), wt = i.extend({
1347
+ }), Nt = i.extend({
1332
1348
  type: e.literal("SOCIAL"),
1333
1349
  config: e.object({
1334
1350
  providers: e.array(e.string()).optional(),
@@ -1389,16 +1405,16 @@ const tt = e.object({
1389
1405
  bt,
1390
1406
  ft,
1391
1407
  Rt,
1392
- Et,
1393
1408
  St,
1409
+ Et,
1394
1410
  yt,
1395
1411
  At,
1396
1412
  It,
1397
1413
  Ct,
1398
1414
  Tt,
1399
1415
  Ot,
1400
- Nt,
1401
1416
  wt,
1417
+ Nt,
1402
1418
  jt,
1403
1419
  kt,
1404
1420
  vt
@@ -1406,7 +1422,7 @@ const tt = e.object({
1406
1422
  Dt,
1407
1423
  Lt,
1408
1424
  xt
1409
- ]), An = /* @__PURE__ */ new Set([
1425
+ ]), wn = /* @__PURE__ */ new Set([
1410
1426
  "BOOLEAN",
1411
1427
  "CARDS",
1412
1428
  "CHOICE",
@@ -1420,7 +1436,7 @@ const tt = e.object({
1420
1436
  "TEL",
1421
1437
  "TEXT",
1422
1438
  "URL"
1423
- ]), In = e.object({
1439
+ ]), Nn = e.object({
1424
1440
  id: e.string(),
1425
1441
  type: e.literal("submit"),
1426
1442
  label: e.string(),
@@ -1429,13 +1445,13 @@ const tt = e.object({
1429
1445
  order: e.number().optional(),
1430
1446
  visible: e.boolean().optional().default(!0),
1431
1447
  customizations: e.record(e.string(), e.any()).optional()
1432
- }), E = e.object({
1448
+ }), S = e.object({
1433
1449
  x: e.number(),
1434
1450
  y: e.number()
1435
1451
  }), Ut = e.object({
1436
1452
  id: e.string(),
1437
1453
  type: e.literal("FLOW"),
1438
- coordinates: E,
1454
+ coordinates: S,
1439
1455
  alias: e.string().min(1).max(150).optional(),
1440
1456
  config: e.object({
1441
1457
  flow_id: e.string().max(30),
@@ -1444,7 +1460,7 @@ const tt = e.object({
1444
1460
  }), Ft = e.object({
1445
1461
  id: e.string(),
1446
1462
  type: e.literal("ROUTER"),
1447
- coordinates: E,
1463
+ coordinates: S,
1448
1464
  alias: e.string().min(1).max(150),
1449
1465
  config: e.object({
1450
1466
  rules: e.array(
@@ -1460,7 +1476,7 @@ const tt = e.object({
1460
1476
  }), Pt = e.object({
1461
1477
  id: e.string(),
1462
1478
  type: e.literal("STEP"),
1463
- coordinates: E,
1479
+ coordinates: S,
1464
1480
  alias: e.string().min(1).max(150).optional(),
1465
1481
  config: e.object({
1466
1482
  components: e.array(M),
@@ -1487,7 +1503,7 @@ const tt = e.object({
1487
1503
  start: e.object({
1488
1504
  hidden_fields: e.array(e.object({ key: e.string(), value: e.string() })).optional(),
1489
1505
  next_node: e.string().optional(),
1490
- coordinates: E.optional()
1506
+ coordinates: S.optional()
1491
1507
  }).optional(),
1492
1508
  ending: e.object({
1493
1509
  redirection: e.object({
@@ -1495,7 +1511,7 @@ const tt = e.object({
1495
1511
  target: e.string().optional()
1496
1512
  }).optional(),
1497
1513
  after_submit: e.object({ flow_id: e.string().optional() }).optional(),
1498
- coordinates: E.optional(),
1514
+ coordinates: S.optional(),
1499
1515
  resume_flow: e.boolean().optional()
1500
1516
  }).optional(),
1501
1517
  style: e.object({ css: e.string().optional() }).optional(),
@@ -1505,7 +1521,7 @@ const tt = e.object({
1505
1521
  }).optional()
1506
1522
  }).openapi({
1507
1523
  description: "Schema for flow-based forms (matches Auth0 Forms structure)"
1508
- }), Cn = e.object({
1524
+ }), jn = e.object({
1509
1525
  ...a.shape,
1510
1526
  ...Ht.shape,
1511
1527
  id: e.string()
@@ -1513,12 +1529,12 @@ const tt = e.object({
1513
1529
  id: e.number().optional(),
1514
1530
  text: e.string(),
1515
1531
  type: e.enum(["info", "error", "success", "warning"])
1516
- }), Wt = e.object({
1532
+ }), Bt = e.object({
1517
1533
  id: e.string().optional(),
1518
1534
  text: e.string(),
1519
1535
  href: e.string(),
1520
1536
  linkText: e.string().optional()
1521
- }), Tn = e.object({
1537
+ }), kn = e.object({
1522
1538
  /** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
1523
1539
  name: e.string().optional(),
1524
1540
  action: e.string(),
@@ -1527,17 +1543,17 @@ const tt = e.object({
1527
1543
  description: e.string().optional(),
1528
1544
  components: e.array(M),
1529
1545
  messages: e.array(Gt).optional(),
1530
- links: e.array(Wt).optional(),
1546
+ links: e.array(Bt).optional(),
1531
1547
  /** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
1532
1548
  footer: e.string().optional()
1533
1549
  });
1534
- function On(t) {
1550
+ function Rn(t) {
1535
1551
  return t.category === "BLOCK";
1536
1552
  }
1537
- function Nn(t) {
1553
+ function vn(t) {
1538
1554
  return t.category === "WIDGET";
1539
1555
  }
1540
- function wn(t) {
1556
+ function Dn(t) {
1541
1557
  return t.category === "FIELD";
1542
1558
  }
1543
1559
  const H = e.enum([
@@ -1556,12 +1572,12 @@ const H = e.enum([
1556
1572
  "validate-registration-username",
1557
1573
  "pre-user-deletion",
1558
1574
  "post-user-deletion"
1559
- ]), W = e.enum([
1575
+ ]), B = e.enum([
1560
1576
  "post-user-login",
1561
1577
  "post-user-registration",
1562
1578
  "post-user-update",
1563
1579
  "credentials-exchange"
1564
- ]), B = e.enum([
1580
+ ]), W = e.enum([
1565
1581
  "post-user-login",
1566
1582
  "credentials-exchange",
1567
1583
  "pre-user-registration",
@@ -1570,7 +1586,7 @@ const H = e.enum([
1570
1586
  "ensure-username",
1571
1587
  "set-preferred-username",
1572
1588
  "account-linking"
1573
- ]), jn = {
1589
+ ]), Ln = {
1574
1590
  "ensure-username": {
1575
1591
  name: "Ensure Username",
1576
1592
  description: "Automatically assigns a username to users who sign in without one. Creates a linked username account for social/email users.",
@@ -1607,7 +1623,7 @@ const H = e.enum([
1607
1623
  * Everything else is opaque to the runtime. Persisted as JSON.
1608
1624
  */
1609
1625
  metadata: e.record(e.unknown()).optional()
1610
- }, Bt = e.object({
1626
+ }, Wt = e.object({
1611
1627
  ...c,
1612
1628
  trigger_id: H,
1613
1629
  url: e.string()
@@ -1617,14 +1633,14 @@ const H = e.enum([
1617
1633
  form_id: e.string()
1618
1634
  }), zt = e.object({
1619
1635
  ...c,
1620
- trigger_id: W,
1636
+ trigger_id: B,
1621
1637
  template_id: K
1622
1638
  }), qt = e.object({
1623
1639
  ...c,
1624
- trigger_id: B,
1640
+ trigger_id: W,
1625
1641
  code_id: e.string()
1626
- }), kn = e.union([
1627
- Bt,
1642
+ }), xn = e.union([
1643
+ Wt,
1628
1644
  Kt,
1629
1645
  zt,
1630
1646
  qt
@@ -1642,17 +1658,17 @@ const H = e.enum([
1642
1658
  form_id: e.string()
1643
1659
  }), Yt = e.object({
1644
1660
  ...c,
1645
- trigger_id: W,
1661
+ trigger_id: B,
1646
1662
  ...a.shape,
1647
1663
  hook_id: e.string(),
1648
1664
  template_id: K
1649
1665
  }), Zt = e.object({
1650
1666
  ...c,
1651
- trigger_id: B,
1667
+ trigger_id: W,
1652
1668
  ...a.shape,
1653
1669
  hook_id: e.string(),
1654
1670
  code_id: e.string()
1655
- }), Rn = e.union([
1671
+ }), Un = e.union([
1656
1672
  Xt,
1657
1673
  Vt,
1658
1674
  Yt,
@@ -1660,7 +1676,7 @@ const H = e.enum([
1660
1676
  ]), Qt = e.object({
1661
1677
  code: e.string().max(1e5),
1662
1678
  secrets: e.record(e.string()).optional()
1663
- }), vn = Qt.extend({
1679
+ }), Fn = Qt.extend({
1664
1680
  id: e.string(),
1665
1681
  tenant_id: e.string(),
1666
1682
  ...a.shape
@@ -1680,7 +1696,7 @@ const H = e.enum([
1680
1696
  ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
1681
1697
  roles: e.array(e.string()).default([]).optional(),
1682
1698
  send_invitation_email: e.boolean().default(!0).optional()
1683
- }), Dn = e.object({
1699
+ }), Pn = e.object({
1684
1700
  id: e.string(),
1685
1701
  organization_id: e.string().max(50),
1686
1702
  created_at: e.string().datetime(),
@@ -1725,9 +1741,9 @@ const H = e.enum([
1725
1741
  path: [n],
1726
1742
  message: `EC JWK is missing required member '${n}'`
1727
1743
  });
1728
- }), Ln = e.object({
1744
+ }), Mn = e.object({
1729
1745
  keys: e.array(to)
1730
- }), xn = e.object({
1746
+ }), Hn = e.object({
1731
1747
  issuer: e.string(),
1732
1748
  authorization_endpoint: e.string(),
1733
1749
  token_endpoint: e.string(),
@@ -1781,7 +1797,7 @@ const oo = e.nativeEnum(z), no = e.object({
1781
1797
  // ISO timestamp persisted for audit/metadata; not used to reject resumed sessions
1782
1798
  }).openapi({
1783
1799
  description: "This represents a login sesion"
1784
- }), Un = e.object({
1800
+ }), Gn = e.object({
1785
1801
  ...io.shape,
1786
1802
  id: e.string().openapi({
1787
1803
  description: "This is is used as the state in the universal login"
@@ -2001,7 +2017,7 @@ const oo = e.nativeEnum(z), no = e.object({
2001
2017
  auth0_client: ro.optional(),
2002
2018
  log_id: e.string().optional(),
2003
2019
  location_info: lo.optional()
2004
- }), Fn = e.object({
2020
+ }), Bn = e.object({
2005
2021
  ...co.shape,
2006
2022
  log_id: e.string()
2007
2023
  }), po = e.enum([
@@ -2011,11 +2027,7 @@ const oo = e.nativeEnum(z), no = e.object({
2011
2027
  "splunk",
2012
2028
  "datadog",
2013
2029
  "sumo"
2014
- ]), q = e.enum([
2015
- "active",
2016
- "paused",
2017
- "suspended"
2018
- ]), _o = e.object({
2030
+ ]), q = e.enum(["active", "paused", "suspended"]), _o = e.object({
2019
2031
  type: e.string(),
2020
2032
  name: e.string()
2021
2033
  }), go = e.object({
@@ -2025,12 +2037,34 @@ const oo = e.nativeEnum(z), no = e.object({
2025
2037
  sink: e.record(e.string(), e.unknown()),
2026
2038
  filters: e.array(_o).optional(),
2027
2039
  isPriority: e.boolean().optional()
2028
- }), Pn = go.extend({
2040
+ }), Wn = go.extend({
2029
2041
  id: e.string(),
2030
2042
  status: q,
2031
2043
  created_at: e.string().optional(),
2032
2044
  updated_at: e.string().optional()
2033
- }), uo = e.object({
2045
+ }), uo = e.enum([
2046
+ "auth0",
2047
+ "cognito",
2048
+ "okta",
2049
+ "oidc"
2050
+ ]), mo = e.object({
2051
+ domain: e.string(),
2052
+ client_id: e.string(),
2053
+ client_secret: e.string(),
2054
+ audience: e.string().optional(),
2055
+ scope: e.string().optional()
2056
+ }), ho = e.object({
2057
+ id: e.string().optional(),
2058
+ name: e.string(),
2059
+ provider: uo,
2060
+ connection: e.string(),
2061
+ enabled: e.boolean().default(!0),
2062
+ credentials: mo
2063
+ }), Kn = e.object({
2064
+ id: e.string(),
2065
+ created_at: e.string(),
2066
+ updated_at: e.string()
2067
+ }).extend(ho.shape), bo = e.object({
2034
2068
  enabled: e.boolean().optional(),
2035
2069
  shields: e.array(e.string()).optional(),
2036
2070
  admin_notification_frequency: e.array(e.string()).optional(),
@@ -2043,13 +2077,13 @@ const oo = e.nativeEnum(z), no = e.object({
2043
2077
  shields: e.array(e.string()).optional()
2044
2078
  }).optional()
2045
2079
  }).optional()
2046
- }), mo = e.object({
2080
+ }), fo = e.object({
2047
2081
  enabled: e.boolean().optional(),
2048
2082
  shields: e.array(e.string()).optional(),
2049
2083
  allowlist: e.array(e.string()).optional(),
2050
2084
  mode: e.string().optional(),
2051
2085
  max_attempts: e.number().optional()
2052
- }), ho = e.object({
2086
+ }), So = e.object({
2053
2087
  enabled: e.boolean().optional(),
2054
2088
  shields: e.array(e.string()).optional(),
2055
2089
  allowlist: e.array(e.string()).optional(),
@@ -2063,17 +2097,17 @@ const oo = e.nativeEnum(z), no = e.object({
2063
2097
  rate: e.number().optional()
2064
2098
  }).optional()
2065
2099
  }).optional()
2066
- }), bo = e.object({
2067
- breached_password_detection: uo.optional(),
2068
- brute_force_protection: mo.optional(),
2069
- suspicious_ip_throttling: ho.optional()
2070
- }), fo = e.object({
2100
+ }), Eo = e.object({
2101
+ breached_password_detection: bo.optional(),
2102
+ brute_force_protection: fo.optional(),
2103
+ suspicious_ip_throttling: So.optional()
2104
+ }), yo = e.object({
2071
2105
  id: e.string().optional(),
2072
2106
  user_id: e.string(),
2073
2107
  password: e.string(),
2074
2108
  algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id"),
2075
2109
  is_current: e.boolean().default(!0)
2076
- }), Mn = fo.extend({
2110
+ }), zn = yo.extend({
2077
2111
  id: e.string(),
2078
2112
  created_at: e.string(),
2079
2113
  updated_at: e.string()
@@ -2084,7 +2118,7 @@ const oo = e.nativeEnum(z), no = e.object({
2084
2118
  last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
2085
2119
  last_ip: e.string().describe("Last IP address from which this user logged in"),
2086
2120
  last_asn: e.string().describe("Last autonomous system number from which this user logged in")
2087
- }), Eo = e.object({
2121
+ }), Ao = e.object({
2088
2122
  id: e.string(),
2089
2123
  revoked_at: e.string().optional(),
2090
2124
  used_at: e.string().optional(),
@@ -2096,13 +2130,13 @@ const oo = e.nativeEnum(z), no = e.object({
2096
2130
  "Metadata related to the device used in the session"
2097
2131
  ),
2098
2132
  clients: e.array(e.string()).describe("List of client details for the session")
2099
- }), Hn = e.object({
2133
+ }), qn = e.object({
2100
2134
  created_at: e.string(),
2101
2135
  updated_at: e.string(),
2102
2136
  authenticated_at: e.string(),
2103
2137
  last_interaction_at: e.string(),
2104
- ...Eo.shape
2105
- }), Gn = e.object({
2138
+ ...Ao.shape
2139
+ }), Xn = e.object({
2106
2140
  kid: e.string().openapi({ description: "The key id of the signing key" }),
2107
2141
  tenant_id: e.string().optional().openapi({
2108
2142
  description: "The tenant the key belongs to. Omitted means the key is shared / control-plane scoped."
@@ -2130,7 +2164,7 @@ const oo = e.nativeEnum(z), no = e.object({
2130
2164
  type: e.enum(["jwt_signing", "saml_encryption"]).openapi({
2131
2165
  description: "The type of the signing key"
2132
2166
  })
2133
- }), So = e.object({
2167
+ }), Io = e.object({
2134
2168
  id: e.string().optional(),
2135
2169
  // Basic settings
2136
2170
  audience: e.string(),
@@ -2283,7 +2317,7 @@ const oo = e.nativeEnum(z), no = e.object({
2283
2317
  pushed_authorization_requests_supported: e.boolean().optional(),
2284
2318
  authorization_response_iss_parameter_supported: e.boolean().optional(),
2285
2319
  // Attack-protection config (singleton, exposed via /api/v2/attack-protection)
2286
- attack_protection: bo.optional(),
2320
+ attack_protection: Eo.optional(),
2287
2321
  // Guardian MFA Factors configuration (internal storage, exposed via /guardian API)
2288
2322
  mfa: e.object({
2289
2323
  // MFA policy: "never" = MFA disabled, "always" = MFA required for all logins
@@ -2315,14 +2349,14 @@ const oo = e.nativeEnum(z), no = e.object({
2315
2349
  message: e.string().optional()
2316
2350
  }).optional()
2317
2351
  }).optional()
2318
- }), Wn = e.object({
2352
+ }), Vn = e.object({
2319
2353
  created_at: e.string().nullable().transform((t) => t ?? ""),
2320
2354
  updated_at: e.string().nullable().transform((t) => t ?? ""),
2321
- ...So.shape,
2355
+ ...Io.shape,
2322
2356
  id: e.string()
2323
2357
  });
2324
- var yo = /* @__PURE__ */ ((t) => (t.RefreshToken = "refresh_token", t.AuthorizationCode = "authorization_code", t.ClientCredential = "client_credentials", t.Passwordless = "passwordless", t.Password = "password", t.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", t))(yo || {});
2325
- const Bn = e.object({
2358
+ var Co = /* @__PURE__ */ ((t) => (t.RefreshToken = "refresh_token", t.AuthorizationCode = "authorization_code", t.ClientCredential = "client_credentials", t.Passwordless = "passwordless", t.Password = "password", t.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", t))(Co || {});
2359
+ const Yn = e.object({
2326
2360
  access_token: e.string(),
2327
2361
  id_token: e.string().optional(),
2328
2362
  scope: e.string().optional(),
@@ -2335,7 +2369,7 @@ e.object({
2335
2369
  code: e.string(),
2336
2370
  state: e.string().optional()
2337
2371
  });
2338
- const Ao = e.object({
2372
+ const To = e.object({
2339
2373
  button_border_radius: e.number(),
2340
2374
  button_border_weight: e.number(),
2341
2375
  buttons_style: e.enum(["pill", "rounded", "sharp"]),
@@ -2345,7 +2379,7 @@ const Ao = e.object({
2345
2379
  show_widget_shadow: e.boolean(),
2346
2380
  widget_border_weight: e.number(),
2347
2381
  widget_corner_radius: e.number()
2348
- }), Io = e.object({
2382
+ }), Oo = e.object({
2349
2383
  base_focus_color: e.string(),
2350
2384
  base_hover_color: e.string(),
2351
2385
  body_text: e.string(),
@@ -2368,7 +2402,7 @@ const Ao = e.object({
2368
2402
  }), u = e.object({
2369
2403
  bold: e.boolean(),
2370
2404
  size: e.number()
2371
- }), Co = e.object({
2405
+ }), wo = e.object({
2372
2406
  body_text: u,
2373
2407
  buttons_text: u,
2374
2408
  font_url: e.string(),
@@ -2378,7 +2412,7 @@ const Ao = e.object({
2378
2412
  reference_text_size: e.number(),
2379
2413
  subtitle: u,
2380
2414
  title: u
2381
- }), To = e.object({
2415
+ }), No = e.object({
2382
2416
  background_color: e.string(),
2383
2417
  background_image_url: e.string(),
2384
2418
  page_layout: e.enum(["center", "left", "right"]),
@@ -2391,33 +2425,33 @@ const Ao = e.object({
2391
2425
  * Optional for backwards compatibility; absent values mean "widget".
2392
2426
  */
2393
2427
  logo_placement: e.enum(["widget", "chip", "none"]).optional()
2394
- }), Oo = e.object({
2428
+ }), jo = e.object({
2395
2429
  header_text_alignment: e.enum(["center", "left", "right"]),
2396
2430
  logo_height: e.number(),
2397
2431
  logo_position: e.enum(["center", "left", "none", "right"]),
2398
2432
  logo_url: e.string(),
2399
2433
  social_buttons_layout: e.enum(["bottom", "top"])
2400
- }), No = e.object({
2401
- borders: Ao,
2402
- colors: Io,
2434
+ }), ko = e.object({
2435
+ borders: To,
2436
+ colors: Oo,
2403
2437
  displayName: e.string(),
2404
- fonts: Co,
2405
- page_background: To,
2406
- widget: Oo
2407
- }), Kn = No.extend({
2438
+ fonts: wo,
2439
+ page_background: No,
2440
+ widget: jo
2441
+ }), Zn = ko.extend({
2408
2442
  themeId: e.string()
2409
- }), zn = e.object({
2443
+ }), Qn = e.object({
2410
2444
  universal_login_experience: e.enum(["new", "classic"]).default("new"),
2411
2445
  identifier_first: e.boolean().default(!0),
2412
2446
  password_first: e.boolean().default(!1),
2413
2447
  webauthn_platform_first_factor: e.boolean()
2414
- }), qn = e.object({
2448
+ }), $n = e.object({
2415
2449
  name: e.string(),
2416
2450
  enabled: e.boolean().optional().default(!0),
2417
2451
  default_from_address: e.string().optional(),
2418
2452
  credentials: e.record(e.string(), e.unknown()),
2419
2453
  settings: e.object({}).optional()
2420
- }), wo = e.enum([
2454
+ }), Ro = e.enum([
2421
2455
  "verify_email",
2422
2456
  "verify_email_by_code",
2423
2457
  "reset_email",
@@ -2430,8 +2464,8 @@ const Ao = e.object({
2430
2464
  "change_password",
2431
2465
  "password_reset",
2432
2466
  "user_invitation"
2433
- ]), Xn = e.object({
2434
- template: wo,
2467
+ ]), Jn = e.object({
2468
+ template: Ro,
2435
2469
  body: e.string(),
2436
2470
  from: e.string(),
2437
2471
  subject: e.string(),
@@ -2440,7 +2474,7 @@ const Ao = e.object({
2440
2474
  urlLifetimeInSeconds: e.number().int().nonnegative().optional(),
2441
2475
  includeEmailInRedirect: e.boolean().default(!1),
2442
2476
  enabled: e.boolean().default(!0)
2443
- }), jo = e.object({
2477
+ }), vo = e.object({
2444
2478
  // Internal primary key (ULID). Never sent to clients in the new wire format.
2445
2479
  id: e.string(),
2446
2480
  // Link to the login session
@@ -2474,23 +2508,23 @@ const Ao = e.object({
2474
2508
  // ISO of the *first* rotation. Anchors the leeway window so siblings minted
2475
2509
  // within the window don't extend the parent's exposure.
2476
2510
  rotated_at: e.string().optional()
2477
- }), Vn = e.object({
2511
+ }), ei = e.object({
2478
2512
  // When the refresh token record was created.
2479
2513
  created_at: e.string(),
2480
2514
  // When the token was explicitly revoked (null = still active).
2481
2515
  revoked_at: e.string().optional(),
2482
2516
  // Spread in the rest of the refresh token properties.
2483
- ...jo.shape
2484
- }), Yn = e.object({
2517
+ ...vo.shape
2518
+ }), ti = e.object({
2485
2519
  to: e.string(),
2486
2520
  message: e.string()
2487
- }), Zn = e.object({
2521
+ }), oi = e.object({
2488
2522
  name: e.string(),
2489
2523
  options: e.object({})
2490
- }), ko = e.object({
2524
+ }), Do = e.object({
2491
2525
  value: e.string(),
2492
2526
  description: e.string().optional()
2493
- }), Ro = e.object({
2527
+ }), Lo = e.object({
2494
2528
  token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
2495
2529
  enforce_policies: e.boolean().optional(),
2496
2530
  allow_skipping_userinfo: e.boolean().optional(),
@@ -2500,11 +2534,11 @@ const Ao = e.object({
2500
2534
  mtls: e.object({
2501
2535
  bound_access_tokens: e.boolean().optional()
2502
2536
  }).optional()
2503
- }), vo = e.object({
2537
+ }), xo = e.object({
2504
2538
  id: e.string().optional(),
2505
2539
  name: e.string(),
2506
2540
  identifier: e.string(),
2507
- scopes: e.array(ko).optional(),
2541
+ scopes: e.array(Do).optional(),
2508
2542
  signing_alg: e.string().optional(),
2509
2543
  signing_secret: e.string().optional(),
2510
2544
  token_lifetime: e.number().default(86400),
@@ -2512,30 +2546,30 @@ const Ao = e.object({
2512
2546
  skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
2513
2547
  allow_offline_access: e.boolean().optional(),
2514
2548
  verificationKey: e.string().optional(),
2515
- options: Ro.optional(),
2549
+ options: Lo.optional(),
2516
2550
  is_system: e.boolean().optional(),
2517
2551
  metadata: e.record(e.any()).optional()
2518
- }), Do = e.object({
2519
- ...vo.shape,
2552
+ }), Uo = e.object({
2553
+ ...xo.shape,
2520
2554
  created_at: e.string().optional(),
2521
2555
  updated_at: e.string().optional()
2522
- }), Qn = e.array(Do), Lo = e.object({
2556
+ }), ni = e.array(Uo), Fo = e.object({
2523
2557
  role_id: e.string(),
2524
2558
  resource_server_identifier: e.string(),
2525
2559
  permission_name: e.string()
2526
- }), xo = e.object({
2527
- ...Lo.shape,
2560
+ }), Po = e.object({
2561
+ ...Fo.shape,
2528
2562
  created_at: e.string()
2529
- }), $n = e.array(xo), Uo = e.object({
2563
+ }), ii = e.array(Po), Mo = e.object({
2530
2564
  user_id: e.string(),
2531
2565
  resource_server_identifier: e.string(),
2532
2566
  permission_name: e.string(),
2533
2567
  organization_id: e.string().optional()
2534
- }), Fo = e.object({
2535
- ...Uo.shape,
2568
+ }), Ho = e.object({
2569
+ ...Mo.shape,
2536
2570
  tenant_id: e.string(),
2537
2571
  created_at: e.string().optional()
2538
- }), Jn = e.array(Fo), Po = e.object({
2572
+ }), ai = e.array(Ho), Go = e.object({
2539
2573
  user_id: e.string(),
2540
2574
  resource_server_identifier: e.string(),
2541
2575
  resource_server_name: e.string(),
@@ -2543,17 +2577,17 @@ const Ao = e.object({
2543
2577
  description: e.string().nullable().optional(),
2544
2578
  created_at: e.string().optional(),
2545
2579
  organization_id: e.string().optional()
2546
- }), ei = e.array(
2547
- Po
2548
- ), Mo = e.object({
2580
+ }), si = e.array(
2581
+ Go
2582
+ ), Bo = e.object({
2549
2583
  user_id: e.string(),
2550
2584
  role_id: e.string(),
2551
2585
  organization_id: e.string().optional()
2552
- }), Ho = e.object({
2553
- ...Mo.shape,
2586
+ }), Wo = e.object({
2587
+ ...Bo.shape,
2554
2588
  tenant_id: e.string(),
2555
2589
  created_at: e.string().optional()
2556
- }), ti = e.array(Ho), Go = e.object({
2590
+ }), ri = e.array(Wo), Ko = e.object({
2557
2591
  id: e.string().optional().openapi({
2558
2592
  description: "The unique identifier of the role. If not provided, one will be generated."
2559
2593
  }),
@@ -2567,13 +2601,13 @@ const Ao = e.object({
2567
2601
  metadata: e.record(e.any()).optional().openapi({
2568
2602
  description: "Metadata associated with the role. Can be used to control sync behavior in multi-tenancy scenarios."
2569
2603
  })
2570
- }), Wo = Go.extend({
2604
+ }), zo = Ko.extend({
2571
2605
  id: e.string().openapi({
2572
2606
  description: "The unique identifier of the role"
2573
2607
  }),
2574
2608
  created_at: e.string().optional(),
2575
2609
  updated_at: e.string().optional()
2576
- }), oi = e.array(Wo), Bo = e.object({
2610
+ }), li = e.array(zo), qo = e.object({
2577
2611
  logo_url: e.string().optional().openapi({
2578
2612
  description: "URL of the organization's logo"
2579
2613
  }),
@@ -2585,7 +2619,7 @@ const Ao = e.object({
2585
2619
  description: "Page background color in hex format (e.g., #FFFFFF)"
2586
2620
  })
2587
2621
  }).optional()
2588
- }).optional(), Ko = e.object({
2622
+ }).optional(), Xo = e.object({
2589
2623
  connection_id: e.string().openapi({
2590
2624
  description: "ID of the connection"
2591
2625
  }),
@@ -2598,7 +2632,7 @@ const Ao = e.object({
2598
2632
  is_signup_enabled: e.boolean().default(!0).openapi({
2599
2633
  description: "Whether signup is enabled for this connection"
2600
2634
  })
2601
- }), zo = e.object({
2635
+ }), Vo = e.object({
2602
2636
  client_credentials: e.object({
2603
2637
  enforce: e.boolean().default(!1).openapi({
2604
2638
  description: "Whether to enforce token quota limits"
@@ -2610,7 +2644,7 @@ const Ao = e.object({
2610
2644
  description: "Maximum tokens per hour (0 = unlimited)"
2611
2645
  })
2612
2646
  }).optional()
2613
- }).optional(), qo = e.object({
2647
+ }).optional(), Yo = e.object({
2614
2648
  id: e.string().optional(),
2615
2649
  name: e.string().min(1).regex(/^[a-z0-9_-]+$/, {
2616
2650
  message: "Organization name must be lowercase and can only contain letters, numbers, hyphens, and underscores"
@@ -2620,31 +2654,31 @@ const Ao = e.object({
2620
2654
  display_name: e.string().optional().openapi({
2621
2655
  description: "The display name of the organization"
2622
2656
  }),
2623
- branding: Bo,
2657
+ branding: qo,
2624
2658
  metadata: e.record(e.any()).default({}).optional().openapi({
2625
2659
  description: "Custom metadata for the organization"
2626
2660
  }),
2627
- enabled_connections: e.array(Ko).default([]).optional().openapi({
2661
+ enabled_connections: e.array(Xo).default([]).optional().openapi({
2628
2662
  description: "List of enabled connections for the organization"
2629
2663
  }),
2630
- token_quota: zo
2631
- }), ni = e.object({
2632
- ...qo.shape,
2664
+ token_quota: Vo
2665
+ }), ci = e.object({
2666
+ ...Yo.shape,
2633
2667
  ...a.shape,
2634
2668
  id: e.string(),
2635
2669
  // Override name to be lenient when reading from database (to support existing uppercase names)
2636
2670
  name: e.string().min(1).openapi({
2637
2671
  description: "The name of the organization"
2638
2672
  })
2639
- }), Xo = e.object({
2673
+ }), Zo = e.object({
2640
2674
  connection_id: e.string().openapi({
2641
2675
  description: "ID of the tenant-level connection to enable for the org."
2642
2676
  }),
2643
2677
  assign_membership_on_login: e.boolean().optional().default(!1),
2644
2678
  show_as_button: e.boolean().optional().default(!0),
2645
2679
  is_signup_enabled: e.boolean().optional().default(!0)
2646
- }), Vo = e.object({
2647
- ...Xo.shape,
2680
+ }), Qo = e.object({
2681
+ ...Zo.shape,
2648
2682
  // Auth0 includes the embedded connection in GET responses.
2649
2683
  connection: e.object({
2650
2684
  name: e.string().optional(),
@@ -2652,20 +2686,20 @@ const Ao = e.object({
2652
2686
  }).optional(),
2653
2687
  created_at: e.string().optional(),
2654
2688
  updated_at: e.string().optional()
2655
- }), ii = e.array(
2656
- Vo
2657
- ), Yo = e.object({
2689
+ }), pi = e.array(
2690
+ Qo
2691
+ ), $o = e.object({
2658
2692
  user_id: e.string().openapi({
2659
2693
  description: "ID of the user"
2660
2694
  }),
2661
2695
  organization_id: e.string().openapi({
2662
2696
  description: "ID of the organization"
2663
2697
  })
2664
- }), ai = e.object({
2665
- ...Yo.shape,
2698
+ }), di = e.object({
2699
+ ...$o.shape,
2666
2700
  ...a.shape,
2667
2701
  id: e.string()
2668
- }), si = e.object({
2702
+ }), _i = e.object({
2669
2703
  // Session settings
2670
2704
  idle_session_lifetime: e.number().default(72),
2671
2705
  session_lifetime: e.number().default(168),
@@ -2765,7 +2799,7 @@ const Ao = e.object({
2765
2799
  message: e.string().optional()
2766
2800
  }).optional()
2767
2801
  }).optional()
2768
- }), ri = e.object({
2802
+ }), gi = e.object({
2769
2803
  date: e.string().openapi({
2770
2804
  description: "Date these events occurred in ISO 8601 format",
2771
2805
  example: "2025-12-19"
@@ -2790,10 +2824,40 @@ const Ao = e.object({
2790
2824
  description: "Approximate date and time the first event occurred in ISO 8601 format",
2791
2825
  example: "2025-12-19T00:00:00.000Z"
2792
2826
  })
2793
- }), li = e.number().openapi({
2827
+ }), ui = e.number().openapi({
2794
2828
  description: "Number of active users in the last 30 days",
2795
2829
  example: 1234
2796
- }), Zo = e.enum([
2830
+ }), mi = e.enum([
2831
+ "active-users",
2832
+ "logins",
2833
+ "signups",
2834
+ "refresh-tokens",
2835
+ "sessions"
2836
+ ]), hi = e.enum(["hour", "day", "week", "month"]), bi = e.enum([
2837
+ "time",
2838
+ "connection",
2839
+ "client_id",
2840
+ "user_type",
2841
+ "event"
2842
+ ]), fi = e.enum([
2843
+ "password",
2844
+ "social",
2845
+ "passwordless",
2846
+ "enterprise"
2847
+ ]), Jo = e.object({
2848
+ name: e.string(),
2849
+ type: e.string()
2850
+ }), en = e.object({
2851
+ elapsed: e.number(),
2852
+ rows_read: e.number().optional(),
2853
+ bytes_read: e.number().optional()
2854
+ }), Si = e.object({
2855
+ meta: e.array(Jo),
2856
+ data: e.array(e.record(e.string(), e.any())),
2857
+ rows: e.number(),
2858
+ rows_before_limit_at_least: e.number().optional(),
2859
+ statistics: en.optional()
2860
+ }), tn = e.enum([
2797
2861
  "login",
2798
2862
  "login-id",
2799
2863
  "login-password",
@@ -2822,17 +2886,17 @@ const Ao = e.object({
2822
2886
  "custom-form",
2823
2887
  "login-passwordless",
2824
2888
  "mfa-login-options"
2825
- ]), Qo = e.record(e.string(), e.record(e.string(), e.string())).openapi({
2889
+ ]), on = e.record(e.string(), e.record(e.string(), e.string())).openapi({
2826
2890
  type: "object",
2827
2891
  additionalProperties: {
2828
2892
  type: "object",
2829
2893
  additionalProperties: { type: "string" }
2830
2894
  }
2831
- }), ci = e.object({
2832
- prompt: Zo,
2895
+ }), Ei = e.object({
2896
+ prompt: tn,
2833
2897
  language: e.string(),
2834
- custom_text: Qo
2835
- }), pi = {
2898
+ custom_text: on
2899
+ }), yi = {
2836
2900
  EMAIL: "email",
2837
2901
  SMS: "sms",
2838
2902
  USERNAME_PASSWORD: "Username-Password-Authentication",
@@ -2846,13 +2910,12 @@ const Ao = e.object({
2846
2910
  OAUTH2: "oauth2",
2847
2911
  SAMLP: "samlp",
2848
2912
  WAAD: "waad",
2849
- ADFS: "adfs",
2850
- AUTH0: "auth0"
2851
- }, di = {
2913
+ ADFS: "adfs"
2914
+ }, Ai = {
2852
2915
  DATABASE: "database",
2853
2916
  SOCIAL: "social",
2854
2917
  PASSWORDLESS: "passwordless"
2855
- }, $o = e.enum([
2918
+ }, nn = e.enum([
2856
2919
  "phone",
2857
2920
  "totp",
2858
2921
  "email",
@@ -2862,7 +2925,7 @@ const Ao = e.object({
2862
2925
  "passkey"
2863
2926
  ]), V = e.object({
2864
2927
  user_id: e.string(),
2865
- type: $o,
2928
+ type: nn,
2866
2929
  // Phone-specific
2867
2930
  phone_number: e.string().optional(),
2868
2931
  // TOTP-specific
@@ -2896,24 +2959,24 @@ function Y(t, o) {
2896
2959
  path: ["public_key"]
2897
2960
  }));
2898
2961
  }
2899
- const _i = V.superRefine(Y), gi = e.object({
2962
+ const Ii = V.superRefine(Y), Ci = e.object({
2900
2963
  ...V.shape,
2901
2964
  id: e.string(),
2902
2965
  created_at: e.string(),
2903
2966
  updated_at: e.string()
2904
2967
  }).superRefine(Y);
2905
- function ui(t) {
2968
+ function Ti(t) {
2906
2969
  const [o, n] = t.split("|");
2907
2970
  if (!o || !n)
2908
2971
  throw new Error(`Invalid user_id: ${t}`);
2909
2972
  return { connection: o, id: n };
2910
2973
  }
2911
- function mi(t) {
2974
+ function Oi(t) {
2912
2975
  const {
2913
2976
  primary: o,
2914
2977
  secondaries: n,
2915
2978
  syncMethods: h = ["create", "rawCreate", "update", "remove", "delete", "set"]
2916
- } = t, S = {
2979
+ } = t, E = {
2917
2980
  get(p, s) {
2918
2981
  if (typeof s == "symbol")
2919
2982
  return p[s];
@@ -2947,13 +3010,13 @@ function mi(t) {
2947
3010
  } : d.bind(p);
2948
3011
  }
2949
3012
  };
2950
- return new Proxy(o, S);
3013
+ return new Proxy(o, E);
2951
3014
  }
2952
- function hi(t) {
3015
+ function wi(t) {
2953
3016
  return t;
2954
3017
  }
2955
- function bi(t) {
2956
- var S, p, s, d, _, y, g, r, b, A, f, I;
3018
+ function Ni(t) {
3019
+ var E, p, s, d, _, y, g, r, b, A, f, I;
2957
3020
  const o = t == null ? void 0 : t.options;
2958
3021
  if (!o)
2959
3022
  return {
@@ -2964,7 +3027,7 @@ function bi(t) {
2964
3027
  };
2965
3028
  const n = o.attributes;
2966
3029
  if (n) {
2967
- const Z = ((p = (S = n.username) == null ? void 0 : S.identifier) == null ? void 0 : p.active) === !0, Q = ((d = (s = n.email) == null ? void 0 : s.identifier) == null ? void 0 : d.active) !== !1, $ = ((y = (_ = n.username) == null ? void 0 : _.validation) == null ? void 0 : y.min_length) ?? 1, J = ((r = (g = n.username) == null ? void 0 : g.validation) == null ? void 0 : r.max_length) ?? 15;
3030
+ const Z = ((p = (E = n.username) == null ? void 0 : E.identifier) == null ? void 0 : p.active) === !0, Q = ((d = (s = n.email) == null ? void 0 : s.identifier) == null ? void 0 : d.active) !== !1, $ = ((y = (_ = n.username) == null ? void 0 : _.validation) == null ? void 0 : y.min_length) ?? 1, J = ((r = (g = n.username) == null ? void 0 : g.validation) == null ? void 0 : r.max_length) ?? 15;
2968
3031
  return {
2969
3032
  usernameIdentifierActive: Z,
2970
3033
  emailIdentifierActive: Q,
@@ -2979,31 +3042,31 @@ function bi(t) {
2979
3042
  usernameMaxLength: ((I = (f = o.validation) == null ? void 0 : f.username) == null ? void 0 : I.max) ?? 15
2980
3043
  };
2981
3044
  }
2982
- function fi(t) {
3045
+ function ji(t) {
2983
3046
  return typeof t == "object" && t !== null && !Array.isArray(t);
2984
3047
  }
2985
3048
  export {
2986
- rn as Auth0ActionEnum,
3049
+ _n as Auth0ActionEnum,
2987
3050
  ro as Auth0Client,
2988
3051
  F as AuthorizationResponseMode,
2989
3052
  U as AuthorizationResponseType,
2990
3053
  P as CodeChallengeMethod,
2991
3054
  x as ComponentCategory,
2992
3055
  L as ComponentType,
2993
- ln as EmailActionEnum,
2994
- An as FORM_FIELD_TYPES,
2995
- sn as FlowActionTypeEnum,
2996
- yo as GrantType,
3056
+ gn as EmailActionEnum,
3057
+ wn as FORM_FIELD_TYPES,
3058
+ dn as FlowActionTypeEnum,
3059
+ Co as GrantType,
2997
3060
  lo as LocationInfo,
2998
3061
  ao as LogTypes,
2999
3062
  z as LoginSessionState,
3000
3063
  Ge as NodeType,
3001
- Ee as RedirectTargetEnum,
3002
- pi as Strategy,
3003
- di as StrategyType,
3064
+ Se as RedirectTargetEnum,
3065
+ yi as Strategy,
3066
+ Ai as StrategyType,
3004
3067
  k as actionDependencySchema,
3005
3068
  oe as actionExecutionErrorSchema,
3006
- on as actionExecutionInsertSchema,
3069
+ ln as actionExecutionInsertSchema,
3007
3070
  ie as actionExecutionLogEntrySchema,
3008
3071
  ae as actionExecutionLogsSchema,
3009
3072
  ne as actionExecutionResultSchema,
@@ -3012,181 +3075,192 @@ export {
3012
3075
  ee as actionExecutionTriggerIdSchema,
3013
3076
  v as actionInsertSchema,
3014
3077
  Ke as actionNodeSchema,
3015
- tn as actionSchema,
3078
+ rn as actionSchema,
3016
3079
  R as actionSecretSchema,
3017
3080
  j as actionTriggerSchema,
3018
- en as actionUpdateSchema,
3081
+ sn as actionUpdateSchema,
3019
3082
  re as actionVersionInsertSchema,
3020
- nn as actionVersionSchema,
3021
- li as activeUsersResponseSchema,
3083
+ cn as actionVersionSchema,
3084
+ ui as activeUsersResponseSchema,
3022
3085
  ce as actorSchema,
3023
3086
  Te as addressSchema,
3024
- bo as attackProtectionSchema,
3087
+ Jo as analyticsColumnMetaSchema,
3088
+ bi as analyticsGroupBySchema,
3089
+ hi as analyticsIntervalSchema,
3090
+ Si as analyticsQueryResponseSchema,
3091
+ mi as analyticsResourceSchema,
3092
+ en as analyticsStatisticsSchema,
3093
+ fi as analyticsUserTypeSchema,
3094
+ Eo as attackProtectionSchema,
3025
3095
  le as auditCategorySchema,
3026
3096
  me as auditEventInsertSchema,
3027
- an as auditEventSchema,
3097
+ pn as auditEventSchema,
3028
3098
  ue as auth0ClientSchema,
3029
- bn as auth0FlowInsertSchema,
3099
+ An as auth0FlowInsertSchema,
3030
3100
  Ye as auth0FlowSchema,
3031
- pn as auth0QuerySchema,
3101
+ mn as auth0QuerySchema,
3032
3102
  be as auth0UpdateUserActionSchema,
3033
- _n as auth0UserResponseSchema,
3103
+ bn as auth0UserResponseSchema,
3034
3104
  Qe as authParamsSchema,
3035
- _i as authenticationMethodInsertSchema,
3036
- gi as authenticationMethodSchema,
3037
- $o as authenticationMethodTypeSchema,
3105
+ Ii as authenticationMethodInsertSchema,
3106
+ Ci as authenticationMethodSchema,
3107
+ nn as authenticationMethodTypeSchema,
3038
3108
  D as baseUserSchema,
3039
3109
  Dt as blockComponentSchema,
3040
- Ao as bordersSchema,
3041
- fn as brandingSchema,
3042
- uo as breachedPasswordDetectionSchema,
3043
- mo as bruteForceProtectionSchema,
3110
+ To as bordersSchema,
3111
+ In as brandingSchema,
3112
+ bo as breachedPasswordDetectionSchema,
3113
+ fo as bruteForceProtectionSchema,
3044
3114
  Ue as buttonComponentSchema,
3045
3115
  Ze as claimsRequestSchema,
3046
3116
  Re as clientGrantInsertSchema,
3047
- mn as clientGrantListSchema,
3117
+ En as clientGrantListSchema,
3048
3118
  ve as clientGrantSchema,
3049
3119
  ke as clientInsertSchema,
3050
3120
  Le as clientRegistrationTokenInsertSchema,
3051
- hn as clientRegistrationTokenSchema,
3121
+ yn as clientRegistrationTokenSchema,
3052
3122
  De as clientRegistrationTokenTypeSchema,
3053
- un as clientSchema,
3123
+ Sn as clientSchema,
3054
3124
  Je as codeInsertSchema,
3055
- En as codeSchema,
3125
+ Cn as codeSchema,
3056
3126
  $e as codeTypeSchema,
3057
- Io as colorsSchema,
3127
+ Oo as colorsSchema,
3058
3128
  Gt as componentMessageSchema,
3059
3129
  He as componentSchema,
3060
3130
  tt as connectionInsertSchema,
3061
3131
  et as connectionOptionsSchema,
3062
- Sn as connectionSchema,
3132
+ Tn as connectionSchema,
3063
3133
  m as coordinatesSchema,
3064
- mi as createPassthroughAdapter,
3065
- hi as createWriteOnlyAdapter,
3134
+ Oi as createPassthroughAdapter,
3135
+ wi as createWriteOnlyAdapter,
3066
3136
  ot as customDomainInsertSchema,
3067
3137
  it as customDomainSchema,
3068
- yn as customDomainWithTenantIdSchema,
3069
- ci as customTextEntrySchema,
3070
- Qo as customTextSchema,
3071
- ri as dailyStatsSchema,
3072
- qn as emailProviderSchema,
3073
- wo as emailTemplateNameSchema,
3074
- Xn as emailTemplateSchema,
3138
+ On as customDomainWithTenantIdSchema,
3139
+ Ei as customTextEntrySchema,
3140
+ on as customTextSchema,
3141
+ gi as dailyStatsSchema,
3142
+ $n as emailProviderSchema,
3143
+ Ro as emailTemplateNameSchema,
3144
+ Jn as emailTemplateSchema,
3075
3145
  he as emailVerificationRulesSchema,
3076
3146
  fe as emailVerifyActionSchema,
3077
3147
  Ve as endingSchema,
3078
3148
  xt as fieldComponentSchema,
3079
3149
  ye as flowActionStepSchema,
3080
3150
  Ae as flowInsertSchema,
3081
- cn as flowSchema,
3151
+ un as flowSchema,
3082
3152
  Pe as flowsFieldComponentSchema,
3083
- Be as flowsFlowNodeSchema,
3084
- We as flowsStepNodeSchema,
3153
+ We as flowsFlowNodeSchema,
3154
+ Be as flowsStepNodeSchema,
3085
3155
  u as fontDetailsSchema,
3086
- Co as fontsSchema,
3087
- In as formControlSchema,
3156
+ wo as fontsSchema,
3157
+ Nn as formControlSchema,
3088
3158
  Ht as formInsertSchema,
3089
3159
  M as formNodeComponentDefinition,
3090
3160
  Mt as formNodeSchema,
3091
- Cn as formSchema,
3161
+ jn as formSchema,
3092
3162
  Me as genericComponentSchema,
3093
3163
  ze as genericNodeSchema,
3094
- bi as getConnectionIdentifierConfig,
3164
+ Ni as getConnectionIdentifierConfig,
3095
3165
  Qt as hookCodeInsertSchema,
3096
- vn as hookCodeSchema,
3097
- kn as hookInsertSchema,
3098
- Rn as hookSchema,
3166
+ Fn as hookCodeSchema,
3167
+ xn as hookInsertSchema,
3168
+ Un as hookSchema,
3099
3169
  K as hookTemplateId,
3100
- jn as hookTemplates,
3170
+ Ln as hookTemplates,
3101
3171
  Ce as identitySchema,
3102
3172
  eo as inviteInsertSchema,
3103
- Dn as inviteSchema,
3173
+ Pn as inviteSchema,
3104
3174
  Jt as inviteeSchema,
3105
3175
  $t as inviterSchema,
3106
- On as isBlockComponent,
3107
- wn as isFieldComponent,
3108
- fi as isPlainObject,
3109
- Nn as isWidgetComponent,
3110
- Ln as jwksKeySchema,
3176
+ Rn as isBlockComponent,
3177
+ Dn as isFieldComponent,
3178
+ ji as isPlainObject,
3179
+ vn as isWidgetComponent,
3180
+ Mn as jwksKeySchema,
3111
3181
  to as jwksSchema,
3112
3182
  Fe as legalComponentSchema,
3113
3183
  ge as locationInfoSchema,
3114
3184
  co as logInsertSchema,
3115
- Fn as logSchema,
3185
+ Bn as logSchema,
3116
3186
  _o as logStreamFilterSchema,
3117
3187
  go as logStreamInsertSchema,
3118
- Pn as logStreamSchema,
3188
+ Wn as logStreamSchema,
3119
3189
  q as logStreamStatusSchema,
3120
3190
  po as logStreamTypeSchema,
3121
3191
  no as loginSessionAuthStrategySchema,
3122
3192
  io as loginSessionInsertSchema,
3123
- Un as loginSessionSchema,
3193
+ Gn as loginSessionSchema,
3124
3194
  oo as loginSessionStateSchema,
3195
+ uo as migrationProviderTypeSchema,
3196
+ mo as migrationSourceCredentialsSchema,
3197
+ ho as migrationSourceInsertSchema,
3198
+ Kn as migrationSourceSchema,
3125
3199
  qe as nodeSchema,
3126
- xn as openIDConfigurationSchema,
3127
- Bo as organizationBrandingSchema,
3128
- Xo as organizationConnectionInsertSchema,
3129
- ii as organizationConnectionListSchema,
3130
- Vo as organizationConnectionSchema,
3131
- Ko as organizationEnabledConnectionSchema,
3132
- qo as organizationInsertSchema,
3133
- ni as organizationSchema,
3134
- zo as organizationTokenQuotaSchema,
3135
- To as pageBackgroundSchema,
3136
- ui as parseUserId,
3137
- fo as passwordInsertSchema,
3138
- Mn as passwordSchema,
3200
+ Hn as openIDConfigurationSchema,
3201
+ qo as organizationBrandingSchema,
3202
+ Zo as organizationConnectionInsertSchema,
3203
+ pi as organizationConnectionListSchema,
3204
+ Qo as organizationConnectionSchema,
3205
+ Xo as organizationEnabledConnectionSchema,
3206
+ Yo as organizationInsertSchema,
3207
+ ci as organizationSchema,
3208
+ Vo as organizationTokenQuotaSchema,
3209
+ No as pageBackgroundSchema,
3210
+ Ti as parseUserId,
3211
+ yo as passwordInsertSchema,
3212
+ zn as passwordSchema,
3139
3213
  Ie as profileDataSchema,
3140
- Zo as promptScreenSchema,
3141
- zn as promptSettingSchema,
3142
- Se as redirectActionSchema,
3143
- jo as refreshTokenInsertSchema,
3144
- Vn as refreshTokenSchema,
3214
+ tn as promptScreenSchema,
3215
+ Qn as promptSettingSchema,
3216
+ Ee as redirectActionSchema,
3217
+ vo as refreshTokenInsertSchema,
3218
+ ei as refreshTokenSchema,
3145
3219
  de as requestContextSchema,
3146
- vo as resourceServerInsertSchema,
3147
- Qn as resourceServerListSchema,
3148
- Ro as resourceServerOptionsSchema,
3149
- Do as resourceServerSchema,
3150
- ko as resourceServerScopeSchema,
3220
+ xo as resourceServerInsertSchema,
3221
+ ni as resourceServerListSchema,
3222
+ Lo as resourceServerOptionsSchema,
3223
+ Uo as resourceServerSchema,
3224
+ Do as resourceServerScopeSchema,
3151
3225
  _e as responseContextSchema,
3152
3226
  xe as richTextComponentSchema,
3153
- Go as roleInsertSchema,
3154
- oi as roleListSchema,
3155
- Lo as rolePermissionInsertSchema,
3156
- $n as rolePermissionListSchema,
3157
- xo as rolePermissionSchema,
3158
- Wo as roleSchema,
3159
- Wt as screenLinkSchema,
3160
- Eo as sessionInsertSchema,
3161
- Hn as sessionSchema,
3162
- Gn as signingKeySchema,
3163
- Zn as smsProviderSchema,
3164
- Yn as smsSendParamsSchema,
3227
+ Ko as roleInsertSchema,
3228
+ li as roleListSchema,
3229
+ Fo as rolePermissionInsertSchema,
3230
+ ii as rolePermissionListSchema,
3231
+ Po as rolePermissionSchema,
3232
+ zo as roleSchema,
3233
+ Bt as screenLinkSchema,
3234
+ Ao as sessionInsertSchema,
3235
+ qn as sessionSchema,
3236
+ Xn as signingKeySchema,
3237
+ oi as smsProviderSchema,
3238
+ ti as smsSendParamsSchema,
3165
3239
  Xe as startSchema,
3166
- ho as suspiciousIpThrottlingSchema,
3240
+ So as suspiciousIpThrottlingSchema,
3167
3241
  pe as targetSchema,
3168
- So as tenantInsertSchema,
3169
- Wn as tenantSchema,
3170
- si as tenantSettingsSchema,
3171
- No as themeInsertSchema,
3172
- Kn as themeSchema,
3173
- Bn as tokenResponseSchema,
3174
- dn as totalsSchema,
3175
- Tn as uiScreenSchema,
3242
+ Io as tenantInsertSchema,
3243
+ Vn as tenantSchema,
3244
+ _i as tenantSettingsSchema,
3245
+ ko as themeInsertSchema,
3246
+ Zn as themeSchema,
3247
+ Yn as tokenResponseSchema,
3248
+ hn as totalsSchema,
3249
+ kn as uiScreenSchema,
3176
3250
  Oe as userInsertSchema,
3177
- Yo as userOrganizationInsertSchema,
3178
- ai as userOrganizationSchema,
3179
- Uo as userPermissionInsertSchema,
3180
- Jn as userPermissionListSchema,
3181
- Fo as userPermissionSchema,
3182
- ei as userPermissionWithDetailsListSchema,
3183
- Po as userPermissionWithDetailsSchema,
3184
- gn as userResponseSchema,
3185
- Mo as userRoleInsertSchema,
3186
- ti as userRoleListSchema,
3187
- Ho as userRoleSchema,
3188
- Ne as userSchema,
3251
+ $o as userOrganizationInsertSchema,
3252
+ di as userOrganizationSchema,
3253
+ Mo as userPermissionInsertSchema,
3254
+ ai as userPermissionListSchema,
3255
+ Ho as userPermissionSchema,
3256
+ si as userPermissionWithDetailsListSchema,
3257
+ Go as userPermissionWithDetailsSchema,
3258
+ fn as userResponseSchema,
3259
+ Bo as userRoleInsertSchema,
3260
+ ri as userRoleListSchema,
3261
+ Wo as userRoleSchema,
3262
+ we as userSchema,
3189
3263
  nt as verificationMethodsSchema,
3190
3264
  Lt as widgetComponentSchema,
3191
- Oo as widgetSchema
3265
+ jo as widgetSchema
3192
3266
  };