@vm0/cli 9.140.9 → 9.141.1

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.
@@ -4629,8 +4629,8 @@ var require_browser = __commonJS({
4629
4629
  if (!this.useColors) {
4630
4630
  return;
4631
4631
  }
4632
- const c56 = "color: " + this.color;
4633
- args.splice(1, 0, c56, "color: inherit");
4632
+ const c57 = "color: " + this.color;
4633
+ args.splice(1, 0, c57, "color: inherit");
4634
4634
  let index = 0;
4635
4635
  let lastC = 0;
4636
4636
  args[0].replace(/%[a-zA-Z%]/g, (match) => {
@@ -4642,7 +4642,7 @@ var require_browser = __commonJS({
4642
4642
  lastC = index;
4643
4643
  }
4644
4644
  });
4645
- args.splice(lastC, 0, c56);
4645
+ args.splice(lastC, 0, c57);
4646
4646
  }
4647
4647
  exports.log = console.debug || console.log || (() => {
4648
4648
  });
@@ -4930,8 +4930,8 @@ var require_node = __commonJS({
4930
4930
  function formatArgs(args) {
4931
4931
  const { namespace: name, useColors: useColors2 } = this;
4932
4932
  if (useColors2) {
4933
- const c56 = this.color;
4934
- const colorCode = "\x1B[3" + (c56 < 8 ? c56 : "8;5;" + c56);
4933
+ const c57 = this.color;
4934
+ const colorCode = "\x1B[3" + (c57 < 8 ? c57 : "8;5;" + c57);
4935
4935
  const prefix = ` ${colorCode};1m${name} \x1B[0m`;
4936
4936
  args[0] = prefix + args[0].split("\n").join("\n" + prefix);
4937
4937
  args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
@@ -8981,27 +8981,27 @@ var require_commonjs2 = __commonJS({
8981
8981
  const pad = n.some(isPadded);
8982
8982
  N = [];
8983
8983
  for (let i = x2; test(i, y); i += incr) {
8984
- let c56;
8984
+ let c57;
8985
8985
  if (isAlphaSequence) {
8986
- c56 = String.fromCharCode(i);
8987
- if (c56 === "\\") {
8988
- c56 = "";
8986
+ c57 = String.fromCharCode(i);
8987
+ if (c57 === "\\") {
8988
+ c57 = "";
8989
8989
  }
8990
8990
  } else {
8991
- c56 = String(i);
8991
+ c57 = String(i);
8992
8992
  if (pad) {
8993
- const need = width - c56.length;
8993
+ const need = width - c57.length;
8994
8994
  if (need > 0) {
8995
8995
  const z3 = new Array(need + 1).join("0");
8996
8996
  if (i < 0) {
8997
- c56 = "-" + z3 + c56.slice(1);
8997
+ c57 = "-" + z3 + c57.slice(1);
8998
8998
  } else {
8999
- c56 = z3 + c56;
8999
+ c57 = z3 + c57;
9000
9000
  }
9001
9001
  }
9002
9002
  }
9003
9003
  }
9004
- N.push(c56);
9004
+ N.push(c57);
9005
9005
  }
9006
9006
  } else {
9007
9007
  N = [];
@@ -9084,25 +9084,25 @@ var require_brace_expressions = __commonJS({
9084
9084
  let endPos = pos;
9085
9085
  let rangeStart = "";
9086
9086
  WHILE: while (i < glob.length) {
9087
- const c56 = glob.charAt(i);
9088
- if ((c56 === "!" || c56 === "^") && i === pos + 1) {
9087
+ const c57 = glob.charAt(i);
9088
+ if ((c57 === "!" || c57 === "^") && i === pos + 1) {
9089
9089
  negate = true;
9090
9090
  i++;
9091
9091
  continue;
9092
9092
  }
9093
- if (c56 === "]" && sawStart && !escaping) {
9093
+ if (c57 === "]" && sawStart && !escaping) {
9094
9094
  endPos = i + 1;
9095
9095
  break;
9096
9096
  }
9097
9097
  sawStart = true;
9098
- if (c56 === "\\") {
9098
+ if (c57 === "\\") {
9099
9099
  if (!escaping) {
9100
9100
  escaping = true;
9101
9101
  i++;
9102
9102
  continue;
9103
9103
  }
9104
9104
  }
9105
- if (c56 === "[" && !escaping) {
9105
+ if (c57 === "[" && !escaping) {
9106
9106
  for (const [cls, [unip, u, neg]] of Object.entries(posixClasses)) {
9107
9107
  if (glob.startsWith(cls, i)) {
9108
9108
  if (rangeStart) {
@@ -9120,26 +9120,26 @@ var require_brace_expressions = __commonJS({
9120
9120
  }
9121
9121
  escaping = false;
9122
9122
  if (rangeStart) {
9123
- if (c56 > rangeStart) {
9124
- ranges.push(braceEscape(rangeStart) + "-" + braceEscape(c56));
9125
- } else if (c56 === rangeStart) {
9126
- ranges.push(braceEscape(c56));
9123
+ if (c57 > rangeStart) {
9124
+ ranges.push(braceEscape(rangeStart) + "-" + braceEscape(c57));
9125
+ } else if (c57 === rangeStart) {
9126
+ ranges.push(braceEscape(c57));
9127
9127
  }
9128
9128
  rangeStart = "";
9129
9129
  i++;
9130
9130
  continue;
9131
9131
  }
9132
9132
  if (glob.startsWith("-]", i + 1)) {
9133
- ranges.push(braceEscape(c56 + "-"));
9133
+ ranges.push(braceEscape(c57 + "-"));
9134
9134
  i += 2;
9135
9135
  continue;
9136
9136
  }
9137
9137
  if (glob.startsWith("-", i + 1)) {
9138
- rangeStart = c56;
9138
+ rangeStart = c57;
9139
9139
  i += 2;
9140
9140
  continue;
9141
9141
  }
9142
- ranges.push(braceEscape(c56));
9142
+ ranges.push(braceEscape(c57));
9143
9143
  i++;
9144
9144
  }
9145
9145
  if (endPos < i) {
@@ -9189,8 +9189,8 @@ var require_ast = __commonJS({
9189
9189
  var brace_expressions_js_1 = require_brace_expressions();
9190
9190
  var unescape_js_1 = require_unescape();
9191
9191
  var types = /* @__PURE__ */ new Set(["!", "?", "+", "*", "@"]);
9192
- var isExtglobType = (c56) => types.has(c56);
9193
- var isExtglobAST = (c56) => isExtglobType(c56.type);
9192
+ var isExtglobType = (c57) => types.has(c57);
9193
+ var isExtglobAST = (c57) => isExtglobType(c57.type);
9194
9194
  var adoptionMap = /* @__PURE__ */ new Map([
9195
9195
  ["!", ["@"]],
9196
9196
  ["?", ["?", "@"]],
@@ -9387,11 +9387,11 @@ var require_ast = __commonJS({
9387
9387
  this.push(part.clone(this));
9388
9388
  }
9389
9389
  clone(parent) {
9390
- const c56 = new _a2(this.type, parent);
9390
+ const c57 = new _a2(this.type, parent);
9391
9391
  for (const p of this.#parts) {
9392
- c56.copyIn(p);
9392
+ c57.copyIn(p);
9393
9393
  }
9394
- return c56;
9394
+ return c57;
9395
9395
  }
9396
9396
  static #parseAST(str, ast, pos, opt, extDepth) {
9397
9397
  const maxDepth = opt.maxExtglobRecursion ?? 2;
@@ -9403,39 +9403,39 @@ var require_ast = __commonJS({
9403
9403
  let i2 = pos;
9404
9404
  let acc2 = "";
9405
9405
  while (i2 < str.length) {
9406
- const c56 = str.charAt(i2++);
9407
- if (escaping || c56 === "\\") {
9406
+ const c57 = str.charAt(i2++);
9407
+ if (escaping || c57 === "\\") {
9408
9408
  escaping = !escaping;
9409
- acc2 += c56;
9409
+ acc2 += c57;
9410
9410
  continue;
9411
9411
  }
9412
9412
  if (inBrace) {
9413
9413
  if (i2 === braceStart + 1) {
9414
- if (c56 === "^" || c56 === "!") {
9414
+ if (c57 === "^" || c57 === "!") {
9415
9415
  braceNeg = true;
9416
9416
  }
9417
- } else if (c56 === "]" && !(i2 === braceStart + 2 && braceNeg)) {
9417
+ } else if (c57 === "]" && !(i2 === braceStart + 2 && braceNeg)) {
9418
9418
  inBrace = false;
9419
9419
  }
9420
- acc2 += c56;
9420
+ acc2 += c57;
9421
9421
  continue;
9422
- } else if (c56 === "[") {
9422
+ } else if (c57 === "[") {
9423
9423
  inBrace = true;
9424
9424
  braceStart = i2;
9425
9425
  braceNeg = false;
9426
- acc2 += c56;
9426
+ acc2 += c57;
9427
9427
  continue;
9428
9428
  }
9429
- const doRecurse = !opt.noext && isExtglobType(c56) && str.charAt(i2) === "(" && extDepth <= maxDepth;
9429
+ const doRecurse = !opt.noext && isExtglobType(c57) && str.charAt(i2) === "(" && extDepth <= maxDepth;
9430
9430
  if (doRecurse) {
9431
9431
  ast.push(acc2);
9432
9432
  acc2 = "";
9433
- const ext = new _a2(c56, ast);
9433
+ const ext = new _a2(c57, ast);
9434
9434
  i2 = _a2.#parseAST(str, ext, i2, opt, extDepth + 1);
9435
9435
  ast.push(ext);
9436
9436
  continue;
9437
9437
  }
9438
- acc2 += c56;
9438
+ acc2 += c57;
9439
9439
  }
9440
9440
  ast.push(acc2);
9441
9441
  return i2;
@@ -9445,48 +9445,48 @@ var require_ast = __commonJS({
9445
9445
  const parts = [];
9446
9446
  let acc = "";
9447
9447
  while (i < str.length) {
9448
- const c56 = str.charAt(i++);
9449
- if (escaping || c56 === "\\") {
9448
+ const c57 = str.charAt(i++);
9449
+ if (escaping || c57 === "\\") {
9450
9450
  escaping = !escaping;
9451
- acc += c56;
9451
+ acc += c57;
9452
9452
  continue;
9453
9453
  }
9454
9454
  if (inBrace) {
9455
9455
  if (i === braceStart + 1) {
9456
- if (c56 === "^" || c56 === "!") {
9456
+ if (c57 === "^" || c57 === "!") {
9457
9457
  braceNeg = true;
9458
9458
  }
9459
- } else if (c56 === "]" && !(i === braceStart + 2 && braceNeg)) {
9459
+ } else if (c57 === "]" && !(i === braceStart + 2 && braceNeg)) {
9460
9460
  inBrace = false;
9461
9461
  }
9462
- acc += c56;
9462
+ acc += c57;
9463
9463
  continue;
9464
- } else if (c56 === "[") {
9464
+ } else if (c57 === "[") {
9465
9465
  inBrace = true;
9466
9466
  braceStart = i;
9467
9467
  braceNeg = false;
9468
- acc += c56;
9468
+ acc += c57;
9469
9469
  continue;
9470
9470
  }
9471
- const doRecurse = !opt.noext && isExtglobType(c56) && str.charAt(i) === "(" && /* c8 ignore start - the maxDepth is sufficient here */
9472
- (extDepth <= maxDepth || ast && ast.#canAdoptType(c56));
9471
+ const doRecurse = !opt.noext && isExtglobType(c57) && str.charAt(i) === "(" && /* c8 ignore start - the maxDepth is sufficient here */
9472
+ (extDepth <= maxDepth || ast && ast.#canAdoptType(c57));
9473
9473
  if (doRecurse) {
9474
- const depthAdd = ast && ast.#canAdoptType(c56) ? 0 : 1;
9474
+ const depthAdd = ast && ast.#canAdoptType(c57) ? 0 : 1;
9475
9475
  part.push(acc);
9476
9476
  acc = "";
9477
- const ext = new _a2(c56, part);
9477
+ const ext = new _a2(c57, part);
9478
9478
  part.push(ext);
9479
9479
  i = _a2.#parseAST(str, ext, i, opt, extDepth + depthAdd);
9480
9480
  continue;
9481
9481
  }
9482
- if (c56 === "|") {
9482
+ if (c57 === "|") {
9483
9483
  part.push(acc);
9484
9484
  acc = "";
9485
9485
  parts.push(part);
9486
9486
  part = new _a2(null, ast);
9487
9487
  continue;
9488
9488
  }
9489
- if (c56 === ")") {
9489
+ if (c57 === ")") {
9490
9490
  if (acc === "" && ast.#parts.length === 0) {
9491
9491
  ast.#emptyExt = true;
9492
9492
  }
@@ -9495,7 +9495,7 @@ var require_ast = __commonJS({
9495
9495
  ast.push(...parts, part);
9496
9496
  return i;
9497
9497
  }
9498
- acc += c56;
9498
+ acc += c57;
9499
9499
  }
9500
9500
  ast.type = null;
9501
9501
  ast.#hasMagic = void 0;
@@ -9515,8 +9515,8 @@ var require_ast = __commonJS({
9515
9515
  }
9516
9516
  return this.#canAdoptType(gc.type, map2);
9517
9517
  }
9518
- #canAdoptType(c56, map2 = adoptionAnyMap) {
9519
- return !!map2.get(this.type)?.includes(c56);
9518
+ #canAdoptType(c57, map2 = adoptionAnyMap) {
9519
+ return !!map2.get(this.type)?.includes(c57);
9520
9520
  }
9521
9521
  #adoptWithSpace(child, index) {
9522
9522
  const gc = child.#parts[0];
@@ -9534,9 +9534,9 @@ var require_ast = __commonJS({
9534
9534
  }
9535
9535
  this.#toString = void 0;
9536
9536
  }
9537
- #canUsurpType(c56) {
9537
+ #canUsurpType(c57) {
9538
9538
  const m = usurpMap.get(this.type);
9539
- return !!m?.has(c56);
9539
+ return !!m?.has(c57);
9540
9540
  }
9541
9541
  #canUsurp(child) {
9542
9542
  if (!child || typeof child !== "object" || child.type !== null || child.#parts.length !== 1 || this.type === null || this.#parts.length !== 1) {
@@ -9749,18 +9749,18 @@ var require_ast = __commonJS({
9749
9749
  do {
9750
9750
  done = true;
9751
9751
  for (let i = 0; i < this.#parts.length; i++) {
9752
- const c56 = this.#parts[i];
9753
- if (typeof c56 === "object") {
9754
- c56.#flatten();
9755
- if (this.#canAdopt(c56)) {
9752
+ const c57 = this.#parts[i];
9753
+ if (typeof c57 === "object") {
9754
+ c57.#flatten();
9755
+ if (this.#canAdopt(c57)) {
9756
9756
  done = false;
9757
- this.#adopt(c56, i);
9758
- } else if (this.#canAdoptWithSpace(c56)) {
9757
+ this.#adopt(c57, i);
9758
+ } else if (this.#canAdoptWithSpace(c57)) {
9759
9759
  done = false;
9760
- this.#adoptWithSpace(c56, i);
9761
- } else if (this.#canUsurp(c56)) {
9760
+ this.#adoptWithSpace(c57, i);
9761
+ } else if (this.#canUsurp(c57)) {
9762
9762
  done = false;
9763
- this.#usurp(c56);
9763
+ this.#usurp(c57);
9764
9764
  }
9765
9765
  }
9766
9766
  }
@@ -9784,13 +9784,13 @@ var require_ast = __commonJS({
9784
9784
  let uflag = false;
9785
9785
  let inStar = false;
9786
9786
  for (let i = 0; i < glob.length; i++) {
9787
- const c56 = glob.charAt(i);
9787
+ const c57 = glob.charAt(i);
9788
9788
  if (escaping) {
9789
9789
  escaping = false;
9790
- re += (reSpecials.has(c56) ? "\\" : "") + c56;
9790
+ re += (reSpecials.has(c57) ? "\\" : "") + c57;
9791
9791
  continue;
9792
9792
  }
9793
- if (c56 === "*") {
9793
+ if (c57 === "*") {
9794
9794
  if (inStar)
9795
9795
  continue;
9796
9796
  inStar = true;
@@ -9800,7 +9800,7 @@ var require_ast = __commonJS({
9800
9800
  } else {
9801
9801
  inStar = false;
9802
9802
  }
9803
- if (c56 === "\\") {
9803
+ if (c57 === "\\") {
9804
9804
  if (i === glob.length - 1) {
9805
9805
  re += "\\\\";
9806
9806
  } else {
@@ -9808,7 +9808,7 @@ var require_ast = __commonJS({
9808
9808
  }
9809
9809
  continue;
9810
9810
  }
9811
- if (c56 === "[") {
9811
+ if (c57 === "[") {
9812
9812
  const [src, needUflag, consumed, magic] = (0, brace_expressions_js_1.parseClass)(glob, i);
9813
9813
  if (consumed) {
9814
9814
  re += src;
@@ -9818,12 +9818,12 @@ var require_ast = __commonJS({
9818
9818
  continue;
9819
9819
  }
9820
9820
  }
9821
- if (c56 === "?") {
9821
+ if (c57 === "?") {
9822
9822
  re += qmark;
9823
9823
  hasMagic = true;
9824
9824
  continue;
9825
9825
  }
9826
- re += regExpEscape(c56);
9826
+ re += regExpEscape(c57);
9827
9827
  }
9828
9828
  return [re, (0, unescape_js_1.unescape)(glob), !!hasMagic, uflag];
9829
9829
  }
@@ -13747,13 +13747,13 @@ var require_utils4 = __commonJS({
13747
13747
  }
13748
13748
  exports.arrayStringifyHelper = arrayStringifyHelper;
13749
13749
  function getPoolNameOld(pool) {
13750
- const c56 = pool.config.connectionConfig;
13750
+ const c57 = pool.config.connectionConfig;
13751
13751
  let poolName = "";
13752
- poolName += c56.host ? `host: '${c56.host}', ` : "";
13753
- poolName += c56.port ? `port: ${c56.port}, ` : "";
13754
- poolName += c56.database ? `database: '${c56.database}', ` : "";
13755
- poolName += c56.user ? `user: '${c56.user}'` : "";
13756
- if (!c56.user) {
13752
+ poolName += c57.host ? `host: '${c57.host}', ` : "";
13753
+ poolName += c57.port ? `port: ${c57.port}, ` : "";
13754
+ poolName += c57.database ? `database: '${c57.database}', ` : "";
13755
+ poolName += c57.user ? `user: '${c57.user}'` : "";
13756
+ if (!c57.user) {
13757
13757
  poolName = poolName.substring(0, poolName.length - 2);
13758
13758
  }
13759
13759
  return poolName.trim();
@@ -14105,7 +14105,7 @@ var require_src9 = __commonJS({
14105
14105
  return indexOpeningDashDashComment < indexClosingSlashComment;
14106
14106
  }
14107
14107
  function fixedEncodeURIComponent(str) {
14108
- return encodeURIComponent(str).replace(/[!'()*]/g, (c56) => `%${c56.charCodeAt(0).toString(16).toUpperCase()}`);
14108
+ return encodeURIComponent(str).replace(/[!'()*]/g, (c57) => `%${c57.charCodeAt(0).toString(16).toUpperCase()}`);
14109
14109
  }
14110
14110
  function addSqlCommenterComment(span, query) {
14111
14111
  if (typeof query !== "string" || query.length === 0) {
@@ -22665,8 +22665,8 @@ var require_util = __commonJS({
22665
22665
  function isUSVString(val) {
22666
22666
  return hasIsWellFormed ? `${val}`.isWellFormed() : toUSVString(val) === `${val}`;
22667
22667
  }
22668
- function isTokenCharCode(c56) {
22669
- switch (c56) {
22668
+ function isTokenCharCode(c57) {
22669
+ switch (c57) {
22670
22670
  case 34:
22671
22671
  case 40:
22672
22672
  case 41:
@@ -22686,7 +22686,7 @@ var require_util = __commonJS({
22686
22686
  case 125:
22687
22687
  return false;
22688
22688
  default:
22689
- return c56 >= 33 && c56 <= 126;
22689
+ return c57 >= 33 && c57 <= 126;
22690
22690
  }
22691
22691
  }
22692
22692
  function isValidHTTPToken(characters) {
@@ -24275,7 +24275,7 @@ var require_constants2 = __commonJS({
24275
24275
  exports.HEADER_CHARS.push(i);
24276
24276
  }
24277
24277
  }
24278
- exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c56) => c56 !== 44);
24278
+ exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c57) => c57 !== 44);
24279
24279
  exports.MAJOR = exports.NUM_MAP;
24280
24280
  exports.MINOR = exports.MAJOR;
24281
24281
  var HEADER_STATE;
@@ -25421,10 +25421,10 @@ var require_util2 = __commonJS({
25421
25421
  }
25422
25422
  function isValidReasonPhrase(statusText) {
25423
25423
  for (let i = 0; i < statusText.length; ++i) {
25424
- const c56 = statusText.charCodeAt(i);
25425
- if (!(c56 === 9 || // HTAB
25426
- c56 >= 32 && c56 <= 126 || // SP / VCHAR
25427
- c56 >= 128 && c56 <= 255)) {
25424
+ const c57 = statusText.charCodeAt(i);
25425
+ if (!(c57 === 9 || // HTAB
25426
+ c57 >= 32 && c57 <= 126 || // SP / VCHAR
25427
+ c57 >= 128 && c57 <= 255)) {
25428
25428
  return false;
25429
25429
  }
25430
25430
  }
@@ -29398,7 +29398,7 @@ var require_pool_base = __commonJS({
29398
29398
  pool.emit("drain", origin, [pool, ...targets]);
29399
29399
  }
29400
29400
  if (pool[kClosedResolve] && queue.isEmpty()) {
29401
- Promise.all(pool[kClients].map((c56) => c56.close())).then(pool[kClosedResolve]);
29401
+ Promise.all(pool[kClients].map((c57) => c57.close())).then(pool[kClosedResolve]);
29402
29402
  }
29403
29403
  };
29404
29404
  this[kOnConnect] = (origin, targets) => {
@@ -29447,7 +29447,7 @@ var require_pool_base = __commonJS({
29447
29447
  }
29448
29448
  async [kClose]() {
29449
29449
  if (this[kQueue].isEmpty()) {
29450
- await Promise.all(this[kClients].map((c56) => c56.close()));
29450
+ await Promise.all(this[kClients].map((c57) => c57.close()));
29451
29451
  } else {
29452
29452
  await new Promise((resolve2) => {
29453
29453
  this[kClosedResolve] = resolve2;
@@ -29462,7 +29462,7 @@ var require_pool_base = __commonJS({
29462
29462
  }
29463
29463
  item.handler.onError(err);
29464
29464
  }
29465
- await Promise.all(this[kClients].map((c56) => c56.destroy(err)));
29465
+ await Promise.all(this[kClients].map((c57) => c57.destroy(err)));
29466
29466
  }
29467
29467
  [kDispatch](opts, handler) {
29468
29468
  const dispatcher = this[kGetDispatcher]();
@@ -36232,8 +36232,8 @@ var require_util4 = __commonJS({
36232
36232
  return new TextDecoder(encoding).decode(sliced);
36233
36233
  }
36234
36234
  function BOMSniffing(ioQueue) {
36235
- const [a, b, c56] = ioQueue;
36236
- if (a === 239 && b === 187 && c56 === 191) {
36235
+ const [a, b, c57] = ioQueue;
36236
+ if (a === 239 && b === 187 && c57 === 191) {
36237
36237
  return "UTF-8";
36238
36238
  } else if (a === 254 && b === 255) {
36239
36239
  return "UTF-16BE";
@@ -40712,9 +40712,9 @@ var require_Alias = __commonJS({
40712
40712
  } else if (identity.isCollection(node2)) {
40713
40713
  let count = 0;
40714
40714
  for (const item of node2.items) {
40715
- const c56 = getAliasCount(doc, item, anchors2);
40716
- if (c56 > count)
40717
- count = c56;
40715
+ const c57 = getAliasCount(doc, item, anchors2);
40716
+ if (c57 > count)
40717
+ count = c57;
40718
40718
  }
40719
40719
  return count;
40720
40720
  } else if (identity.isPair(node2)) {
@@ -47730,7 +47730,7 @@ var require_style = __commonJS({
47730
47730
  "../../node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/style.js"(exports, module2) {
47731
47731
  "use strict";
47732
47732
  init_esm_shims();
47733
- var c56 = require_kleur();
47733
+ var c57 = require_kleur();
47734
47734
  var figures = require_figures();
47735
47735
  var styles3 = Object.freeze({
47736
47736
  password: {
@@ -47752,14 +47752,14 @@ var require_style = __commonJS({
47752
47752
  });
47753
47753
  var render = (type) => styles3[type] || styles3.default;
47754
47754
  var symbols = Object.freeze({
47755
- aborted: c56.red(figures.cross),
47756
- done: c56.green(figures.tick),
47757
- exited: c56.yellow(figures.cross),
47758
- default: c56.cyan("?")
47755
+ aborted: c57.red(figures.cross),
47756
+ done: c57.green(figures.tick),
47757
+ exited: c57.yellow(figures.cross),
47758
+ default: c57.cyan("?")
47759
47759
  });
47760
47760
  var symbol2 = (done, aborted2, exited) => aborted2 ? symbols.aborted : exited ? symbols.exited : done ? symbols.done : symbols.default;
47761
- var delimiter = (completing) => c56.gray(completing ? figures.ellipsis : figures.pointerSmall);
47762
- var item = (expandable, expanded) => c56.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
47761
+ var delimiter = (completing) => c57.gray(completing ? figures.ellipsis : figures.pointerSmall);
47762
+ var item = (expandable, expanded) => c57.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
47763
47763
  module2.exports = {
47764
47764
  styles: styles3,
47765
47765
  render,
@@ -48041,10 +48041,10 @@ var require_text = __commonJS({
48041
48041
  this.cursor = this.cursor + n;
48042
48042
  this.cursorOffset += n;
48043
48043
  }
48044
- _(c56, key) {
48044
+ _(c57, key) {
48045
48045
  let s1 = this.value.slice(0, this.cursor);
48046
48046
  let s2 = this.value.slice(this.cursor);
48047
- this.value = `${s1}${c56}${s2}`;
48047
+ this.value = `${s1}${c57}${s2}`;
48048
48048
  this.red = false;
48049
48049
  this.cursor = this.placeholder ? 0 : s1.length + 1;
48050
48050
  this.render();
@@ -48219,8 +48219,8 @@ var require_select = __commonJS({
48219
48219
  this.moveCursor((this.cursor + 1) % this.choices.length);
48220
48220
  this.render();
48221
48221
  }
48222
- _(c56, key) {
48223
- if (c56 === " ") return this.submit();
48222
+ _(c57, key) {
48223
+ if (c57 === " ") return this.submit();
48224
48224
  }
48225
48225
  get selection() {
48226
48226
  return this.choices[this.cursor];
@@ -48346,12 +48346,12 @@ var require_toggle = __commonJS({
48346
48346
  this.fire();
48347
48347
  this.render();
48348
48348
  }
48349
- _(c56, key) {
48350
- if (c56 === " ") {
48349
+ _(c57, key) {
48350
+ if (c57 === " ") {
48351
48351
  this.value = !this.value;
48352
- } else if (c56 === "1") {
48352
+ } else if (c57 === "1") {
48353
48353
  this.value = true;
48354
- } else if (c56 === "0") {
48354
+ } else if (c57 === "0") {
48355
48355
  this.value = false;
48356
48356
  } else return this.bell();
48357
48357
  this.render();
@@ -48859,9 +48859,9 @@ var require_date = __commonJS({
48859
48859
  this.moveCursor(next ? this.parts.indexOf(next) : this.parts.findIndex((part) => part instanceof DatePart));
48860
48860
  this.render();
48861
48861
  }
48862
- _(c56) {
48863
- if (/\d/.test(c56)) {
48864
- this.typed += c56;
48862
+ _(c57) {
48863
+ if (/\d/.test(c57)) {
48864
+ this.typed += c57;
48865
48865
  this.parts[this.cursor].setTo(this.typed);
48866
48866
  this.render();
48867
48867
  }
@@ -48970,8 +48970,8 @@ var require_number = __commonJS({
48970
48970
  parse(x2) {
48971
48971
  return this.float ? parseFloat(x2) : parseInt(x2);
48972
48972
  }
48973
- valid(c56) {
48974
- return c56 === `-` || c56 === `.` && this.float || isNumber.test(c56);
48973
+ valid(c57) {
48974
+ return c57 === `-` || c57 === `.` && this.float || isNumber.test(c57);
48975
48975
  }
48976
48976
  reset() {
48977
48977
  this.typed = ``;
@@ -49064,14 +49064,14 @@ var require_number = __commonJS({
49064
49064
  this.fire();
49065
49065
  this.render();
49066
49066
  }
49067
- _(c56, key) {
49068
- if (!this.valid(c56)) return this.bell();
49067
+ _(c57, key) {
49068
+ if (!this.valid(c57)) return this.bell();
49069
49069
  const now = Date.now();
49070
49070
  if (now - this.lastHit > 1e3) this.typed = ``;
49071
- this.typed += c56;
49071
+ this.typed += c57;
49072
49072
  this.lastHit = now;
49073
49073
  this.color = `cyan`;
49074
- if (c56 === `.`) return this.fire();
49074
+ if (c57 === `.`) return this.fire();
49075
49075
  this.value = Math.min(this.parse(this.typed), this.max);
49076
49076
  if (this.value > this.max) this.value = this.max;
49077
49077
  if (this.value < this.min) this.value = this.min;
@@ -49235,10 +49235,10 @@ var require_multiselect = __commonJS({
49235
49235
  this.value.filter((v) => !v.disabled).forEach((v) => v.selected = newSelected);
49236
49236
  this.render();
49237
49237
  }
49238
- _(c56, key) {
49239
- if (c56 === " ") {
49238
+ _(c57, key) {
49239
+ if (c57 === " ") {
49240
49240
  this.handleSpaceToggle();
49241
- } else if (c56 === "a") {
49241
+ } else if (c57 === "a") {
49242
49242
  this.toggleAll();
49243
49243
  } else {
49244
49244
  return this.bell();
@@ -49479,10 +49479,10 @@ var require_autocomplete = __commonJS({
49479
49479
  this.out.write("\n");
49480
49480
  this.close();
49481
49481
  }
49482
- _(c56, key) {
49482
+ _(c57, key) {
49483
49483
  let s1 = this.input.slice(0, this.cursor);
49484
49484
  let s2 = this.input.slice(this.cursor);
49485
- this.input = `${s1}${c56}${s2}`;
49485
+ this.input = `${s1}${c57}${s2}`;
49486
49486
  this.cursor = s1.length + 1;
49487
49487
  this.complete(this.render);
49488
49488
  this.render();
@@ -49682,15 +49682,15 @@ var require_autocompleteMultiselect = __commonJS({
49682
49682
  this.render();
49683
49683
  }
49684
49684
  }
49685
- handleInputChange(c56) {
49686
- this.inputValue = this.inputValue + c56;
49685
+ handleInputChange(c57) {
49686
+ this.inputValue = this.inputValue + c57;
49687
49687
  this.updateFilteredOptions();
49688
49688
  }
49689
- _(c56, key) {
49690
- if (c56 === " ") {
49689
+ _(c57, key) {
49690
+ if (c57 === " ") {
49691
49691
  this.handleSpaceToggle();
49692
49692
  } else {
49693
- this.handleInputChange(c56);
49693
+ this.handleInputChange(c57);
49694
49694
  }
49695
49695
  }
49696
49696
  renderInstructions() {
@@ -49796,12 +49796,12 @@ var require_confirm = __commonJS({
49796
49796
  this.out.write("\n");
49797
49797
  this.close();
49798
49798
  }
49799
- _(c56, key) {
49800
- if (c56.toLowerCase() === "y") {
49799
+ _(c57, key) {
49800
+ if (c57.toLowerCase() === "y") {
49801
49801
  this.value = true;
49802
49802
  return this.submit();
49803
49803
  }
49804
- if (c56.toLowerCase() === "n") {
49804
+ if (c57.toLowerCase() === "n") {
49805
49805
  this.value = false;
49806
49806
  return this.submit();
49807
49807
  }
@@ -50242,7 +50242,7 @@ var require_style2 = __commonJS({
50242
50242
  "../../node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/style.js"(exports, module2) {
50243
50243
  "use strict";
50244
50244
  init_esm_shims();
50245
- var c56 = require_kleur();
50245
+ var c57 = require_kleur();
50246
50246
  var figures = require_figures2();
50247
50247
  var styles3 = Object.freeze({
50248
50248
  password: { scale: 1, render: (input) => "*".repeat(input.length) },
@@ -50252,14 +50252,14 @@ var require_style2 = __commonJS({
50252
50252
  });
50253
50253
  var render = (type) => styles3[type] || styles3.default;
50254
50254
  var symbols = Object.freeze({
50255
- aborted: c56.red(figures.cross),
50256
- done: c56.green(figures.tick),
50257
- exited: c56.yellow(figures.cross),
50258
- default: c56.cyan("?")
50255
+ aborted: c57.red(figures.cross),
50256
+ done: c57.green(figures.tick),
50257
+ exited: c57.yellow(figures.cross),
50258
+ default: c57.cyan("?")
50259
50259
  });
50260
50260
  var symbol2 = (done, aborted2, exited) => aborted2 ? symbols.aborted : exited ? symbols.exited : done ? symbols.done : symbols.default;
50261
- var delimiter = (completing) => c56.gray(completing ? figures.ellipsis : figures.pointerSmall);
50262
- var item = (expandable, expanded) => c56.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
50261
+ var delimiter = (completing) => c57.gray(completing ? figures.ellipsis : figures.pointerSmall);
50262
+ var item = (expandable, expanded) => c57.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
50263
50263
  module2.exports = {
50264
50264
  styles: styles3,
50265
50265
  render,
@@ -50492,10 +50492,10 @@ var require_text2 = __commonJS({
50492
50492
  this.cursor = this.cursor + n;
50493
50493
  this.cursorOffset += n;
50494
50494
  }
50495
- _(c56, key) {
50495
+ _(c57, key) {
50496
50496
  let s1 = this.value.slice(0, this.cursor);
50497
50497
  let s2 = this.value.slice(this.cursor);
50498
- this.value = `${s1}${c56}${s2}`;
50498
+ this.value = `${s1}${c57}${s2}`;
50499
50499
  this.red = false;
50500
50500
  this.cursor = this.placeholder ? 0 : s1.length + 1;
50501
50501
  this.render();
@@ -50669,8 +50669,8 @@ var require_select2 = __commonJS({
50669
50669
  this.moveCursor((this.cursor + 1) % this.choices.length);
50670
50670
  this.render();
50671
50671
  }
50672
- _(c56, key) {
50673
- if (c56 === " ") return this.submit();
50672
+ _(c57, key) {
50673
+ if (c57 === " ") return this.submit();
50674
50674
  }
50675
50675
  get selection() {
50676
50676
  return this.choices[this.cursor];
@@ -50794,12 +50794,12 @@ var require_toggle2 = __commonJS({
50794
50794
  this.fire();
50795
50795
  this.render();
50796
50796
  }
50797
- _(c56, key) {
50798
- if (c56 === " ") {
50797
+ _(c57, key) {
50798
+ if (c57 === " ") {
50799
50799
  this.value = !this.value;
50800
- } else if (c56 === "1") {
50800
+ } else if (c57 === "1") {
50801
50801
  this.value = true;
50802
- } else if (c56 === "0") {
50802
+ } else if (c57 === "0") {
50803
50803
  this.value = false;
50804
50804
  } else return this.bell();
50805
50805
  this.render();
@@ -51255,9 +51255,9 @@ var require_date2 = __commonJS({
51255
51255
  this.moveCursor(next ? this.parts.indexOf(next) : this.parts.findIndex((part) => part instanceof DatePart));
51256
51256
  this.render();
51257
51257
  }
51258
- _(c56) {
51259
- if (/\d/.test(c56)) {
51260
- this.typed += c56;
51258
+ _(c57) {
51259
+ if (/\d/.test(c57)) {
51260
+ this.typed += c57;
51261
51261
  this.parts[this.cursor].setTo(this.typed);
51262
51262
  this.render();
51263
51263
  }
@@ -51339,8 +51339,8 @@ var require_number2 = __commonJS({
51339
51339
  parse(x2) {
51340
51340
  return this.float ? parseFloat(x2) : parseInt(x2);
51341
51341
  }
51342
- valid(c56) {
51343
- return c56 === `-` || c56 === `.` && this.float || isNumber.test(c56);
51342
+ valid(c57) {
51343
+ return c57 === `-` || c57 === `.` && this.float || isNumber.test(c57);
51344
51344
  }
51345
51345
  reset() {
51346
51346
  this.typed = ``;
@@ -51427,14 +51427,14 @@ var require_number2 = __commonJS({
51427
51427
  this.fire();
51428
51428
  this.render();
51429
51429
  }
51430
- _(c56, key) {
51431
- if (!this.valid(c56)) return this.bell();
51430
+ _(c57, key) {
51431
+ if (!this.valid(c57)) return this.bell();
51432
51432
  const now = Date.now();
51433
51433
  if (now - this.lastHit > 1e3) this.typed = ``;
51434
- this.typed += c56;
51434
+ this.typed += c57;
51435
51435
  this.lastHit = now;
51436
51436
  this.color = `cyan`;
51437
- if (c56 === `.`) return this.fire();
51437
+ if (c57 === `.`) return this.fire();
51438
51438
  this.value = Math.min(this.parse(this.typed), this.max);
51439
51439
  if (this.value > this.max) this.value = this.max;
51440
51440
  if (this.value < this.min) this.value = this.min;
@@ -51596,10 +51596,10 @@ var require_multiselect2 = __commonJS({
51596
51596
  this.value.filter((v) => !v.disabled).forEach((v) => v.selected = newSelected);
51597
51597
  this.render();
51598
51598
  }
51599
- _(c56, key) {
51600
- if (c56 === " ") {
51599
+ _(c57, key) {
51600
+ if (c57 === " ") {
51601
51601
  this.handleSpaceToggle();
51602
- } else if (c56 === "a") {
51602
+ } else if (c57 === "a") {
51603
51603
  this.toggleAll();
51604
51604
  } else {
51605
51605
  return this.bell();
@@ -51796,10 +51796,10 @@ var require_autocomplete2 = __commonJS({
51796
51796
  this.out.write("\n");
51797
51797
  this.close();
51798
51798
  }
51799
- _(c56, key) {
51799
+ _(c57, key) {
51800
51800
  let s1 = this.input.slice(0, this.cursor);
51801
51801
  let s2 = this.input.slice(this.cursor);
51802
- this.input = `${s1}${c56}${s2}`;
51802
+ this.input = `${s1}${c57}${s2}`;
51803
51803
  this.cursor = s1.length + 1;
51804
51804
  this.complete(this.render);
51805
51805
  this.render();
@@ -52002,15 +52002,15 @@ var require_autocompleteMultiselect2 = __commonJS({
52002
52002
  this.render();
52003
52003
  }
52004
52004
  }
52005
- handleInputChange(c56) {
52006
- this.inputValue = this.inputValue + c56;
52005
+ handleInputChange(c57) {
52006
+ this.inputValue = this.inputValue + c57;
52007
52007
  this.updateFilteredOptions();
52008
52008
  }
52009
- _(c56, key) {
52010
- if (c56 === " ") {
52009
+ _(c57, key) {
52010
+ if (c57 === " ") {
52011
52011
  this.handleSpaceToggle();
52012
52012
  } else {
52013
- this.handleInputChange(c56);
52013
+ this.handleInputChange(c57);
52014
52014
  }
52015
52015
  }
52016
52016
  renderInstructions() {
@@ -52117,12 +52117,12 @@ var require_confirm2 = __commonJS({
52117
52117
  this.out.write("\n");
52118
52118
  this.close();
52119
52119
  }
52120
- _(c56, key) {
52121
- if (c56.toLowerCase() === "y") {
52120
+ _(c57, key) {
52121
+ if (c57.toLowerCase() === "y") {
52122
52122
  this.value = true;
52123
52123
  return this.submit();
52124
52124
  }
52125
- if (c56.toLowerCase() === "n") {
52125
+ if (c57.toLowerCase() === "n") {
52126
52126
  this.value = false;
52127
52127
  return this.submit();
52128
52128
  }
@@ -53176,8 +53176,8 @@ function _htmlElementAsString(el, keyAttrs) {
53176
53176
  const className = elem.className;
53177
53177
  if (className && isString(className)) {
53178
53178
  const classes = className.split(/\s+/);
53179
- for (const c56 of classes) {
53180
- out.push(`.${c56}`);
53179
+ for (const c57 of classes) {
53180
+ out.push(`.${c57}`);
53181
53181
  }
53182
53182
  }
53183
53183
  }
@@ -53409,9 +53409,9 @@ function uuid4(crypto = getCrypto()) {
53409
53409
  }
53410
53410
  return emptyUuid.replace(
53411
53411
  /[018]/g,
53412
- (c56) => (
53412
+ (c57) => (
53413
53413
  // eslint-disable-next-line no-bitwise
53414
- (c56 ^ (getRandomByte() & 15) >> c56 / 4).toString(16)
53414
+ (c57 ^ (getRandomByte() & 15) >> c57 / 4).toString(16)
53415
53415
  )
53416
53416
  );
53417
53417
  }
@@ -72468,16 +72468,16 @@ var HonoInstrumentation = class extends InstrumentationBase {
72468
72468
  */
72469
72469
  _wrapHandler(handler) {
72470
72470
  const instrumentation = this;
72471
- return function(c56, next) {
72471
+ return function(c57, next) {
72472
72472
  if (!instrumentation.isEnabled()) {
72473
- return handler.apply(this, [c56, next]);
72473
+ return handler.apply(this, [c57, next]);
72474
72474
  }
72475
- const path3 = c56.req.path;
72475
+ const path3 = c57.req.path;
72476
72476
  const span = instrumentation.tracer.startSpan(path3);
72477
72477
  return context.with(trace.setSpan(context.active(), span), () => {
72478
72478
  return instrumentation._safeExecute(
72479
72479
  () => {
72480
- const result = handler.apply(this, [c56, next]);
72480
+ const result = handler.apply(this, [c57, next]);
72481
72481
  if (isThenable(result)) {
72482
72482
  return result.then((result2) => {
72483
72483
  const type = instrumentation._determineHandlerType(result2);
@@ -74083,7 +74083,7 @@ if (DSN) {
74083
74083
  init2({
74084
74084
  dsn: DSN,
74085
74085
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
74086
- release: "9.140.9",
74086
+ release: "9.141.1",
74087
74087
  sendDefaultPii: false,
74088
74088
  tracesSampleRate: 0,
74089
74089
  shutdownTimeout: 500,
@@ -74102,7 +74102,7 @@ if (DSN) {
74102
74102
  }
74103
74103
  });
74104
74104
  setContext("cli", {
74105
- version: "9.140.9",
74105
+ version: "9.141.1",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -77433,7 +77433,7 @@ var $ZodBase64 = /* @__PURE__ */ $constructor("$ZodBase64", (inst, def) => {
77433
77433
  function isValidBase64URL(data) {
77434
77434
  if (!base64url.test(data))
77435
77435
  return false;
77436
- const base643 = data.replace(/[-_]/g, (c56) => c56 === "-" ? "+" : "/");
77436
+ const base643 = data.replace(/[-_]/g, (c57) => c57 === "-" ? "+" : "/");
77437
77437
  const padded = base643.padEnd(Math.ceil(base643.length / 4) * 4, "=");
77438
77438
  return isValidBase64(padded);
77439
77439
  }
@@ -87544,9 +87544,9 @@ var ZodDate = /* @__PURE__ */ $constructor("ZodDate", (inst, def) => {
87544
87544
  inst._zod.processJSONSchema = (ctx, json2, params) => dateProcessor(inst, ctx, json2, params);
87545
87545
  inst.min = (value, params) => inst.check(_gte(value, params));
87546
87546
  inst.max = (value, params) => inst.check(_lte(value, params));
87547
- const c56 = inst._zod.bag;
87548
- inst.minDate = c56.minimum ? new Date(c56.minimum) : null;
87549
- inst.maxDate = c56.maximum ? new Date(c56.maximum) : null;
87547
+ const c57 = inst._zod.bag;
87548
+ inst.minDate = c57.minimum ? new Date(c57.minimum) : null;
87549
+ inst.maxDate = c57.maximum ? new Date(c57.maximum) : null;
87550
87550
  });
87551
87551
  function date3(params) {
87552
87552
  return _date(ZodDate, params);
@@ -93867,7 +93867,8 @@ var zeroAgentResponseSchema = external_exports.object({
93867
93867
  permissionPolicies: firewallPoliciesSchema.nullable(),
93868
93868
  customSkills: external_exports.array(external_exports.string()).default([]),
93869
93869
  modelProviderId: external_exports.string().uuid().nullable().default(null),
93870
- selectedModel: external_exports.string().nullable().default(null)
93870
+ selectedModel: external_exports.string().nullable().default(null),
93871
+ preferPersonalProvider: external_exports.boolean().default(false)
93871
93872
  });
93872
93873
  var zeroAgentRequestSchema = external_exports.object({
93873
93874
  description: external_exports.string().optional(),
@@ -93876,7 +93877,8 @@ var zeroAgentRequestSchema = external_exports.object({
93876
93877
  avatarUrl: external_exports.string().optional(),
93877
93878
  customSkills: external_exports.array(zeroAgentCustomSkillNameSchema).optional(),
93878
93879
  modelProviderId: external_exports.string().uuid().nullable().optional(),
93879
- selectedModel: external_exports.string().nullable().optional()
93880
+ selectedModel: external_exports.string().nullable().optional(),
93881
+ preferPersonalProvider: external_exports.boolean().optional()
93880
93882
  });
93881
93883
  var zeroAgentMetadataRequestSchema = external_exports.object({
93882
93884
  displayName: external_exports.string().optional(),
@@ -93884,7 +93886,8 @@ var zeroAgentMetadataRequestSchema = external_exports.object({
93884
93886
  sound: external_exports.string().optional(),
93885
93887
  avatarUrl: external_exports.string().nullable().optional(),
93886
93888
  modelProviderId: external_exports.string().uuid().nullable().optional(),
93887
- selectedModel: external_exports.string().nullable().optional()
93889
+ selectedModel: external_exports.string().nullable().optional(),
93890
+ preferPersonalProvider: external_exports.boolean().optional()
93888
93891
  });
93889
93892
  var zeroAgentInstructionsResponseSchema = external_exports.object({
93890
93893
  content: external_exports.string().nullable(),
@@ -97352,6 +97355,42 @@ var openai = {
97352
97355
  }
97353
97356
  };
97354
97357
 
97358
+ // ../../packages/connectors/src/connectors/chatgpt-oauth.ts
97359
+ init_esm_shims();
97360
+ var chatgptOauth = {
97361
+ "chatgpt-oauth": {
97362
+ label: "ChatGPT (OAuth)",
97363
+ category: "ai-general-models",
97364
+ environmentMapping: {
97365
+ CHATGPT_TOKEN: "$secrets.CHATGPT_ACCESS_TOKEN"
97366
+ },
97367
+ helpText: "Sign in with your ChatGPT subscription (Plus / Pro / Business / Edu / Enterprise) to use Codex agents against your ChatGPT quota.",
97368
+ authMethods: {
97369
+ oauth: {
97370
+ label: "OAuth",
97371
+ helpText: "Sign in with ChatGPT.",
97372
+ secrets: {
97373
+ CHATGPT_ACCESS_TOKEN: { label: "Access Token", required: true },
97374
+ CHATGPT_REFRESH_TOKEN: { label: "Refresh Token", required: true }
97375
+ }
97376
+ }
97377
+ },
97378
+ defaultAuthMethod: "oauth",
97379
+ oauth: {
97380
+ authorizationUrl: "https://auth.openai.com/oauth/authorize",
97381
+ tokenUrl: "https://auth.openai.com/oauth/token",
97382
+ scopes: [
97383
+ "openid",
97384
+ "profile",
97385
+ "email",
97386
+ "offline_access",
97387
+ "api.connectors.read",
97388
+ "api.connectors.invoke"
97389
+ ]
97390
+ }
97391
+ }
97392
+ };
97393
+
97355
97394
  // ../../packages/connectors/src/connectors/similarweb.ts
97356
97395
  init_esm_shims();
97357
97396
  var similarweb = {
@@ -97730,24 +97769,18 @@ var infisical = {
97730
97769
  label: "Infisical",
97731
97770
  category: "engineering-team-execution",
97732
97771
  environmentMapping: {
97733
- INFISICAL_CLIENT_ID: "$secrets.INFISICAL_CLIENT_ID",
97734
- INFISICAL_CLIENT_SECRET: "$secrets.INFISICAL_CLIENT_SECRET"
97772
+ INFISICAL_TOKEN: "$secrets.INFISICAL_TOKEN"
97735
97773
  },
97736
- helpText: "Connect your Infisical account to fetch secrets from your projects and environments using Machine Identity credentials",
97774
+ helpText: "Connect your Infisical account to fetch secrets from your projects and environments using a Token Auth identity",
97737
97775
  authMethods: {
97738
97776
  "api-token": {
97739
- label: "Machine Identity",
97740
- helpText: "1. Log in to [Infisical](https://app.infisical.com)\n2. Go to **Access Control > Machine Identities**\n3. Create a new Machine Identity with **Universal Auth**\n4. Copy the **Client ID** and **Client Secret**\n5. Assign the identity to your project with the desired role",
97777
+ label: "Token Auth",
97778
+ helpText: "1. Log in to [Infisical](https://app.infisical.com)\n2. Go to **Access Control > Machine Identities**\n3. Create a new Machine Identity with **Token Auth**\n4. Copy the **Token**\n5. Assign the identity to your project with the desired role",
97741
97779
  secrets: {
97742
- INFISICAL_CLIENT_ID: {
97743
- label: "Client ID",
97744
- required: true,
97745
- placeholder: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
97746
- },
97747
- INFISICAL_CLIENT_SECRET: {
97748
- label: "Client Secret",
97780
+ INFISICAL_TOKEN: {
97781
+ label: "Token",
97749
97782
  required: true,
97750
- placeholder: "your-client-secret"
97783
+ placeholder: "your-infisical-token"
97751
97784
  }
97752
97785
  }
97753
97786
  }
@@ -100233,6 +100266,7 @@ var CONNECTOR_TYPES_DEF = {
100233
100266
  ...stripe,
100234
100267
  ...onyx,
100235
100268
  ...openai,
100269
+ ...chatgptOauth,
100236
100270
  ...similarweb,
100237
100271
  ...perplexity,
100238
100272
  ...pipedrive,
@@ -102498,6 +102532,50 @@ var MODEL_PROVIDER_TYPES = {
102498
102532
  ],
102499
102533
  defaultModel: "gpt-5.5"
102500
102534
  },
102535
+ "chatgpt-oauth-token": {
102536
+ framework: "codex",
102537
+ label: "ChatGPT (Sign in)",
102538
+ helpText: "Sign in with ChatGPT (Plus / Pro / Business / Edu / Enterprise). Workspace selection happens on auth.openai.com.",
102539
+ authMethods: {
102540
+ oauth: {
102541
+ label: "Sign in with ChatGPT",
102542
+ secrets: {
102543
+ CHATGPT_ACCESS_TOKEN: {
102544
+ label: "CHATGPT_ACCESS_TOKEN",
102545
+ required: true
102546
+ },
102547
+ CHATGPT_REFRESH_TOKEN: {
102548
+ label: "CHATGPT_REFRESH_TOKEN",
102549
+ required: true,
102550
+ serverOnly: true
102551
+ },
102552
+ CHATGPT_ACCOUNT_ID: {
102553
+ label: "CHATGPT_ACCOUNT_ID",
102554
+ required: true
102555
+ },
102556
+ CHATGPT_ID_TOKEN: {
102557
+ label: "CHATGPT_ID_TOKEN",
102558
+ required: true,
102559
+ serverOnly: true
102560
+ }
102561
+ }
102562
+ }
102563
+ },
102564
+ defaultAuthMethod: "oauth",
102565
+ environmentMapping: {
102566
+ CHATGPT_ACCESS_TOKEN: "$secrets.CHATGPT_ACCESS_TOKEN",
102567
+ CHATGPT_ACCOUNT_ID: "$secrets.CHATGPT_ACCOUNT_ID",
102568
+ OPENAI_MODEL: "$model"
102569
+ },
102570
+ models: [
102571
+ "gpt-5.5",
102572
+ "gpt-5.4",
102573
+ "gpt-5.4-mini",
102574
+ "gpt-5.3-codex",
102575
+ "gpt-5.2"
102576
+ ],
102577
+ defaultModel: "gpt-5.5"
102578
+ },
102501
102579
  "azure-foundry": {
102502
102580
  framework: "claude-code",
102503
102581
  label: "Azure Foundry",
@@ -102618,6 +102696,9 @@ function getSelectableProviderTypes() {
102618
102696
  }
102619
102697
  var ANTHROPIC_API_BASE = "https://api.anthropic.com";
102620
102698
  function getFirewallBaseUrl(type) {
102699
+ if (type === "chatgpt-oauth-token") {
102700
+ return "https://chatgpt.com/backend-api/codex";
102701
+ }
102621
102702
  if (getFrameworkForType(type) === "codex") {
102622
102703
  return "https://api.openai.com/v1/responses";
102623
102704
  }
@@ -102710,7 +102791,48 @@ var MODEL_PROVIDER_FIREWALL_CONFIGS = {
102710
102791
  "openai-api-key",
102711
102792
  { name: "Authorization", valuePrefix: "Bearer" },
102712
102793
  "sk-proj-CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocaT3BlbkFJCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLoca"
102713
- )
102794
+ ),
102795
+ // ChatGPT OAuth provider — multi-header injection + auth.openai.com deny.
102796
+ // Sandbox holds placeholder strings; firewall replaces them with real
102797
+ // tokens at egress. The auth.openai.com entry is defense-in-depth: codex's
102798
+ // CODEX_REFRESH_TOKEN_URL_OVERRIDE already prevents in-sandbox refreshes,
102799
+ // but if codex ever ignores it, this firewall denies the egress at the
102800
+ // proxy layer.
102801
+ //
102802
+ // Placeholder values are opaque markers, NOT JWTs — codex doesn't read
102803
+ // CHATGPT_ACCESS_TOKEN from env in ChatGPT mode; it reads the real JWT
102804
+ // from ~/.codex/auth.json built by guest-agent (#11877). The placeholder
102805
+ // here only needs to be a stable, non-empty string the firewall can match
102806
+ // and substitute. Account-id placeholder still equals #11877's literal
102807
+ // since the architectural relationship across the two surfaces matters.
102808
+ "chatgpt-oauth-token": {
102809
+ name: "model-provider:chatgpt-oauth-token",
102810
+ apis: [
102811
+ {
102812
+ base: "https://chatgpt.com/backend-api/codex",
102813
+ auth: {
102814
+ headers: {
102815
+ Authorization: "Bearer ${{ secrets.CHATGPT_ACCESS_TOKEN }}",
102816
+ "ChatGPT-Account-ID": "${{ secrets.CHATGPT_ACCOUNT_ID }}"
102817
+ }
102818
+ },
102819
+ permissions: []
102820
+ },
102821
+ {
102822
+ base: "https://auth.openai.com",
102823
+ auth: { headers: {} },
102824
+ permissions: [{ name: "denied", rules: ["ANY /*"] }]
102825
+ }
102826
+ ],
102827
+ defaultPolicies: {
102828
+ deny: ["denied"],
102829
+ unknownPolicy: "deny"
102830
+ },
102831
+ placeholders: {
102832
+ CHATGPT_ACCESS_TOKEN: "chatgpt-token-CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocal",
102833
+ CHATGPT_ACCOUNT_ID: "ws_VM0_PLACEHOLDER_DO_NOT_TRUST"
102834
+ }
102835
+ }
102714
102836
  };
102715
102837
  var modelProviderTypeSchema = external_exports.enum([
102716
102838
  "claude-code-oauth-token",
@@ -102722,6 +102844,7 @@ var modelProviderTypeSchema = external_exports.enum([
102722
102844
  "zai-api-key",
102723
102845
  "vercel-ai-gateway",
102724
102846
  "openai-api-key",
102847
+ "chatgpt-oauth-token",
102725
102848
  "azure-foundry",
102726
102849
  "aws-bedrock",
102727
102850
  "vm0"
@@ -102789,7 +102912,14 @@ var modelProviderResponseSchema = external_exports.object({
102789
102912
  isDefault: external_exports.boolean(),
102790
102913
  selectedModel: external_exports.string().nullable(),
102791
102914
  createdAt: external_exports.string(),
102792
- updatedAt: external_exports.string()
102915
+ updatedAt: external_exports.string(),
102916
+ // ChatGPT-only metadata populated by the chatgpt-oauth-token callback.
102917
+ // Other provider types omit these. Mirrors the server-side connector
102918
+ // shape in apps/web/src/lib/zero/connector/providers/chatgpt-oauth.ts.
102919
+ // The corresponding server route lands in #11909; declared here so the
102920
+ // platform UI does not have to bypass schema validation to read them.
102921
+ workspaceName: external_exports.string().nullable().optional(),
102922
+ planType: external_exports.string().nullable().optional()
102793
102923
  });
102794
102924
  var modelProviderListResponseSchema = external_exports.object({
102795
102925
  modelProviders: external_exports.array(modelProviderResponseSchema)
@@ -104372,11 +104502,17 @@ var integrationsTelegramMessageContract = c21.router({
104372
104502
  var telegramBotTokenStatusSchema = external_exports.enum(["valid", "invalid", "unknown"]);
104373
104503
  var telegramBotListItemSchema = external_exports.object({
104374
104504
  id: external_exports.string(),
104505
+ kind: external_exports.enum(["custom", "official"]).optional(),
104375
104506
  username: external_exports.string().nullable(),
104376
104507
  agent: external_exports.object({ id: external_exports.string(), name: external_exports.string() }).nullable(),
104377
104508
  isOwner: external_exports.boolean(),
104378
104509
  isConnected: external_exports.boolean(),
104379
- tokenStatus: telegramBotTokenStatusSchema
104510
+ tokenStatus: telegramBotTokenStatusSchema,
104511
+ official: external_exports.object({
104512
+ configured: external_exports.boolean(),
104513
+ usesDefaultAgent: external_exports.boolean(),
104514
+ linkedTelegramUserId: external_exports.string().nullable()
104515
+ }).optional()
104380
104516
  });
104381
104517
  var listTelegramBotsResponseSchema = external_exports.object({
104382
104518
  bots: external_exports.array(telegramBotListItemSchema)
@@ -104741,7 +104877,8 @@ var scheduleResponseSchema = external_exports.object({
104741
104877
  createdAt: external_exports.string(),
104742
104878
  updatedAt: external_exports.string(),
104743
104879
  modelProviderId: external_exports.string().uuid().nullable().default(null),
104744
- selectedModel: external_exports.string().nullable().default(null)
104880
+ selectedModel: external_exports.string().nullable().default(null),
104881
+ preferPersonalProvider: external_exports.boolean().default(false)
104745
104882
  });
104746
104883
  var scheduleListResponseSchema = external_exports.object({
104747
104884
  schedules: external_exports.array(scheduleResponseSchema)
@@ -104763,7 +104900,8 @@ var zeroDeployScheduleRequestSchema = external_exports.object({
104763
104900
  agentId: external_exports.string().uuid("Invalid agent ID"),
104764
104901
  enabled: external_exports.boolean().optional(),
104765
104902
  modelProviderId: external_exports.string().uuid().nullable().optional(),
104766
- selectedModel: external_exports.string().nullable().optional()
104903
+ selectedModel: external_exports.string().nullable().optional(),
104904
+ preferPersonalProvider: external_exports.boolean().optional()
104767
104905
  }).refine(
104768
104906
  (data) => {
104769
104907
  const triggers = [
@@ -105140,7 +105278,17 @@ var MIME_BY_EXTENSION = {
105140
105278
  ".md": "text/markdown",
105141
105279
  ".html": "text/html",
105142
105280
  ".htm": "text/html",
105143
- ".json": "application/json"
105281
+ ".json": "application/json",
105282
+ ".doc": "application/msword",
105283
+ ".docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
105284
+ ".odt": "application/vnd.oasis.opendocument.text",
105285
+ ".rtf": "application/rtf",
105286
+ ".xls": "application/vnd.ms-excel",
105287
+ ".xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
105288
+ ".ods": "application/vnd.oasis.opendocument.spreadsheet",
105289
+ ".ppt": "application/vnd.ms-powerpoint",
105290
+ ".pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
105291
+ ".odp": "application/vnd.oasis.opendocument.presentation"
105144
105292
  };
105145
105293
  function inferContentType(localPath) {
105146
105294
  const ext = extname(localPath).toLowerCase();
@@ -108079,23 +108227,34 @@ var infisicalFirewall = {
108079
108227
  name: "infisical",
108080
108228
  description: "Infisical",
108081
108229
  placeholders: {
108082
- INFISICAL_CLIENT_ID: "00000000-0000-0000-0000-000000000000",
108083
- INFISICAL_CLIENT_SECRET: "InfisicalSecretInfisicalSecret0000000000000"
108230
+ INFISICAL_TOKEN: "InfisicalTokenInfisicalTokenInfisicalToken000000"
108084
108231
  },
108085
108232
  apis: [
108086
108233
  {
108087
108234
  base: "https://us.infisical.com",
108088
- auth: {},
108235
+ auth: {
108236
+ headers: {
108237
+ Authorization: "Bearer ${{ secrets.INFISICAL_TOKEN }}"
108238
+ }
108239
+ },
108089
108240
  permissions: []
108090
108241
  },
108091
108242
  {
108092
108243
  base: "https://eu.infisical.com",
108093
- auth: {},
108244
+ auth: {
108245
+ headers: {
108246
+ Authorization: "Bearer ${{ secrets.INFISICAL_TOKEN }}"
108247
+ }
108248
+ },
108094
108249
  permissions: []
108095
108250
  },
108096
108251
  {
108097
108252
  base: "https://app.infisical.com",
108098
- auth: {},
108253
+ auth: {
108254
+ headers: {
108255
+ Authorization: "Bearer ${{ secrets.INFISICAL_TOKEN }}"
108256
+ }
108257
+ },
108099
108258
  permissions: []
108100
108259
  }
108101
108260
  ]
@@ -118248,9 +118407,95 @@ var zeroComposesListContract = c35.router({
118248
118407
  }
118249
118408
  });
118250
118409
 
118251
- // ../../packages/api-contracts/src/contracts/api-keys.ts
118410
+ // ../../packages/api-contracts/src/contracts/zero-personal-model-providers.ts
118252
118411
  init_esm_shims();
118253
118412
  var c36 = initContract();
118413
+ var zeroPersonalModelProvidersMainContract = c36.router({
118414
+ list: {
118415
+ method: "GET",
118416
+ path: "/api/zero/me/model-providers",
118417
+ headers: authHeadersSchema,
118418
+ responses: {
118419
+ 200: modelProviderListResponseSchema,
118420
+ 401: apiErrorSchema,
118421
+ 404: apiErrorSchema,
118422
+ 500: apiErrorSchema
118423
+ },
118424
+ summary: "List the requesting user's personal model providers"
118425
+ },
118426
+ upsert: {
118427
+ method: "POST",
118428
+ path: "/api/zero/me/model-providers",
118429
+ headers: authHeadersSchema,
118430
+ body: upsertModelProviderRequestSchema,
118431
+ responses: {
118432
+ 200: upsertModelProviderResponseSchema,
118433
+ 201: upsertModelProviderResponseSchema,
118434
+ 400: apiErrorSchema,
118435
+ 401: apiErrorSchema,
118436
+ 404: apiErrorSchema,
118437
+ 500: apiErrorSchema
118438
+ },
118439
+ summary: "Create or update a personal model provider for the requesting user"
118440
+ }
118441
+ });
118442
+ var zeroPersonalModelProvidersByTypeContract = c36.router({
118443
+ delete: {
118444
+ method: "DELETE",
118445
+ path: "/api/zero/me/model-providers/:type",
118446
+ headers: authHeadersSchema,
118447
+ pathParams: external_exports.object({
118448
+ type: modelProviderTypeSchema
118449
+ }),
118450
+ responses: {
118451
+ 204: c36.noBody(),
118452
+ 401: apiErrorSchema,
118453
+ 404: apiErrorSchema,
118454
+ 500: apiErrorSchema
118455
+ },
118456
+ summary: "Delete a personal model provider for the requesting user"
118457
+ }
118458
+ });
118459
+ var zeroPersonalModelProvidersDefaultContract = c36.router({
118460
+ setDefault: {
118461
+ method: "POST",
118462
+ path: "/api/zero/me/model-providers/:type/default",
118463
+ headers: authHeadersSchema,
118464
+ pathParams: external_exports.object({
118465
+ type: modelProviderTypeSchema
118466
+ }),
118467
+ body: external_exports.undefined(),
118468
+ responses: {
118469
+ 200: modelProviderResponseSchema,
118470
+ 401: apiErrorSchema,
118471
+ 404: apiErrorSchema,
118472
+ 500: apiErrorSchema
118473
+ },
118474
+ summary: "Set a personal model provider as the user's default"
118475
+ }
118476
+ });
118477
+ var zeroPersonalModelProvidersUpdateModelContract = c36.router({
118478
+ updateModel: {
118479
+ method: "PATCH",
118480
+ path: "/api/zero/me/model-providers/:type/model",
118481
+ headers: authHeadersSchema,
118482
+ pathParams: external_exports.object({
118483
+ type: modelProviderTypeSchema
118484
+ }),
118485
+ body: updateModelRequestSchema,
118486
+ responses: {
118487
+ 200: modelProviderResponseSchema,
118488
+ 401: apiErrorSchema,
118489
+ 404: apiErrorSchema,
118490
+ 500: apiErrorSchema
118491
+ },
118492
+ summary: "Update model selection for a personal model provider"
118493
+ }
118494
+ });
118495
+
118496
+ // ../../packages/api-contracts/src/contracts/api-keys.ts
118497
+ init_esm_shims();
118498
+ var c37 = initContract();
118254
118499
  var apiKeyItemSchema = external_exports.object({
118255
118500
  id: external_exports.string().uuid(),
118256
118501
  name: external_exports.string(),
@@ -118269,7 +118514,7 @@ var createApiKeyRequestSchema = external_exports.object({
118269
118514
  var createApiKeyResponseSchema = apiKeyItemSchema.extend({
118270
118515
  token: external_exports.string()
118271
118516
  });
118272
- var apiKeysContract = c36.router({
118517
+ var apiKeysContract = c37.router({
118273
118518
  list: {
118274
118519
  method: "GET",
118275
118520
  path: "/api/zero/api-keys",
@@ -118295,14 +118540,14 @@ var apiKeysContract = c36.router({
118295
118540
  summary: "Create a new API key (token returned once)"
118296
118541
  }
118297
118542
  });
118298
- var apiKeysByIdContract = c36.router({
118543
+ var apiKeysByIdContract = c37.router({
118299
118544
  delete: {
118300
118545
  method: "DELETE",
118301
118546
  path: "/api/zero/api-keys/:id",
118302
118547
  headers: authHeadersSchema,
118303
118548
  pathParams: external_exports.object({ id: external_exports.string().uuid() }),
118304
118549
  responses: {
118305
- 204: c36.noBody(),
118550
+ 204: c37.noBody(),
118306
118551
  401: apiErrorSchema,
118307
118552
  404: apiErrorSchema,
118308
118553
  500: apiErrorSchema
@@ -118313,7 +118558,7 @@ var apiKeysByIdContract = c36.router({
118313
118558
 
118314
118559
  // ../../packages/api-contracts/src/contracts/zero-custom-connectors.ts
118315
118560
  init_esm_shims();
118316
- var c37 = initContract();
118561
+ var c38 = initContract();
118317
118562
  var customConnectorResponseSchema = external_exports.object({
118318
118563
  id: external_exports.string().uuid(),
118319
118564
  slug: external_exports.string(),
@@ -118341,7 +118586,7 @@ var setCustomConnectorSecretBodySchema = external_exports.object({
118341
118586
  var patchCustomConnectorBodySchema = external_exports.object({
118342
118587
  displayName: external_exports.string().min(1).max(128)
118343
118588
  });
118344
- var zeroCustomConnectorsContract = c37.router({
118589
+ var zeroCustomConnectorsContract = c38.router({
118345
118590
  list: {
118346
118591
  method: "GET",
118347
118592
  path: "/api/zero/custom-connectors",
@@ -118368,14 +118613,14 @@ var zeroCustomConnectorsContract = c37.router({
118368
118613
  summary: "Create an org custom connector"
118369
118614
  }
118370
118615
  });
118371
- var zeroCustomConnectorByIdContract = c37.router({
118616
+ var zeroCustomConnectorByIdContract = c38.router({
118372
118617
  delete: {
118373
118618
  method: "DELETE",
118374
118619
  path: "/api/zero/custom-connectors/:id",
118375
118620
  headers: authHeadersSchema,
118376
118621
  pathParams: external_exports.object({ id: external_exports.string().uuid() }),
118377
118622
  responses: {
118378
- 204: c37.noBody(),
118623
+ 204: c38.noBody(),
118379
118624
  401: apiErrorSchema,
118380
118625
  403: apiErrorSchema,
118381
118626
  404: apiErrorSchema,
@@ -118400,7 +118645,7 @@ var zeroCustomConnectorByIdContract = c37.router({
118400
118645
  summary: "Rename an org custom connector"
118401
118646
  }
118402
118647
  });
118403
- var zeroCustomConnectorSecretContract = c37.router({
118648
+ var zeroCustomConnectorSecretContract = c38.router({
118404
118649
  set: {
118405
118650
  method: "PUT",
118406
118651
  path: "/api/zero/custom-connectors/:id/secret",
@@ -118408,7 +118653,7 @@ var zeroCustomConnectorSecretContract = c37.router({
118408
118653
  pathParams: external_exports.object({ id: external_exports.string().uuid() }),
118409
118654
  body: setCustomConnectorSecretBodySchema,
118410
118655
  responses: {
118411
- 204: c37.noBody(),
118656
+ 204: c38.noBody(),
118412
118657
  400: apiErrorSchema,
118413
118658
  401: apiErrorSchema,
118414
118659
  404: apiErrorSchema,
@@ -118422,7 +118667,7 @@ var zeroCustomConnectorSecretContract = c37.router({
118422
118667
  headers: authHeadersSchema,
118423
118668
  pathParams: external_exports.object({ id: external_exports.string().uuid() }),
118424
118669
  responses: {
118425
- 204: c37.noBody(),
118670
+ 204: c38.noBody(),
118426
118671
  401: apiErrorSchema,
118427
118672
  404: apiErrorSchema,
118428
118673
  500: apiErrorSchema
@@ -118433,11 +118678,11 @@ var zeroCustomConnectorSecretContract = c37.router({
118433
118678
 
118434
118679
  // ../../packages/api-contracts/src/contracts/zero-agent-custom-connectors.ts
118435
118680
  init_esm_shims();
118436
- var c38 = initContract();
118681
+ var c39 = initContract();
118437
118682
  var agentCustomConnectorEnabledIdsSchema = external_exports.object({
118438
118683
  enabledIds: external_exports.array(external_exports.string().uuid())
118439
118684
  });
118440
- var zeroAgentCustomConnectorsContract = c38.router({
118685
+ var zeroAgentCustomConnectorsContract = c39.router({
118441
118686
  get: {
118442
118687
  method: "GET",
118443
118688
  path: "/api/zero/agents/:id/custom-connectors",
@@ -118470,7 +118715,7 @@ var zeroAgentCustomConnectorsContract = c38.router({
118470
118715
 
118471
118716
  // ../../packages/api-contracts/src/contracts/zero-billing.ts
118472
118717
  init_esm_shims();
118473
- var c39 = initContract();
118718
+ var c40 = initContract();
118474
118719
  var autoRechargeSchema = external_exports.object({
118475
118720
  enabled: external_exports.boolean(),
118476
118721
  threshold: external_exports.number().nullable(),
@@ -118558,7 +118803,7 @@ var redeemRequestSchema = external_exports.object({
118558
118803
  successUrl: external_exports.string().url(),
118559
118804
  cancelUrl: external_exports.string().url()
118560
118805
  });
118561
- var zeroBillingStatusContract = c39.router({
118806
+ var zeroBillingStatusContract = c40.router({
118562
118807
  get: {
118563
118808
  method: "GET",
118564
118809
  path: "/api/zero/billing/status",
@@ -118571,7 +118816,7 @@ var zeroBillingStatusContract = c39.router({
118571
118816
  summary: "Get billing status for current org"
118572
118817
  }
118573
118818
  });
118574
- var zeroBillingCheckoutContract = c39.router({
118819
+ var zeroBillingCheckoutContract = c40.router({
118575
118820
  create: {
118576
118821
  method: "POST",
118577
118822
  path: "/api/zero/billing/checkout",
@@ -118587,7 +118832,7 @@ var zeroBillingCheckoutContract = c39.router({
118587
118832
  summary: "Create Stripe checkout session"
118588
118833
  }
118589
118834
  });
118590
- var zeroBillingPortalContract = c39.router({
118835
+ var zeroBillingPortalContract = c40.router({
118591
118836
  create: {
118592
118837
  method: "POST",
118593
118838
  path: "/api/zero/billing/portal",
@@ -118603,7 +118848,7 @@ var zeroBillingPortalContract = c39.router({
118603
118848
  summary: "Create Stripe billing portal session"
118604
118849
  }
118605
118850
  });
118606
- var zeroBillingAutoRechargeContract = c39.router({
118851
+ var zeroBillingAutoRechargeContract = c40.router({
118607
118852
  get: {
118608
118853
  method: "GET",
118609
118854
  path: "/api/zero/billing/auto-recharge",
@@ -118641,7 +118886,7 @@ var invoiceSchema = external_exports.object({
118641
118886
  var billingInvoicesResponseSchema = external_exports.object({
118642
118887
  invoices: external_exports.array(invoiceSchema)
118643
118888
  });
118644
- var zeroBillingInvoicesContract = c39.router({
118889
+ var zeroBillingInvoicesContract = c40.router({
118645
118890
  get: {
118646
118891
  method: "GET",
118647
118892
  path: "/api/zero/billing/invoices",
@@ -118661,7 +118906,7 @@ var downgradeResponseSchema = external_exports.object({
118661
118906
  success: external_exports.boolean(),
118662
118907
  effectiveDate: external_exports.string().nullable()
118663
118908
  });
118664
- var zeroBillingDowngradeContract = c39.router({
118909
+ var zeroBillingDowngradeContract = c40.router({
118665
118910
  create: {
118666
118911
  method: "POST",
118667
118912
  path: "/api/zero/billing/downgrade",
@@ -118679,7 +118924,7 @@ var zeroBillingDowngradeContract = c39.router({
118679
118924
  summary: "Downgrade subscription to a lower tier"
118680
118925
  }
118681
118926
  });
118682
- var zeroBillingRedeemContract = c39.router({
118927
+ var zeroBillingRedeemContract = c40.router({
118683
118928
  create: {
118684
118929
  method: "POST",
118685
118930
  path: "/api/zero/billing/redeem/:campaign",
@@ -118700,7 +118945,7 @@ var zeroBillingRedeemContract = c39.router({
118700
118945
 
118701
118946
  // ../../packages/api-contracts/src/contracts/zero-usage.ts
118702
118947
  init_esm_shims();
118703
- var c40 = initContract();
118948
+ var c41 = initContract();
118704
118949
  var memberUsageSchema = external_exports.object({
118705
118950
  userId: external_exports.string(),
118706
118951
  email: external_exports.string(),
@@ -118718,7 +118963,7 @@ var usageMembersResponseSchema = external_exports.object({
118718
118963
  }).nullable(),
118719
118964
  members: external_exports.array(memberUsageSchema)
118720
118965
  });
118721
- var zeroUsageMembersContract = c40.router({
118966
+ var zeroUsageMembersContract = c41.router({
118722
118967
  get: {
118723
118968
  method: "GET",
118724
118969
  path: "/api/zero/usage/members",
@@ -118734,7 +118979,7 @@ var zeroUsageMembersContract = c40.router({
118734
118979
 
118735
118980
  // ../../packages/api-contracts/src/contracts/zero-usage-daily.ts
118736
118981
  init_esm_shims();
118737
- var c41 = initContract();
118982
+ var c42 = initContract();
118738
118983
  var usageRunSchema = external_exports.object({
118739
118984
  runId: external_exports.string(),
118740
118985
  agentName: external_exports.string().nullable(),
@@ -118761,7 +119006,7 @@ var usageRunsResponseSchema = external_exports.object({
118761
119006
  total: external_exports.number()
118762
119007
  })
118763
119008
  });
118764
- var zeroUsageRunsContract = c41.router({
119009
+ var zeroUsageRunsContract = c42.router({
118765
119010
  get: {
118766
119011
  method: "GET",
118767
119012
  path: "/api/zero/usage/runs",
@@ -118787,7 +119032,7 @@ var zeroUsageRunsContract = c41.router({
118787
119032
 
118788
119033
  // ../../packages/api-contracts/src/contracts/zero-usage-insight.ts
118789
119034
  init_esm_shims();
118790
- var c42 = initContract();
119035
+ var c43 = initContract();
118791
119036
  var usageInsightBucketSchema = external_exports.object({
118792
119037
  ts: external_exports.string(),
118793
119038
  // ISO string for the bucket start
@@ -118824,7 +119069,7 @@ var usageInsightResponseSchema = external_exports.object({
118824
119069
  grandTotalCredits: external_exports.number(),
118825
119070
  grandTotalTokens: external_exports.number()
118826
119071
  });
118827
- var zeroUsageInsightContract = c42.router({
119072
+ var zeroUsageInsightContract = c43.router({
118828
119073
  get: {
118829
119074
  method: "GET",
118830
119075
  path: "/api/zero/usage/insight",
@@ -118847,7 +119092,7 @@ var zeroUsageInsightContract = c42.router({
118847
119092
 
118848
119093
  // ../../packages/api-contracts/src/contracts/zero-team.ts
118849
119094
  init_esm_shims();
118850
- var c43 = initContract();
119095
+ var c44 = initContract();
118851
119096
  var teamComposeItemSchema = external_exports.object({
118852
119097
  id: external_exports.string(),
118853
119098
  ownerId: external_exports.string().optional(),
@@ -118858,7 +119103,7 @@ var teamComposeItemSchema = external_exports.object({
118858
119103
  headVersionId: external_exports.string().nullable(),
118859
119104
  updatedAt: external_exports.string()
118860
119105
  });
118861
- var zeroTeamContract = c43.router({
119106
+ var zeroTeamContract = c44.router({
118862
119107
  list: {
118863
119108
  method: "GET",
118864
119109
  path: "/api/zero/team",
@@ -118875,7 +119120,7 @@ var zeroTeamContract = c43.router({
118875
119120
 
118876
119121
  // ../../packages/api-contracts/src/contracts/zero-integrations-slack.ts
118877
119122
  init_esm_shims();
118878
- var c44 = initContract();
119123
+ var c45 = initContract();
118879
119124
  var slackEnvironmentSchema = external_exports.object({
118880
119125
  requiredSecrets: external_exports.array(external_exports.string()),
118881
119126
  requiredVars: external_exports.array(external_exports.string()),
@@ -118897,7 +119142,7 @@ var slackOrgStatusSchema = external_exports.object({
118897
119142
  /** OAuth install URL for re-authorization (admin-only, when scopeMismatch). */
118898
119143
  reinstallUrl: external_exports.string().nullable().optional()
118899
119144
  });
118900
- var zeroIntegrationsSlackContract = c44.router({
119145
+ var zeroIntegrationsSlackContract = c45.router({
118901
119146
  getStatus: {
118902
119147
  method: "GET",
118903
119148
  path: "/api/zero/integrations/slack",
@@ -118912,7 +119157,7 @@ var zeroIntegrationsSlackContract = c44.router({
118912
119157
  method: "DELETE",
118913
119158
  path: "/api/zero/integrations/slack",
118914
119159
  headers: authHeadersSchema,
118915
- body: c44.noBody(),
119160
+ body: c45.noBody(),
118916
119161
  query: external_exports.object({
118917
119162
  action: external_exports.string().optional()
118918
119163
  }),
@@ -118928,7 +119173,7 @@ var zeroIntegrationsSlackContract = c44.router({
118928
119173
 
118929
119174
  // ../../packages/api-contracts/src/contracts/zero-slack-connect.ts
118930
119175
  init_esm_shims();
118931
- var c45 = initContract();
119176
+ var c46 = initContract();
118932
119177
  var slackConnectStatusSchema = external_exports.object({
118933
119178
  isConnected: external_exports.boolean(),
118934
119179
  isAdmin: external_exports.boolean(),
@@ -118940,7 +119185,7 @@ var slackConnectResponseSchema = external_exports.object({
118940
119185
  connectionId: external_exports.string(),
118941
119186
  role: external_exports.string()
118942
119187
  });
118943
- var zeroSlackConnectContract = c45.router({
119188
+ var zeroSlackConnectContract = c46.router({
118944
119189
  getStatus: {
118945
119190
  method: "GET",
118946
119191
  path: "/api/zero/integrations/slack/connect",
@@ -118974,12 +119219,12 @@ var zeroSlackConnectContract = c45.router({
118974
119219
 
118975
119220
  // ../../packages/api-contracts/src/contracts/zero-slack-channels.ts
118976
119221
  init_esm_shims();
118977
- var c46 = initContract();
119222
+ var c47 = initContract();
118978
119223
  var slackChannelSchema = external_exports.object({
118979
119224
  id: external_exports.string(),
118980
119225
  name: external_exports.string()
118981
119226
  });
118982
- var zeroSlackChannelsContract = c46.router({
119227
+ var zeroSlackChannelsContract = c47.router({
118983
119228
  list: {
118984
119229
  method: "GET",
118985
119230
  path: "/api/zero/slack/channels",
@@ -118995,12 +119240,12 @@ var zeroSlackChannelsContract = c46.router({
118995
119240
 
118996
119241
  // ../../packages/api-contracts/src/contracts/zero-queue-position.ts
118997
119242
  init_esm_shims();
118998
- var c47 = initContract();
119243
+ var c48 = initContract();
118999
119244
  var queuePositionResponseSchema = external_exports.object({
119000
119245
  position: external_exports.number(),
119001
119246
  total: external_exports.number()
119002
119247
  });
119003
- var zeroQueuePositionContract = c47.router({
119248
+ var zeroQueuePositionContract = c48.router({
119004
119249
  getPosition: {
119005
119250
  method: "GET",
119006
119251
  path: "/api/zero/queue-position",
@@ -119020,13 +119265,13 @@ var zeroQueuePositionContract = c47.router({
119020
119265
 
119021
119266
  // ../../packages/api-contracts/src/contracts/zero-member-credit-cap.ts
119022
119267
  init_esm_shims();
119023
- var c48 = initContract();
119268
+ var c49 = initContract();
119024
119269
  var memberCreditCapResponseSchema = external_exports.object({
119025
119270
  userId: external_exports.string(),
119026
119271
  creditCap: external_exports.number().nullable(),
119027
119272
  creditEnabled: external_exports.boolean()
119028
119273
  });
119029
- var zeroMemberCreditCapContract = c48.router({
119274
+ var zeroMemberCreditCapContract = c49.router({
119030
119275
  get: {
119031
119276
  method: "GET",
119032
119277
  path: "/api/zero/org/members/credit-cap",
@@ -119061,7 +119306,7 @@ var zeroMemberCreditCapContract = c48.router({
119061
119306
 
119062
119307
  // ../../packages/api-contracts/src/contracts/zero-report-error.ts
119063
119308
  init_esm_shims();
119064
- var c49 = initContract();
119309
+ var c50 = initContract();
119065
119310
  var reportErrorBodySchema = external_exports.object({
119066
119311
  runId: external_exports.uuid("Run ID must be a valid UUID"),
119067
119312
  title: external_exports.string().min(1, "Title is required"),
@@ -119070,7 +119315,7 @@ var reportErrorBodySchema = external_exports.object({
119070
119315
  var reportErrorResponseSchema = external_exports.object({
119071
119316
  reference: external_exports.string()
119072
119317
  });
119073
- var zeroReportErrorContract = c49.router({
119318
+ var zeroReportErrorContract = c50.router({
119074
119319
  submit: {
119075
119320
  method: "POST",
119076
119321
  path: "/api/zero/report-error",
@@ -119088,7 +119333,7 @@ var zeroReportErrorContract = c49.router({
119088
119333
 
119089
119334
  // ../../packages/api-contracts/src/contracts/zero-insights.ts
119090
119335
  init_esm_shims();
119091
- var c50 = initContract();
119336
+ var c51 = initContract();
119092
119337
  var insightAgentSchema = external_exports.object({
119093
119338
  agentName: external_exports.string(),
119094
119339
  agentId: external_exports.string().nullable(),
@@ -119153,7 +119398,7 @@ var insightsRangeResponseSchema = external_exports.object({
119153
119398
  maxDate: external_exports.string().nullable(),
119154
119399
  totalDays: external_exports.number()
119155
119400
  });
119156
- var zeroInsightsContract = c50.router({
119401
+ var zeroInsightsContract = c51.router({
119157
119402
  get: {
119158
119403
  method: "GET",
119159
119404
  path: "/api/zero/insights",
@@ -119168,7 +119413,7 @@ var zeroInsightsContract = c50.router({
119168
119413
  summary: "Get daily insights for the authenticated org"
119169
119414
  }
119170
119415
  });
119171
- var zeroInsightsRangeContract = c50.router({
119416
+ var zeroInsightsRangeContract = c51.router({
119172
119417
  get: {
119173
119418
  method: "GET",
119174
119419
  path: "/api/zero/insights/range",
@@ -119183,8 +119428,8 @@ var zeroInsightsRangeContract = c50.router({
119183
119428
 
119184
119429
  // ../../packages/api-contracts/src/contracts/push-subscriptions.ts
119185
119430
  init_esm_shims();
119186
- var c51 = initContract();
119187
- var pushSubscriptionsContract = c51.router({
119431
+ var c52 = initContract();
119432
+ var pushSubscriptionsContract = c52.router({
119188
119433
  register: {
119189
119434
  method: "POST",
119190
119435
  path: "/api/zero/push-subscriptions",
@@ -119208,13 +119453,13 @@ var pushSubscriptionsContract = c51.router({
119208
119453
 
119209
119454
  // ../../packages/api-contracts/src/contracts/zero-voice-io-quota.ts
119210
119455
  init_esm_shims();
119211
- var c52 = initContract();
119456
+ var c53 = initContract();
119212
119457
  var audioInputQuotaResponseSchema = external_exports.object({
119213
119458
  allowed: external_exports.boolean(),
119214
119459
  count: external_exports.number().int().nonnegative(),
119215
119460
  limit: external_exports.number().int().positive().nullable()
119216
119461
  });
119217
- var zeroVoiceIoQuotaContract = c52.router({
119462
+ var zeroVoiceIoQuotaContract = c53.router({
119218
119463
  get: {
119219
119464
  method: "GET",
119220
119465
  path: "/api/zero/voice-io/quota",
@@ -119230,7 +119475,7 @@ var zeroVoiceIoQuotaContract = c52.router({
119230
119475
 
119231
119476
  // ../../packages/api-contracts/src/contracts/zero-voice-chat.ts
119232
119477
  init_esm_shims();
119233
- var c53 = initContract();
119478
+ var c54 = initContract();
119234
119479
  var voiceChatItemRoleSchema = external_exports.enum([
119235
119480
  "user",
119236
119481
  "assistant",
@@ -119313,7 +119558,7 @@ var tokenBodySchema = external_exports.object({
119313
119558
  noiseReduction: external_exports.enum(["near_field", "far_field"]).optional()
119314
119559
  });
119315
119560
  var okResponseSchema = external_exports.object({ ok: external_exports.literal(true) });
119316
- var zeroVoiceChatContract = c53.router({
119561
+ var zeroVoiceChatContract = c54.router({
119317
119562
  createSession: {
119318
119563
  method: "POST",
119319
119564
  path: "/api/zero/voice-chat",
@@ -119444,7 +119689,7 @@ var zeroVoiceChatContract = c53.router({
119444
119689
 
119445
119690
  // ../../packages/api-contracts/src/contracts/zero-uploads.ts
119446
119691
  init_esm_shims();
119447
- var c54 = initContract();
119692
+ var c55 = initContract();
119448
119693
  var prepareRequestSchema = external_exports.object({
119449
119694
  filename: external_exports.string().min(1).max(255),
119450
119695
  contentType: external_exports.string().min(1).max(200),
@@ -119471,7 +119716,7 @@ var completeResponseSchema = external_exports.object({
119471
119716
  size: external_exports.number(),
119472
119717
  url: external_exports.string().url()
119473
119718
  });
119474
- var zeroUploadsContract = c54.router({
119719
+ var zeroUploadsContract = c55.router({
119475
119720
  prepare: {
119476
119721
  method: "POST",
119477
119722
  path: "/api/zero/uploads/prepare",
@@ -119505,7 +119750,7 @@ var zeroUploadsContract = c54.router({
119505
119750
 
119506
119751
  // ../../packages/api-contracts/src/contracts/zero-integrations-telegram.ts
119507
119752
  init_esm_shims();
119508
- var c55 = initContract();
119753
+ var c56 = initContract();
119509
119754
  var telegramEnvironmentSchema = external_exports.object({
119510
119755
  requiredSecrets: external_exports.array(external_exports.string()),
119511
119756
  requiredVars: external_exports.array(external_exports.string()),
@@ -119515,12 +119760,18 @@ var telegramEnvironmentSchema = external_exports.object({
119515
119760
  var telegramTokenStatusSchema = external_exports.enum(["valid", "invalid", "unknown"]);
119516
119761
  var telegramBotSchema = external_exports.object({
119517
119762
  id: external_exports.string(),
119763
+ kind: external_exports.enum(["custom", "official"]).optional(),
119518
119764
  username: external_exports.string().nullable(),
119519
119765
  avatarUrl: external_exports.string().nullable(),
119520
119766
  agent: external_exports.object({ id: external_exports.string(), name: external_exports.string() }).nullable(),
119521
119767
  isOwner: external_exports.boolean(),
119522
119768
  isConnected: external_exports.boolean(),
119523
- tokenStatus: telegramTokenStatusSchema
119769
+ tokenStatus: telegramTokenStatusSchema,
119770
+ official: external_exports.object({
119771
+ configured: external_exports.boolean(),
119772
+ usesDefaultAgent: external_exports.boolean(),
119773
+ linkedTelegramUserId: external_exports.string().nullable()
119774
+ }).optional()
119524
119775
  });
119525
119776
  var telegramBotStatusSchema = telegramBotSchema.extend({
119526
119777
  domainConfigured: external_exports.boolean(),
@@ -119530,7 +119781,8 @@ var telegramListResponseSchema = external_exports.object({
119530
119781
  bots: external_exports.array(telegramBotSchema)
119531
119782
  });
119532
119783
  var telegramUpdateBodySchema = external_exports.object({
119533
- defaultAgentId: external_exports.string().trim().min(1)
119784
+ defaultAgentId: external_exports.string().trim().min(1).optional(),
119785
+ selectedAgentId: external_exports.string().trim().min(1).nullable().optional()
119534
119786
  });
119535
119787
  var telegramLinkStatusResponseSchema = external_exports.discriminatedUnion("linked", [
119536
119788
  external_exports.object({
@@ -119543,6 +119795,7 @@ var telegramLinkStatusResponseSchema = external_exports.discriminatedUnion("link
119543
119795
  installation: external_exports.object({
119544
119796
  id: external_exports.string(),
119545
119797
  botUsername: external_exports.string(),
119798
+ loginBotId: external_exports.string().optional(),
119546
119799
  domainConfigured: external_exports.boolean().optional()
119547
119800
  }).optional()
119548
119801
  })
@@ -119587,7 +119840,7 @@ var telegramSetupStatusSchema = external_exports.object({
119587
119840
  domainConfigured: external_exports.boolean(),
119588
119841
  privacyDisabled: external_exports.boolean()
119589
119842
  });
119590
- var zeroIntegrationsTelegramContract = c55.router({
119843
+ var zeroIntegrationsTelegramContract = c56.router({
119591
119844
  list: {
119592
119845
  method: "GET",
119593
119846
  path: "/api/integrations/telegram",
@@ -119630,9 +119883,9 @@ var zeroIntegrationsTelegramContract = c55.router({
119630
119883
  path: "/api/integrations/telegram/:botId",
119631
119884
  headers: authHeadersSchema,
119632
119885
  pathParams: external_exports.object({ botId: external_exports.string().min(1) }),
119633
- body: c55.noBody(),
119886
+ body: c56.noBody(),
119634
119887
  responses: {
119635
- 204: c55.noBody(),
119888
+ 204: c56.noBody(),
119636
119889
  401: apiErrorSchema,
119637
119890
  403: apiErrorSchema,
119638
119891
  404: apiErrorSchema
@@ -119643,10 +119896,10 @@ var zeroIntegrationsTelegramContract = c55.router({
119643
119896
  method: "DELETE",
119644
119897
  path: "/api/integrations/telegram/link",
119645
119898
  headers: authHeadersSchema,
119646
- body: c55.noBody(),
119899
+ body: c56.noBody(),
119647
119900
  query: external_exports.object({ botId: external_exports.string().optional() }),
119648
119901
  responses: {
119649
- 204: c55.noBody(),
119902
+ 204: c56.noBody(),
119650
119903
  401: apiErrorSchema,
119651
119904
  404: apiErrorSchema
119652
119905
  },
@@ -119992,6 +120245,11 @@ var FEATURE_SWITCHES = {
119992
120245
  description: "Replace the Invite people button in the agent chat page header with a New button that creates a new chat thread",
119993
120246
  enabled: false
119994
120247
  },
120248
+ ["officialTelegramBot" /* OfficialTelegramBot */]: {
120249
+ maintainer: "ethan@vm0.ai",
120250
+ description: "Show and enable the shared official Zero Telegram bot integration",
120251
+ enabled: true
120252
+ },
119995
120253
  ["chatManualHistory" /* ChatManualHistory */]: {
119996
120254
  maintainer: "linghan@vm0.ai",
119997
120255
  description: "Enable manual chat history loading from a Load history button at the top of a thread. When off, chat stays in the latest-50/no-history mode.",
@@ -120065,15 +120323,17 @@ var FEATURE_SWITCHES = {
120065
120323
  enabled: false,
120066
120324
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
120067
120325
  },
120068
- ["idbMessage" /* IdbMessage */]: {
120069
- maintainer: "ethan@vm0.ai",
120070
- description: "Cache chat thread messages in IndexedDB for instant cold open. When off, every thread open fetches messages from the server.",
120071
- enabled: true
120326
+ ["chatgptOauthProvider" /* ChatgptOauthProvider */]: {
120327
+ maintainer: "lancy@vm0.ai",
120328
+ description: "Gate the ChatGPT-OAuth model provider in zero web (Epic #11872). When off, the 'Connect ChatGPT' tile is hidden in the add-provider dialog, server routes that initiate the OAuth dance return 404, and stale-provider UX is bypassed. Staff-only during rollout; per-user toggle via Lab.",
120329
+ enabled: false,
120330
+ enabledOrgIdHashes: STAFF_ORG_ID_HASHES
120072
120331
  },
120073
- ["skeletonNoPreload" /* SkeletonNoPreload */]: {
120074
- maintainer: "ethan@vm0.ai",
120075
- description: "Hide the app skeleton without awaiting agents/avatar prefetch. When on, the skeleton hides as soon as the route resolves, letting components render with their own loading states.",
120076
- enabled: true
120332
+ ["personalModelProvider" /* PersonalModelProvider */]: {
120333
+ maintainer: "lancy@vm0.ai",
120334
+ description: "Enable per-user (BYOK) model providers in addition to org-level. When off: Personal tab in Preferences is hidden; personal-tier API endpoints return 404; the prefer_personal_provider checkbox on agents/schedules is hidden; the resolver ignores the flag (treats as false). Staff-only during rollout; per-user toggle via Lab.",
120335
+ enabled: false,
120336
+ enabledOrgIdHashes: STAFF_ORG_ID_HASHES
120077
120337
  }
120078
120338
  };
120079
120339
  function isFeatureEnabled(key, ctx) {
@@ -120449,9 +120709,9 @@ var CodexEventParser = class {
120449
120709
  if (!item.changes || item.changes.length === 0) {
120450
120710
  return null;
120451
120711
  }
120452
- const changes = item.changes.map((c56) => {
120453
- const action = c56.kind === "add" ? "Created" : c56.kind === "modify" ? "Modified" : "Deleted";
120454
- return `${action}: ${c56.path}`;
120712
+ const changes = item.changes.map((c57) => {
120713
+ const action = c57.kind === "add" ? "Created" : c57.kind === "modify" ? "Modified" : "Deleted";
120714
+ return `${action}: ${c57.path}`;
120455
120715
  }).join("\n");
120456
120716
  return {
120457
120717
  type: "text",
@@ -121453,4 +121713,4 @@ undici/lib/web/fetch/body.js:
121453
121713
  undici/lib/web/websocket/frame.js:
121454
121714
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
121455
121715
  */
121456
- //# sourceMappingURL=chunk-I2CFAMAF.js.map
121716
+ //# sourceMappingURL=chunk-SIAYAR4M.js.map