@vm0/cli 9.124.2 → 9.125.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.
@@ -4622,8 +4622,8 @@ var require_browser = __commonJS({
4622
4622
  if (!this.useColors) {
4623
4623
  return;
4624
4624
  }
4625
- const c53 = "color: " + this.color;
4626
- args.splice(1, 0, c53, "color: inherit");
4625
+ const c54 = "color: " + this.color;
4626
+ args.splice(1, 0, c54, "color: inherit");
4627
4627
  let index = 0;
4628
4628
  let lastC = 0;
4629
4629
  args[0].replace(/%[a-zA-Z%]/g, (match) => {
@@ -4635,7 +4635,7 @@ var require_browser = __commonJS({
4635
4635
  lastC = index;
4636
4636
  }
4637
4637
  });
4638
- args.splice(lastC, 0, c53);
4638
+ args.splice(lastC, 0, c54);
4639
4639
  }
4640
4640
  exports.log = console.debug || console.log || (() => {
4641
4641
  });
@@ -4923,8 +4923,8 @@ var require_node = __commonJS({
4923
4923
  function formatArgs(args) {
4924
4924
  const { namespace: name, useColors: useColors2 } = this;
4925
4925
  if (useColors2) {
4926
- const c53 = this.color;
4927
- const colorCode = "\x1B[3" + (c53 < 8 ? c53 : "8;5;" + c53);
4926
+ const c54 = this.color;
4927
+ const colorCode = "\x1B[3" + (c54 < 8 ? c54 : "8;5;" + c54);
4928
4928
  const prefix = ` ${colorCode};1m${name} \x1B[0m`;
4929
4929
  args[0] = prefix + args[0].split("\n").join("\n" + prefix);
4930
4930
  args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
@@ -10083,27 +10083,27 @@ var require_commonjs2 = __commonJS({
10083
10083
  const pad = n.some(isPadded);
10084
10084
  N = [];
10085
10085
  for (let i = x; test(i, y); i += incr) {
10086
- let c53;
10086
+ let c54;
10087
10087
  if (isAlphaSequence) {
10088
- c53 = String.fromCharCode(i);
10089
- if (c53 === "\\") {
10090
- c53 = "";
10088
+ c54 = String.fromCharCode(i);
10089
+ if (c54 === "\\") {
10090
+ c54 = "";
10091
10091
  }
10092
10092
  } else {
10093
- c53 = String(i);
10093
+ c54 = String(i);
10094
10094
  if (pad) {
10095
- const need = width - c53.length;
10095
+ const need = width - c54.length;
10096
10096
  if (need > 0) {
10097
10097
  const z3 = new Array(need + 1).join("0");
10098
10098
  if (i < 0) {
10099
- c53 = "-" + z3 + c53.slice(1);
10099
+ c54 = "-" + z3 + c54.slice(1);
10100
10100
  } else {
10101
- c53 = z3 + c53;
10101
+ c54 = z3 + c54;
10102
10102
  }
10103
10103
  }
10104
10104
  }
10105
10105
  }
10106
- N.push(c53);
10106
+ N.push(c54);
10107
10107
  }
10108
10108
  } else {
10109
10109
  N = [];
@@ -10186,25 +10186,25 @@ var require_brace_expressions = __commonJS({
10186
10186
  let endPos = pos;
10187
10187
  let rangeStart = "";
10188
10188
  WHILE: while (i < glob.length) {
10189
- const c53 = glob.charAt(i);
10190
- if ((c53 === "!" || c53 === "^") && i === pos + 1) {
10189
+ const c54 = glob.charAt(i);
10190
+ if ((c54 === "!" || c54 === "^") && i === pos + 1) {
10191
10191
  negate = true;
10192
10192
  i++;
10193
10193
  continue;
10194
10194
  }
10195
- if (c53 === "]" && sawStart && !escaping) {
10195
+ if (c54 === "]" && sawStart && !escaping) {
10196
10196
  endPos = i + 1;
10197
10197
  break;
10198
10198
  }
10199
10199
  sawStart = true;
10200
- if (c53 === "\\") {
10200
+ if (c54 === "\\") {
10201
10201
  if (!escaping) {
10202
10202
  escaping = true;
10203
10203
  i++;
10204
10204
  continue;
10205
10205
  }
10206
10206
  }
10207
- if (c53 === "[" && !escaping) {
10207
+ if (c54 === "[" && !escaping) {
10208
10208
  for (const [cls, [unip, u, neg]] of Object.entries(posixClasses)) {
10209
10209
  if (glob.startsWith(cls, i)) {
10210
10210
  if (rangeStart) {
@@ -10222,26 +10222,26 @@ var require_brace_expressions = __commonJS({
10222
10222
  }
10223
10223
  escaping = false;
10224
10224
  if (rangeStart) {
10225
- if (c53 > rangeStart) {
10226
- ranges.push(braceEscape(rangeStart) + "-" + braceEscape(c53));
10227
- } else if (c53 === rangeStart) {
10228
- ranges.push(braceEscape(c53));
10225
+ if (c54 > rangeStart) {
10226
+ ranges.push(braceEscape(rangeStart) + "-" + braceEscape(c54));
10227
+ } else if (c54 === rangeStart) {
10228
+ ranges.push(braceEscape(c54));
10229
10229
  }
10230
10230
  rangeStart = "";
10231
10231
  i++;
10232
10232
  continue;
10233
10233
  }
10234
10234
  if (glob.startsWith("-]", i + 1)) {
10235
- ranges.push(braceEscape(c53 + "-"));
10235
+ ranges.push(braceEscape(c54 + "-"));
10236
10236
  i += 2;
10237
10237
  continue;
10238
10238
  }
10239
10239
  if (glob.startsWith("-", i + 1)) {
10240
- rangeStart = c53;
10240
+ rangeStart = c54;
10241
10241
  i += 2;
10242
10242
  continue;
10243
10243
  }
10244
- ranges.push(braceEscape(c53));
10244
+ ranges.push(braceEscape(c54));
10245
10245
  i++;
10246
10246
  }
10247
10247
  if (endPos < i) {
@@ -10291,8 +10291,8 @@ var require_ast = __commonJS({
10291
10291
  var brace_expressions_js_1 = require_brace_expressions();
10292
10292
  var unescape_js_1 = require_unescape();
10293
10293
  var types = /* @__PURE__ */ new Set(["!", "?", "+", "*", "@"]);
10294
- var isExtglobType = (c53) => types.has(c53);
10295
- var isExtglobAST = (c53) => isExtglobType(c53.type);
10294
+ var isExtglobType = (c54) => types.has(c54);
10295
+ var isExtglobAST = (c54) => isExtglobType(c54.type);
10296
10296
  var adoptionMap = /* @__PURE__ */ new Map([
10297
10297
  ["!", ["@"]],
10298
10298
  ["?", ["?", "@"]],
@@ -10489,11 +10489,11 @@ var require_ast = __commonJS({
10489
10489
  this.push(part.clone(this));
10490
10490
  }
10491
10491
  clone(parent) {
10492
- const c53 = new _a2(this.type, parent);
10492
+ const c54 = new _a2(this.type, parent);
10493
10493
  for (const p of this.#parts) {
10494
- c53.copyIn(p);
10494
+ c54.copyIn(p);
10495
10495
  }
10496
- return c53;
10496
+ return c54;
10497
10497
  }
10498
10498
  static #parseAST(str, ast, pos, opt, extDepth) {
10499
10499
  const maxDepth = opt.maxExtglobRecursion ?? 2;
@@ -10505,39 +10505,39 @@ var require_ast = __commonJS({
10505
10505
  let i2 = pos;
10506
10506
  let acc2 = "";
10507
10507
  while (i2 < str.length) {
10508
- const c53 = str.charAt(i2++);
10509
- if (escaping || c53 === "\\") {
10508
+ const c54 = str.charAt(i2++);
10509
+ if (escaping || c54 === "\\") {
10510
10510
  escaping = !escaping;
10511
- acc2 += c53;
10511
+ acc2 += c54;
10512
10512
  continue;
10513
10513
  }
10514
10514
  if (inBrace) {
10515
10515
  if (i2 === braceStart + 1) {
10516
- if (c53 === "^" || c53 === "!") {
10516
+ if (c54 === "^" || c54 === "!") {
10517
10517
  braceNeg = true;
10518
10518
  }
10519
- } else if (c53 === "]" && !(i2 === braceStart + 2 && braceNeg)) {
10519
+ } else if (c54 === "]" && !(i2 === braceStart + 2 && braceNeg)) {
10520
10520
  inBrace = false;
10521
10521
  }
10522
- acc2 += c53;
10522
+ acc2 += c54;
10523
10523
  continue;
10524
- } else if (c53 === "[") {
10524
+ } else if (c54 === "[") {
10525
10525
  inBrace = true;
10526
10526
  braceStart = i2;
10527
10527
  braceNeg = false;
10528
- acc2 += c53;
10528
+ acc2 += c54;
10529
10529
  continue;
10530
10530
  }
10531
- const doRecurse = !opt.noext && isExtglobType(c53) && str.charAt(i2) === "(" && extDepth <= maxDepth;
10531
+ const doRecurse = !opt.noext && isExtglobType(c54) && str.charAt(i2) === "(" && extDepth <= maxDepth;
10532
10532
  if (doRecurse) {
10533
10533
  ast.push(acc2);
10534
10534
  acc2 = "";
10535
- const ext = new _a2(c53, ast);
10535
+ const ext = new _a2(c54, ast);
10536
10536
  i2 = _a2.#parseAST(str, ext, i2, opt, extDepth + 1);
10537
10537
  ast.push(ext);
10538
10538
  continue;
10539
10539
  }
10540
- acc2 += c53;
10540
+ acc2 += c54;
10541
10541
  }
10542
10542
  ast.push(acc2);
10543
10543
  return i2;
@@ -10547,48 +10547,48 @@ var require_ast = __commonJS({
10547
10547
  const parts = [];
10548
10548
  let acc = "";
10549
10549
  while (i < str.length) {
10550
- const c53 = str.charAt(i++);
10551
- if (escaping || c53 === "\\") {
10550
+ const c54 = str.charAt(i++);
10551
+ if (escaping || c54 === "\\") {
10552
10552
  escaping = !escaping;
10553
- acc += c53;
10553
+ acc += c54;
10554
10554
  continue;
10555
10555
  }
10556
10556
  if (inBrace) {
10557
10557
  if (i === braceStart + 1) {
10558
- if (c53 === "^" || c53 === "!") {
10558
+ if (c54 === "^" || c54 === "!") {
10559
10559
  braceNeg = true;
10560
10560
  }
10561
- } else if (c53 === "]" && !(i === braceStart + 2 && braceNeg)) {
10561
+ } else if (c54 === "]" && !(i === braceStart + 2 && braceNeg)) {
10562
10562
  inBrace = false;
10563
10563
  }
10564
- acc += c53;
10564
+ acc += c54;
10565
10565
  continue;
10566
- } else if (c53 === "[") {
10566
+ } else if (c54 === "[") {
10567
10567
  inBrace = true;
10568
10568
  braceStart = i;
10569
10569
  braceNeg = false;
10570
- acc += c53;
10570
+ acc += c54;
10571
10571
  continue;
10572
10572
  }
10573
- const doRecurse = !opt.noext && isExtglobType(c53) && str.charAt(i) === "(" && /* c8 ignore start - the maxDepth is sufficient here */
10574
- (extDepth <= maxDepth || ast && ast.#canAdoptType(c53));
10573
+ const doRecurse = !opt.noext && isExtglobType(c54) && str.charAt(i) === "(" && /* c8 ignore start - the maxDepth is sufficient here */
10574
+ (extDepth <= maxDepth || ast && ast.#canAdoptType(c54));
10575
10575
  if (doRecurse) {
10576
- const depthAdd = ast && ast.#canAdoptType(c53) ? 0 : 1;
10576
+ const depthAdd = ast && ast.#canAdoptType(c54) ? 0 : 1;
10577
10577
  part.push(acc);
10578
10578
  acc = "";
10579
- const ext = new _a2(c53, part);
10579
+ const ext = new _a2(c54, part);
10580
10580
  part.push(ext);
10581
10581
  i = _a2.#parseAST(str, ext, i, opt, extDepth + depthAdd);
10582
10582
  continue;
10583
10583
  }
10584
- if (c53 === "|") {
10584
+ if (c54 === "|") {
10585
10585
  part.push(acc);
10586
10586
  acc = "";
10587
10587
  parts.push(part);
10588
10588
  part = new _a2(null, ast);
10589
10589
  continue;
10590
10590
  }
10591
- if (c53 === ")") {
10591
+ if (c54 === ")") {
10592
10592
  if (acc === "" && ast.#parts.length === 0) {
10593
10593
  ast.#emptyExt = true;
10594
10594
  }
@@ -10597,7 +10597,7 @@ var require_ast = __commonJS({
10597
10597
  ast.push(...parts, part);
10598
10598
  return i;
10599
10599
  }
10600
- acc += c53;
10600
+ acc += c54;
10601
10601
  }
10602
10602
  ast.type = null;
10603
10603
  ast.#hasMagic = void 0;
@@ -10617,8 +10617,8 @@ var require_ast = __commonJS({
10617
10617
  }
10618
10618
  return this.#canAdoptType(gc.type, map2);
10619
10619
  }
10620
- #canAdoptType(c53, map2 = adoptionAnyMap) {
10621
- return !!map2.get(this.type)?.includes(c53);
10620
+ #canAdoptType(c54, map2 = adoptionAnyMap) {
10621
+ return !!map2.get(this.type)?.includes(c54);
10622
10622
  }
10623
10623
  #adoptWithSpace(child, index) {
10624
10624
  const gc = child.#parts[0];
@@ -10636,9 +10636,9 @@ var require_ast = __commonJS({
10636
10636
  }
10637
10637
  this.#toString = void 0;
10638
10638
  }
10639
- #canUsurpType(c53) {
10639
+ #canUsurpType(c54) {
10640
10640
  const m = usurpMap.get(this.type);
10641
- return !!m?.has(c53);
10641
+ return !!m?.has(c54);
10642
10642
  }
10643
10643
  #canUsurp(child) {
10644
10644
  if (!child || typeof child !== "object" || child.type !== null || child.#parts.length !== 1 || this.type === null || this.#parts.length !== 1) {
@@ -10851,18 +10851,18 @@ var require_ast = __commonJS({
10851
10851
  do {
10852
10852
  done = true;
10853
10853
  for (let i = 0; i < this.#parts.length; i++) {
10854
- const c53 = this.#parts[i];
10855
- if (typeof c53 === "object") {
10856
- c53.#flatten();
10857
- if (this.#canAdopt(c53)) {
10854
+ const c54 = this.#parts[i];
10855
+ if (typeof c54 === "object") {
10856
+ c54.#flatten();
10857
+ if (this.#canAdopt(c54)) {
10858
10858
  done = false;
10859
- this.#adopt(c53, i);
10860
- } else if (this.#canAdoptWithSpace(c53)) {
10859
+ this.#adopt(c54, i);
10860
+ } else if (this.#canAdoptWithSpace(c54)) {
10861
10861
  done = false;
10862
- this.#adoptWithSpace(c53, i);
10863
- } else if (this.#canUsurp(c53)) {
10862
+ this.#adoptWithSpace(c54, i);
10863
+ } else if (this.#canUsurp(c54)) {
10864
10864
  done = false;
10865
- this.#usurp(c53);
10865
+ this.#usurp(c54);
10866
10866
  }
10867
10867
  }
10868
10868
  }
@@ -10886,13 +10886,13 @@ var require_ast = __commonJS({
10886
10886
  let uflag = false;
10887
10887
  let inStar = false;
10888
10888
  for (let i = 0; i < glob.length; i++) {
10889
- const c53 = glob.charAt(i);
10889
+ const c54 = glob.charAt(i);
10890
10890
  if (escaping) {
10891
10891
  escaping = false;
10892
- re += (reSpecials.has(c53) ? "\\" : "") + c53;
10892
+ re += (reSpecials.has(c54) ? "\\" : "") + c54;
10893
10893
  continue;
10894
10894
  }
10895
- if (c53 === "*") {
10895
+ if (c54 === "*") {
10896
10896
  if (inStar)
10897
10897
  continue;
10898
10898
  inStar = true;
@@ -10902,7 +10902,7 @@ var require_ast = __commonJS({
10902
10902
  } else {
10903
10903
  inStar = false;
10904
10904
  }
10905
- if (c53 === "\\") {
10905
+ if (c54 === "\\") {
10906
10906
  if (i === glob.length - 1) {
10907
10907
  re += "\\\\";
10908
10908
  } else {
@@ -10910,7 +10910,7 @@ var require_ast = __commonJS({
10910
10910
  }
10911
10911
  continue;
10912
10912
  }
10913
- if (c53 === "[") {
10913
+ if (c54 === "[") {
10914
10914
  const [src, needUflag, consumed, magic] = (0, brace_expressions_js_1.parseClass)(glob, i);
10915
10915
  if (consumed) {
10916
10916
  re += src;
@@ -10920,12 +10920,12 @@ var require_ast = __commonJS({
10920
10920
  continue;
10921
10921
  }
10922
10922
  }
10923
- if (c53 === "?") {
10923
+ if (c54 === "?") {
10924
10924
  re += qmark;
10925
10925
  hasMagic = true;
10926
10926
  continue;
10927
10927
  }
10928
- re += regExpEscape(c53);
10928
+ re += regExpEscape(c54);
10929
10929
  }
10930
10930
  return [re, (0, unescape_js_1.unescape)(glob), !!hasMagic, uflag];
10931
10931
  }
@@ -14842,13 +14842,13 @@ var require_utils5 = __commonJS({
14842
14842
  }
14843
14843
  exports.arrayStringifyHelper = arrayStringifyHelper;
14844
14844
  function getPoolNameOld(pool) {
14845
- const c53 = pool.config.connectionConfig;
14845
+ const c54 = pool.config.connectionConfig;
14846
14846
  let poolName = "";
14847
- poolName += c53.host ? `host: '${c53.host}', ` : "";
14848
- poolName += c53.port ? `port: ${c53.port}, ` : "";
14849
- poolName += c53.database ? `database: '${c53.database}', ` : "";
14850
- poolName += c53.user ? `user: '${c53.user}'` : "";
14851
- if (!c53.user) {
14847
+ poolName += c54.host ? `host: '${c54.host}', ` : "";
14848
+ poolName += c54.port ? `port: ${c54.port}, ` : "";
14849
+ poolName += c54.database ? `database: '${c54.database}', ` : "";
14850
+ poolName += c54.user ? `user: '${c54.user}'` : "";
14851
+ if (!c54.user) {
14852
14852
  poolName = poolName.substring(0, poolName.length - 2);
14853
14853
  }
14854
14854
  return poolName.trim();
@@ -15200,7 +15200,7 @@ var require_src12 = __commonJS({
15200
15200
  return indexOpeningDashDashComment < indexClosingSlashComment;
15201
15201
  }
15202
15202
  function fixedEncodeURIComponent(str) {
15203
- return encodeURIComponent(str).replace(/[!'()*]/g, (c53) => `%${c53.charCodeAt(0).toString(16).toUpperCase()}`);
15203
+ return encodeURIComponent(str).replace(/[!'()*]/g, (c54) => `%${c54.charCodeAt(0).toString(16).toUpperCase()}`);
15204
15204
  }
15205
15205
  function addSqlCommenterComment(span, query) {
15206
15206
  if (typeof query !== "string" || query.length === 0) {
@@ -23750,8 +23750,8 @@ var require_util = __commonJS({
23750
23750
  function isUSVString(val) {
23751
23751
  return hasIsWellFormed ? `${val}`.isWellFormed() : toUSVString(val) === `${val}`;
23752
23752
  }
23753
- function isTokenCharCode(c53) {
23754
- switch (c53) {
23753
+ function isTokenCharCode(c54) {
23754
+ switch (c54) {
23755
23755
  case 34:
23756
23756
  case 40:
23757
23757
  case 41:
@@ -23771,7 +23771,7 @@ var require_util = __commonJS({
23771
23771
  case 125:
23772
23772
  return false;
23773
23773
  default:
23774
- return c53 >= 33 && c53 <= 126;
23774
+ return c54 >= 33 && c54 <= 126;
23775
23775
  }
23776
23776
  }
23777
23777
  function isValidHTTPToken(characters) {
@@ -25360,7 +25360,7 @@ var require_constants2 = __commonJS({
25360
25360
  exports.HEADER_CHARS.push(i);
25361
25361
  }
25362
25362
  }
25363
- exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c53) => c53 !== 44);
25363
+ exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c54) => c54 !== 44);
25364
25364
  exports.MAJOR = exports.NUM_MAP;
25365
25365
  exports.MINOR = exports.MAJOR;
25366
25366
  var HEADER_STATE;
@@ -26506,10 +26506,10 @@ var require_util2 = __commonJS({
26506
26506
  }
26507
26507
  function isValidReasonPhrase(statusText) {
26508
26508
  for (let i = 0; i < statusText.length; ++i) {
26509
- const c53 = statusText.charCodeAt(i);
26510
- if (!(c53 === 9 || // HTAB
26511
- c53 >= 32 && c53 <= 126 || // SP / VCHAR
26512
- c53 >= 128 && c53 <= 255)) {
26509
+ const c54 = statusText.charCodeAt(i);
26510
+ if (!(c54 === 9 || // HTAB
26511
+ c54 >= 32 && c54 <= 126 || // SP / VCHAR
26512
+ c54 >= 128 && c54 <= 255)) {
26513
26513
  return false;
26514
26514
  }
26515
26515
  }
@@ -30483,7 +30483,7 @@ var require_pool_base = __commonJS({
30483
30483
  pool.emit("drain", origin, [pool, ...targets]);
30484
30484
  }
30485
30485
  if (pool[kClosedResolve] && queue.isEmpty()) {
30486
- Promise.all(pool[kClients].map((c53) => c53.close())).then(pool[kClosedResolve]);
30486
+ Promise.all(pool[kClients].map((c54) => c54.close())).then(pool[kClosedResolve]);
30487
30487
  }
30488
30488
  };
30489
30489
  this[kOnConnect] = (origin, targets) => {
@@ -30532,7 +30532,7 @@ var require_pool_base = __commonJS({
30532
30532
  }
30533
30533
  async [kClose]() {
30534
30534
  if (this[kQueue].isEmpty()) {
30535
- await Promise.all(this[kClients].map((c53) => c53.close()));
30535
+ await Promise.all(this[kClients].map((c54) => c54.close()));
30536
30536
  } else {
30537
30537
  await new Promise((resolve2) => {
30538
30538
  this[kClosedResolve] = resolve2;
@@ -30547,7 +30547,7 @@ var require_pool_base = __commonJS({
30547
30547
  }
30548
30548
  item.handler.onError(err);
30549
30549
  }
30550
- await Promise.all(this[kClients].map((c53) => c53.destroy(err)));
30550
+ await Promise.all(this[kClients].map((c54) => c54.destroy(err)));
30551
30551
  }
30552
30552
  [kDispatch](opts, handler) {
30553
30553
  const dispatcher = this[kGetDispatcher]();
@@ -37317,8 +37317,8 @@ var require_util4 = __commonJS({
37317
37317
  return new TextDecoder(encoding).decode(sliced);
37318
37318
  }
37319
37319
  function BOMSniffing(ioQueue) {
37320
- const [a, b, c53] = ioQueue;
37321
- if (a === 239 && b === 187 && c53 === 191) {
37320
+ const [a, b, c54] = ioQueue;
37321
+ if (a === 239 && b === 187 && c54 === 191) {
37322
37322
  return "UTF-8";
37323
37323
  } else if (a === 254 && b === 255) {
37324
37324
  return "UTF-16BE";
@@ -41797,9 +41797,9 @@ var require_Alias = __commonJS({
41797
41797
  } else if (identity.isCollection(node2)) {
41798
41798
  let count = 0;
41799
41799
  for (const item of node2.items) {
41800
- const c53 = getAliasCount(doc, item, anchors2);
41801
- if (c53 > count)
41802
- count = c53;
41800
+ const c54 = getAliasCount(doc, item, anchors2);
41801
+ if (c54 > count)
41802
+ count = c54;
41803
41803
  }
41804
41804
  return count;
41805
41805
  } else if (identity.isPair(node2)) {
@@ -48815,7 +48815,7 @@ var require_style = __commonJS({
48815
48815
  "../../node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/style.js"(exports, module2) {
48816
48816
  "use strict";
48817
48817
  init_esm_shims();
48818
- var c53 = require_kleur();
48818
+ var c54 = require_kleur();
48819
48819
  var figures = require_figures();
48820
48820
  var styles3 = Object.freeze({
48821
48821
  password: {
@@ -48837,14 +48837,14 @@ var require_style = __commonJS({
48837
48837
  });
48838
48838
  var render = (type) => styles3[type] || styles3.default;
48839
48839
  var symbols = Object.freeze({
48840
- aborted: c53.red(figures.cross),
48841
- done: c53.green(figures.tick),
48842
- exited: c53.yellow(figures.cross),
48843
- default: c53.cyan("?")
48840
+ aborted: c54.red(figures.cross),
48841
+ done: c54.green(figures.tick),
48842
+ exited: c54.yellow(figures.cross),
48843
+ default: c54.cyan("?")
48844
48844
  });
48845
48845
  var symbol2 = (done, aborted2, exited) => aborted2 ? symbols.aborted : exited ? symbols.exited : done ? symbols.done : symbols.default;
48846
- var delimiter = (completing) => c53.gray(completing ? figures.ellipsis : figures.pointerSmall);
48847
- var item = (expandable, expanded) => c53.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
48846
+ var delimiter = (completing) => c54.gray(completing ? figures.ellipsis : figures.pointerSmall);
48847
+ var item = (expandable, expanded) => c54.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
48848
48848
  module2.exports = {
48849
48849
  styles: styles3,
48850
48850
  render,
@@ -49126,10 +49126,10 @@ var require_text = __commonJS({
49126
49126
  this.cursor = this.cursor + n;
49127
49127
  this.cursorOffset += n;
49128
49128
  }
49129
- _(c53, key) {
49129
+ _(c54, key) {
49130
49130
  let s1 = this.value.slice(0, this.cursor);
49131
49131
  let s2 = this.value.slice(this.cursor);
49132
- this.value = `${s1}${c53}${s2}`;
49132
+ this.value = `${s1}${c54}${s2}`;
49133
49133
  this.red = false;
49134
49134
  this.cursor = this.placeholder ? 0 : s1.length + 1;
49135
49135
  this.render();
@@ -49304,8 +49304,8 @@ var require_select = __commonJS({
49304
49304
  this.moveCursor((this.cursor + 1) % this.choices.length);
49305
49305
  this.render();
49306
49306
  }
49307
- _(c53, key) {
49308
- if (c53 === " ") return this.submit();
49307
+ _(c54, key) {
49308
+ if (c54 === " ") return this.submit();
49309
49309
  }
49310
49310
  get selection() {
49311
49311
  return this.choices[this.cursor];
@@ -49431,12 +49431,12 @@ var require_toggle = __commonJS({
49431
49431
  this.fire();
49432
49432
  this.render();
49433
49433
  }
49434
- _(c53, key) {
49435
- if (c53 === " ") {
49434
+ _(c54, key) {
49435
+ if (c54 === " ") {
49436
49436
  this.value = !this.value;
49437
- } else if (c53 === "1") {
49437
+ } else if (c54 === "1") {
49438
49438
  this.value = true;
49439
- } else if (c53 === "0") {
49439
+ } else if (c54 === "0") {
49440
49440
  this.value = false;
49441
49441
  } else return this.bell();
49442
49442
  this.render();
@@ -49944,9 +49944,9 @@ var require_date = __commonJS({
49944
49944
  this.moveCursor(next ? this.parts.indexOf(next) : this.parts.findIndex((part) => part instanceof DatePart));
49945
49945
  this.render();
49946
49946
  }
49947
- _(c53) {
49948
- if (/\d/.test(c53)) {
49949
- this.typed += c53;
49947
+ _(c54) {
49948
+ if (/\d/.test(c54)) {
49949
+ this.typed += c54;
49950
49950
  this.parts[this.cursor].setTo(this.typed);
49951
49951
  this.render();
49952
49952
  }
@@ -50055,8 +50055,8 @@ var require_number = __commonJS({
50055
50055
  parse(x) {
50056
50056
  return this.float ? parseFloat(x) : parseInt(x);
50057
50057
  }
50058
- valid(c53) {
50059
- return c53 === `-` || c53 === `.` && this.float || isNumber.test(c53);
50058
+ valid(c54) {
50059
+ return c54 === `-` || c54 === `.` && this.float || isNumber.test(c54);
50060
50060
  }
50061
50061
  reset() {
50062
50062
  this.typed = ``;
@@ -50149,14 +50149,14 @@ var require_number = __commonJS({
50149
50149
  this.fire();
50150
50150
  this.render();
50151
50151
  }
50152
- _(c53, key) {
50153
- if (!this.valid(c53)) return this.bell();
50152
+ _(c54, key) {
50153
+ if (!this.valid(c54)) return this.bell();
50154
50154
  const now = Date.now();
50155
50155
  if (now - this.lastHit > 1e3) this.typed = ``;
50156
- this.typed += c53;
50156
+ this.typed += c54;
50157
50157
  this.lastHit = now;
50158
50158
  this.color = `cyan`;
50159
- if (c53 === `.`) return this.fire();
50159
+ if (c54 === `.`) return this.fire();
50160
50160
  this.value = Math.min(this.parse(this.typed), this.max);
50161
50161
  if (this.value > this.max) this.value = this.max;
50162
50162
  if (this.value < this.min) this.value = this.min;
@@ -50320,10 +50320,10 @@ var require_multiselect = __commonJS({
50320
50320
  this.value.filter((v) => !v.disabled).forEach((v) => v.selected = newSelected);
50321
50321
  this.render();
50322
50322
  }
50323
- _(c53, key) {
50324
- if (c53 === " ") {
50323
+ _(c54, key) {
50324
+ if (c54 === " ") {
50325
50325
  this.handleSpaceToggle();
50326
- } else if (c53 === "a") {
50326
+ } else if (c54 === "a") {
50327
50327
  this.toggleAll();
50328
50328
  } else {
50329
50329
  return this.bell();
@@ -50564,10 +50564,10 @@ var require_autocomplete = __commonJS({
50564
50564
  this.out.write("\n");
50565
50565
  this.close();
50566
50566
  }
50567
- _(c53, key) {
50567
+ _(c54, key) {
50568
50568
  let s1 = this.input.slice(0, this.cursor);
50569
50569
  let s2 = this.input.slice(this.cursor);
50570
- this.input = `${s1}${c53}${s2}`;
50570
+ this.input = `${s1}${c54}${s2}`;
50571
50571
  this.cursor = s1.length + 1;
50572
50572
  this.complete(this.render);
50573
50573
  this.render();
@@ -50767,15 +50767,15 @@ var require_autocompleteMultiselect = __commonJS({
50767
50767
  this.render();
50768
50768
  }
50769
50769
  }
50770
- handleInputChange(c53) {
50771
- this.inputValue = this.inputValue + c53;
50770
+ handleInputChange(c54) {
50771
+ this.inputValue = this.inputValue + c54;
50772
50772
  this.updateFilteredOptions();
50773
50773
  }
50774
- _(c53, key) {
50775
- if (c53 === " ") {
50774
+ _(c54, key) {
50775
+ if (c54 === " ") {
50776
50776
  this.handleSpaceToggle();
50777
50777
  } else {
50778
- this.handleInputChange(c53);
50778
+ this.handleInputChange(c54);
50779
50779
  }
50780
50780
  }
50781
50781
  renderInstructions() {
@@ -50881,12 +50881,12 @@ var require_confirm = __commonJS({
50881
50881
  this.out.write("\n");
50882
50882
  this.close();
50883
50883
  }
50884
- _(c53, key) {
50885
- if (c53.toLowerCase() === "y") {
50884
+ _(c54, key) {
50885
+ if (c54.toLowerCase() === "y") {
50886
50886
  this.value = true;
50887
50887
  return this.submit();
50888
50888
  }
50889
- if (c53.toLowerCase() === "n") {
50889
+ if (c54.toLowerCase() === "n") {
50890
50890
  this.value = false;
50891
50891
  return this.submit();
50892
50892
  }
@@ -51327,7 +51327,7 @@ var require_style2 = __commonJS({
51327
51327
  "../../node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/style.js"(exports, module2) {
51328
51328
  "use strict";
51329
51329
  init_esm_shims();
51330
- var c53 = require_kleur();
51330
+ var c54 = require_kleur();
51331
51331
  var figures = require_figures2();
51332
51332
  var styles3 = Object.freeze({
51333
51333
  password: { scale: 1, render: (input) => "*".repeat(input.length) },
@@ -51337,14 +51337,14 @@ var require_style2 = __commonJS({
51337
51337
  });
51338
51338
  var render = (type) => styles3[type] || styles3.default;
51339
51339
  var symbols = Object.freeze({
51340
- aborted: c53.red(figures.cross),
51341
- done: c53.green(figures.tick),
51342
- exited: c53.yellow(figures.cross),
51343
- default: c53.cyan("?")
51340
+ aborted: c54.red(figures.cross),
51341
+ done: c54.green(figures.tick),
51342
+ exited: c54.yellow(figures.cross),
51343
+ default: c54.cyan("?")
51344
51344
  });
51345
51345
  var symbol2 = (done, aborted2, exited) => aborted2 ? symbols.aborted : exited ? symbols.exited : done ? symbols.done : symbols.default;
51346
- var delimiter = (completing) => c53.gray(completing ? figures.ellipsis : figures.pointerSmall);
51347
- var item = (expandable, expanded) => c53.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
51346
+ var delimiter = (completing) => c54.gray(completing ? figures.ellipsis : figures.pointerSmall);
51347
+ var item = (expandable, expanded) => c54.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
51348
51348
  module2.exports = {
51349
51349
  styles: styles3,
51350
51350
  render,
@@ -51577,10 +51577,10 @@ var require_text2 = __commonJS({
51577
51577
  this.cursor = this.cursor + n;
51578
51578
  this.cursorOffset += n;
51579
51579
  }
51580
- _(c53, key) {
51580
+ _(c54, key) {
51581
51581
  let s1 = this.value.slice(0, this.cursor);
51582
51582
  let s2 = this.value.slice(this.cursor);
51583
- this.value = `${s1}${c53}${s2}`;
51583
+ this.value = `${s1}${c54}${s2}`;
51584
51584
  this.red = false;
51585
51585
  this.cursor = this.placeholder ? 0 : s1.length + 1;
51586
51586
  this.render();
@@ -51754,8 +51754,8 @@ var require_select2 = __commonJS({
51754
51754
  this.moveCursor((this.cursor + 1) % this.choices.length);
51755
51755
  this.render();
51756
51756
  }
51757
- _(c53, key) {
51758
- if (c53 === " ") return this.submit();
51757
+ _(c54, key) {
51758
+ if (c54 === " ") return this.submit();
51759
51759
  }
51760
51760
  get selection() {
51761
51761
  return this.choices[this.cursor];
@@ -51879,12 +51879,12 @@ var require_toggle2 = __commonJS({
51879
51879
  this.fire();
51880
51880
  this.render();
51881
51881
  }
51882
- _(c53, key) {
51883
- if (c53 === " ") {
51882
+ _(c54, key) {
51883
+ if (c54 === " ") {
51884
51884
  this.value = !this.value;
51885
- } else if (c53 === "1") {
51885
+ } else if (c54 === "1") {
51886
51886
  this.value = true;
51887
- } else if (c53 === "0") {
51887
+ } else if (c54 === "0") {
51888
51888
  this.value = false;
51889
51889
  } else return this.bell();
51890
51890
  this.render();
@@ -52340,9 +52340,9 @@ var require_date2 = __commonJS({
52340
52340
  this.moveCursor(next ? this.parts.indexOf(next) : this.parts.findIndex((part) => part instanceof DatePart));
52341
52341
  this.render();
52342
52342
  }
52343
- _(c53) {
52344
- if (/\d/.test(c53)) {
52345
- this.typed += c53;
52343
+ _(c54) {
52344
+ if (/\d/.test(c54)) {
52345
+ this.typed += c54;
52346
52346
  this.parts[this.cursor].setTo(this.typed);
52347
52347
  this.render();
52348
52348
  }
@@ -52424,8 +52424,8 @@ var require_number2 = __commonJS({
52424
52424
  parse(x) {
52425
52425
  return this.float ? parseFloat(x) : parseInt(x);
52426
52426
  }
52427
- valid(c53) {
52428
- return c53 === `-` || c53 === `.` && this.float || isNumber.test(c53);
52427
+ valid(c54) {
52428
+ return c54 === `-` || c54 === `.` && this.float || isNumber.test(c54);
52429
52429
  }
52430
52430
  reset() {
52431
52431
  this.typed = ``;
@@ -52512,14 +52512,14 @@ var require_number2 = __commonJS({
52512
52512
  this.fire();
52513
52513
  this.render();
52514
52514
  }
52515
- _(c53, key) {
52516
- if (!this.valid(c53)) return this.bell();
52515
+ _(c54, key) {
52516
+ if (!this.valid(c54)) return this.bell();
52517
52517
  const now = Date.now();
52518
52518
  if (now - this.lastHit > 1e3) this.typed = ``;
52519
- this.typed += c53;
52519
+ this.typed += c54;
52520
52520
  this.lastHit = now;
52521
52521
  this.color = `cyan`;
52522
- if (c53 === `.`) return this.fire();
52522
+ if (c54 === `.`) return this.fire();
52523
52523
  this.value = Math.min(this.parse(this.typed), this.max);
52524
52524
  if (this.value > this.max) this.value = this.max;
52525
52525
  if (this.value < this.min) this.value = this.min;
@@ -52681,10 +52681,10 @@ var require_multiselect2 = __commonJS({
52681
52681
  this.value.filter((v) => !v.disabled).forEach((v) => v.selected = newSelected);
52682
52682
  this.render();
52683
52683
  }
52684
- _(c53, key) {
52685
- if (c53 === " ") {
52684
+ _(c54, key) {
52685
+ if (c54 === " ") {
52686
52686
  this.handleSpaceToggle();
52687
- } else if (c53 === "a") {
52687
+ } else if (c54 === "a") {
52688
52688
  this.toggleAll();
52689
52689
  } else {
52690
52690
  return this.bell();
@@ -52881,10 +52881,10 @@ var require_autocomplete2 = __commonJS({
52881
52881
  this.out.write("\n");
52882
52882
  this.close();
52883
52883
  }
52884
- _(c53, key) {
52884
+ _(c54, key) {
52885
52885
  let s1 = this.input.slice(0, this.cursor);
52886
52886
  let s2 = this.input.slice(this.cursor);
52887
- this.input = `${s1}${c53}${s2}`;
52887
+ this.input = `${s1}${c54}${s2}`;
52888
52888
  this.cursor = s1.length + 1;
52889
52889
  this.complete(this.render);
52890
52890
  this.render();
@@ -53087,15 +53087,15 @@ var require_autocompleteMultiselect2 = __commonJS({
53087
53087
  this.render();
53088
53088
  }
53089
53089
  }
53090
- handleInputChange(c53) {
53091
- this.inputValue = this.inputValue + c53;
53090
+ handleInputChange(c54) {
53091
+ this.inputValue = this.inputValue + c54;
53092
53092
  this.updateFilteredOptions();
53093
53093
  }
53094
- _(c53, key) {
53095
- if (c53 === " ") {
53094
+ _(c54, key) {
53095
+ if (c54 === " ") {
53096
53096
  this.handleSpaceToggle();
53097
53097
  } else {
53098
- this.handleInputChange(c53);
53098
+ this.handleInputChange(c54);
53099
53099
  }
53100
53100
  }
53101
53101
  renderInstructions() {
@@ -53202,12 +53202,12 @@ var require_confirm2 = __commonJS({
53202
53202
  this.out.write("\n");
53203
53203
  this.close();
53204
53204
  }
53205
- _(c53, key) {
53206
- if (c53.toLowerCase() === "y") {
53205
+ _(c54, key) {
53206
+ if (c54.toLowerCase() === "y") {
53207
53207
  this.value = true;
53208
53208
  return this.submit();
53209
53209
  }
53210
- if (c53.toLowerCase() === "n") {
53210
+ if (c54.toLowerCase() === "n") {
53211
53211
  this.value = false;
53212
53212
  return this.submit();
53213
53213
  }
@@ -54261,8 +54261,8 @@ function _htmlElementAsString(el, keyAttrs) {
54261
54261
  const className = elem.className;
54262
54262
  if (className && isString(className)) {
54263
54263
  const classes = className.split(/\s+/);
54264
- for (const c53 of classes) {
54265
- out.push(`.${c53}`);
54264
+ for (const c54 of classes) {
54265
+ out.push(`.${c54}`);
54266
54266
  }
54267
54267
  }
54268
54268
  }
@@ -54475,9 +54475,9 @@ function uuid4(crypto = getCrypto()) {
54475
54475
  }
54476
54476
  return emptyUuid.replace(
54477
54477
  /[018]/g,
54478
- (c53) => (
54478
+ (c54) => (
54479
54479
  // eslint-disable-next-line no-bitwise
54480
- (c53 ^ (getRandomByte() & 15) >> c53 / 4).toString(16)
54480
+ (c54 ^ (getRandomByte() & 15) >> c54 / 4).toString(16)
54481
54481
  )
54482
54482
  );
54483
54483
  }
@@ -72039,16 +72039,16 @@ var HonoInstrumentation = class extends InstrumentationBase {
72039
72039
  */
72040
72040
  _wrapHandler(handler) {
72041
72041
  const instrumentation = this;
72042
- return function(c53, next) {
72042
+ return function(c54, next) {
72043
72043
  if (!instrumentation.isEnabled()) {
72044
- return handler.apply(this, [c53, next]);
72044
+ return handler.apply(this, [c54, next]);
72045
72045
  }
72046
- const path3 = c53.req.path;
72046
+ const path3 = c54.req.path;
72047
72047
  const span = instrumentation.tracer.startSpan(path3);
72048
72048
  return context.with(trace.setSpan(context.active(), span), () => {
72049
72049
  return instrumentation._safeExecute(
72050
72050
  () => {
72051
- const result = handler.apply(this, [c53, next]);
72051
+ const result = handler.apply(this, [c54, next]);
72052
72052
  if (isThenable(result)) {
72053
72053
  return result.then((result2) => {
72054
72054
  const type = instrumentation._determineHandlerType(result2);
@@ -73642,7 +73642,7 @@ if (DSN) {
73642
73642
  init2({
73643
73643
  dsn: DSN,
73644
73644
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
73645
- release: "9.124.2",
73645
+ release: "9.125.0",
73646
73646
  sendDefaultPii: false,
73647
73647
  tracesSampleRate: 0,
73648
73648
  shutdownTimeout: 500,
@@ -73661,7 +73661,7 @@ if (DSN) {
73661
73661
  }
73662
73662
  });
73663
73663
  setContext("cli", {
73664
- version: "9.124.2",
73664
+ version: "9.125.0",
73665
73665
  command: process.argv.slice(2).join(" ")
73666
73666
  });
73667
73667
  setContext("runtime", {
@@ -77046,7 +77046,7 @@ var $ZodBase64 = /* @__PURE__ */ $constructor("$ZodBase64", (inst, def) => {
77046
77046
  function isValidBase64URL(data) {
77047
77047
  if (!base64url.test(data))
77048
77048
  return false;
77049
- const base643 = data.replace(/[-_]/g, (c53) => c53 === "-" ? "+" : "/");
77049
+ const base643 = data.replace(/[-_]/g, (c54) => c54 === "-" ? "+" : "/");
77050
77050
  const padded = base643.padEnd(Math.ceil(base643.length / 4) * 4, "=");
77051
77051
  return isValidBase64(padded);
77052
77052
  }
@@ -87157,9 +87157,9 @@ var ZodDate = /* @__PURE__ */ $constructor("ZodDate", (inst, def) => {
87157
87157
  inst._zod.processJSONSchema = (ctx, json2, params) => dateProcessor(inst, ctx, json2, params);
87158
87158
  inst.min = (value, params) => inst.check(_gte(value, params));
87159
87159
  inst.max = (value, params) => inst.check(_lte(value, params));
87160
- const c53 = inst._zod.bag;
87161
- inst.minDate = c53.minimum ? new Date(c53.minimum) : null;
87162
- inst.maxDate = c53.maximum ? new Date(c53.maximum) : null;
87160
+ const c54 = inst._zod.bag;
87161
+ inst.minDate = c54.minimum ? new Date(c54.minimum) : null;
87162
+ inst.maxDate = c54.maximum ? new Date(c54.maximum) : null;
87163
87163
  });
87164
87164
  function date3(params) {
87165
87165
  return _date(ZodDate, params);
@@ -115206,9 +115206,31 @@ var zeroVoiceChatPrepareListContract = c49.router({
115206
115206
  }
115207
115207
  });
115208
115208
 
115209
- // ../../packages/core/src/contracts/tasks.ts
115209
+ // ../../packages/core/src/contracts/zero-voice-io-quota.ts
115210
115210
  init_esm_shims();
115211
115211
  var c50 = initContract();
115212
+ var audioInputQuotaResponseSchema = external_exports.object({
115213
+ allowed: external_exports.boolean(),
115214
+ count: external_exports.number().int().nonnegative(),
115215
+ limit: external_exports.number().int().positive().nullable()
115216
+ });
115217
+ var zeroVoiceIoQuotaContract = c50.router({
115218
+ get: {
115219
+ method: "GET",
115220
+ path: "/api/zero/voice-io/quota",
115221
+ headers: authHeadersSchema,
115222
+ responses: {
115223
+ 200: audioInputQuotaResponseSchema,
115224
+ 401: apiErrorSchema,
115225
+ 500: apiErrorSchema
115226
+ },
115227
+ summary: "Get audio input quota for current org/user"
115228
+ }
115229
+ });
115230
+
115231
+ // ../../packages/core/src/contracts/tasks.ts
115232
+ init_esm_shims();
115233
+ var c51 = initContract();
115212
115234
  var taskTypeSchema = external_exports.enum([
115213
115235
  "chat",
115214
115236
  "schedule",
@@ -115249,7 +115271,7 @@ var unarchiveTaskBodySchema = external_exports.object({
115249
115271
  taskId: external_exports.string(),
115250
115272
  taskType: taskTypeSchema
115251
115273
  });
115252
- var tasksContract = c50.router({
115274
+ var tasksContract = c51.router({
115253
115275
  list: {
115254
115276
  method: "GET",
115255
115277
  path: "/api/zero/tasks",
@@ -115289,7 +115311,7 @@ var tasksContract = c50.router({
115289
115311
 
115290
115312
  // ../../packages/core/src/contracts/zero-phone.ts
115291
115313
  init_esm_shims();
115292
- var c51 = initContract();
115314
+ var c52 = initContract();
115293
115315
  var phoneStatusResponseSchema = external_exports.object({
115294
115316
  userPhone: external_exports.string().nullable(),
115295
115317
  userPhonePending: external_exports.string().nullable(),
@@ -115308,7 +115330,7 @@ var phoneSetupResponseSchema = external_exports.object({
115308
115330
  var phoneErrorResponseSchema = external_exports.object({
115309
115331
  error: external_exports.string()
115310
115332
  });
115311
- var zeroPhoneStatusContract = c51.router({
115333
+ var zeroPhoneStatusContract = c52.router({
115312
115334
  getStatus: {
115313
115335
  method: "GET",
115314
115336
  path: "/api/zero/phone/status",
@@ -115320,7 +115342,7 @@ var zeroPhoneStatusContract = c51.router({
115320
115342
  summary: "Get the current user's phone link status"
115321
115343
  }
115322
115344
  });
115323
- var zeroPhoneLinkContract = c51.router({
115345
+ var zeroPhoneLinkContract = c52.router({
115324
115346
  link: {
115325
115347
  method: "POST",
115326
115348
  path: "/api/zero/phone/link",
@@ -115338,7 +115360,7 @@ var zeroPhoneLinkContract = c51.router({
115338
115360
  method: "DELETE",
115339
115361
  path: "/api/zero/phone/link",
115340
115362
  headers: authHeadersSchema,
115341
- body: c51.noBody(),
115363
+ body: c52.noBody(),
115342
115364
  responses: {
115343
115365
  200: phoneSuccessResponseSchema,
115344
115366
  401: phoneErrorResponseSchema
@@ -115346,12 +115368,12 @@ var zeroPhoneLinkContract = c51.router({
115346
115368
  summary: "Remove the current user's phone link"
115347
115369
  }
115348
115370
  });
115349
- var zeroPhoneSetupContract = c51.router({
115371
+ var zeroPhoneSetupContract = c52.router({
115350
115372
  setup: {
115351
115373
  method: "POST",
115352
115374
  path: "/api/zero/phone/setup",
115353
115375
  headers: authHeadersSchema,
115354
- body: c51.noBody(),
115376
+ body: c52.noBody(),
115355
115377
  responses: {
115356
115378
  200: phoneSetupResponseSchema,
115357
115379
  401: phoneErrorResponseSchema,
@@ -115364,7 +115386,7 @@ var zeroPhoneSetupContract = c51.router({
115364
115386
 
115365
115387
  // ../../packages/core/src/contracts/zero-integrations-telegram.ts
115366
115388
  init_esm_shims();
115367
- var c52 = initContract();
115389
+ var c53 = initContract();
115368
115390
  var telegramEnvironmentSchema = external_exports.object({
115369
115391
  requiredSecrets: external_exports.array(external_exports.string()),
115370
115392
  requiredVars: external_exports.array(external_exports.string()),
@@ -115401,7 +115423,7 @@ var telegramRegisterResponseSchema = external_exports.object({
115401
115423
  webhookUrl: external_exports.string(),
115402
115424
  domainConfigured: external_exports.boolean()
115403
115425
  });
115404
- var zeroIntegrationsTelegramContract = c52.router({
115426
+ var zeroIntegrationsTelegramContract = c53.router({
115405
115427
  getStatus: {
115406
115428
  method: "GET",
115407
115429
  path: "/api/integrations/telegram",
@@ -115431,9 +115453,9 @@ var zeroIntegrationsTelegramContract = c52.router({
115431
115453
  method: "DELETE",
115432
115454
  path: "/api/integrations/telegram",
115433
115455
  headers: authHeadersSchema,
115434
- body: c52.noBody(),
115456
+ body: c53.noBody(),
115435
115457
  responses: {
115436
- 204: c52.noBody(),
115458
+ 204: c53.noBody(),
115437
115459
  401: apiErrorSchema,
115438
115460
  404: apiErrorSchema
115439
115461
  },
@@ -115768,12 +115790,6 @@ var FEATURE_SWITCHES = {
115768
115790
  description: "Enable the Zoom connector (OAuth 2.0) for meetings, past participants, and cloud recordings access",
115769
115791
  enabled: false
115770
115792
  },
115771
- ["orgCustomConnectors" /* OrgCustomConnectors */]: {
115772
- maintainer: "ethan@vm0.ai",
115773
- description: "Show the org custom connectors surface \u2014 the Custom tab on the Connectors settings page (admin CRUD, member Connect) and the per-agent Custom Connectors section on Agent Authorization. Backend routes remain open; this flag only gates entry points in the UI.",
115774
- enabled: true,
115775
- enabledOrgIdHashes: []
115776
- },
115777
115793
  ["vm0GlmModel" /* Vm0GlmModel */]: {
115778
115794
  maintainer: "ethan@vm0.ai",
115779
115795
  description: "Expose Z.AI GLM-5.1 as a selectable model under the VM0 managed provider",
@@ -115789,6 +115805,12 @@ var FEATURE_SWITCHES = {
115789
115805
  description: "Show the model provider + model picker on the agent profile page and schedule dialog. Allows per-agent and per-schedule model selection, overriding the org default. Staff-only during initial rollout.",
115790
115806
  enabled: true,
115791
115807
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
115808
+ },
115809
+ ["redeemCode" /* RedeemCode */]: {
115810
+ maintainer: "yuma@vm0.ai",
115811
+ description: "Show redeem-code gift icon and dialog in the agent chat page header",
115812
+ enabled: false,
115813
+ enabledOrgIdHashes: STAFF_ORG_ID_HASHES
115792
115814
  }
115793
115815
  };
115794
115816
  function isFeatureEnabled(key, ctx) {
@@ -117075,9 +117097,30 @@ async function completeVoiceChatPreparation(content) {
117075
117097
 
117076
117098
  // src/lib/api/domains/web.ts
117077
117099
  init_esm_shims();
117078
- import { createWriteStream as createWriteStream2 } from "fs";
117100
+ import { createWriteStream as createWriteStream2, readFileSync as readFileSync3, statSync } from "fs";
117101
+ import { basename as basename2, extname } from "path";
117079
117102
  import { Readable as Readable3 } from "stream";
117080
117103
  import { pipeline as pipeline2 } from "stream/promises";
117104
+ var MIME_BY_EXTENSION = {
117105
+ ".png": "image/png",
117106
+ ".jpg": "image/jpeg",
117107
+ ".jpeg": "image/jpeg",
117108
+ ".gif": "image/gif",
117109
+ ".webp": "image/webp",
117110
+ ".svg": "image/svg+xml",
117111
+ ".mp4": "video/mp4",
117112
+ ".webm": "video/webm",
117113
+ ".mov": "video/quicktime",
117114
+ ".pdf": "application/pdf",
117115
+ ".txt": "text/plain",
117116
+ ".csv": "text/csv",
117117
+ ".md": "text/markdown",
117118
+ ".json": "application/json"
117119
+ };
117120
+ function inferContentType(localPath) {
117121
+ const ext = extname(localPath).toLowerCase();
117122
+ return MIME_BY_EXTENSION[ext] ?? "application/octet-stream";
117123
+ }
117081
117124
  async function downloadWebFile(fileId, outPath) {
117082
117125
  const baseUrl = await getBaseUrl();
117083
117126
  const token = await getActiveToken();
@@ -117121,6 +117164,52 @@ async function downloadWebFile(fileId, outPath) {
117121
117164
  const size = contentLengthHeader ? Number(contentLengthHeader) : 0;
117122
117165
  return { path: outPath, mimetype, size };
117123
117166
  }
117167
+ async function uploadWebFile(localPath, options) {
117168
+ const stats = statSync(localPath);
117169
+ if (!stats.isFile()) {
117170
+ throw new ApiRequestError(
117171
+ `Not a regular file: ${localPath}`,
117172
+ "BAD_REQUEST",
117173
+ 400
117174
+ );
117175
+ }
117176
+ const baseUrl = await getBaseUrl();
117177
+ const token = await getActiveToken();
117178
+ if (!token) {
117179
+ throw new ApiRequestError("Not authenticated", "UNAUTHORIZED", 401);
117180
+ }
117181
+ const filename = basename2(localPath);
117182
+ const contentType = options?.contentType ?? inferContentType(localPath);
117183
+ const bytes = readFileSync3(localPath);
117184
+ const blob = new Blob([new Uint8Array(bytes)], { type: contentType });
117185
+ const formData = new FormData();
117186
+ formData.append("file", blob, filename);
117187
+ const url2 = new URL("/api/zero/uploads", baseUrl);
117188
+ const headers = {
117189
+ Authorization: `Bearer ${token}`
117190
+ };
117191
+ const bypassSecret = process.env.VERCEL_AUTOMATION_BYPASS_SECRET;
117192
+ if (bypassSecret) {
117193
+ headers["x-vercel-protection-bypass"] = bypassSecret;
117194
+ }
117195
+ const response = await fetch(url2, {
117196
+ method: "POST",
117197
+ headers,
117198
+ body: formData
117199
+ });
117200
+ if (!response.ok) {
117201
+ let message = `Failed to upload file (HTTP ${response.status})`;
117202
+ let code = "UNKNOWN";
117203
+ try {
117204
+ const body = await response.json();
117205
+ if (body.error?.message) message = body.error.message;
117206
+ if (body.error?.code) code = body.error.code;
117207
+ } catch {
117208
+ }
117209
+ throw new ApiRequestError(message, code, response.status);
117210
+ }
117211
+ return await response.json();
117212
+ }
117124
117213
 
117125
117214
  // src/lib/utils/prompt-utils.ts
117126
117215
  init_esm_shims();
@@ -118259,6 +118348,7 @@ export {
118259
118348
  appendVoiceChatContextEvent,
118260
118349
  completeVoiceChatPreparation,
118261
118350
  downloadWebFile,
118351
+ uploadWebFile,
118262
118352
  require_prompts3 as require_prompts,
118263
118353
  isInteractive,
118264
118354
  promptText,
@@ -118292,4 +118382,4 @@ undici/lib/web/fetch/body.js:
118292
118382
  undici/lib/web/websocket/frame.js:
118293
118383
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
118294
118384
  */
118295
- //# sourceMappingURL=chunk-4XOZ4YXO.js.map
118385
+ //# sourceMappingURL=chunk-WAL2RDDA.js.map