authhero 8.4.1 → 8.6.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.
Files changed (29) hide show
  1. package/dist/authhero.cjs +4 -4
  2. package/dist/authhero.d.ts +127 -79
  3. package/dist/authhero.mjs +95 -89
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/index.d.ts +78 -76
  8. package/dist/types/routes/auth-api/index.d.ts +18 -18
  9. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  10. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  11. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  12. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  13. package/dist/types/routes/management-api/clients.d.ts +7 -7
  14. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  15. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  16. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  17. package/dist/types/routes/management-api/forms.d.ts +119 -119
  18. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  19. package/dist/types/routes/management-api/index.d.ts +52 -52
  20. package/dist/types/routes/management-api/logs.d.ts +3 -3
  21. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  22. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/users.d.ts +2 -2
  25. package/dist/types/routes/universal-login/common.d.ts +2 -2
  26. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  27. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  28. package/dist/types/types/AuthHeroConfig.d.ts +33 -1
  29. package/package.json +3 -3
package/dist/authhero.mjs CHANGED
@@ -5134,7 +5134,7 @@ var Jee = (e, t) => {
5134
5134
  }, Uo = (e, t, n, r) => {
5135
5135
  let i = Ho(t, n, r);
5136
5136
  e.header("Set-Cookie", i, { append: !0 });
5137
- }, Wo = "mqjc7m1a", Go = /* @__PURE__ */ p({
5137
+ }, Wo = "mqoyl2ij", Go = /* @__PURE__ */ p({
5138
5138
  common: () => Ko,
5139
5139
  consent: () => qo,
5140
5140
  default: () => ts,
@@ -30025,32 +30025,38 @@ async function GM(e, { user: t, client: n, loginSession: r, existingSessionId: i
30025
30025
  if (s.session_id) return s.session_id;
30026
30026
  throw new _(500, { message: "Login session is authenticated but has no session_id" });
30027
30027
  }
30028
- let l;
30028
+ let l, u;
30029
30029
  if (i) {
30030
30030
  let a = await e.env.data.sessions.get(n.tenant.id, i);
30031
- !a || a.revoked_at ? l = (await WM(e, {
30031
+ if (!a || a.revoked_at) {
30032
+ let i = await WM(e, {
30033
+ user: t,
30034
+ client: n,
30035
+ loginSession: r
30036
+ });
30037
+ l = i.id, u = i.authenticated_at;
30038
+ } else l = i, u = a.authenticated_at, a.clients.includes(n.client_id) || await e.env.data.sessions.update(n.tenant.id, i, { clients: [...a.clients, n.client_id] });
30039
+ } else {
30040
+ let i = await WM(e, {
30032
30041
  user: t,
30033
30042
  client: n,
30034
30043
  loginSession: r
30035
- })).id : (l = i, a.clients.includes(n.client_id) || await e.env.data.sessions.update(n.tenant.id, i, { clients: [...a.clients, n.client_id] }));
30036
- } else l = (await WM(e, {
30037
- user: t,
30038
- client: n,
30039
- loginSession: r
30040
- })).id;
30041
- let { state: u } = IM(c === N.EXPIRED ? N.PENDING : c, {
30044
+ });
30045
+ l = i.id, u = i.authenticated_at;
30046
+ }
30047
+ let { state: d } = IM(c === N.EXPIRED ? N.PENDING : c, {
30042
30048
  type: PM.AUTHENTICATE,
30043
30049
  userId: t.user_id
30044
- }), d = vA({
30050
+ }), f = vA({
30045
30051
  authConnection: a,
30046
30052
  ctxConnection: e.var.connection
30047
30053
  });
30048
30054
  return await e.env.data.loginSessions.update(n.tenant.id, r.id, {
30049
30055
  session_id: l,
30050
- state: u,
30056
+ state: d,
30051
30057
  user_id: t.user_id,
30052
- authenticated_at: (/* @__PURE__ */ new Date()).toISOString(),
30053
- ...d ? { auth_connection: d } : {},
30058
+ authenticated_at: u,
30059
+ ...f ? { auth_connection: f } : {},
30054
30060
  ...o ? { auth_strategy: o } : {},
30055
30061
  ...c === N.EXPIRED ? { expires_at: new Date(Date.now() + SD * 1e3).toISOString() } : {}
30056
30062
  }), l;
@@ -35731,26 +35737,17 @@ var hN = class extends _ {
35731
35737
  "00",
35732
35738
  "(?:[1289]\\d|31|77)\\d{7}|1\\d{6}",
35733
35739
  [7, 9],
35734
- [
35735
- [
35736
- "(\\d)(\\d{3})(\\d{3})",
35737
- "$1 $2 $3",
35738
- ["1[2-9]"],
35739
- "0$1"
35740
- ],
35741
- [
35742
- "(\\d{3})(\\d{3})(\\d{3})",
35743
- "$1 $2 $3",
35744
- ["2"],
35745
- "0$1"
35746
- ],
35747
- [
35748
- "(\\d{3})(\\d{2})(\\d{2})(\\d{2})",
35749
- "$1 $2 $3 $4",
35750
- ["[137-9]"],
35751
- "0$1"
35752
- ]
35753
- ],
35740
+ [[
35741
+ "(\\d)(\\d{3})(\\d{3})",
35742
+ "$1 $2 $3",
35743
+ ["1[2-9]"],
35744
+ "0$1"
35745
+ ], [
35746
+ "(\\d{3})(\\d{2})(\\d{2})(\\d{2})",
35747
+ "$1 $2 $3 $4",
35748
+ ["[1-37-9]"],
35749
+ "0$1"
35750
+ ]],
35754
35751
  "0"
35755
35752
  ],
35756
35753
  MX: [
@@ -37091,7 +37088,7 @@ var hN = class extends _ {
37091
37088
  [
37092
37089
  "(\\d{2})(\\d{3})(\\d{3})",
37093
37090
  "$1 $2 $3",
37094
- ["[37][01]|4[0139]|51|6"],
37091
+ ["[37][01]|4[013]|51|6"],
37095
37092
  "0$1"
37096
37093
  ],
37097
37094
  [
@@ -38033,7 +38030,7 @@ var hN = class extends _ {
38033
38030
  VN: [
38034
38031
  "84",
38035
38032
  "00",
38036
- "[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}",
38033
+ "[12]\\d{9}|[135-9]\\d{8}|[16]\\d{6,7}|7\\d{6}",
38037
38034
  [
38038
38035
  7,
38039
38036
  8,
@@ -38041,13 +38038,6 @@ var hN = class extends _ {
38041
38038
  10
38042
38039
  ],
38043
38040
  [
38044
- [
38045
- "(\\d{2})(\\d{5})",
38046
- "$1 $2",
38047
- ["80"],
38048
- "0$1",
38049
- 1
38050
- ],
38051
38041
  [
38052
38042
  "(\\d{4})(\\d{4,6})",
38053
38043
  "$1 $2",
@@ -38678,13 +38668,13 @@ var hN = class extends _ {
38678
38668
  }
38679
38669
  };
38680
38670
  //#endregion
38681
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/min/exports/withMetadataArgument.js
38671
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/min/exports/withMetadataArgument.js
38682
38672
  function gN(e, t) {
38683
38673
  var n = Array.prototype.slice.call(t);
38684
38674
  return n.push(Mre), e.apply(this, n);
38685
38675
  }
38686
38676
  //#endregion
38687
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/tools/semver-compare.js
38677
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/tools/semver-compare.js
38688
38678
  function _N(e, t) {
38689
38679
  e = e.split("-"), t = t.split("-");
38690
38680
  for (var n = e[0].split("."), r = t[0].split("."), i = 0; i < 3; i++) {
@@ -38697,19 +38687,19 @@ function _N(e, t) {
38697
38687
  return e[1] && t[1] ? e[1] > t[1] ? 1 : e[1] < t[1] ? -1 : 0 : !e[1] && t[1] ? 1 : e[1] && !t[1] ? -1 : 0;
38698
38688
  }
38699
38689
  //#endregion
38700
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/isObject.js
38690
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/isObject.js
38701
38691
  var Nre = {}.constructor;
38702
38692
  function vN(e) {
38703
38693
  return e != null && e.constructor === Nre;
38704
38694
  }
38705
38695
  //#endregion
38706
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/isCallingCode.js
38696
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/isCallingCode.js
38707
38697
  var Pre = /^\d+$/;
38708
38698
  function Fre(e) {
38709
38699
  return Pre.test(e);
38710
38700
  }
38711
38701
  //#endregion
38712
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/metadata.js
38702
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/metadata.js
38713
38703
  function yN(e) {
38714
38704
  "@babel/helpers - typeof";
38715
38705
  return yN = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -39179,7 +39169,7 @@ function AN(e) {
39179
39169
  typeof t == "number" ? (this.v1 = t === 1, this.v2 = t === 2, this.v3 = t === 3, this.v4 = t === 4) : t ? _N(t, Rre) === -1 ? this.v2 = !0 : _N(t, zre) === -1 ? this.v3 = !0 : this.v4 = !0 : this.v1 = !0;
39180
39170
  }
39181
39171
  //#endregion
39182
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/mergeArrays.js
39172
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/mergeArrays.js
39183
39173
  function Wre(e, t) {
39184
39174
  var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
39185
39175
  if (n) return (n = n.call(e)).next.bind(n);
@@ -39217,7 +39207,7 @@ function Kre(e, t) {
39217
39207
  });
39218
39208
  }
39219
39209
  //#endregion
39220
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/checkNumberLength.js
39210
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/checkNumberLength.js
39221
39211
  function MN(e, t, n) {
39222
39212
  return NN(e, void 0, t, n);
39223
39213
  }
@@ -39235,7 +39225,7 @@ function NN(e, t, n, r) {
39235
39225
  return c === s ? "IS_POSSIBLE" : c > s ? "TOO_SHORT" : a[a.length - 1] < s ? "TOO_LONG" : a.indexOf(s, 1) >= 0 ? "IS_POSSIBLE" : "INVALID_LENGTH";
39236
39226
  }
39237
39227
  //#endregion
39238
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/isPossible.js
39228
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/isPossible.js
39239
39229
  function qre(e, t, n) {
39240
39230
  /* istanbul ignore if */
39241
39231
  t === void 0 && (t = {});
@@ -39264,12 +39254,12 @@ function PN(e, t) {
39264
39254
  }
39265
39255
  }
39266
39256
  //#endregion
39267
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/matchesEntirely.js
39257
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/matchesEntirely.js
39268
39258
  function FN(e, t) {
39269
39259
  return e ||= "", RegExp("^(?:" + t + ")$").test(e);
39270
39260
  }
39271
39261
  //#endregion
39272
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getNumberType.js
39262
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/getNumberType.js
39273
39263
  function Jre(e, t) {
39274
39264
  var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
39275
39265
  if (n) return (n = n.call(e)).next.bind(n);
@@ -39327,20 +39317,20 @@ function RN(e, t, n) {
39327
39317
  return !r || !r.pattern() || r.possibleLengths() && r.possibleLengths().indexOf(e.length) < 0 ? !1 : FN(e, r.pattern());
39328
39318
  }
39329
39319
  //#endregion
39330
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/isValid.js
39320
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/isValid.js
39331
39321
  function Zre(e, t, n) {
39332
39322
  t ||= {};
39333
39323
  var r = new wN(n);
39334
39324
  return r.selectNumberingPlan(e.country || e.countryCallingCode), r.hasTypes() ? LN(e, t, r.metadata) !== void 0 : FN(t.v2 ? e.nationalNumber : e.phone, r.nationalNumberPattern());
39335
39325
  }
39336
39326
  //#endregion
39337
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/isCountryCode.js
39327
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/isCountryCode.js
39338
39328
  var Qre = /^[A-Z]{2}$/;
39339
39329
  function $re(e) {
39340
39330
  return Qre.test(e);
39341
39331
  }
39342
39332
  //#endregion
39343
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getCountryAndCallingCodeFromOneOfThem.js
39333
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/getCountryAndCallingCodeFromOneOfThem.js
39344
39334
  var eie = !1;
39345
39335
  function tie(e, t) {
39346
39336
  var n, r, i = new wN(t);
@@ -39350,7 +39340,7 @@ function tie(e, t) {
39350
39340
  };
39351
39341
  }
39352
39342
  //#endregion
39353
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getPossibleCountriesForNumber.js
39343
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/getPossibleCountriesForNumber.js
39354
39344
  function nie(e, t, n) {
39355
39345
  var r = new wN(n).getCountryCodesForCallingCode(e);
39356
39346
  return r ? r.filter(function(e) {
@@ -39362,7 +39352,7 @@ function rie(e, t, n) {
39362
39352
  return r.selectNumberingPlan(t), r.numberingPlan.possibleLengths().indexOf(e.length) >= 0;
39363
39353
  }
39364
39354
  //#endregion
39365
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/constants.js
39355
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/constants.js
39366
39356
  var zN = "0-90-9٠-٩۰-۹", BN = "-‐-―−ー-//.. \xA0­​⁠ ()()[]\\[\\]~⁓∼~", VN = "++", iie = RegExp("([" + zN + "])");
39367
39357
  function aie(e, t, n, r) {
39368
39358
  if (t) {
@@ -39377,7 +39367,7 @@ function aie(e, t, n, r) {
39377
39367
  }
39378
39368
  }
39379
39369
  //#endregion
39380
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js
39370
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js
39381
39371
  function oie(e, t) {
39382
39372
  if (e && t.numberingPlan.nationalPrefixForParsing()) {
39383
39373
  var n = RegExp("^(?:" + t.numberingPlan.nationalPrefixForParsing() + ")"), r = n.exec(e);
@@ -39403,7 +39393,7 @@ function oie(e, t) {
39403
39393
  return { nationalNumber: e };
39404
39394
  }
39405
39395
  //#endregion
39406
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getCountryByNationalNumber.js
39396
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/getCountryByNationalNumber.js
39407
39397
  function sie(e, t) {
39408
39398
  var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
39409
39399
  if (n) return (n = n.call(e)).next.bind(n);
@@ -39443,7 +39433,7 @@ function lie(e, t, n) {
39443
39433
  }
39444
39434
  }
39445
39435
  //#endregion
39446
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getCountryByCallingCode.js
39436
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/getCountryByCallingCode.js
39447
39437
  var uie = !1;
39448
39438
  function UN(e, t) {
39449
39439
  var n = t.nationalNumber, r = t.metadata;
@@ -39453,7 +39443,7 @@ function UN(e, t) {
39453
39443
  if (i) return i.length === 1 ? i[0] : lie(n, i, r.metadata);
39454
39444
  }
39455
39445
  //#endregion
39456
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractNationalNumber.js
39446
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/extractNationalNumber.js
39457
39447
  function WN(e, t, n) {
39458
39448
  var r = oie(e, n), i = r.carrierCode, a = r.nationalNumber;
39459
39449
  return a !== e && (!die(e, a, n) || n.numberingPlan.possibleLengths() && (t ||= UN(n.numberingPlan.callingCode(), {
@@ -39475,7 +39465,7 @@ function fie(e, t, n) {
39475
39465
  }
39476
39466
  }
39477
39467
  //#endregion
39478
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js
39468
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js
39479
39469
  function pie(e, t, n, r, i) {
39480
39470
  if (!(t || n || r)) return { number: e };
39481
39471
  var a = t || n ? ON(t || n, i) : r;
@@ -39491,7 +39481,7 @@ function pie(e, t, n, r, i) {
39491
39481
  return { number: e };
39492
39482
  }
39493
39483
  //#endregion
39494
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCode.js
39484
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCode.js
39495
39485
  function GN(e, t, n, r, i) {
39496
39486
  if (!e) return {};
39497
39487
  var a;
@@ -39523,12 +39513,12 @@ function GN(e, t, n, r, i) {
39523
39513
  return {};
39524
39514
  }
39525
39515
  //#endregion
39526
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js
39516
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js
39527
39517
  function mie(e) {
39528
39518
  return e.replace(RegExp(`[${BN}]+`, "g"), " ").trim();
39529
39519
  }
39530
39520
  //#endregion
39531
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js
39521
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js
39532
39522
  var hie = /(\$\d)/;
39533
39523
  function gie(e, t, n) {
39534
39524
  var r = n.useInternationalFormat, i = n.withNationalPrefix;
@@ -39537,7 +39527,7 @@ function gie(e, t, n) {
39537
39527
  return r ? mie(a) : a;
39538
39528
  }
39539
39529
  //#endregion
39540
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getIddPrefix.js
39530
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/getIddPrefix.js
39541
39531
  var _ie = /^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;
39542
39532
  function vie(e, t, n) {
39543
39533
  var r = new wN(n);
@@ -39545,7 +39535,7 @@ function vie(e, t, n) {
39545
39535
  if (_ie.test(r.IDDPrefix())) return r.IDDPrefix();
39546
39536
  }
39547
39537
  //#endregion
39548
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js
39538
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js
39549
39539
  var yie = ";ext=", KN = function(e) {
39550
39540
  return `([${zN}]{1,${e}})`;
39551
39541
  };
@@ -39554,7 +39544,7 @@ function qN(e) {
39554
39544
  return p + "|" + m + "|" + h + "|" + g + "|" + _ + "|" + v;
39555
39545
  }
39556
39546
  //#endregion
39557
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/isViablePhoneNumber.js
39547
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/isViablePhoneNumber.js
39558
39548
  var bie = "[" + zN + "]{2}", xie = "[" + VN + "]{0,1}(?:[" + BN + "]*[" + zN + "]){3,}[" + BN + zN + "]*", Sie = RegExp("^[" + VN + "]{0,1}(?:[" + BN + "]*[" + zN + "]){1,2}$", "i"), Cie = xie + "(?:" + qN() + ")?", wie = RegExp("^" + bie + "$|^" + Cie + "$", "i");
39559
39549
  function Tie(e) {
39560
39550
  return e.length >= 2 && wie.test(e);
@@ -39563,7 +39553,7 @@ function Eie(e) {
39563
39553
  return Sie.test(e);
39564
39554
  }
39565
39555
  //#endregion
39566
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/RFC3966.js
39556
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/RFC3966.js
39567
39557
  function Die(e) {
39568
39558
  var t = e.number, n = e.ext;
39569
39559
  if (!t) return "";
@@ -39571,7 +39561,7 @@ function Die(e) {
39571
39561
  return `tel:${t}${n ? ";ext=" + n : ""}`;
39572
39562
  }
39573
39563
  //#endregion
39574
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/format.js
39564
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/format.js
39575
39565
  var JN = { formatExtension: function(e, t, n) {
39576
39566
  return `${e}${n.ext()}${t}`;
39577
39567
  } };
@@ -39642,7 +39632,7 @@ function Mie(e, t) {
39642
39632
  }
39643
39633
  }
39644
39634
  //#endregion
39645
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/PhoneNumber.js
39635
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/PhoneNumber.js
39646
39636
  function ZN(e) {
39647
39637
  "@babel/helpers - typeof";
39648
39638
  return ZN = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -39796,7 +39786,7 @@ var Lie = /*#__PURE__*/ function() {
39796
39786
  ]);
39797
39787
  }(), Rie = /^\+\d+$/;
39798
39788
  //#endregion
39799
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/ParseError.js
39789
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/ParseError.js
39800
39790
  function nP(e) {
39801
39791
  "@babel/helpers - typeof";
39802
39792
  return nP = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -39922,7 +39912,7 @@ function Yie(e) {
39922
39912
  }
39923
39913
  }
39924
39914
  //#endregion
39925
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/parseDigits.js
39915
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/parseDigits.js
39926
39916
  var Xie = {
39927
39917
  0: "0",
39928
39918
  1: "1",
@@ -39969,7 +39959,7 @@ function Zie(e) {
39969
39959
  return Xie[e];
39970
39960
  }
39971
39961
  //#endregion
39972
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parseIncompletePhoneNumber.js
39962
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/parseIncompletePhoneNumber.js
39973
39963
  function Qie(e, t) {
39974
39964
  var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
39975
39965
  if (n) return (n = n.call(e)).next.bind(n);
@@ -40027,7 +40017,7 @@ function gP(e) {
40027
40017
  return e === null ? !0 : e.length === 0 ? !1 : nae.test(e) || oae.test(e);
40028
40018
  }
40029
40019
  //#endregion
40030
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js
40020
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js
40031
40021
  function _P(e, t) {
40032
40022
  var n = t.extractFormattedPhoneNumber, r = cae(e);
40033
40023
  if (!gP(r)) throw new cP("NOT_A_NUMBER");
@@ -40042,7 +40032,7 @@ function _P(e, t) {
40042
40032
  if (c > 0 && (i = i.substring(0, c)), i !== "") return i;
40043
40033
  }
40044
40034
  //#endregion
40045
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parse.js
40035
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/parse.js
40046
40036
  var vP = 250, yP = RegExp("[" + VN + zN + "]"), bP = RegExp("[^" + zN + "#]+$"), xP = !1;
40047
40037
  function SP(e, t, n) {
40048
40038
  t ||= {};
@@ -40131,7 +40121,7 @@ function EP(e, t, n, r) {
40131
40121
  };
40132
40122
  }
40133
40123
  //#endregion
40134
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parsePhoneNumberWithError_.js
40124
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/parsePhoneNumberWithError_.js
40135
40125
  function DP(e) {
40136
40126
  "@babel/helpers - typeof";
40137
40127
  return DP = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -40187,7 +40177,7 @@ function NP(e, t, n) {
40187
40177
  return SP(e, kP(kP({}, t), {}, { v2: !0 }), n);
40188
40178
  }
40189
40179
  //#endregion
40190
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/normalizeArguments.js
40180
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/normalizeArguments.js
40191
40181
  function PP(e) {
40192
40182
  "@babel/helpers - typeof";
40193
40183
  return PP = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -40295,7 +40285,7 @@ function KP(e) {
40295
40285
  };
40296
40286
  }
40297
40287
  //#endregion
40298
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parsePhoneNumber_.js
40288
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/parsePhoneNumber_.js
40299
40289
  function qP(e) {
40300
40290
  "@babel/helpers - typeof";
40301
40291
  return qP = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -40357,18 +40347,18 @@ function $P(e, t, n) {
40357
40347
  }
40358
40348
  }
40359
40349
  //#endregion
40360
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parsePhoneNumber.js
40350
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/es6/parsePhoneNumber.js
40361
40351
  function eF() {
40362
40352
  var e = KP(arguments), t = e.text, n = e.options, r = e.metadata;
40363
40353
  return $P(t, n, r);
40364
40354
  }
40365
40355
  //#endregion
40366
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/min/exports/parsePhoneNumber.js
40356
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/min/exports/parsePhoneNumber.js
40367
40357
  function tF() {
40368
40358
  return gN(eF, arguments);
40369
40359
  }
40370
40360
  //#endregion
40371
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/min/exports/isSupportedCountry.js
40361
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.7/node_modules/libphonenumber-js/min/exports/isSupportedCountry.js
40372
40362
  function nF() {
40373
40363
  return gN(kN, arguments);
40374
40364
  }
@@ -50755,7 +50745,7 @@ function uY(t) {
50755
50745
  let n = e.var.tenant_id || e.req.header("tenant-id");
50756
50746
  n && (await r.clients.list(n, {})).clients.flatMap((e) => e.web_origins || []).includes(a) && o(a);
50757
50747
  }
50758
- }), n.onError((e, t) => {
50748
+ }), t.tenantDispatch && n.use(t.tenantDispatch), n.onError((e, t) => {
50759
50749
  if (!(e instanceof _)) throw e;
50760
50750
  let n = e.status;
50761
50751
  if (n < 400 || n >= 500) throw e;
@@ -54075,14 +54065,30 @@ function a$(e, t = [], n = {}) {
54075
54065
  }
54076
54066
  function o$(e, t, n = {}) {
54077
54067
  if (e.protocol !== t.protocol) return !1;
54078
- if (n.allowPathWildcards && t.pathname.includes("*")) {
54068
+ let r = !!n.allowPathWildcards && t.pathname.includes("*");
54069
+ if (r) {
54079
54070
  let n = t.pathname.replace(/\*/g, ".*").replace(/\//g, "\\/");
54080
54071
  if (!RegExp(`^${n}$`).test(e.pathname)) return !1;
54081
54072
  } else if (e.pathname !== t.pathname) return !1;
54082
- if (t.search) {
54083
- for (let [n, r] of t.searchParams) if (e.searchParams.get(n) !== r) return !1;
54073
+ let i = !!n.allowSubDomainWildcards && t.hostname.startsWith("*.") && t.hostname.split(".").length > 2 && ["http:", "https:"].includes(t.protocol), a = !r && !i;
54074
+ for (let n of new Set(t.searchParams.keys())) {
54075
+ let r = t.searchParams.getAll(n).sort(), i = e.searchParams.getAll(n);
54076
+ if (a) {
54077
+ let e = i.slice().sort();
54078
+ if (r.length !== e.length || !r.every((t, n) => t === e[n])) return !1;
54079
+ } else {
54080
+ let e = i.slice();
54081
+ for (let t of r) {
54082
+ let n = e.indexOf(t);
54083
+ if (n === -1) return !1;
54084
+ e.splice(n, 1);
54085
+ }
54086
+ }
54084
54087
  }
54085
- if (n.allowSubDomainWildcards && t.hostname.startsWith("*.") && t.hostname.split(".").length > 2 && ["http:", "https:"].includes(t.protocol)) {
54088
+ if (a) {
54089
+ for (let n of e.searchParams.keys()) if (!t.searchParams.has(n)) return !1;
54090
+ }
54091
+ if (i) {
54086
54092
  let n = t.hostname.split(".").slice(1).join(".");
54087
54093
  return e.hostname === n || e.hostname.endsWith("." + n);
54088
54094
  }
@@ -85531,4 +85537,4 @@ function nde(t) {
85531
85537
  };
85532
85538
  }
85533
85539
  //#endregion
85534
- export { K0 as AppLogo, ft as Auth0ActionEnum, qr as Auth0Client, kue as AuthLayout, sn as AuthorizationResponseMode, on as AuthorizationResponseType, l2 as Button, M9 as ButtonUI, hW as CONTROL_PLANE_SYNC_EVENT_PREFIX, A9 as CardContent, k9 as CardDescription, Aue as CardFooter, D9 as CardHeader, O9 as CardTitle, E9 as CardUI, cn as CodeChallengeMethod, Ht as ComponentCategory, Vt as ComponentType, lY as ControlPlaneSyncDestination, pt as EmailActionEnum, z3 as EmailValidatedPage, V4 as EnterCodePage, X4 as EnterPasswordPage, o2 as ErrorMessage, or as FORM_FIELD_TYPES, tee as FlowActionTypeEnum, q0 as Footer, c3 as ForgotPasswordPage, l3 as ForgotPasswordSentPage, d2 as FormComponent, y2 as GoBack, Mue as GoogleLogo, vi as GrantType, fk as HttpSamlSigner, X0 as Icon, jue as IdentifierForm, f2 as IdentifierPage, j9 as InputUI, P3 as InvalidSession, N9 as LabelUI, a2 as Layout, $9 as LocalCodeExecutor, Jr as LocationInfo, P as LogTypes, N as LoginSessionState, WJ as LogsDestination, BU as MANAGEMENT_API_AUDIENCE, w9 as MANAGEMENT_API_SCOPES, EV as MailgunEmailService, H4 as Message, Xt as NodeType, wQ as PROXY_RESOLVE_HOST_SCOPE, AV as PostmarkEmailService, H3 as PreSignUpConfirmationPage, A3 as PreSignUpPage, _t as RedirectTargetEnum, tY as RegistrationFinalizerDestination, OV as ResendEmailService, i3 as ResetPasswordPage, e3 as SignUpPage, u2 as SocialButton, c2 as Spinner, F as Strategy, Oa as StrategyType, z4 as Trans, bD as USERNAME_PASSWORD_PROVIDER, K4 as UnverifiedEmailPage, Nue as UserNotFoundPage, Pue as VippsLogo, $J as WebhookDestination, He as actionDependencySchema, Ye as actionExecutionErrorSchema, et as actionExecutionInsertSchema, Ze as actionExecutionLogEntrySchema, Qe as actionExecutionLogsSchema, Xe as actionExecutionResultSchema, $e as actionExecutionSchema, Je as actionExecutionStatusSchema, qe as actionExecutionTriggerIdSchema, We as actionInsertSchema, $t as actionNodeSchema, Ke as actionSchema, Ue as actionSecretSchema, Ve as actionTriggerSchema, Ge as actionUpdateSchema, tt as actionVersionInsertSchema, nt as actionVersionSchema, _a as activeUsersResponseSchema, it as actorSchema, EG as addEntityHooks, Et as addressSchema, Sa as analyticsColumnMetaSchema, ba as analyticsGroupBySchema, ya as analyticsIntervalSchema, wa as analyticsQueryResponseSchema, va as analyticsResourceSchema, Ca as analyticsStatisticsSchema, xa as analyticsUserTypeSchema, li as attackProtectionSchema, rt as auditCategorySchema, ut as auditEventInsertSchema, dt as auditEventSchema, lt as auth0ClientSchema, iee as auth0FlowInsertSchema, an as auth0FlowSchema, St as auth0QuerySchema, ht as auth0UpdateUserActionSchema, At as auth0UserResponseSchema, dn as authParamsSchema, Ma as authenticationMethodInsertSchema, Na as authenticationMethodSchema, ka as authenticationMethodTypeSchema, Dt as baseUserSchema, nr as blockComponentSchema, bi as bordersSchema, fn as brandingSchema, oi as breachedPasswordDetectionSchema, si as bruteForceProtectionSchema, Gt as buttonComponentSchema, un as claimsRequestSchema, Z9 as cleanupOutbox, X9 as cleanupSessions, Xue as cleanupUserSessions, Pt as clientGrantInsertSchema, It as clientGrantListSchema, Ft as clientGrantSchema, aG as clientInfoMiddleware, Mt as clientInsertSchema, Rt as clientRegistrationTokenInsertSchema, zt as clientRegistrationTokenSchema, Lt as clientRegistrationTokenTypeSchema, Nt as clientSchema, mn as codeInsertSchema, hn as codeSchema, pn as codeTypeSchema, xi as colorsSchema, hr as componentMessageSchema, Yt as componentSchema, vn as connectionInsertSchema, gn as connectionOptionsSchema, yn as connectionSchema, Bt as coordinatesSchema, IQ as createApplySyncEvents, UU as createAuthMiddleware, Q9 as createDefaultDestinations, Jue as createEncryptedDataAdapter, Yue as createEncryptedDataAdapterWithKeyRing, OG as createInMemoryCache, Fa as createPassthroughAdapter, Ia as createWriteOnlyAdapter, wn as customDomainCertificateUploadSchema, bn as customDomainInsertSchema, Sn as customDomainSchema, Cn as customDomainUpdateSchema, aee as customDomainWithTenantIdSchema, Da as customTextEntrySchema, Ea as customTextSchema, ga as dailyStatsSchema, zue as decryptField, H9 as decryptFieldWithRing, Ao as deepMergePatch, VJ as drainOutbox, Pi as emailProviderSchema, Fi as emailTemplateNameSchema, Ii as emailTemplateSchema, mt as emailVerificationRulesSchema, gt as emailVerifyActionSchema, Rue as encryptField, V9 as encryptFieldWithRing, rn as endingSchema, z7 as fetchAll, ir as fieldComponentSchema, yt as flowActionStepSchema, bt as flowInsertSchema, xt as flowSchema, qt as flowsFieldComponentSchema, Qt as flowsFlowNodeSchema, Zt as flowsStepNodeSchema, Si as fontDetailsSchema, Ci as fontsSchema, sr as formControlSchema, pr as formInsertSchema, ar as formNodeComponentDefinition, fr as formNodeSchema, mr as formSchema, Jt as genericComponentSchema, en as genericNodeSchema, La as getConnectionIdentifierConfig, Kr as getLogTypeCategory, Gr as getLogTypeDescription, Ki as grantInsertSchema, qi as grantSchema, Ai as handlerConfigSchema, kr as hookCodeInsertSchema, Ar as hookCodeSchema, wr as hookInsertSchema, Or as hookSchema, Sr as hookTemplateId, uee as hookTemplates, Tt as identitySchema, nde as init, uae as injectTailwindCSS, Nr as inviteInsertSchema, Pr as inviteSchema, Mr as inviteeSchema, jr as inviterSchema, OQ as isAllowedIssuer, see as isBlockComponent, I9 as isEncrypted, lee as isFieldComponent, Ra as isPlainObject, cee as isWidgetComponent, Ir as jwksKeySchema, Fr as jwksSchema, Kt as legalComponentSchema, Lue as loadEncryptionKey, ct as locationInfoSchema, Yr as logInsertSchema, Xr as logSchema, $r as logStreamFilterSchema, ei as logStreamInsertSchema, ti as logStreamSchema, Qr as logStreamStatusSchema, Zr as logStreamTypeSchema, Wr as logTypeCategories, Ur as logTypeDescriptions, zr as loginSessionAuthStrategySchema, Br as loginSessionInsertSchema, Vr as loginSessionSchema, Rr as loginSessionStateSchema, TV as mailgunCredentialsSchema, ki as matchSchema, ni as migrationProviderTypeSchema, ri as migrationSourceCredentialsSchema, ii as migrationSourceInsertSchema, ai as migrationSourceSchema, tn as nodeSchema, Lr as openIDConfigurationSchema, aa as organizationBrandingSchema, ua as organizationConnectionInsertSchema, fa as organizationConnectionListSchema, da as organizationConnectionSchema, oa as organizationEnabledConnectionSchema, ca as organizationInsertSchema, la as organizationSchema, sa as organizationTokenQuotaSchema, wi as pageBackgroundSchema, L9 as parseKeyId, Pa as parseUserId, ui as passwordInsertSchema, di as passwordSchema, kV as postmarkCredentialsSchema, Kk as preDefinedHooks, wt as profileDataSchema, Ta as promptScreenSchema, Oi as promptSettingSchema, ji as proxyRouteInsertSchema, Mi as proxyRouteSchema, Ni as proxyRouteUpdateSchema, vt as redirectActionSchema, Li as refreshTokenInsertSchema, gee as refreshTokenSchema, ot as requestContextSchema, DV as resendCredentialsSchema, Bi as resourceServerInsertSchema, Hi as resourceServerListSchema, zi as resourceServerOptionsSchema, Vi as resourceServerSchema, Ri as resourceServerScopeSchema, st as responseContextSchema, Wt as richTextComponentSchema, na as roleInsertSchema, ia as roleListSchema, Ui as rolePermissionInsertSchema, Gi as rolePermissionListSchema, Wi as rolePermissionSchema, ra as roleSchema, Zue as runOutboxRelay, gr as screenLinkSchema, T9 as seed, pi as sessionInsertSchema, mi as sessionSchema, hi as signingKeySchema, vee as smsProviderSchema, _ee as smsSendParamsSchema, nn as startSchema, ci as suspiciousIpThrottlingSchema, G3 as tailwindCss, at as targetSchema, gi as tenantInsertSchema, nG as tenantMiddleware, _i as tenantSchema, ha as tenantSettingsSchema, Ei as themeInsertSchema, Di as themeSchema, yi as tokenResponseSchema, Ct as totalsSchema, _r as uiScreenSchema, Ot as userInsertSchema, pa as userOrganizationInsertSchema, ma as userOrganizationSchema, Ji as userPermissionInsertSchema, Xi as userPermissionListSchema, Yi as userPermissionSchema, Qi as userPermissionWithDetailsListSchema, Zi as userPermissionWithDetailsSchema, nee as userResponseSchema, $i as userRoleInsertSchema, ta as userRoleListSchema, ea as userRoleSchema, kt as userSchema, xn as verificationMethodsSchema, jQ as verifyControlPlaneToken, Ga as waitUntil, rr as widgetComponentSchema, Ti as widgetSchema };
85540
+ export { K0 as AppLogo, ft as Auth0ActionEnum, qr as Auth0Client, kue as AuthLayout, sn as AuthorizationResponseMode, on as AuthorizationResponseType, l2 as Button, M9 as ButtonUI, hW as CONTROL_PLANE_SYNC_EVENT_PREFIX, A9 as CardContent, k9 as CardDescription, Aue as CardFooter, D9 as CardHeader, O9 as CardTitle, E9 as CardUI, cn as CodeChallengeMethod, Ht as ComponentCategory, Vt as ComponentType, lY as ControlPlaneSyncDestination, pt as EmailActionEnum, z3 as EmailValidatedPage, V4 as EnterCodePage, X4 as EnterPasswordPage, o2 as ErrorMessage, or as FORM_FIELD_TYPES, tee as FlowActionTypeEnum, q0 as Footer, c3 as ForgotPasswordPage, l3 as ForgotPasswordSentPage, d2 as FormComponent, y2 as GoBack, Mue as GoogleLogo, vi as GrantType, fk as HttpSamlSigner, X0 as Icon, jue as IdentifierForm, f2 as IdentifierPage, j9 as InputUI, P3 as InvalidSession, N9 as LabelUI, a2 as Layout, $9 as LocalCodeExecutor, Jr as LocationInfo, P as LogTypes, N as LoginSessionState, WJ as LogsDestination, BU as MANAGEMENT_API_AUDIENCE, w9 as MANAGEMENT_API_SCOPES, EV as MailgunEmailService, H4 as Message, Xt as NodeType, wQ as PROXY_RESOLVE_HOST_SCOPE, AV as PostmarkEmailService, H3 as PreSignUpConfirmationPage, A3 as PreSignUpPage, _t as RedirectTargetEnum, tY as RegistrationFinalizerDestination, OV as ResendEmailService, i3 as ResetPasswordPage, e3 as SignUpPage, u2 as SocialButton, c2 as Spinner, F as Strategy, Oa as StrategyType, z4 as Trans, bD as USERNAME_PASSWORD_PROVIDER, K4 as UnverifiedEmailPage, Nue as UserNotFoundPage, Pue as VippsLogo, $J as WebhookDestination, He as actionDependencySchema, Ye as actionExecutionErrorSchema, et as actionExecutionInsertSchema, Ze as actionExecutionLogEntrySchema, Qe as actionExecutionLogsSchema, Xe as actionExecutionResultSchema, $e as actionExecutionSchema, Je as actionExecutionStatusSchema, qe as actionExecutionTriggerIdSchema, We as actionInsertSchema, $t as actionNodeSchema, Ke as actionSchema, Ue as actionSecretSchema, Ve as actionTriggerSchema, Ge as actionUpdateSchema, tt as actionVersionInsertSchema, nt as actionVersionSchema, _a as activeUsersResponseSchema, it as actorSchema, EG as addEntityHooks, Et as addressSchema, Sa as analyticsColumnMetaSchema, ba as analyticsGroupBySchema, ya as analyticsIntervalSchema, wa as analyticsQueryResponseSchema, va as analyticsResourceSchema, Ca as analyticsStatisticsSchema, xa as analyticsUserTypeSchema, li as attackProtectionSchema, rt as auditCategorySchema, ut as auditEventInsertSchema, dt as auditEventSchema, lt as auth0ClientSchema, iee as auth0FlowInsertSchema, an as auth0FlowSchema, St as auth0QuerySchema, ht as auth0UpdateUserActionSchema, At as auth0UserResponseSchema, dn as authParamsSchema, Ma as authenticationMethodInsertSchema, Na as authenticationMethodSchema, ka as authenticationMethodTypeSchema, Dt as baseUserSchema, nr as blockComponentSchema, bi as bordersSchema, fn as brandingSchema, oi as breachedPasswordDetectionSchema, si as bruteForceProtectionSchema, Gt as buttonComponentSchema, un as claimsRequestSchema, Z9 as cleanupOutbox, X9 as cleanupSessions, Xue as cleanupUserSessions, Pt as clientGrantInsertSchema, It as clientGrantListSchema, Ft as clientGrantSchema, aG as clientInfoMiddleware, Mt as clientInsertSchema, Rt as clientRegistrationTokenInsertSchema, zt as clientRegistrationTokenSchema, Lt as clientRegistrationTokenTypeSchema, Nt as clientSchema, mn as codeInsertSchema, hn as codeSchema, pn as codeTypeSchema, xi as colorsSchema, hr as componentMessageSchema, Yt as componentSchema, vn as connectionInsertSchema, gn as connectionOptionsSchema, yn as connectionSchema, Bt as coordinatesSchema, IQ as createApplySyncEvents, UU as createAuthMiddleware, Q9 as createDefaultDestinations, Jue as createEncryptedDataAdapter, Yue as createEncryptedDataAdapterWithKeyRing, OG as createInMemoryCache, Fa as createPassthroughAdapter, Ia as createWriteOnlyAdapter, wn as customDomainCertificateUploadSchema, bn as customDomainInsertSchema, Sn as customDomainSchema, Cn as customDomainUpdateSchema, aee as customDomainWithTenantIdSchema, Da as customTextEntrySchema, Ea as customTextSchema, ga as dailyStatsSchema, zue as decryptField, H9 as decryptFieldWithRing, Ao as deepMergePatch, VJ as drainOutbox, Pi as emailProviderSchema, Fi as emailTemplateNameSchema, Ii as emailTemplateSchema, mt as emailVerificationRulesSchema, gt as emailVerifyActionSchema, Rue as encryptField, V9 as encryptFieldWithRing, rn as endingSchema, z7 as fetchAll, ir as fieldComponentSchema, yt as flowActionStepSchema, bt as flowInsertSchema, xt as flowSchema, qt as flowsFieldComponentSchema, Qt as flowsFlowNodeSchema, Zt as flowsStepNodeSchema, Si as fontDetailsSchema, Ci as fontsSchema, sr as formControlSchema, pr as formInsertSchema, ar as formNodeComponentDefinition, fr as formNodeSchema, mr as formSchema, Jt as genericComponentSchema, en as genericNodeSchema, La as getConnectionIdentifierConfig, Kr as getLogTypeCategory, Gr as getLogTypeDescription, Ki as grantInsertSchema, qi as grantSchema, Ai as handlerConfigSchema, kr as hookCodeInsertSchema, Ar as hookCodeSchema, wr as hookInsertSchema, Or as hookSchema, Sr as hookTemplateId, uee as hookTemplates, Tt as identitySchema, nde as init, uae as injectTailwindCSS, Nr as inviteInsertSchema, Pr as inviteSchema, Mr as inviteeSchema, jr as inviterSchema, OQ as isAllowedIssuer, see as isBlockComponent, I9 as isEncrypted, lee as isFieldComponent, Ra as isPlainObject, cee as isWidgetComponent, Ir as jwksKeySchema, Fr as jwksSchema, Kt as legalComponentSchema, UE as listControlPlaneKeys, Lue as loadEncryptionKey, ct as locationInfoSchema, Yr as logInsertSchema, Xr as logSchema, $r as logStreamFilterSchema, ei as logStreamInsertSchema, ti as logStreamSchema, Qr as logStreamStatusSchema, Zr as logStreamTypeSchema, Wr as logTypeCategories, Ur as logTypeDescriptions, zr as loginSessionAuthStrategySchema, Br as loginSessionInsertSchema, Vr as loginSessionSchema, Rr as loginSessionStateSchema, TV as mailgunCredentialsSchema, ki as matchSchema, ni as migrationProviderTypeSchema, ri as migrationSourceCredentialsSchema, ii as migrationSourceInsertSchema, ai as migrationSourceSchema, tn as nodeSchema, Lr as openIDConfigurationSchema, aa as organizationBrandingSchema, ua as organizationConnectionInsertSchema, fa as organizationConnectionListSchema, da as organizationConnectionSchema, oa as organizationEnabledConnectionSchema, ca as organizationInsertSchema, la as organizationSchema, sa as organizationTokenQuotaSchema, wi as pageBackgroundSchema, L9 as parseKeyId, Pa as parseUserId, ui as passwordInsertSchema, di as passwordSchema, kV as postmarkCredentialsSchema, Kk as preDefinedHooks, wt as profileDataSchema, Ta as promptScreenSchema, Oi as promptSettingSchema, ji as proxyRouteInsertSchema, Mi as proxyRouteSchema, Ni as proxyRouteUpdateSchema, vt as redirectActionSchema, Li as refreshTokenInsertSchema, gee as refreshTokenSchema, ot as requestContextSchema, DV as resendCredentialsSchema, WE as resolveSigningKeyMode, GE as resolveSigningKeys, Bi as resourceServerInsertSchema, Hi as resourceServerListSchema, zi as resourceServerOptionsSchema, Vi as resourceServerSchema, Ri as resourceServerScopeSchema, st as responseContextSchema, Wt as richTextComponentSchema, na as roleInsertSchema, ia as roleListSchema, Ui as rolePermissionInsertSchema, Gi as rolePermissionListSchema, Wi as rolePermissionSchema, ra as roleSchema, Zue as runOutboxRelay, gr as screenLinkSchema, T9 as seed, pi as sessionInsertSchema, mi as sessionSchema, hi as signingKeySchema, vee as smsProviderSchema, _ee as smsSendParamsSchema, nn as startSchema, ci as suspiciousIpThrottlingSchema, G3 as tailwindCss, at as targetSchema, gi as tenantInsertSchema, nG as tenantMiddleware, _i as tenantSchema, ha as tenantSettingsSchema, Ei as themeInsertSchema, Di as themeSchema, yi as tokenResponseSchema, Ct as totalsSchema, _r as uiScreenSchema, Ot as userInsertSchema, pa as userOrganizationInsertSchema, ma as userOrganizationSchema, Ji as userPermissionInsertSchema, Xi as userPermissionListSchema, Yi as userPermissionSchema, Qi as userPermissionWithDetailsListSchema, Zi as userPermissionWithDetailsSchema, nee as userResponseSchema, $i as userRoleInsertSchema, ta as userRoleListSchema, ea as userRoleSchema, kt as userSchema, xn as verificationMethodsSchema, jQ as verifyControlPlaneToken, Ga as waitUntil, rr as widgetComponentSchema, Ti as widgetSchema };