@vm0/cli 9.122.6 → 9.122.8
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
|
|
4626
|
-
args.splice(1, 0,
|
|
4625
|
+
const c51 = "color: " + this.color;
|
|
4626
|
+
args.splice(1, 0, c51, "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,
|
|
4638
|
+
args.splice(lastC, 0, c51);
|
|
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
|
|
4927
|
-
const colorCode = "\x1B[3" + (
|
|
4926
|
+
const c51 = this.color;
|
|
4927
|
+
const colorCode = "\x1B[3" + (c51 < 8 ? c51 : "8;5;" + c51);
|
|
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
|
|
10086
|
+
let c51;
|
|
10087
10087
|
if (isAlphaSequence) {
|
|
10088
|
-
|
|
10089
|
-
if (
|
|
10090
|
-
|
|
10088
|
+
c51 = String.fromCharCode(i);
|
|
10089
|
+
if (c51 === "\\") {
|
|
10090
|
+
c51 = "";
|
|
10091
10091
|
}
|
|
10092
10092
|
} else {
|
|
10093
|
-
|
|
10093
|
+
c51 = String(i);
|
|
10094
10094
|
if (pad) {
|
|
10095
|
-
const need = width -
|
|
10095
|
+
const need = width - c51.length;
|
|
10096
10096
|
if (need > 0) {
|
|
10097
10097
|
const z3 = new Array(need + 1).join("0");
|
|
10098
10098
|
if (i < 0) {
|
|
10099
|
-
|
|
10099
|
+
c51 = "-" + z3 + c51.slice(1);
|
|
10100
10100
|
} else {
|
|
10101
|
-
|
|
10101
|
+
c51 = z3 + c51;
|
|
10102
10102
|
}
|
|
10103
10103
|
}
|
|
10104
10104
|
}
|
|
10105
10105
|
}
|
|
10106
|
-
N.push(
|
|
10106
|
+
N.push(c51);
|
|
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
|
|
10190
|
-
if ((
|
|
10189
|
+
const c51 = glob.charAt(i);
|
|
10190
|
+
if ((c51 === "!" || c51 === "^") && i === pos + 1) {
|
|
10191
10191
|
negate = true;
|
|
10192
10192
|
i++;
|
|
10193
10193
|
continue;
|
|
10194
10194
|
}
|
|
10195
|
-
if (
|
|
10195
|
+
if (c51 === "]" && sawStart && !escaping) {
|
|
10196
10196
|
endPos = i + 1;
|
|
10197
10197
|
break;
|
|
10198
10198
|
}
|
|
10199
10199
|
sawStart = true;
|
|
10200
|
-
if (
|
|
10200
|
+
if (c51 === "\\") {
|
|
10201
10201
|
if (!escaping) {
|
|
10202
10202
|
escaping = true;
|
|
10203
10203
|
i++;
|
|
10204
10204
|
continue;
|
|
10205
10205
|
}
|
|
10206
10206
|
}
|
|
10207
|
-
if (
|
|
10207
|
+
if (c51 === "[" && !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 (
|
|
10226
|
-
ranges.push(braceEscape(rangeStart) + "-" + braceEscape(
|
|
10227
|
-
} else if (
|
|
10228
|
-
ranges.push(braceEscape(
|
|
10225
|
+
if (c51 > rangeStart) {
|
|
10226
|
+
ranges.push(braceEscape(rangeStart) + "-" + braceEscape(c51));
|
|
10227
|
+
} else if (c51 === rangeStart) {
|
|
10228
|
+
ranges.push(braceEscape(c51));
|
|
10229
10229
|
}
|
|
10230
10230
|
rangeStart = "";
|
|
10231
10231
|
i++;
|
|
10232
10232
|
continue;
|
|
10233
10233
|
}
|
|
10234
10234
|
if (glob.startsWith("-]", i + 1)) {
|
|
10235
|
-
ranges.push(braceEscape(
|
|
10235
|
+
ranges.push(braceEscape(c51 + "-"));
|
|
10236
10236
|
i += 2;
|
|
10237
10237
|
continue;
|
|
10238
10238
|
}
|
|
10239
10239
|
if (glob.startsWith("-", i + 1)) {
|
|
10240
|
-
rangeStart =
|
|
10240
|
+
rangeStart = c51;
|
|
10241
10241
|
i += 2;
|
|
10242
10242
|
continue;
|
|
10243
10243
|
}
|
|
10244
|
-
ranges.push(braceEscape(
|
|
10244
|
+
ranges.push(braceEscape(c51));
|
|
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 = (
|
|
10295
|
-
var isExtglobAST = (
|
|
10294
|
+
var isExtglobType = (c51) => types.has(c51);
|
|
10295
|
+
var isExtglobAST = (c51) => isExtglobType(c51.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
|
|
10492
|
+
const c51 = new _a2(this.type, parent);
|
|
10493
10493
|
for (const p of this.#parts) {
|
|
10494
|
-
|
|
10494
|
+
c51.copyIn(p);
|
|
10495
10495
|
}
|
|
10496
|
-
return
|
|
10496
|
+
return c51;
|
|
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
|
|
10509
|
-
if (escaping ||
|
|
10508
|
+
const c51 = str.charAt(i2++);
|
|
10509
|
+
if (escaping || c51 === "\\") {
|
|
10510
10510
|
escaping = !escaping;
|
|
10511
|
-
acc2 +=
|
|
10511
|
+
acc2 += c51;
|
|
10512
10512
|
continue;
|
|
10513
10513
|
}
|
|
10514
10514
|
if (inBrace) {
|
|
10515
10515
|
if (i2 === braceStart + 1) {
|
|
10516
|
-
if (
|
|
10516
|
+
if (c51 === "^" || c51 === "!") {
|
|
10517
10517
|
braceNeg = true;
|
|
10518
10518
|
}
|
|
10519
|
-
} else if (
|
|
10519
|
+
} else if (c51 === "]" && !(i2 === braceStart + 2 && braceNeg)) {
|
|
10520
10520
|
inBrace = false;
|
|
10521
10521
|
}
|
|
10522
|
-
acc2 +=
|
|
10522
|
+
acc2 += c51;
|
|
10523
10523
|
continue;
|
|
10524
|
-
} else if (
|
|
10524
|
+
} else if (c51 === "[") {
|
|
10525
10525
|
inBrace = true;
|
|
10526
10526
|
braceStart = i2;
|
|
10527
10527
|
braceNeg = false;
|
|
10528
|
-
acc2 +=
|
|
10528
|
+
acc2 += c51;
|
|
10529
10529
|
continue;
|
|
10530
10530
|
}
|
|
10531
|
-
const doRecurse = !opt.noext && isExtglobType(
|
|
10531
|
+
const doRecurse = !opt.noext && isExtglobType(c51) && str.charAt(i2) === "(" && extDepth <= maxDepth;
|
|
10532
10532
|
if (doRecurse) {
|
|
10533
10533
|
ast.push(acc2);
|
|
10534
10534
|
acc2 = "";
|
|
10535
|
-
const ext = new _a2(
|
|
10535
|
+
const ext = new _a2(c51, ast);
|
|
10536
10536
|
i2 = _a2.#parseAST(str, ext, i2, opt, extDepth + 1);
|
|
10537
10537
|
ast.push(ext);
|
|
10538
10538
|
continue;
|
|
10539
10539
|
}
|
|
10540
|
-
acc2 +=
|
|
10540
|
+
acc2 += c51;
|
|
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
|
|
10551
|
-
if (escaping ||
|
|
10550
|
+
const c51 = str.charAt(i++);
|
|
10551
|
+
if (escaping || c51 === "\\") {
|
|
10552
10552
|
escaping = !escaping;
|
|
10553
|
-
acc +=
|
|
10553
|
+
acc += c51;
|
|
10554
10554
|
continue;
|
|
10555
10555
|
}
|
|
10556
10556
|
if (inBrace) {
|
|
10557
10557
|
if (i === braceStart + 1) {
|
|
10558
|
-
if (
|
|
10558
|
+
if (c51 === "^" || c51 === "!") {
|
|
10559
10559
|
braceNeg = true;
|
|
10560
10560
|
}
|
|
10561
|
-
} else if (
|
|
10561
|
+
} else if (c51 === "]" && !(i === braceStart + 2 && braceNeg)) {
|
|
10562
10562
|
inBrace = false;
|
|
10563
10563
|
}
|
|
10564
|
-
acc +=
|
|
10564
|
+
acc += c51;
|
|
10565
10565
|
continue;
|
|
10566
|
-
} else if (
|
|
10566
|
+
} else if (c51 === "[") {
|
|
10567
10567
|
inBrace = true;
|
|
10568
10568
|
braceStart = i;
|
|
10569
10569
|
braceNeg = false;
|
|
10570
|
-
acc +=
|
|
10570
|
+
acc += c51;
|
|
10571
10571
|
continue;
|
|
10572
10572
|
}
|
|
10573
|
-
const doRecurse = !opt.noext && isExtglobType(
|
|
10574
|
-
(extDepth <= maxDepth || ast && ast.#canAdoptType(
|
|
10573
|
+
const doRecurse = !opt.noext && isExtglobType(c51) && str.charAt(i) === "(" && /* c8 ignore start - the maxDepth is sufficient here */
|
|
10574
|
+
(extDepth <= maxDepth || ast && ast.#canAdoptType(c51));
|
|
10575
10575
|
if (doRecurse) {
|
|
10576
|
-
const depthAdd = ast && ast.#canAdoptType(
|
|
10576
|
+
const depthAdd = ast && ast.#canAdoptType(c51) ? 0 : 1;
|
|
10577
10577
|
part.push(acc);
|
|
10578
10578
|
acc = "";
|
|
10579
|
-
const ext = new _a2(
|
|
10579
|
+
const ext = new _a2(c51, part);
|
|
10580
10580
|
part.push(ext);
|
|
10581
10581
|
i = _a2.#parseAST(str, ext, i, opt, extDepth + depthAdd);
|
|
10582
10582
|
continue;
|
|
10583
10583
|
}
|
|
10584
|
-
if (
|
|
10584
|
+
if (c51 === "|") {
|
|
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 (
|
|
10591
|
+
if (c51 === ")") {
|
|
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 +=
|
|
10600
|
+
acc += c51;
|
|
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(
|
|
10621
|
-
return !!map2.get(this.type)?.includes(
|
|
10620
|
+
#canAdoptType(c51, map2 = adoptionAnyMap) {
|
|
10621
|
+
return !!map2.get(this.type)?.includes(c51);
|
|
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(
|
|
10639
|
+
#canUsurpType(c51) {
|
|
10640
10640
|
const m = usurpMap.get(this.type);
|
|
10641
|
-
return !!m?.has(
|
|
10641
|
+
return !!m?.has(c51);
|
|
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
|
|
10855
|
-
if (typeof
|
|
10856
|
-
|
|
10857
|
-
if (this.#canAdopt(
|
|
10854
|
+
const c51 = this.#parts[i];
|
|
10855
|
+
if (typeof c51 === "object") {
|
|
10856
|
+
c51.#flatten();
|
|
10857
|
+
if (this.#canAdopt(c51)) {
|
|
10858
10858
|
done = false;
|
|
10859
|
-
this.#adopt(
|
|
10860
|
-
} else if (this.#canAdoptWithSpace(
|
|
10859
|
+
this.#adopt(c51, i);
|
|
10860
|
+
} else if (this.#canAdoptWithSpace(c51)) {
|
|
10861
10861
|
done = false;
|
|
10862
|
-
this.#adoptWithSpace(
|
|
10863
|
-
} else if (this.#canUsurp(
|
|
10862
|
+
this.#adoptWithSpace(c51, i);
|
|
10863
|
+
} else if (this.#canUsurp(c51)) {
|
|
10864
10864
|
done = false;
|
|
10865
|
-
this.#usurp(
|
|
10865
|
+
this.#usurp(c51);
|
|
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
|
|
10889
|
+
const c51 = glob.charAt(i);
|
|
10890
10890
|
if (escaping) {
|
|
10891
10891
|
escaping = false;
|
|
10892
|
-
re += (reSpecials.has(
|
|
10892
|
+
re += (reSpecials.has(c51) ? "\\" : "") + c51;
|
|
10893
10893
|
continue;
|
|
10894
10894
|
}
|
|
10895
|
-
if (
|
|
10895
|
+
if (c51 === "*") {
|
|
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 (
|
|
10905
|
+
if (c51 === "\\") {
|
|
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 (
|
|
10913
|
+
if (c51 === "[") {
|
|
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 (
|
|
10923
|
+
if (c51 === "?") {
|
|
10924
10924
|
re += qmark;
|
|
10925
10925
|
hasMagic = true;
|
|
10926
10926
|
continue;
|
|
10927
10927
|
}
|
|
10928
|
-
re += regExpEscape(
|
|
10928
|
+
re += regExpEscape(c51);
|
|
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
|
|
14845
|
+
const c51 = pool.config.connectionConfig;
|
|
14846
14846
|
let poolName = "";
|
|
14847
|
-
poolName +=
|
|
14848
|
-
poolName +=
|
|
14849
|
-
poolName +=
|
|
14850
|
-
poolName +=
|
|
14851
|
-
if (!
|
|
14847
|
+
poolName += c51.host ? `host: '${c51.host}', ` : "";
|
|
14848
|
+
poolName += c51.port ? `port: ${c51.port}, ` : "";
|
|
14849
|
+
poolName += c51.database ? `database: '${c51.database}', ` : "";
|
|
14850
|
+
poolName += c51.user ? `user: '${c51.user}'` : "";
|
|
14851
|
+
if (!c51.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, (
|
|
15203
|
+
return encodeURIComponent(str).replace(/[!'()*]/g, (c51) => `%${c51.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(
|
|
23754
|
-
switch (
|
|
23753
|
+
function isTokenCharCode(c51) {
|
|
23754
|
+
switch (c51) {
|
|
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
|
|
23774
|
+
return c51 >= 33 && c51 <= 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((
|
|
25363
|
+
exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c51) => c51 !== 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
|
|
26510
|
-
if (!(
|
|
26511
|
-
|
|
26512
|
-
|
|
26509
|
+
const c51 = statusText.charCodeAt(i);
|
|
26510
|
+
if (!(c51 === 9 || // HTAB
|
|
26511
|
+
c51 >= 32 && c51 <= 126 || // SP / VCHAR
|
|
26512
|
+
c51 >= 128 && c51 <= 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((
|
|
30486
|
+
Promise.all(pool[kClients].map((c51) => c51.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((
|
|
30535
|
+
await Promise.all(this[kClients].map((c51) => c51.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((
|
|
30550
|
+
await Promise.all(this[kClients].map((c51) => c51.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,
|
|
37321
|
-
if (a === 239 && b === 187 &&
|
|
37320
|
+
const [a, b, c51] = ioQueue;
|
|
37321
|
+
if (a === 239 && b === 187 && c51 === 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
|
|
41801
|
-
if (
|
|
41802
|
-
count =
|
|
41800
|
+
const c51 = getAliasCount(doc, item, anchors2);
|
|
41801
|
+
if (c51 > count)
|
|
41802
|
+
count = c51;
|
|
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
|
|
48818
|
+
var c51 = 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:
|
|
48841
|
-
done:
|
|
48842
|
-
exited:
|
|
48843
|
-
default:
|
|
48840
|
+
aborted: c51.red(figures.cross),
|
|
48841
|
+
done: c51.green(figures.tick),
|
|
48842
|
+
exited: c51.yellow(figures.cross),
|
|
48843
|
+
default: c51.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) =>
|
|
48847
|
-
var item = (expandable, expanded) =>
|
|
48846
|
+
var delimiter = (completing) => c51.gray(completing ? figures.ellipsis : figures.pointerSmall);
|
|
48847
|
+
var item = (expandable, expanded) => c51.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
|
-
_(
|
|
49129
|
+
_(c51, key) {
|
|
49130
49130
|
let s1 = this.value.slice(0, this.cursor);
|
|
49131
49131
|
let s2 = this.value.slice(this.cursor);
|
|
49132
|
-
this.value = `${s1}${
|
|
49132
|
+
this.value = `${s1}${c51}${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
|
-
_(
|
|
49308
|
-
if (
|
|
49307
|
+
_(c51, key) {
|
|
49308
|
+
if (c51 === " ") 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
|
-
_(
|
|
49435
|
-
if (
|
|
49434
|
+
_(c51, key) {
|
|
49435
|
+
if (c51 === " ") {
|
|
49436
49436
|
this.value = !this.value;
|
|
49437
|
-
} else if (
|
|
49437
|
+
} else if (c51 === "1") {
|
|
49438
49438
|
this.value = true;
|
|
49439
|
-
} else if (
|
|
49439
|
+
} else if (c51 === "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
|
-
_(
|
|
49948
|
-
if (/\d/.test(
|
|
49949
|
-
this.typed +=
|
|
49947
|
+
_(c51) {
|
|
49948
|
+
if (/\d/.test(c51)) {
|
|
49949
|
+
this.typed += c51;
|
|
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(
|
|
50059
|
-
return
|
|
50058
|
+
valid(c51) {
|
|
50059
|
+
return c51 === `-` || c51 === `.` && this.float || isNumber.test(c51);
|
|
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
|
-
_(
|
|
50153
|
-
if (!this.valid(
|
|
50152
|
+
_(c51, key) {
|
|
50153
|
+
if (!this.valid(c51)) return this.bell();
|
|
50154
50154
|
const now = Date.now();
|
|
50155
50155
|
if (now - this.lastHit > 1e3) this.typed = ``;
|
|
50156
|
-
this.typed +=
|
|
50156
|
+
this.typed += c51;
|
|
50157
50157
|
this.lastHit = now;
|
|
50158
50158
|
this.color = `cyan`;
|
|
50159
|
-
if (
|
|
50159
|
+
if (c51 === `.`) 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
|
-
_(
|
|
50324
|
-
if (
|
|
50323
|
+
_(c51, key) {
|
|
50324
|
+
if (c51 === " ") {
|
|
50325
50325
|
this.handleSpaceToggle();
|
|
50326
|
-
} else if (
|
|
50326
|
+
} else if (c51 === "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
|
-
_(
|
|
50567
|
+
_(c51, key) {
|
|
50568
50568
|
let s1 = this.input.slice(0, this.cursor);
|
|
50569
50569
|
let s2 = this.input.slice(this.cursor);
|
|
50570
|
-
this.input = `${s1}${
|
|
50570
|
+
this.input = `${s1}${c51}${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(
|
|
50771
|
-
this.inputValue = this.inputValue +
|
|
50770
|
+
handleInputChange(c51) {
|
|
50771
|
+
this.inputValue = this.inputValue + c51;
|
|
50772
50772
|
this.updateFilteredOptions();
|
|
50773
50773
|
}
|
|
50774
|
-
_(
|
|
50775
|
-
if (
|
|
50774
|
+
_(c51, key) {
|
|
50775
|
+
if (c51 === " ") {
|
|
50776
50776
|
this.handleSpaceToggle();
|
|
50777
50777
|
} else {
|
|
50778
|
-
this.handleInputChange(
|
|
50778
|
+
this.handleInputChange(c51);
|
|
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
|
-
_(
|
|
50885
|
-
if (
|
|
50884
|
+
_(c51, key) {
|
|
50885
|
+
if (c51.toLowerCase() === "y") {
|
|
50886
50886
|
this.value = true;
|
|
50887
50887
|
return this.submit();
|
|
50888
50888
|
}
|
|
50889
|
-
if (
|
|
50889
|
+
if (c51.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
|
|
51330
|
+
var c51 = 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:
|
|
51341
|
-
done:
|
|
51342
|
-
exited:
|
|
51343
|
-
default:
|
|
51340
|
+
aborted: c51.red(figures.cross),
|
|
51341
|
+
done: c51.green(figures.tick),
|
|
51342
|
+
exited: c51.yellow(figures.cross),
|
|
51343
|
+
default: c51.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) =>
|
|
51347
|
-
var item = (expandable, expanded) =>
|
|
51346
|
+
var delimiter = (completing) => c51.gray(completing ? figures.ellipsis : figures.pointerSmall);
|
|
51347
|
+
var item = (expandable, expanded) => c51.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
|
-
_(
|
|
51580
|
+
_(c51, key) {
|
|
51581
51581
|
let s1 = this.value.slice(0, this.cursor);
|
|
51582
51582
|
let s2 = this.value.slice(this.cursor);
|
|
51583
|
-
this.value = `${s1}${
|
|
51583
|
+
this.value = `${s1}${c51}${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
|
-
_(
|
|
51758
|
-
if (
|
|
51757
|
+
_(c51, key) {
|
|
51758
|
+
if (c51 === " ") 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
|
-
_(
|
|
51883
|
-
if (
|
|
51882
|
+
_(c51, key) {
|
|
51883
|
+
if (c51 === " ") {
|
|
51884
51884
|
this.value = !this.value;
|
|
51885
|
-
} else if (
|
|
51885
|
+
} else if (c51 === "1") {
|
|
51886
51886
|
this.value = true;
|
|
51887
|
-
} else if (
|
|
51887
|
+
} else if (c51 === "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
|
-
_(
|
|
52344
|
-
if (/\d/.test(
|
|
52345
|
-
this.typed +=
|
|
52343
|
+
_(c51) {
|
|
52344
|
+
if (/\d/.test(c51)) {
|
|
52345
|
+
this.typed += c51;
|
|
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(
|
|
52428
|
-
return
|
|
52427
|
+
valid(c51) {
|
|
52428
|
+
return c51 === `-` || c51 === `.` && this.float || isNumber.test(c51);
|
|
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
|
-
_(
|
|
52516
|
-
if (!this.valid(
|
|
52515
|
+
_(c51, key) {
|
|
52516
|
+
if (!this.valid(c51)) return this.bell();
|
|
52517
52517
|
const now = Date.now();
|
|
52518
52518
|
if (now - this.lastHit > 1e3) this.typed = ``;
|
|
52519
|
-
this.typed +=
|
|
52519
|
+
this.typed += c51;
|
|
52520
52520
|
this.lastHit = now;
|
|
52521
52521
|
this.color = `cyan`;
|
|
52522
|
-
if (
|
|
52522
|
+
if (c51 === `.`) 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
|
-
_(
|
|
52685
|
-
if (
|
|
52684
|
+
_(c51, key) {
|
|
52685
|
+
if (c51 === " ") {
|
|
52686
52686
|
this.handleSpaceToggle();
|
|
52687
|
-
} else if (
|
|
52687
|
+
} else if (c51 === "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
|
-
_(
|
|
52884
|
+
_(c51, key) {
|
|
52885
52885
|
let s1 = this.input.slice(0, this.cursor);
|
|
52886
52886
|
let s2 = this.input.slice(this.cursor);
|
|
52887
|
-
this.input = `${s1}${
|
|
52887
|
+
this.input = `${s1}${c51}${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(
|
|
53091
|
-
this.inputValue = this.inputValue +
|
|
53090
|
+
handleInputChange(c51) {
|
|
53091
|
+
this.inputValue = this.inputValue + c51;
|
|
53092
53092
|
this.updateFilteredOptions();
|
|
53093
53093
|
}
|
|
53094
|
-
_(
|
|
53095
|
-
if (
|
|
53094
|
+
_(c51, key) {
|
|
53095
|
+
if (c51 === " ") {
|
|
53096
53096
|
this.handleSpaceToggle();
|
|
53097
53097
|
} else {
|
|
53098
|
-
this.handleInputChange(
|
|
53098
|
+
this.handleInputChange(c51);
|
|
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
|
-
_(
|
|
53206
|
-
if (
|
|
53205
|
+
_(c51, key) {
|
|
53206
|
+
if (c51.toLowerCase() === "y") {
|
|
53207
53207
|
this.value = true;
|
|
53208
53208
|
return this.submit();
|
|
53209
53209
|
}
|
|
53210
|
-
if (
|
|
53210
|
+
if (c51.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
|
|
54265
|
-
out.push(`.${
|
|
54264
|
+
for (const c51 of classes) {
|
|
54265
|
+
out.push(`.${c51}`);
|
|
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
|
-
(
|
|
54478
|
+
(c51) => (
|
|
54479
54479
|
// eslint-disable-next-line no-bitwise
|
|
54480
|
-
(
|
|
54480
|
+
(c51 ^ (getRandomByte() & 15) >> c51 / 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(
|
|
72042
|
+
return function(c51, next) {
|
|
72043
72043
|
if (!instrumentation.isEnabled()) {
|
|
72044
|
-
return handler.apply(this, [
|
|
72044
|
+
return handler.apply(this, [c51, next]);
|
|
72045
72045
|
}
|
|
72046
|
-
const path3 =
|
|
72046
|
+
const path3 = c51.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, [
|
|
72051
|
+
const result = handler.apply(this, [c51, 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.
|
|
73645
|
+
release: "9.122.8",
|
|
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.
|
|
73664
|
+
version: "9.122.8",
|
|
73665
73665
|
command: process.argv.slice(2).join(" ")
|
|
73666
73666
|
});
|
|
73667
73667
|
setContext("runtime", {
|
|
@@ -79255,7 +79255,7 @@ var $ZodBase64 = /* @__PURE__ */ $constructor("$ZodBase64", (inst, def) => {
|
|
|
79255
79255
|
function isValidBase64URL(data) {
|
|
79256
79256
|
if (!base64url.test(data))
|
|
79257
79257
|
return false;
|
|
79258
|
-
const base643 = data.replace(/[-_]/g, (
|
|
79258
|
+
const base643 = data.replace(/[-_]/g, (c51) => c51 === "-" ? "+" : "/");
|
|
79259
79259
|
const padded = base643.padEnd(Math.ceil(base643.length / 4) * 4, "=");
|
|
79260
79260
|
return isValidBase64(padded);
|
|
79261
79261
|
}
|
|
@@ -89366,9 +89366,9 @@ var ZodDate = /* @__PURE__ */ $constructor("ZodDate", (inst, def) => {
|
|
|
89366
89366
|
inst._zod.processJSONSchema = (ctx, json2, params) => dateProcessor(inst, ctx, json2, params);
|
|
89367
89367
|
inst.min = (value, params) => inst.check(_gte(value, params));
|
|
89368
89368
|
inst.max = (value, params) => inst.check(_lte(value, params));
|
|
89369
|
-
const
|
|
89370
|
-
inst.minDate =
|
|
89371
|
-
inst.maxDate =
|
|
89369
|
+
const c51 = inst._zod.bag;
|
|
89370
|
+
inst.minDate = c51.minimum ? new Date(c51.minimum) : null;
|
|
89371
|
+
inst.maxDate = c51.maximum ? new Date(c51.maximum) : null;
|
|
89372
89372
|
});
|
|
89373
89373
|
function date3(params) {
|
|
89374
89374
|
return _date(ZodDate, params);
|
|
@@ -91244,6 +91244,28 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
91244
91244
|
]
|
|
91245
91245
|
}
|
|
91246
91246
|
},
|
|
91247
|
+
"dropbox-sign": {
|
|
91248
|
+
label: "Dropbox Sign",
|
|
91249
|
+
tags: ["hellosign", "e-signature", "signature", "sign", "document"],
|
|
91250
|
+
environmentMapping: {
|
|
91251
|
+
DROPBOX_SIGN_TOKEN: "$secrets.DROPBOX_SIGN_TOKEN"
|
|
91252
|
+
},
|
|
91253
|
+
helpText: "Connect your Dropbox Sign (formerly HelloSign) account to send, track, and download e-signature requests",
|
|
91254
|
+
authMethods: {
|
|
91255
|
+
"api-token": {
|
|
91256
|
+
label: "API Key",
|
|
91257
|
+
helpText: "1. Log in to [Dropbox Sign](https://sign.dropbox.com)\n2. Click **API** in the left sidebar and open the **API Dashboard**\n3. Click **Reveal key** for an existing key, or **Generate key** to create a new one\n4. Copy the 40-character hex key and paste it here\n\nTip: While developing, add `test_mode=1` to signature-request calls to avoid billing and real emails.",
|
|
91258
|
+
secrets: {
|
|
91259
|
+
DROPBOX_SIGN_TOKEN: {
|
|
91260
|
+
label: "API Key",
|
|
91261
|
+
required: true,
|
|
91262
|
+
placeholder: "40-character hex key"
|
|
91263
|
+
}
|
|
91264
|
+
}
|
|
91265
|
+
}
|
|
91266
|
+
},
|
|
91267
|
+
defaultAuthMethod: "api-token"
|
|
91268
|
+
},
|
|
91247
91269
|
linear: {
|
|
91248
91270
|
label: "Linear",
|
|
91249
91271
|
tags: ["issues", "tickets", "project-management"],
|
|
@@ -94387,6 +94409,181 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
94387
94409
|
},
|
|
94388
94410
|
defaultAuthMethod: "api-token"
|
|
94389
94411
|
},
|
|
94412
|
+
amplitude: {
|
|
94413
|
+
label: "Amplitude",
|
|
94414
|
+
tags: ["analytics", "product-analytics", "events", "funnels"],
|
|
94415
|
+
environmentMapping: {
|
|
94416
|
+
AMPLITUDE_API_KEY: "$secrets.AMPLITUDE_API_KEY",
|
|
94417
|
+
AMPLITUDE_SECRET_KEY: "$secrets.AMPLITUDE_SECRET_KEY"
|
|
94418
|
+
},
|
|
94419
|
+
helpText: "Connect your Amplitude project to query events, funnels, retention, cohorts, and ingest new events",
|
|
94420
|
+
authMethods: {
|
|
94421
|
+
"api-token": {
|
|
94422
|
+
label: "API Key",
|
|
94423
|
+
helpText: "1. In Amplitude, open **Organization Settings** (top right nav) \u2192 **Projects** and click the project you want to connect\n2. Copy the **API Key** from the project table (Manager role required)\n3. Click **Generate Secret Key**, name it, and copy it immediately (the secret is only shown once)\n4. Paste both values into the fields below",
|
|
94424
|
+
secrets: {
|
|
94425
|
+
AMPLITUDE_API_KEY: {
|
|
94426
|
+
label: "API Key",
|
|
94427
|
+
required: true,
|
|
94428
|
+
placeholder: "32-char hex key"
|
|
94429
|
+
},
|
|
94430
|
+
AMPLITUDE_SECRET_KEY: {
|
|
94431
|
+
label: "Secret Key",
|
|
94432
|
+
required: true,
|
|
94433
|
+
placeholder: "32-char hex secret"
|
|
94434
|
+
}
|
|
94435
|
+
}
|
|
94436
|
+
}
|
|
94437
|
+
},
|
|
94438
|
+
defaultAuthMethod: "api-token"
|
|
94439
|
+
},
|
|
94440
|
+
attio: {
|
|
94441
|
+
label: "Attio",
|
|
94442
|
+
environmentMapping: {
|
|
94443
|
+
ATTIO_TOKEN: "$secrets.ATTIO_TOKEN"
|
|
94444
|
+
},
|
|
94445
|
+
helpText: "Connect your Attio workspace to manage CRM records \u2014 companies, people, deals, custom objects \u2014 plus notes, tasks, lists, and comments",
|
|
94446
|
+
authMethods: {
|
|
94447
|
+
"api-token": {
|
|
94448
|
+
label: "API Key",
|
|
94449
|
+
helpText: "1. Open [Attio](https://app.attio.com) and sign in\n2. Open **Workspace settings** from the dropdown beside your workspace name\n3. Click the **Developers** tab\n4. Click **+ New access token**, give it a name, and select the scopes you need\n5. Click **Create**, then copy the token (shown once)",
|
|
94450
|
+
secrets: {
|
|
94451
|
+
ATTIO_TOKEN: {
|
|
94452
|
+
label: "API Key",
|
|
94453
|
+
required: true,
|
|
94454
|
+
placeholder: "your-attio-access-token"
|
|
94455
|
+
}
|
|
94456
|
+
}
|
|
94457
|
+
}
|
|
94458
|
+
},
|
|
94459
|
+
defaultAuthMethod: "api-token"
|
|
94460
|
+
},
|
|
94461
|
+
buffer: {
|
|
94462
|
+
label: "Buffer",
|
|
94463
|
+
environmentMapping: {
|
|
94464
|
+
BUFFER_TOKEN: "$secrets.BUFFER_TOKEN"
|
|
94465
|
+
},
|
|
94466
|
+
helpText: "Connect your Buffer account to schedule, draft, and publish social media posts across your connected channels (Twitter/X, LinkedIn, Instagram, Facebook, TikTok, Threads, Bluesky, Mastodon, Pinterest, YouTube). **Note: Buffer's API is currently in beta.**",
|
|
94467
|
+
authMethods: {
|
|
94468
|
+
"api-token": {
|
|
94469
|
+
label: "API Key",
|
|
94470
|
+
helpText: "1. Log in to [Buffer](https://publish.buffer.com) and go to **Settings > Developer Dashboard** (you must be an **Org Owner** \u2014 paid accounts can create up to 5 keys; free accounts get 1).\n2. Click **Create API Key**, give it a name, and set an expiration if desired.\n3. Copy the key immediately \u2014 it's only shown once.\n4. Paste it here.\n\n**Note:** Buffer's API is currently in beta.",
|
|
94471
|
+
secrets: {
|
|
94472
|
+
BUFFER_TOKEN: {
|
|
94473
|
+
label: "API Key",
|
|
94474
|
+
required: true,
|
|
94475
|
+
placeholder: "Buffer personal API key"
|
|
94476
|
+
}
|
|
94477
|
+
}
|
|
94478
|
+
}
|
|
94479
|
+
},
|
|
94480
|
+
defaultAuthMethod: "api-token"
|
|
94481
|
+
},
|
|
94482
|
+
coda: {
|
|
94483
|
+
label: "Coda",
|
|
94484
|
+
environmentMapping: {
|
|
94485
|
+
CODA_TOKEN: "$secrets.CODA_TOKEN"
|
|
94486
|
+
},
|
|
94487
|
+
helpText: "Connect your Coda account to read and write docs, tables, rows, and pages",
|
|
94488
|
+
authMethods: {
|
|
94489
|
+
"api-token": {
|
|
94490
|
+
label: "API Token",
|
|
94491
|
+
helpText: "1. Open Coda and click your avatar (bottom left) then **Account Settings**\n2. Scroll to **API Settings**\n3. Click **Generate API Token**, give it a name, optionally restrict scope\n4. Copy the token and paste it here",
|
|
94492
|
+
secrets: {
|
|
94493
|
+
CODA_TOKEN: {
|
|
94494
|
+
label: "API Token",
|
|
94495
|
+
required: true,
|
|
94496
|
+
placeholder: "your-coda-api-token"
|
|
94497
|
+
}
|
|
94498
|
+
}
|
|
94499
|
+
}
|
|
94500
|
+
},
|
|
94501
|
+
defaultAuthMethod: "api-token"
|
|
94502
|
+
},
|
|
94503
|
+
freshdesk: {
|
|
94504
|
+
label: "Freshdesk",
|
|
94505
|
+
tags: ["helpdesk", "tickets", "customer-support"],
|
|
94506
|
+
environmentMapping: {
|
|
94507
|
+
FRESHDESK_TOKEN: "$secrets.FRESHDESK_TOKEN",
|
|
94508
|
+
FRESHDESK_DOMAIN: "$vars.FRESHDESK_DOMAIN"
|
|
94509
|
+
},
|
|
94510
|
+
featureFlag: "freshdeskConnector" /* FreshdeskConnector */,
|
|
94511
|
+
helpText: "Connect your Freshdesk account to manage support tickets, contacts, companies, agents, and knowledge base articles",
|
|
94512
|
+
authMethods: {
|
|
94513
|
+
"api-token": {
|
|
94514
|
+
label: "API Key",
|
|
94515
|
+
helpText: "1. Log in to Freshdesk and click your profile picture (top right), then **Profile Settings**\n2. On the right pane, click **View API Key** and complete the captcha\n3. Copy the API key\n4. Enter your Freshdesk subdomain \u2014 the prefix of `https://<subdomain>.freshdesk.com`",
|
|
94516
|
+
secrets: {
|
|
94517
|
+
FRESHDESK_TOKEN: {
|
|
94518
|
+
label: "API Key",
|
|
94519
|
+
required: true
|
|
94520
|
+
},
|
|
94521
|
+
FRESHDESK_DOMAIN: {
|
|
94522
|
+
label: "Subdomain",
|
|
94523
|
+
required: true,
|
|
94524
|
+
type: "variable",
|
|
94525
|
+
placeholder: "your-subdomain"
|
|
94526
|
+
}
|
|
94527
|
+
}
|
|
94528
|
+
}
|
|
94529
|
+
},
|
|
94530
|
+
defaultAuthMethod: "api-token"
|
|
94531
|
+
},
|
|
94532
|
+
miro: {
|
|
94533
|
+
label: "Miro",
|
|
94534
|
+
environmentMapping: {
|
|
94535
|
+
MIRO_TOKEN: "$secrets.MIRO_TOKEN"
|
|
94536
|
+
},
|
|
94537
|
+
helpText: "Connect your Miro account to create and manage boards, sticky notes, shapes, text, and other items on the visual collaboration whiteboard",
|
|
94538
|
+
authMethods: {
|
|
94539
|
+
"api-token": {
|
|
94540
|
+
label: "Access Token",
|
|
94541
|
+
helpText: "1. Go to [Miro App Settings](https://miro.com/app/settings/user-profile/apps) and click **Create new app**\n2. Fill in the app name and description\n3. **Important:** when asked about token expiration, select **Non-expiring access token** \u2014 this choice is permanent for the app\n4. On the app's page, open **Permissions** and check the scopes you need (e.g. `boards:read`, `boards:write`)\n5. Click **Install app and get OAuth token**, select your team, and copy the token\n6. Paste the token here",
|
|
94542
|
+
secrets: {
|
|
94543
|
+
MIRO_TOKEN: {
|
|
94544
|
+
label: "Access Token",
|
|
94545
|
+
required: true,
|
|
94546
|
+
placeholder: "non-expiring access token"
|
|
94547
|
+
}
|
|
94548
|
+
}
|
|
94549
|
+
}
|
|
94550
|
+
},
|
|
94551
|
+
defaultAuthMethod: "api-token"
|
|
94552
|
+
},
|
|
94553
|
+
mixpanel: {
|
|
94554
|
+
label: "Mixpanel",
|
|
94555
|
+
tags: ["analytics", "product-analytics", "events"],
|
|
94556
|
+
environmentMapping: {
|
|
94557
|
+
MIXPANEL_SERVICE_ACCOUNT_USERNAME: "$secrets.MIXPANEL_SERVICE_ACCOUNT_USERNAME",
|
|
94558
|
+
MIXPANEL_SERVICE_ACCOUNT_SECRET: "$secrets.MIXPANEL_SERVICE_ACCOUNT_SECRET",
|
|
94559
|
+
MIXPANEL_PROJECT_ID: "$vars.MIXPANEL_PROJECT_ID"
|
|
94560
|
+
},
|
|
94561
|
+
helpText: "Connect your Mixpanel project to query Insights, Funnels, JQL, raw event export, and ingest events via /import",
|
|
94562
|
+
authMethods: {
|
|
94563
|
+
"api-token": {
|
|
94564
|
+
label: "Service Account",
|
|
94565
|
+
helpText: "1. In Mixpanel, open **Organization Settings \u2192 Service Accounts** (or **Project Settings \u2192 Service Accounts**)\n2. Click **Add Service Account**, give it a name, and choose a role (minimum **Member**); optionally set an expiration\n3. Copy the **Username** and **Secret** immediately \u2014 the secret is only shown once\n4. Open **Project Settings \u2192 Overview \u2192 Access Keys** and copy your **Project ID**\n5. Paste all three values below",
|
|
94566
|
+
secrets: {
|
|
94567
|
+
MIXPANEL_SERVICE_ACCOUNT_USERNAME: {
|
|
94568
|
+
label: "Service Account Username",
|
|
94569
|
+
required: true,
|
|
94570
|
+
placeholder: "my-sa.12ab34"
|
|
94571
|
+
},
|
|
94572
|
+
MIXPANEL_SERVICE_ACCOUNT_SECRET: {
|
|
94573
|
+
label: "Service Account Secret",
|
|
94574
|
+
required: true
|
|
94575
|
+
},
|
|
94576
|
+
MIXPANEL_PROJECT_ID: {
|
|
94577
|
+
label: "Project ID",
|
|
94578
|
+
required: true,
|
|
94579
|
+
type: "variable",
|
|
94580
|
+
placeholder: "1234567"
|
|
94581
|
+
}
|
|
94582
|
+
}
|
|
94583
|
+
}
|
|
94584
|
+
},
|
|
94585
|
+
defaultAuthMethod: "api-token"
|
|
94586
|
+
},
|
|
94390
94587
|
typeform: {
|
|
94391
94588
|
label: "Typeform",
|
|
94392
94589
|
environmentMapping: {
|
|
@@ -94440,6 +94637,96 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
94440
94637
|
tokenUrl: "/api/test/oauth-provider/token",
|
|
94441
94638
|
scopes: ["read"]
|
|
94442
94639
|
}
|
|
94640
|
+
},
|
|
94641
|
+
pandadoc: {
|
|
94642
|
+
label: "PandaDoc",
|
|
94643
|
+
environmentMapping: {
|
|
94644
|
+
PANDADOC_TOKEN: "$secrets.PANDADOC_TOKEN"
|
|
94645
|
+
},
|
|
94646
|
+
helpText: "Connect your PandaDoc account to create, send, and manage contracts, proposals, quotes, and e-signature documents",
|
|
94647
|
+
authMethods: {
|
|
94648
|
+
"api-token": {
|
|
94649
|
+
label: "API Key",
|
|
94650
|
+
helpText: "1. In PandaDoc, go to **Settings > Integrations > API**\n2. Click **Generate Production Key** (requires an API-enabled plan) or **Generate Sandbox Key** for testing\n3. Copy the key and paste it here\n\nNote: Only Org Admins can generate keys. Sandbox keys work for free but signed documents have no legal validity.",
|
|
94651
|
+
secrets: {
|
|
94652
|
+
PANDADOC_TOKEN: {
|
|
94653
|
+
label: "API Key",
|
|
94654
|
+
required: true,
|
|
94655
|
+
placeholder: "your PandaDoc API key"
|
|
94656
|
+
}
|
|
94657
|
+
}
|
|
94658
|
+
}
|
|
94659
|
+
},
|
|
94660
|
+
defaultAuthMethod: "api-token"
|
|
94661
|
+
},
|
|
94662
|
+
greenhouse: {
|
|
94663
|
+
label: "Greenhouse",
|
|
94664
|
+
environmentMapping: {
|
|
94665
|
+
GREENHOUSE_TOKEN: "$secrets.GREENHOUSE_TOKEN"
|
|
94666
|
+
},
|
|
94667
|
+
helpText: "Connect your Greenhouse account to read candidates, applications, jobs, offers, and scheduled interviews, and to create candidates and activity-feed notes via the Harvest API. Note: Harvest v1/v2 will be deprecated on August 31, 2026 \u2014 migrate to OAuth v3 before that date.",
|
|
94668
|
+
authMethods: {
|
|
94669
|
+
"api-token": {
|
|
94670
|
+
label: "API Key",
|
|
94671
|
+
helpText: "1. In Greenhouse, click **Configure** (gear icon) \u2192 **Dev Center** (left sidebar)\n2. Click **API Credential Management** \u2192 **Create new API credentials**\n3. For **API type**, select **Harvest API** (v1/v2). For **Partner**, choose **Custom** (or **Unlisted vendor**). Description: **vm0**\n4. Select the endpoints you want this key to access (permission scoping)\n5. Click **View and store credentials** and copy the API key \u2014 it is only shown once\n6. Paste it here\n\n**Note:** Harvest v1/v2 will be deprecated on August 31, 2026; migrate to OAuth v3 before that date.",
|
|
94672
|
+
secrets: {
|
|
94673
|
+
GREENHOUSE_TOKEN: {
|
|
94674
|
+
label: "API Key",
|
|
94675
|
+
required: true,
|
|
94676
|
+
placeholder: "your-greenhouse-harvest-api-key"
|
|
94677
|
+
}
|
|
94678
|
+
}
|
|
94679
|
+
}
|
|
94680
|
+
},
|
|
94681
|
+
defaultAuthMethod: "api-token"
|
|
94682
|
+
},
|
|
94683
|
+
zoom: {
|
|
94684
|
+
label: "Zoom",
|
|
94685
|
+
environmentMapping: {
|
|
94686
|
+
ZOOM_TOKEN: "$secrets.ZOOM_ACCESS_TOKEN"
|
|
94687
|
+
},
|
|
94688
|
+
featureFlag: "zoomConnector" /* ZoomConnector */,
|
|
94689
|
+
helpText: "Connect your Zoom account to schedule meetings, manage cloud recordings, and access webinar and participant data",
|
|
94690
|
+
authMethods: {
|
|
94691
|
+
oauth: {
|
|
94692
|
+
label: "OAuth (Recommended)",
|
|
94693
|
+
helpText: "Sign in with Zoom to grant access.",
|
|
94694
|
+
secrets: {
|
|
94695
|
+
ZOOM_ACCESS_TOKEN: {
|
|
94696
|
+
label: "Access Token",
|
|
94697
|
+
required: true
|
|
94698
|
+
},
|
|
94699
|
+
ZOOM_REFRESH_TOKEN: {
|
|
94700
|
+
label: "Refresh Token",
|
|
94701
|
+
required: true
|
|
94702
|
+
}
|
|
94703
|
+
}
|
|
94704
|
+
}
|
|
94705
|
+
},
|
|
94706
|
+
defaultAuthMethod: "oauth",
|
|
94707
|
+
oauth: {
|
|
94708
|
+
authorizationUrl: "https://zoom.us/oauth/authorize",
|
|
94709
|
+
tokenUrl: "https://zoom.us/oauth/token",
|
|
94710
|
+
// Granular scopes (Zoom's "resource:action:target" format). Covers the
|
|
94711
|
+
// core read/write flows documented in the zoom skill: users, meetings,
|
|
94712
|
+
// past-meeting data, cloud recordings, and webinars.
|
|
94713
|
+
scopes: [
|
|
94714
|
+
"user:read:user",
|
|
94715
|
+
"meeting:read:list_meetings",
|
|
94716
|
+
"meeting:read:meeting",
|
|
94717
|
+
"meeting:write:meeting",
|
|
94718
|
+
"meeting:update:meeting",
|
|
94719
|
+
"meeting:delete:meeting",
|
|
94720
|
+
"meeting:update:status",
|
|
94721
|
+
"meeting:read:list_past_participants",
|
|
94722
|
+
"meeting:read:past_meeting",
|
|
94723
|
+
"cloud_recording:read:list_user_recordings",
|
|
94724
|
+
"cloud_recording:read:list_recording_files",
|
|
94725
|
+
"cloud_recording:read:recording",
|
|
94726
|
+
"webinar:read:list_webinars",
|
|
94727
|
+
"webinar:read:webinar"
|
|
94728
|
+
]
|
|
94729
|
+
}
|
|
94443
94730
|
}
|
|
94444
94731
|
};
|
|
94445
94732
|
var CONNECTOR_TYPES = CONNECTOR_TYPES_DEF;
|
|
@@ -94700,6 +94987,47 @@ var agentphoneFirewall = {
|
|
|
94700
94987
|
]
|
|
94701
94988
|
};
|
|
94702
94989
|
|
|
94990
|
+
// ../../packages/core/src/firewalls/amplitude.generated.ts
|
|
94991
|
+
init_esm_shims();
|
|
94992
|
+
var amplitudeFirewall = {
|
|
94993
|
+
name: "amplitude",
|
|
94994
|
+
description: "Amplitude product analytics API",
|
|
94995
|
+
placeholders: {
|
|
94996
|
+
AMPLITUDE_API_KEY: "c0ffee5afe10ca1c0ffee5afe10ca1c0",
|
|
94997
|
+
AMPLITUDE_SECRET_KEY: "5afe10ca1c0ffee5afe10ca1c0ffee5a"
|
|
94998
|
+
},
|
|
94999
|
+
apis: [
|
|
95000
|
+
{
|
|
95001
|
+
base: "https://amplitude.com",
|
|
95002
|
+
auth: {
|
|
95003
|
+
headers: {
|
|
95004
|
+
Authorization: "${{ basic(secrets.AMPLITUDE_API_KEY, secrets.AMPLITUDE_SECRET_KEY) }}"
|
|
95005
|
+
}
|
|
95006
|
+
},
|
|
95007
|
+
permissions: []
|
|
95008
|
+
},
|
|
95009
|
+
{
|
|
95010
|
+
base: "https://analytics.eu.amplitude.com",
|
|
95011
|
+
auth: {
|
|
95012
|
+
headers: {
|
|
95013
|
+
Authorization: "${{ basic(secrets.AMPLITUDE_API_KEY, secrets.AMPLITUDE_SECRET_KEY) }}"
|
|
95014
|
+
}
|
|
95015
|
+
},
|
|
95016
|
+
permissions: []
|
|
95017
|
+
},
|
|
95018
|
+
{
|
|
95019
|
+
base: "https://api2.amplitude.com",
|
|
95020
|
+
auth: {},
|
|
95021
|
+
permissions: []
|
|
95022
|
+
},
|
|
95023
|
+
{
|
|
95024
|
+
base: "https://api.eu.amplitude.com",
|
|
95025
|
+
auth: {},
|
|
95026
|
+
permissions: []
|
|
95027
|
+
}
|
|
95028
|
+
]
|
|
95029
|
+
};
|
|
95030
|
+
|
|
94703
95031
|
// ../../packages/core/src/firewalls/anthropic-managed-agents.generated.ts
|
|
94704
95032
|
init_esm_shims();
|
|
94705
95033
|
var anthropicManagedAgentsFirewall = {
|
|
@@ -94946,6 +95274,27 @@ var asanaFirewall = {
|
|
|
94946
95274
|
]
|
|
94947
95275
|
};
|
|
94948
95276
|
|
|
95277
|
+
// ../../packages/core/src/firewalls/attio.generated.ts
|
|
95278
|
+
init_esm_shims();
|
|
95279
|
+
var attioFirewall = {
|
|
95280
|
+
name: "attio",
|
|
95281
|
+
description: "Attio",
|
|
95282
|
+
placeholders: {
|
|
95283
|
+
ATTIO_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocal"
|
|
95284
|
+
},
|
|
95285
|
+
apis: [
|
|
95286
|
+
{
|
|
95287
|
+
base: "https://api.attio.com",
|
|
95288
|
+
auth: {
|
|
95289
|
+
headers: {
|
|
95290
|
+
Authorization: "Bearer ${{ secrets.ATTIO_TOKEN }}"
|
|
95291
|
+
}
|
|
95292
|
+
},
|
|
95293
|
+
permissions: []
|
|
95294
|
+
}
|
|
95295
|
+
]
|
|
95296
|
+
};
|
|
95297
|
+
|
|
94949
95298
|
// ../../packages/core/src/firewalls/atlassian.generated.ts
|
|
94950
95299
|
init_esm_shims();
|
|
94951
95300
|
var atlassianFirewall = {
|
|
@@ -95472,6 +95821,36 @@ var browserlessFirewall = {
|
|
|
95472
95821
|
]
|
|
95473
95822
|
};
|
|
95474
95823
|
|
|
95824
|
+
// ../../packages/core/src/firewalls/buffer.generated.ts
|
|
95825
|
+
init_esm_shims();
|
|
95826
|
+
var bufferFirewall = {
|
|
95827
|
+
name: "buffer",
|
|
95828
|
+
description: "Buffer",
|
|
95829
|
+
placeholders: {
|
|
95830
|
+
BUFFER_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocal000"
|
|
95831
|
+
},
|
|
95832
|
+
apis: [
|
|
95833
|
+
{
|
|
95834
|
+
base: "https://api.buffer.com",
|
|
95835
|
+
auth: {
|
|
95836
|
+
headers: {
|
|
95837
|
+
Authorization: "Bearer ${{ secrets.BUFFER_TOKEN }}"
|
|
95838
|
+
}
|
|
95839
|
+
},
|
|
95840
|
+
permissions: []
|
|
95841
|
+
},
|
|
95842
|
+
{
|
|
95843
|
+
base: "https://api.bufferapp.com",
|
|
95844
|
+
auth: {
|
|
95845
|
+
headers: {
|
|
95846
|
+
Authorization: "Bearer ${{ secrets.BUFFER_TOKEN }}"
|
|
95847
|
+
}
|
|
95848
|
+
},
|
|
95849
|
+
permissions: []
|
|
95850
|
+
}
|
|
95851
|
+
]
|
|
95852
|
+
};
|
|
95853
|
+
|
|
95475
95854
|
// ../../packages/core/src/firewalls/cal-com.generated.ts
|
|
95476
95855
|
init_esm_shims();
|
|
95477
95856
|
var calComFirewall = {
|
|
@@ -95619,6 +95998,27 @@ var cloudflareFirewall = {
|
|
|
95619
95998
|
]
|
|
95620
95999
|
};
|
|
95621
96000
|
|
|
96001
|
+
// ../../packages/core/src/firewalls/coda.generated.ts
|
|
96002
|
+
init_esm_shims();
|
|
96003
|
+
var codaFirewall = {
|
|
96004
|
+
name: "coda",
|
|
96005
|
+
description: "Coda",
|
|
96006
|
+
placeholders: {
|
|
96007
|
+
CODA_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafe"
|
|
96008
|
+
},
|
|
96009
|
+
apis: [
|
|
96010
|
+
{
|
|
96011
|
+
base: "https://coda.io",
|
|
96012
|
+
auth: {
|
|
96013
|
+
headers: {
|
|
96014
|
+
Authorization: "Bearer ${{ secrets.CODA_TOKEN }}"
|
|
96015
|
+
}
|
|
96016
|
+
},
|
|
96017
|
+
permissions: []
|
|
96018
|
+
}
|
|
96019
|
+
]
|
|
96020
|
+
};
|
|
96021
|
+
|
|
95622
96022
|
// ../../packages/core/src/firewalls/cronlytic.generated.ts
|
|
95623
96023
|
init_esm_shims();
|
|
95624
96024
|
var cronlyticFirewall = {
|
|
@@ -97074,6 +97474,27 @@ var dropboxFirewall = {
|
|
|
97074
97474
|
]
|
|
97075
97475
|
};
|
|
97076
97476
|
|
|
97477
|
+
// ../../packages/core/src/firewalls/dropbox-sign.generated.ts
|
|
97478
|
+
init_esm_shims();
|
|
97479
|
+
var dropboxSignFirewall = {
|
|
97480
|
+
name: "dropbox-sign",
|
|
97481
|
+
description: "Dropbox Sign (HelloSign) e-signature API",
|
|
97482
|
+
placeholders: {
|
|
97483
|
+
DROPBOX_SIGN_TOKEN: "c0ffee5afe10ca1c0ffee5afe10ca1c0ffee5afe"
|
|
97484
|
+
},
|
|
97485
|
+
apis: [
|
|
97486
|
+
{
|
|
97487
|
+
base: "https://api.hellosign.com",
|
|
97488
|
+
auth: {
|
|
97489
|
+
headers: {
|
|
97490
|
+
Authorization: "${{ basic(secrets.DROPBOX_SIGN_TOKEN, ) }}"
|
|
97491
|
+
}
|
|
97492
|
+
},
|
|
97493
|
+
permissions: []
|
|
97494
|
+
}
|
|
97495
|
+
]
|
|
97496
|
+
};
|
|
97497
|
+
|
|
97077
97498
|
// ../../packages/core/src/firewalls/duffel.generated.ts
|
|
97078
97499
|
init_esm_shims();
|
|
97079
97500
|
var duffelFirewall = {
|
|
@@ -97423,6 +97844,27 @@ var firefliesFirewall = {
|
|
|
97423
97844
|
]
|
|
97424
97845
|
};
|
|
97425
97846
|
|
|
97847
|
+
// ../../packages/core/src/firewalls/freshdesk.generated.ts
|
|
97848
|
+
init_esm_shims();
|
|
97849
|
+
var freshdeskFirewall = {
|
|
97850
|
+
name: "freshdesk",
|
|
97851
|
+
description: "Freshdesk helpdesk and customer support API",
|
|
97852
|
+
placeholders: {
|
|
97853
|
+
FRESHDESK_TOKEN: "CoffeeSafeLocalCoffe"
|
|
97854
|
+
},
|
|
97855
|
+
apis: [
|
|
97856
|
+
{
|
|
97857
|
+
base: "https://${{ vars.FRESHDESK_DOMAIN }}.freshdesk.com",
|
|
97858
|
+
auth: {
|
|
97859
|
+
headers: {
|
|
97860
|
+
Authorization: "${{ basic(secrets.FRESHDESK_TOKEN, ) }}"
|
|
97861
|
+
}
|
|
97862
|
+
},
|
|
97863
|
+
permissions: []
|
|
97864
|
+
}
|
|
97865
|
+
]
|
|
97866
|
+
};
|
|
97867
|
+
|
|
97426
97868
|
// ../../packages/core/src/firewalls/gamma.generated.ts
|
|
97427
97869
|
init_esm_shims();
|
|
97428
97870
|
var gammaFirewall = {
|
|
@@ -98817,6 +99259,27 @@ var granolaFirewall = {
|
|
|
98817
99259
|
]
|
|
98818
99260
|
};
|
|
98819
99261
|
|
|
99262
|
+
// ../../packages/core/src/firewalls/greenhouse.generated.ts
|
|
99263
|
+
init_esm_shims();
|
|
99264
|
+
var greenhouseFirewall = {
|
|
99265
|
+
name: "greenhouse",
|
|
99266
|
+
description: "Greenhouse Harvest API",
|
|
99267
|
+
placeholders: {
|
|
99268
|
+
GREENHOUSE_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSa"
|
|
99269
|
+
},
|
|
99270
|
+
apis: [
|
|
99271
|
+
{
|
|
99272
|
+
base: "https://harvest.greenhouse.io",
|
|
99273
|
+
auth: {
|
|
99274
|
+
headers: {
|
|
99275
|
+
Authorization: "${{ basic(secrets.GREENHOUSE_TOKEN, ) }}"
|
|
99276
|
+
}
|
|
99277
|
+
},
|
|
99278
|
+
permissions: []
|
|
99279
|
+
}
|
|
99280
|
+
]
|
|
99281
|
+
};
|
|
99282
|
+
|
|
98820
99283
|
// ../../packages/core/src/firewalls/heygen.generated.ts
|
|
98821
99284
|
init_esm_shims();
|
|
98822
99285
|
var heygenFirewall = {
|
|
@@ -99492,6 +99955,67 @@ var minimaxFirewall = {
|
|
|
99492
99955
|
]
|
|
99493
99956
|
};
|
|
99494
99957
|
|
|
99958
|
+
// ../../packages/core/src/firewalls/miro.generated.ts
|
|
99959
|
+
init_esm_shims();
|
|
99960
|
+
var miroFirewall = {
|
|
99961
|
+
name: "miro",
|
|
99962
|
+
description: "Miro",
|
|
99963
|
+
placeholders: {
|
|
99964
|
+
MIRO_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocal"
|
|
99965
|
+
},
|
|
99966
|
+
apis: [
|
|
99967
|
+
{
|
|
99968
|
+
base: "https://api.miro.com",
|
|
99969
|
+
auth: {
|
|
99970
|
+
headers: {
|
|
99971
|
+
Authorization: "Bearer ${{ secrets.MIRO_TOKEN }}"
|
|
99972
|
+
}
|
|
99973
|
+
},
|
|
99974
|
+
permissions: []
|
|
99975
|
+
}
|
|
99976
|
+
]
|
|
99977
|
+
};
|
|
99978
|
+
|
|
99979
|
+
// ../../packages/core/src/firewalls/mixpanel.generated.ts
|
|
99980
|
+
init_esm_shims();
|
|
99981
|
+
var mixpanelFirewall = {
|
|
99982
|
+
name: "mixpanel",
|
|
99983
|
+
description: "Mixpanel product analytics API",
|
|
99984
|
+
placeholders: {
|
|
99985
|
+
MIXPANEL_SERVICE_ACCOUNT_USERNAME: "CoffeeSafeLocalCoffe",
|
|
99986
|
+
MIXPANEL_SERVICE_ACCOUNT_SECRET: "CoffeeSafeLocalCoffeeSafeLocalCo"
|
|
99987
|
+
},
|
|
99988
|
+
apis: [
|
|
99989
|
+
{
|
|
99990
|
+
base: "https://mixpanel.com",
|
|
99991
|
+
auth: {
|
|
99992
|
+
headers: {
|
|
99993
|
+
Authorization: "${{ basic(secrets.MIXPANEL_SERVICE_ACCOUNT_USERNAME, secrets.MIXPANEL_SERVICE_ACCOUNT_SECRET) }}"
|
|
99994
|
+
}
|
|
99995
|
+
},
|
|
99996
|
+
permissions: []
|
|
99997
|
+
},
|
|
99998
|
+
{
|
|
99999
|
+
base: "https://data.mixpanel.com",
|
|
100000
|
+
auth: {
|
|
100001
|
+
headers: {
|
|
100002
|
+
Authorization: "${{ basic(secrets.MIXPANEL_SERVICE_ACCOUNT_USERNAME, secrets.MIXPANEL_SERVICE_ACCOUNT_SECRET) }}"
|
|
100003
|
+
}
|
|
100004
|
+
},
|
|
100005
|
+
permissions: []
|
|
100006
|
+
},
|
|
100007
|
+
{
|
|
100008
|
+
base: "https://api.mixpanel.com",
|
|
100009
|
+
auth: {
|
|
100010
|
+
headers: {
|
|
100011
|
+
Authorization: "${{ basic(secrets.MIXPANEL_SERVICE_ACCOUNT_USERNAME, secrets.MIXPANEL_SERVICE_ACCOUNT_SECRET) }}"
|
|
100012
|
+
}
|
|
100013
|
+
},
|
|
100014
|
+
permissions: []
|
|
100015
|
+
}
|
|
100016
|
+
]
|
|
100017
|
+
};
|
|
100018
|
+
|
|
99495
100019
|
// ../../packages/core/src/firewalls/monday.generated.ts
|
|
99496
100020
|
init_esm_shims();
|
|
99497
100021
|
var mondayFirewall = {
|
|
@@ -99717,6 +100241,27 @@ var outlookMailFirewall = {
|
|
|
99717
100241
|
]
|
|
99718
100242
|
};
|
|
99719
100243
|
|
|
100244
|
+
// ../../packages/core/src/firewalls/pandadoc.generated.ts
|
|
100245
|
+
init_esm_shims();
|
|
100246
|
+
var pandadocFirewall = {
|
|
100247
|
+
name: "pandadoc",
|
|
100248
|
+
description: "PandaDoc Public API",
|
|
100249
|
+
placeholders: {
|
|
100250
|
+
PANDADOC_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoff"
|
|
100251
|
+
},
|
|
100252
|
+
apis: [
|
|
100253
|
+
{
|
|
100254
|
+
base: "https://api.pandadoc.com",
|
|
100255
|
+
auth: {
|
|
100256
|
+
headers: {
|
|
100257
|
+
Authorization: "API-Key ${{ secrets.PANDADOC_TOKEN }}"
|
|
100258
|
+
}
|
|
100259
|
+
},
|
|
100260
|
+
permissions: []
|
|
100261
|
+
}
|
|
100262
|
+
]
|
|
100263
|
+
};
|
|
100264
|
+
|
|
99720
100265
|
// ../../packages/core/src/firewalls/pdf4me.generated.ts
|
|
99721
100266
|
init_esm_shims();
|
|
99722
100267
|
var pdf4meFirewall = {
|
|
@@ -103153,10 +103698,32 @@ var zeptomailFirewall = {
|
|
|
103153
103698
|
]
|
|
103154
103699
|
};
|
|
103155
103700
|
|
|
103701
|
+
// ../../packages/core/src/firewalls/zoom.generated.ts
|
|
103702
|
+
init_esm_shims();
|
|
103703
|
+
var zoomFirewall = {
|
|
103704
|
+
name: "zoom",
|
|
103705
|
+
description: "Zoom API",
|
|
103706
|
+
placeholders: {
|
|
103707
|
+
ZOOM_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocal"
|
|
103708
|
+
},
|
|
103709
|
+
apis: [
|
|
103710
|
+
{
|
|
103711
|
+
base: "https://api.zoom.us",
|
|
103712
|
+
auth: {
|
|
103713
|
+
headers: {
|
|
103714
|
+
Authorization: "Bearer ${{ secrets.ZOOM_TOKEN }}"
|
|
103715
|
+
}
|
|
103716
|
+
},
|
|
103717
|
+
permissions: []
|
|
103718
|
+
}
|
|
103719
|
+
]
|
|
103720
|
+
};
|
|
103721
|
+
|
|
103156
103722
|
// ../../packages/core/src/firewalls/index.ts
|
|
103157
103723
|
var CONNECTOR_FIREWALLS = {
|
|
103158
103724
|
agentmail: agentmailFirewall,
|
|
103159
103725
|
agentphone: agentphoneFirewall,
|
|
103726
|
+
amplitude: amplitudeFirewall,
|
|
103160
103727
|
"anthropic-managed-agents": anthropicManagedAgentsFirewall,
|
|
103161
103728
|
ahrefs: ahrefsFirewall,
|
|
103162
103729
|
airtable: airtableFirewall,
|
|
@@ -103164,6 +103731,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103164
103731
|
pika: pikaFirewall,
|
|
103165
103732
|
apify: apifyFirewall,
|
|
103166
103733
|
asana: asanaFirewall,
|
|
103734
|
+
attio: attioFirewall,
|
|
103167
103735
|
atlassian: atlassianFirewall,
|
|
103168
103736
|
axiom: axiomFirewall,
|
|
103169
103737
|
bitrix: bitrixFirewall,
|
|
@@ -103172,6 +103740,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103172
103740
|
"bright-data": brightDataFirewall,
|
|
103173
103741
|
browserbase: browserbaseFirewall,
|
|
103174
103742
|
browserless: browserlessFirewall,
|
|
103743
|
+
buffer: bufferFirewall,
|
|
103175
103744
|
"cal-com": calComFirewall,
|
|
103176
103745
|
calendly: calendlyFirewall,
|
|
103177
103746
|
canva: canvaFirewall,
|
|
@@ -103179,6 +103748,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103179
103748
|
clickup: clickupFirewall,
|
|
103180
103749
|
close: closeFirewall,
|
|
103181
103750
|
cloudflare: cloudflareFirewall,
|
|
103751
|
+
coda: codaFirewall,
|
|
103182
103752
|
cronlytic: cronlyticFirewall,
|
|
103183
103753
|
"customer-io": customerIoFirewall,
|
|
103184
103754
|
deel: deelFirewall,
|
|
@@ -103193,6 +103763,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103193
103763
|
db9: db9Firewall,
|
|
103194
103764
|
drive9: drive9Firewall,
|
|
103195
103765
|
dropbox: dropboxFirewall,
|
|
103766
|
+
"dropbox-sign": dropboxSignFirewall,
|
|
103196
103767
|
duffel: duffelFirewall,
|
|
103197
103768
|
elevenlabs: elevenlabsFirewall,
|
|
103198
103769
|
explorium: exploriumFirewall,
|
|
@@ -103200,6 +103771,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103200
103771
|
figma: figmaFirewall,
|
|
103201
103772
|
firecrawl: firecrawlFirewall,
|
|
103202
103773
|
fireflies: firefliesFirewall,
|
|
103774
|
+
freshdesk: freshdeskFirewall,
|
|
103203
103775
|
gamma: gammaFirewall,
|
|
103204
103776
|
"garmin-connect": garminConnectFirewall,
|
|
103205
103777
|
github: githubFirewall,
|
|
@@ -103211,6 +103783,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103211
103783
|
"google-meet": googleMeetFirewall,
|
|
103212
103784
|
"google-sheets": googleSheetsFirewall,
|
|
103213
103785
|
granola: granolaFirewall,
|
|
103786
|
+
greenhouse: greenhouseFirewall,
|
|
103214
103787
|
heygen: heygenFirewall,
|
|
103215
103788
|
htmlcsstoimage: htmlcsstoimageFirewall,
|
|
103216
103789
|
hubspot: hubspotFirewall,
|
|
@@ -103238,6 +103811,8 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103238
103811
|
metabase: metabaseFirewall,
|
|
103239
103812
|
"meta-ads": metaAdsFirewall,
|
|
103240
103813
|
minimax: minimaxFirewall,
|
|
103814
|
+
miro: miroFirewall,
|
|
103815
|
+
mixpanel: mixpanelFirewall,
|
|
103241
103816
|
monday: mondayFirewall,
|
|
103242
103817
|
msg9: msg9Firewall,
|
|
103243
103818
|
neon: neonFirewall,
|
|
@@ -103245,6 +103820,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103245
103820
|
openai: openaiFirewall,
|
|
103246
103821
|
"outlook-calendar": outlookCalendarFirewall,
|
|
103247
103822
|
"outlook-mail": outlookMailFirewall,
|
|
103823
|
+
pandadoc: pandadocFirewall,
|
|
103248
103824
|
pdf4me: pdf4meFirewall,
|
|
103249
103825
|
pdfco: pdfcoFirewall,
|
|
103250
103826
|
pdforge: pdforgeFirewall,
|
|
@@ -103296,7 +103872,8 @@ var CONNECTOR_FIREWALLS = {
|
|
|
103296
103872
|
zapier: zapierFirewall,
|
|
103297
103873
|
zapsign: zapsignFirewall,
|
|
103298
103874
|
zendesk: zendeskFirewall,
|
|
103299
|
-
zeptomail: zeptomailFirewall
|
|
103875
|
+
zeptomail: zeptomailFirewall,
|
|
103876
|
+
zoom: zoomFirewall
|
|
103300
103877
|
};
|
|
103301
103878
|
function expandPlaceholders(firewall, connectorType) {
|
|
103302
103879
|
if (!firewall.placeholders) return firewall;
|
|
@@ -110266,6 +110843,23 @@ var chatThreadByIdContract = c11.router({
|
|
|
110266
110843
|
body: c11.noBody()
|
|
110267
110844
|
}
|
|
110268
110845
|
});
|
|
110846
|
+
var chatThreadMarkReadContract = c11.router({
|
|
110847
|
+
markRead: {
|
|
110848
|
+
method: "POST",
|
|
110849
|
+
path: "/api/zero/chat-threads/:id/mark-read",
|
|
110850
|
+
headers: authHeadersSchema,
|
|
110851
|
+
pathParams: external_exports.object({ id: external_exports.string() }),
|
|
110852
|
+
body: external_exports.object({
|
|
110853
|
+
cursor: external_exports.string().datetime().optional()
|
|
110854
|
+
}),
|
|
110855
|
+
responses: {
|
|
110856
|
+
200: external_exports.object({ lastReadAt: external_exports.string() }),
|
|
110857
|
+
401: apiErrorSchema,
|
|
110858
|
+
404: apiErrorSchema
|
|
110859
|
+
},
|
|
110860
|
+
summary: "Mark a chat thread as read up to the given cursor"
|
|
110861
|
+
}
|
|
110862
|
+
});
|
|
110269
110863
|
var chatMessagesContract = c11.router({
|
|
110270
110864
|
send: {
|
|
110271
110865
|
method: "POST",
|
|
@@ -112411,9 +113005,110 @@ var zeroVariablesByNameContract = c28.router({
|
|
|
112411
113005
|
}
|
|
112412
113006
|
});
|
|
112413
113007
|
|
|
112414
|
-
// ../../packages/core/src/contracts/
|
|
113008
|
+
// ../../packages/core/src/contracts/zero-custom-connectors.ts
|
|
112415
113009
|
init_esm_shims();
|
|
112416
113010
|
var c29 = initContract();
|
|
113011
|
+
var customConnectorResponseSchema = external_exports.object({
|
|
113012
|
+
id: external_exports.string().uuid(),
|
|
113013
|
+
slug: external_exports.string(),
|
|
113014
|
+
displayName: external_exports.string(),
|
|
113015
|
+
prefixes: external_exports.array(external_exports.string()),
|
|
113016
|
+
headerName: external_exports.string(),
|
|
113017
|
+
headerTemplate: external_exports.string(),
|
|
113018
|
+
createdAt: external_exports.string(),
|
|
113019
|
+
updatedAt: external_exports.string(),
|
|
113020
|
+
hasSecret: external_exports.boolean()
|
|
113021
|
+
});
|
|
113022
|
+
var customConnectorListResponseSchema = external_exports.object({
|
|
113023
|
+
connectors: external_exports.array(customConnectorResponseSchema)
|
|
113024
|
+
});
|
|
113025
|
+
var createCustomConnectorBodySchema = external_exports.object({
|
|
113026
|
+
displayName: external_exports.string().min(1).max(128),
|
|
113027
|
+
prefixes: external_exports.array(external_exports.string().url()).min(1),
|
|
113028
|
+
headerName: external_exports.string().min(1).max(128),
|
|
113029
|
+
headerTemplate: external_exports.string().min(1),
|
|
113030
|
+
slug: external_exports.string().optional()
|
|
113031
|
+
});
|
|
113032
|
+
var setCustomConnectorSecretBodySchema = external_exports.object({
|
|
113033
|
+
value: external_exports.string().min(1)
|
|
113034
|
+
});
|
|
113035
|
+
var zeroCustomConnectorsContract = c29.router({
|
|
113036
|
+
list: {
|
|
113037
|
+
method: "GET",
|
|
113038
|
+
path: "/api/zero/custom-connectors",
|
|
113039
|
+
headers: authHeadersSchema,
|
|
113040
|
+
responses: {
|
|
113041
|
+
200: customConnectorListResponseSchema,
|
|
113042
|
+
401: apiErrorSchema,
|
|
113043
|
+
500: apiErrorSchema
|
|
113044
|
+
},
|
|
113045
|
+
summary: "List org custom connectors"
|
|
113046
|
+
},
|
|
113047
|
+
create: {
|
|
113048
|
+
method: "POST",
|
|
113049
|
+
path: "/api/zero/custom-connectors",
|
|
113050
|
+
headers: authHeadersSchema,
|
|
113051
|
+
body: createCustomConnectorBodySchema,
|
|
113052
|
+
responses: {
|
|
113053
|
+
201: customConnectorResponseSchema,
|
|
113054
|
+
400: apiErrorSchema,
|
|
113055
|
+
401: apiErrorSchema,
|
|
113056
|
+
403: apiErrorSchema,
|
|
113057
|
+
500: apiErrorSchema
|
|
113058
|
+
},
|
|
113059
|
+
summary: "Create an org custom connector"
|
|
113060
|
+
}
|
|
113061
|
+
});
|
|
113062
|
+
var zeroCustomConnectorByIdContract = c29.router({
|
|
113063
|
+
delete: {
|
|
113064
|
+
method: "DELETE",
|
|
113065
|
+
path: "/api/zero/custom-connectors/:id",
|
|
113066
|
+
headers: authHeadersSchema,
|
|
113067
|
+
pathParams: external_exports.object({ id: external_exports.string().uuid() }),
|
|
113068
|
+
responses: {
|
|
113069
|
+
204: c29.noBody(),
|
|
113070
|
+
401: apiErrorSchema,
|
|
113071
|
+
403: apiErrorSchema,
|
|
113072
|
+
404: apiErrorSchema,
|
|
113073
|
+
500: apiErrorSchema
|
|
113074
|
+
},
|
|
113075
|
+
summary: "Delete an org custom connector"
|
|
113076
|
+
}
|
|
113077
|
+
});
|
|
113078
|
+
var zeroCustomConnectorSecretContract = c29.router({
|
|
113079
|
+
set: {
|
|
113080
|
+
method: "PUT",
|
|
113081
|
+
path: "/api/zero/custom-connectors/:id/secret",
|
|
113082
|
+
headers: authHeadersSchema,
|
|
113083
|
+
pathParams: external_exports.object({ id: external_exports.string().uuid() }),
|
|
113084
|
+
body: setCustomConnectorSecretBodySchema,
|
|
113085
|
+
responses: {
|
|
113086
|
+
204: c29.noBody(),
|
|
113087
|
+
400: apiErrorSchema,
|
|
113088
|
+
401: apiErrorSchema,
|
|
113089
|
+
404: apiErrorSchema,
|
|
113090
|
+
500: apiErrorSchema
|
|
113091
|
+
},
|
|
113092
|
+
summary: "Set the calling user's secret for a custom connector"
|
|
113093
|
+
},
|
|
113094
|
+
delete: {
|
|
113095
|
+
method: "DELETE",
|
|
113096
|
+
path: "/api/zero/custom-connectors/:id/secret",
|
|
113097
|
+
headers: authHeadersSchema,
|
|
113098
|
+
pathParams: external_exports.object({ id: external_exports.string().uuid() }),
|
|
113099
|
+
responses: {
|
|
113100
|
+
204: c29.noBody(),
|
|
113101
|
+
401: apiErrorSchema,
|
|
113102
|
+
404: apiErrorSchema,
|
|
113103
|
+
500: apiErrorSchema
|
|
113104
|
+
},
|
|
113105
|
+
summary: "Clear the calling user's secret for a custom connector"
|
|
113106
|
+
}
|
|
113107
|
+
});
|
|
113108
|
+
|
|
113109
|
+
// ../../packages/core/src/contracts/integrations.ts
|
|
113110
|
+
init_esm_shims();
|
|
113111
|
+
var c30 = initContract();
|
|
112417
113112
|
var sendSlackMessageBodySchema = external_exports.object({
|
|
112418
113113
|
channel: external_exports.string().min(1, "Channel ID is required").optional(),
|
|
112419
113114
|
user: external_exports.string().min(1, "User ID is required").optional(),
|
|
@@ -112431,7 +113126,7 @@ var sendSlackMessageResponseSchema = external_exports.object({
|
|
|
112431
113126
|
ts: external_exports.string().optional(),
|
|
112432
113127
|
channel: external_exports.string().optional()
|
|
112433
113128
|
});
|
|
112434
|
-
var integrationsSlackMessageContract =
|
|
113129
|
+
var integrationsSlackMessageContract = c30.router({
|
|
112435
113130
|
sendMessage: {
|
|
112436
113131
|
method: "POST",
|
|
112437
113132
|
path: "/api/zero/integrations/slack/message",
|
|
@@ -112455,7 +113150,7 @@ var slackUploadInitResponseSchema = external_exports.object({
|
|
|
112455
113150
|
uploadUrl: external_exports.string(),
|
|
112456
113151
|
fileId: external_exports.string()
|
|
112457
113152
|
});
|
|
112458
|
-
var integrationsSlackUploadInitContract =
|
|
113153
|
+
var integrationsSlackUploadInitContract = c30.router({
|
|
112459
113154
|
init: {
|
|
112460
113155
|
method: "POST",
|
|
112461
113156
|
path: "/api/zero/integrations/slack/upload-file/init",
|
|
@@ -112498,7 +113193,7 @@ var sendChatMessageResponseSchema = external_exports.object({
|
|
|
112498
113193
|
threadId: external_exports.string(),
|
|
112499
113194
|
createdAt: external_exports.string()
|
|
112500
113195
|
});
|
|
112501
|
-
var integrationsChatMessageContract =
|
|
113196
|
+
var integrationsChatMessageContract = c30.router({
|
|
112502
113197
|
sendMessage: {
|
|
112503
113198
|
method: "POST",
|
|
112504
113199
|
path: "/api/zero/integrations/chat/message",
|
|
@@ -112514,7 +113209,7 @@ var integrationsChatMessageContract = c29.router({
|
|
|
112514
113209
|
summary: "Send a message to a web chat thread"
|
|
112515
113210
|
}
|
|
112516
113211
|
});
|
|
112517
|
-
var integrationsSlackUploadCompleteContract =
|
|
113212
|
+
var integrationsSlackUploadCompleteContract = c30.router({
|
|
112518
113213
|
complete: {
|
|
112519
113214
|
method: "POST",
|
|
112520
113215
|
path: "/api/zero/integrations/slack/upload-file/complete",
|
|
@@ -112533,7 +113228,7 @@ var integrationsSlackUploadCompleteContract = c29.router({
|
|
|
112533
113228
|
|
|
112534
113229
|
// ../../packages/core/src/contracts/zero-billing.ts
|
|
112535
113230
|
init_esm_shims();
|
|
112536
|
-
var
|
|
113231
|
+
var c31 = initContract();
|
|
112537
113232
|
var autoRechargeSchema = external_exports.object({
|
|
112538
113233
|
enabled: external_exports.boolean(),
|
|
112539
113234
|
threshold: external_exports.number().nullable(),
|
|
@@ -112572,7 +113267,7 @@ var autoRechargeUpdateRequestSchema = external_exports.object({
|
|
|
112572
113267
|
threshold: external_exports.number().int().positive().optional(),
|
|
112573
113268
|
amount: external_exports.number().int().min(1e3).optional()
|
|
112574
113269
|
});
|
|
112575
|
-
var zeroBillingStatusContract =
|
|
113270
|
+
var zeroBillingStatusContract = c31.router({
|
|
112576
113271
|
get: {
|
|
112577
113272
|
method: "GET",
|
|
112578
113273
|
path: "/api/zero/billing/status",
|
|
@@ -112585,7 +113280,7 @@ var zeroBillingStatusContract = c30.router({
|
|
|
112585
113280
|
summary: "Get billing status for current org"
|
|
112586
113281
|
}
|
|
112587
113282
|
});
|
|
112588
|
-
var zeroBillingCheckoutContract =
|
|
113283
|
+
var zeroBillingCheckoutContract = c31.router({
|
|
112589
113284
|
create: {
|
|
112590
113285
|
method: "POST",
|
|
112591
113286
|
path: "/api/zero/billing/checkout",
|
|
@@ -112601,7 +113296,7 @@ var zeroBillingCheckoutContract = c30.router({
|
|
|
112601
113296
|
summary: "Create Stripe checkout session"
|
|
112602
113297
|
}
|
|
112603
113298
|
});
|
|
112604
|
-
var zeroBillingPortalContract =
|
|
113299
|
+
var zeroBillingPortalContract = c31.router({
|
|
112605
113300
|
create: {
|
|
112606
113301
|
method: "POST",
|
|
112607
113302
|
path: "/api/zero/billing/portal",
|
|
@@ -112617,7 +113312,7 @@ var zeroBillingPortalContract = c30.router({
|
|
|
112617
113312
|
summary: "Create Stripe billing portal session"
|
|
112618
113313
|
}
|
|
112619
113314
|
});
|
|
112620
|
-
var zeroBillingAutoRechargeContract =
|
|
113315
|
+
var zeroBillingAutoRechargeContract = c31.router({
|
|
112621
113316
|
get: {
|
|
112622
113317
|
method: "GET",
|
|
112623
113318
|
path: "/api/zero/billing/auto-recharge",
|
|
@@ -112655,7 +113350,7 @@ var invoiceSchema = external_exports.object({
|
|
|
112655
113350
|
var billingInvoicesResponseSchema = external_exports.object({
|
|
112656
113351
|
invoices: external_exports.array(invoiceSchema)
|
|
112657
113352
|
});
|
|
112658
|
-
var zeroBillingInvoicesContract =
|
|
113353
|
+
var zeroBillingInvoicesContract = c31.router({
|
|
112659
113354
|
get: {
|
|
112660
113355
|
method: "GET",
|
|
112661
113356
|
path: "/api/zero/billing/invoices",
|
|
@@ -112675,7 +113370,7 @@ var downgradeResponseSchema = external_exports.object({
|
|
|
112675
113370
|
success: external_exports.boolean(),
|
|
112676
113371
|
effectiveDate: external_exports.string().nullable()
|
|
112677
113372
|
});
|
|
112678
|
-
var zeroBillingDowngradeContract =
|
|
113373
|
+
var zeroBillingDowngradeContract = c31.router({
|
|
112679
113374
|
create: {
|
|
112680
113375
|
method: "POST",
|
|
112681
113376
|
path: "/api/zero/billing/downgrade",
|
|
@@ -112695,7 +113390,7 @@ var zeroBillingDowngradeContract = c30.router({
|
|
|
112695
113390
|
|
|
112696
113391
|
// ../../packages/core/src/contracts/zero-usage.ts
|
|
112697
113392
|
init_esm_shims();
|
|
112698
|
-
var
|
|
113393
|
+
var c32 = initContract();
|
|
112699
113394
|
var memberUsageSchema = external_exports.object({
|
|
112700
113395
|
userId: external_exports.string(),
|
|
112701
113396
|
email: external_exports.string(),
|
|
@@ -112713,7 +113408,7 @@ var usageMembersResponseSchema = external_exports.object({
|
|
|
112713
113408
|
}).nullable(),
|
|
112714
113409
|
members: external_exports.array(memberUsageSchema)
|
|
112715
113410
|
});
|
|
112716
|
-
var zeroUsageMembersContract =
|
|
113411
|
+
var zeroUsageMembersContract = c32.router({
|
|
112717
113412
|
get: {
|
|
112718
113413
|
method: "GET",
|
|
112719
113414
|
path: "/api/zero/usage/members",
|
|
@@ -112729,7 +113424,7 @@ var zeroUsageMembersContract = c31.router({
|
|
|
112729
113424
|
|
|
112730
113425
|
// ../../packages/core/src/contracts/zero-usage-daily.ts
|
|
112731
113426
|
init_esm_shims();
|
|
112732
|
-
var
|
|
113427
|
+
var c33 = initContract();
|
|
112733
113428
|
var dailyCreditSchema = external_exports.object({
|
|
112734
113429
|
date: external_exports.string(),
|
|
112735
113430
|
creditsCharged: external_exports.number()
|
|
@@ -112752,7 +113447,7 @@ var usageDailyResponseSchema = external_exports.object({
|
|
|
112752
113447
|
daily: external_exports.array(dailyCreditSchema),
|
|
112753
113448
|
dailyByMember: external_exports.array(dailyCreditByMemberSchema)
|
|
112754
113449
|
});
|
|
112755
|
-
var zeroUsageDailyContract =
|
|
113450
|
+
var zeroUsageDailyContract = c33.router({
|
|
112756
113451
|
get: {
|
|
112757
113452
|
method: "GET",
|
|
112758
113453
|
path: "/api/zero/usage/daily",
|
|
@@ -112797,7 +113492,7 @@ var usageRunsResponseSchema = external_exports.object({
|
|
|
112797
113492
|
total: external_exports.number()
|
|
112798
113493
|
})
|
|
112799
113494
|
});
|
|
112800
|
-
var zeroUsageRunsContract =
|
|
113495
|
+
var zeroUsageRunsContract = c33.router({
|
|
112801
113496
|
get: {
|
|
112802
113497
|
method: "GET",
|
|
112803
113498
|
path: "/api/zero/usage/runs",
|
|
@@ -112823,7 +113518,7 @@ var zeroUsageRunsContract = c32.router({
|
|
|
112823
113518
|
|
|
112824
113519
|
// ../../packages/core/src/contracts/zero-team.ts
|
|
112825
113520
|
init_esm_shims();
|
|
112826
|
-
var
|
|
113521
|
+
var c34 = initContract();
|
|
112827
113522
|
var teamComposeItemSchema = external_exports.object({
|
|
112828
113523
|
id: external_exports.string(),
|
|
112829
113524
|
displayName: external_exports.string().nullable(),
|
|
@@ -112833,7 +113528,7 @@ var teamComposeItemSchema = external_exports.object({
|
|
|
112833
113528
|
headVersionId: external_exports.string().nullable(),
|
|
112834
113529
|
updatedAt: external_exports.string()
|
|
112835
113530
|
});
|
|
112836
|
-
var zeroTeamContract =
|
|
113531
|
+
var zeroTeamContract = c34.router({
|
|
112837
113532
|
list: {
|
|
112838
113533
|
method: "GET",
|
|
112839
113534
|
path: "/api/zero/team",
|
|
@@ -112850,7 +113545,7 @@ var zeroTeamContract = c33.router({
|
|
|
112850
113545
|
|
|
112851
113546
|
// ../../packages/core/src/contracts/zero-integrations-slack.ts
|
|
112852
113547
|
init_esm_shims();
|
|
112853
|
-
var
|
|
113548
|
+
var c35 = initContract();
|
|
112854
113549
|
var slackEnvironmentSchema = external_exports.object({
|
|
112855
113550
|
requiredSecrets: external_exports.array(external_exports.string()),
|
|
112856
113551
|
requiredVars: external_exports.array(external_exports.string()),
|
|
@@ -112872,7 +113567,7 @@ var slackOrgStatusSchema = external_exports.object({
|
|
|
112872
113567
|
/** OAuth install URL for re-authorization (admin-only, when scopeMismatch). */
|
|
112873
113568
|
reinstallUrl: external_exports.string().nullable().optional()
|
|
112874
113569
|
});
|
|
112875
|
-
var zeroIntegrationsSlackContract =
|
|
113570
|
+
var zeroIntegrationsSlackContract = c35.router({
|
|
112876
113571
|
getStatus: {
|
|
112877
113572
|
method: "GET",
|
|
112878
113573
|
path: "/api/zero/integrations/slack",
|
|
@@ -112887,7 +113582,7 @@ var zeroIntegrationsSlackContract = c34.router({
|
|
|
112887
113582
|
method: "DELETE",
|
|
112888
113583
|
path: "/api/zero/integrations/slack",
|
|
112889
113584
|
headers: authHeadersSchema,
|
|
112890
|
-
body:
|
|
113585
|
+
body: c35.noBody(),
|
|
112891
113586
|
query: external_exports.object({
|
|
112892
113587
|
action: external_exports.string().optional()
|
|
112893
113588
|
}),
|
|
@@ -112903,7 +113598,7 @@ var zeroIntegrationsSlackContract = c34.router({
|
|
|
112903
113598
|
|
|
112904
113599
|
// ../../packages/core/src/contracts/zero-slack-connect.ts
|
|
112905
113600
|
init_esm_shims();
|
|
112906
|
-
var
|
|
113601
|
+
var c36 = initContract();
|
|
112907
113602
|
var slackConnectStatusSchema = external_exports.object({
|
|
112908
113603
|
isConnected: external_exports.boolean(),
|
|
112909
113604
|
isAdmin: external_exports.boolean(),
|
|
@@ -112915,7 +113610,7 @@ var slackConnectResponseSchema = external_exports.object({
|
|
|
112915
113610
|
connectionId: external_exports.string(),
|
|
112916
113611
|
role: external_exports.string()
|
|
112917
113612
|
});
|
|
112918
|
-
var zeroSlackConnectContract =
|
|
113613
|
+
var zeroSlackConnectContract = c36.router({
|
|
112919
113614
|
getStatus: {
|
|
112920
113615
|
method: "GET",
|
|
112921
113616
|
path: "/api/zero/integrations/slack/connect",
|
|
@@ -112949,12 +113644,12 @@ var zeroSlackConnectContract = c35.router({
|
|
|
112949
113644
|
|
|
112950
113645
|
// ../../packages/core/src/contracts/zero-slack-channels.ts
|
|
112951
113646
|
init_esm_shims();
|
|
112952
|
-
var
|
|
113647
|
+
var c37 = initContract();
|
|
112953
113648
|
var slackChannelSchema = external_exports.object({
|
|
112954
113649
|
id: external_exports.string(),
|
|
112955
113650
|
name: external_exports.string()
|
|
112956
113651
|
});
|
|
112957
|
-
var zeroSlackChannelsContract =
|
|
113652
|
+
var zeroSlackChannelsContract = c37.router({
|
|
112958
113653
|
list: {
|
|
112959
113654
|
method: "GET",
|
|
112960
113655
|
path: "/api/zero/slack/channels",
|
|
@@ -112970,12 +113665,12 @@ var zeroSlackChannelsContract = c36.router({
|
|
|
112970
113665
|
|
|
112971
113666
|
// ../../packages/core/src/contracts/zero-queue-position.ts
|
|
112972
113667
|
init_esm_shims();
|
|
112973
|
-
var
|
|
113668
|
+
var c38 = initContract();
|
|
112974
113669
|
var queuePositionResponseSchema = external_exports.object({
|
|
112975
113670
|
position: external_exports.number(),
|
|
112976
113671
|
total: external_exports.number()
|
|
112977
113672
|
});
|
|
112978
|
-
var zeroQueuePositionContract =
|
|
113673
|
+
var zeroQueuePositionContract = c38.router({
|
|
112979
113674
|
getPosition: {
|
|
112980
113675
|
method: "GET",
|
|
112981
113676
|
path: "/api/zero/queue-position",
|
|
@@ -112995,13 +113690,13 @@ var zeroQueuePositionContract = c37.router({
|
|
|
112995
113690
|
|
|
112996
113691
|
// ../../packages/core/src/contracts/zero-member-credit-cap.ts
|
|
112997
113692
|
init_esm_shims();
|
|
112998
|
-
var
|
|
113693
|
+
var c39 = initContract();
|
|
112999
113694
|
var memberCreditCapResponseSchema = external_exports.object({
|
|
113000
113695
|
userId: external_exports.string(),
|
|
113001
113696
|
creditCap: external_exports.number().nullable(),
|
|
113002
113697
|
creditEnabled: external_exports.boolean()
|
|
113003
113698
|
});
|
|
113004
|
-
var zeroMemberCreditCapContract =
|
|
113699
|
+
var zeroMemberCreditCapContract = c39.router({
|
|
113005
113700
|
get: {
|
|
113006
113701
|
method: "GET",
|
|
113007
113702
|
path: "/api/zero/org/members/credit-cap",
|
|
@@ -113036,7 +113731,7 @@ var zeroMemberCreditCapContract = c38.router({
|
|
|
113036
113731
|
|
|
113037
113732
|
// ../../packages/core/src/contracts/zero-developer-support.ts
|
|
113038
113733
|
init_esm_shims();
|
|
113039
|
-
var
|
|
113734
|
+
var c40 = initContract();
|
|
113040
113735
|
var developerSupportBodySchema = external_exports.object({
|
|
113041
113736
|
title: external_exports.string().min(1, "Title is required"),
|
|
113042
113737
|
description: external_exports.string().min(1, "Description is required"),
|
|
@@ -113048,7 +113743,7 @@ var consentCodeResponseSchema = external_exports.object({
|
|
|
113048
113743
|
var submitResponseSchema = external_exports.object({
|
|
113049
113744
|
reference: external_exports.string()
|
|
113050
113745
|
});
|
|
113051
|
-
var zeroDeveloperSupportContract =
|
|
113746
|
+
var zeroDeveloperSupportContract = c40.router({
|
|
113052
113747
|
submit: {
|
|
113053
113748
|
method: "POST",
|
|
113054
113749
|
path: "/api/zero/developer-support",
|
|
@@ -113066,7 +113761,7 @@ var zeroDeveloperSupportContract = c39.router({
|
|
|
113066
113761
|
|
|
113067
113762
|
// ../../packages/core/src/contracts/zero-report-error.ts
|
|
113068
113763
|
init_esm_shims();
|
|
113069
|
-
var
|
|
113764
|
+
var c41 = initContract();
|
|
113070
113765
|
var reportErrorBodySchema = external_exports.object({
|
|
113071
113766
|
runId: external_exports.string().min(1, "Run ID is required"),
|
|
113072
113767
|
title: external_exports.string().min(1, "Title is required"),
|
|
@@ -113075,7 +113770,7 @@ var reportErrorBodySchema = external_exports.object({
|
|
|
113075
113770
|
var reportErrorResponseSchema = external_exports.object({
|
|
113076
113771
|
reference: external_exports.string()
|
|
113077
113772
|
});
|
|
113078
|
-
var zeroReportErrorContract =
|
|
113773
|
+
var zeroReportErrorContract = c41.router({
|
|
113079
113774
|
submit: {
|
|
113080
113775
|
method: "POST",
|
|
113081
113776
|
path: "/api/zero/report-error",
|
|
@@ -113093,7 +113788,7 @@ var zeroReportErrorContract = c40.router({
|
|
|
113093
113788
|
|
|
113094
113789
|
// ../../packages/core/src/contracts/zero-computer-use.ts
|
|
113095
113790
|
init_esm_shims();
|
|
113096
|
-
var
|
|
113791
|
+
var c42 = initContract();
|
|
113097
113792
|
var registerResponseSchema = external_exports.object({
|
|
113098
113793
|
id: external_exports.string(),
|
|
113099
113794
|
domain: external_exports.string(),
|
|
@@ -113105,12 +113800,12 @@ var hostResponseSchema = external_exports.object({
|
|
|
113105
113800
|
domain: external_exports.string(),
|
|
113106
113801
|
token: external_exports.string()
|
|
113107
113802
|
});
|
|
113108
|
-
var zeroComputerUseRegisterContract =
|
|
113803
|
+
var zeroComputerUseRegisterContract = c42.router({
|
|
113109
113804
|
register: {
|
|
113110
113805
|
method: "POST",
|
|
113111
113806
|
path: "/api/zero/computer-use/register",
|
|
113112
113807
|
headers: authHeadersSchema,
|
|
113113
|
-
body:
|
|
113808
|
+
body: c42.noBody(),
|
|
113114
113809
|
responses: {
|
|
113115
113810
|
200: registerResponseSchema,
|
|
113116
113811
|
401: apiErrorSchema,
|
|
@@ -113120,14 +113815,14 @@ var zeroComputerUseRegisterContract = c41.router({
|
|
|
113120
113815
|
summary: "Register a computer-use host"
|
|
113121
113816
|
}
|
|
113122
113817
|
});
|
|
113123
|
-
var zeroComputerUseUnregisterContract =
|
|
113818
|
+
var zeroComputerUseUnregisterContract = c42.router({
|
|
113124
113819
|
unregister: {
|
|
113125
113820
|
method: "DELETE",
|
|
113126
113821
|
path: "/api/zero/computer-use/unregister",
|
|
113127
113822
|
headers: authHeadersSchema,
|
|
113128
|
-
body:
|
|
113823
|
+
body: c42.noBody(),
|
|
113129
113824
|
responses: {
|
|
113130
|
-
204:
|
|
113825
|
+
204: c42.noBody(),
|
|
113131
113826
|
401: apiErrorSchema,
|
|
113132
113827
|
403: apiErrorSchema,
|
|
113133
113828
|
404: apiErrorSchema
|
|
@@ -113135,7 +113830,7 @@ var zeroComputerUseUnregisterContract = c41.router({
|
|
|
113135
113830
|
summary: "Unregister a computer-use host"
|
|
113136
113831
|
}
|
|
113137
113832
|
});
|
|
113138
|
-
var zeroComputerUseHostContract =
|
|
113833
|
+
var zeroComputerUseHostContract = c42.router({
|
|
113139
113834
|
getHost: {
|
|
113140
113835
|
method: "GET",
|
|
113141
113836
|
path: "/api/zero/computer-use/host",
|
|
@@ -113152,7 +113847,7 @@ var zeroComputerUseHostContract = c41.router({
|
|
|
113152
113847
|
|
|
113153
113848
|
// ../../packages/core/src/contracts/zero-insights.ts
|
|
113154
113849
|
init_esm_shims();
|
|
113155
|
-
var
|
|
113850
|
+
var c43 = initContract();
|
|
113156
113851
|
var insightAgentSchema = external_exports.object({
|
|
113157
113852
|
agentName: external_exports.string(),
|
|
113158
113853
|
agentId: external_exports.string().nullable(),
|
|
@@ -113202,7 +113897,7 @@ var insightsRangeResponseSchema = external_exports.object({
|
|
|
113202
113897
|
maxDate: external_exports.string().nullable(),
|
|
113203
113898
|
totalDays: external_exports.number()
|
|
113204
113899
|
});
|
|
113205
|
-
var zeroInsightsContract =
|
|
113900
|
+
var zeroInsightsContract = c43.router({
|
|
113206
113901
|
get: {
|
|
113207
113902
|
method: "GET",
|
|
113208
113903
|
path: "/api/zero/insights",
|
|
@@ -113217,7 +113912,7 @@ var zeroInsightsContract = c42.router({
|
|
|
113217
113912
|
summary: "Get daily insights for the authenticated org"
|
|
113218
113913
|
}
|
|
113219
113914
|
});
|
|
113220
|
-
var zeroInsightsRangeContract =
|
|
113915
|
+
var zeroInsightsRangeContract = c43.router({
|
|
113221
113916
|
get: {
|
|
113222
113917
|
method: "GET",
|
|
113223
113918
|
path: "/api/zero/insights/range",
|
|
@@ -113232,8 +113927,8 @@ var zeroInsightsRangeContract = c42.router({
|
|
|
113232
113927
|
|
|
113233
113928
|
// ../../packages/core/src/contracts/push-subscriptions.ts
|
|
113234
113929
|
init_esm_shims();
|
|
113235
|
-
var
|
|
113236
|
-
var pushSubscriptionsContract =
|
|
113930
|
+
var c44 = initContract();
|
|
113931
|
+
var pushSubscriptionsContract = c44.router({
|
|
113237
113932
|
register: {
|
|
113238
113933
|
method: "POST",
|
|
113239
113934
|
path: "/api/zero/push-subscriptions",
|
|
@@ -113257,7 +113952,7 @@ var pushSubscriptionsContract = c43.router({
|
|
|
113257
113952
|
|
|
113258
113953
|
// ../../packages/core/src/contracts/zero-voice-chat-context.ts
|
|
113259
113954
|
init_esm_shims();
|
|
113260
|
-
var
|
|
113955
|
+
var c45 = initContract();
|
|
113261
113956
|
var contextEventSchema = external_exports.object({
|
|
113262
113957
|
id: external_exports.string(),
|
|
113263
113958
|
seq: external_exports.number(),
|
|
@@ -113274,7 +113969,7 @@ var appendContextEventBodySchema = external_exports.object({
|
|
|
113274
113969
|
type: external_exports.string(),
|
|
113275
113970
|
content: external_exports.string().optional()
|
|
113276
113971
|
});
|
|
113277
|
-
var zeroVoiceChatContextContract =
|
|
113972
|
+
var zeroVoiceChatContextContract = c45.router({
|
|
113278
113973
|
getEvents: {
|
|
113279
113974
|
method: "GET",
|
|
113280
113975
|
path: "/api/zero/voice-chat/:id/context",
|
|
@@ -113305,7 +114000,7 @@ var zeroVoiceChatContextContract = c44.router({
|
|
|
113305
114000
|
|
|
113306
114001
|
// ../../packages/core/src/contracts/zero-voice-chat-sessions.ts
|
|
113307
114002
|
init_esm_shims();
|
|
113308
|
-
var
|
|
114003
|
+
var c46 = initContract();
|
|
113309
114004
|
var voiceChatModeSchema = external_exports.enum(["chat", "meeting"]);
|
|
113310
114005
|
var voiceChatSessionBaseSchema = external_exports.object({
|
|
113311
114006
|
id: external_exports.string(),
|
|
@@ -113332,7 +114027,7 @@ var voiceChatTokenResponseSchema = external_exports.object({
|
|
|
113332
114027
|
})
|
|
113333
114028
|
});
|
|
113334
114029
|
var okResponseSchema = external_exports.object({ ok: external_exports.literal(true) });
|
|
113335
|
-
var zeroVoiceChatSessionsContract =
|
|
114030
|
+
var zeroVoiceChatSessionsContract = c46.router({
|
|
113336
114031
|
create: {
|
|
113337
114032
|
method: "POST",
|
|
113338
114033
|
path: "/api/zero/voice-chat",
|
|
@@ -113403,7 +114098,7 @@ var zeroVoiceChatSessionsContract = c45.router({
|
|
|
113403
114098
|
|
|
113404
114099
|
// ../../packages/core/src/contracts/zero-voice-chat-prepare.ts
|
|
113405
114100
|
init_esm_shims();
|
|
113406
|
-
var
|
|
114101
|
+
var c47 = initContract();
|
|
113407
114102
|
var prepareTriggerBodySchema = external_exports.object({
|
|
113408
114103
|
agentId: external_exports.string().min(1),
|
|
113409
114104
|
mode: external_exports.enum(["chat", "meeting"]).default("chat"),
|
|
@@ -113416,7 +114111,7 @@ var prepareTriggerResponseSchema = external_exports.object({
|
|
|
113416
114111
|
runId: external_exports.string().optional()
|
|
113417
114112
|
})
|
|
113418
114113
|
});
|
|
113419
|
-
var zeroVoiceChatPrepareTriggerContract =
|
|
114114
|
+
var zeroVoiceChatPrepareTriggerContract = c47.router({
|
|
113420
114115
|
trigger: {
|
|
113421
114116
|
method: "POST",
|
|
113422
114117
|
path: "/api/zero/voice-chat/prepare",
|
|
@@ -113438,7 +114133,7 @@ var prepareCompleteResponseSchema = external_exports.object({
|
|
|
113438
114133
|
id: external_exports.string(),
|
|
113439
114134
|
status: external_exports.enum(["preparing", "ready", "failed"])
|
|
113440
114135
|
});
|
|
113441
|
-
var zeroVoiceChatPrepareCompleteContract =
|
|
114136
|
+
var zeroVoiceChatPrepareCompleteContract = c47.router({
|
|
113442
114137
|
complete: {
|
|
113443
114138
|
method: "POST",
|
|
113444
114139
|
path: "/api/zero/voice-chat/prepare/complete",
|
|
@@ -113464,7 +114159,7 @@ var prepareListResponseSchema = external_exports.object({
|
|
|
113464
114159
|
})
|
|
113465
114160
|
)
|
|
113466
114161
|
});
|
|
113467
|
-
var zeroVoiceChatPrepareListContract =
|
|
114162
|
+
var zeroVoiceChatPrepareListContract = c47.router({
|
|
113468
114163
|
list: {
|
|
113469
114164
|
method: "GET",
|
|
113470
114165
|
path: "/api/zero/voice-chat/prepare/list",
|
|
@@ -113480,7 +114175,7 @@ var zeroVoiceChatPrepareListContract = c46.router({
|
|
|
113480
114175
|
|
|
113481
114176
|
// ../../packages/core/src/contracts/tasks.ts
|
|
113482
114177
|
init_esm_shims();
|
|
113483
|
-
var
|
|
114178
|
+
var c48 = initContract();
|
|
113484
114179
|
var taskTypeSchema = external_exports.enum([
|
|
113485
114180
|
"chat",
|
|
113486
114181
|
"schedule",
|
|
@@ -113521,7 +114216,7 @@ var unarchiveTaskBodySchema = external_exports.object({
|
|
|
113521
114216
|
taskId: external_exports.string(),
|
|
113522
114217
|
taskType: taskTypeSchema
|
|
113523
114218
|
});
|
|
113524
|
-
var tasksContract =
|
|
114219
|
+
var tasksContract = c48.router({
|
|
113525
114220
|
list: {
|
|
113526
114221
|
method: "GET",
|
|
113527
114222
|
path: "/api/zero/tasks",
|
|
@@ -113561,7 +114256,7 @@ var tasksContract = c47.router({
|
|
|
113561
114256
|
|
|
113562
114257
|
// ../../packages/core/src/contracts/zero-phone.ts
|
|
113563
114258
|
init_esm_shims();
|
|
113564
|
-
var
|
|
114259
|
+
var c49 = initContract();
|
|
113565
114260
|
var phoneStatusResponseSchema = external_exports.object({
|
|
113566
114261
|
userPhone: external_exports.string().nullable(),
|
|
113567
114262
|
userPhonePending: external_exports.string().nullable(),
|
|
@@ -113580,7 +114275,7 @@ var phoneSetupResponseSchema = external_exports.object({
|
|
|
113580
114275
|
var phoneErrorResponseSchema = external_exports.object({
|
|
113581
114276
|
error: external_exports.string()
|
|
113582
114277
|
});
|
|
113583
|
-
var zeroPhoneStatusContract =
|
|
114278
|
+
var zeroPhoneStatusContract = c49.router({
|
|
113584
114279
|
getStatus: {
|
|
113585
114280
|
method: "GET",
|
|
113586
114281
|
path: "/api/zero/phone/status",
|
|
@@ -113592,7 +114287,7 @@ var zeroPhoneStatusContract = c48.router({
|
|
|
113592
114287
|
summary: "Get the current user's phone link status"
|
|
113593
114288
|
}
|
|
113594
114289
|
});
|
|
113595
|
-
var zeroPhoneLinkContract =
|
|
114290
|
+
var zeroPhoneLinkContract = c49.router({
|
|
113596
114291
|
link: {
|
|
113597
114292
|
method: "POST",
|
|
113598
114293
|
path: "/api/zero/phone/link",
|
|
@@ -113610,7 +114305,7 @@ var zeroPhoneLinkContract = c48.router({
|
|
|
113610
114305
|
method: "DELETE",
|
|
113611
114306
|
path: "/api/zero/phone/link",
|
|
113612
114307
|
headers: authHeadersSchema,
|
|
113613
|
-
body:
|
|
114308
|
+
body: c49.noBody(),
|
|
113614
114309
|
responses: {
|
|
113615
114310
|
200: phoneSuccessResponseSchema,
|
|
113616
114311
|
401: phoneErrorResponseSchema
|
|
@@ -113618,12 +114313,12 @@ var zeroPhoneLinkContract = c48.router({
|
|
|
113618
114313
|
summary: "Remove the current user's phone link"
|
|
113619
114314
|
}
|
|
113620
114315
|
});
|
|
113621
|
-
var zeroPhoneSetupContract =
|
|
114316
|
+
var zeroPhoneSetupContract = c49.router({
|
|
113622
114317
|
setup: {
|
|
113623
114318
|
method: "POST",
|
|
113624
114319
|
path: "/api/zero/phone/setup",
|
|
113625
114320
|
headers: authHeadersSchema,
|
|
113626
|
-
body:
|
|
114321
|
+
body: c49.noBody(),
|
|
113627
114322
|
responses: {
|
|
113628
114323
|
200: phoneSetupResponseSchema,
|
|
113629
114324
|
401: phoneErrorResponseSchema,
|
|
@@ -113636,7 +114331,7 @@ var zeroPhoneSetupContract = c48.router({
|
|
|
113636
114331
|
|
|
113637
114332
|
// ../../packages/core/src/contracts/zero-integrations-telegram.ts
|
|
113638
114333
|
init_esm_shims();
|
|
113639
|
-
var
|
|
114334
|
+
var c50 = initContract();
|
|
113640
114335
|
var telegramEnvironmentSchema = external_exports.object({
|
|
113641
114336
|
requiredSecrets: external_exports.array(external_exports.string()),
|
|
113642
114337
|
requiredVars: external_exports.array(external_exports.string()),
|
|
@@ -113673,7 +114368,7 @@ var telegramRegisterResponseSchema = external_exports.object({
|
|
|
113673
114368
|
webhookUrl: external_exports.string(),
|
|
113674
114369
|
domainConfigured: external_exports.boolean()
|
|
113675
114370
|
});
|
|
113676
|
-
var zeroIntegrationsTelegramContract =
|
|
114371
|
+
var zeroIntegrationsTelegramContract = c50.router({
|
|
113677
114372
|
getStatus: {
|
|
113678
114373
|
method: "GET",
|
|
113679
114374
|
path: "/api/integrations/telegram",
|
|
@@ -113703,9 +114398,9 @@ var zeroIntegrationsTelegramContract = c49.router({
|
|
|
113703
114398
|
method: "DELETE",
|
|
113704
114399
|
path: "/api/integrations/telegram",
|
|
113705
114400
|
headers: authHeadersSchema,
|
|
113706
|
-
body:
|
|
114401
|
+
body: c50.noBody(),
|
|
113707
114402
|
responses: {
|
|
113708
|
-
204:
|
|
114403
|
+
204: c50.noBody(),
|
|
113709
114404
|
401: apiErrorSchema,
|
|
113710
114405
|
404: apiErrorSchema
|
|
113711
114406
|
},
|
|
@@ -113932,8 +114627,7 @@ var FEATURE_SWITCHES = {
|
|
|
113932
114627
|
["usageAnalytics" /* UsageAnalytics */]: {
|
|
113933
114628
|
maintainer: "ethan@vm0.ai",
|
|
113934
114629
|
description: "Show admin-only daily credits chart and per-run records on Usage page",
|
|
113935
|
-
enabled: false
|
|
113936
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114630
|
+
enabled: false
|
|
113937
114631
|
},
|
|
113938
114632
|
["modelDetail" /* ModelDetail */]: {
|
|
113939
114633
|
maintainer: "ethan@vm0.ai",
|
|
@@ -113953,44 +114647,37 @@ var FEATURE_SWITCHES = {
|
|
|
113953
114647
|
["computerUse" /* ComputerUse */]: {
|
|
113954
114648
|
maintainer: "ethan@vm0.ai",
|
|
113955
114649
|
description: "Enable remote desktop host registration",
|
|
113956
|
-
enabled: false
|
|
113957
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114650
|
+
enabled: false
|
|
113958
114651
|
},
|
|
113959
114652
|
["lab" /* Lab */]: {
|
|
113960
114653
|
maintainer: "ethan@vm0.ai",
|
|
113961
114654
|
description: "Show the Lab page for toggling experimental features",
|
|
113962
|
-
enabled: false
|
|
113963
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114655
|
+
enabled: false
|
|
113964
114656
|
},
|
|
113965
114657
|
["auditLink" /* AuditLink */]: {
|
|
113966
114658
|
maintainer: "ethan@vm0.ai",
|
|
113967
114659
|
description: "Show audit log links in Slack messages",
|
|
113968
|
-
enabled: false
|
|
113969
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114660
|
+
enabled: false
|
|
113970
114661
|
},
|
|
113971
114662
|
["phoneIntegration" /* PhoneIntegration */]: {
|
|
113972
114663
|
maintainer: "ethan@vm0.ai",
|
|
113973
114664
|
description: "Show the Phone page for voice call integration",
|
|
113974
|
-
enabled: false
|
|
113975
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114665
|
+
enabled: false
|
|
113976
114666
|
},
|
|
113977
114667
|
["voiceChat" /* VoiceChat */]: {
|
|
113978
114668
|
maintainer: "lancy@vm0.ai",
|
|
113979
114669
|
description: "Enable the Voice Chat feature and API endpoints",
|
|
113980
|
-
enabled: false
|
|
113981
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114670
|
+
enabled: false
|
|
113982
114671
|
},
|
|
113983
114672
|
["audioIO" /* AudioIO */]: {
|
|
113984
114673
|
maintainer: "lancy@vm0.ai",
|
|
113985
114674
|
description: "Enable audio input/output features in chat (TTS read-aloud, auto-read, voice input)",
|
|
113986
|
-
enabled: false
|
|
113987
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114675
|
+
enabled: false
|
|
113988
114676
|
},
|
|
113989
114677
|
["missionControlSidebar" /* MissionControlSidebar */]: {
|
|
113990
114678
|
maintainer: "ethan@vm0.ai",
|
|
113991
114679
|
description: "Show the Mission Control page entry in the sidebar",
|
|
113992
|
-
enabled: false
|
|
113993
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114680
|
+
enabled: false
|
|
113994
114681
|
},
|
|
113995
114682
|
["autoSkill" /* AutoSkill */]: {
|
|
113996
114683
|
maintainer: "lancy@vm0.ai",
|
|
@@ -114006,8 +114693,7 @@ var FEATURE_SWITCHES = {
|
|
|
114006
114693
|
["scheduleRunHistory" /* ScheduleRunHistory */]: {
|
|
114007
114694
|
maintainer: "linghan@vm0.ai",
|
|
114008
114695
|
description: "Show Run History tab on schedules page and Chat-from-schedule button on activity detail",
|
|
114009
|
-
enabled: false
|
|
114010
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114696
|
+
enabled: false
|
|
114011
114697
|
},
|
|
114012
114698
|
["testOauthConnector" /* TestOauthConnector */]: {
|
|
114013
114699
|
maintainer: "liangyou@vm0.ai",
|
|
@@ -114017,20 +114703,32 @@ var FEATURE_SWITCHES = {
|
|
|
114017
114703
|
["chatHeaderNewButton" /* ChatHeaderNewButton */]: {
|
|
114018
114704
|
maintainer: "ethan@vm0.ai",
|
|
114019
114705
|
description: "Replace the Invite people button in the agent chat page header with a New button that creates a new chat thread",
|
|
114020
|
-
enabled: false
|
|
114021
|
-
|
|
114706
|
+
enabled: false
|
|
114707
|
+
},
|
|
114708
|
+
["chatThreadReadIndicator" /* ChatThreadReadIndicator */]: {
|
|
114709
|
+
maintainer: "ethan@vm0.ai",
|
|
114710
|
+
description: "Show the unread watermark dot and bold title for chat threads with unread messages in the sidebar",
|
|
114711
|
+
enabled: false
|
|
114022
114712
|
},
|
|
114023
114713
|
["inlineThinkingDot" /* InlineThinkingDot */]: {
|
|
114024
114714
|
maintainer: "ethan@vm0.ai",
|
|
114025
114715
|
description: "Show an inline streaming cursor on the last assistant message while the agent run is still active, so users see the agent is still working even after it has produced output",
|
|
114026
|
-
enabled: false
|
|
114027
|
-
|
|
114716
|
+
enabled: false
|
|
114717
|
+
},
|
|
114718
|
+
["freshdeskConnector" /* FreshdeskConnector */]: {
|
|
114719
|
+
maintainer: "ethan@vm0.ai",
|
|
114720
|
+
description: "Enable the Freshdesk helpdesk connector",
|
|
114721
|
+
enabled: false
|
|
114722
|
+
},
|
|
114723
|
+
["zoomConnector" /* ZoomConnector */]: {
|
|
114724
|
+
maintainer: "ethan@vm0.ai",
|
|
114725
|
+
description: "Enable the Zoom connector (OAuth 2.0) for meetings, past participants, and cloud recordings access",
|
|
114726
|
+
enabled: false
|
|
114028
114727
|
},
|
|
114029
114728
|
["slackAgentSwitch" /* SlackAgentSwitch */]: {
|
|
114030
114729
|
maintainer: "yuma@vm0.ai",
|
|
114031
114730
|
description: "Per-user agent override in the org-aware Slack app. When enabled for an org, members can choose which agent replies to their Slack mentions / DMs via `/zero switch` (opens an agent picker modal) or the Switch button on the App Home tab. The help text for `/zero help` also lists the switch subcommand. Selecting an alternate agent persists a row in `slack_user_agent_preferences` so the preference follows the user across every Slack workspace joined under the same org, and subsequent mention / DM replies from a non-default agent carry a `Sent via <agent>` footer so it's clear which agent produced the reply. When gated off, the modal, slash subcommand, App Home button, and help line are hidden AND any existing DB preferences are ignored at read time \u2014 every user falls back to the org default agent with no footer. Staff-only during the rollout window defined by `enabledOrgIdHashes`.",
|
|
114032
|
-
enabled: false
|
|
114033
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114731
|
+
enabled: false
|
|
114034
114732
|
}
|
|
114035
114733
|
};
|
|
114036
114734
|
function isFeatureEnabled(key, ctx) {
|
|
@@ -116501,4 +117199,4 @@ undici/lib/web/fetch/body.js:
|
|
|
116501
117199
|
undici/lib/web/websocket/frame.js:
|
|
116502
117200
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
116503
117201
|
*/
|
|
116504
|
-
//# sourceMappingURL=chunk-
|
|
117202
|
+
//# sourceMappingURL=chunk-4TLRYOVY.js.map
|