@vm0/cli 9.122.11 → 9.124.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 c52 = "color: " + this.color;
4626
- args.splice(1, 0, c52, "color: inherit");
4625
+ const c53 = "color: " + this.color;
4626
+ args.splice(1, 0, c53, "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, c52);
4638
+ args.splice(lastC, 0, c53);
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 c52 = this.color;
4927
- const colorCode = "\x1B[3" + (c52 < 8 ? c52 : "8;5;" + c52);
4926
+ const c53 = this.color;
4927
+ const colorCode = "\x1B[3" + (c53 < 8 ? c53 : "8;5;" + c53);
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 c52;
10086
+ let c53;
10087
10087
  if (isAlphaSequence) {
10088
- c52 = String.fromCharCode(i);
10089
- if (c52 === "\\") {
10090
- c52 = "";
10088
+ c53 = String.fromCharCode(i);
10089
+ if (c53 === "\\") {
10090
+ c53 = "";
10091
10091
  }
10092
10092
  } else {
10093
- c52 = String(i);
10093
+ c53 = String(i);
10094
10094
  if (pad) {
10095
- const need = width - c52.length;
10095
+ const need = width - c53.length;
10096
10096
  if (need > 0) {
10097
10097
  const z3 = new Array(need + 1).join("0");
10098
10098
  if (i < 0) {
10099
- c52 = "-" + z3 + c52.slice(1);
10099
+ c53 = "-" + z3 + c53.slice(1);
10100
10100
  } else {
10101
- c52 = z3 + c52;
10101
+ c53 = z3 + c53;
10102
10102
  }
10103
10103
  }
10104
10104
  }
10105
10105
  }
10106
- N.push(c52);
10106
+ N.push(c53);
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 c52 = glob.charAt(i);
10190
- if ((c52 === "!" || c52 === "^") && i === pos + 1) {
10189
+ const c53 = glob.charAt(i);
10190
+ if ((c53 === "!" || c53 === "^") && i === pos + 1) {
10191
10191
  negate = true;
10192
10192
  i++;
10193
10193
  continue;
10194
10194
  }
10195
- if (c52 === "]" && sawStart && !escaping) {
10195
+ if (c53 === "]" && sawStart && !escaping) {
10196
10196
  endPos = i + 1;
10197
10197
  break;
10198
10198
  }
10199
10199
  sawStart = true;
10200
- if (c52 === "\\") {
10200
+ if (c53 === "\\") {
10201
10201
  if (!escaping) {
10202
10202
  escaping = true;
10203
10203
  i++;
10204
10204
  continue;
10205
10205
  }
10206
10206
  }
10207
- if (c52 === "[" && !escaping) {
10207
+ if (c53 === "[" && !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 (c52 > rangeStart) {
10226
- ranges.push(braceEscape(rangeStart) + "-" + braceEscape(c52));
10227
- } else if (c52 === rangeStart) {
10228
- ranges.push(braceEscape(c52));
10225
+ if (c53 > rangeStart) {
10226
+ ranges.push(braceEscape(rangeStart) + "-" + braceEscape(c53));
10227
+ } else if (c53 === rangeStart) {
10228
+ ranges.push(braceEscape(c53));
10229
10229
  }
10230
10230
  rangeStart = "";
10231
10231
  i++;
10232
10232
  continue;
10233
10233
  }
10234
10234
  if (glob.startsWith("-]", i + 1)) {
10235
- ranges.push(braceEscape(c52 + "-"));
10235
+ ranges.push(braceEscape(c53 + "-"));
10236
10236
  i += 2;
10237
10237
  continue;
10238
10238
  }
10239
10239
  if (glob.startsWith("-", i + 1)) {
10240
- rangeStart = c52;
10240
+ rangeStart = c53;
10241
10241
  i += 2;
10242
10242
  continue;
10243
10243
  }
10244
- ranges.push(braceEscape(c52));
10244
+ ranges.push(braceEscape(c53));
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 = (c52) => types.has(c52);
10295
- var isExtglobAST = (c52) => isExtglobType(c52.type);
10294
+ var isExtglobType = (c53) => types.has(c53);
10295
+ var isExtglobAST = (c53) => isExtglobType(c53.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 c52 = new _a2(this.type, parent);
10492
+ const c53 = new _a2(this.type, parent);
10493
10493
  for (const p of this.#parts) {
10494
- c52.copyIn(p);
10494
+ c53.copyIn(p);
10495
10495
  }
10496
- return c52;
10496
+ return c53;
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 c52 = str.charAt(i2++);
10509
- if (escaping || c52 === "\\") {
10508
+ const c53 = str.charAt(i2++);
10509
+ if (escaping || c53 === "\\") {
10510
10510
  escaping = !escaping;
10511
- acc2 += c52;
10511
+ acc2 += c53;
10512
10512
  continue;
10513
10513
  }
10514
10514
  if (inBrace) {
10515
10515
  if (i2 === braceStart + 1) {
10516
- if (c52 === "^" || c52 === "!") {
10516
+ if (c53 === "^" || c53 === "!") {
10517
10517
  braceNeg = true;
10518
10518
  }
10519
- } else if (c52 === "]" && !(i2 === braceStart + 2 && braceNeg)) {
10519
+ } else if (c53 === "]" && !(i2 === braceStart + 2 && braceNeg)) {
10520
10520
  inBrace = false;
10521
10521
  }
10522
- acc2 += c52;
10522
+ acc2 += c53;
10523
10523
  continue;
10524
- } else if (c52 === "[") {
10524
+ } else if (c53 === "[") {
10525
10525
  inBrace = true;
10526
10526
  braceStart = i2;
10527
10527
  braceNeg = false;
10528
- acc2 += c52;
10528
+ acc2 += c53;
10529
10529
  continue;
10530
10530
  }
10531
- const doRecurse = !opt.noext && isExtglobType(c52) && str.charAt(i2) === "(" && extDepth <= maxDepth;
10531
+ const doRecurse = !opt.noext && isExtglobType(c53) && str.charAt(i2) === "(" && extDepth <= maxDepth;
10532
10532
  if (doRecurse) {
10533
10533
  ast.push(acc2);
10534
10534
  acc2 = "";
10535
- const ext = new _a2(c52, ast);
10535
+ const ext = new _a2(c53, ast);
10536
10536
  i2 = _a2.#parseAST(str, ext, i2, opt, extDepth + 1);
10537
10537
  ast.push(ext);
10538
10538
  continue;
10539
10539
  }
10540
- acc2 += c52;
10540
+ acc2 += c53;
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 c52 = str.charAt(i++);
10551
- if (escaping || c52 === "\\") {
10550
+ const c53 = str.charAt(i++);
10551
+ if (escaping || c53 === "\\") {
10552
10552
  escaping = !escaping;
10553
- acc += c52;
10553
+ acc += c53;
10554
10554
  continue;
10555
10555
  }
10556
10556
  if (inBrace) {
10557
10557
  if (i === braceStart + 1) {
10558
- if (c52 === "^" || c52 === "!") {
10558
+ if (c53 === "^" || c53 === "!") {
10559
10559
  braceNeg = true;
10560
10560
  }
10561
- } else if (c52 === "]" && !(i === braceStart + 2 && braceNeg)) {
10561
+ } else if (c53 === "]" && !(i === braceStart + 2 && braceNeg)) {
10562
10562
  inBrace = false;
10563
10563
  }
10564
- acc += c52;
10564
+ acc += c53;
10565
10565
  continue;
10566
- } else if (c52 === "[") {
10566
+ } else if (c53 === "[") {
10567
10567
  inBrace = true;
10568
10568
  braceStart = i;
10569
10569
  braceNeg = false;
10570
- acc += c52;
10570
+ acc += c53;
10571
10571
  continue;
10572
10572
  }
10573
- const doRecurse = !opt.noext && isExtglobType(c52) && str.charAt(i) === "(" && /* c8 ignore start - the maxDepth is sufficient here */
10574
- (extDepth <= maxDepth || ast && ast.#canAdoptType(c52));
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));
10575
10575
  if (doRecurse) {
10576
- const depthAdd = ast && ast.#canAdoptType(c52) ? 0 : 1;
10576
+ const depthAdd = ast && ast.#canAdoptType(c53) ? 0 : 1;
10577
10577
  part.push(acc);
10578
10578
  acc = "";
10579
- const ext = new _a2(c52, part);
10579
+ const ext = new _a2(c53, part);
10580
10580
  part.push(ext);
10581
10581
  i = _a2.#parseAST(str, ext, i, opt, extDepth + depthAdd);
10582
10582
  continue;
10583
10583
  }
10584
- if (c52 === "|") {
10584
+ if (c53 === "|") {
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 (c52 === ")") {
10591
+ if (c53 === ")") {
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 += c52;
10600
+ acc += c53;
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(c52, map2 = adoptionAnyMap) {
10621
- return !!map2.get(this.type)?.includes(c52);
10620
+ #canAdoptType(c53, map2 = adoptionAnyMap) {
10621
+ return !!map2.get(this.type)?.includes(c53);
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(c52) {
10639
+ #canUsurpType(c53) {
10640
10640
  const m = usurpMap.get(this.type);
10641
- return !!m?.has(c52);
10641
+ return !!m?.has(c53);
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 c52 = this.#parts[i];
10855
- if (typeof c52 === "object") {
10856
- c52.#flatten();
10857
- if (this.#canAdopt(c52)) {
10854
+ const c53 = this.#parts[i];
10855
+ if (typeof c53 === "object") {
10856
+ c53.#flatten();
10857
+ if (this.#canAdopt(c53)) {
10858
10858
  done = false;
10859
- this.#adopt(c52, i);
10860
- } else if (this.#canAdoptWithSpace(c52)) {
10859
+ this.#adopt(c53, i);
10860
+ } else if (this.#canAdoptWithSpace(c53)) {
10861
10861
  done = false;
10862
- this.#adoptWithSpace(c52, i);
10863
- } else if (this.#canUsurp(c52)) {
10862
+ this.#adoptWithSpace(c53, i);
10863
+ } else if (this.#canUsurp(c53)) {
10864
10864
  done = false;
10865
- this.#usurp(c52);
10865
+ this.#usurp(c53);
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 c52 = glob.charAt(i);
10889
+ const c53 = glob.charAt(i);
10890
10890
  if (escaping) {
10891
10891
  escaping = false;
10892
- re += (reSpecials.has(c52) ? "\\" : "") + c52;
10892
+ re += (reSpecials.has(c53) ? "\\" : "") + c53;
10893
10893
  continue;
10894
10894
  }
10895
- if (c52 === "*") {
10895
+ if (c53 === "*") {
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 (c52 === "\\") {
10905
+ if (c53 === "\\") {
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 (c52 === "[") {
10913
+ if (c53 === "[") {
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 (c52 === "?") {
10923
+ if (c53 === "?") {
10924
10924
  re += qmark;
10925
10925
  hasMagic = true;
10926
10926
  continue;
10927
10927
  }
10928
- re += regExpEscape(c52);
10928
+ re += regExpEscape(c53);
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 c52 = pool.config.connectionConfig;
14845
+ const c53 = pool.config.connectionConfig;
14846
14846
  let poolName = "";
14847
- poolName += c52.host ? `host: '${c52.host}', ` : "";
14848
- poolName += c52.port ? `port: ${c52.port}, ` : "";
14849
- poolName += c52.database ? `database: '${c52.database}', ` : "";
14850
- poolName += c52.user ? `user: '${c52.user}'` : "";
14851
- if (!c52.user) {
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) {
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, (c52) => `%${c52.charCodeAt(0).toString(16).toUpperCase()}`);
15203
+ return encodeURIComponent(str).replace(/[!'()*]/g, (c53) => `%${c53.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(c52) {
23754
- switch (c52) {
23753
+ function isTokenCharCode(c53) {
23754
+ switch (c53) {
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 c52 >= 33 && c52 <= 126;
23774
+ return c53 >= 33 && c53 <= 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((c52) => c52 !== 44);
25363
+ exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c53) => c53 !== 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 c52 = statusText.charCodeAt(i);
26510
- if (!(c52 === 9 || // HTAB
26511
- c52 >= 32 && c52 <= 126 || // SP / VCHAR
26512
- c52 >= 128 && c52 <= 255)) {
26509
+ const c53 = statusText.charCodeAt(i);
26510
+ if (!(c53 === 9 || // HTAB
26511
+ c53 >= 32 && c53 <= 126 || // SP / VCHAR
26512
+ c53 >= 128 && c53 <= 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((c52) => c52.close())).then(pool[kClosedResolve]);
30486
+ Promise.all(pool[kClients].map((c53) => c53.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((c52) => c52.close()));
30535
+ await Promise.all(this[kClients].map((c53) => c53.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((c52) => c52.destroy(err)));
30550
+ await Promise.all(this[kClients].map((c53) => c53.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, c52] = ioQueue;
37321
- if (a === 239 && b === 187 && c52 === 191) {
37320
+ const [a, b, c53] = ioQueue;
37321
+ if (a === 239 && b === 187 && c53 === 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 c52 = getAliasCount(doc, item, anchors2);
41801
- if (c52 > count)
41802
- count = c52;
41800
+ const c53 = getAliasCount(doc, item, anchors2);
41801
+ if (c53 > count)
41802
+ count = c53;
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 c52 = require_kleur();
48818
+ var c53 = 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: c52.red(figures.cross),
48841
- done: c52.green(figures.tick),
48842
- exited: c52.yellow(figures.cross),
48843
- default: c52.cyan("?")
48840
+ aborted: c53.red(figures.cross),
48841
+ done: c53.green(figures.tick),
48842
+ exited: c53.yellow(figures.cross),
48843
+ default: c53.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) => c52.gray(completing ? figures.ellipsis : figures.pointerSmall);
48847
- var item = (expandable, expanded) => c52.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
48846
+ var delimiter = (completing) => c53.gray(completing ? figures.ellipsis : figures.pointerSmall);
48847
+ var item = (expandable, expanded) => c53.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
- _(c52, key) {
49129
+ _(c53, key) {
49130
49130
  let s1 = this.value.slice(0, this.cursor);
49131
49131
  let s2 = this.value.slice(this.cursor);
49132
- this.value = `${s1}${c52}${s2}`;
49132
+ this.value = `${s1}${c53}${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
- _(c52, key) {
49308
- if (c52 === " ") return this.submit();
49307
+ _(c53, key) {
49308
+ if (c53 === " ") 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
- _(c52, key) {
49435
- if (c52 === " ") {
49434
+ _(c53, key) {
49435
+ if (c53 === " ") {
49436
49436
  this.value = !this.value;
49437
- } else if (c52 === "1") {
49437
+ } else if (c53 === "1") {
49438
49438
  this.value = true;
49439
- } else if (c52 === "0") {
49439
+ } else if (c53 === "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
- _(c52) {
49948
- if (/\d/.test(c52)) {
49949
- this.typed += c52;
49947
+ _(c53) {
49948
+ if (/\d/.test(c53)) {
49949
+ this.typed += c53;
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(c52) {
50059
- return c52 === `-` || c52 === `.` && this.float || isNumber.test(c52);
50058
+ valid(c53) {
50059
+ return c53 === `-` || c53 === `.` && this.float || isNumber.test(c53);
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
- _(c52, key) {
50153
- if (!this.valid(c52)) return this.bell();
50152
+ _(c53, key) {
50153
+ if (!this.valid(c53)) return this.bell();
50154
50154
  const now = Date.now();
50155
50155
  if (now - this.lastHit > 1e3) this.typed = ``;
50156
- this.typed += c52;
50156
+ this.typed += c53;
50157
50157
  this.lastHit = now;
50158
50158
  this.color = `cyan`;
50159
- if (c52 === `.`) return this.fire();
50159
+ if (c53 === `.`) 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
- _(c52, key) {
50324
- if (c52 === " ") {
50323
+ _(c53, key) {
50324
+ if (c53 === " ") {
50325
50325
  this.handleSpaceToggle();
50326
- } else if (c52 === "a") {
50326
+ } else if (c53 === "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
- _(c52, key) {
50567
+ _(c53, key) {
50568
50568
  let s1 = this.input.slice(0, this.cursor);
50569
50569
  let s2 = this.input.slice(this.cursor);
50570
- this.input = `${s1}${c52}${s2}`;
50570
+ this.input = `${s1}${c53}${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(c52) {
50771
- this.inputValue = this.inputValue + c52;
50770
+ handleInputChange(c53) {
50771
+ this.inputValue = this.inputValue + c53;
50772
50772
  this.updateFilteredOptions();
50773
50773
  }
50774
- _(c52, key) {
50775
- if (c52 === " ") {
50774
+ _(c53, key) {
50775
+ if (c53 === " ") {
50776
50776
  this.handleSpaceToggle();
50777
50777
  } else {
50778
- this.handleInputChange(c52);
50778
+ this.handleInputChange(c53);
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
- _(c52, key) {
50885
- if (c52.toLowerCase() === "y") {
50884
+ _(c53, key) {
50885
+ if (c53.toLowerCase() === "y") {
50886
50886
  this.value = true;
50887
50887
  return this.submit();
50888
50888
  }
50889
- if (c52.toLowerCase() === "n") {
50889
+ if (c53.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 c52 = require_kleur();
51330
+ var c53 = 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: c52.red(figures.cross),
51341
- done: c52.green(figures.tick),
51342
- exited: c52.yellow(figures.cross),
51343
- default: c52.cyan("?")
51340
+ aborted: c53.red(figures.cross),
51341
+ done: c53.green(figures.tick),
51342
+ exited: c53.yellow(figures.cross),
51343
+ default: c53.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) => c52.gray(completing ? figures.ellipsis : figures.pointerSmall);
51347
- var item = (expandable, expanded) => c52.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line);
51346
+ var delimiter = (completing) => c53.gray(completing ? figures.ellipsis : figures.pointerSmall);
51347
+ var item = (expandable, expanded) => c53.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
- _(c52, key) {
51580
+ _(c53, key) {
51581
51581
  let s1 = this.value.slice(0, this.cursor);
51582
51582
  let s2 = this.value.slice(this.cursor);
51583
- this.value = `${s1}${c52}${s2}`;
51583
+ this.value = `${s1}${c53}${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
- _(c52, key) {
51758
- if (c52 === " ") return this.submit();
51757
+ _(c53, key) {
51758
+ if (c53 === " ") 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
- _(c52, key) {
51883
- if (c52 === " ") {
51882
+ _(c53, key) {
51883
+ if (c53 === " ") {
51884
51884
  this.value = !this.value;
51885
- } else if (c52 === "1") {
51885
+ } else if (c53 === "1") {
51886
51886
  this.value = true;
51887
- } else if (c52 === "0") {
51887
+ } else if (c53 === "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
- _(c52) {
52344
- if (/\d/.test(c52)) {
52345
- this.typed += c52;
52343
+ _(c53) {
52344
+ if (/\d/.test(c53)) {
52345
+ this.typed += c53;
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(c52) {
52428
- return c52 === `-` || c52 === `.` && this.float || isNumber.test(c52);
52427
+ valid(c53) {
52428
+ return c53 === `-` || c53 === `.` && this.float || isNumber.test(c53);
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
- _(c52, key) {
52516
- if (!this.valid(c52)) return this.bell();
52515
+ _(c53, key) {
52516
+ if (!this.valid(c53)) return this.bell();
52517
52517
  const now = Date.now();
52518
52518
  if (now - this.lastHit > 1e3) this.typed = ``;
52519
- this.typed += c52;
52519
+ this.typed += c53;
52520
52520
  this.lastHit = now;
52521
52521
  this.color = `cyan`;
52522
- if (c52 === `.`) return this.fire();
52522
+ if (c53 === `.`) 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
- _(c52, key) {
52685
- if (c52 === " ") {
52684
+ _(c53, key) {
52685
+ if (c53 === " ") {
52686
52686
  this.handleSpaceToggle();
52687
- } else if (c52 === "a") {
52687
+ } else if (c53 === "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
- _(c52, key) {
52884
+ _(c53, key) {
52885
52885
  let s1 = this.input.slice(0, this.cursor);
52886
52886
  let s2 = this.input.slice(this.cursor);
52887
- this.input = `${s1}${c52}${s2}`;
52887
+ this.input = `${s1}${c53}${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(c52) {
53091
- this.inputValue = this.inputValue + c52;
53090
+ handleInputChange(c53) {
53091
+ this.inputValue = this.inputValue + c53;
53092
53092
  this.updateFilteredOptions();
53093
53093
  }
53094
- _(c52, key) {
53095
- if (c52 === " ") {
53094
+ _(c53, key) {
53095
+ if (c53 === " ") {
53096
53096
  this.handleSpaceToggle();
53097
53097
  } else {
53098
- this.handleInputChange(c52);
53098
+ this.handleInputChange(c53);
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
- _(c52, key) {
53206
- if (c52.toLowerCase() === "y") {
53205
+ _(c53, key) {
53206
+ if (c53.toLowerCase() === "y") {
53207
53207
  this.value = true;
53208
53208
  return this.submit();
53209
53209
  }
53210
- if (c52.toLowerCase() === "n") {
53210
+ if (c53.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 c52 of classes) {
54265
- out.push(`.${c52}`);
54264
+ for (const c53 of classes) {
54265
+ out.push(`.${c53}`);
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
- (c52) => (
54478
+ (c53) => (
54479
54479
  // eslint-disable-next-line no-bitwise
54480
- (c52 ^ (getRandomByte() & 15) >> c52 / 4).toString(16)
54480
+ (c53 ^ (getRandomByte() & 15) >> c53 / 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(c52, next) {
72042
+ return function(c53, next) {
72043
72043
  if (!instrumentation.isEnabled()) {
72044
- return handler.apply(this, [c52, next]);
72044
+ return handler.apply(this, [c53, next]);
72045
72045
  }
72046
- const path3 = c52.req.path;
72046
+ const path3 = c53.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, [c52, next]);
72051
+ const result = handler.apply(this, [c53, 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.122.11",
73645
+ release: "9.124.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.122.11",
73664
+ version: "9.124.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, (c52) => c52 === "-" ? "+" : "/");
77049
+ const base643 = data.replace(/[-_]/g, (c53) => c53 === "-" ? "+" : "/");
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 c52 = inst._zod.bag;
87161
- inst.minDate = c52.minimum ? new Date(c52.minimum) : null;
87162
- inst.maxDate = c52.maximum ? new Date(c52.maximum) : null;
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;
87163
87163
  });
87164
87164
  function date3(params) {
87165
87165
  return _date(ZodDate, params);
@@ -88803,6 +88803,27 @@ var CONNECTOR_TYPES_DEF = {
88803
88803
  },
88804
88804
  defaultAuthMethod: "api-token"
88805
88805
  },
88806
+ helicone: {
88807
+ label: "Helicone",
88808
+ helpText: "Connect to Helicone for LLM cost tracking, request logging, and performance analytics.",
88809
+ environmentMapping: {
88810
+ HELICONE_TOKEN: "$secrets.HELICONE_TOKEN"
88811
+ },
88812
+ authMethods: {
88813
+ "api-token": {
88814
+ label: "API Key",
88815
+ helpText: "Go to helicone.ai \u2192 Settings \u2192 API Keys \u2192 create a new key.",
88816
+ secrets: {
88817
+ HELICONE_TOKEN: {
88818
+ label: "API Key",
88819
+ required: true,
88820
+ placeholder: "sk-helicone-..."
88821
+ }
88822
+ }
88823
+ }
88824
+ },
88825
+ defaultAuthMethod: "api-token"
88826
+ },
88806
88827
  hubspot: {
88807
88828
  label: "HubSpot",
88808
88829
  environmentMapping: {
@@ -88964,8 +88985,8 @@ var CONNECTOR_TYPES_DEF = {
88964
88985
  },
88965
88986
  defaultAuthMethod: "oauth",
88966
88987
  oauth: {
88967
- authorizationUrl: "https://account.docusign.com/oauth/auth",
88968
- tokenUrl: "https://account.docusign.com/oauth/token",
88988
+ authorizationUrl: "https://account-d.docusign.com/oauth/auth",
88989
+ tokenUrl: "https://account-d.docusign.com/oauth/token",
88969
88990
  scopes: ["signature", "extended", "openid"]
88970
88991
  }
88971
88992
  },
@@ -89319,6 +89340,25 @@ var CONNECTOR_TYPES_DEF = {
89319
89340
  },
89320
89341
  defaultAuthMethod: "api-token"
89321
89342
  },
89343
+ mem0: {
89344
+ label: "Mem0",
89345
+ helpText: "Connect to Mem0 for persistent AI memory across conversations and sessions.",
89346
+ environmentMapping: { MEM0_TOKEN: "$secrets.MEM0_TOKEN" },
89347
+ authMethods: {
89348
+ "api-token": {
89349
+ label: "API Key",
89350
+ helpText: "Go to [app.mem0.ai](https://app.mem0.ai) \u2192 **API Keys** \u2192 create or copy your key.",
89351
+ secrets: {
89352
+ MEM0_TOKEN: {
89353
+ label: "API Key",
89354
+ required: true,
89355
+ placeholder: "m0-..."
89356
+ }
89357
+ }
89358
+ }
89359
+ },
89360
+ defaultAuthMethod: "api-token"
89361
+ },
89322
89362
  metabase: {
89323
89363
  label: "Metabase",
89324
89364
  environmentMapping: {
@@ -89556,6 +89596,27 @@ var CONNECTOR_TYPES_DEF = {
89556
89596
  },
89557
89597
  defaultAuthMethod: "api-token"
89558
89598
  },
89599
+ e2b: {
89600
+ label: "E2B",
89601
+ environmentMapping: {
89602
+ E2B_TOKEN: "$secrets.E2B_TOKEN"
89603
+ },
89604
+ helpText: "Connect your E2B account to create and manage secure cloud sandboxes for AI code execution",
89605
+ authMethods: {
89606
+ "api-token": {
89607
+ label: "API Key",
89608
+ helpText: "1. Sign up at [e2b.dev](https://e2b.dev)\n2. Go to Dashboard \u2192 **API Keys**\n3. Click **Create API Key**\n4. Copy the key (starts with `e2b_`). Paste it here.",
89609
+ secrets: {
89610
+ E2B_TOKEN: {
89611
+ label: "API Key",
89612
+ required: true,
89613
+ placeholder: "e2b_..."
89614
+ }
89615
+ }
89616
+ }
89617
+ },
89618
+ defaultAuthMethod: "api-token"
89619
+ },
89559
89620
  figma: {
89560
89621
  label: "Figma",
89561
89622
  environmentMapping: {
@@ -90460,6 +90521,25 @@ var CONNECTOR_TYPES_DEF = {
90460
90521
  ]
90461
90522
  }
90462
90523
  },
90524
+ workos: {
90525
+ label: "WorkOS",
90526
+ helpText: "Connect to WorkOS for enterprise SSO, SCIM directory sync, RBAC fine-grained authorization, and audit log management.",
90527
+ environmentMapping: { WORKOS_TOKEN: "$secrets.WORKOS_TOKEN" },
90528
+ authMethods: {
90529
+ "api-token": {
90530
+ label: "API Key",
90531
+ helpText: "Go to WorkOS Dashboard \u2192 API Keys \u2192 copy your secret key (starts with `sk_live_` for production or `sk_test_` for sandbox).",
90532
+ secrets: {
90533
+ WORKOS_TOKEN: {
90534
+ label: "API Key",
90535
+ required: true,
90536
+ placeholder: "sk_live_..."
90537
+ }
90538
+ }
90539
+ }
90540
+ },
90541
+ defaultAuthMethod: "api-token"
90542
+ },
90463
90543
  wrike: {
90464
90544
  label: "Wrike",
90465
90545
  environmentMapping: {
@@ -90736,6 +90816,27 @@ var CONNECTOR_TYPES_DEF = {
90736
90816
  },
90737
90817
  defaultAuthMethod: "api-token"
90738
90818
  },
90819
+ pipedrive: {
90820
+ label: "Pipedrive",
90821
+ environmentMapping: {
90822
+ PIPEDRIVE_TOKEN: "$secrets.PIPEDRIVE_TOKEN"
90823
+ },
90824
+ helpText: "Connect your Pipedrive account to manage your sales pipeline \u2014 deals, contacts, organizations, activities, and notes",
90825
+ authMethods: {
90826
+ "api-token": {
90827
+ label: "API Key",
90828
+ helpText: "1. In Pipedrive, click your avatar (top right) \u2192 **Personal Preferences** \u2192 **API**\n2. Copy your personal API token\n3. Paste it here",
90829
+ secrets: {
90830
+ PIPEDRIVE_TOKEN: {
90831
+ label: "API Key",
90832
+ required: true,
90833
+ placeholder: "your-pipedrive-api-token"
90834
+ }
90835
+ }
90836
+ }
90837
+ },
90838
+ defaultAuthMethod: "api-token"
90839
+ },
90739
90840
  plain: {
90740
90841
  label: "Plain",
90741
90842
  environmentMapping: {
@@ -90879,6 +90980,27 @@ var CONNECTOR_TYPES_DEF = {
90879
90980
  },
90880
90981
  defaultAuthMethod: "api-token"
90881
90982
  },
90983
+ replicate: {
90984
+ label: "Replicate",
90985
+ environmentMapping: {
90986
+ REPLICATE_TOKEN: "$secrets.REPLICATE_TOKEN"
90987
+ },
90988
+ helpText: "Connect your Replicate account to run open-source ML models for image generation, text generation, and more",
90989
+ authMethods: {
90990
+ "api-token": {
90991
+ label: "API Token",
90992
+ helpText: "1. Sign up at [replicate.com](https://replicate.com)\n2. Click your avatar \u2192 **API Tokens**\n3. Click **Create token**, give it a name\n4. Copy the token (starts with `r8_`)\n5. Paste it here",
90993
+ secrets: {
90994
+ REPLICATE_TOKEN: {
90995
+ label: "API Token",
90996
+ required: true,
90997
+ placeholder: "r8_..."
90998
+ }
90999
+ }
91000
+ }
91001
+ },
91002
+ defaultAuthMethod: "api-token"
91003
+ },
90882
91004
  pdf4me: {
90883
91005
  label: "PDF4me",
90884
91006
  environmentMapping: {
@@ -90990,6 +91112,27 @@ var CONNECTOR_TYPES_DEF = {
90990
91112
  },
90991
91113
  defaultAuthMethod: "api-token"
90992
91114
  },
91115
+ pinecone: {
91116
+ label: "Pinecone",
91117
+ environmentMapping: {
91118
+ PINECONE_TOKEN: "$secrets.PINECONE_TOKEN"
91119
+ },
91120
+ helpText: "Connect your Pinecone account for vector database operations, semantic search, and managing embeddings",
91121
+ authMethods: {
91122
+ "api-token": {
91123
+ label: "API Key",
91124
+ helpText: "1. Log in to [Pinecone](https://app.pinecone.io)\n2. Go to **API Keys** in the left sidebar\n3. Copy your default API key or create a new one",
91125
+ secrets: {
91126
+ PINECONE_TOKEN: {
91127
+ label: "API Key",
91128
+ required: true,
91129
+ placeholder: "pcsk_..."
91130
+ }
91131
+ }
91132
+ }
91133
+ },
91134
+ defaultAuthMethod: "api-token"
91135
+ },
90993
91136
  pika: {
90994
91137
  label: "Pika",
90995
91138
  environmentMapping: {
@@ -91241,6 +91384,27 @@ var CONNECTOR_TYPES_DEF = {
91241
91384
  },
91242
91385
  defaultAuthMethod: "api-token"
91243
91386
  },
91387
+ exa: {
91388
+ label: "Exa",
91389
+ environmentMapping: {
91390
+ EXA_TOKEN: "$secrets.EXA_TOKEN"
91391
+ },
91392
+ helpText: "Connect your Exa account to perform AI-native semantic web search, retrieve page contents, and find similar pages",
91393
+ authMethods: {
91394
+ "api-token": {
91395
+ label: "API Key",
91396
+ helpText: "1. Sign up at [dashboard.exa.ai](https://dashboard.exa.ai)\n2. Click your account \u2192 **API Keys** \u2192 **Create API Key**\n3. Copy the key (starts with `exa_`). Free tier: 1,000 requests/month.",
91397
+ secrets: {
91398
+ EXA_TOKEN: {
91399
+ label: "API Key",
91400
+ required: true,
91401
+ placeholder: "exa_..."
91402
+ }
91403
+ }
91404
+ }
91405
+ },
91406
+ defaultAuthMethod: "api-token"
91407
+ },
91244
91408
  explorium: {
91245
91409
  label: "Explorium",
91246
91410
  environmentMapping: {
@@ -91415,6 +91579,25 @@ var CONNECTOR_TYPES_DEF = {
91415
91579
  },
91416
91580
  defaultAuthMethod: "api-token"
91417
91581
  },
91582
+ zep: {
91583
+ label: "Zep",
91584
+ helpText: "Connect to Zep for long-term memory and conversation history management in AI agents.",
91585
+ environmentMapping: { ZEP_TOKEN: "$secrets.ZEP_TOKEN" },
91586
+ authMethods: {
91587
+ "api-token": {
91588
+ label: "API Key",
91589
+ helpText: "1. Log in to [app.getzep.com](https://app.getzep.com)\n2. Go to **Settings**\n3. Navigate to **API Keys**\n4. Click **Create API Key** and copy the key",
91590
+ secrets: {
91591
+ ZEP_TOKEN: {
91592
+ label: "API Key",
91593
+ required: true,
91594
+ placeholder: "z_..."
91595
+ }
91596
+ }
91597
+ }
91598
+ },
91599
+ defaultAuthMethod: "api-token"
91600
+ },
91418
91601
  zeptomail: {
91419
91602
  label: "ZeptoMail",
91420
91603
  environmentMapping: {
@@ -91507,6 +91690,28 @@ var CONNECTOR_TYPES_DEF = {
91507
91690
  },
91508
91691
  defaultAuthMethod: "api-token"
91509
91692
  },
91693
+ "stability-ai": {
91694
+ label: "Stability AI",
91695
+ environmentMapping: {
91696
+ STABILITY_TOKEN: "$secrets.STABILITY_TOKEN"
91697
+ },
91698
+ featureFlag: "stabilityAiConnector" /* StabilityAiConnector */,
91699
+ helpText: "Connect your Stability AI account to generate images using Stable Diffusion models",
91700
+ authMethods: {
91701
+ "api-token": {
91702
+ label: "API Key",
91703
+ helpText: "1. Sign up at [platform.stability.ai](https://platform.stability.ai)\n2. Go to **Account \u2192 API Keys \u2192 Create API Key**\n3. Copy the key (starts with `sk-`). Paste here. Free credits on signup.",
91704
+ secrets: {
91705
+ STABILITY_TOKEN: {
91706
+ label: "API Key",
91707
+ required: true,
91708
+ placeholder: "sk-..."
91709
+ }
91710
+ }
91711
+ }
91712
+ },
91713
+ defaultAuthMethod: "api-token"
91714
+ },
91510
91715
  streak: {
91511
91716
  label: "Streak",
91512
91717
  environmentMapping: {
@@ -91618,6 +91823,27 @@ var CONNECTOR_TYPES_DEF = {
91618
91823
  },
91619
91824
  defaultAuthMethod: "api-token"
91620
91825
  },
91826
+ together: {
91827
+ label: "Together AI",
91828
+ environmentMapping: {
91829
+ TOGETHER_TOKEN: "$secrets.TOGETHER_TOKEN"
91830
+ },
91831
+ helpText: "Connect your Together AI account to run open-source models (Llama, Qwen, FLUX) via an OpenAI-compatible API",
91832
+ authMethods: {
91833
+ "api-token": {
91834
+ label: "API Key",
91835
+ helpText: "1. Sign up at [api.together.ai](https://api.together.ai)\n2. Go to **Settings \u2192 API Keys**\n3. Click **Create API Key**\n4. Copy the key. Paste it here. Free $1 credit on signup.",
91836
+ secrets: {
91837
+ TOGETHER_TOKEN: {
91838
+ label: "API Key",
91839
+ required: true,
91840
+ placeholder: "c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ff"
91841
+ }
91842
+ }
91843
+ }
91844
+ },
91845
+ defaultAuthMethod: "api-token"
91846
+ },
91621
91847
  twenty: {
91622
91848
  label: "Twenty",
91623
91849
  environmentMapping: {
@@ -91878,6 +92104,48 @@ var CONNECTOR_TYPES_DEF = {
91878
92104
  },
91879
92105
  defaultAuthMethod: "api-token"
91880
92106
  },
92107
+ luma: {
92108
+ label: "Luma AI",
92109
+ environmentMapping: {
92110
+ LUMA_TOKEN: "$secrets.LUMA_TOKEN"
92111
+ },
92112
+ helpText: "Connect your Luma AI account to generate videos and images using the Dream Machine API",
92113
+ authMethods: {
92114
+ "api-token": {
92115
+ label: "API Key",
92116
+ helpText: "1. Sign up at [lumalabs.ai](https://lumalabs.ai)\n2. Go to [lumalabs.ai/dream-machine/api](https://lumalabs.ai/dream-machine/api) or account settings \u2192 API Keys\n3. Create a new API key and copy it\n4. Paste the key here",
92117
+ secrets: {
92118
+ LUMA_TOKEN: {
92119
+ label: "API Key",
92120
+ required: true,
92121
+ placeholder: "your-luma-api-key"
92122
+ }
92123
+ }
92124
+ }
92125
+ },
92126
+ defaultAuthMethod: "api-token"
92127
+ },
92128
+ langsmith: {
92129
+ label: "LangSmith",
92130
+ helpText: "Connect to LangSmith for LLM tracing, evaluation, and dataset management.",
92131
+ environmentMapping: {
92132
+ LANGSMITH_TOKEN: "$secrets.LANGSMITH_TOKEN"
92133
+ },
92134
+ authMethods: {
92135
+ "api-token": {
92136
+ label: "API Key",
92137
+ helpText: "Go to [smith.langchain.com](https://smith.langchain.com) \u2192 Settings \u2192 API Keys \u2192 Create API Key.",
92138
+ secrets: {
92139
+ LANGSMITH_TOKEN: {
92140
+ label: "API Key",
92141
+ required: true,
92142
+ placeholder: "lsv2_pt_..."
92143
+ }
92144
+ }
92145
+ }
92146
+ },
92147
+ defaultAuthMethod: "api-token"
92148
+ },
91881
92149
  mailsac: {
91882
92150
  label: "Mailsac",
91883
92151
  environmentMapping: {
@@ -92518,6 +92786,103 @@ var CONNECTOR_TYPES_DEF = {
92518
92786
  "webinar:read:webinar"
92519
92787
  ]
92520
92788
  }
92789
+ },
92790
+ groq: {
92791
+ label: "Groq",
92792
+ tags: ["llm", "ai", "llama", "inference"],
92793
+ environmentMapping: {
92794
+ GROQ_TOKEN: "$secrets.GROQ_TOKEN"
92795
+ },
92796
+ helpText: "Connect your Groq account to run ultra-fast LLM inference on open-weight models (Llama, Mixtral, Gemma) and Whisper audio transcription using Groq's LPU hardware",
92797
+ authMethods: {
92798
+ "api-token": {
92799
+ label: "API Key",
92800
+ helpText: "1. Sign up at [console.groq.com](https://console.groq.com)\n2. Click **API Keys** in the left sidebar\n3. Click **Create API Key**, name it, and copy it immediately \u2014 it is shown only once\n4. Paste it here. Free tier available; the key is org-bound.",
92801
+ secrets: {
92802
+ GROQ_TOKEN: {
92803
+ label: "API Key",
92804
+ required: true,
92805
+ placeholder: "gsk_..."
92806
+ }
92807
+ }
92808
+ }
92809
+ },
92810
+ defaultAuthMethod: "api-token"
92811
+ },
92812
+ langfuse: {
92813
+ label: "Langfuse",
92814
+ tags: ["observability", "tracing", "llm", "analytics"],
92815
+ environmentMapping: {
92816
+ LANGFUSE_PUBLIC_KEY: "$secrets.LANGFUSE_PUBLIC_KEY",
92817
+ LANGFUSE_SECRET_KEY: "$secrets.LANGFUSE_SECRET_KEY"
92818
+ },
92819
+ helpText: "Connect your Langfuse project to ingest LLM traces, attach evaluate scores, and manage prompt templates",
92820
+ authMethods: {
92821
+ "api-token": {
92822
+ label: "API Keys",
92823
+ helpText: "1. Sign up at [cloud.langfuse.com](https://cloud.langfuse.com)\n2. Create an organization and a project\n3. In project **Settings \u2192 API Keys**, click **Create new API keys**\n4. Copy both the **Public Key** (`pk-lf-...`) and the **Secret Key** (`sk-lf-...`) \u2014 the secret is shown only once\n5. Paste both values into the fields below",
92824
+ secrets: {
92825
+ LANGFUSE_PUBLIC_KEY: {
92826
+ label: "Public Key",
92827
+ required: true,
92828
+ placeholder: "pk-lf-..."
92829
+ },
92830
+ LANGFUSE_SECRET_KEY: {
92831
+ label: "Secret Key",
92832
+ required: true,
92833
+ placeholder: "sk-lf-..."
92834
+ }
92835
+ }
92836
+ }
92837
+ },
92838
+ defaultAuthMethod: "api-token"
92839
+ },
92840
+ n8n: {
92841
+ label: "n8n",
92842
+ helpText: "Connect your n8n instance to manage workflows, trigger executions, and automate processes",
92843
+ environmentMapping: {
92844
+ N8N_TOKEN: "$secrets.N8N_TOKEN",
92845
+ N8N_BASE_URL: "$vars.N8N_BASE_URL"
92846
+ },
92847
+ authMethods: {
92848
+ "api-token": {
92849
+ label: "API Key",
92850
+ helpText: "1. Open your n8n instance\n2. Go to **Settings** \u2192 **n8n API**\n3. Click **Create an API key**\n4. Copy the key and paste it below\n5. Set your instance URL (e.g. `https://your-instance.app.n8n.cloud`)",
92851
+ secrets: {
92852
+ N8N_TOKEN: {
92853
+ label: "API Key",
92854
+ required: true,
92855
+ placeholder: "n8n_api_CoffeeSafeLocalCoffeeSafeLocalCo"
92856
+ },
92857
+ N8N_BASE_URL: {
92858
+ label: "Instance URL",
92859
+ required: true,
92860
+ type: "variable",
92861
+ placeholder: "https://your-instance.app.n8n.cloud"
92862
+ }
92863
+ }
92864
+ }
92865
+ },
92866
+ defaultAuthMethod: "api-token"
92867
+ },
92868
+ wandb: {
92869
+ label: "Weights & Biases",
92870
+ helpText: "Connect to Weights & Biases for ML experiment tracking and LLM observability.",
92871
+ environmentMapping: { WANDB_TOKEN: "$secrets.WANDB_TOKEN" },
92872
+ authMethods: {
92873
+ "api-token": {
92874
+ label: "API Key",
92875
+ helpText: "Go to wandb.ai \u2192 Settings \u2192 API Keys \u2192 copy your key.",
92876
+ secrets: {
92877
+ WANDB_TOKEN: {
92878
+ label: "API Key",
92879
+ required: true,
92880
+ placeholder: "Your W&B API Key"
92881
+ }
92882
+ }
92883
+ }
92884
+ },
92885
+ defaultAuthMethod: "api-token"
92521
92886
  }
92522
92887
  };
92523
92888
  var CONNECTOR_TYPES = CONNECTOR_TYPES_DEF;
@@ -97514,6 +97879,27 @@ var duffelFirewall = {
97514
97879
  ]
97515
97880
  };
97516
97881
 
97882
+ // ../../packages/core/src/firewalls/e2b.generated.ts
97883
+ init_esm_shims();
97884
+ var e2bFirewall = {
97885
+ name: "e2b",
97886
+ description: "E2B",
97887
+ placeholders: {
97888
+ E2B_TOKEN: "e2b_CoffeeSafeLocalCoffeeSafeLocalCoffee"
97889
+ },
97890
+ apis: [
97891
+ {
97892
+ base: "https://api.e2b.app",
97893
+ auth: {
97894
+ headers: {
97895
+ "X-API-Key": "${{ secrets.E2B_TOKEN }}"
97896
+ }
97897
+ },
97898
+ permissions: []
97899
+ }
97900
+ ]
97901
+ };
97902
+
97517
97903
  // ../../packages/core/src/firewalls/elevenlabs.generated.ts
97518
97904
  init_esm_shims();
97519
97905
  var elevenlabsFirewall = {
@@ -97535,6 +97921,27 @@ var elevenlabsFirewall = {
97535
97921
  ]
97536
97922
  };
97537
97923
 
97924
+ // ../../packages/core/src/firewalls/exa.generated.ts
97925
+ init_esm_shims();
97926
+ var exaFirewall = {
97927
+ name: "exa",
97928
+ description: "Exa",
97929
+ placeholders: {
97930
+ EXA_TOKEN: "exa_CoffeeSafeLocalCoffeeSafeLocalCof"
97931
+ },
97932
+ apis: [
97933
+ {
97934
+ base: "https://api.exa.ai",
97935
+ auth: {
97936
+ headers: {
97937
+ "x-api-key": "${{ secrets.EXA_TOKEN }}"
97938
+ }
97939
+ },
97940
+ permissions: []
97941
+ }
97942
+ ]
97943
+ };
97944
+
97538
97945
  // ../../packages/core/src/firewalls/explorium.generated.ts
97539
97946
  init_esm_shims();
97540
97947
  var exploriumFirewall = {
@@ -99343,6 +99750,27 @@ var greenhouseFirewall = {
99343
99750
  ]
99344
99751
  };
99345
99752
 
99753
+ // ../../packages/core/src/firewalls/groq.generated.ts
99754
+ init_esm_shims();
99755
+ var groqFirewall = {
99756
+ name: "groq",
99757
+ description: "Groq",
99758
+ placeholders: {
99759
+ GROQ_TOKEN: "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"
99760
+ },
99761
+ apis: [
99762
+ {
99763
+ base: "https://api.groq.com",
99764
+ auth: {
99765
+ headers: {
99766
+ Authorization: "Bearer ${{ secrets.GROQ_TOKEN }}"
99767
+ }
99768
+ },
99769
+ permissions: []
99770
+ }
99771
+ ]
99772
+ };
99773
+
99346
99774
  // ../../packages/core/src/firewalls/heygen.generated.ts
99347
99775
  init_esm_shims();
99348
99776
  var heygenFirewall = {
@@ -99364,6 +99792,27 @@ var heygenFirewall = {
99364
99792
  ]
99365
99793
  };
99366
99794
 
99795
+ // ../../packages/core/src/firewalls/helicone.generated.ts
99796
+ init_esm_shims();
99797
+ var heliconeFirewall = {
99798
+ name: "helicone",
99799
+ description: "Helicone",
99800
+ placeholders: {
99801
+ HELICONE_TOKEN: "sk-helicone-c0ffee5a-fe10-ca1c-0ffe-e5afe10ca1c0"
99802
+ },
99803
+ apis: [
99804
+ {
99805
+ base: "https://api.helicone.ai",
99806
+ auth: {
99807
+ headers: {
99808
+ Authorization: "Bearer ${{ secrets.HELICONE_TOKEN }}"
99809
+ }
99810
+ },
99811
+ permissions: []
99812
+ }
99813
+ ]
99814
+ };
99815
+
99367
99816
  // ../../packages/core/src/firewalls/htmlcsstoimage.generated.ts
99368
99817
  init_esm_shims();
99369
99818
  var htmlcsstoimageFirewall = {
@@ -99733,6 +100182,58 @@ var larkFirewall = {
99733
100182
  ]
99734
100183
  };
99735
100184
 
100185
+ // ../../packages/core/src/firewalls/langfuse.generated.ts
100186
+ init_esm_shims();
100187
+ var langfuseFirewall = {
100188
+ name: "langfuse",
100189
+ description: "Langfuse LLM observability and tracing API",
100190
+ placeholders: {
100191
+ LANGFUSE_PUBLIC_KEY: "pk-lf-c0ffee5a-fe10-ca1c-0ffe-e5afe10ca1c0",
100192
+ LANGFUSE_SECRET_KEY: "sk-lf-5afe10ca-1c0f-feec-0ffe-e5afe10ca1c0"
100193
+ },
100194
+ apis: [
100195
+ {
100196
+ base: "https://cloud.langfuse.com",
100197
+ auth: {
100198
+ headers: {
100199
+ Authorization: "${{ basic(secrets.LANGFUSE_PUBLIC_KEY, secrets.LANGFUSE_SECRET_KEY) }}"
100200
+ }
100201
+ },
100202
+ permissions: []
100203
+ },
100204
+ {
100205
+ base: "https://us.cloud.langfuse.com",
100206
+ auth: {
100207
+ headers: {
100208
+ Authorization: "${{ basic(secrets.LANGFUSE_PUBLIC_KEY, secrets.LANGFUSE_SECRET_KEY) }}"
100209
+ }
100210
+ },
100211
+ permissions: []
100212
+ }
100213
+ ]
100214
+ };
100215
+
100216
+ // ../../packages/core/src/firewalls/langsmith.generated.ts
100217
+ init_esm_shims();
100218
+ var langsmithFirewall = {
100219
+ name: "langsmith",
100220
+ description: "LangSmith",
100221
+ placeholders: {
100222
+ LANGSMITH_TOKEN: "lsv2_pt_c0ffeesafe10ca1c0ffeesafe10ca1c0_ffee5afe"
100223
+ },
100224
+ apis: [
100225
+ {
100226
+ base: "https://api.smith.langchain.com",
100227
+ auth: {
100228
+ headers: {
100229
+ "X-Api-Key": "${{ secrets.LANGSMITH_TOKEN }}"
100230
+ }
100231
+ },
100232
+ permissions: []
100233
+ }
100234
+ ]
100235
+ };
100236
+
99736
100237
  // ../../packages/core/src/firewalls/line.generated.ts
99737
100238
  init_esm_shims();
99738
100239
  var lineFirewall = {
@@ -99796,6 +100297,27 @@ var loopsFirewall = {
99796
100297
  ]
99797
100298
  };
99798
100299
 
100300
+ // ../../packages/core/src/firewalls/luma.generated.ts
100301
+ init_esm_shims();
100302
+ var lumaFirewall = {
100303
+ name: "luma",
100304
+ description: "Luma AI Dream Machine",
100305
+ placeholders: {
100306
+ LUMA_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalC"
100307
+ },
100308
+ apis: [
100309
+ {
100310
+ base: "https://api.lumalabs.ai",
100311
+ auth: {
100312
+ headers: {
100313
+ Authorization: "Bearer ${{ secrets.LUMA_TOKEN }}"
100314
+ }
100315
+ },
100316
+ permissions: []
100317
+ }
100318
+ ]
100319
+ };
100320
+
99799
100321
  // ../../packages/core/src/firewalls/mailchimp.generated.ts
99800
100322
  init_esm_shims();
99801
100323
  var mailchimpFirewall = {
@@ -99934,6 +100456,27 @@ var manusFirewall = {
99934
100456
  ]
99935
100457
  };
99936
100458
 
100459
+ // ../../packages/core/src/firewalls/mem0.generated.ts
100460
+ init_esm_shims();
100461
+ var mem0Firewall = {
100462
+ name: "mem0",
100463
+ description: "Mem0",
100464
+ placeholders: {
100465
+ MEM0_TOKEN: "m0-CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocal"
100466
+ },
100467
+ apis: [
100468
+ {
100469
+ base: "https://api.mem0.ai",
100470
+ auth: {
100471
+ headers: {
100472
+ Authorization: "Token ${{ secrets.MEM0_TOKEN }}"
100473
+ }
100474
+ },
100475
+ permissions: []
100476
+ }
100477
+ ]
100478
+ };
100479
+
99937
100480
  // ../../packages/core/src/firewalls/mercury.generated.ts
99938
100481
  init_esm_shims();
99939
100482
  var mercuryFirewall = {
@@ -100121,6 +100664,27 @@ var msg9Firewall = {
100121
100664
  ]
100122
100665
  };
100123
100666
 
100667
+ // ../../packages/core/src/firewalls/n8n.generated.ts
100668
+ init_esm_shims();
100669
+ var n8nFirewall = {
100670
+ name: "n8n",
100671
+ description: "n8n REST API",
100672
+ placeholders: {
100673
+ N8N_TOKEN: "n8n_api_CoffeeSafeLocalCoffeeSafeLocalCo"
100674
+ },
100675
+ apis: [
100676
+ {
100677
+ base: "${{ vars.N8N_BASE_URL }}/api/v1",
100678
+ auth: {
100679
+ headers: {
100680
+ "X-N8N-API-KEY": "${{ secrets.N8N_TOKEN }}"
100681
+ }
100682
+ },
100683
+ permissions: []
100684
+ }
100685
+ ]
100686
+ };
100687
+
100124
100688
  // ../../packages/core/src/firewalls/neon.generated.ts
100125
100689
  init_esm_shims();
100126
100690
  var neonFirewall = {
@@ -100367,6 +100931,27 @@ var pdfcoFirewall = {
100367
100931
  ]
100368
100932
  };
100369
100933
 
100934
+ // ../../packages/core/src/firewalls/pinecone.generated.ts
100935
+ init_esm_shims();
100936
+ var pineconeFirewall = {
100937
+ name: "pinecone",
100938
+ description: "Pinecone",
100939
+ placeholders: {
100940
+ PINECONE_TOKEN: "pcsk_CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSa"
100941
+ },
100942
+ apis: [
100943
+ {
100944
+ base: "https://api.pinecone.io",
100945
+ auth: {
100946
+ headers: {
100947
+ "Api-Key": "${{ secrets.PINECONE_TOKEN }}"
100948
+ }
100949
+ },
100950
+ permissions: []
100951
+ }
100952
+ ]
100953
+ };
100954
+
100370
100955
  // ../../packages/core/src/firewalls/pdforge.generated.ts
100371
100956
  init_esm_shims();
100372
100957
  var pdforgeFirewall = {
@@ -100409,6 +100994,27 @@ var perplexityFirewall = {
100409
100994
  ]
100410
100995
  };
100411
100996
 
100997
+ // ../../packages/core/src/firewalls/pipedrive.generated.ts
100998
+ init_esm_shims();
100999
+ var pipedriveFirewall = {
101000
+ name: "pipedrive",
101001
+ description: "Pipedrive",
101002
+ placeholders: {
101003
+ PIPEDRIVE_TOKEN: "c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe"
101004
+ },
101005
+ apis: [
101006
+ {
101007
+ base: "https://api.pipedrive.com",
101008
+ auth: {
101009
+ headers: {
101010
+ "x-api-token": "${{ secrets.PIPEDRIVE_TOKEN }}"
101011
+ }
101012
+ },
101013
+ permissions: []
101014
+ }
101015
+ ]
101016
+ };
101017
+
100412
101018
  // ../../packages/core/src/firewalls/plain.generated.ts
100413
101019
  init_esm_shims();
100414
101020
  var plainFirewall = {
@@ -100649,6 +101255,27 @@ var reporteiFirewall = {
100649
101255
  ]
100650
101256
  };
100651
101257
 
101258
+ // ../../packages/core/src/firewalls/replicate.generated.ts
101259
+ init_esm_shims();
101260
+ var replicateFirewall = {
101261
+ name: "replicate",
101262
+ description: "Replicate",
101263
+ placeholders: {
101264
+ REPLICATE_TOKEN: "r8_CoffeeSafeLocalCoffeeSafeLocalCoffee"
101265
+ },
101266
+ apis: [
101267
+ {
101268
+ base: "https://api.replicate.com",
101269
+ auth: {
101270
+ headers: {
101271
+ Authorization: "Bearer ${{ secrets.REPLICATE_TOKEN }}"
101272
+ }
101273
+ },
101274
+ permissions: []
101275
+ }
101276
+ ]
101277
+ };
101278
+
100652
101279
  // ../../packages/core/src/firewalls/resend.generated.ts
100653
101280
  init_esm_shims();
100654
101281
  var resendFirewall = {
@@ -101515,6 +102142,27 @@ var shortioFirewall = {
101515
102142
  ]
101516
102143
  };
101517
102144
 
102145
+ // ../../packages/core/src/firewalls/stability-ai.generated.ts
102146
+ init_esm_shims();
102147
+ var stabilityAiFirewall = {
102148
+ name: "stability-ai",
102149
+ description: "Stability AI",
102150
+ placeholders: {
102151
+ STABILITY_TOKEN: "sk-CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocal"
102152
+ },
102153
+ apis: [
102154
+ {
102155
+ base: "https://api.stability.ai",
102156
+ auth: {
102157
+ headers: {
102158
+ Authorization: "Bearer ${{ secrets.STABILITY_TOKEN }}"
102159
+ }
102160
+ },
102161
+ permissions: []
102162
+ }
102163
+ ]
102164
+ };
102165
+
101518
102166
  // ../../packages/core/src/firewalls/similarweb.generated.ts
101519
102167
  init_esm_shims();
101520
102168
  var similarwebFirewall = {
@@ -101878,6 +102526,27 @@ var todoistFirewall = {
101878
102526
  ]
101879
102527
  };
101880
102528
 
102529
+ // ../../packages/core/src/firewalls/together.generated.ts
102530
+ init_esm_shims();
102531
+ var togetherFirewall = {
102532
+ name: "together",
102533
+ description: "Together AI",
102534
+ placeholders: {
102535
+ TOGETHER_TOKEN: "c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe10ca1c0ff"
102536
+ },
102537
+ apis: [
102538
+ {
102539
+ base: "https://api.together.ai",
102540
+ auth: {
102541
+ headers: {
102542
+ Authorization: "Bearer ${{ secrets.TOGETHER_TOKEN }}"
102543
+ }
102544
+ },
102545
+ permissions: []
102546
+ }
102547
+ ]
102548
+ };
102549
+
101881
102550
  // ../../packages/core/src/firewalls/twenty.generated.ts
101882
102551
  init_esm_shims();
101883
102552
  var twentyFirewall = {
@@ -101941,6 +102610,27 @@ var v0Firewall = {
101941
102610
  ]
101942
102611
  };
101943
102612
 
102613
+ // ../../packages/core/src/firewalls/wandb.generated.ts
102614
+ init_esm_shims();
102615
+ var wandbFirewall = {
102616
+ name: "wandb",
102617
+ description: "Weights & Biases",
102618
+ placeholders: {
102619
+ WANDB_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafe"
102620
+ },
102621
+ apis: [
102622
+ {
102623
+ base: "https://api.wandb.ai",
102624
+ auth: {
102625
+ headers: {
102626
+ Authorization: "Bearer ${{ secrets.WANDB_TOKEN }}"
102627
+ }
102628
+ },
102629
+ permissions: []
102630
+ }
102631
+ ]
102632
+ };
102633
+
101944
102634
  // ../../packages/core/src/firewalls/webflow.generated.ts
101945
102635
  init_esm_shims();
101946
102636
  var webflowFirewall = {
@@ -101983,6 +102673,27 @@ var wixFirewall = {
101983
102673
  ]
101984
102674
  };
101985
102675
 
102676
+ // ../../packages/core/src/firewalls/workos.generated.ts
102677
+ init_esm_shims();
102678
+ var workosFirewall = {
102679
+ name: "workos",
102680
+ description: "WorkOS",
102681
+ placeholders: {
102682
+ WORKOS_TOKEN: "sk_live_CoffeeSafeLocalCoffeeSafeLocalCoffee"
102683
+ },
102684
+ apis: [
102685
+ {
102686
+ base: "https://api.workos.com",
102687
+ auth: {
102688
+ headers: {
102689
+ Authorization: "Bearer ${{ secrets.WORKOS_TOKEN }}"
102690
+ }
102691
+ },
102692
+ permissions: []
102693
+ }
102694
+ ]
102695
+ };
102696
+
101986
102697
  // ../../packages/core/src/firewalls/wrike.generated.ts
101987
102698
  init_esm_shims();
101988
102699
  var wrikeFirewall = {
@@ -103740,6 +104451,27 @@ var zendeskFirewall = {
103740
104451
  ]
103741
104452
  };
103742
104453
 
104454
+ // ../../packages/core/src/firewalls/zep.generated.ts
104455
+ init_esm_shims();
104456
+ var zepFirewall = {
104457
+ name: "zep",
104458
+ description: "Zep",
104459
+ placeholders: {
104460
+ ZEP_TOKEN: "z_CoffeeSafeLocalCoffeeSafeLocalCo"
104461
+ },
104462
+ apis: [
104463
+ {
104464
+ base: "https://api.getzep.com",
104465
+ auth: {
104466
+ headers: {
104467
+ Authorization: "Api-Key ${{ secrets.ZEP_TOKEN }}"
104468
+ }
104469
+ },
104470
+ permissions: []
104471
+ }
104472
+ ]
104473
+ };
104474
+
103743
104475
  // ../../packages/core/src/firewalls/zeptomail.generated.ts
103744
104476
  init_esm_shims();
103745
104477
  var zeptomailFirewall = {
@@ -103828,7 +104560,9 @@ var CONNECTOR_FIREWALLS = {
103828
104560
  dropbox: dropboxFirewall,
103829
104561
  "dropbox-sign": dropboxSignFirewall,
103830
104562
  duffel: duffelFirewall,
104563
+ e2b: e2bFirewall,
103831
104564
  elevenlabs: elevenlabsFirewall,
104565
+ exa: exaFirewall,
103832
104566
  explorium: exploriumFirewall,
103833
104567
  fal: falFirewall,
103834
104568
  figma: figmaFirewall,
@@ -103847,7 +104581,9 @@ var CONNECTOR_FIREWALLS = {
103847
104581
  "google-sheets": googleSheetsFirewall,
103848
104582
  granola: granolaFirewall,
103849
104583
  greenhouse: greenhouseFirewall,
104584
+ groq: groqFirewall,
103850
104585
  heygen: heygenFirewall,
104586
+ helicone: heliconeFirewall,
103851
104587
  htmlcsstoimage: htmlcsstoimageFirewall,
103852
104588
  hubspot: hubspotFirewall,
103853
104589
  "hugging-face": huggingFaceFirewall,
@@ -103863,13 +104599,17 @@ var CONNECTOR_FIREWALLS = {
103863
104599
  klaviyo: klaviyoFirewall,
103864
104600
  kommo: kommoFirewall,
103865
104601
  lark: larkFirewall,
104602
+ langfuse: langfuseFirewall,
104603
+ langsmith: langsmithFirewall,
103866
104604
  line: lineFirewall,
103867
104605
  linear: linearFirewall,
103868
104606
  loops: loopsFirewall,
104607
+ luma: lumaFirewall,
103869
104608
  mailchimp: mailchimpFirewall,
103870
104609
  make: makeFirewall,
103871
104610
  mailsac: mailsacFirewall,
103872
104611
  manus: manusFirewall,
104612
+ mem0: mem0Firewall,
103873
104613
  mercury: mercuryFirewall,
103874
104614
  metabase: metabaseFirewall,
103875
104615
  "meta-ads": metaAdsFirewall,
@@ -103878,6 +104618,7 @@ var CONNECTOR_FIREWALLS = {
103878
104618
  mixpanel: mixpanelFirewall,
103879
104619
  monday: mondayFirewall,
103880
104620
  msg9: msg9Firewall,
104621
+ n8n: n8nFirewall,
103881
104622
  neon: neonFirewall,
103882
104623
  notion: notionFirewall,
103883
104624
  openai: openaiFirewall,
@@ -103886,8 +104627,10 @@ var CONNECTOR_FIREWALLS = {
103886
104627
  pandadoc: pandadocFirewall,
103887
104628
  pdf4me: pdf4meFirewall,
103888
104629
  pdfco: pdfcoFirewall,
104630
+ pinecone: pineconeFirewall,
103889
104631
  pdforge: pdforgeFirewall,
103890
104632
  perplexity: perplexityFirewall,
104633
+ pipedrive: pipedriveFirewall,
103891
104634
  plain: plainFirewall,
103892
104635
  plausible: plausibleFirewall,
103893
104636
  podchaser: podchaserFirewall,
@@ -103899,6 +104642,7 @@ var CONNECTOR_FIREWALLS = {
103899
104642
  qiita: qiitaFirewall,
103900
104643
  reddit: redditFirewall,
103901
104644
  reportei: reporteiFirewall,
104645
+ replicate: replicateFirewall,
103902
104646
  resend: resendFirewall,
103903
104647
  revenuecat: revenuecatFirewall,
103904
104648
  runway: runwayFirewall,
@@ -103908,6 +104652,7 @@ var CONNECTOR_FIREWALLS = {
103908
104652
  serpapi: serpapiFirewall,
103909
104653
  shopify: shopifyFirewall,
103910
104654
  shortio: shortioFirewall,
104655
+ "stability-ai": stabilityAiFirewall,
103911
104656
  similarweb: similarwebFirewall,
103912
104657
  slack: slackFirewall,
103913
104658
  "slack-webhook": slackWebhookFirewall,
@@ -103922,12 +104667,15 @@ var CONNECTOR_FIREWALLS = {
103922
104667
  "test-oauth": testOauthFirewall,
103923
104668
  tldv: tldvFirewall,
103924
104669
  todoist: todoistFirewall,
104670
+ together: togetherFirewall,
103925
104671
  twenty: twentyFirewall,
103926
104672
  typeform: typeformFirewall,
103927
104673
  v0: v0Firewall,
103928
104674
  vercel: vercelFirewall,
104675
+ wandb: wandbFirewall,
103929
104676
  webflow: webflowFirewall,
103930
104677
  wix: wixFirewall,
104678
+ workos: workosFirewall,
103931
104679
  wrike: wrikeFirewall,
103932
104680
  x: xFirewall,
103933
104681
  xero: xeroFirewall,
@@ -103935,6 +104683,7 @@ var CONNECTOR_FIREWALLS = {
103935
104683
  zapier: zapierFirewall,
103936
104684
  zapsign: zapsignFirewall,
103937
104685
  zendesk: zendeskFirewall,
104686
+ zep: zepFirewall,
103938
104687
  zeptomail: zeptomailFirewall,
103939
104688
  zoom: zoomFirewall
103940
104689
  };
@@ -104014,6 +104763,9 @@ function resolveFirewallPolicies(stored, connectors) {
104014
104763
  // ../../packages/core/src/index.ts
104015
104764
  init_esm_shims();
104016
104765
 
104766
+ // ../../packages/core/src/usage-source-bucket.ts
104767
+ init_esm_shims();
104768
+
104017
104769
  // ../../packages/core/src/contracts/index.ts
104018
104770
  init_esm_shims();
104019
104771
 
@@ -110268,7 +111020,7 @@ var setVariableRequestSchema = external_exports.object({
110268
111020
  // ../../packages/core/src/contracts/model-providers.ts
110269
111021
  init_esm_shims();
110270
111022
  var VM0_MODEL_TO_PROVIDER = {
110271
- "claude-sonnet-4-6": {
111023
+ "claude-opus-4-7": {
110272
111024
  concreteType: "anthropic-api-key",
110273
111025
  vendor: "anthropic"
110274
111026
  },
@@ -110276,20 +111028,24 @@ var VM0_MODEL_TO_PROVIDER = {
110276
111028
  concreteType: "anthropic-api-key",
110277
111029
  vendor: "anthropic"
110278
111030
  },
110279
- "claude-opus-4-7": {
111031
+ "claude-sonnet-4-6": {
110280
111032
  concreteType: "anthropic-api-key",
110281
111033
  vendor: "anthropic"
110282
111034
  },
110283
- "kimi-k2.5": {
110284
- concreteType: "moonshot-api-key",
110285
- vendor: "moonshot",
110286
- featureFlag: "vm0KimiModel" /* Vm0KimiModel */
110287
- },
110288
111035
  "glm-5.1": {
110289
111036
  concreteType: "zai-api-key",
110290
111037
  vendor: "zai",
110291
111038
  featureFlag: "vm0GlmModel" /* Vm0GlmModel */
110292
111039
  },
111040
+ "claude-haiku-4-5": {
111041
+ concreteType: "anthropic-api-key",
111042
+ vendor: "anthropic"
111043
+ },
111044
+ "kimi-k2.5": {
111045
+ concreteType: "moonshot-api-key",
111046
+ vendor: "moonshot",
111047
+ featureFlag: "vm0KimiModel" /* Vm0KimiModel */
111048
+ },
110293
111049
  "MiniMax-M2.7": {
110294
111050
  concreteType: "minimax-api-key",
110295
111051
  vendor: "minimax",
@@ -110317,7 +111073,7 @@ var MODEL_PROVIDER_TYPES = {
110317
111073
  "anthropic-api-key": {
110318
111074
  framework: "claude-code",
110319
111075
  secretName: "ANTHROPIC_API_KEY",
110320
- label: "Anthropic API Key",
111076
+ label: "Anthropic",
110321
111077
  secretLabel: "API key",
110322
111078
  helpText: "Get your API key at: https://console.anthropic.com/settings/keys",
110323
111079
  environmentMapping: {
@@ -110909,11 +111665,30 @@ var chatThreadDetailSchema = external_exports.object({
110909
111665
  agentId: external_exports.string(),
110910
111666
  chatMessages: external_exports.array(storedChatMessageSchema),
110911
111667
  latestSessionId: external_exports.string().nullable(),
111668
+ /**
111669
+ * Provider type of the latest run in this thread, if any. Used by the
111670
+ * composer's model picker to disable options whose base URL differs from
111671
+ * the current session — switching mid-session would break continuity.
111672
+ * Null when the thread has no runs yet. Optional so older fixtures/tests
111673
+ * that predate the field still validate.
111674
+ */
111675
+ latestSessionProviderType: modelProviderTypeSchema.nullable().optional(),
110912
111676
  activeRunIds: external_exports.array(external_exports.string()),
110913
111677
  createdAt: external_exports.string(),
110914
111678
  updatedAt: external_exports.string(),
110915
111679
  draftContent: external_exports.string().nullable().optional(),
110916
- draftAttachments: external_exports.array(persistedAttachmentSchema).nullable().optional()
111680
+ draftAttachments: external_exports.array(persistedAttachmentSchema).nullable().optional(),
111681
+ /**
111682
+ * Per-thread model override. Both fields set together or both null.
111683
+ * When set, the send route uses this combination (overriding the agent
111684
+ * and org defaults) for the next run. Optional for back-compat.
111685
+ */
111686
+ modelProviderId: external_exports.string().nullable().optional(),
111687
+ selectedModel: external_exports.string().nullable().optional()
111688
+ });
111689
+ var modelSelectionRequestSchema = external_exports.object({
111690
+ modelProviderId: external_exports.string().uuid(),
111691
+ selectedModel: external_exports.string().min(1)
110917
111692
  });
110918
111693
  var chatThreadsContract = c11.router({
110919
111694
  create: {
@@ -111027,6 +111802,13 @@ var chatMessagesContract = c11.router({
111027
111802
  prompt: external_exports.string().min(1),
111028
111803
  threadId: external_exports.string().optional(),
111029
111804
  modelProvider: external_exports.string().optional(),
111805
+ /**
111806
+ * Per-run model override; persisted on the thread so subsequent runs
111807
+ * inherit the same choice. `undefined` = leave current thread override
111808
+ * untouched (backward-compat for older clients). `null` = clear the
111809
+ * thread override and fall back to agent/org defaults.
111810
+ */
111811
+ modelSelection: modelSelectionRequestSchema.nullable().optional(),
111030
111812
  // Optional for backward compatibility: older clients that omit this field
111031
111813
  // still trigger title generation (server guards with !== false, not === true).
111032
111814
  hasTextContent: external_exports.boolean().optional(),
@@ -111824,6 +112606,7 @@ var zeroAgentsByIdContract = c17.router({
111824
112606
  body: zeroAgentMetadataRequestSchema,
111825
112607
  responses: {
111826
112608
  200: zeroAgentResponseSchema,
112609
+ 400: apiErrorSchema,
111827
112610
  401: apiErrorSchema,
111828
112611
  403: apiErrorSchema,
111829
112612
  404: apiErrorSchema
@@ -113660,47 +114443,6 @@ var zeroUsageMembersContract = c33.router({
113660
114443
  // ../../packages/core/src/contracts/zero-usage-daily.ts
113661
114444
  init_esm_shims();
113662
114445
  var c34 = initContract();
113663
- var dailyCreditSchema = external_exports.object({
113664
- date: external_exports.string(),
113665
- creditsCharged: external_exports.number()
113666
- });
113667
- var dailyCreditByMemberSchema = external_exports.object({
113668
- date: external_exports.string(),
113669
- members: external_exports.array(
113670
- external_exports.object({
113671
- userId: external_exports.string(),
113672
- email: external_exports.string(),
113673
- creditsCharged: external_exports.number()
113674
- })
113675
- )
113676
- });
113677
- var usageDailyResponseSchema = external_exports.object({
113678
- period: external_exports.object({
113679
- start: external_exports.string(),
113680
- end: external_exports.string()
113681
- }).nullable(),
113682
- daily: external_exports.array(dailyCreditSchema),
113683
- dailyByMember: external_exports.array(dailyCreditByMemberSchema)
113684
- });
113685
- var zeroUsageDailyContract = c34.router({
113686
- get: {
113687
- method: "GET",
113688
- path: "/api/zero/usage/daily",
113689
- headers: authHeadersSchema,
113690
- query: external_exports.object({
113691
- dateFrom: external_exports.string().optional(),
113692
- dateTo: external_exports.string().optional(),
113693
- mode: external_exports.enum(["total", "member"]).default("total")
113694
- }),
113695
- responses: {
113696
- 200: usageDailyResponseSchema,
113697
- 401: apiErrorSchema,
113698
- 403: apiErrorSchema,
113699
- 500: apiErrorSchema
113700
- },
113701
- summary: "Get daily credit usage for the org"
113702
- }
113703
- });
113704
114446
  var usageRunSchema = external_exports.object({
113705
114447
  runId: external_exports.string(),
113706
114448
  agentName: external_exports.string().nullable(),
@@ -113751,9 +114493,67 @@ var zeroUsageRunsContract = c34.router({
113751
114493
  }
113752
114494
  });
113753
114495
 
113754
- // ../../packages/core/src/contracts/zero-team.ts
114496
+ // ../../packages/core/src/contracts/zero-usage-insight.ts
113755
114497
  init_esm_shims();
113756
114498
  var c35 = initContract();
114499
+ var usageInsightBucketSchema = external_exports.object({
114500
+ ts: external_exports.string(),
114501
+ // ISO string for the bucket start
114502
+ series: external_exports.record(external_exports.string(), external_exports.number()),
114503
+ // { chat: 123, slack: 45, ... }
114504
+ tokens: external_exports.record(external_exports.string(), external_exports.number())
114505
+ // same keys, total token counts
114506
+ });
114507
+ var usageInsightScheduleRowSchema = external_exports.object({
114508
+ scheduleId: external_exports.string(),
114509
+ scheduleName: external_exports.string(),
114510
+ credits: external_exports.number(),
114511
+ tokens: external_exports.number()
114512
+ });
114513
+ var usageInsightChatRowSchema = external_exports.object({
114514
+ threadId: external_exports.string(),
114515
+ threadTitle: external_exports.string().nullable(),
114516
+ credits: external_exports.number(),
114517
+ tokens: external_exports.number()
114518
+ });
114519
+ var usageInsightResponseSchema = external_exports.object({
114520
+ buckets: external_exports.array(usageInsightBucketSchema),
114521
+ schedules: external_exports.array(usageInsightScheduleRowSchema),
114522
+ scheduleOtherCount: external_exports.number(),
114523
+ scheduleOtherCredits: external_exports.number(),
114524
+ chats: external_exports.array(usageInsightChatRowSchema),
114525
+ chatOtherCount: external_exports.number(),
114526
+ chatOtherCredits: external_exports.number(),
114527
+ emailCredits: external_exports.number(),
114528
+ emailTokens: external_exports.number(),
114529
+ slackCredits: external_exports.number(),
114530
+ slackTokens: external_exports.number(),
114531
+ grandTotalCredits: external_exports.number(),
114532
+ grandTotalTokens: external_exports.number()
114533
+ });
114534
+ var zeroUsageInsightContract = c35.router({
114535
+ get: {
114536
+ method: "GET",
114537
+ path: "/api/zero/usage/insight",
114538
+ headers: authHeadersSchema,
114539
+ query: external_exports.object({
114540
+ range: external_exports.enum(["24h", "7d", "28d"]),
114541
+ groupBy: external_exports.enum(["source", "agent"]),
114542
+ tz: external_exports.string()
114543
+ }),
114544
+ responses: {
114545
+ 200: usageInsightResponseSchema,
114546
+ 400: apiErrorSchema,
114547
+ 401: apiErrorSchema,
114548
+ 500: apiErrorSchema
114549
+ },
114550
+ summary: "Get personal usage insight for the signed-in user"
114551
+ }
114552
+ });
114553
+
114554
+ // ../../packages/core/src/contracts/zero-team.ts
114555
+ init_esm_shims();
114556
+ var c36 = initContract();
113757
114557
  var teamComposeItemSchema = external_exports.object({
113758
114558
  id: external_exports.string(),
113759
114559
  displayName: external_exports.string().nullable(),
@@ -113763,7 +114563,7 @@ var teamComposeItemSchema = external_exports.object({
113763
114563
  headVersionId: external_exports.string().nullable(),
113764
114564
  updatedAt: external_exports.string()
113765
114565
  });
113766
- var zeroTeamContract = c35.router({
114566
+ var zeroTeamContract = c36.router({
113767
114567
  list: {
113768
114568
  method: "GET",
113769
114569
  path: "/api/zero/team",
@@ -113780,7 +114580,7 @@ var zeroTeamContract = c35.router({
113780
114580
 
113781
114581
  // ../../packages/core/src/contracts/zero-integrations-slack.ts
113782
114582
  init_esm_shims();
113783
- var c36 = initContract();
114583
+ var c37 = initContract();
113784
114584
  var slackEnvironmentSchema = external_exports.object({
113785
114585
  requiredSecrets: external_exports.array(external_exports.string()),
113786
114586
  requiredVars: external_exports.array(external_exports.string()),
@@ -113802,7 +114602,7 @@ var slackOrgStatusSchema = external_exports.object({
113802
114602
  /** OAuth install URL for re-authorization (admin-only, when scopeMismatch). */
113803
114603
  reinstallUrl: external_exports.string().nullable().optional()
113804
114604
  });
113805
- var zeroIntegrationsSlackContract = c36.router({
114605
+ var zeroIntegrationsSlackContract = c37.router({
113806
114606
  getStatus: {
113807
114607
  method: "GET",
113808
114608
  path: "/api/zero/integrations/slack",
@@ -113817,7 +114617,7 @@ var zeroIntegrationsSlackContract = c36.router({
113817
114617
  method: "DELETE",
113818
114618
  path: "/api/zero/integrations/slack",
113819
114619
  headers: authHeadersSchema,
113820
- body: c36.noBody(),
114620
+ body: c37.noBody(),
113821
114621
  query: external_exports.object({
113822
114622
  action: external_exports.string().optional()
113823
114623
  }),
@@ -113833,7 +114633,7 @@ var zeroIntegrationsSlackContract = c36.router({
113833
114633
 
113834
114634
  // ../../packages/core/src/contracts/zero-slack-connect.ts
113835
114635
  init_esm_shims();
113836
- var c37 = initContract();
114636
+ var c38 = initContract();
113837
114637
  var slackConnectStatusSchema = external_exports.object({
113838
114638
  isConnected: external_exports.boolean(),
113839
114639
  isAdmin: external_exports.boolean(),
@@ -113845,7 +114645,7 @@ var slackConnectResponseSchema = external_exports.object({
113845
114645
  connectionId: external_exports.string(),
113846
114646
  role: external_exports.string()
113847
114647
  });
113848
- var zeroSlackConnectContract = c37.router({
114648
+ var zeroSlackConnectContract = c38.router({
113849
114649
  getStatus: {
113850
114650
  method: "GET",
113851
114651
  path: "/api/zero/integrations/slack/connect",
@@ -113879,12 +114679,12 @@ var zeroSlackConnectContract = c37.router({
113879
114679
 
113880
114680
  // ../../packages/core/src/contracts/zero-slack-channels.ts
113881
114681
  init_esm_shims();
113882
- var c38 = initContract();
114682
+ var c39 = initContract();
113883
114683
  var slackChannelSchema = external_exports.object({
113884
114684
  id: external_exports.string(),
113885
114685
  name: external_exports.string()
113886
114686
  });
113887
- var zeroSlackChannelsContract = c38.router({
114687
+ var zeroSlackChannelsContract = c39.router({
113888
114688
  list: {
113889
114689
  method: "GET",
113890
114690
  path: "/api/zero/slack/channels",
@@ -113900,12 +114700,12 @@ var zeroSlackChannelsContract = c38.router({
113900
114700
 
113901
114701
  // ../../packages/core/src/contracts/zero-queue-position.ts
113902
114702
  init_esm_shims();
113903
- var c39 = initContract();
114703
+ var c40 = initContract();
113904
114704
  var queuePositionResponseSchema = external_exports.object({
113905
114705
  position: external_exports.number(),
113906
114706
  total: external_exports.number()
113907
114707
  });
113908
- var zeroQueuePositionContract = c39.router({
114708
+ var zeroQueuePositionContract = c40.router({
113909
114709
  getPosition: {
113910
114710
  method: "GET",
113911
114711
  path: "/api/zero/queue-position",
@@ -113925,13 +114725,13 @@ var zeroQueuePositionContract = c39.router({
113925
114725
 
113926
114726
  // ../../packages/core/src/contracts/zero-member-credit-cap.ts
113927
114727
  init_esm_shims();
113928
- var c40 = initContract();
114728
+ var c41 = initContract();
113929
114729
  var memberCreditCapResponseSchema = external_exports.object({
113930
114730
  userId: external_exports.string(),
113931
114731
  creditCap: external_exports.number().nullable(),
113932
114732
  creditEnabled: external_exports.boolean()
113933
114733
  });
113934
- var zeroMemberCreditCapContract = c40.router({
114734
+ var zeroMemberCreditCapContract = c41.router({
113935
114735
  get: {
113936
114736
  method: "GET",
113937
114737
  path: "/api/zero/org/members/credit-cap",
@@ -113966,7 +114766,7 @@ var zeroMemberCreditCapContract = c40.router({
113966
114766
 
113967
114767
  // ../../packages/core/src/contracts/zero-developer-support.ts
113968
114768
  init_esm_shims();
113969
- var c41 = initContract();
114769
+ var c42 = initContract();
113970
114770
  var developerSupportBodySchema = external_exports.object({
113971
114771
  title: external_exports.string().min(1, "Title is required"),
113972
114772
  description: external_exports.string().min(1, "Description is required"),
@@ -113978,7 +114778,7 @@ var consentCodeResponseSchema = external_exports.object({
113978
114778
  var submitResponseSchema = external_exports.object({
113979
114779
  reference: external_exports.string()
113980
114780
  });
113981
- var zeroDeveloperSupportContract = c41.router({
114781
+ var zeroDeveloperSupportContract = c42.router({
113982
114782
  submit: {
113983
114783
  method: "POST",
113984
114784
  path: "/api/zero/developer-support",
@@ -113996,7 +114796,7 @@ var zeroDeveloperSupportContract = c41.router({
113996
114796
 
113997
114797
  // ../../packages/core/src/contracts/zero-report-error.ts
113998
114798
  init_esm_shims();
113999
- var c42 = initContract();
114799
+ var c43 = initContract();
114000
114800
  var reportErrorBodySchema = external_exports.object({
114001
114801
  runId: external_exports.string().min(1, "Run ID is required"),
114002
114802
  title: external_exports.string().min(1, "Title is required"),
@@ -114005,7 +114805,7 @@ var reportErrorBodySchema = external_exports.object({
114005
114805
  var reportErrorResponseSchema = external_exports.object({
114006
114806
  reference: external_exports.string()
114007
114807
  });
114008
- var zeroReportErrorContract = c42.router({
114808
+ var zeroReportErrorContract = c43.router({
114009
114809
  submit: {
114010
114810
  method: "POST",
114011
114811
  path: "/api/zero/report-error",
@@ -114023,7 +114823,7 @@ var zeroReportErrorContract = c42.router({
114023
114823
 
114024
114824
  // ../../packages/core/src/contracts/zero-computer-use.ts
114025
114825
  init_esm_shims();
114026
- var c43 = initContract();
114826
+ var c44 = initContract();
114027
114827
  var registerResponseSchema = external_exports.object({
114028
114828
  id: external_exports.string(),
114029
114829
  domain: external_exports.string(),
@@ -114035,12 +114835,12 @@ var hostResponseSchema = external_exports.object({
114035
114835
  domain: external_exports.string(),
114036
114836
  token: external_exports.string()
114037
114837
  });
114038
- var zeroComputerUseRegisterContract = c43.router({
114838
+ var zeroComputerUseRegisterContract = c44.router({
114039
114839
  register: {
114040
114840
  method: "POST",
114041
114841
  path: "/api/zero/computer-use/register",
114042
114842
  headers: authHeadersSchema,
114043
- body: c43.noBody(),
114843
+ body: c44.noBody(),
114044
114844
  responses: {
114045
114845
  200: registerResponseSchema,
114046
114846
  401: apiErrorSchema,
@@ -114050,14 +114850,14 @@ var zeroComputerUseRegisterContract = c43.router({
114050
114850
  summary: "Register a computer-use host"
114051
114851
  }
114052
114852
  });
114053
- var zeroComputerUseUnregisterContract = c43.router({
114853
+ var zeroComputerUseUnregisterContract = c44.router({
114054
114854
  unregister: {
114055
114855
  method: "DELETE",
114056
114856
  path: "/api/zero/computer-use/unregister",
114057
114857
  headers: authHeadersSchema,
114058
- body: c43.noBody(),
114858
+ body: c44.noBody(),
114059
114859
  responses: {
114060
- 204: c43.noBody(),
114860
+ 204: c44.noBody(),
114061
114861
  401: apiErrorSchema,
114062
114862
  403: apiErrorSchema,
114063
114863
  404: apiErrorSchema
@@ -114065,7 +114865,7 @@ var zeroComputerUseUnregisterContract = c43.router({
114065
114865
  summary: "Unregister a computer-use host"
114066
114866
  }
114067
114867
  });
114068
- var zeroComputerUseHostContract = c43.router({
114868
+ var zeroComputerUseHostContract = c44.router({
114069
114869
  getHost: {
114070
114870
  method: "GET",
114071
114871
  path: "/api/zero/computer-use/host",
@@ -114082,7 +114882,7 @@ var zeroComputerUseHostContract = c43.router({
114082
114882
 
114083
114883
  // ../../packages/core/src/contracts/zero-insights.ts
114084
114884
  init_esm_shims();
114085
- var c44 = initContract();
114885
+ var c45 = initContract();
114086
114886
  var insightAgentSchema = external_exports.object({
114087
114887
  agentName: external_exports.string(),
114088
114888
  agentId: external_exports.string().nullable(),
@@ -114132,7 +114932,7 @@ var insightsRangeResponseSchema = external_exports.object({
114132
114932
  maxDate: external_exports.string().nullable(),
114133
114933
  totalDays: external_exports.number()
114134
114934
  });
114135
- var zeroInsightsContract = c44.router({
114935
+ var zeroInsightsContract = c45.router({
114136
114936
  get: {
114137
114937
  method: "GET",
114138
114938
  path: "/api/zero/insights",
@@ -114147,7 +114947,7 @@ var zeroInsightsContract = c44.router({
114147
114947
  summary: "Get daily insights for the authenticated org"
114148
114948
  }
114149
114949
  });
114150
- var zeroInsightsRangeContract = c44.router({
114950
+ var zeroInsightsRangeContract = c45.router({
114151
114951
  get: {
114152
114952
  method: "GET",
114153
114953
  path: "/api/zero/insights/range",
@@ -114162,8 +114962,8 @@ var zeroInsightsRangeContract = c44.router({
114162
114962
 
114163
114963
  // ../../packages/core/src/contracts/push-subscriptions.ts
114164
114964
  init_esm_shims();
114165
- var c45 = initContract();
114166
- var pushSubscriptionsContract = c45.router({
114965
+ var c46 = initContract();
114966
+ var pushSubscriptionsContract = c46.router({
114167
114967
  register: {
114168
114968
  method: "POST",
114169
114969
  path: "/api/zero/push-subscriptions",
@@ -114187,7 +114987,7 @@ var pushSubscriptionsContract = c45.router({
114187
114987
 
114188
114988
  // ../../packages/core/src/contracts/zero-voice-chat-context.ts
114189
114989
  init_esm_shims();
114190
- var c46 = initContract();
114990
+ var c47 = initContract();
114191
114991
  var contextEventSchema = external_exports.object({
114192
114992
  id: external_exports.string(),
114193
114993
  seq: external_exports.number(),
@@ -114204,7 +115004,7 @@ var appendContextEventBodySchema = external_exports.object({
114204
115004
  type: external_exports.string(),
114205
115005
  content: external_exports.string().optional()
114206
115006
  });
114207
- var zeroVoiceChatContextContract = c46.router({
115007
+ var zeroVoiceChatContextContract = c47.router({
114208
115008
  getEvents: {
114209
115009
  method: "GET",
114210
115010
  path: "/api/zero/voice-chat/:id/context",
@@ -114235,7 +115035,7 @@ var zeroVoiceChatContextContract = c46.router({
114235
115035
 
114236
115036
  // ../../packages/core/src/contracts/zero-voice-chat-sessions.ts
114237
115037
  init_esm_shims();
114238
- var c47 = initContract();
115038
+ var c48 = initContract();
114239
115039
  var voiceChatModeSchema = external_exports.enum(["chat", "meeting"]);
114240
115040
  var voiceChatSessionBaseSchema = external_exports.object({
114241
115041
  id: external_exports.string(),
@@ -114262,7 +115062,7 @@ var voiceChatTokenResponseSchema = external_exports.object({
114262
115062
  })
114263
115063
  });
114264
115064
  var okResponseSchema = external_exports.object({ ok: external_exports.literal(true) });
114265
- var zeroVoiceChatSessionsContract = c47.router({
115065
+ var zeroVoiceChatSessionsContract = c48.router({
114266
115066
  create: {
114267
115067
  method: "POST",
114268
115068
  path: "/api/zero/voice-chat",
@@ -114333,7 +115133,7 @@ var zeroVoiceChatSessionsContract = c47.router({
114333
115133
 
114334
115134
  // ../../packages/core/src/contracts/zero-voice-chat-prepare.ts
114335
115135
  init_esm_shims();
114336
- var c48 = initContract();
115136
+ var c49 = initContract();
114337
115137
  var prepareTriggerBodySchema = external_exports.object({
114338
115138
  agentId: external_exports.string().min(1),
114339
115139
  mode: external_exports.enum(["chat", "meeting"]).default("chat"),
@@ -114346,7 +115146,7 @@ var prepareTriggerResponseSchema = external_exports.object({
114346
115146
  runId: external_exports.string().optional()
114347
115147
  })
114348
115148
  });
114349
- var zeroVoiceChatPrepareTriggerContract = c48.router({
115149
+ var zeroVoiceChatPrepareTriggerContract = c49.router({
114350
115150
  trigger: {
114351
115151
  method: "POST",
114352
115152
  path: "/api/zero/voice-chat/prepare",
@@ -114368,7 +115168,7 @@ var prepareCompleteResponseSchema = external_exports.object({
114368
115168
  id: external_exports.string(),
114369
115169
  status: external_exports.enum(["preparing", "ready", "failed"])
114370
115170
  });
114371
- var zeroVoiceChatPrepareCompleteContract = c48.router({
115171
+ var zeroVoiceChatPrepareCompleteContract = c49.router({
114372
115172
  complete: {
114373
115173
  method: "POST",
114374
115174
  path: "/api/zero/voice-chat/prepare/complete",
@@ -114394,7 +115194,7 @@ var prepareListResponseSchema = external_exports.object({
114394
115194
  })
114395
115195
  )
114396
115196
  });
114397
- var zeroVoiceChatPrepareListContract = c48.router({
115197
+ var zeroVoiceChatPrepareListContract = c49.router({
114398
115198
  list: {
114399
115199
  method: "GET",
114400
115200
  path: "/api/zero/voice-chat/prepare/list",
@@ -114410,7 +115210,7 @@ var zeroVoiceChatPrepareListContract = c48.router({
114410
115210
 
114411
115211
  // ../../packages/core/src/contracts/tasks.ts
114412
115212
  init_esm_shims();
114413
- var c49 = initContract();
115213
+ var c50 = initContract();
114414
115214
  var taskTypeSchema = external_exports.enum([
114415
115215
  "chat",
114416
115216
  "schedule",
@@ -114451,7 +115251,7 @@ var unarchiveTaskBodySchema = external_exports.object({
114451
115251
  taskId: external_exports.string(),
114452
115252
  taskType: taskTypeSchema
114453
115253
  });
114454
- var tasksContract = c49.router({
115254
+ var tasksContract = c50.router({
114455
115255
  list: {
114456
115256
  method: "GET",
114457
115257
  path: "/api/zero/tasks",
@@ -114491,7 +115291,7 @@ var tasksContract = c49.router({
114491
115291
 
114492
115292
  // ../../packages/core/src/contracts/zero-phone.ts
114493
115293
  init_esm_shims();
114494
- var c50 = initContract();
115294
+ var c51 = initContract();
114495
115295
  var phoneStatusResponseSchema = external_exports.object({
114496
115296
  userPhone: external_exports.string().nullable(),
114497
115297
  userPhonePending: external_exports.string().nullable(),
@@ -114510,7 +115310,7 @@ var phoneSetupResponseSchema = external_exports.object({
114510
115310
  var phoneErrorResponseSchema = external_exports.object({
114511
115311
  error: external_exports.string()
114512
115312
  });
114513
- var zeroPhoneStatusContract = c50.router({
115313
+ var zeroPhoneStatusContract = c51.router({
114514
115314
  getStatus: {
114515
115315
  method: "GET",
114516
115316
  path: "/api/zero/phone/status",
@@ -114522,7 +115322,7 @@ var zeroPhoneStatusContract = c50.router({
114522
115322
  summary: "Get the current user's phone link status"
114523
115323
  }
114524
115324
  });
114525
- var zeroPhoneLinkContract = c50.router({
115325
+ var zeroPhoneLinkContract = c51.router({
114526
115326
  link: {
114527
115327
  method: "POST",
114528
115328
  path: "/api/zero/phone/link",
@@ -114540,7 +115340,7 @@ var zeroPhoneLinkContract = c50.router({
114540
115340
  method: "DELETE",
114541
115341
  path: "/api/zero/phone/link",
114542
115342
  headers: authHeadersSchema,
114543
- body: c50.noBody(),
115343
+ body: c51.noBody(),
114544
115344
  responses: {
114545
115345
  200: phoneSuccessResponseSchema,
114546
115346
  401: phoneErrorResponseSchema
@@ -114548,12 +115348,12 @@ var zeroPhoneLinkContract = c50.router({
114548
115348
  summary: "Remove the current user's phone link"
114549
115349
  }
114550
115350
  });
114551
- var zeroPhoneSetupContract = c50.router({
115351
+ var zeroPhoneSetupContract = c51.router({
114552
115352
  setup: {
114553
115353
  method: "POST",
114554
115354
  path: "/api/zero/phone/setup",
114555
115355
  headers: authHeadersSchema,
114556
- body: c50.noBody(),
115356
+ body: c51.noBody(),
114557
115357
  responses: {
114558
115358
  200: phoneSetupResponseSchema,
114559
115359
  401: phoneErrorResponseSchema,
@@ -114566,7 +115366,7 @@ var zeroPhoneSetupContract = c50.router({
114566
115366
 
114567
115367
  // ../../packages/core/src/contracts/zero-integrations-telegram.ts
114568
115368
  init_esm_shims();
114569
- var c51 = initContract();
115369
+ var c52 = initContract();
114570
115370
  var telegramEnvironmentSchema = external_exports.object({
114571
115371
  requiredSecrets: external_exports.array(external_exports.string()),
114572
115372
  requiredVars: external_exports.array(external_exports.string()),
@@ -114603,7 +115403,7 @@ var telegramRegisterResponseSchema = external_exports.object({
114603
115403
  webhookUrl: external_exports.string(),
114604
115404
  domainConfigured: external_exports.boolean()
114605
115405
  });
114606
- var zeroIntegrationsTelegramContract = c51.router({
115406
+ var zeroIntegrationsTelegramContract = c52.router({
114607
115407
  getStatus: {
114608
115408
  method: "GET",
114609
115409
  path: "/api/integrations/telegram",
@@ -114633,9 +115433,9 @@ var zeroIntegrationsTelegramContract = c51.router({
114633
115433
  method: "DELETE",
114634
115434
  path: "/api/integrations/telegram",
114635
115435
  headers: authHeadersSchema,
114636
- body: c51.noBody(),
115436
+ body: c52.noBody(),
114637
115437
  responses: {
114638
- 204: c51.noBody(),
115438
+ 204: c52.noBody(),
114639
115439
  401: apiErrorSchema,
114640
115440
  404: apiErrorSchema
114641
115441
  },
@@ -114955,6 +115755,11 @@ var FEATURE_SWITCHES = {
114955
115755
  description: "Enable the Freshdesk helpdesk connector",
114956
115756
  enabled: false
114957
115757
  },
115758
+ ["stabilityAiConnector" /* StabilityAiConnector */]: {
115759
+ maintainer: "ethan@vm0.ai",
115760
+ description: "Enable the Stability AI image generation connector",
115761
+ enabled: false
115762
+ },
114958
115763
  ["zoomConnector" /* ZoomConnector */]: {
114959
115764
  maintainer: "ethan@vm0.ai",
114960
115765
  description: "Enable the Zoom connector (OAuth 2.0) for meetings, past participants, and cloud recordings access",
@@ -114969,19 +115774,19 @@ var FEATURE_SWITCHES = {
114969
115774
  ["vm0KimiModel" /* Vm0KimiModel */]: {
114970
115775
  maintainer: "ethan@vm0.ai",
114971
115776
  description: "Expose Moonshot Kimi K2.5 as a selectable model under the VM0 managed provider",
114972
- enabled: false,
115777
+ enabled: true,
114973
115778
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
114974
115779
  },
114975
115780
  ["vm0GlmModel" /* Vm0GlmModel */]: {
114976
115781
  maintainer: "ethan@vm0.ai",
114977
115782
  description: "Expose Z.AI GLM-5.1 as a selectable model under the VM0 managed provider",
114978
- enabled: false,
115783
+ enabled: true,
114979
115784
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
114980
115785
  },
114981
115786
  ["vm0MinimaxModel" /* Vm0MinimaxModel */]: {
114982
115787
  maintainer: "ethan@vm0.ai",
114983
115788
  description: "Expose MiniMax M2.7 as a selectable model under the VM0 managed provider",
114984
- enabled: false,
115789
+ enabled: true,
114985
115790
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
114986
115791
  },
114987
115792
  ["slackAgentSwitch" /* SlackAgentSwitch */]: {
@@ -114992,7 +115797,7 @@ var FEATURE_SWITCHES = {
114992
115797
  ["modelProviderSelection" /* ModelProviderSelection */]: {
114993
115798
  maintainer: "ethan@vm0.ai",
114994
115799
  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.",
114995
- enabled: false,
115800
+ enabled: true,
114996
115801
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
114997
115802
  }
114998
115803
  };
@@ -117464,4 +118269,4 @@ undici/lib/web/fetch/body.js:
117464
118269
  undici/lib/web/websocket/frame.js:
117465
118270
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
117466
118271
  */
117467
- //# sourceMappingURL=chunk-EL3VZKV3.js.map
118272
+ //# sourceMappingURL=chunk-DSRDBCPV.js.map