authhero 5.20.0 → 5.21.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 (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +17 -17
  3. package/dist/authhero.d.ts +314 -248
  4. package/dist/authhero.mjs +105 -66
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +12 -3
  8. package/dist/types/helpers/client.d.ts +20 -0
  9. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  10. package/dist/types/index.d.ts +247 -245
  11. package/dist/types/provisioning/index.d.ts +2 -0
  12. package/dist/types/provisioning/noop-provisioner.d.ts +11 -0
  13. package/dist/types/provisioning/provisioner.d.ts +25 -0
  14. package/dist/types/routes/auth-api/index.d.ts +30 -30
  15. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/token.d.ts +10 -10
  18. package/dist/types/routes/auth-api/well-known.d.ts +2 -2
  19. package/dist/types/routes/management-api/actions.d.ts +3 -3
  20. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  21. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  22. package/dist/types/routes/management-api/clients.d.ts +7 -7
  23. package/dist/types/routes/management-api/connections.d.ts +1 -1
  24. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  25. package/dist/types/routes/management-api/email-templates.d.ts +33 -33
  26. package/dist/types/routes/management-api/forms.d.ts +126 -126
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  29. package/dist/types/routes/management-api/index.d.ts +209 -209
  30. package/dist/types/routes/management-api/logs.d.ts +3 -3
  31. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  32. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  33. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  34. package/dist/types/routes/management-api/tenants.d.ts +27 -0
  35. package/dist/types/routes/management-api/users.d.ts +2 -2
  36. package/dist/types/routes/universal-login/common.d.ts +38 -2
  37. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  38. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  39. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  40. package/dist/types/types/AuthHeroConfig.d.ts +12 -0
  41. package/dist/types/utils/jwks.d.ts +4 -4
  42. package/package.json +5 -5
package/dist/authhero.mjs CHANGED
@@ -2590,7 +2590,7 @@ var gr = r.enum([
2590
2590
  "HS384",
2591
2591
  "HS512"
2592
2592
  ]),
2593
- kid: r.string(),
2593
+ kid: r.string().optional(),
2594
2594
  kty: r.enum([
2595
2595
  "RSA",
2596
2596
  "EC",
@@ -3262,6 +3262,23 @@ var Kr = r.object({
3262
3262
  mtls: r.object({ enable_endpoint_aliases: r.boolean().optional() }).nullish(),
3263
3263
  pushed_authorization_requests_supported: r.boolean().optional(),
3264
3264
  authorization_response_iss_parameter_supported: r.boolean().optional(),
3265
+ deployment_type: r.enum(["shared", "wfp"]).default("shared").optional(),
3266
+ provisioning_state: r.enum([
3267
+ "pending",
3268
+ "ready",
3269
+ "failed"
3270
+ ]).default("ready").optional(),
3271
+ provisioning_error: r.string().max(2048).optional(),
3272
+ provisioning_state_changed_at: r.string().optional(),
3273
+ bundle_configuration: r.string().max(64).optional(),
3274
+ worker_version: r.string().max(64).optional(),
3275
+ worker_script_name: r.string().max(255).optional(),
3276
+ storage_kind: r.enum([
3277
+ "own_d1",
3278
+ "existing_d1",
3279
+ "shared_planetscale"
3280
+ ]).optional(),
3281
+ d1_database_id: r.string().max(64).optional(),
3265
3282
  attack_protection: ci.optional(),
3266
3283
  mfa: r.object({
3267
3284
  policy: r.enum(["never", "always"]).default("never").optional(),
@@ -5089,7 +5106,7 @@ var Vee = (e, t) => {
5089
5106
  }, Vo = (e, t, n, r) => {
5090
5107
  let i = Kee(t, n, r);
5091
5108
  e.header("Set-Cookie", i, { append: !0 });
5092
- }, Ho = "mq10k7j4", qee = /* @__PURE__ */ p({
5109
+ }, Ho = "mq2y75t0", qee = /* @__PURE__ */ p({
5093
5110
  common: () => Uo,
5094
5111
  consent: () => Wo,
5095
5112
  default: () => Jee,
@@ -27213,7 +27230,7 @@ function AA(e, t) {
27213
27230
  }
27214
27231
  return i.email && I(e, n, {
27215
27232
  type: P.SUCCESS_CHANGE_EMAIL,
27216
- description: `Email updated to ${i.email}`,
27233
+ description: `Email updated from ${a.email ?? "(none)"} to ${i.email}`,
27217
27234
  userId: r
27218
27235
  }), !0;
27219
27236
  };
@@ -37007,19 +37024,19 @@ var kP = class extends _ {
37007
37024
  ["[15]|2[0-79]|3[0-46-8]|4[0-7]"]
37008
37025
  ],
37009
37026
  [
37010
- "(\\d)(\\d{7})",
37027
+ "(\\d{2})(\\d{5,7})",
37011
37028
  "$1 $2",
37012
- ["(?:2|90)4|[67]"]
37029
+ ["1|28|9[2-9]"]
37013
37030
  ],
37014
37031
  [
37015
- "(\\d{3})(\\d{3})(\\d{3})",
37016
- "$1 $2 $3",
37017
- ["[348]|64|79|90"]
37032
+ "(\\d)(\\d{7})",
37033
+ "$1 $2",
37034
+ ["[267]|904"]
37018
37035
  ],
37019
37036
  [
37020
- "(\\d{2})(\\d{5,7})",
37021
- "$1 $2",
37022
- ["1|28|6[0-35-9]|7[67]|9[2-9]"]
37037
+ "(\\d{2})(\\d{3})(\\d{4})",
37038
+ "$1 $2 $3",
37039
+ ["[346-9]"]
37023
37040
  ]
37024
37041
  ],
37025
37042
  "0"
@@ -38445,13 +38462,13 @@ var kP = class extends _ {
38445
38462
  }
38446
38463
  };
38447
38464
  //#endregion
38448
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/min/exports/withMetadataArgument.js
38465
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/min/exports/withMetadataArgument.js
38449
38466
  function AP(e, t) {
38450
38467
  var n = Array.prototype.slice.call(t);
38451
38468
  return n.push(qte), e.apply(this, n);
38452
38469
  }
38453
38470
  //#endregion
38454
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/tools/semver-compare.js
38471
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/tools/semver-compare.js
38455
38472
  function jP(e, t) {
38456
38473
  e = e.split("-"), t = t.split("-");
38457
38474
  for (var n = e[0].split("."), r = t[0].split("."), i = 0; i < 3; i++) {
@@ -38464,19 +38481,19 @@ function jP(e, t) {
38464
38481
  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;
38465
38482
  }
38466
38483
  //#endregion
38467
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/isObject.js
38484
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/isObject.js
38468
38485
  var Jte = {}.constructor;
38469
38486
  function MP(e) {
38470
38487
  return e != null && e.constructor === Jte;
38471
38488
  }
38472
38489
  //#endregion
38473
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/isCallingCode.js
38490
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/isCallingCode.js
38474
38491
  var Yte = /^\d+$/;
38475
38492
  function Xte(e) {
38476
38493
  return Yte.test(e);
38477
38494
  }
38478
38495
  //#endregion
38479
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/metadata.js
38496
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/metadata.js
38480
38497
  function NP(e) {
38481
38498
  "@babel/helpers - typeof";
38482
38499
  return NP = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -38946,7 +38963,7 @@ function WP(e) {
38946
38963
  typeof t == "number" ? (this.v1 = t === 1, this.v2 = t === 2, this.v3 = t === 3, this.v4 = t === 4) : t ? jP(t, $te) === -1 ? this.v2 = !0 : jP(t, ene) === -1 ? this.v3 = !0 : this.v4 = !0 : this.v1 = !0;
38947
38964
  }
38948
38965
  //#endregion
38949
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/mergeArrays.js
38966
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/mergeArrays.js
38950
38967
  function ane(e, t) {
38951
38968
  var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
38952
38969
  if (n) return (n = n.call(e)).next.bind(n);
@@ -38984,7 +39001,7 @@ function sne(e, t) {
38984
39001
  });
38985
39002
  }
38986
39003
  //#endregion
38987
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/checkNumberLength.js
39004
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/checkNumberLength.js
38988
39005
  function KP(e, t, n) {
38989
39006
  return qP(e, void 0, t, n);
38990
39007
  }
@@ -39002,7 +39019,7 @@ function qP(e, t, n, r) {
39002
39019
  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";
39003
39020
  }
39004
39021
  //#endregion
39005
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/isPossible.js
39022
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/isPossible.js
39006
39023
  function cne(e, t, n) {
39007
39024
  /* istanbul ignore if */
39008
39025
  t === void 0 && (t = {});
@@ -39031,12 +39048,12 @@ function JP(e, t) {
39031
39048
  }
39032
39049
  }
39033
39050
  //#endregion
39034
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/matchesEntirely.js
39051
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/matchesEntirely.js
39035
39052
  function YP(e, t) {
39036
39053
  return e ||= "", RegExp("^(?:" + t + ")$").test(e);
39037
39054
  }
39038
39055
  //#endregion
39039
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/getNumberType.js
39056
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getNumberType.js
39040
39057
  function lne(e, t) {
39041
39058
  var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
39042
39059
  if (n) return (n = n.call(e)).next.bind(n);
@@ -39094,20 +39111,20 @@ function QP(e, t, n) {
39094
39111
  return !r || !r.pattern() || r.possibleLengths() && r.possibleLengths().indexOf(e.length) < 0 ? !1 : YP(e, r.pattern());
39095
39112
  }
39096
39113
  //#endregion
39097
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/isValid.js
39114
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/isValid.js
39098
39115
  function fne(e, t, n) {
39099
39116
  t ||= {};
39100
39117
  var r = new RP(n);
39101
39118
  return r.selectNumberingPlan(e.country || e.countryCallingCode), r.hasTypes() ? ZP(e, t, r.metadata) !== void 0 : YP(t.v2 ? e.nationalNumber : e.phone, r.nationalNumberPattern());
39102
39119
  }
39103
39120
  //#endregion
39104
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/isCountryCode.js
39121
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/isCountryCode.js
39105
39122
  var pne = /^[A-Z]{2}$/;
39106
39123
  function mne(e) {
39107
39124
  return pne.test(e);
39108
39125
  }
39109
39126
  //#endregion
39110
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/getCountryAndCallingCodeFromOneOfThem.js
39127
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getCountryAndCallingCodeFromOneOfThem.js
39111
39128
  var hne = !1;
39112
39129
  function gne(e, t) {
39113
39130
  var n, r, i = new RP(t);
@@ -39117,7 +39134,7 @@ function gne(e, t) {
39117
39134
  };
39118
39135
  }
39119
39136
  //#endregion
39120
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/getPossibleCountriesForNumber.js
39137
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getPossibleCountriesForNumber.js
39121
39138
  function _ne(e, t, n) {
39122
39139
  var r = new RP(n).getCountryCodesForCallingCode(e);
39123
39140
  return r ? r.filter(function(e) {
@@ -39129,7 +39146,7 @@ function vne(e, t, n) {
39129
39146
  return r.selectNumberingPlan(t), r.numberingPlan.possibleLengths().indexOf(e.length) >= 0;
39130
39147
  }
39131
39148
  //#endregion
39132
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/constants.js
39149
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/constants.js
39133
39150
  var $P = "0-90-9٠-٩۰-۹", eF = "-‐-―−ー-//.. \xA0­​⁠ ()()[]\\[\\]~⁓∼~", tF = "++", yne = RegExp("([" + $P + "])");
39134
39151
  function bne(e, t, n, r) {
39135
39152
  if (t) {
@@ -39144,7 +39161,7 @@ function bne(e, t, n, r) {
39144
39161
  }
39145
39162
  }
39146
39163
  //#endregion
39147
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js
39164
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js
39148
39165
  function xne(e, t) {
39149
39166
  if (e && t.numberingPlan.nationalPrefixForParsing()) {
39150
39167
  var n = RegExp("^(?:" + t.numberingPlan.nationalPrefixForParsing() + ")"), r = n.exec(e);
@@ -39170,7 +39187,7 @@ function xne(e, t) {
39170
39187
  return { nationalNumber: e };
39171
39188
  }
39172
39189
  //#endregion
39173
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/getCountryByNationalNumber.js
39190
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getCountryByNationalNumber.js
39174
39191
  function Sne(e, t) {
39175
39192
  var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
39176
39193
  if (n) return (n = n.call(e)).next.bind(n);
@@ -39210,7 +39227,7 @@ function wne(e, t, n) {
39210
39227
  }
39211
39228
  }
39212
39229
  //#endregion
39213
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/getCountryByCallingCode.js
39230
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getCountryByCallingCode.js
39214
39231
  var Tne = !1;
39215
39232
  function rF(e, t) {
39216
39233
  var n = t.nationalNumber, r = t.metadata;
@@ -39220,7 +39237,7 @@ function rF(e, t) {
39220
39237
  if (i) return i.length === 1 ? i[0] : wne(n, i, r.metadata);
39221
39238
  }
39222
39239
  //#endregion
39223
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/extractNationalNumber.js
39240
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractNationalNumber.js
39224
39241
  function iF(e, t, n) {
39225
39242
  var r = xne(e, n), i = r.carrierCode, a = r.nationalNumber;
39226
39243
  return a !== e && (!Ene(e, a, n) || n.numberingPlan.possibleLengths() && (t ||= rF(n.numberingPlan.callingCode(), {
@@ -39242,7 +39259,7 @@ function Dne(e, t, n) {
39242
39259
  }
39243
39260
  }
39244
39261
  //#endregion
39245
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js
39262
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js
39246
39263
  function One(e, t, n, r, i) {
39247
39264
  if (!(t || n || r)) return { number: e };
39248
39265
  var a = t || n ? HP(t || n, i) : r;
@@ -39258,7 +39275,7 @@ function One(e, t, n, r, i) {
39258
39275
  return { number: e };
39259
39276
  }
39260
39277
  //#endregion
39261
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCode.js
39278
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractCountryCallingCode.js
39262
39279
  function aF(e, t, n, r, i) {
39263
39280
  if (!e) return {};
39264
39281
  var a;
@@ -39290,12 +39307,12 @@ function aF(e, t, n, r, i) {
39290
39307
  return {};
39291
39308
  }
39292
39309
  //#endregion
39293
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js
39310
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js
39294
39311
  function kne(e) {
39295
39312
  return e.replace(RegExp(`[${eF}]+`, "g"), " ").trim();
39296
39313
  }
39297
39314
  //#endregion
39298
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js
39315
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js
39299
39316
  var Ane = /(\$\d)/;
39300
39317
  function jne(e, t, n) {
39301
39318
  var r = n.useInternationalFormat, i = n.withNationalPrefix;
@@ -39304,7 +39321,7 @@ function jne(e, t, n) {
39304
39321
  return r ? kne(a) : a;
39305
39322
  }
39306
39323
  //#endregion
39307
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/getIddPrefix.js
39324
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/getIddPrefix.js
39308
39325
  var Mne = /^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;
39309
39326
  function Nne(e, t, n) {
39310
39327
  var r = new RP(n);
@@ -39312,7 +39329,7 @@ function Nne(e, t, n) {
39312
39329
  if (Mne.test(r.IDDPrefix())) return r.IDDPrefix();
39313
39330
  }
39314
39331
  //#endregion
39315
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js
39332
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js
39316
39333
  var Pne = ";ext=", oF = function(e) {
39317
39334
  return `([${$P}]{1,${e}})`;
39318
39335
  };
@@ -39321,7 +39338,7 @@ function sF(e) {
39321
39338
  return p + "|" + m + "|" + h + "|" + g + "|" + _ + "|" + v;
39322
39339
  }
39323
39340
  //#endregion
39324
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/isViablePhoneNumber.js
39341
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/isViablePhoneNumber.js
39325
39342
  var Fne = "[" + $P + "]{2}", Ine = "[" + tF + "]{0,1}(?:[" + eF + "]*[" + $P + "]){3,}[" + eF + $P + "]*", Lne = RegExp("^[" + tF + "]{0,1}(?:[" + eF + "]*[" + $P + "]){1,2}$", "i"), Rne = Ine + "(?:" + sF() + ")?", zne = RegExp("^" + Fne + "$|^" + Rne + "$", "i");
39326
39343
  function Bne(e) {
39327
39344
  return e.length >= 2 && zne.test(e);
@@ -39330,7 +39347,7 @@ function Vne(e) {
39330
39347
  return Lne.test(e);
39331
39348
  }
39332
39349
  //#endregion
39333
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/RFC3966.js
39350
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/RFC3966.js
39334
39351
  function Hne(e) {
39335
39352
  var t = e.number, n = e.ext;
39336
39353
  if (!t) return "";
@@ -39338,7 +39355,7 @@ function Hne(e) {
39338
39355
  return `tel:${t}${n ? ";ext=" + n : ""}`;
39339
39356
  }
39340
39357
  //#endregion
39341
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/format.js
39358
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/format.js
39342
39359
  var cF = { formatExtension: function(e, t, n) {
39343
39360
  return `${e}${n.ext()}${t}`;
39344
39361
  } };
@@ -39409,7 +39426,7 @@ function qne(e, t) {
39409
39426
  }
39410
39427
  }
39411
39428
  //#endregion
39412
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/PhoneNumber.js
39429
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/PhoneNumber.js
39413
39430
  function dF(e) {
39414
39431
  "@babel/helpers - typeof";
39415
39432
  return dF = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -39563,7 +39580,7 @@ var Qne = /*#__PURE__*/ function() {
39563
39580
  ]);
39564
39581
  }(), $ne = /^\+\d+$/;
39565
39582
  //#endregion
39566
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/ParseError.js
39583
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/ParseError.js
39567
39584
  function gF(e) {
39568
39585
  "@babel/helpers - typeof";
39569
39586
  return gF = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -39689,7 +39706,7 @@ function PF(e) {
39689
39706
  }
39690
39707
  }
39691
39708
  //#endregion
39692
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/parseDigits.js
39709
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/parseDigits.js
39693
39710
  var FF = {
39694
39711
  0: "0",
39695
39712
  1: "1",
@@ -39736,7 +39753,7 @@ function IF(e) {
39736
39753
  return FF[e];
39737
39754
  }
39738
39755
  //#endregion
39739
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/parseIncompletePhoneNumber.js
39756
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parseIncompletePhoneNumber.js
39740
39757
  function LF(e, t) {
39741
39758
  var n = typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
39742
39759
  if (n) return (n = n.call(e)).next.bind(n);
@@ -39794,7 +39811,7 @@ function eI(e) {
39794
39811
  return e === null ? !0 : e.length === 0 ? !1 : WF.test(e) || YF.test(e);
39795
39812
  }
39796
39813
  //#endregion
39797
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js
39814
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js
39798
39815
  function tI(e, t) {
39799
39816
  var n = t.extractFormattedPhoneNumber, r = $F(e);
39800
39817
  if (!eI(r)) throw new MF("NOT_A_NUMBER");
@@ -39809,7 +39826,7 @@ function tI(e, t) {
39809
39826
  if (c > 0 && (i = i.substring(0, c)), i !== "") return i;
39810
39827
  }
39811
39828
  //#endregion
39812
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/parse.js
39829
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parse.js
39813
39830
  var nI = 250, rI = RegExp("[" + tF + $P + "]"), iI = RegExp("[^" + $P + "#]+$"), aI = !1;
39814
39831
  function oI(e, t, n) {
39815
39832
  t ||= {};
@@ -39898,7 +39915,7 @@ function uI(e, t, n, r) {
39898
39915
  };
39899
39916
  }
39900
39917
  //#endregion
39901
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/parsePhoneNumberWithError_.js
39918
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parsePhoneNumberWithError_.js
39902
39919
  function dI(e) {
39903
39920
  "@babel/helpers - typeof";
39904
39921
  return dI = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -39954,7 +39971,7 @@ function _I(e, t, n) {
39954
39971
  return oI(e, pI(pI({}, t), {}, { v2: !0 }), n);
39955
39972
  }
39956
39973
  //#endregion
39957
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/normalizeArguments.js
39974
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/normalizeArguments.js
39958
39975
  function vI(e) {
39959
39976
  "@babel/helpers - typeof";
39960
39977
  return vI = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -40062,7 +40079,7 @@ function AI(e) {
40062
40079
  };
40063
40080
  }
40064
40081
  //#endregion
40065
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/parsePhoneNumber_.js
40082
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parsePhoneNumber_.js
40066
40083
  function jI(e) {
40067
40084
  "@babel/helpers - typeof";
40068
40085
  return jI = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
@@ -40124,18 +40141,18 @@ function LI(e, t, n) {
40124
40141
  }
40125
40142
  }
40126
40143
  //#endregion
40127
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/es6/parsePhoneNumber.js
40144
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/es6/parsePhoneNumber.js
40128
40145
  function RI() {
40129
40146
  var e = AI(arguments), t = e.text, n = e.options, r = e.metadata;
40130
40147
  return LI(t, n, r);
40131
40148
  }
40132
40149
  //#endregion
40133
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/min/exports/parsePhoneNumber.js
40150
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/min/exports/parsePhoneNumber.js
40134
40151
  function zI() {
40135
40152
  return AP(RI, arguments);
40136
40153
  }
40137
40154
  //#endregion
40138
- //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.5/node_modules/libphonenumber-js/min/exports/isSupportedCountry.js
40155
+ //#region ../../node_modules/.pnpm/libphonenumber-js@1.13.6/node_modules/libphonenumber-js/min/exports/isSupportedCountry.js
40139
40156
  function BI() {
40140
40157
  return AP(UP, arguments);
40141
40158
  }
@@ -43510,7 +43527,7 @@ var GH = class extends Jz {
43510
43527
  }
43511
43528
  }, nU = {
43512
43529
  reset_email: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <link rel=\"preload\" as=\"image\" href=\"{{ branding.logo }}\" />\n <meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\" />\n <meta name=\"x-apple-disable-message-reformatting\" />\n </head>\n <body style=\"background-color:rgb(244,244,245);margin:0\">\n <!--$--><!--html--><!--head-->\n <div\n style=\"display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0\"\n data-skip-in-text=\"true\">\n {{ password_reset_title }}\n <div>\n \xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\n </div>\n </div>\n <!--body-->\n <table\n border=\"0\"\n width=\"100%\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n align=\"center\">\n <tbody>\n <tr>\n <td\n style='background-color:rgb(244,244,245);font-family:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";margin:0rem'>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;background-color:rgb(255,255,255);margin-bottom:2rem;margin-top:2rem;margin-right:auto;margin-left:auto;border-radius:0.375rem;overflow:hidden\">\n <tbody>\n <tr style=\"width:100%\">\n <td>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:2.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n {% if branding.logo %}<img\n alt=\"{{ tenant.friendly_name }}\"\n src=\"{{ branding.logo }}\"\n style=\"display:block;outline:none;border:none;text-decoration:none;margin-right:auto;margin-left:auto\"\n width=\"140\" />{% endif %}\n </td>\n </tr>\n </tbody>\n </table>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;color:rgb(39,39,42);font-size:15px;line-height:1.625\">\n <tbody>\n <tr>\n <td>\n <h1\n style=\"font-size:1.125rem;line-height:1.5555555555555556;font-weight:600;margin-top:0rem;margin-bottom:0.75rem\">\n {{ password_reset_title }}\n </h1>\n <p\n style=\"font-size:14px;line-height:24px;margin-top:0rem;margin-bottom:16px\">\n {{ reset_password_email_click_to_reset }}\n </p>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"text-align:center;margin-bottom:1.5rem;margin-top:1.5rem\">\n <tbody>\n <tr>\n <td>\n <a\n href=\"{{ url }}\"\n style=\"line-height:100%;text-decoration:none;display:inline-block;max-width:100%;mso-padding-alt:0px;background-color:{{ branding.primary_color }};color:{{ branding.button_text_color }};border-radius:{{ branding.button_border_radius }};font-size:14px;font-weight:600;padding:12px 28px;padding-top:12px;padding-right:28px;padding-bottom:12px;padding-left:28px\"\n target=\"_blank\"\n ><span\n ><!--[if mso]><i style=\"mso-font-width:466.6666666666667%;mso-text-raise:18\" hidden>&#8202;&#8202;&#8202;</i><![endif]--></span\n ><span\n style=\"max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:9px\"\n >{{ reset_password_email_reset }}</span\n ><span\n ><!--[if mso]><i style=\"mso-font-width:466.6666666666667%\" hidden>&#8202;&#8202;&#8202;&#8203;</i><![endif]--></span\n ></a\n >\n </td>\n </tr>\n </tbody>\n </table>\n <p\n style=\"font-size:14px;line-height:24px;color:rgb(63,63,70);margin-top:1.5rem;margin-bottom:0.25rem\">\n {{ link_email_fallback_intro }}\n </p>\n <p\n style=\"font-size:13px;line-height:24px;word-break:break-all;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n <a\n href=\"{{ url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:none\"\n target=\"_blank\"\n >{{ url }}</a\n >\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% unless signature.enabled == false %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1.5rem;padding-bottom:0.5rem;color:rgb(39,39,42);font-size:15px\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:14px;line-height:24px;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ kind_regards }}\n </p>\n <p\n style=\"font-size:14px;line-height:24px;font-weight:600;margin-top:0.25rem;margin-bottom:0rem\">\n {{ team_signature }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endunless %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1rem;padding-bottom:2rem\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);font-style:italic;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ support_info }}<!-- -->\n <!-- -->{% if tenant.support_url %}<a\n href=\"{{ tenant.support_url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:underline;font-style:italic\"\n target=\"_blank\"\n >{{ contact_us }}</a\n >{% endif %}<!-- -->.\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n {% if footer.address %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:0.5rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);margin:0rem;white-space:pre-line;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ footer.address }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endif %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(159,159,169);margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ copyright }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n <!--/$-->\n </body>\n</html>\n",
43513
- reset_email_by_code: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <link rel=\"preload\" as=\"image\" href=\"{{ branding.logo }}\" />\n <meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\" />\n <meta name=\"x-apple-disable-message-reformatting\" />\n </head>\n <body style=\"background-color:rgb(244,244,245);margin:0\">\n <!--$--><!--html--><!--head-->\n <div\n style=\"display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0\"\n data-skip-in-text=\"true\">\n {{ password_reset_title }}\n <div>\n \xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\n </div>\n </div>\n <!--body-->\n <table\n border=\"0\"\n width=\"100%\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n align=\"center\">\n <tbody>\n <tr>\n <td\n style='background-color:rgb(244,244,245);font-family:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";margin:0rem'>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;background-color:rgb(255,255,255);margin-bottom:2rem;margin-top:2rem;margin-right:auto;margin-left:auto;border-radius:0.375rem;overflow:hidden\">\n <tbody>\n <tr style=\"width:100%\">\n <td>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:2.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n {% if branding.logo %}<img\n alt=\"{{ tenant.friendly_name }}\"\n src=\"{{ branding.logo }}\"\n style=\"display:block;outline:none;border:none;text-decoration:none;margin-right:auto;margin-left:auto\"\n width=\"140\" />{% endif %}\n </td>\n </tr>\n </tbody>\n </table>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;color:rgb(39,39,42);font-size:15px;line-height:1.625\">\n <tbody>\n <tr>\n <td>\n <h1\n style=\"font-size:1.125rem;line-height:1.5555555555555556;font-weight:600;margin-top:0rem;margin-bottom:0.75rem\">\n {{ password_reset_title }}\n </h1>\n <p\n style=\"font-size:14px;line-height:24px;margin-top:0rem;margin-bottom:16px\">\n {{ reset_password_email_click_to_reset }}\n </p>\n <p\n style=\"font-size:1.875rem;line-height:1.2;font-weight:700;text-align:center;margin-bottom:1.5rem;margin-top:1.5rem;letter-spacing:0.25em\">\n {{ code }}\n </p>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);text-align:center;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ code_valid_30_minutes }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% unless signature.enabled == false %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1.5rem;padding-bottom:0.5rem;color:rgb(39,39,42);font-size:15px\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:14px;line-height:24px;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ kind_regards }}\n </p>\n <p\n style=\"font-size:14px;line-height:24px;font-weight:600;margin-top:0.25rem;margin-bottom:0rem\">\n {{ team_signature }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endunless %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1rem;padding-bottom:2rem\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);font-style:italic;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ support_info }}<!-- -->\n <!-- -->{% if tenant.support_url %}<a\n href=\"{{ tenant.support_url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:underline;font-style:italic\"\n target=\"_blank\"\n >{{ contact_us }}</a\n >{% endif %}<!-- -->.\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n {% if footer.address %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:0.5rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);margin:0rem;white-space:pre-line;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ footer.address }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endif %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(159,159,169);margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ copyright }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n <!--/$-->\n </body>\n</html>\n",
43530
+ reset_email_by_code: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <link rel=\"preload\" as=\"image\" href=\"{{ branding.logo }}\" />\n <meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\" />\n <meta name=\"x-apple-disable-message-reformatting\" />\n </head>\n <body style=\"background-color:rgb(244,244,245);margin:0\">\n <!--$--><!--html--><!--head-->\n <div\n style=\"display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0\"\n data-skip-in-text=\"true\">\n {{ password_reset_title }}\n <div>\n \xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\n </div>\n </div>\n <!--body-->\n <table\n border=\"0\"\n width=\"100%\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n align=\"center\">\n <tbody>\n <tr>\n <td\n style='background-color:rgb(244,244,245);font-family:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";margin:0rem'>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;background-color:rgb(255,255,255);margin-bottom:2rem;margin-top:2rem;margin-right:auto;margin-left:auto;border-radius:0.375rem;overflow:hidden\">\n <tbody>\n <tr style=\"width:100%\">\n <td>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:2.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n {% if branding.logo %}<img\n alt=\"{{ tenant.friendly_name }}\"\n src=\"{{ branding.logo }}\"\n style=\"display:block;outline:none;border:none;text-decoration:none;margin-right:auto;margin-left:auto\"\n width=\"140\" />{% endif %}\n </td>\n </tr>\n </tbody>\n </table>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;color:rgb(39,39,42);font-size:15px;line-height:1.625\">\n <tbody>\n <tr>\n <td>\n <h1\n style=\"font-size:1.125rem;line-height:1.5555555555555556;font-weight:600;margin-top:0rem;margin-bottom:0.75rem\">\n {{ password_reset_title }}\n </h1>\n <p\n style=\"font-size:14px;line-height:24px;margin-top:0rem;margin-bottom:16px\">\n {{ reset_password_email_enter_code }}\n </p>\n <p\n style=\"font-size:1.875rem;line-height:1.2;font-weight:700;text-align:center;margin-bottom:1.5rem;margin-top:1.5rem;letter-spacing:0.25em\">\n {{ code }}\n </p>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);text-align:center;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ code_valid_30_minutes }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% unless signature.enabled == false %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1.5rem;padding-bottom:0.5rem;color:rgb(39,39,42);font-size:15px\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:14px;line-height:24px;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ kind_regards }}\n </p>\n <p\n style=\"font-size:14px;line-height:24px;font-weight:600;margin-top:0.25rem;margin-bottom:0rem\">\n {{ team_signature }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endunless %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1rem;padding-bottom:2rem\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);font-style:italic;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ support_info }}<!-- -->\n <!-- -->{% if tenant.support_url %}<a\n href=\"{{ tenant.support_url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:underline;font-style:italic\"\n target=\"_blank\"\n >{{ contact_us }}</a\n >{% endif %}<!-- -->.\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n {% if footer.address %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:0.5rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);margin:0rem;white-space:pre-line;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ footer.address }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endif %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(159,159,169);margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ copyright }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n <!--/$-->\n </body>\n</html>\n",
43514
43531
  verify_email: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <link rel=\"preload\" as=\"image\" href=\"{{ branding.logo }}\" />\n <meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\" />\n <meta name=\"x-apple-disable-message-reformatting\" />\n </head>\n <body style=\"background-color:rgb(244,244,245);margin:0\">\n <!--$--><!--html--><!--head-->\n <div\n style=\"display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0\"\n data-skip-in-text=\"true\">\n {{ welcome_to_your_account }}\n <div>\n \xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\n </div>\n </div>\n <!--body-->\n <table\n border=\"0\"\n width=\"100%\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n align=\"center\">\n <tbody>\n <tr>\n <td\n style='background-color:rgb(244,244,245);font-family:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";margin:0rem'>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;background-color:rgb(255,255,255);margin-bottom:2rem;margin-top:2rem;margin-right:auto;margin-left:auto;border-radius:0.375rem;overflow:hidden\">\n <tbody>\n <tr style=\"width:100%\">\n <td>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:2.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n {% if branding.logo %}<img\n alt=\"{{ tenant.friendly_name }}\"\n src=\"{{ branding.logo }}\"\n style=\"display:block;outline:none;border:none;text-decoration:none;margin-right:auto;margin-left:auto\"\n width=\"140\" />{% endif %}\n </td>\n </tr>\n </tbody>\n </table>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;color:rgb(39,39,42);font-size:15px;line-height:1.625\">\n <tbody>\n <tr>\n <td>\n <h1\n style=\"font-size:1.125rem;line-height:1.5555555555555556;font-weight:600;margin-top:0rem;margin-bottom:0.75rem\">\n {{ welcome_to_your_account }}\n </h1>\n <p\n style=\"font-size:14px;line-height:24px;margin-top:0rem;margin-bottom:16px\">\n {{ link_email_click_to_login }}\n </p>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"text-align:center;margin-bottom:1.5rem;margin-top:1.5rem\">\n <tbody>\n <tr>\n <td>\n <a\n href=\"{{ url }}\"\n style=\"line-height:100%;text-decoration:none;display:inline-block;max-width:100%;mso-padding-alt:0px;background-color:{{ branding.primary_color }};color:{{ branding.button_text_color }};border-radius:{{ branding.button_border_radius }};font-size:14px;font-weight:600;padding:12px 28px;padding-top:12px;padding-right:28px;padding-bottom:12px;padding-left:28px\"\n target=\"_blank\"\n ><span\n ><!--[if mso]><i style=\"mso-font-width:466.6666666666667%;mso-text-raise:18\" hidden>&#8202;&#8202;&#8202;</i><![endif]--></span\n ><span\n style=\"max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:9px\"\n >{{ link_email_login }}</span\n ><span\n ><!--[if mso]><i style=\"mso-font-width:466.6666666666667%\" hidden>&#8202;&#8202;&#8202;&#8203;</i><![endif]--></span\n ></a\n >\n </td>\n </tr>\n </tbody>\n </table>\n <p\n style=\"font-size:14px;line-height:24px;color:rgb(63,63,70);margin-top:1.5rem;margin-bottom:0.25rem\">\n {{ link_email_fallback_intro }}\n </p>\n <p\n style=\"font-size:13px;line-height:24px;word-break:break-all;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n <a\n href=\"{{ url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:none\"\n target=\"_blank\"\n >{{ url }}</a\n >\n </p>\n {% if code %}\n <p\n style=\"font-size:14px;line-height:24px;text-align:center;color:rgb(113,113,123);margin-top:1.5rem;margin-bottom:0rem\">\n {{ link_email_or_enter_code }}\n </p>\n <p\n style=\"font-size:1.5rem;line-height:1.3333333333333333;font-weight:700;text-align:center;margin-bottom:0.5rem;margin-top:0.5rem;letter-spacing:0.25em\">\n {{ code }}\n </p>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);text-align:center;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ code_valid_30_minutes }}\n </p>\n {% endif %}\n </td>\n </tr>\n </tbody>\n </table>\n {% unless signature.enabled == false %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1.5rem;padding-bottom:0.5rem;color:rgb(39,39,42);font-size:15px\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:14px;line-height:24px;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ kind_regards }}\n </p>\n <p\n style=\"font-size:14px;line-height:24px;font-weight:600;margin-top:0.25rem;margin-bottom:0rem\">\n {{ team_signature }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endunless %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1rem;padding-bottom:2rem\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);font-style:italic;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ support_info }}<!-- -->\n <!-- -->{% if tenant.support_url %}<a\n href=\"{{ tenant.support_url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:underline;font-style:italic\"\n target=\"_blank\"\n >{{ contact_us }}</a\n >{% endif %}<!-- -->.\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n {% if footer.address %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:0.5rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);margin:0rem;white-space:pre-line;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ footer.address }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endif %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(159,159,169);margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ copyright }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n <!--/$-->\n </body>\n</html>\n",
43515
43532
  verify_email_by_code: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <link rel=\"preload\" as=\"image\" href=\"{{ branding.logo }}\" />\n <meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\" />\n <meta name=\"x-apple-disable-message-reformatting\" />\n </head>\n <body style=\"background-color:rgb(244,244,245);margin:0\">\n <!--$--><!--html--><!--head-->\n <div\n style=\"display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0\"\n data-skip-in-text=\"true\">\n {{ welcome_to_your_account }}\n <div>\n \xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\n </div>\n </div>\n <!--body-->\n <table\n border=\"0\"\n width=\"100%\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n align=\"center\">\n <tbody>\n <tr>\n <td\n style='background-color:rgb(244,244,245);font-family:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";margin:0rem'>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;background-color:rgb(255,255,255);margin-bottom:2rem;margin-top:2rem;margin-right:auto;margin-left:auto;border-radius:0.375rem;overflow:hidden\">\n <tbody>\n <tr style=\"width:100%\">\n <td>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:2.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n {% if branding.logo %}<img\n alt=\"{{ tenant.friendly_name }}\"\n src=\"{{ branding.logo }}\"\n style=\"display:block;outline:none;border:none;text-decoration:none;margin-right:auto;margin-left:auto\"\n width=\"140\" />{% endif %}\n </td>\n </tr>\n </tbody>\n </table>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;color:rgb(39,39,42);font-size:15px;line-height:1.625\">\n <tbody>\n <tr>\n <td>\n <h1\n style=\"font-size:1.125rem;line-height:1.5555555555555556;font-weight:600;margin-top:0rem;margin-bottom:0.75rem\">\n {{ welcome_to_your_account }}\n </h1>\n <p\n style=\"font-size:14px;line-height:24px;margin-top:0rem;margin-bottom:16px\">\n {{ link_email_click_to_login }}\n </p>\n <p\n style=\"font-size:1.875rem;line-height:1.2;font-weight:700;text-align:center;margin-bottom:1.5rem;margin-top:1.5rem;letter-spacing:0.25em\">\n {{ code }}\n </p>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);text-align:center;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ code_valid_30_minutes }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% unless signature.enabled == false %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1.5rem;padding-bottom:0.5rem;color:rgb(39,39,42);font-size:15px\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:14px;line-height:24px;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ kind_regards }}\n </p>\n <p\n style=\"font-size:14px;line-height:24px;font-weight:600;margin-top:0.25rem;margin-bottom:0rem\">\n {{ team_signature }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endunless %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1rem;padding-bottom:2rem\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);font-style:italic;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ support_info }}<!-- -->\n <!-- -->{% if tenant.support_url %}<a\n href=\"{{ tenant.support_url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:underline;font-style:italic\"\n target=\"_blank\"\n >{{ contact_us }}</a\n >{% endif %}<!-- -->.\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n {% if footer.address %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:0.5rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);margin:0rem;white-space:pre-line;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ footer.address }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endif %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(159,159,169);margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ copyright }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n <!--/$-->\n </body>\n</html>\n",
43516
43533
  welcome_email: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <link rel=\"preload\" as=\"image\" href=\"{{ branding.logo }}\" />\n <meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\" />\n <meta name=\"x-apple-disable-message-reformatting\" />\n </head>\n <body style=\"background-color:rgb(244,244,245);margin:0\">\n <!--$--><!--html--><!--head-->\n <div\n style=\"display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0\"\n data-skip-in-text=\"true\">\n {{ welcome_to_your_account }}\n <div>\n \xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\xA0‌​‍‎‏\n </div>\n </div>\n <!--body-->\n <table\n border=\"0\"\n width=\"100%\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n align=\"center\">\n <tbody>\n <tr>\n <td\n style='background-color:rgb(244,244,245);font-family:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";margin:0rem'>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;background-color:rgb(255,255,255);margin-bottom:2rem;margin-top:2rem;margin-right:auto;margin-left:auto;border-radius:0.375rem;overflow:hidden\">\n <tbody>\n <tr style=\"width:100%\">\n <td>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:2.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n {% if branding.logo %}<img\n alt=\"{{ tenant.friendly_name }}\"\n src=\"{{ branding.logo }}\"\n style=\"display:block;outline:none;border:none;text-decoration:none;margin-right:auto;margin-left:auto\"\n width=\"140\" />{% endif %}\n </td>\n </tr>\n </tbody>\n </table>\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;color:rgb(39,39,42);font-size:15px;line-height:1.625\">\n <tbody>\n <tr>\n <td>\n <h1\n style=\"font-size:1.125rem;line-height:1.5555555555555556;font-weight:600;margin-top:0rem;margin-bottom:0.75rem\">\n {{ welcome_to_your_account }}\n </h1>\n <p\n style=\"font-size:14px;line-height:24px;margin-top:0rem;margin-bottom:16px\">\n {{ welcome_body }}\n </p>\n {% if url %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"text-align:center;margin-bottom:1.5rem;margin-top:1.5rem\">\n <tbody>\n <tr>\n <td>\n <a\n href=\"{{ url }}\"\n style=\"line-height:100%;text-decoration:none;display:inline-block;max-width:100%;mso-padding-alt:0px;background-color:{{ branding.primary_color }};color:{{ branding.button_text_color }};border-radius:{{ branding.button_border_radius }};font-size:14px;font-weight:600;padding:12px 28px;padding-top:12px;padding-right:28px;padding-bottom:12px;padding-left:28px\"\n target=\"_blank\"\n ><span\n ><!--[if mso]><i style=\"mso-font-width:466.6666666666667%;mso-text-raise:18\" hidden>&#8202;&#8202;&#8202;</i><![endif]--></span\n ><span\n style=\"max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:9px\"\n >{{ welcome_cta }}</span\n ><span\n ><!--[if mso]><i style=\"mso-font-width:466.6666666666667%\" hidden>&#8202;&#8202;&#8202;&#8203;</i><![endif]--></span\n ></a\n >\n </td>\n </tr>\n </tbody>\n </table>\n <p\n style=\"font-size:14px;line-height:24px;color:rgb(63,63,70);margin-top:1.5rem;margin-bottom:0.25rem\">\n {{ link_email_fallback_intro }}\n </p>\n <p\n style=\"font-size:13px;line-height:24px;word-break:break-all;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n <a\n href=\"{{ url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:none\"\n target=\"_blank\"\n >{{ url }}</a\n >\n </p>\n {% endif %}\n </td>\n </tr>\n </tbody>\n </table>\n {% unless signature.enabled == false %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1.5rem;padding-bottom:0.5rem;color:rgb(39,39,42);font-size:15px\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:14px;line-height:24px;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ kind_regards }}\n </p>\n <p\n style=\"font-size:14px;line-height:24px;font-weight:600;margin-top:0.25rem;margin-bottom:0rem\">\n {{ team_signature }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endunless %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"padding-right:1.5rem;padding-left:1.5rem;padding-top:1rem;padding-bottom:2rem\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);font-style:italic;margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ support_info }}<!-- -->\n <!-- -->{% if tenant.support_url %}<a\n href=\"{{ tenant.support_url }}\"\n style=\"color:{{ branding.primary_color }};text-decoration-line:underline;font-style:italic\"\n target=\"_blank\"\n >{{ contact_us }}</a\n >{% endif %}<!-- -->.\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n {% if footer.address %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:0.5rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(113,113,123);margin:0rem;white-space:pre-line;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ footer.address }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n {% endif %}\n <table\n align=\"center\"\n width=\"100%\"\n border=\"0\"\n cellpadding=\"0\"\n cellspacing=\"0\"\n role=\"presentation\"\n style=\"max-width:560px;margin-right:auto;margin-left:auto;padding-right:1.5rem;padding-left:1.5rem;padding-bottom:2rem;text-align:center\">\n <tbody>\n <tr>\n <td>\n <p\n style=\"font-size:0.75rem;line-height:1.3333333333333333;color:rgb(159,159,169);margin:0rem;margin-top:0rem;margin-bottom:0rem;margin-left:0rem;margin-right:0rem\">\n {{ copyright }}\n </p>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n <!--/$-->\n </body>\n</html>\n",
@@ -43852,8 +43869,8 @@ async function bU(e, t, n, r) {
43852
43869
  buttonColor: o,
43853
43870
  welcomeToYourAccount: M("password_reset_title", s),
43854
43871
  password_reset_title: M("password_reset_title", s),
43855
- linkEmailClickToLogin: M("reset_password_email_click_to_reset", s),
43856
- reset_password_email_click_to_reset: M("reset_password_email_click_to_reset", s),
43872
+ reset_password_email_enter_code: M("reset_password_email_enter_code", s),
43873
+ resetPasswordEmailEnterCode: M("reset_password_email_enter_code", s),
43857
43874
  linkEmailLogin: M("reset_password_email_reset", s),
43858
43875
  reset_password_email_reset: M("reset_password_email_reset", s),
43859
43876
  linkEmailOrEnterCode: M("link_email_or_enter_code", {
@@ -45821,7 +45838,7 @@ var EG = L({
45821
45838
  headers: jG,
45822
45839
  params: MG
45823
45840
  },
45824
- security: [{ Bearer: ["delete:email_templates"] }],
45841
+ security: [{ Bearer: ["update:email_templates"] }],
45825
45842
  responses: {
45826
45843
  204: { description: "Tenant override removed; subsequent sends use the bundled default. authhero extension; not available in Auth0." },
45827
45844
  404: { description: "Template override not found" }
@@ -50956,6 +50973,9 @@ function uZ(e, t, n = {}) {
50956
50973
  let n = t.pathname.replace(/\*/g, ".*").replace(/\//g, "\\/");
50957
50974
  if (!RegExp(`^${n}$`).test(e.pathname)) return !1;
50958
50975
  } else if (e.pathname !== t.pathname) return !1;
50976
+ if (t.search) {
50977
+ for (let [n, r] of t.searchParams) if (e.searchParams.get(n) !== r) return !1;
50978
+ }
50959
50979
  if (n.allowSubDomainWildcards && t.hostname.startsWith("*.") && t.hostname.split(".").length > 2 && ["http:", "https:"].includes(t.protocol)) {
50960
50980
  let n = t.hostname.split(".").slice(1).join(".");
50961
50981
  return e.hostname === n || e.hostname.endsWith("." + n);
@@ -54107,7 +54127,8 @@ var M$ = new e().openapi(t({
54107
54127
  client_metadata: c.client_metadata,
54108
54128
  owner_user_id: n?.sub,
54109
54129
  registration_type: n ? "iat_dcr" : "open_dcr",
54110
- registration_metadata: p
54130
+ registration_metadata: p,
54131
+ auth0_conformant: !1
54111
54132
  }, h;
54112
54133
  if (await e.env.data.transaction(async (t) => {
54113
54134
  let r = iJ(t);
@@ -80020,6 +80041,7 @@ var noe = {
80020
80041
  reset_password_description: "Enter your new password below for the email account: ",
80021
80042
  reset_password_email_click_to_reset: "Click the button to reset your password",
80022
80043
  reset_password_email_cta: "Click the button to reset your password",
80044
+ reset_password_email_enter_code: "Enter the code below to reset your password",
80023
80045
  reset_password_email_reset: "Reset your password",
80024
80046
  reset_password_subject: "Change password for your {{vendorName}} account",
80025
80047
  reset_password_title: "Reset password",
@@ -80206,6 +80228,7 @@ var noe = {
80206
80228
  reset_password_description: "Immettere di seguito la nuova password per l'account e-mail: ",
80207
80229
  reset_password_email_click_to_reset: "Fare clic sul pulsante per reimpostare la password",
80208
80230
  reset_password_email_cta: "Fare clic sul pulsante per reimpostare la password",
80231
+ reset_password_email_enter_code: "Inserisci il codice qui sotto per reimpostare la password",
80209
80232
  reset_password_email_reset: "Reimpostare la password",
80210
80233
  reset_password_subject: "Modifica della password dell'account {{vendorName}} ",
80211
80234
  reset_password_title: "Reimpostare la password",
@@ -80384,6 +80407,7 @@ var noe = {
80384
80407
  reset_password_description: "Skriv inn det nye passordet for e-postkontoen nedenfor: ",
80385
80408
  reset_password_email_click_to_reset: "Klikk på knappen for å tilbakestille passordet ditt",
80386
80409
  reset_password_email_cta: "Klikk på knappen for å tilbakestille passordet ditt",
80410
+ reset_password_email_enter_code: "Skriv inn koden under for å tilbakestille passordet ditt",
80387
80411
  reset_password_email_reset: "Tilbakestill passordet ditt",
80388
80412
  reset_password_subject: "Endre passord for {{vendorName}} -kontoen din",
80389
80413
  reset_password_title: "Tilbakestill passord",
@@ -80562,6 +80586,7 @@ var noe = {
80562
80586
  reset_password_description: "Ange ditt nya lösenord nedan för e-postkontot: ",
80563
80587
  reset_password_email_click_to_reset: "Klicka på knappen för att återställa ditt lösenord",
80564
80588
  reset_password_email_cta: "Klicka på knappen för att återställa ditt lösenord",
80589
+ reset_password_email_enter_code: "Ange koden nedan för att återställa ditt lösenord",
80565
80590
  reset_password_email_reset: "Återställ ditt lösenord",
80566
80591
  reset_password_subject: "Byt lösenord för ditt {{vendorName}} konto",
80567
80592
  reset_password_title: "Återställ lösenord",
@@ -80740,6 +80765,7 @@ var noe = {
80740
80765
  reset_password_description: "Wprowadź poniżej nowe hasło do konta e-mail: ",
80741
80766
  reset_password_email_click_to_reset: "Kliknij przycisk, aby zresetować hasło",
80742
80767
  reset_password_email_cta: "Kliknij przycisk, aby zresetować hasło",
80768
+ reset_password_email_enter_code: "Wpisz poniższy kod, aby zresetować hasło",
80743
80769
  reset_password_email_reset: "Zmień hasło",
80744
80770
  reset_password_subject: "Zmiana hasła do konta {{vendorName}} ",
80745
80771
  reset_password_title: "Resetowanie hasła",
@@ -80918,6 +80944,7 @@ var noe = {
80918
80944
  reset_password_description: "Níže zadejte nové heslo k e-mailovému účtu: ",
80919
80945
  reset_password_email_click_to_reset: "Kliknutím na tlačítko obnovíte své heslo",
80920
80946
  reset_password_email_cta: "Kliknutím na tlačítko obnovíte své heslo",
80947
+ reset_password_email_enter_code: "Pro obnovení hesla zadejte níže uvedený kód",
80921
80948
  reset_password_email_reset: "Obnovení hesla",
80922
80949
  reset_password_subject: "Změna hesla k účtu {{vendorName}} ",
80923
80950
  reset_password_title: "Obnovení hesla",
@@ -81096,6 +81123,7 @@ var noe = {
81096
81123
  reset_password_description: "Kirjoita alla oleva uusi salasanasi sähköpostitiliä varten: ",
81097
81124
  reset_password_email_click_to_reset: "Napsauta painiketta salasanasi palauttamiseksi",
81098
81125
  reset_password_email_cta: "Napsauta painiketta salasanasi palauttamiseksi",
81126
+ reset_password_email_enter_code: "Anna alla oleva koodi salasanasi palauttamiseksi",
81099
81127
  reset_password_email_reset: "Nollaa salasanasi",
81100
81128
  reset_password_subject: "Vaihda salasana tilillesi {{vendorName}} ",
81101
81129
  reset_password_title: "Nollaa salasana",
@@ -81274,6 +81302,7 @@ var noe = {
81274
81302
  reset_password_description: "Indtast din nye adgangskode til e-mailkontoen nedenfor: ",
81275
81303
  reset_password_email_click_to_reset: "Klik på knappen for at nulstille din adgangskode",
81276
81304
  reset_password_email_cta: "Klik på knappen for at nulstille din adgangskode",
81305
+ reset_password_email_enter_code: "Indtast koden nedenfor for at nulstille din adgangskode",
81277
81306
  reset_password_email_reset: "Nulstil din adgangskode",
81278
81307
  reset_password_subject: "Skift adgangskode til din {{vendorName}} -konto",
81279
81308
  reset_password_title: "Nulstil adgangskode",
@@ -81926,9 +81955,19 @@ async function Ooe(e) {
81926
81955
  if (await Q9(t.outbox, { retentionDays: i }), l !== void 0) throw l;
81927
81956
  }
81928
81957
  //#endregion
81929
- //#region src/hooks/code-executor/local.ts
81930
- var koe = 50, Aoe = 500;
81931
- function joe(e) {
81958
+ //#region src/provisioning/noop-provisioner.ts
81959
+ var koe = class {
81960
+ async provision(e, t) {
81961
+ if (!(e.provisioning_state === "ready" && !e.provisioning_error)) try {
81962
+ await t.tenants.update(e.id, {
81963
+ provisioning_state: "ready",
81964
+ provisioning_state_changed_at: (/* @__PURE__ */ new Date()).toISOString(),
81965
+ provisioning_error: void 0
81966
+ });
81967
+ } catch {}
81968
+ }
81969
+ }, Aoe = 50, joe = 500;
81970
+ function Moe(e) {
81932
81971
  let t = (e) => e.map((e) => {
81933
81972
  if (typeof e == "string") return e;
81934
81973
  try {
@@ -81936,8 +81975,8 @@ function joe(e) {
81936
81975
  } catch {
81937
81976
  return String(e);
81938
81977
  }
81939
- }).join(" ").slice(0, Aoe), n = (n, r) => {
81940
- e.length >= koe || e.push({
81978
+ }).join(" ").slice(0, joe), n = (n, r) => {
81979
+ e.length >= Aoe || e.push({
81941
81980
  level: n,
81942
81981
  message: t(r)
81943
81982
  });
@@ -81950,7 +81989,7 @@ function joe(e) {
81950
81989
  debug: (...e) => n("debug", e)
81951
81990
  };
81952
81991
  }
81953
- function Moe(e) {
81992
+ function Noe(e) {
81954
81993
  let t = [], n = {
81955
81994
  "post-user-login": {
81956
81995
  accessToken: ["setCustomClaim"],
@@ -81985,9 +82024,9 @@ function Moe(e) {
81985
82024
  getCalls: () => t
81986
82025
  };
81987
82026
  }
81988
- var Noe = class {
82027
+ var Poe = class {
81989
82028
  async execute(e) {
81990
- let t = Date.now(), { api: n, getCalls: r } = Moe(e.triggerId), i = [], a = joe(i);
82029
+ let t = Date.now(), { api: n, getCalls: r } = Noe(e.triggerId), i = [], a = Moe(i);
81991
82030
  try {
81992
82031
  let o = {
81993
82032
  "post-user-login": "onExecutePostLogin",
@@ -82052,7 +82091,7 @@ j.init({
82052
82091
  da: { translation: loe }
82053
82092
  }
82054
82093
  });
82055
- function Poe(t) {
82094
+ function Foe(t) {
82056
82095
  let n = new e();
82057
82096
  n.onError((e, t) => e instanceof _ ? e.getResponse() : (console.error(e), t.json({ message: "Internal Server Error" }, 500))), n.use("*", IK(t));
82058
82097
  let r = toe(t);
@@ -82084,4 +82123,4 @@ function Poe(t) {
82084
82123
  };
82085
82124
  }
82086
82125
  //#endregion
82087
- export { H$ as AppLogo, mt as Auth0ActionEnum, Kr as Auth0Client, doe as AuthLayout, un as AuthorizationResponseMode, ln as AuthorizationResponseType, a1 as Button, I9 as ButtonUI, ZG as CONTROL_PLANE_SYNC_EVENT_PREFIX, P9 as CardContent, N9 as CardDescription, foe as CardFooter, j9 as CardHeader, M9 as CardTitle, A9 as CardUI, dn as CodeChallengeMethod, Wt as ComponentCategory, Ut as ComponentType, IX as ControlPlaneSyncDestination, eee as EmailActionEnum, F2 as EmailValidatedPage, L0 as EnterCodePage, K0 as EnterPasswordPage, n1 as ErrorMessage, tr as FORM_FIELD_TYPES, pt as FlowActionTypeEnum, U$ as Footer, i2 as ForgotPasswordPage, a2 as ForgotPasswordSentPage, s1 as FormComponent, h1 as GoBack, moe as GoogleLogo, _i as GrantType, Uk as HttpSamlSigner, K$ as Icon, poe as IdentifierForm, c1 as IdentifierPage, F9 as InputUI, A2 as InvalidSession, L9 as LabelUI, t1 as Layout, Noe as LocalCodeExecutor, qr as LocationInfo, P as LogTypes, N as LoginSessionState, _X as LogsDestination, SG as MANAGEMENT_API_AUDIENCE, O9 as MANAGEMENT_API_SCOPES, cU as MailgunEmailService, R0 as Message, Qt as NodeType, fU as PostmarkEmailService, R2 as PreSignUpConfirmationPage, E2 as PreSignUpPage, vt as RedirectTargetEnum, OX as RegistrationFinalizerDestination, uU as ResendEmailService, e2 as ResetPasswordPage, X0 as SignUpPage, o1 as SocialButton, i1 as Spinner, F as Strategy, Aa as StrategyType, F0 as Trans, kD as USERNAME_PASSWORD_PROVIDER, H0 as UnverifiedEmailPage, hoe as UserNotFoundPage, goe as VippsLogo, EX as WebhookDestination, Ue as actionDependencySchema, Xe as actionExecutionErrorSchema, tt as actionExecutionInsertSchema, Qe as actionExecutionLogEntrySchema, $e as actionExecutionLogsSchema, Ze as actionExecutionResultSchema, et as actionExecutionSchema, Ye as actionExecutionStatusSchema, Je as actionExecutionTriggerIdSchema, Ge as actionInsertSchema, tn as actionNodeSchema, qe as actionSchema, We as actionSecretSchema, He as actionTriggerSchema, Ke as actionUpdateSchema, nt as actionVersionInsertSchema, rt as actionVersionSchema, ya as activeUsersResponseSchema, at as actorSchema, $K as addEntityHooks, Et as addressSchema, wa as analyticsColumnMetaSchema, Sa as analyticsGroupBySchema, xa as analyticsIntervalSchema, Ea as analyticsQueryResponseSchema, ba as analyticsResourceSchema, Ta as analyticsStatisticsSchema, Ca as analyticsUserTypeSchema, ci as attackProtectionSchema, it as auditCategorySchema, dt as auditEventInsertSchema, ft as auditEventSchema, ut as auth0ClientSchema, cn as auth0FlowInsertSchema, sn as auth0FlowSchema, tee as auth0QuerySchema, gt as auth0UpdateUserActionSchema, At as auth0UserResponseSchema, mn as authParamsSchema, Pa as authenticationMethodInsertSchema, Fa as authenticationMethodSchema, ja as authenticationMethodTypeSchema, Dt as baseUserSchema, Zn as blockComponentSchema, yi as bordersSchema, hn as brandingSchema, ai as breachedPasswordDetectionSchema, oi as bruteForceProtectionSchema, qt as buttonComponentSchema, pn as claimsRequestSchema, Q9 as cleanupOutbox, Z9 as cleanupSessions, Doe as cleanupUserSessions, It as clientGrantInsertSchema, Rt as clientGrantListSchema, Lt as clientGrantSchema, BK as clientInfoMiddleware, Pt as clientInsertSchema, Bt as clientRegistrationTokenInsertSchema, Vt as clientRegistrationTokenSchema, zt as clientRegistrationTokenTypeSchema, Ft as clientSchema, _n as codeInsertSchema, vn as codeSchema, gn as codeTypeSchema, bi as colorsSchema, ur as componentMessageSchema, Zt as componentSchema, xn as connectionInsertSchema, yn as connectionOptionsSchema, Sn as connectionSchema, Ht as coordinatesSchema, VX as createApplySyncEvents, TG as createAuthMiddleware, $9 as createDefaultDestinations, X9 as createEncryptedDataAdapter, tq as createInMemoryCache, La as createPassthroughAdapter, Ra as createWriteOnlyAdapter, Dn as customDomainCertificateUploadSchema, Cn as customDomainInsertSchema, Tn as customDomainSchema, En as customDomainWithTenantIdSchema, ka as customTextEntrySchema, Oa as customTextSchema, va as dailyStatsSchema, H9 as decryptField, jo as deepMergePatch, mX as drainOutbox, Ni as emailProviderSchema, Pi as emailTemplateNameSchema, Fi as emailTemplateSchema, ht as emailVerificationRulesSchema, _t as emailVerifyActionSchema, V9 as encryptField, on as endingSchema, U7 as fetchAll, $n as fieldComponentSchema, bt as flowActionStepSchema, xt as flowInsertSchema, St as flowSchema, Yt as flowsFieldComponentSchema, en as flowsFlowNodeSchema, $t as flowsStepNodeSchema, xi as fontDetailsSchema, Si as fontsSchema, nr as formControlSchema, cr as formInsertSchema, er as formNodeComponentDefinition, sr as formNodeSchema, lr as formSchema, Xt as genericComponentSchema, nn as genericNodeSchema, za as getConnectionIdentifierConfig, Gr as getLogTypeCategory, Wr as getLogTypeDescription, Ji as grantInsertSchema, Yi as grantSchema, ki as handlerConfigSchema, Or as hookCodeInsertSchema, kr as hookCodeSchema, Tr as hookInsertSchema, Dr as hookSchema, br as hookTemplateId, xr as hookTemplates, Tt as identitySchema, Poe as init, H2 as injectTailwindCSS, Mr as inviteInsertSchema, Nr as inviteSchema, jr as inviteeSchema, Ar as inviterSchema, pr as isBlockComponent, B9 as isEncrypted, hr as isFieldComponent, Ba as isPlainObject, mr as isWidgetComponent, Fr as jwksKeySchema, Pr as jwksSchema, Jt as legalComponentSchema, voe as loadEncryptionKey, lt as locationInfoSchema, Jr as logInsertSchema, Yr as logSchema, Qr as logStreamFilterSchema, $r as logStreamInsertSchema, ei as logStreamSchema, Zr as logStreamStatusSchema, Xr as logStreamTypeSchema, Ur as logTypeCategories, Hr as logTypeDescriptions, Rr as loginSessionAuthStrategySchema, zr as loginSessionInsertSchema, Br as loginSessionSchema, Lr as loginSessionStateSchema, sU as mailgunCredentialsSchema, Oi as matchSchema, ti as migrationProviderTypeSchema, ni as migrationSourceCredentialsSchema, ri as migrationSourceInsertSchema, ii as migrationSourceSchema, rn as nodeSchema, Ir as openIDConfigurationSchema, sa as organizationBrandingSchema, fa as organizationConnectionInsertSchema, ma as organizationConnectionListSchema, pa as organizationConnectionSchema, ca as organizationEnabledConnectionSchema, ua as organizationInsertSchema, da as organizationSchema, la as organizationTokenQuotaSchema, Ci as pageBackgroundSchema, Ia as parseUserId, li as passwordInsertSchema, ui as passwordSchema, dU as postmarkCredentialsSchema, SA as preDefinedHooks, wt as profileDataSchema, Da as promptScreenSchema, Di as promptSettingSchema, Ai as proxyRouteInsertSchema, ji as proxyRouteSchema, Mi as proxyRouteUpdateSchema, yt as redirectActionSchema, Ii as refreshTokenInsertSchema, Li as refreshTokenSchema, st as requestContextSchema, lU as resendCredentialsSchema, Hi as resourceServerInsertSchema, Wi as resourceServerListSchema, Vi as resourceServerOptionsSchema, Ui as resourceServerSchema, Bi as resourceServerScopeSchema, ct as responseContextSchema, Kt as richTextComponentSchema, ia as roleInsertSchema, oa as roleListSchema, Gi as rolePermissionInsertSchema, qi as rolePermissionListSchema, Ki as rolePermissionSchema, aa as roleSchema, Ooe as runOutboxRelay, dr as screenLinkSchema, k9 as seed, fi as sessionInsertSchema, pi as sessionSchema, mi as signingKeySchema, zi as smsProviderSchema, Ri as smsSendParamsSchema, an as startSchema, si as suspiciousIpThrottlingSchema, V2 as tailwindCss, ot as targetSchema, hi as tenantInsertSchema, LK as tenantMiddleware, gi as tenantSchema, _a as tenantSettingsSchema, Ti as themeInsertSchema, Ei as themeSchema, vi as tokenResponseSchema, Ct as totalsSchema, fr as uiScreenSchema, Ot as userInsertSchema, ha as userOrganizationInsertSchema, ga as userOrganizationSchema, Xi as userPermissionInsertSchema, Qi as userPermissionListSchema, Zi as userPermissionSchema, ea as userPermissionWithDetailsListSchema, $i as userPermissionWithDetailsSchema, jt as userResponseSchema, ta as userRoleInsertSchema, ra as userRoleListSchema, na as userRoleSchema, kt as userSchema, wn as verificationMethodsSchema, Wa as waitUntil, Qn as widgetComponentSchema, wi as widgetSchema };
82126
+ export { H$ as AppLogo, mt as Auth0ActionEnum, Kr as Auth0Client, doe as AuthLayout, un as AuthorizationResponseMode, ln as AuthorizationResponseType, a1 as Button, I9 as ButtonUI, ZG as CONTROL_PLANE_SYNC_EVENT_PREFIX, P9 as CardContent, N9 as CardDescription, foe as CardFooter, j9 as CardHeader, M9 as CardTitle, A9 as CardUI, dn as CodeChallengeMethod, Wt as ComponentCategory, Ut as ComponentType, IX as ControlPlaneSyncDestination, eee as EmailActionEnum, F2 as EmailValidatedPage, L0 as EnterCodePage, K0 as EnterPasswordPage, n1 as ErrorMessage, tr as FORM_FIELD_TYPES, pt as FlowActionTypeEnum, U$ as Footer, i2 as ForgotPasswordPage, a2 as ForgotPasswordSentPage, s1 as FormComponent, h1 as GoBack, moe as GoogleLogo, _i as GrantType, Uk as HttpSamlSigner, K$ as Icon, poe as IdentifierForm, c1 as IdentifierPage, F9 as InputUI, A2 as InvalidSession, L9 as LabelUI, t1 as Layout, Poe as LocalCodeExecutor, qr as LocationInfo, P as LogTypes, N as LoginSessionState, _X as LogsDestination, SG as MANAGEMENT_API_AUDIENCE, O9 as MANAGEMENT_API_SCOPES, cU as MailgunEmailService, R0 as Message, Qt as NodeType, koe as NoopTenantProvisioner, fU as PostmarkEmailService, R2 as PreSignUpConfirmationPage, E2 as PreSignUpPage, vt as RedirectTargetEnum, OX as RegistrationFinalizerDestination, uU as ResendEmailService, e2 as ResetPasswordPage, X0 as SignUpPage, o1 as SocialButton, i1 as Spinner, F as Strategy, Aa as StrategyType, F0 as Trans, kD as USERNAME_PASSWORD_PROVIDER, H0 as UnverifiedEmailPage, hoe as UserNotFoundPage, goe as VippsLogo, EX as WebhookDestination, Ue as actionDependencySchema, Xe as actionExecutionErrorSchema, tt as actionExecutionInsertSchema, Qe as actionExecutionLogEntrySchema, $e as actionExecutionLogsSchema, Ze as actionExecutionResultSchema, et as actionExecutionSchema, Ye as actionExecutionStatusSchema, Je as actionExecutionTriggerIdSchema, Ge as actionInsertSchema, tn as actionNodeSchema, qe as actionSchema, We as actionSecretSchema, He as actionTriggerSchema, Ke as actionUpdateSchema, nt as actionVersionInsertSchema, rt as actionVersionSchema, ya as activeUsersResponseSchema, at as actorSchema, $K as addEntityHooks, Et as addressSchema, wa as analyticsColumnMetaSchema, Sa as analyticsGroupBySchema, xa as analyticsIntervalSchema, Ea as analyticsQueryResponseSchema, ba as analyticsResourceSchema, Ta as analyticsStatisticsSchema, Ca as analyticsUserTypeSchema, ci as attackProtectionSchema, it as auditCategorySchema, dt as auditEventInsertSchema, ft as auditEventSchema, ut as auth0ClientSchema, cn as auth0FlowInsertSchema, sn as auth0FlowSchema, tee as auth0QuerySchema, gt as auth0UpdateUserActionSchema, At as auth0UserResponseSchema, mn as authParamsSchema, Pa as authenticationMethodInsertSchema, Fa as authenticationMethodSchema, ja as authenticationMethodTypeSchema, Dt as baseUserSchema, Zn as blockComponentSchema, yi as bordersSchema, hn as brandingSchema, ai as breachedPasswordDetectionSchema, oi as bruteForceProtectionSchema, qt as buttonComponentSchema, pn as claimsRequestSchema, Q9 as cleanupOutbox, Z9 as cleanupSessions, Doe as cleanupUserSessions, It as clientGrantInsertSchema, Rt as clientGrantListSchema, Lt as clientGrantSchema, BK as clientInfoMiddleware, Pt as clientInsertSchema, Bt as clientRegistrationTokenInsertSchema, Vt as clientRegistrationTokenSchema, zt as clientRegistrationTokenTypeSchema, Ft as clientSchema, _n as codeInsertSchema, vn as codeSchema, gn as codeTypeSchema, bi as colorsSchema, ur as componentMessageSchema, Zt as componentSchema, xn as connectionInsertSchema, yn as connectionOptionsSchema, Sn as connectionSchema, Ht as coordinatesSchema, VX as createApplySyncEvents, TG as createAuthMiddleware, $9 as createDefaultDestinations, X9 as createEncryptedDataAdapter, tq as createInMemoryCache, La as createPassthroughAdapter, Ra as createWriteOnlyAdapter, Dn as customDomainCertificateUploadSchema, Cn as customDomainInsertSchema, Tn as customDomainSchema, En as customDomainWithTenantIdSchema, ka as customTextEntrySchema, Oa as customTextSchema, va as dailyStatsSchema, H9 as decryptField, jo as deepMergePatch, mX as drainOutbox, Ni as emailProviderSchema, Pi as emailTemplateNameSchema, Fi as emailTemplateSchema, ht as emailVerificationRulesSchema, _t as emailVerifyActionSchema, V9 as encryptField, on as endingSchema, U7 as fetchAll, $n as fieldComponentSchema, bt as flowActionStepSchema, xt as flowInsertSchema, St as flowSchema, Yt as flowsFieldComponentSchema, en as flowsFlowNodeSchema, $t as flowsStepNodeSchema, xi as fontDetailsSchema, Si as fontsSchema, nr as formControlSchema, cr as formInsertSchema, er as formNodeComponentDefinition, sr as formNodeSchema, lr as formSchema, Xt as genericComponentSchema, nn as genericNodeSchema, za as getConnectionIdentifierConfig, Gr as getLogTypeCategory, Wr as getLogTypeDescription, Ji as grantInsertSchema, Yi as grantSchema, ki as handlerConfigSchema, Or as hookCodeInsertSchema, kr as hookCodeSchema, Tr as hookInsertSchema, Dr as hookSchema, br as hookTemplateId, xr as hookTemplates, Tt as identitySchema, Foe as init, H2 as injectTailwindCSS, Mr as inviteInsertSchema, Nr as inviteSchema, jr as inviteeSchema, Ar as inviterSchema, pr as isBlockComponent, B9 as isEncrypted, hr as isFieldComponent, Ba as isPlainObject, mr as isWidgetComponent, Fr as jwksKeySchema, Pr as jwksSchema, Jt as legalComponentSchema, voe as loadEncryptionKey, lt as locationInfoSchema, Jr as logInsertSchema, Yr as logSchema, Qr as logStreamFilterSchema, $r as logStreamInsertSchema, ei as logStreamSchema, Zr as logStreamStatusSchema, Xr as logStreamTypeSchema, Ur as logTypeCategories, Hr as logTypeDescriptions, Rr as loginSessionAuthStrategySchema, zr as loginSessionInsertSchema, Br as loginSessionSchema, Lr as loginSessionStateSchema, sU as mailgunCredentialsSchema, Oi as matchSchema, ti as migrationProviderTypeSchema, ni as migrationSourceCredentialsSchema, ri as migrationSourceInsertSchema, ii as migrationSourceSchema, rn as nodeSchema, Ir as openIDConfigurationSchema, sa as organizationBrandingSchema, fa as organizationConnectionInsertSchema, ma as organizationConnectionListSchema, pa as organizationConnectionSchema, ca as organizationEnabledConnectionSchema, ua as organizationInsertSchema, da as organizationSchema, la as organizationTokenQuotaSchema, Ci as pageBackgroundSchema, Ia as parseUserId, li as passwordInsertSchema, ui as passwordSchema, dU as postmarkCredentialsSchema, SA as preDefinedHooks, wt as profileDataSchema, Da as promptScreenSchema, Di as promptSettingSchema, Ai as proxyRouteInsertSchema, ji as proxyRouteSchema, Mi as proxyRouteUpdateSchema, yt as redirectActionSchema, Ii as refreshTokenInsertSchema, Li as refreshTokenSchema, st as requestContextSchema, lU as resendCredentialsSchema, Hi as resourceServerInsertSchema, Wi as resourceServerListSchema, Vi as resourceServerOptionsSchema, Ui as resourceServerSchema, Bi as resourceServerScopeSchema, ct as responseContextSchema, Kt as richTextComponentSchema, ia as roleInsertSchema, oa as roleListSchema, Gi as rolePermissionInsertSchema, qi as rolePermissionListSchema, Ki as rolePermissionSchema, aa as roleSchema, Ooe as runOutboxRelay, dr as screenLinkSchema, k9 as seed, fi as sessionInsertSchema, pi as sessionSchema, mi as signingKeySchema, zi as smsProviderSchema, Ri as smsSendParamsSchema, an as startSchema, si as suspiciousIpThrottlingSchema, V2 as tailwindCss, ot as targetSchema, hi as tenantInsertSchema, LK as tenantMiddleware, gi as tenantSchema, _a as tenantSettingsSchema, Ti as themeInsertSchema, Ei as themeSchema, vi as tokenResponseSchema, Ct as totalsSchema, fr as uiScreenSchema, Ot as userInsertSchema, ha as userOrganizationInsertSchema, ga as userOrganizationSchema, Xi as userPermissionInsertSchema, Qi as userPermissionListSchema, Zi as userPermissionSchema, ea as userPermissionWithDetailsListSchema, $i as userPermissionWithDetailsSchema, jt as userResponseSchema, ta as userRoleInsertSchema, ra as userRoleListSchema, na as userRoleSchema, kt as userSchema, wn as verificationMethodsSchema, Wa as waitUntil, Qn as widgetComponentSchema, wi as widgetSchema };