switchroom 0.13.3 → 0.13.5
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.
- package/README.md +36 -45
- package/dist/agent-scheduler/index.js +80 -80
- package/dist/auth-broker/index.js +80 -80
- package/dist/cli/drive-write-pretool.mjs +10 -10
- package/dist/cli/skill-validate-pretool.mjs +72 -72
- package/dist/cli/switchroom.js +485 -566
- package/dist/host-control/main.js +99 -99
- package/dist/vault/approvals/kernel-server.js +82 -82
- package/dist/vault/broker/server.js +83 -83
- package/package.json +1 -1
- package/profiles/_base/start.sh.hbs +8 -8
- package/profiles/_shared/telegram-style.md.hbs +1 -1
- package/profiles/_shared/vault-protocol.md.hbs +12 -0
- package/profiles/default/CLAUDE.md +192 -0
- package/profiles/default/CLAUDE.md.hbs +1 -1
- package/telegram-plugin/dist/bridge/bridge.js +112 -112
- package/telegram-plugin/dist/gateway/gateway.js +210 -192
- package/telegram-plugin/dist/server.js +160 -160
- package/telegram-plugin/runtime-metrics.ts +14 -8
- package/telegram-plugin/silence-poke.ts +49 -1
- package/telegram-plugin/tests/silence-poke.test.ts +135 -3
- package/telegram-plugin/uat/scenarios/bridge-flap-resilience-dm.test.ts +166 -0
- package/telegram-plugin/uat/scenarios/jtbd-fast-ack-dm.test.ts +217 -0
- package/telegram-plugin/uat/scenarios/jtbd-soft-commit-dm.test.ts +16 -11
package/dist/cli/switchroom.js
CHANGED
|
@@ -66,7 +66,7 @@ var __export = (target, all) => {
|
|
|
66
66
|
var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
67
67
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
68
68
|
|
|
69
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/lib/error.js
|
|
69
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/lib/error.js
|
|
70
70
|
var require_error = __commonJS((exports) => {
|
|
71
71
|
class CommanderError extends Error {
|
|
72
72
|
constructor(exitCode, code, message) {
|
|
@@ -90,7 +90,7 @@ var require_error = __commonJS((exports) => {
|
|
|
90
90
|
exports.InvalidArgumentError = InvalidArgumentError;
|
|
91
91
|
});
|
|
92
92
|
|
|
93
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/lib/argument.js
|
|
93
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/lib/argument.js
|
|
94
94
|
var require_argument = __commonJS((exports) => {
|
|
95
95
|
var { InvalidArgumentError } = require_error();
|
|
96
96
|
|
|
@@ -169,7 +169,7 @@ var require_argument = __commonJS((exports) => {
|
|
|
169
169
|
exports.humanReadableArgName = humanReadableArgName;
|
|
170
170
|
});
|
|
171
171
|
|
|
172
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/lib/help.js
|
|
172
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/lib/help.js
|
|
173
173
|
var require_help = __commonJS((exports) => {
|
|
174
174
|
var { humanReadableArgName } = require_argument();
|
|
175
175
|
|
|
@@ -519,7 +519,7 @@ ${itemIndentStr}`);
|
|
|
519
519
|
exports.stripColor = stripColor;
|
|
520
520
|
});
|
|
521
521
|
|
|
522
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/lib/option.js
|
|
522
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/lib/option.js
|
|
523
523
|
var require_option = __commonJS((exports) => {
|
|
524
524
|
var { InvalidArgumentError } = require_error();
|
|
525
525
|
|
|
@@ -697,7 +697,7 @@ var require_option = __commonJS((exports) => {
|
|
|
697
697
|
exports.DualOptions = DualOptions;
|
|
698
698
|
});
|
|
699
699
|
|
|
700
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/lib/suggestSimilar.js
|
|
700
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/lib/suggestSimilar.js
|
|
701
701
|
var require_suggestSimilar = __commonJS((exports) => {
|
|
702
702
|
var maxDistance = 3;
|
|
703
703
|
function editDistance(a, b) {
|
|
@@ -770,7 +770,7 @@ var require_suggestSimilar = __commonJS((exports) => {
|
|
|
770
770
|
exports.suggestSimilar = suggestSimilar;
|
|
771
771
|
});
|
|
772
772
|
|
|
773
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/lib/command.js
|
|
773
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/lib/command.js
|
|
774
774
|
var require_command = __commonJS((exports) => {
|
|
775
775
|
var EventEmitter = __require("node:events").EventEmitter;
|
|
776
776
|
var childProcess = __require("node:child_process");
|
|
@@ -2080,7 +2080,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
2080
2080
|
exports.useColor = useColor;
|
|
2081
2081
|
});
|
|
2082
2082
|
|
|
2083
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/index.js
|
|
2083
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/index.js
|
|
2084
2084
|
var require_commander = __commonJS((exports) => {
|
|
2085
2085
|
var { Argument } = require_argument();
|
|
2086
2086
|
var { Command } = require_command();
|
|
@@ -2100,7 +2100,7 @@ var require_commander = __commonJS((exports) => {
|
|
|
2100
2100
|
exports.InvalidOptionArgumentError = InvalidArgumentError;
|
|
2101
2101
|
});
|
|
2102
2102
|
|
|
2103
|
-
// node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
2103
|
+
// ../switchroom-sec-1417/node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
2104
2104
|
function assembleStyles() {
|
|
2105
2105
|
const codes = new Map;
|
|
2106
2106
|
for (const [groupName, group] of Object.entries(styles)) {
|
|
@@ -2276,7 +2276,7 @@ var init_ansi_styles = __esm(() => {
|
|
|
2276
2276
|
ansi_styles_default = ansiStyles;
|
|
2277
2277
|
});
|
|
2278
2278
|
|
|
2279
|
-
// node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/vendor/supports-color/index.js
|
|
2279
|
+
// ../switchroom-sec-1417/node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/vendor/supports-color/index.js
|
|
2280
2280
|
import process2 from "node:process";
|
|
2281
2281
|
import os from "node:os";
|
|
2282
2282
|
import tty from "node:tty";
|
|
@@ -2410,7 +2410,7 @@ var init_supports_color = __esm(() => {
|
|
|
2410
2410
|
supports_color_default = supportsColor;
|
|
2411
2411
|
});
|
|
2412
2412
|
|
|
2413
|
-
// node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/utilities.js
|
|
2413
|
+
// ../switchroom-sec-1417/node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/utilities.js
|
|
2414
2414
|
function stringReplaceAll(string, substring, replacer) {
|
|
2415
2415
|
let index = string.indexOf(substring);
|
|
2416
2416
|
if (index === -1) {
|
|
@@ -2443,7 +2443,7 @@ function stringEncaseCRLFWithFirstIndex(string, prefix, postfix, index) {
|
|
|
2443
2443
|
return returnValue;
|
|
2444
2444
|
}
|
|
2445
2445
|
|
|
2446
|
-
// node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/index.js
|
|
2446
|
+
// ../switchroom-sec-1417/node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/index.js
|
|
2447
2447
|
function createChalk(options) {
|
|
2448
2448
|
return chalkFactory(options);
|
|
2449
2449
|
}
|
|
@@ -2589,7 +2589,7 @@ var init_source = __esm(() => {
|
|
|
2589
2589
|
source_default = chalk;
|
|
2590
2590
|
});
|
|
2591
2591
|
|
|
2592
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
|
|
2592
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
|
|
2593
2593
|
var require_identity = __commonJS((exports) => {
|
|
2594
2594
|
var ALIAS = Symbol.for("yaml.alias");
|
|
2595
2595
|
var DOC = Symbol.for("yaml.document");
|
|
@@ -2643,7 +2643,7 @@ var require_identity = __commonJS((exports) => {
|
|
|
2643
2643
|
exports.isSeq = isSeq;
|
|
2644
2644
|
});
|
|
2645
2645
|
|
|
2646
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
|
|
2646
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
|
|
2647
2647
|
var require_visit = __commonJS((exports) => {
|
|
2648
2648
|
var identity = require_identity();
|
|
2649
2649
|
var BREAK = Symbol("break visit");
|
|
@@ -2798,7 +2798,7 @@ var require_visit = __commonJS((exports) => {
|
|
|
2798
2798
|
exports.visitAsync = visitAsync;
|
|
2799
2799
|
});
|
|
2800
2800
|
|
|
2801
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
|
|
2801
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
|
|
2802
2802
|
var require_directives = __commonJS((exports) => {
|
|
2803
2803
|
var identity = require_identity();
|
|
2804
2804
|
var visit = require_visit();
|
|
@@ -2950,7 +2950,7 @@ var require_directives = __commonJS((exports) => {
|
|
|
2950
2950
|
exports.Directives = Directives;
|
|
2951
2951
|
});
|
|
2952
2952
|
|
|
2953
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
|
|
2953
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
|
|
2954
2954
|
var require_anchors = __commonJS((exports) => {
|
|
2955
2955
|
var identity = require_identity();
|
|
2956
2956
|
var visit = require_visit();
|
|
@@ -3012,7 +3012,7 @@ var require_anchors = __commonJS((exports) => {
|
|
|
3012
3012
|
exports.findNewAnchor = findNewAnchor;
|
|
3013
3013
|
});
|
|
3014
3014
|
|
|
3015
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
|
|
3015
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
|
|
3016
3016
|
var require_applyReviver = __commonJS((exports) => {
|
|
3017
3017
|
function applyReviver(reviver, obj, key, val) {
|
|
3018
3018
|
if (val && typeof val === "object") {
|
|
@@ -3059,7 +3059,7 @@ var require_applyReviver = __commonJS((exports) => {
|
|
|
3059
3059
|
exports.applyReviver = applyReviver;
|
|
3060
3060
|
});
|
|
3061
3061
|
|
|
3062
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
|
|
3062
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
|
|
3063
3063
|
var require_toJS = __commonJS((exports) => {
|
|
3064
3064
|
var identity = require_identity();
|
|
3065
3065
|
function toJS(value, arg, ctx) {
|
|
@@ -3086,7 +3086,7 @@ var require_toJS = __commonJS((exports) => {
|
|
|
3086
3086
|
exports.toJS = toJS;
|
|
3087
3087
|
});
|
|
3088
3088
|
|
|
3089
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
|
|
3089
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
|
|
3090
3090
|
var require_Node = __commonJS((exports) => {
|
|
3091
3091
|
var applyReviver = require_applyReviver();
|
|
3092
3092
|
var identity = require_identity();
|
|
@@ -3123,7 +3123,7 @@ var require_Node = __commonJS((exports) => {
|
|
|
3123
3123
|
exports.NodeBase = NodeBase;
|
|
3124
3124
|
});
|
|
3125
3125
|
|
|
3126
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
|
|
3126
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
|
|
3127
3127
|
var require_Alias = __commonJS((exports) => {
|
|
3128
3128
|
var anchors = require_anchors();
|
|
3129
3129
|
var visit = require_visit();
|
|
@@ -3231,7 +3231,7 @@ var require_Alias = __commonJS((exports) => {
|
|
|
3231
3231
|
exports.Alias = Alias;
|
|
3232
3232
|
});
|
|
3233
3233
|
|
|
3234
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
|
|
3234
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
|
|
3235
3235
|
var require_Scalar = __commonJS((exports) => {
|
|
3236
3236
|
var identity = require_identity();
|
|
3237
3237
|
var Node = require_Node();
|
|
@@ -3259,7 +3259,7 @@ var require_Scalar = __commonJS((exports) => {
|
|
|
3259
3259
|
exports.isScalarValue = isScalarValue;
|
|
3260
3260
|
});
|
|
3261
3261
|
|
|
3262
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
|
|
3262
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
|
|
3263
3263
|
var require_createNode = __commonJS((exports) => {
|
|
3264
3264
|
var Alias = require_Alias();
|
|
3265
3265
|
var identity = require_identity();
|
|
@@ -3331,7 +3331,7 @@ var require_createNode = __commonJS((exports) => {
|
|
|
3331
3331
|
exports.createNode = createNode;
|
|
3332
3332
|
});
|
|
3333
3333
|
|
|
3334
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
|
|
3334
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
|
|
3335
3335
|
var require_Collection = __commonJS((exports) => {
|
|
3336
3336
|
var createNode = require_createNode();
|
|
3337
3337
|
var identity = require_identity();
|
|
@@ -3446,7 +3446,7 @@ var require_Collection = __commonJS((exports) => {
|
|
|
3446
3446
|
exports.isEmptyPath = isEmptyPath;
|
|
3447
3447
|
});
|
|
3448
3448
|
|
|
3449
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
|
|
3449
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
|
|
3450
3450
|
var require_stringifyComment = __commonJS((exports) => {
|
|
3451
3451
|
var stringifyComment = (str) => str.replace(/^(?!$)(?: $)?/gm, "#");
|
|
3452
3452
|
function indentComment(comment, indent) {
|
|
@@ -3463,7 +3463,7 @@ var require_stringifyComment = __commonJS((exports) => {
|
|
|
3463
3463
|
exports.stringifyComment = stringifyComment;
|
|
3464
3464
|
});
|
|
3465
3465
|
|
|
3466
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
|
|
3466
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
|
|
3467
3467
|
var require_foldFlowLines = __commonJS((exports) => {
|
|
3468
3468
|
var FOLD_FLOW = "flow";
|
|
3469
3469
|
var FOLD_BLOCK = "block";
|
|
@@ -3600,7 +3600,7 @@ ${indent}${text.slice(fold + 1, end2)}`;
|
|
|
3600
3600
|
exports.foldFlowLines = foldFlowLines;
|
|
3601
3601
|
});
|
|
3602
3602
|
|
|
3603
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
|
|
3603
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
|
|
3604
3604
|
var require_stringifyString = __commonJS((exports) => {
|
|
3605
3605
|
var Scalar = require_Scalar();
|
|
3606
3606
|
var foldFlowLines = require_foldFlowLines();
|
|
@@ -3898,7 +3898,7 @@ ${indent}`);
|
|
|
3898
3898
|
exports.stringifyString = stringifyString;
|
|
3899
3899
|
});
|
|
3900
3900
|
|
|
3901
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
|
|
3901
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
|
|
3902
3902
|
var require_stringify = __commonJS((exports) => {
|
|
3903
3903
|
var anchors = require_anchors();
|
|
3904
3904
|
var identity = require_identity();
|
|
@@ -4019,7 +4019,7 @@ ${ctx.indent}${str}`;
|
|
|
4019
4019
|
exports.stringify = stringify;
|
|
4020
4020
|
});
|
|
4021
4021
|
|
|
4022
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
|
|
4022
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
|
|
4023
4023
|
var require_stringifyPair = __commonJS((exports) => {
|
|
4024
4024
|
var identity = require_identity();
|
|
4025
4025
|
var Scalar = require_Scalar();
|
|
@@ -4155,7 +4155,7 @@ ${ctx.indent}`;
|
|
|
4155
4155
|
exports.stringifyPair = stringifyPair;
|
|
4156
4156
|
});
|
|
4157
4157
|
|
|
4158
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
|
|
4158
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
|
|
4159
4159
|
var require_log = __commonJS((exports) => {
|
|
4160
4160
|
var node_process = __require("process");
|
|
4161
4161
|
function debug(logLevel, ...messages) {
|
|
@@ -4174,7 +4174,7 @@ var require_log = __commonJS((exports) => {
|
|
|
4174
4174
|
exports.warn = warn;
|
|
4175
4175
|
});
|
|
4176
4176
|
|
|
4177
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
|
|
4177
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
|
|
4178
4178
|
var require_merge = __commonJS((exports) => {
|
|
4179
4179
|
var identity = require_identity();
|
|
4180
4180
|
var Scalar = require_Scalar();
|
|
@@ -4228,7 +4228,7 @@ var require_merge = __commonJS((exports) => {
|
|
|
4228
4228
|
exports.merge = merge;
|
|
4229
4229
|
});
|
|
4230
4230
|
|
|
4231
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
|
|
4231
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
|
|
4232
4232
|
var require_addPairToJSMap = __commonJS((exports) => {
|
|
4233
4233
|
var log = require_log();
|
|
4234
4234
|
var merge = require_merge();
|
|
@@ -4289,7 +4289,7 @@ var require_addPairToJSMap = __commonJS((exports) => {
|
|
|
4289
4289
|
exports.addPairToJSMap = addPairToJSMap;
|
|
4290
4290
|
});
|
|
4291
4291
|
|
|
4292
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
|
|
4292
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
|
|
4293
4293
|
var require_Pair = __commonJS((exports) => {
|
|
4294
4294
|
var createNode = require_createNode();
|
|
4295
4295
|
var stringifyPair = require_stringifyPair();
|
|
@@ -4327,7 +4327,7 @@ var require_Pair = __commonJS((exports) => {
|
|
|
4327
4327
|
exports.createPair = createPair;
|
|
4328
4328
|
});
|
|
4329
4329
|
|
|
4330
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
|
|
4330
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
|
|
4331
4331
|
var require_stringifyCollection = __commonJS((exports) => {
|
|
4332
4332
|
var identity = require_identity();
|
|
4333
4333
|
var stringify = require_stringify();
|
|
@@ -4479,7 +4479,7 @@ ${indent}${end}`;
|
|
|
4479
4479
|
exports.stringifyCollection = stringifyCollection;
|
|
4480
4480
|
});
|
|
4481
4481
|
|
|
4482
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
|
|
4482
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
|
|
4483
4483
|
var require_YAMLMap = __commonJS((exports) => {
|
|
4484
4484
|
var stringifyCollection = require_stringifyCollection();
|
|
4485
4485
|
var addPairToJSMap = require_addPairToJSMap();
|
|
@@ -4606,7 +4606,7 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
|
4606
4606
|
exports.findPair = findPair;
|
|
4607
4607
|
});
|
|
4608
4608
|
|
|
4609
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
|
|
4609
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
|
|
4610
4610
|
var require_map = __commonJS((exports) => {
|
|
4611
4611
|
var identity = require_identity();
|
|
4612
4612
|
var YAMLMap = require_YAMLMap();
|
|
@@ -4625,7 +4625,7 @@ var require_map = __commonJS((exports) => {
|
|
|
4625
4625
|
exports.map = map;
|
|
4626
4626
|
});
|
|
4627
4627
|
|
|
4628
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
|
|
4628
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
|
|
4629
4629
|
var require_YAMLSeq = __commonJS((exports) => {
|
|
4630
4630
|
var createNode = require_createNode();
|
|
4631
4631
|
var stringifyCollection = require_stringifyCollection();
|
|
@@ -4718,7 +4718,7 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
|
4718
4718
|
exports.YAMLSeq = YAMLSeq;
|
|
4719
4719
|
});
|
|
4720
4720
|
|
|
4721
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
|
|
4721
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
|
|
4722
4722
|
var require_seq = __commonJS((exports) => {
|
|
4723
4723
|
var identity = require_identity();
|
|
4724
4724
|
var YAMLSeq = require_YAMLSeq();
|
|
@@ -4737,7 +4737,7 @@ var require_seq = __commonJS((exports) => {
|
|
|
4737
4737
|
exports.seq = seq;
|
|
4738
4738
|
});
|
|
4739
4739
|
|
|
4740
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
|
|
4740
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
|
|
4741
4741
|
var require_string = __commonJS((exports) => {
|
|
4742
4742
|
var stringifyString = require_stringifyString();
|
|
4743
4743
|
var string = {
|
|
@@ -4753,7 +4753,7 @@ var require_string = __commonJS((exports) => {
|
|
|
4753
4753
|
exports.string = string;
|
|
4754
4754
|
});
|
|
4755
4755
|
|
|
4756
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
|
|
4756
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
|
|
4757
4757
|
var require_null = __commonJS((exports) => {
|
|
4758
4758
|
var Scalar = require_Scalar();
|
|
4759
4759
|
var nullTag = {
|
|
@@ -4768,7 +4768,7 @@ var require_null = __commonJS((exports) => {
|
|
|
4768
4768
|
exports.nullTag = nullTag;
|
|
4769
4769
|
});
|
|
4770
4770
|
|
|
4771
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
|
|
4771
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
|
|
4772
4772
|
var require_bool = __commonJS((exports) => {
|
|
4773
4773
|
var Scalar = require_Scalar();
|
|
4774
4774
|
var boolTag = {
|
|
@@ -4789,7 +4789,7 @@ var require_bool = __commonJS((exports) => {
|
|
|
4789
4789
|
exports.boolTag = boolTag;
|
|
4790
4790
|
});
|
|
4791
4791
|
|
|
4792
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
|
|
4792
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
|
|
4793
4793
|
var require_stringifyNumber = __commonJS((exports) => {
|
|
4794
4794
|
function stringifyNumber({ format, minFractionDigits, tag, value }) {
|
|
4795
4795
|
if (typeof value === "bigint")
|
|
@@ -4813,7 +4813,7 @@ var require_stringifyNumber = __commonJS((exports) => {
|
|
|
4813
4813
|
exports.stringifyNumber = stringifyNumber;
|
|
4814
4814
|
});
|
|
4815
4815
|
|
|
4816
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
|
|
4816
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
|
|
4817
4817
|
var require_float = __commonJS((exports) => {
|
|
4818
4818
|
var Scalar = require_Scalar();
|
|
4819
4819
|
var stringifyNumber = require_stringifyNumber();
|
|
@@ -4856,7 +4856,7 @@ var require_float = __commonJS((exports) => {
|
|
|
4856
4856
|
exports.floatNaN = floatNaN;
|
|
4857
4857
|
});
|
|
4858
4858
|
|
|
4859
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
|
|
4859
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
|
|
4860
4860
|
var require_int = __commonJS((exports) => {
|
|
4861
4861
|
var stringifyNumber = require_stringifyNumber();
|
|
4862
4862
|
var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
|
|
@@ -4898,7 +4898,7 @@ var require_int = __commonJS((exports) => {
|
|
|
4898
4898
|
exports.intOct = intOct;
|
|
4899
4899
|
});
|
|
4900
4900
|
|
|
4901
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
|
|
4901
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
|
|
4902
4902
|
var require_schema = __commonJS((exports) => {
|
|
4903
4903
|
var map = require_map();
|
|
4904
4904
|
var _null = require_null();
|
|
@@ -4923,7 +4923,7 @@ var require_schema = __commonJS((exports) => {
|
|
|
4923
4923
|
exports.schema = schema;
|
|
4924
4924
|
});
|
|
4925
4925
|
|
|
4926
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
|
|
4926
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
|
|
4927
4927
|
var require_schema2 = __commonJS((exports) => {
|
|
4928
4928
|
var Scalar = require_Scalar();
|
|
4929
4929
|
var map = require_map();
|
|
@@ -4987,7 +4987,7 @@ var require_schema2 = __commonJS((exports) => {
|
|
|
4987
4987
|
exports.schema = schema;
|
|
4988
4988
|
});
|
|
4989
4989
|
|
|
4990
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
|
|
4990
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
|
|
4991
4991
|
var require_binary = __commonJS((exports) => {
|
|
4992
4992
|
var node_buffer = __require("buffer");
|
|
4993
4993
|
var Scalar = require_Scalar();
|
|
@@ -5042,7 +5042,7 @@ var require_binary = __commonJS((exports) => {
|
|
|
5042
5042
|
exports.binary = binary;
|
|
5043
5043
|
});
|
|
5044
5044
|
|
|
5045
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
|
|
5045
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
|
|
5046
5046
|
var require_pairs = __commonJS((exports) => {
|
|
5047
5047
|
var identity = require_identity();
|
|
5048
5048
|
var Pair = require_Pair();
|
|
@@ -5117,7 +5117,7 @@ ${cn.comment}` : item.comment;
|
|
|
5117
5117
|
exports.resolvePairs = resolvePairs;
|
|
5118
5118
|
});
|
|
5119
5119
|
|
|
5120
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
|
|
5120
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
|
|
5121
5121
|
var require_omap = __commonJS((exports) => {
|
|
5122
5122
|
var identity = require_identity();
|
|
5123
5123
|
var toJS = require_toJS();
|
|
@@ -5189,7 +5189,7 @@ var require_omap = __commonJS((exports) => {
|
|
|
5189
5189
|
exports.omap = omap;
|
|
5190
5190
|
});
|
|
5191
5191
|
|
|
5192
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
|
|
5192
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
|
|
5193
5193
|
var require_bool2 = __commonJS((exports) => {
|
|
5194
5194
|
var Scalar = require_Scalar();
|
|
5195
5195
|
function boolStringify({ value, source }, ctx) {
|
|
@@ -5218,7 +5218,7 @@ var require_bool2 = __commonJS((exports) => {
|
|
|
5218
5218
|
exports.trueTag = trueTag;
|
|
5219
5219
|
});
|
|
5220
5220
|
|
|
5221
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
|
|
5221
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
|
|
5222
5222
|
var require_float2 = __commonJS((exports) => {
|
|
5223
5223
|
var Scalar = require_Scalar();
|
|
5224
5224
|
var stringifyNumber = require_stringifyNumber();
|
|
@@ -5264,7 +5264,7 @@ var require_float2 = __commonJS((exports) => {
|
|
|
5264
5264
|
exports.floatNaN = floatNaN;
|
|
5265
5265
|
});
|
|
5266
5266
|
|
|
5267
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
|
|
5267
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
|
|
5268
5268
|
var require_int2 = __commonJS((exports) => {
|
|
5269
5269
|
var stringifyNumber = require_stringifyNumber();
|
|
5270
5270
|
var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
|
|
@@ -5340,7 +5340,7 @@ var require_int2 = __commonJS((exports) => {
|
|
|
5340
5340
|
exports.intOct = intOct;
|
|
5341
5341
|
});
|
|
5342
5342
|
|
|
5343
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
|
|
5343
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
|
|
5344
5344
|
var require_set = __commonJS((exports) => {
|
|
5345
5345
|
var identity = require_identity();
|
|
5346
5346
|
var Pair = require_Pair();
|
|
@@ -5423,7 +5423,7 @@ var require_set = __commonJS((exports) => {
|
|
|
5423
5423
|
exports.set = set;
|
|
5424
5424
|
});
|
|
5425
5425
|
|
|
5426
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
|
|
5426
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
|
|
5427
5427
|
var require_timestamp = __commonJS((exports) => {
|
|
5428
5428
|
var stringifyNumber = require_stringifyNumber();
|
|
5429
5429
|
function parseSexagesimal(str, asBigInt) {
|
|
@@ -5505,7 +5505,7 @@ var require_timestamp = __commonJS((exports) => {
|
|
|
5505
5505
|
exports.timestamp = timestamp;
|
|
5506
5506
|
});
|
|
5507
5507
|
|
|
5508
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
|
|
5508
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
|
|
5509
5509
|
var require_schema3 = __commonJS((exports) => {
|
|
5510
5510
|
var map = require_map();
|
|
5511
5511
|
var _null = require_null();
|
|
@@ -5546,7 +5546,7 @@ var require_schema3 = __commonJS((exports) => {
|
|
|
5546
5546
|
exports.schema = schema;
|
|
5547
5547
|
});
|
|
5548
5548
|
|
|
5549
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
|
|
5549
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
|
|
5550
5550
|
var require_tags = __commonJS((exports) => {
|
|
5551
5551
|
var map = require_map();
|
|
5552
5552
|
var _null = require_null();
|
|
@@ -5637,7 +5637,7 @@ var require_tags = __commonJS((exports) => {
|
|
|
5637
5637
|
exports.getTags = getTags;
|
|
5638
5638
|
});
|
|
5639
5639
|
|
|
5640
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
|
|
5640
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
|
|
5641
5641
|
var require_Schema = __commonJS((exports) => {
|
|
5642
5642
|
var identity = require_identity();
|
|
5643
5643
|
var map = require_map();
|
|
@@ -5667,7 +5667,7 @@ var require_Schema = __commonJS((exports) => {
|
|
|
5667
5667
|
exports.Schema = Schema;
|
|
5668
5668
|
});
|
|
5669
5669
|
|
|
5670
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
|
|
5670
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
|
|
5671
5671
|
var require_stringifyDocument = __commonJS((exports) => {
|
|
5672
5672
|
var identity = require_identity();
|
|
5673
5673
|
var stringify = require_stringify();
|
|
@@ -5747,7 +5747,7 @@ var require_stringifyDocument = __commonJS((exports) => {
|
|
|
5747
5747
|
exports.stringifyDocument = stringifyDocument;
|
|
5748
5748
|
});
|
|
5749
5749
|
|
|
5750
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
|
|
5750
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
|
|
5751
5751
|
var require_Document = __commonJS((exports) => {
|
|
5752
5752
|
var Alias = require_Alias();
|
|
5753
5753
|
var Collection = require_Collection();
|
|
@@ -5982,7 +5982,7 @@ var require_Document = __commonJS((exports) => {
|
|
|
5982
5982
|
exports.Document = Document;
|
|
5983
5983
|
});
|
|
5984
5984
|
|
|
5985
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
|
|
5985
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
|
|
5986
5986
|
var require_errors = __commonJS((exports) => {
|
|
5987
5987
|
class YAMLError extends Error {
|
|
5988
5988
|
constructor(name, pos, code, message) {
|
|
@@ -6047,7 +6047,7 @@ ${pointer}
|
|
|
6047
6047
|
exports.prettifyError = prettifyError;
|
|
6048
6048
|
});
|
|
6049
6049
|
|
|
6050
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
|
|
6050
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
|
|
6051
6051
|
var require_resolve_props = __commonJS((exports) => {
|
|
6052
6052
|
function resolveProps(tokens, { flow, indicator, next, offset, onError, parentIndent, startOnNewline }) {
|
|
6053
6053
|
let spaceBefore = false;
|
|
@@ -6177,7 +6177,7 @@ var require_resolve_props = __commonJS((exports) => {
|
|
|
6177
6177
|
exports.resolveProps = resolveProps;
|
|
6178
6178
|
});
|
|
6179
6179
|
|
|
6180
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
|
|
6180
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
|
|
6181
6181
|
var require_util_contains_newline = __commonJS((exports) => {
|
|
6182
6182
|
function containsNewline(key) {
|
|
6183
6183
|
if (!key)
|
|
@@ -6217,7 +6217,7 @@ var require_util_contains_newline = __commonJS((exports) => {
|
|
|
6217
6217
|
exports.containsNewline = containsNewline;
|
|
6218
6218
|
});
|
|
6219
6219
|
|
|
6220
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
|
|
6220
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
|
|
6221
6221
|
var require_util_flow_indent_check = __commonJS((exports) => {
|
|
6222
6222
|
var utilContainsNewline = require_util_contains_newline();
|
|
6223
6223
|
function flowIndentCheck(indent, fc, onError) {
|
|
@@ -6232,7 +6232,7 @@ var require_util_flow_indent_check = __commonJS((exports) => {
|
|
|
6232
6232
|
exports.flowIndentCheck = flowIndentCheck;
|
|
6233
6233
|
});
|
|
6234
6234
|
|
|
6235
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
|
|
6235
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
|
|
6236
6236
|
var require_util_map_includes = __commonJS((exports) => {
|
|
6237
6237
|
var identity = require_identity();
|
|
6238
6238
|
function mapIncludes(ctx, items, search) {
|
|
@@ -6245,7 +6245,7 @@ var require_util_map_includes = __commonJS((exports) => {
|
|
|
6245
6245
|
exports.mapIncludes = mapIncludes;
|
|
6246
6246
|
});
|
|
6247
6247
|
|
|
6248
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
|
|
6248
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
|
|
6249
6249
|
var require_resolve_block_map = __commonJS((exports) => {
|
|
6250
6250
|
var Pair = require_Pair();
|
|
6251
6251
|
var YAMLMap = require_YAMLMap();
|
|
@@ -6352,7 +6352,7 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
|
6352
6352
|
exports.resolveBlockMap = resolveBlockMap;
|
|
6353
6353
|
});
|
|
6354
6354
|
|
|
6355
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
|
|
6355
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
|
|
6356
6356
|
var require_resolve_block_seq = __commonJS((exports) => {
|
|
6357
6357
|
var YAMLSeq = require_YAMLSeq();
|
|
6358
6358
|
var resolveProps = require_resolve_props();
|
|
@@ -6400,7 +6400,7 @@ var require_resolve_block_seq = __commonJS((exports) => {
|
|
|
6400
6400
|
exports.resolveBlockSeq = resolveBlockSeq;
|
|
6401
6401
|
});
|
|
6402
6402
|
|
|
6403
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
|
|
6403
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
|
|
6404
6404
|
var require_resolve_end = __commonJS((exports) => {
|
|
6405
6405
|
function resolveEnd(end, offset, reqSpace, onError) {
|
|
6406
6406
|
let comment = "";
|
|
@@ -6440,7 +6440,7 @@ var require_resolve_end = __commonJS((exports) => {
|
|
|
6440
6440
|
exports.resolveEnd = resolveEnd;
|
|
6441
6441
|
});
|
|
6442
6442
|
|
|
6443
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
|
|
6443
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
|
|
6444
6444
|
var require_resolve_flow_collection = __commonJS((exports) => {
|
|
6445
6445
|
var identity = require_identity();
|
|
6446
6446
|
var Pair = require_Pair();
|
|
@@ -6631,7 +6631,7 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
|
6631
6631
|
exports.resolveFlowCollection = resolveFlowCollection;
|
|
6632
6632
|
});
|
|
6633
6633
|
|
|
6634
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
|
|
6634
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
|
|
6635
6635
|
var require_compose_collection = __commonJS((exports) => {
|
|
6636
6636
|
var identity = require_identity();
|
|
6637
6637
|
var Scalar = require_Scalar();
|
|
@@ -6693,7 +6693,7 @@ var require_compose_collection = __commonJS((exports) => {
|
|
|
6693
6693
|
exports.composeCollection = composeCollection;
|
|
6694
6694
|
});
|
|
6695
6695
|
|
|
6696
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
|
|
6696
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
|
|
6697
6697
|
var require_resolve_block_scalar = __commonJS((exports) => {
|
|
6698
6698
|
var Scalar = require_Scalar();
|
|
6699
6699
|
function resolveBlockScalar(ctx, scalar, onError) {
|
|
@@ -6886,7 +6886,7 @@ var require_resolve_block_scalar = __commonJS((exports) => {
|
|
|
6886
6886
|
exports.resolveBlockScalar = resolveBlockScalar;
|
|
6887
6887
|
});
|
|
6888
6888
|
|
|
6889
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
|
|
6889
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
|
|
6890
6890
|
var require_resolve_flow_scalar = __commonJS((exports) => {
|
|
6891
6891
|
var Scalar = require_Scalar();
|
|
6892
6892
|
var resolveEnd = require_resolve_end();
|
|
@@ -7102,7 +7102,7 @@ var require_resolve_flow_scalar = __commonJS((exports) => {
|
|
|
7102
7102
|
exports.resolveFlowScalar = resolveFlowScalar;
|
|
7103
7103
|
});
|
|
7104
7104
|
|
|
7105
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
|
|
7105
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
|
|
7106
7106
|
var require_compose_scalar = __commonJS((exports) => {
|
|
7107
7107
|
var identity = require_identity();
|
|
7108
7108
|
var Scalar = require_Scalar();
|
|
@@ -7180,7 +7180,7 @@ var require_compose_scalar = __commonJS((exports) => {
|
|
|
7180
7180
|
exports.composeScalar = composeScalar;
|
|
7181
7181
|
});
|
|
7182
7182
|
|
|
7183
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
|
|
7183
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
|
|
7184
7184
|
var require_util_empty_scalar_position = __commonJS((exports) => {
|
|
7185
7185
|
function emptyScalarPosition(offset, before, pos) {
|
|
7186
7186
|
if (before) {
|
|
@@ -7207,7 +7207,7 @@ var require_util_empty_scalar_position = __commonJS((exports) => {
|
|
|
7207
7207
|
exports.emptyScalarPosition = emptyScalarPosition;
|
|
7208
7208
|
});
|
|
7209
7209
|
|
|
7210
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
|
|
7210
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
|
|
7211
7211
|
var require_compose_node = __commonJS((exports) => {
|
|
7212
7212
|
var Alias = require_Alias();
|
|
7213
7213
|
var identity = require_identity();
|
|
@@ -7310,7 +7310,7 @@ var require_compose_node = __commonJS((exports) => {
|
|
|
7310
7310
|
exports.composeNode = composeNode;
|
|
7311
7311
|
});
|
|
7312
7312
|
|
|
7313
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
|
|
7313
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
|
|
7314
7314
|
var require_compose_doc = __commonJS((exports) => {
|
|
7315
7315
|
var Document = require_Document();
|
|
7316
7316
|
var composeNode = require_compose_node();
|
|
@@ -7350,7 +7350,7 @@ var require_compose_doc = __commonJS((exports) => {
|
|
|
7350
7350
|
exports.composeDoc = composeDoc;
|
|
7351
7351
|
});
|
|
7352
7352
|
|
|
7353
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
|
|
7353
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
|
|
7354
7354
|
var require_composer = __commonJS((exports) => {
|
|
7355
7355
|
var node_process = __require("process");
|
|
7356
7356
|
var directives = require_directives();
|
|
@@ -7539,7 +7539,7 @@ ${end.comment}` : end.comment;
|
|
|
7539
7539
|
exports.Composer = Composer;
|
|
7540
7540
|
});
|
|
7541
7541
|
|
|
7542
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
|
|
7542
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
|
|
7543
7543
|
var require_cst_scalar = __commonJS((exports) => {
|
|
7544
7544
|
var resolveBlockScalar = require_resolve_block_scalar();
|
|
7545
7545
|
var resolveFlowScalar = require_resolve_flow_scalar();
|
|
@@ -7729,7 +7729,7 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
|
7729
7729
|
exports.setScalarValue = setScalarValue;
|
|
7730
7730
|
});
|
|
7731
7731
|
|
|
7732
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
|
|
7732
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
|
|
7733
7733
|
var require_cst_stringify = __commonJS((exports) => {
|
|
7734
7734
|
var stringify = (cst) => ("type" in cst) ? stringifyToken(cst) : stringifyItem(cst);
|
|
7735
7735
|
function stringifyToken(token) {
|
|
@@ -7787,7 +7787,7 @@ var require_cst_stringify = __commonJS((exports) => {
|
|
|
7787
7787
|
exports.stringify = stringify;
|
|
7788
7788
|
});
|
|
7789
7789
|
|
|
7790
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
|
|
7790
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
|
|
7791
7791
|
var require_cst_visit = __commonJS((exports) => {
|
|
7792
7792
|
var BREAK = Symbol("break visit");
|
|
7793
7793
|
var SKIP = Symbol("skip children");
|
|
@@ -7846,7 +7846,7 @@ var require_cst_visit = __commonJS((exports) => {
|
|
|
7846
7846
|
exports.visit = visit;
|
|
7847
7847
|
});
|
|
7848
7848
|
|
|
7849
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
|
|
7849
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
|
|
7850
7850
|
var require_cst = __commonJS((exports) => {
|
|
7851
7851
|
var cstScalar = require_cst_scalar();
|
|
7852
7852
|
var cstStringify = require_cst_stringify();
|
|
@@ -7947,7 +7947,7 @@ var require_cst = __commonJS((exports) => {
|
|
|
7947
7947
|
exports.tokenType = tokenType;
|
|
7948
7948
|
});
|
|
7949
7949
|
|
|
7950
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
|
|
7950
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
|
|
7951
7951
|
var require_lexer = __commonJS((exports) => {
|
|
7952
7952
|
var cst = require_cst();
|
|
7953
7953
|
function isEmpty(ch) {
|
|
@@ -8533,7 +8533,7 @@ var require_lexer = __commonJS((exports) => {
|
|
|
8533
8533
|
exports.Lexer = Lexer;
|
|
8534
8534
|
});
|
|
8535
8535
|
|
|
8536
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
|
|
8536
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
|
|
8537
8537
|
var require_line_counter = __commonJS((exports) => {
|
|
8538
8538
|
class LineCounter {
|
|
8539
8539
|
constructor() {
|
|
@@ -8561,7 +8561,7 @@ var require_line_counter = __commonJS((exports) => {
|
|
|
8561
8561
|
exports.LineCounter = LineCounter;
|
|
8562
8562
|
});
|
|
8563
8563
|
|
|
8564
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
|
|
8564
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
|
|
8565
8565
|
var require_parser = __commonJS((exports) => {
|
|
8566
8566
|
var node_process = __require("process");
|
|
8567
8567
|
var cst = require_cst();
|
|
@@ -9410,7 +9410,7 @@ var require_parser = __commonJS((exports) => {
|
|
|
9410
9410
|
exports.Parser = Parser;
|
|
9411
9411
|
});
|
|
9412
9412
|
|
|
9413
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
|
|
9413
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
|
|
9414
9414
|
var require_public_api = __commonJS((exports) => {
|
|
9415
9415
|
var composer = require_composer();
|
|
9416
9416
|
var Document = require_Document();
|
|
@@ -9504,7 +9504,7 @@ var require_public_api = __commonJS((exports) => {
|
|
|
9504
9504
|
exports.stringify = stringify;
|
|
9505
9505
|
});
|
|
9506
9506
|
|
|
9507
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
|
|
9507
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
|
|
9508
9508
|
var require_dist = __commonJS((exports) => {
|
|
9509
9509
|
var composer = require_composer();
|
|
9510
9510
|
var Document = require_Document();
|
|
@@ -9553,7 +9553,7 @@ var require_dist = __commonJS((exports) => {
|
|
|
9553
9553
|
exports.visitAsync = visit.visitAsync;
|
|
9554
9554
|
});
|
|
9555
9555
|
|
|
9556
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/util.js
|
|
9556
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/util.js
|
|
9557
9557
|
var util, objectUtil, ZodParsedType, getParsedType = (data) => {
|
|
9558
9558
|
const t = typeof data;
|
|
9559
9559
|
switch (t) {
|
|
@@ -9684,7 +9684,7 @@ var init_util = __esm(() => {
|
|
|
9684
9684
|
]);
|
|
9685
9685
|
});
|
|
9686
9686
|
|
|
9687
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/ZodError.js
|
|
9687
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/ZodError.js
|
|
9688
9688
|
var ZodIssueCode, quotelessJson = (obj) => {
|
|
9689
9689
|
const json = JSON.stringify(obj, null, 2);
|
|
9690
9690
|
return json.replace(/"([^"]+)":/g, "$1:");
|
|
@@ -9805,7 +9805,7 @@ var init_ZodError = __esm(() => {
|
|
|
9805
9805
|
};
|
|
9806
9806
|
});
|
|
9807
9807
|
|
|
9808
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/locales/en.js
|
|
9808
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/locales/en.js
|
|
9809
9809
|
var errorMap = (issue, _ctx) => {
|
|
9810
9810
|
let message;
|
|
9811
9811
|
switch (issue.code) {
|
|
@@ -9912,7 +9912,7 @@ var init_en = __esm(() => {
|
|
|
9912
9912
|
en_default = errorMap;
|
|
9913
9913
|
});
|
|
9914
9914
|
|
|
9915
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/errors.js
|
|
9915
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/errors.js
|
|
9916
9916
|
function setErrorMap(map) {
|
|
9917
9917
|
overrideErrorMap = map;
|
|
9918
9918
|
}
|
|
@@ -9925,7 +9925,7 @@ var init_errors = __esm(() => {
|
|
|
9925
9925
|
overrideErrorMap = en_default;
|
|
9926
9926
|
});
|
|
9927
9927
|
|
|
9928
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.js
|
|
9928
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.js
|
|
9929
9929
|
function addIssueToContext(ctx, issueData) {
|
|
9930
9930
|
const overrideMap = getErrorMap();
|
|
9931
9931
|
const issue = makeIssue({
|
|
@@ -10030,10 +10030,10 @@ var init_parseUtil = __esm(() => {
|
|
|
10030
10030
|
});
|
|
10031
10031
|
});
|
|
10032
10032
|
|
|
10033
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.js
|
|
10033
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.js
|
|
10034
10034
|
var init_typeAliases = () => {};
|
|
10035
10035
|
|
|
10036
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.js
|
|
10036
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.js
|
|
10037
10037
|
var errorUtil;
|
|
10038
10038
|
var init_errorUtil = __esm(() => {
|
|
10039
10039
|
(function(errorUtil2) {
|
|
@@ -10042,7 +10042,7 @@ var init_errorUtil = __esm(() => {
|
|
|
10042
10042
|
})(errorUtil || (errorUtil = {}));
|
|
10043
10043
|
});
|
|
10044
10044
|
|
|
10045
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/types.js
|
|
10045
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/types.js
|
|
10046
10046
|
class ParseInputLazyPath {
|
|
10047
10047
|
constructor(parent, value, path, key) {
|
|
10048
10048
|
this._cachedPath = [];
|
|
@@ -13393,7 +13393,7 @@ var init_types = __esm(() => {
|
|
|
13393
13393
|
NEVER = INVALID;
|
|
13394
13394
|
});
|
|
13395
13395
|
|
|
13396
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/external.js
|
|
13396
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/external.js
|
|
13397
13397
|
var exports_external = {};
|
|
13398
13398
|
__export(exports_external, {
|
|
13399
13399
|
void: () => voidType,
|
|
@@ -13513,7 +13513,7 @@ var init_external = __esm(() => {
|
|
|
13513
13513
|
init_ZodError();
|
|
13514
13514
|
});
|
|
13515
13515
|
|
|
13516
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/index.js
|
|
13516
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/index.js
|
|
13517
13517
|
var init_zod = __esm(() => {
|
|
13518
13518
|
init_external();
|
|
13519
13519
|
init_external();
|
|
@@ -15059,7 +15059,7 @@ function classifyTimezoneSource(config, resolvedAgent) {
|
|
|
15059
15059
|
}
|
|
15060
15060
|
var init_timezone = () => {};
|
|
15061
15061
|
|
|
15062
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/utils.js
|
|
15062
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/utils.js
|
|
15063
15063
|
var require_utils = __commonJS((exports) => {
|
|
15064
15064
|
exports.__esModule = true;
|
|
15065
15065
|
exports.extend = extend;
|
|
@@ -15155,7 +15155,7 @@ var require_utils = __commonJS((exports) => {
|
|
|
15155
15155
|
}
|
|
15156
15156
|
});
|
|
15157
15157
|
|
|
15158
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/exception.js
|
|
15158
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/exception.js
|
|
15159
15159
|
var require_exception = __commonJS((exports, module) => {
|
|
15160
15160
|
exports.__esModule = true;
|
|
15161
15161
|
var errorProps = ["description", "fileName", "lineNumber", "endLineNumber", "message", "name", "number", "stack"];
|
|
@@ -15200,7 +15200,7 @@ var require_exception = __commonJS((exports, module) => {
|
|
|
15200
15200
|
module.exports = exports["default"];
|
|
15201
15201
|
});
|
|
15202
15202
|
|
|
15203
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js
|
|
15203
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js
|
|
15204
15204
|
var require_block_helper_missing = __commonJS((exports, module) => {
|
|
15205
15205
|
exports.__esModule = true;
|
|
15206
15206
|
var _utils = require_utils();
|
|
@@ -15233,7 +15233,7 @@ var require_block_helper_missing = __commonJS((exports, module) => {
|
|
|
15233
15233
|
module.exports = exports["default"];
|
|
15234
15234
|
});
|
|
15235
15235
|
|
|
15236
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js
|
|
15236
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js
|
|
15237
15237
|
var require_each = __commonJS((exports, module) => {
|
|
15238
15238
|
exports.__esModule = true;
|
|
15239
15239
|
function _interopRequireDefault(obj) {
|
|
@@ -15314,7 +15314,7 @@ var require_each = __commonJS((exports, module) => {
|
|
|
15314
15314
|
module.exports = exports["default"];
|
|
15315
15315
|
});
|
|
15316
15316
|
|
|
15317
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js
|
|
15317
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js
|
|
15318
15318
|
var require_helper_missing = __commonJS((exports, module) => {
|
|
15319
15319
|
exports.__esModule = true;
|
|
15320
15320
|
function _interopRequireDefault(obj) {
|
|
@@ -15334,7 +15334,7 @@ var require_helper_missing = __commonJS((exports, module) => {
|
|
|
15334
15334
|
module.exports = exports["default"];
|
|
15335
15335
|
});
|
|
15336
15336
|
|
|
15337
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/if.js
|
|
15337
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/if.js
|
|
15338
15338
|
var require_if = __commonJS((exports, module) => {
|
|
15339
15339
|
exports.__esModule = true;
|
|
15340
15340
|
function _interopRequireDefault(obj) {
|
|
@@ -15371,7 +15371,7 @@ var require_if = __commonJS((exports, module) => {
|
|
|
15371
15371
|
module.exports = exports["default"];
|
|
15372
15372
|
});
|
|
15373
15373
|
|
|
15374
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/log.js
|
|
15374
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/log.js
|
|
15375
15375
|
var require_log2 = __commonJS((exports, module) => {
|
|
15376
15376
|
exports.__esModule = true;
|
|
15377
15377
|
exports.default = function(instance) {
|
|
@@ -15393,7 +15393,7 @@ var require_log2 = __commonJS((exports, module) => {
|
|
|
15393
15393
|
module.exports = exports["default"];
|
|
15394
15394
|
});
|
|
15395
15395
|
|
|
15396
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js
|
|
15396
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js
|
|
15397
15397
|
var require_lookup = __commonJS((exports, module) => {
|
|
15398
15398
|
exports.__esModule = true;
|
|
15399
15399
|
exports.default = function(instance) {
|
|
@@ -15407,7 +15407,7 @@ var require_lookup = __commonJS((exports, module) => {
|
|
|
15407
15407
|
module.exports = exports["default"];
|
|
15408
15408
|
});
|
|
15409
15409
|
|
|
15410
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/with.js
|
|
15410
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/with.js
|
|
15411
15411
|
var require_with = __commonJS((exports, module) => {
|
|
15412
15412
|
exports.__esModule = true;
|
|
15413
15413
|
function _interopRequireDefault(obj) {
|
|
@@ -15443,7 +15443,7 @@ var require_with = __commonJS((exports, module) => {
|
|
|
15443
15443
|
module.exports = exports["default"];
|
|
15444
15444
|
});
|
|
15445
15445
|
|
|
15446
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers.js
|
|
15446
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers.js
|
|
15447
15447
|
var require_helpers = __commonJS((exports) => {
|
|
15448
15448
|
exports.__esModule = true;
|
|
15449
15449
|
exports.registerDefaultHelpers = registerDefaultHelpers;
|
|
@@ -15484,7 +15484,7 @@ var require_helpers = __commonJS((exports) => {
|
|
|
15484
15484
|
}
|
|
15485
15485
|
});
|
|
15486
15486
|
|
|
15487
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js
|
|
15487
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js
|
|
15488
15488
|
var require_inline = __commonJS((exports, module) => {
|
|
15489
15489
|
exports.__esModule = true;
|
|
15490
15490
|
var _utils = require_utils();
|
|
@@ -15508,7 +15508,7 @@ var require_inline = __commonJS((exports, module) => {
|
|
|
15508
15508
|
module.exports = exports["default"];
|
|
15509
15509
|
});
|
|
15510
15510
|
|
|
15511
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators.js
|
|
15511
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators.js
|
|
15512
15512
|
var require_decorators = __commonJS((exports) => {
|
|
15513
15513
|
exports.__esModule = true;
|
|
15514
15514
|
exports.registerDefaultDecorators = registerDefaultDecorators;
|
|
@@ -15522,7 +15522,7 @@ var require_decorators = __commonJS((exports) => {
|
|
|
15522
15522
|
}
|
|
15523
15523
|
});
|
|
15524
15524
|
|
|
15525
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/logger.js
|
|
15525
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/logger.js
|
|
15526
15526
|
var require_logger = __commonJS((exports, module) => {
|
|
15527
15527
|
exports.__esModule = true;
|
|
15528
15528
|
var _utils = require_utils();
|
|
@@ -15558,7 +15558,7 @@ var require_logger = __commonJS((exports, module) => {
|
|
|
15558
15558
|
module.exports = exports["default"];
|
|
15559
15559
|
});
|
|
15560
15560
|
|
|
15561
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/proto-access.js
|
|
15561
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/proto-access.js
|
|
15562
15562
|
var require_proto_access = __commonJS((exports) => {
|
|
15563
15563
|
exports.__esModule = true;
|
|
15564
15564
|
exports.createProtoAccessControl = createProtoAccessControl;
|
|
@@ -15625,7 +15625,7 @@ var require_proto_access = __commonJS((exports) => {
|
|
|
15625
15625
|
}
|
|
15626
15626
|
});
|
|
15627
15627
|
|
|
15628
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/base.js
|
|
15628
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/base.js
|
|
15629
15629
|
var require_base = __commonJS((exports) => {
|
|
15630
15630
|
exports.__esModule = true;
|
|
15631
15631
|
exports.HandlebarsEnvironment = HandlebarsEnvironment;
|
|
@@ -15718,7 +15718,7 @@ var require_base = __commonJS((exports) => {
|
|
|
15718
15718
|
exports.logger = _logger2["default"];
|
|
15719
15719
|
});
|
|
15720
15720
|
|
|
15721
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/safe-string.js
|
|
15721
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/safe-string.js
|
|
15722
15722
|
var require_safe_string = __commonJS((exports, module) => {
|
|
15723
15723
|
exports.__esModule = true;
|
|
15724
15724
|
function SafeString(string) {
|
|
@@ -15731,7 +15731,7 @@ var require_safe_string = __commonJS((exports, module) => {
|
|
|
15731
15731
|
module.exports = exports["default"];
|
|
15732
15732
|
});
|
|
15733
15733
|
|
|
15734
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/wrapHelper.js
|
|
15734
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/wrapHelper.js
|
|
15735
15735
|
var require_wrapHelper = __commonJS((exports) => {
|
|
15736
15736
|
exports.__esModule = true;
|
|
15737
15737
|
exports.wrapHelper = wrapHelper;
|
|
@@ -15748,7 +15748,7 @@ var require_wrapHelper = __commonJS((exports) => {
|
|
|
15748
15748
|
}
|
|
15749
15749
|
});
|
|
15750
15750
|
|
|
15751
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/runtime.js
|
|
15751
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/runtime.js
|
|
15752
15752
|
var require_runtime = __commonJS((exports) => {
|
|
15753
15753
|
exports.__esModule = true;
|
|
15754
15754
|
exports.checkRevision = checkRevision;
|
|
@@ -16063,7 +16063,7 @@ var require_runtime = __commonJS((exports) => {
|
|
|
16063
16063
|
}
|
|
16064
16064
|
});
|
|
16065
16065
|
|
|
16066
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js
|
|
16066
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js
|
|
16067
16067
|
var require_no_conflict = __commonJS((exports, module) => {
|
|
16068
16068
|
exports.__esModule = true;
|
|
16069
16069
|
exports.default = function(Handlebars) {
|
|
@@ -16087,7 +16087,7 @@ var require_no_conflict = __commonJS((exports, module) => {
|
|
|
16087
16087
|
module.exports = exports["default"];
|
|
16088
16088
|
});
|
|
16089
16089
|
|
|
16090
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.runtime.js
|
|
16090
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.runtime.js
|
|
16091
16091
|
var require_handlebars_runtime = __commonJS((exports, module) => {
|
|
16092
16092
|
exports.__esModule = true;
|
|
16093
16093
|
function _interopRequireDefault(obj) {
|
|
@@ -16141,7 +16141,7 @@ var require_handlebars_runtime = __commonJS((exports, module) => {
|
|
|
16141
16141
|
module.exports = exports["default"];
|
|
16142
16142
|
});
|
|
16143
16143
|
|
|
16144
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js
|
|
16144
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js
|
|
16145
16145
|
var require_ast = __commonJS((exports, module) => {
|
|
16146
16146
|
exports.__esModule = true;
|
|
16147
16147
|
var AST = {
|
|
@@ -16161,7 +16161,7 @@ var require_ast = __commonJS((exports, module) => {
|
|
|
16161
16161
|
module.exports = exports["default"];
|
|
16162
16162
|
});
|
|
16163
16163
|
|
|
16164
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js
|
|
16164
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js
|
|
16165
16165
|
var require_parser2 = __commonJS((exports, module) => {
|
|
16166
16166
|
exports.__esModule = true;
|
|
16167
16167
|
var handlebars = function() {
|
|
@@ -16885,7 +16885,7 @@ Expecting ` + expected.join(", ") + ", got '" + (this.terminals_[symbol] || symb
|
|
|
16885
16885
|
module.exports = exports["default"];
|
|
16886
16886
|
});
|
|
16887
16887
|
|
|
16888
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js
|
|
16888
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js
|
|
16889
16889
|
var require_visitor = __commonJS((exports, module) => {
|
|
16890
16890
|
exports.__esModule = true;
|
|
16891
16891
|
function _interopRequireDefault(obj) {
|
|
@@ -16990,7 +16990,7 @@ var require_visitor = __commonJS((exports, module) => {
|
|
|
16990
16990
|
module.exports = exports["default"];
|
|
16991
16991
|
});
|
|
16992
16992
|
|
|
16993
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js
|
|
16993
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js
|
|
16994
16994
|
var require_whitespace_control = __commonJS((exports, module) => {
|
|
16995
16995
|
exports.__esModule = true;
|
|
16996
16996
|
function _interopRequireDefault(obj) {
|
|
@@ -17136,7 +17136,7 @@ var require_whitespace_control = __commonJS((exports, module) => {
|
|
|
17136
17136
|
module.exports = exports["default"];
|
|
17137
17137
|
});
|
|
17138
17138
|
|
|
17139
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js
|
|
17139
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js
|
|
17140
17140
|
var require_helpers2 = __commonJS((exports) => {
|
|
17141
17141
|
exports.__esModule = true;
|
|
17142
17142
|
exports.SourceLocation = SourceLocation;
|
|
@@ -17321,7 +17321,7 @@ var require_helpers2 = __commonJS((exports) => {
|
|
|
17321
17321
|
}
|
|
17322
17322
|
});
|
|
17323
17323
|
|
|
17324
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
|
|
17324
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
|
|
17325
17325
|
var require_base2 = __commonJS((exports) => {
|
|
17326
17326
|
exports.__esModule = true;
|
|
17327
17327
|
exports.parseWithoutProcessing = parseWithoutProcessing;
|
|
@@ -17420,7 +17420,7 @@ var require_base2 = __commonJS((exports) => {
|
|
|
17420
17420
|
}
|
|
17421
17421
|
});
|
|
17422
17422
|
|
|
17423
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js
|
|
17423
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js
|
|
17424
17424
|
var require_compiler = __commonJS((exports) => {
|
|
17425
17425
|
exports.__esModule = true;
|
|
17426
17426
|
exports.Compiler = Compiler;
|
|
@@ -17837,7 +17837,7 @@ var require_compiler = __commonJS((exports) => {
|
|
|
17837
17837
|
}
|
|
17838
17838
|
});
|
|
17839
17839
|
|
|
17840
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64.js
|
|
17840
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64.js
|
|
17841
17841
|
var require_base64 = __commonJS((exports) => {
|
|
17842
17842
|
var intToCharMap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");
|
|
17843
17843
|
exports.encode = function(number) {
|
|
@@ -17876,7 +17876,7 @@ var require_base64 = __commonJS((exports) => {
|
|
|
17876
17876
|
};
|
|
17877
17877
|
});
|
|
17878
17878
|
|
|
17879
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js
|
|
17879
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js
|
|
17880
17880
|
var require_base64_vlq = __commonJS((exports) => {
|
|
17881
17881
|
var base64 = require_base64();
|
|
17882
17882
|
var VLQ_BASE_SHIFT = 5;
|
|
@@ -17928,7 +17928,7 @@ var require_base64_vlq = __commonJS((exports) => {
|
|
|
17928
17928
|
};
|
|
17929
17929
|
});
|
|
17930
17930
|
|
|
17931
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/util.js
|
|
17931
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/util.js
|
|
17932
17932
|
var require_util = __commonJS((exports) => {
|
|
17933
17933
|
function getArg(aArgs, aName, aDefaultValue) {
|
|
17934
17934
|
if (aName in aArgs) {
|
|
@@ -18227,7 +18227,7 @@ var require_util = __commonJS((exports) => {
|
|
|
18227
18227
|
exports.computeSourceURL = computeSourceURL;
|
|
18228
18228
|
});
|
|
18229
18229
|
|
|
18230
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/array-set.js
|
|
18230
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/array-set.js
|
|
18231
18231
|
var require_array_set = __commonJS((exports) => {
|
|
18232
18232
|
var util3 = require_util();
|
|
18233
18233
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -18295,7 +18295,7 @@ var require_array_set = __commonJS((exports) => {
|
|
|
18295
18295
|
exports.ArraySet = ArraySet;
|
|
18296
18296
|
});
|
|
18297
18297
|
|
|
18298
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js
|
|
18298
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js
|
|
18299
18299
|
var require_mapping_list = __commonJS((exports) => {
|
|
18300
18300
|
var util3 = require_util();
|
|
18301
18301
|
function generatedPositionAfter(mappingA, mappingB) {
|
|
@@ -18332,7 +18332,7 @@ var require_mapping_list = __commonJS((exports) => {
|
|
|
18332
18332
|
exports.MappingList = MappingList;
|
|
18333
18333
|
});
|
|
18334
18334
|
|
|
18335
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js
|
|
18335
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js
|
|
18336
18336
|
var require_source_map_generator = __commonJS((exports) => {
|
|
18337
18337
|
var base64VLQ = require_base64_vlq();
|
|
18338
18338
|
var util3 = require_util();
|
|
@@ -18602,7 +18602,7 @@ var require_source_map_generator = __commonJS((exports) => {
|
|
|
18602
18602
|
exports.SourceMapGenerator = SourceMapGenerator;
|
|
18603
18603
|
});
|
|
18604
18604
|
|
|
18605
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/binary-search.js
|
|
18605
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/binary-search.js
|
|
18606
18606
|
var require_binary_search = __commonJS((exports) => {
|
|
18607
18607
|
exports.GREATEST_LOWER_BOUND = 1;
|
|
18608
18608
|
exports.LEAST_UPPER_BOUND = 2;
|
|
@@ -18649,7 +18649,7 @@ var require_binary_search = __commonJS((exports) => {
|
|
|
18649
18649
|
};
|
|
18650
18650
|
});
|
|
18651
18651
|
|
|
18652
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js
|
|
18652
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js
|
|
18653
18653
|
var require_quick_sort = __commonJS((exports) => {
|
|
18654
18654
|
function swap(ary, x, y) {
|
|
18655
18655
|
var temp = ary[x];
|
|
@@ -18682,7 +18682,7 @@ var require_quick_sort = __commonJS((exports) => {
|
|
|
18682
18682
|
};
|
|
18683
18683
|
});
|
|
18684
18684
|
|
|
18685
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js
|
|
18685
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js
|
|
18686
18686
|
var require_source_map_consumer = __commonJS((exports) => {
|
|
18687
18687
|
var util3 = require_util();
|
|
18688
18688
|
var binarySearch = require_binary_search();
|
|
@@ -19251,7 +19251,7 @@ var require_source_map_consumer = __commonJS((exports) => {
|
|
|
19251
19251
|
exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|
|
19252
19252
|
});
|
|
19253
19253
|
|
|
19254
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-node.js
|
|
19254
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-node.js
|
|
19255
19255
|
var require_source_node = __commonJS((exports) => {
|
|
19256
19256
|
var SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
19257
19257
|
var util3 = require_util();
|
|
@@ -19505,14 +19505,14 @@ var require_source_node = __commonJS((exports) => {
|
|
|
19505
19505
|
exports.SourceNode = SourceNode;
|
|
19506
19506
|
});
|
|
19507
19507
|
|
|
19508
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/source-map.js
|
|
19508
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/source-map.js
|
|
19509
19509
|
var require_source_map = __commonJS((exports) => {
|
|
19510
19510
|
exports.SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
19511
19511
|
exports.SourceMapConsumer = require_source_map_consumer().SourceMapConsumer;
|
|
19512
19512
|
exports.SourceNode = require_source_node().SourceNode;
|
|
19513
19513
|
});
|
|
19514
19514
|
|
|
19515
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js
|
|
19515
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js
|
|
19516
19516
|
var require_code_gen = __commonJS((exports, module) => {
|
|
19517
19517
|
exports.__esModule = true;
|
|
19518
19518
|
var _utils = require_utils();
|
|
@@ -19645,7 +19645,7 @@ var require_code_gen = __commonJS((exports, module) => {
|
|
|
19645
19645
|
module.exports = exports["default"];
|
|
19646
19646
|
});
|
|
19647
19647
|
|
|
19648
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js
|
|
19648
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js
|
|
19649
19649
|
var require_javascript_compiler = __commonJS((exports, module) => {
|
|
19650
19650
|
exports.__esModule = true;
|
|
19651
19651
|
function _interopRequireDefault(obj) {
|
|
@@ -20413,7 +20413,7 @@ var require_javascript_compiler = __commonJS((exports, module) => {
|
|
|
20413
20413
|
module.exports = exports["default"];
|
|
20414
20414
|
});
|
|
20415
20415
|
|
|
20416
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.js
|
|
20416
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.js
|
|
20417
20417
|
var require_handlebars = __commonJS((exports, module) => {
|
|
20418
20418
|
exports.__esModule = true;
|
|
20419
20419
|
function _interopRequireDefault(obj) {
|
|
@@ -20457,7 +20457,7 @@ var require_handlebars = __commonJS((exports, module) => {
|
|
|
20457
20457
|
module.exports = exports["default"];
|
|
20458
20458
|
});
|
|
20459
20459
|
|
|
20460
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js
|
|
20460
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js
|
|
20461
20461
|
var require_printer = __commonJS((exports) => {
|
|
20462
20462
|
exports.__esModule = true;
|
|
20463
20463
|
exports.print = print;
|
|
@@ -20601,7 +20601,7 @@ var require_printer = __commonJS((exports) => {
|
|
|
20601
20601
|
};
|
|
20602
20602
|
});
|
|
20603
20603
|
|
|
20604
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/lib/index.js
|
|
20604
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/lib/index.js
|
|
20605
20605
|
var require_lib = __commonJS((exports, module) => {
|
|
20606
20606
|
var handlebars = require_handlebars()["default"];
|
|
20607
20607
|
var printer = require_printer();
|
|
@@ -23872,7 +23872,7 @@ import {
|
|
|
23872
23872
|
existsSync as existsSync17,
|
|
23873
23873
|
mkdirSync as mkdirSync12,
|
|
23874
23874
|
readFileSync as readFileSync17,
|
|
23875
|
-
readdirSync as
|
|
23875
|
+
readdirSync as readdirSync8,
|
|
23876
23876
|
renameSync as renameSync5,
|
|
23877
23877
|
rmSync as rmSync4,
|
|
23878
23878
|
statSync as statSync11,
|
|
@@ -23943,7 +23943,7 @@ function listSlots(agentDir) {
|
|
|
23943
23943
|
if (!existsSync17(dir))
|
|
23944
23944
|
return [];
|
|
23945
23945
|
try {
|
|
23946
|
-
return
|
|
23946
|
+
return readdirSync8(dir).filter((name) => {
|
|
23947
23947
|
try {
|
|
23948
23948
|
return statSync11(join13(dir, name)).isDirectory();
|
|
23949
23949
|
} catch {
|
|
@@ -24115,7 +24115,7 @@ var init_accounts = __esm(() => {
|
|
|
24115
24115
|
import { execFileSync as execFileSync8 } from "node:child_process";
|
|
24116
24116
|
import {
|
|
24117
24117
|
readFileSync as readFileSync18,
|
|
24118
|
-
readdirSync as
|
|
24118
|
+
readdirSync as readdirSync9,
|
|
24119
24119
|
existsSync as existsSync18,
|
|
24120
24120
|
writeFileSync as writeFileSync10,
|
|
24121
24121
|
mkdirSync as mkdirSync13,
|
|
@@ -24272,7 +24272,7 @@ function cleanupAuthTempDirs(agentDir) {
|
|
|
24272
24272
|
if (!existsSync18(dir))
|
|
24273
24273
|
return;
|
|
24274
24274
|
try {
|
|
24275
|
-
for (const entry of
|
|
24275
|
+
for (const entry of readdirSync9(dir)) {
|
|
24276
24276
|
if (entry.startsWith(".setup-token-tmp-")) {
|
|
24277
24277
|
rmSync5(join14(dir, entry), { recursive: true, force: true });
|
|
24278
24278
|
}
|
|
@@ -25226,7 +25226,7 @@ class AuthBrokerClient {
|
|
|
25226
25226
|
closed = false;
|
|
25227
25227
|
constructor(opts = {}) {
|
|
25228
25228
|
this.socketPath = resolveAuthBrokerSocketPath(opts);
|
|
25229
|
-
this.timeoutMs = opts.timeoutMs ??
|
|
25229
|
+
this.timeoutMs = opts.timeoutMs ?? DEFAULT_TIMEOUT_MS2;
|
|
25230
25230
|
}
|
|
25231
25231
|
getSocketPath() {
|
|
25232
25232
|
return this.socketPath;
|
|
@@ -25477,7 +25477,7 @@ async function withAuthBrokerClient(fn, opts) {
|
|
|
25477
25477
|
function authBrokerSocketExists(opts) {
|
|
25478
25478
|
return existsSync25(resolveAuthBrokerSocketPath(opts));
|
|
25479
25479
|
}
|
|
25480
|
-
var
|
|
25480
|
+
var DEFAULT_TIMEOUT_MS2 = 5000, AuthBrokerError, AuthBrokerUnreachableError;
|
|
25481
25481
|
var init_client2 = __esm(() => {
|
|
25482
25482
|
init_protocol2();
|
|
25483
25483
|
AuthBrokerError = class AuthBrokerError extends Error {
|
|
@@ -25537,7 +25537,7 @@ import {
|
|
|
25537
25537
|
existsSync as existsSync26,
|
|
25538
25538
|
mkdirSync as mkdirSync15,
|
|
25539
25539
|
readFileSync as readFileSync22,
|
|
25540
|
-
readdirSync as
|
|
25540
|
+
readdirSync as readdirSync13,
|
|
25541
25541
|
renameSync as renameSync6,
|
|
25542
25542
|
rmSync as rmSync10,
|
|
25543
25543
|
statSync as statSync15,
|
|
@@ -25568,7 +25568,7 @@ function listAccounts(home2 = homedir8()) {
|
|
|
25568
25568
|
if (!existsSync26(root))
|
|
25569
25569
|
return [];
|
|
25570
25570
|
try {
|
|
25571
|
-
return
|
|
25571
|
+
return readdirSync13(root).filter((name) => {
|
|
25572
25572
|
try {
|
|
25573
25573
|
return statSync15(join19(root, name)).isDirectory();
|
|
25574
25574
|
} catch {
|
|
@@ -25730,7 +25730,7 @@ __export(exports_oauth, {
|
|
|
25730
25730
|
});
|
|
25731
25731
|
import * as http from "node:http";
|
|
25732
25732
|
import * as crypto2 from "node:crypto";
|
|
25733
|
-
import { spawn as
|
|
25733
|
+
import { spawn as spawn2 } from "node:child_process";
|
|
25734
25734
|
function detectHeadless(env2) {
|
|
25735
25735
|
const hasDisplay = Boolean(env2.DISPLAY && env2.DISPLAY.trim() !== "" || env2.WAYLAND_DISPLAY && env2.WAYLAND_DISPLAY.trim() !== "");
|
|
25736
25736
|
const inSsh = Boolean(env2.SSH_CONNECTION && env2.SSH_CONNECTION.trim() !== "" || env2.SSH_TTY && env2.SSH_TTY.trim() !== "");
|
|
@@ -25890,7 +25890,7 @@ function buildLoopbackAuthUrl(cfg, redirectUri, state) {
|
|
|
25890
25890
|
u.searchParams.set("state", state);
|
|
25891
25891
|
return u.toString();
|
|
25892
25892
|
}
|
|
25893
|
-
async function openBrowser(url, platform = process.platform, spawnImpl =
|
|
25893
|
+
async function openBrowser(url, platform = process.platform, spawnImpl = spawn2) {
|
|
25894
25894
|
let cmd;
|
|
25895
25895
|
let args;
|
|
25896
25896
|
if (platform === "darwin") {
|
|
@@ -26407,7 +26407,7 @@ async function waitForApproval(opts) {
|
|
|
26407
26407
|
const request = opts._request ?? approvalRequest;
|
|
26408
26408
|
const lookup = opts._lookup ?? approvalLookup;
|
|
26409
26409
|
const sleep3 = opts._sleep ?? defaultSleep;
|
|
26410
|
-
const timeoutMs = opts.timeout_ms ??
|
|
26410
|
+
const timeoutMs = opts.timeout_ms ?? DEFAULT_TIMEOUT_MS3;
|
|
26411
26411
|
const initialPoll = opts.initial_poll_ms ?? DEFAULT_INITIAL_POLL_MS;
|
|
26412
26412
|
const maxPoll = opts.max_poll_ms ?? DEFAULT_MAX_POLL_MS;
|
|
26413
26413
|
const backoff = opts.backoff ?? DEFAULT_BACKOFF;
|
|
@@ -26495,7 +26495,7 @@ async function waitForApproval(opts) {
|
|
|
26495
26495
|
}
|
|
26496
26496
|
}
|
|
26497
26497
|
}
|
|
26498
|
-
var
|
|
26498
|
+
var DEFAULT_TIMEOUT_MS3 = 600000, DEFAULT_INITIAL_POLL_MS = 2000, DEFAULT_MAX_POLL_MS = 30000, DEFAULT_BACKOFF = 1.5, DENY_MODES;
|
|
26499
26499
|
var init_wait = __esm(() => {
|
|
26500
26500
|
init_client3();
|
|
26501
26501
|
DENY_MODES = new Set(["deny", "deny_perm"]);
|
|
@@ -27053,7 +27053,7 @@ async function runViaClaude(opts) {
|
|
|
27053
27053
|
if (tmuxHasSession(SESSION))
|
|
27054
27054
|
tmuxKillSession(SESSION);
|
|
27055
27055
|
}
|
|
27056
|
-
const
|
|
27056
|
+
const spawn3 = opts.spawnClaude ?? (() => {
|
|
27057
27057
|
execFileSync11("tmux", [
|
|
27058
27058
|
"new-session",
|
|
27059
27059
|
"-d",
|
|
@@ -27069,7 +27069,7 @@ async function runViaClaude(opts) {
|
|
|
27069
27069
|
], { stdio: "ignore", timeout: 5000 });
|
|
27070
27070
|
});
|
|
27071
27071
|
log(" Spawning claude in a tmux session to mint a broader-scope OAuth token\u2026");
|
|
27072
|
-
|
|
27072
|
+
spawn3();
|
|
27073
27073
|
try {
|
|
27074
27074
|
const preFired = new Set;
|
|
27075
27075
|
const phase1Deadline = Date.now() + urlTimeout;
|
|
@@ -27605,7 +27605,7 @@ var init_doctor_status = __esm(() => {
|
|
|
27605
27605
|
import {
|
|
27606
27606
|
existsSync as existsSync46,
|
|
27607
27607
|
readFileSync as readFileSync42,
|
|
27608
|
-
readdirSync as
|
|
27608
|
+
readdirSync as readdirSync17
|
|
27609
27609
|
} from "node:fs";
|
|
27610
27610
|
import { dirname as dirname11, join as join38 } from "node:path";
|
|
27611
27611
|
import { execSync as execSync2 } from "node:child_process";
|
|
@@ -27686,7 +27686,7 @@ function probePlaywrightMcpVersion() {
|
|
|
27686
27686
|
if (!existsSync46(npxCache))
|
|
27687
27687
|
return null;
|
|
27688
27688
|
try {
|
|
27689
|
-
const entries =
|
|
27689
|
+
const entries = readdirSync17(npxCache);
|
|
27690
27690
|
for (const entry of entries) {
|
|
27691
27691
|
const pkgPath = join38(npxCache, entry, "node_modules/@playwright/mcp/package.json");
|
|
27692
27692
|
if (existsSync46(pkgPath)) {
|
|
@@ -28834,7 +28834,7 @@ import { join as join42 } from "node:path";
|
|
|
28834
28834
|
function runCredentialsMigrationChecks(config, deps = {}) {
|
|
28835
28835
|
const credDir = deps.credentialsDir ?? join42(homedir23(), ".switchroom", "credentials");
|
|
28836
28836
|
const existsSync49 = deps.existsSync ?? ((p) => realExistsSync2(p));
|
|
28837
|
-
const
|
|
28837
|
+
const readdirSync19 = deps.readdirSync ?? ((p) => realReaddirSync(p));
|
|
28838
28838
|
const isDirectory = deps.isDirectory ?? ((p) => {
|
|
28839
28839
|
try {
|
|
28840
28840
|
return realStatSync(p).isDirectory();
|
|
@@ -28847,7 +28847,7 @@ function runCredentialsMigrationChecks(config, deps = {}) {
|
|
|
28847
28847
|
const agentNames = new Set(Object.keys(config.agents ?? {}));
|
|
28848
28848
|
let entries;
|
|
28849
28849
|
try {
|
|
28850
|
-
entries =
|
|
28850
|
+
entries = readdirSync19(credDir);
|
|
28851
28851
|
} catch {
|
|
28852
28852
|
return [
|
|
28853
28853
|
{
|
|
@@ -29403,7 +29403,7 @@ import {
|
|
|
29403
29403
|
lstatSync as lstatSync5,
|
|
29404
29404
|
mkdirSync as mkdirSync27,
|
|
29405
29405
|
readFileSync as readFileSync45,
|
|
29406
|
-
readdirSync as
|
|
29406
|
+
readdirSync as readdirSync19,
|
|
29407
29407
|
statSync as statSync22
|
|
29408
29408
|
} from "node:fs";
|
|
29409
29409
|
import { dirname as dirname12, join as join45, resolve as resolve29 } from "node:path";
|
|
@@ -29413,7 +29413,7 @@ function findInNvm(bin) {
|
|
|
29413
29413
|
if (!existsSync50(nvmRoot))
|
|
29414
29414
|
return null;
|
|
29415
29415
|
try {
|
|
29416
|
-
const versions =
|
|
29416
|
+
const versions = readdirSync19(nvmRoot).sort().reverse();
|
|
29417
29417
|
for (const v of versions) {
|
|
29418
29418
|
const candidate = join45(nvmRoot, v, "bin", bin);
|
|
29419
29419
|
try {
|
|
@@ -29585,7 +29585,7 @@ function findChromium(homeDir = process.env.HOME ?? "", envBrowsersPath = proces
|
|
|
29585
29585
|
if (!existsSync50(cacheDir))
|
|
29586
29586
|
continue;
|
|
29587
29587
|
try {
|
|
29588
|
-
const entries =
|
|
29588
|
+
const entries = readdirSync19(cacheDir).filter((e) => e.startsWith("chromium"));
|
|
29589
29589
|
for (const entry of entries) {
|
|
29590
29590
|
const candidates2 = [
|
|
29591
29591
|
join45(cacheDir, entry, "chrome-linux64", "chrome"),
|
|
@@ -29898,7 +29898,7 @@ function checkPendingRetainsQueue(dir) {
|
|
|
29898
29898
|
}
|
|
29899
29899
|
let names;
|
|
29900
29900
|
try {
|
|
29901
|
-
names =
|
|
29901
|
+
names = readdirSync19(pendingDir);
|
|
29902
29902
|
} catch (err) {
|
|
29903
29903
|
return {
|
|
29904
29904
|
name: "pending-retains queue",
|
|
@@ -30158,7 +30158,7 @@ function checkRepoHygiene(repoRoot) {
|
|
|
30158
30158
|
});
|
|
30159
30159
|
}
|
|
30160
30160
|
try {
|
|
30161
|
-
const entries =
|
|
30161
|
+
const entries = readdirSync19(repoRoot);
|
|
30162
30162
|
for (const name of entries) {
|
|
30163
30163
|
if (name === "clerk-export-with-secrets.tar.gz")
|
|
30164
30164
|
continue;
|
|
@@ -31016,7 +31016,7 @@ function deriveSlug(inputs, existing) {
|
|
|
31016
31016
|
return `${base}_${n}`;
|
|
31017
31017
|
}
|
|
31018
31018
|
|
|
31019
|
-
// node_modules/.bun/boundary@2.0.0/node_modules/boundary/lib/index.js
|
|
31019
|
+
// ../switchroom-sec-1417/node_modules/.bun/boundary@2.0.0/node_modules/boundary/lib/index.js
|
|
31020
31020
|
var require_lib2 = __commonJS((exports2) => {
|
|
31021
31021
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
31022
31022
|
exports2.binarySearch = exports2.upperBound = exports2.lowerBound = exports2.compare = undefined;
|
|
@@ -31063,7 +31063,7 @@ var require_lib2 = __commonJS((exports2) => {
|
|
|
31063
31063
|
exports2.binarySearch = binarySearch;
|
|
31064
31064
|
});
|
|
31065
31065
|
|
|
31066
|
-
// node_modules/.bun/structured-source@4.0.0/node_modules/structured-source/lib/structured-source.js
|
|
31066
|
+
// ../switchroom-sec-1417/node_modules/.bun/structured-source@4.0.0/node_modules/structured-source/lib/structured-source.js
|
|
31067
31067
|
var require_structured_source = __commonJS((exports2) => {
|
|
31068
31068
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
31069
31069
|
exports2.StructuredSource = undefined;
|
|
@@ -31118,13 +31118,13 @@ var require_structured_source = __commonJS((exports2) => {
|
|
|
31118
31118
|
}
|
|
31119
31119
|
exports2.StructuredSource = StructuredSource;
|
|
31120
31120
|
});
|
|
31121
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/SecretLintSourceCodeImpl.js
|
|
31121
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/SecretLintSourceCodeImpl.js
|
|
31122
31122
|
var import_structured_source;
|
|
31123
31123
|
var init_SecretLintSourceCodeImpl = __esm(() => {
|
|
31124
31124
|
import_structured_source = __toESM(require_structured_source(), 1);
|
|
31125
31125
|
});
|
|
31126
31126
|
|
|
31127
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/helper/promise-event-emitter.js
|
|
31127
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/helper/promise-event-emitter.js
|
|
31128
31128
|
class EventEmitter {
|
|
31129
31129
|
#listeners = new Map;
|
|
31130
31130
|
on(type, listener) {
|
|
@@ -31163,9 +31163,9 @@ class EventEmitter {
|
|
|
31163
31163
|
return Array.from(this.#listeners.get(type) ?? []);
|
|
31164
31164
|
}
|
|
31165
31165
|
}
|
|
31166
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RuleContext.js
|
|
31166
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RuleContext.js
|
|
31167
31167
|
var init_RuleContext = () => {};
|
|
31168
|
-
// node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/index.js
|
|
31168
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/index.js
|
|
31169
31169
|
class SecretLintProfiler {
|
|
31170
31170
|
perf;
|
|
31171
31171
|
entries = [];
|
|
@@ -31222,7 +31222,7 @@ class SecretLintProfiler {
|
|
|
31222
31222
|
}
|
|
31223
31223
|
}
|
|
31224
31224
|
|
|
31225
|
-
// node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/node.js
|
|
31225
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/node.js
|
|
31226
31226
|
import perf_hooks from "node:perf_hooks";
|
|
31227
31227
|
|
|
31228
31228
|
class NullPerformanceObserver {
|
|
@@ -31237,19 +31237,19 @@ var init_node = __esm(() => {
|
|
|
31237
31237
|
});
|
|
31238
31238
|
});
|
|
31239
31239
|
|
|
31240
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RunningEvents.js
|
|
31240
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RunningEvents.js
|
|
31241
31241
|
var init_RunningEvents = __esm(() => {
|
|
31242
31242
|
init_node();
|
|
31243
31243
|
});
|
|
31244
31244
|
|
|
31245
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RulePresetContext.js
|
|
31245
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RulePresetContext.js
|
|
31246
31246
|
var init_RulePresetContext = __esm(() => {
|
|
31247
31247
|
init_RuleContext();
|
|
31248
31248
|
});
|
|
31249
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/messages/index.js
|
|
31249
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/messages/index.js
|
|
31250
31250
|
var init_messages = () => {};
|
|
31251
31251
|
|
|
31252
|
-
// node_modules/.bun/ms@2.1.3/node_modules/ms/index.js
|
|
31252
|
+
// ../switchroom-sec-1417/node_modules/.bun/ms@2.1.3/node_modules/ms/index.js
|
|
31253
31253
|
var require_ms = __commonJS((exports2, module) => {
|
|
31254
31254
|
var s = 1000;
|
|
31255
31255
|
var m = s * 60;
|
|
@@ -31359,7 +31359,7 @@ var require_ms = __commonJS((exports2, module) => {
|
|
|
31359
31359
|
}
|
|
31360
31360
|
});
|
|
31361
31361
|
|
|
31362
|
-
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/common.js
|
|
31362
|
+
// ../switchroom-sec-1417/node_modules/.bun/debug@4.4.3/node_modules/debug/src/common.js
|
|
31363
31363
|
var require_common = __commonJS((exports2, module) => {
|
|
31364
31364
|
function setup(env2) {
|
|
31365
31365
|
createDebug.debug = createDebug;
|
|
@@ -31534,7 +31534,7 @@ var require_common = __commonJS((exports2, module) => {
|
|
|
31534
31534
|
module.exports = setup;
|
|
31535
31535
|
});
|
|
31536
31536
|
|
|
31537
|
-
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/browser.js
|
|
31537
|
+
// ../switchroom-sec-1417/node_modules/.bun/debug@4.4.3/node_modules/debug/src/browser.js
|
|
31538
31538
|
var require_browser = __commonJS((exports2, module) => {
|
|
31539
31539
|
exports2.formatArgs = formatArgs;
|
|
31540
31540
|
exports2.save = save;
|
|
@@ -31694,7 +31694,7 @@ var require_browser = __commonJS((exports2, module) => {
|
|
|
31694
31694
|
};
|
|
31695
31695
|
});
|
|
31696
31696
|
|
|
31697
|
-
// node_modules/.bun/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
31697
|
+
// ../switchroom-sec-1417/node_modules/.bun/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
31698
31698
|
var require_has_flag = __commonJS((exports2, module) => {
|
|
31699
31699
|
module.exports = (flag, argv = process.argv) => {
|
|
31700
31700
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
@@ -31704,7 +31704,7 @@ var require_has_flag = __commonJS((exports2, module) => {
|
|
|
31704
31704
|
};
|
|
31705
31705
|
});
|
|
31706
31706
|
|
|
31707
|
-
// node_modules/.bun/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
31707
|
+
// ../switchroom-sec-1417/node_modules/.bun/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
31708
31708
|
var require_supports_color = __commonJS((exports2, module) => {
|
|
31709
31709
|
var os5 = __require("os");
|
|
31710
31710
|
var tty2 = __require("tty");
|
|
@@ -31803,7 +31803,7 @@ var require_supports_color = __commonJS((exports2, module) => {
|
|
|
31803
31803
|
};
|
|
31804
31804
|
});
|
|
31805
31805
|
|
|
31806
|
-
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/node.js
|
|
31806
|
+
// ../switchroom-sec-1417/node_modules/.bun/debug@4.4.3/node_modules/debug/src/node.js
|
|
31807
31807
|
var require_node = __commonJS((exports2, module) => {
|
|
31808
31808
|
var tty2 = __require("tty");
|
|
31809
31809
|
var util3 = __require("util");
|
|
@@ -31974,7 +31974,7 @@ var require_node = __commonJS((exports2, module) => {
|
|
|
31974
31974
|
};
|
|
31975
31975
|
});
|
|
31976
31976
|
|
|
31977
|
-
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/index.js
|
|
31977
|
+
// ../switchroom-sec-1417/node_modules/.bun/debug@4.4.3/node_modules/debug/src/index.js
|
|
31978
31978
|
var require_src = __commonJS((exports2, module) => {
|
|
31979
31979
|
if (typeof process === "undefined" || process.type === "renderer" || false || process.__nwjs) {
|
|
31980
31980
|
module.exports = require_browser();
|
|
@@ -31983,7 +31983,7 @@ var require_src = __commonJS((exports2, module) => {
|
|
|
31983
31983
|
}
|
|
31984
31984
|
});
|
|
31985
31985
|
|
|
31986
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/index.js
|
|
31986
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/index.js
|
|
31987
31987
|
var import_debug, debug;
|
|
31988
31988
|
var init_module = __esm(() => {
|
|
31989
31989
|
init_SecretLintSourceCodeImpl();
|
|
@@ -31996,7 +31996,7 @@ var init_module = __esm(() => {
|
|
|
31996
31996
|
debug = import_debug.default("@secretlint/core");
|
|
31997
31997
|
});
|
|
31998
31998
|
|
|
31999
|
-
// node_modules/.bun/@secretlint+secretlint-rule-preset-recommend@12.2.0/node_modules/@secretlint/secretlint-rule-preset-recommend/module/index.js
|
|
31999
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+secretlint-rule-preset-recommend@12.2.0/node_modules/@secretlint/secretlint-rule-preset-recommend/module/index.js
|
|
32000
32000
|
function requireLodash_uniq() {
|
|
32001
32001
|
if (hasRequiredLodash_uniq)
|
|
32002
32002
|
return lodash_uniq;
|
|
@@ -33679,7 +33679,7 @@ var init_secretlint_source = __esm(() => {
|
|
|
33679
33679
|
init_suppressor();
|
|
33680
33680
|
});
|
|
33681
33681
|
|
|
33682
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/core.js
|
|
33682
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/core.js
|
|
33683
33683
|
function $constructor(name, initializer, params) {
|
|
33684
33684
|
function init(inst, def) {
|
|
33685
33685
|
var _a;
|
|
@@ -33742,7 +33742,7 @@ var init_core = __esm(() => {
|
|
|
33742
33742
|
globalConfig = {};
|
|
33743
33743
|
});
|
|
33744
33744
|
|
|
33745
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/util.js
|
|
33745
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/util.js
|
|
33746
33746
|
var exports_util = {};
|
|
33747
33747
|
__export(exports_util, {
|
|
33748
33748
|
unwrapMessage: () => unwrapMessage,
|
|
@@ -34258,7 +34258,7 @@ var init_util2 = __esm(() => {
|
|
|
34258
34258
|
};
|
|
34259
34259
|
});
|
|
34260
34260
|
|
|
34261
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/errors.js
|
|
34261
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/errors.js
|
|
34262
34262
|
function flattenError(error, mapper = (issue2) => issue2.message) {
|
|
34263
34263
|
const fieldErrors = {};
|
|
34264
34264
|
const formErrors = [];
|
|
@@ -34336,7 +34336,7 @@ var init_errors2 = __esm(() => {
|
|
|
34336
34336
|
$ZodRealError = $constructor("$ZodError", initializer, { Parent: Error });
|
|
34337
34337
|
});
|
|
34338
34338
|
|
|
34339
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/parse.js
|
|
34339
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/parse.js
|
|
34340
34340
|
var _parse = (_Err) => (schema, value, _ctx, _params) => {
|
|
34341
34341
|
const ctx = _ctx ? Object.assign(_ctx, { async: false }) : { async: false };
|
|
34342
34342
|
const result = schema._zod.run({ value, issues: [] }, ctx);
|
|
@@ -34388,7 +34388,7 @@ var init_parse = __esm(() => {
|
|
|
34388
34388
|
safeParseAsync = /* @__PURE__ */ _safeParseAsync($ZodRealError);
|
|
34389
34389
|
});
|
|
34390
34390
|
|
|
34391
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/regexes.js
|
|
34391
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/regexes.js
|
|
34392
34392
|
function emoji() {
|
|
34393
34393
|
return new RegExp(_emoji, "u");
|
|
34394
34394
|
}
|
|
@@ -34445,7 +34445,7 @@ var init_regexes = __esm(() => {
|
|
|
34445
34445
|
uppercase = /^[^a-z]*$/;
|
|
34446
34446
|
});
|
|
34447
34447
|
|
|
34448
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/checks.js
|
|
34448
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/checks.js
|
|
34449
34449
|
var $ZodCheck, numericOriginMap, $ZodCheckLessThan, $ZodCheckGreaterThan, $ZodCheckMultipleOf, $ZodCheckNumberFormat, $ZodCheckMaxLength, $ZodCheckMinLength, $ZodCheckLengthEquals, $ZodCheckStringFormat, $ZodCheckRegex, $ZodCheckLowerCase, $ZodCheckUpperCase, $ZodCheckIncludes, $ZodCheckStartsWith, $ZodCheckEndsWith, $ZodCheckOverwrite;
|
|
34450
34450
|
var init_checks = __esm(() => {
|
|
34451
34451
|
init_core();
|
|
@@ -34835,7 +34835,7 @@ var init_checks = __esm(() => {
|
|
|
34835
34835
|
});
|
|
34836
34836
|
});
|
|
34837
34837
|
|
|
34838
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/doc.js
|
|
34838
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/doc.js
|
|
34839
34839
|
class Doc {
|
|
34840
34840
|
constructor(args = []) {
|
|
34841
34841
|
this.content = [];
|
|
@@ -34873,7 +34873,7 @@ class Doc {
|
|
|
34873
34873
|
}
|
|
34874
34874
|
}
|
|
34875
34875
|
|
|
34876
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/versions.js
|
|
34876
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/versions.js
|
|
34877
34877
|
var version2;
|
|
34878
34878
|
var init_versions = __esm(() => {
|
|
34879
34879
|
version2 = {
|
|
@@ -34883,7 +34883,7 @@ var init_versions = __esm(() => {
|
|
|
34883
34883
|
};
|
|
34884
34884
|
});
|
|
34885
34885
|
|
|
34886
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/schemas.js
|
|
34886
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/schemas.js
|
|
34887
34887
|
function isValidBase64(data) {
|
|
34888
34888
|
if (data === "")
|
|
34889
34889
|
return true;
|
|
@@ -36125,7 +36125,7 @@ var init_schemas = __esm(() => {
|
|
|
36125
36125
|
});
|
|
36126
36126
|
});
|
|
36127
36127
|
|
|
36128
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/en.js
|
|
36128
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/en.js
|
|
36129
36129
|
function en_default2() {
|
|
36130
36130
|
return {
|
|
36131
36131
|
localeError: error()
|
|
@@ -36245,10 +36245,10 @@ var init_en2 = __esm(() => {
|
|
|
36245
36245
|
init_util2();
|
|
36246
36246
|
});
|
|
36247
36247
|
|
|
36248
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/index.js
|
|
36248
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/index.js
|
|
36249
36249
|
var init_locales = () => {};
|
|
36250
36250
|
|
|
36251
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/registries.js
|
|
36251
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/registries.js
|
|
36252
36252
|
class $ZodRegistry {
|
|
36253
36253
|
constructor() {
|
|
36254
36254
|
this._map = new Map;
|
|
@@ -36301,7 +36301,7 @@ var init_registries = __esm(() => {
|
|
|
36301
36301
|
globalRegistry = /* @__PURE__ */ registry();
|
|
36302
36302
|
});
|
|
36303
36303
|
|
|
36304
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/api.js
|
|
36304
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/api.js
|
|
36305
36305
|
function _string(Class2, params) {
|
|
36306
36306
|
return new Class2({
|
|
36307
36307
|
type: "string",
|
|
@@ -36741,16 +36741,16 @@ var init_api = __esm(() => {
|
|
|
36741
36741
|
init_util2();
|
|
36742
36742
|
});
|
|
36743
36743
|
|
|
36744
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/function.js
|
|
36744
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/function.js
|
|
36745
36745
|
var init_function = () => {};
|
|
36746
36746
|
|
|
36747
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/to-json-schema.js
|
|
36747
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/to-json-schema.js
|
|
36748
36748
|
var init_to_json_schema = () => {};
|
|
36749
36749
|
|
|
36750
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/json-schema.js
|
|
36750
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/json-schema.js
|
|
36751
36751
|
var init_json_schema = () => {};
|
|
36752
36752
|
|
|
36753
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/index.js
|
|
36753
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/index.js
|
|
36754
36754
|
var init_core2 = __esm(() => {
|
|
36755
36755
|
init_util2();
|
|
36756
36756
|
init_regexes();
|
|
@@ -36768,24 +36768,24 @@ var init_core2 = __esm(() => {
|
|
|
36768
36768
|
init_to_json_schema();
|
|
36769
36769
|
});
|
|
36770
36770
|
|
|
36771
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/parse.js
|
|
36771
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/parse.js
|
|
36772
36772
|
var init_parse2 = __esm(() => {
|
|
36773
36773
|
init_core2();
|
|
36774
36774
|
});
|
|
36775
36775
|
|
|
36776
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/schemas.js
|
|
36776
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/schemas.js
|
|
36777
36777
|
var init_schemas2 = () => {};
|
|
36778
36778
|
|
|
36779
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/checks.js
|
|
36779
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/checks.js
|
|
36780
36780
|
var init_checks2 = () => {};
|
|
36781
36781
|
|
|
36782
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/iso.js
|
|
36782
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/iso.js
|
|
36783
36783
|
var init_iso = () => {};
|
|
36784
36784
|
|
|
36785
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/coerce.js
|
|
36785
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/coerce.js
|
|
36786
36786
|
var init_coerce = () => {};
|
|
36787
36787
|
|
|
36788
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/external.js
|
|
36788
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/external.js
|
|
36789
36789
|
var init_external2 = __esm(() => {
|
|
36790
36790
|
init_core2();
|
|
36791
36791
|
init_locales();
|
|
@@ -36796,17 +36796,17 @@ var init_external2 = __esm(() => {
|
|
|
36796
36796
|
init_checks2();
|
|
36797
36797
|
});
|
|
36798
36798
|
|
|
36799
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/index.js
|
|
36799
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/index.js
|
|
36800
36800
|
var init_mini = __esm(() => {
|
|
36801
36801
|
init_external2();
|
|
36802
36802
|
});
|
|
36803
36803
|
|
|
36804
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4-mini/index.js
|
|
36804
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4-mini/index.js
|
|
36805
36805
|
var init_v4_mini = __esm(() => {
|
|
36806
36806
|
init_mini();
|
|
36807
36807
|
});
|
|
36808
36808
|
|
|
36809
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js
|
|
36809
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js
|
|
36810
36810
|
function isZ4Schema(s) {
|
|
36811
36811
|
const schema = s;
|
|
36812
36812
|
return !!schema._zod;
|
|
@@ -36872,12 +36872,12 @@ var init_zod_compat = __esm(() => {
|
|
|
36872
36872
|
init_v4_mini();
|
|
36873
36873
|
});
|
|
36874
36874
|
|
|
36875
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/checks.js
|
|
36875
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/checks.js
|
|
36876
36876
|
var init_checks3 = __esm(() => {
|
|
36877
36877
|
init_core2();
|
|
36878
36878
|
});
|
|
36879
36879
|
|
|
36880
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/iso.js
|
|
36880
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/iso.js
|
|
36881
36881
|
var exports_iso2 = {};
|
|
36882
36882
|
__export(exports_iso2, {
|
|
36883
36883
|
time: () => time2,
|
|
@@ -36923,7 +36923,7 @@ var init_iso2 = __esm(() => {
|
|
|
36923
36923
|
});
|
|
36924
36924
|
});
|
|
36925
36925
|
|
|
36926
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/errors.js
|
|
36926
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/errors.js
|
|
36927
36927
|
var initializer2 = (inst, issues) => {
|
|
36928
36928
|
$ZodError.init(inst, issues);
|
|
36929
36929
|
inst.name = "ZodError";
|
|
@@ -36956,7 +36956,7 @@ var init_errors3 = __esm(() => {
|
|
|
36956
36956
|
});
|
|
36957
36957
|
});
|
|
36958
36958
|
|
|
36959
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/parse.js
|
|
36959
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/parse.js
|
|
36960
36960
|
var parse4, parseAsync2, safeParse3, safeParseAsync2;
|
|
36961
36961
|
var init_parse3 = __esm(() => {
|
|
36962
36962
|
init_core2();
|
|
@@ -36967,7 +36967,7 @@ var init_parse3 = __esm(() => {
|
|
|
36967
36967
|
safeParseAsync2 = /* @__PURE__ */ _safeParseAsync(ZodRealError);
|
|
36968
36968
|
});
|
|
36969
36969
|
|
|
36970
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/schemas.js
|
|
36970
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/schemas.js
|
|
36971
36971
|
function string2(params) {
|
|
36972
36972
|
return _string(ZodString2, params);
|
|
36973
36973
|
}
|
|
@@ -37581,13 +37581,13 @@ var init_schemas3 = __esm(() => {
|
|
|
37581
37581
|
});
|
|
37582
37582
|
});
|
|
37583
37583
|
|
|
37584
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/compat.js
|
|
37584
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/compat.js
|
|
37585
37585
|
var init_compat = () => {};
|
|
37586
37586
|
|
|
37587
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/coerce.js
|
|
37587
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/coerce.js
|
|
37588
37588
|
var init_coerce2 = () => {};
|
|
37589
37589
|
|
|
37590
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/external.js
|
|
37590
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/external.js
|
|
37591
37591
|
var init_external3 = __esm(() => {
|
|
37592
37592
|
init_core2();
|
|
37593
37593
|
init_core2();
|
|
@@ -37603,17 +37603,17 @@ var init_external3 = __esm(() => {
|
|
|
37603
37603
|
config(en_default2());
|
|
37604
37604
|
});
|
|
37605
37605
|
|
|
37606
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/index.js
|
|
37606
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/index.js
|
|
37607
37607
|
var init_classic = __esm(() => {
|
|
37608
37608
|
init_external3();
|
|
37609
37609
|
});
|
|
37610
37610
|
|
|
37611
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/index.js
|
|
37611
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/index.js
|
|
37612
37612
|
var init_v4 = __esm(() => {
|
|
37613
37613
|
init_classic();
|
|
37614
37614
|
});
|
|
37615
37615
|
|
|
37616
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
37616
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
37617
37617
|
var LATEST_PROTOCOL_VERSION = "2025-11-25", SUPPORTED_PROTOCOL_VERSIONS, RELATED_TASK_META_KEY = "io.modelcontextprotocol/related-task", JSONRPC_VERSION = "2.0", AssertObjectSchema, ProgressTokenSchema, CursorSchema, TaskCreationParamsSchema, TaskMetadataSchema, RelatedTaskMetadataSchema, RequestMetaSchema, BaseRequestParamsSchema, TaskAugmentedRequestParamsSchema, isTaskAugmentedRequestParams = (value) => TaskAugmentedRequestParamsSchema.safeParse(value).success, RequestSchema4, NotificationsParamsSchema, NotificationSchema, ResultSchema2, RequestIdSchema, JSONRPCRequestSchema, isJSONRPCRequest = (value) => JSONRPCRequestSchema.safeParse(value).success, JSONRPCNotificationSchema, isJSONRPCNotification = (value) => JSONRPCNotificationSchema.safeParse(value).success, JSONRPCResultResponseSchema, isJSONRPCResultResponse = (value) => JSONRPCResultResponseSchema.safeParse(value).success, ErrorCode2, JSONRPCErrorResponseSchema, isJSONRPCErrorResponse = (value) => JSONRPCErrorResponseSchema.safeParse(value).success, JSONRPCMessageSchema, JSONRPCResponseSchema, EmptyResultSchema, CancelledNotificationParamsSchema, CancelledNotificationSchema, IconSchema, IconsSchema, BaseMetadataSchema, ImplementationSchema, FormElicitationCapabilitySchema, ElicitationCapabilitySchema, ClientTasksCapabilitySchema, ServerTasksCapabilitySchema, ClientCapabilitiesSchema, InitializeRequestParamsSchema, InitializeRequestSchema, ServerCapabilitiesSchema, InitializeResultSchema, InitializedNotificationSchema, PingRequestSchema, ProgressSchema, ProgressNotificationParamsSchema, ProgressNotificationSchema, PaginatedRequestParamsSchema, PaginatedRequestSchema, PaginatedResultSchema, TaskStatusSchema, TaskSchema, CreateTaskResultSchema, TaskStatusNotificationParamsSchema, TaskStatusNotificationSchema, GetTaskRequestSchema, GetTaskResultSchema, GetTaskPayloadRequestSchema, GetTaskPayloadResultSchema, ListTasksRequestSchema, ListTasksResultSchema, CancelTaskRequestSchema, CancelTaskResultSchema, ResourceContentsSchema, TextResourceContentsSchema, Base64Schema, BlobResourceContentsSchema, RoleSchema, AnnotationsSchema, ResourceSchema, ResourceTemplateSchema, ListResourcesRequestSchema, ListResourcesResultSchema, ListResourceTemplatesRequestSchema, ListResourceTemplatesResultSchema, ResourceRequestParamsSchema, ReadResourceRequestParamsSchema, ReadResourceRequestSchema, ReadResourceResultSchema, ResourceListChangedNotificationSchema, SubscribeRequestParamsSchema, SubscribeRequestSchema, UnsubscribeRequestParamsSchema, UnsubscribeRequestSchema, ResourceUpdatedNotificationParamsSchema, ResourceUpdatedNotificationSchema, PromptArgumentSchema, PromptSchema, ListPromptsRequestSchema, ListPromptsResultSchema, GetPromptRequestParamsSchema, GetPromptRequestSchema, TextContentSchema, ImageContentSchema, AudioContentSchema, ToolUseContentSchema, EmbeddedResourceSchema, ResourceLinkSchema, ContentBlockSchema, PromptMessageSchema, GetPromptResultSchema, PromptListChangedNotificationSchema, ToolAnnotationsSchema, ToolExecutionSchema, ToolSchema, ListToolsRequestSchema, ListToolsResultSchema, CallToolResultSchema, CompatibilityCallToolResultSchema, CallToolRequestParamsSchema, CallToolRequestSchema, ToolListChangedNotificationSchema, ListChangedOptionsBaseSchema, LoggingLevelSchema, SetLevelRequestParamsSchema, SetLevelRequestSchema, LoggingMessageNotificationParamsSchema, LoggingMessageNotificationSchema, ModelHintSchema, ModelPreferencesSchema, ToolChoiceSchema, ToolResultContentSchema, SamplingContentSchema, SamplingMessageContentBlockSchema, SamplingMessageSchema, CreateMessageRequestParamsSchema, CreateMessageRequestSchema, CreateMessageResultSchema, CreateMessageResultWithToolsSchema, BooleanSchemaSchema, StringSchemaSchema, NumberSchemaSchema, UntitledSingleSelectEnumSchemaSchema, TitledSingleSelectEnumSchemaSchema, LegacyTitledEnumSchemaSchema, SingleSelectEnumSchemaSchema, UntitledMultiSelectEnumSchemaSchema, TitledMultiSelectEnumSchemaSchema, MultiSelectEnumSchemaSchema, EnumSchemaSchema, PrimitiveSchemaDefinitionSchema, ElicitRequestFormParamsSchema, ElicitRequestURLParamsSchema, ElicitRequestParamsSchema, ElicitRequestSchema, ElicitationCompleteNotificationParamsSchema, ElicitationCompleteNotificationSchema, ElicitResultSchema, ResourceTemplateReferenceSchema, PromptReferenceSchema, CompleteRequestParamsSchema, CompleteRequestSchema, CompleteResultSchema, RootSchema, ListRootsRequestSchema, ListRootsResultSchema, RootsListChangedNotificationSchema, ClientRequestSchema, ClientNotificationSchema, ClientResultSchema, ServerRequestSchema, ServerNotificationSchema, ServerResultSchema, McpError, UrlElicitationRequiredError;
|
|
37618
37618
|
var init_types2 = __esm(() => {
|
|
37619
37619
|
init_v4();
|
|
@@ -38441,65 +38441,65 @@ var init_types2 = __esm(() => {
|
|
|
38441
38441
|
};
|
|
38442
38442
|
});
|
|
38443
38443
|
|
|
38444
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js
|
|
38444
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js
|
|
38445
38445
|
function isTerminal(status) {
|
|
38446
38446
|
return status === "completed" || status === "failed" || status === "cancelled";
|
|
38447
38447
|
}
|
|
38448
38448
|
|
|
38449
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/Options.js
|
|
38449
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/Options.js
|
|
38450
38450
|
var ignoreOverride;
|
|
38451
38451
|
var init_Options = __esm(() => {
|
|
38452
38452
|
ignoreOverride = Symbol("Let zodToJsonSchema decide on which parser to use");
|
|
38453
38453
|
});
|
|
38454
38454
|
|
|
38455
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/Refs.js
|
|
38455
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/Refs.js
|
|
38456
38456
|
var init_Refs = __esm(() => {
|
|
38457
38457
|
init_Options();
|
|
38458
38458
|
});
|
|
38459
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/any.js
|
|
38459
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/any.js
|
|
38460
38460
|
var init_any = () => {};
|
|
38461
38461
|
|
|
38462
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/array.js
|
|
38462
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/array.js
|
|
38463
38463
|
var init_array = __esm(() => {
|
|
38464
38464
|
init_parseDef();
|
|
38465
38465
|
});
|
|
38466
38466
|
|
|
38467
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js
|
|
38467
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js
|
|
38468
38468
|
var init_bigint = () => {};
|
|
38469
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js
|
|
38469
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js
|
|
38470
38470
|
var init_branded = __esm(() => {
|
|
38471
38471
|
init_parseDef();
|
|
38472
38472
|
});
|
|
38473
38473
|
|
|
38474
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js
|
|
38474
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js
|
|
38475
38475
|
var init_catch = __esm(() => {
|
|
38476
38476
|
init_parseDef();
|
|
38477
38477
|
});
|
|
38478
38478
|
|
|
38479
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/date.js
|
|
38479
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/date.js
|
|
38480
38480
|
var init_date = () => {};
|
|
38481
38481
|
|
|
38482
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/default.js
|
|
38482
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/default.js
|
|
38483
38483
|
var init_default = __esm(() => {
|
|
38484
38484
|
init_parseDef();
|
|
38485
38485
|
});
|
|
38486
38486
|
|
|
38487
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js
|
|
38487
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js
|
|
38488
38488
|
var init_effects = __esm(() => {
|
|
38489
38489
|
init_parseDef();
|
|
38490
38490
|
init_any();
|
|
38491
38491
|
});
|
|
38492
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js
|
|
38492
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js
|
|
38493
38493
|
var init_intersection = __esm(() => {
|
|
38494
38494
|
init_parseDef();
|
|
38495
38495
|
});
|
|
38496
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/string.js
|
|
38496
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/string.js
|
|
38497
38497
|
var ALPHA_NUMERIC;
|
|
38498
38498
|
var init_string = __esm(() => {
|
|
38499
38499
|
ALPHA_NUMERIC = new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");
|
|
38500
38500
|
});
|
|
38501
38501
|
|
|
38502
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/record.js
|
|
38502
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/record.js
|
|
38503
38503
|
var init_record = __esm(() => {
|
|
38504
38504
|
init_parseDef();
|
|
38505
38505
|
init_string();
|
|
@@ -38507,77 +38507,77 @@ var init_record = __esm(() => {
|
|
|
38507
38507
|
init_any();
|
|
38508
38508
|
});
|
|
38509
38509
|
|
|
38510
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/map.js
|
|
38510
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/map.js
|
|
38511
38511
|
var init_map = __esm(() => {
|
|
38512
38512
|
init_parseDef();
|
|
38513
38513
|
init_record();
|
|
38514
38514
|
init_any();
|
|
38515
38515
|
});
|
|
38516
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/never.js
|
|
38516
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/never.js
|
|
38517
38517
|
var init_never = __esm(() => {
|
|
38518
38518
|
init_any();
|
|
38519
38519
|
});
|
|
38520
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/union.js
|
|
38520
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/union.js
|
|
38521
38521
|
var init_union = __esm(() => {
|
|
38522
38522
|
init_parseDef();
|
|
38523
38523
|
});
|
|
38524
38524
|
|
|
38525
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js
|
|
38525
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js
|
|
38526
38526
|
var init_nullable = __esm(() => {
|
|
38527
38527
|
init_parseDef();
|
|
38528
38528
|
init_union();
|
|
38529
38529
|
});
|
|
38530
38530
|
|
|
38531
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/number.js
|
|
38531
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/number.js
|
|
38532
38532
|
var init_number = () => {};
|
|
38533
38533
|
|
|
38534
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/object.js
|
|
38534
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/object.js
|
|
38535
38535
|
var init_object = __esm(() => {
|
|
38536
38536
|
init_parseDef();
|
|
38537
38537
|
});
|
|
38538
38538
|
|
|
38539
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js
|
|
38539
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js
|
|
38540
38540
|
var init_optional = __esm(() => {
|
|
38541
38541
|
init_parseDef();
|
|
38542
38542
|
init_any();
|
|
38543
38543
|
});
|
|
38544
38544
|
|
|
38545
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js
|
|
38545
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js
|
|
38546
38546
|
var init_pipeline = __esm(() => {
|
|
38547
38547
|
init_parseDef();
|
|
38548
38548
|
});
|
|
38549
38549
|
|
|
38550
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js
|
|
38550
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js
|
|
38551
38551
|
var init_promise = __esm(() => {
|
|
38552
38552
|
init_parseDef();
|
|
38553
38553
|
});
|
|
38554
38554
|
|
|
38555
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/set.js
|
|
38555
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/set.js
|
|
38556
38556
|
var init_set = __esm(() => {
|
|
38557
38557
|
init_parseDef();
|
|
38558
38558
|
});
|
|
38559
38559
|
|
|
38560
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js
|
|
38560
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js
|
|
38561
38561
|
var init_tuple = __esm(() => {
|
|
38562
38562
|
init_parseDef();
|
|
38563
38563
|
});
|
|
38564
38564
|
|
|
38565
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js
|
|
38565
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js
|
|
38566
38566
|
var init_undefined = __esm(() => {
|
|
38567
38567
|
init_any();
|
|
38568
38568
|
});
|
|
38569
38569
|
|
|
38570
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js
|
|
38570
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js
|
|
38571
38571
|
var init_unknown = __esm(() => {
|
|
38572
38572
|
init_any();
|
|
38573
38573
|
});
|
|
38574
38574
|
|
|
38575
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js
|
|
38575
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js
|
|
38576
38576
|
var init_readonly = __esm(() => {
|
|
38577
38577
|
init_parseDef();
|
|
38578
38578
|
});
|
|
38579
38579
|
|
|
38580
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/selectParser.js
|
|
38580
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/selectParser.js
|
|
38581
38581
|
var init_selectParser = __esm(() => {
|
|
38582
38582
|
init_any();
|
|
38583
38583
|
init_array();
|
|
@@ -38606,24 +38606,24 @@ var init_selectParser = __esm(() => {
|
|
|
38606
38606
|
init_readonly();
|
|
38607
38607
|
});
|
|
38608
38608
|
|
|
38609
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parseDef.js
|
|
38609
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parseDef.js
|
|
38610
38610
|
var init_parseDef = __esm(() => {
|
|
38611
38611
|
init_Options();
|
|
38612
38612
|
init_selectParser();
|
|
38613
38613
|
init_any();
|
|
38614
38614
|
});
|
|
38615
38615
|
|
|
38616
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parseTypes.js
|
|
38616
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parseTypes.js
|
|
38617
38617
|
var init_parseTypes = () => {};
|
|
38618
38618
|
|
|
38619
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js
|
|
38619
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js
|
|
38620
38620
|
var init_zodToJsonSchema = __esm(() => {
|
|
38621
38621
|
init_parseDef();
|
|
38622
38622
|
init_Refs();
|
|
38623
38623
|
init_any();
|
|
38624
38624
|
});
|
|
38625
38625
|
|
|
38626
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/index.js
|
|
38626
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/index.js
|
|
38627
38627
|
var init_esm = __esm(() => {
|
|
38628
38628
|
init_zodToJsonSchema();
|
|
38629
38629
|
init_Options();
|
|
@@ -38659,7 +38659,7 @@ var init_esm = __esm(() => {
|
|
|
38659
38659
|
init_zodToJsonSchema();
|
|
38660
38660
|
});
|
|
38661
38661
|
|
|
38662
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js
|
|
38662
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js
|
|
38663
38663
|
function getMethodLiteral(schema) {
|
|
38664
38664
|
const shape = getObjectShape(schema);
|
|
38665
38665
|
const methodSchema = shape?.method;
|
|
@@ -38684,7 +38684,7 @@ var init_zod_json_schema_compat = __esm(() => {
|
|
|
38684
38684
|
init_esm();
|
|
38685
38685
|
});
|
|
38686
38686
|
|
|
38687
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js
|
|
38687
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js
|
|
38688
38688
|
class Protocol {
|
|
38689
38689
|
constructor(_options) {
|
|
38690
38690
|
this._options = _options;
|
|
@@ -39529,7 +39529,7 @@ var init_protocol4 = __esm(() => {
|
|
|
39529
39529
|
init_zod_json_schema_compat();
|
|
39530
39530
|
});
|
|
39531
39531
|
|
|
39532
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/code.js
|
|
39532
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/code.js
|
|
39533
39533
|
var require_code = __commonJS((exports2) => {
|
|
39534
39534
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
39535
39535
|
exports2.regexpCode = exports2.getEsmExportName = exports2.getProperty = exports2.safeStringify = exports2.stringify = exports2.strConcat = exports2.addCodeArg = exports2.str = exports2._ = exports2.nil = exports2._Code = exports2.Name = exports2.IDENTIFIER = exports2._CodeOrName = undefined;
|
|
@@ -39683,7 +39683,7 @@ var require_code = __commonJS((exports2) => {
|
|
|
39683
39683
|
exports2.regexpCode = regexpCode;
|
|
39684
39684
|
});
|
|
39685
39685
|
|
|
39686
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/scope.js
|
|
39686
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/scope.js
|
|
39687
39687
|
var require_scope = __commonJS((exports2) => {
|
|
39688
39688
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
39689
39689
|
exports2.ValueScope = exports2.ValueScopeName = exports2.Scope = exports2.varKinds = exports2.UsedValueState = undefined;
|
|
@@ -39829,7 +39829,7 @@ var require_scope = __commonJS((exports2) => {
|
|
|
39829
39829
|
exports2.ValueScope = ValueScope;
|
|
39830
39830
|
});
|
|
39831
39831
|
|
|
39832
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/index.js
|
|
39832
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/index.js
|
|
39833
39833
|
var require_codegen = __commonJS((exports2) => {
|
|
39834
39834
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
39835
39835
|
exports2.or = exports2.and = exports2.not = exports2.CodeGen = exports2.operators = exports2.varKinds = exports2.ValueScopeName = exports2.ValueScope = exports2.Scope = exports2.Name = exports2.regexpCode = exports2.stringify = exports2.getProperty = exports2.nil = exports2.strConcat = exports2.str = exports2._ = undefined;
|
|
@@ -40539,7 +40539,7 @@ var require_codegen = __commonJS((exports2) => {
|
|
|
40539
40539
|
}
|
|
40540
40540
|
});
|
|
40541
40541
|
|
|
40542
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/util.js
|
|
40542
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/util.js
|
|
40543
40543
|
var require_util2 = __commonJS((exports2) => {
|
|
40544
40544
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40545
40545
|
exports2.checkStrictMode = exports2.getErrorPath = exports2.Type = exports2.useFunc = exports2.setEvaluated = exports2.evaluatedPropsToName = exports2.mergeEvaluated = exports2.eachItem = exports2.unescapeJsonPointer = exports2.escapeJsonPointer = exports2.escapeFragment = exports2.unescapeFragment = exports2.schemaRefOrVal = exports2.schemaHasRulesButRef = exports2.schemaHasRules = exports2.checkUnknownRules = exports2.alwaysValidSchema = exports2.toHash = undefined;
|
|
@@ -40703,7 +40703,7 @@ var require_util2 = __commonJS((exports2) => {
|
|
|
40703
40703
|
exports2.checkStrictMode = checkStrictMode;
|
|
40704
40704
|
});
|
|
40705
40705
|
|
|
40706
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/names.js
|
|
40706
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/names.js
|
|
40707
40707
|
var require_names = __commonJS((exports2) => {
|
|
40708
40708
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40709
40709
|
var codegen_1 = require_codegen();
|
|
@@ -40728,7 +40728,7 @@ var require_names = __commonJS((exports2) => {
|
|
|
40728
40728
|
exports2.default = names;
|
|
40729
40729
|
});
|
|
40730
40730
|
|
|
40731
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/errors.js
|
|
40731
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/errors.js
|
|
40732
40732
|
var require_errors2 = __commonJS((exports2) => {
|
|
40733
40733
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40734
40734
|
exports2.extendErrors = exports2.resetErrorsCount = exports2.reportExtraError = exports2.reportError = exports2.keyword$DataError = exports2.keywordError = undefined;
|
|
@@ -40846,7 +40846,7 @@ var require_errors2 = __commonJS((exports2) => {
|
|
|
40846
40846
|
}
|
|
40847
40847
|
});
|
|
40848
40848
|
|
|
40849
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/boolSchema.js
|
|
40849
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/boolSchema.js
|
|
40850
40850
|
var require_boolSchema = __commonJS((exports2) => {
|
|
40851
40851
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40852
40852
|
exports2.boolOrEmptySchema = exports2.topBoolOrEmptySchema = undefined;
|
|
@@ -40894,7 +40894,7 @@ var require_boolSchema = __commonJS((exports2) => {
|
|
|
40894
40894
|
}
|
|
40895
40895
|
});
|
|
40896
40896
|
|
|
40897
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/rules.js
|
|
40897
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/rules.js
|
|
40898
40898
|
var require_rules = __commonJS((exports2) => {
|
|
40899
40899
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40900
40900
|
exports2.getRules = exports2.isJSONType = undefined;
|
|
@@ -40922,7 +40922,7 @@ var require_rules = __commonJS((exports2) => {
|
|
|
40922
40922
|
exports2.getRules = getRules;
|
|
40923
40923
|
});
|
|
40924
40924
|
|
|
40925
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/applicability.js
|
|
40925
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/applicability.js
|
|
40926
40926
|
var require_applicability = __commonJS((exports2) => {
|
|
40927
40927
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40928
40928
|
exports2.shouldUseRule = exports2.shouldUseGroup = exports2.schemaHasRulesForType = undefined;
|
|
@@ -40942,7 +40942,7 @@ var require_applicability = __commonJS((exports2) => {
|
|
|
40942
40942
|
exports2.shouldUseRule = shouldUseRule;
|
|
40943
40943
|
});
|
|
40944
40944
|
|
|
40945
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/dataType.js
|
|
40945
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/dataType.js
|
|
40946
40946
|
var require_dataType = __commonJS((exports2) => {
|
|
40947
40947
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40948
40948
|
exports2.reportTypeError = exports2.checkDataTypes = exports2.checkDataType = exports2.coerceAndCheckDataType = exports2.getJSONTypes = exports2.getSchemaTypes = exports2.DataType = undefined;
|
|
@@ -41123,7 +41123,7 @@ var require_dataType = __commonJS((exports2) => {
|
|
|
41123
41123
|
}
|
|
41124
41124
|
});
|
|
41125
41125
|
|
|
41126
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/defaults.js
|
|
41126
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/defaults.js
|
|
41127
41127
|
var require_defaults = __commonJS((exports2) => {
|
|
41128
41128
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41129
41129
|
exports2.assignDefaults = undefined;
|
|
@@ -41157,7 +41157,7 @@ var require_defaults = __commonJS((exports2) => {
|
|
|
41157
41157
|
}
|
|
41158
41158
|
});
|
|
41159
41159
|
|
|
41160
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/code.js
|
|
41160
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/code.js
|
|
41161
41161
|
var require_code2 = __commonJS((exports2) => {
|
|
41162
41162
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41163
41163
|
exports2.validateUnion = exports2.validateArray = exports2.usePattern = exports2.callValidateCode = exports2.schemaProperties = exports2.allSchemaProperties = exports2.noPropertyInData = exports2.propertyInData = exports2.isOwnProperty = exports2.hasPropFunc = exports2.reportMissingProp = exports2.checkMissingProp = exports2.checkReportMissingProp = undefined;
|
|
@@ -41286,7 +41286,7 @@ var require_code2 = __commonJS((exports2) => {
|
|
|
41286
41286
|
exports2.validateUnion = validateUnion;
|
|
41287
41287
|
});
|
|
41288
41288
|
|
|
41289
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/keyword.js
|
|
41289
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/keyword.js
|
|
41290
41290
|
var require_keyword = __commonJS((exports2) => {
|
|
41291
41291
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41292
41292
|
exports2.validateKeywordUsage = exports2.validSchemaType = exports2.funcKeywordCode = exports2.macroKeywordCode = undefined;
|
|
@@ -41401,7 +41401,7 @@ var require_keyword = __commonJS((exports2) => {
|
|
|
41401
41401
|
exports2.validateKeywordUsage = validateKeywordUsage;
|
|
41402
41402
|
});
|
|
41403
41403
|
|
|
41404
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/subschema.js
|
|
41404
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/subschema.js
|
|
41405
41405
|
var require_subschema = __commonJS((exports2) => {
|
|
41406
41406
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41407
41407
|
exports2.extendSubschemaMode = exports2.extendSubschemaData = exports2.getSubschema = undefined;
|
|
@@ -41481,7 +41481,7 @@ var require_subschema = __commonJS((exports2) => {
|
|
|
41481
41481
|
exports2.extendSubschemaMode = extendSubschemaMode;
|
|
41482
41482
|
});
|
|
41483
41483
|
|
|
41484
|
-
// node_modules/.bun/fast-deep-equal@3.1.3/node_modules/fast-deep-equal/index.js
|
|
41484
|
+
// ../switchroom-sec-1417/node_modules/.bun/fast-deep-equal@3.1.3/node_modules/fast-deep-equal/index.js
|
|
41485
41485
|
var require_fast_deep_equal = __commonJS((exports2, module) => {
|
|
41486
41486
|
module.exports = function equal(a, b) {
|
|
41487
41487
|
if (a === b)
|
|
@@ -41523,7 +41523,7 @@ var require_fast_deep_equal = __commonJS((exports2, module) => {
|
|
|
41523
41523
|
};
|
|
41524
41524
|
});
|
|
41525
41525
|
|
|
41526
|
-
// node_modules/.bun/json-schema-traverse@1.0.0/node_modules/json-schema-traverse/index.js
|
|
41526
|
+
// ../switchroom-sec-1417/node_modules/.bun/json-schema-traverse@1.0.0/node_modules/json-schema-traverse/index.js
|
|
41527
41527
|
var require_json_schema_traverse = __commonJS((exports2, module) => {
|
|
41528
41528
|
var traverse = module.exports = function(schema, opts, cb) {
|
|
41529
41529
|
if (typeof opts == "function") {
|
|
@@ -41606,7 +41606,7 @@ var require_json_schema_traverse = __commonJS((exports2, module) => {
|
|
|
41606
41606
|
}
|
|
41607
41607
|
});
|
|
41608
41608
|
|
|
41609
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/resolve.js
|
|
41609
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/resolve.js
|
|
41610
41610
|
var require_resolve = __commonJS((exports2) => {
|
|
41611
41611
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41612
41612
|
exports2.getSchemaRefs = exports2.resolveUrl = exports2.normalizeId = exports2._getFullPath = exports2.getFullPath = exports2.inlineRef = undefined;
|
|
@@ -41759,7 +41759,7 @@ var require_resolve = __commonJS((exports2) => {
|
|
|
41759
41759
|
exports2.getSchemaRefs = getSchemaRefs;
|
|
41760
41760
|
});
|
|
41761
41761
|
|
|
41762
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/index.js
|
|
41762
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/index.js
|
|
41763
41763
|
var require_validate = __commonJS((exports2) => {
|
|
41764
41764
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41765
41765
|
exports2.getData = exports2.KeywordCxt = exports2.validateFunctionCode = undefined;
|
|
@@ -42264,7 +42264,7 @@ var require_validate = __commonJS((exports2) => {
|
|
|
42264
42264
|
exports2.getData = getData;
|
|
42265
42265
|
});
|
|
42266
42266
|
|
|
42267
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/validation_error.js
|
|
42267
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/validation_error.js
|
|
42268
42268
|
var require_validation_error = __commonJS((exports2) => {
|
|
42269
42269
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42270
42270
|
|
|
@@ -42278,7 +42278,7 @@ var require_validation_error = __commonJS((exports2) => {
|
|
|
42278
42278
|
exports2.default = ValidationError;
|
|
42279
42279
|
});
|
|
42280
42280
|
|
|
42281
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/ref_error.js
|
|
42281
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/ref_error.js
|
|
42282
42282
|
var require_ref_error = __commonJS((exports2) => {
|
|
42283
42283
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42284
42284
|
var resolve_1 = require_resolve();
|
|
@@ -42293,7 +42293,7 @@ var require_ref_error = __commonJS((exports2) => {
|
|
|
42293
42293
|
exports2.default = MissingRefError;
|
|
42294
42294
|
});
|
|
42295
42295
|
|
|
42296
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/index.js
|
|
42296
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/index.js
|
|
42297
42297
|
var require_compile = __commonJS((exports2) => {
|
|
42298
42298
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42299
42299
|
exports2.resolveSchema = exports2.getCompilingSchema = exports2.resolveRef = exports2.compileSchema = exports2.SchemaEnv = undefined;
|
|
@@ -42514,7 +42514,7 @@ var require_compile = __commonJS((exports2) => {
|
|
|
42514
42514
|
}
|
|
42515
42515
|
});
|
|
42516
42516
|
|
|
42517
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/data.json
|
|
42517
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/data.json
|
|
42518
42518
|
var require_data = __commonJS((exports2, module) => {
|
|
42519
42519
|
module.exports = {
|
|
42520
42520
|
$id: "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
|
|
@@ -42531,7 +42531,7 @@ var require_data = __commonJS((exports2, module) => {
|
|
|
42531
42531
|
};
|
|
42532
42532
|
});
|
|
42533
42533
|
|
|
42534
|
-
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/utils.js
|
|
42534
|
+
// ../switchroom-sec-1417/node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/utils.js
|
|
42535
42535
|
var require_utils2 = __commonJS((exports2, module) => {
|
|
42536
42536
|
var isUUID = RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu);
|
|
42537
42537
|
var isIPv4 = RegExp.prototype.test.bind(/^(?:(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)$/u);
|
|
@@ -42786,7 +42786,7 @@ var require_utils2 = __commonJS((exports2, module) => {
|
|
|
42786
42786
|
};
|
|
42787
42787
|
});
|
|
42788
42788
|
|
|
42789
|
-
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/schemes.js
|
|
42789
|
+
// ../switchroom-sec-1417/node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/schemes.js
|
|
42790
42790
|
var require_schemes = __commonJS((exports2, module) => {
|
|
42791
42791
|
var { isUUID } = require_utils2();
|
|
42792
42792
|
var URN_REG = /([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu;
|
|
@@ -42960,7 +42960,7 @@ var require_schemes = __commonJS((exports2, module) => {
|
|
|
42960
42960
|
};
|
|
42961
42961
|
});
|
|
42962
42962
|
|
|
42963
|
-
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/index.js
|
|
42963
|
+
// ../switchroom-sec-1417/node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/index.js
|
|
42964
42964
|
var require_fast_uri = __commonJS((exports2, module) => {
|
|
42965
42965
|
var { normalizeIPv6, removeDotSegments, recomposeAuthority, normalizeComponentEncoding, isIPv4, nonSimpleDomain } = require_utils2();
|
|
42966
42966
|
var { SCHEMES, getSchemeHandler } = require_schemes();
|
|
@@ -43211,7 +43211,7 @@ var require_fast_uri = __commonJS((exports2, module) => {
|
|
|
43211
43211
|
module.exports.fastUri = fastUri;
|
|
43212
43212
|
});
|
|
43213
43213
|
|
|
43214
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/uri.js
|
|
43214
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/uri.js
|
|
43215
43215
|
var require_uri = __commonJS((exports2) => {
|
|
43216
43216
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43217
43217
|
var uri = require_fast_uri();
|
|
@@ -43219,7 +43219,7 @@ var require_uri = __commonJS((exports2) => {
|
|
|
43219
43219
|
exports2.default = uri;
|
|
43220
43220
|
});
|
|
43221
43221
|
|
|
43222
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/core.js
|
|
43222
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/core.js
|
|
43223
43223
|
var require_core = __commonJS((exports2) => {
|
|
43224
43224
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43225
43225
|
exports2.CodeGen = exports2.Name = exports2.nil = exports2.stringify = exports2.str = exports2._ = exports2.KeywordCxt = undefined;
|
|
@@ -43812,7 +43812,7 @@ var require_core = __commonJS((exports2) => {
|
|
|
43812
43812
|
}
|
|
43813
43813
|
});
|
|
43814
43814
|
|
|
43815
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/id.js
|
|
43815
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/id.js
|
|
43816
43816
|
var require_id = __commonJS((exports2) => {
|
|
43817
43817
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43818
43818
|
var def = {
|
|
@@ -43824,7 +43824,7 @@ var require_id = __commonJS((exports2) => {
|
|
|
43824
43824
|
exports2.default = def;
|
|
43825
43825
|
});
|
|
43826
43826
|
|
|
43827
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/ref.js
|
|
43827
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/ref.js
|
|
43828
43828
|
var require_ref = __commonJS((exports2) => {
|
|
43829
43829
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43830
43830
|
exports2.callRef = exports2.getValidate = undefined;
|
|
@@ -43943,7 +43943,7 @@ var require_ref = __commonJS((exports2) => {
|
|
|
43943
43943
|
exports2.default = def;
|
|
43944
43944
|
});
|
|
43945
43945
|
|
|
43946
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/index.js
|
|
43946
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/index.js
|
|
43947
43947
|
var require_core2 = __commonJS((exports2) => {
|
|
43948
43948
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43949
43949
|
var id_1 = require_id();
|
|
@@ -43961,7 +43961,7 @@ var require_core2 = __commonJS((exports2) => {
|
|
|
43961
43961
|
exports2.default = core2;
|
|
43962
43962
|
});
|
|
43963
43963
|
|
|
43964
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.js
|
|
43964
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.js
|
|
43965
43965
|
var require_limitNumber = __commonJS((exports2) => {
|
|
43966
43966
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43967
43967
|
var codegen_1 = require_codegen();
|
|
@@ -43990,7 +43990,7 @@ var require_limitNumber = __commonJS((exports2) => {
|
|
|
43990
43990
|
exports2.default = def;
|
|
43991
43991
|
});
|
|
43992
43992
|
|
|
43993
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.js
|
|
43993
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.js
|
|
43994
43994
|
var require_multipleOf = __commonJS((exports2) => {
|
|
43995
43995
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43996
43996
|
var codegen_1 = require_codegen();
|
|
@@ -44015,7 +44015,7 @@ var require_multipleOf = __commonJS((exports2) => {
|
|
|
44015
44015
|
exports2.default = def;
|
|
44016
44016
|
});
|
|
44017
44017
|
|
|
44018
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/ucs2length.js
|
|
44018
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/ucs2length.js
|
|
44019
44019
|
var require_ucs2length = __commonJS((exports2) => {
|
|
44020
44020
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44021
44021
|
function ucs2length(str) {
|
|
@@ -44038,7 +44038,7 @@ var require_ucs2length = __commonJS((exports2) => {
|
|
|
44038
44038
|
ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
|
|
44039
44039
|
});
|
|
44040
44040
|
|
|
44041
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitLength.js
|
|
44041
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitLength.js
|
|
44042
44042
|
var require_limitLength = __commonJS((exports2) => {
|
|
44043
44043
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44044
44044
|
var codegen_1 = require_codegen();
|
|
@@ -44067,7 +44067,7 @@ var require_limitLength = __commonJS((exports2) => {
|
|
|
44067
44067
|
exports2.default = def;
|
|
44068
44068
|
});
|
|
44069
44069
|
|
|
44070
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/pattern.js
|
|
44070
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/pattern.js
|
|
44071
44071
|
var require_pattern = __commonJS((exports2) => {
|
|
44072
44072
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44073
44073
|
var code_1 = require_code2();
|
|
@@ -44101,7 +44101,7 @@ var require_pattern = __commonJS((exports2) => {
|
|
|
44101
44101
|
exports2.default = def;
|
|
44102
44102
|
});
|
|
44103
44103
|
|
|
44104
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitProperties.js
|
|
44104
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitProperties.js
|
|
44105
44105
|
var require_limitProperties = __commonJS((exports2) => {
|
|
44106
44106
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44107
44107
|
var codegen_1 = require_codegen();
|
|
@@ -44127,7 +44127,7 @@ var require_limitProperties = __commonJS((exports2) => {
|
|
|
44127
44127
|
exports2.default = def;
|
|
44128
44128
|
});
|
|
44129
44129
|
|
|
44130
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/required.js
|
|
44130
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/required.js
|
|
44131
44131
|
var require_required = __commonJS((exports2) => {
|
|
44132
44132
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44133
44133
|
var code_1 = require_code2();
|
|
@@ -44206,7 +44206,7 @@ var require_required = __commonJS((exports2) => {
|
|
|
44206
44206
|
exports2.default = def;
|
|
44207
44207
|
});
|
|
44208
44208
|
|
|
44209
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitItems.js
|
|
44209
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitItems.js
|
|
44210
44210
|
var require_limitItems = __commonJS((exports2) => {
|
|
44211
44211
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44212
44212
|
var codegen_1 = require_codegen();
|
|
@@ -44232,7 +44232,7 @@ var require_limitItems = __commonJS((exports2) => {
|
|
|
44232
44232
|
exports2.default = def;
|
|
44233
44233
|
});
|
|
44234
44234
|
|
|
44235
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/equal.js
|
|
44235
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/equal.js
|
|
44236
44236
|
var require_equal = __commonJS((exports2) => {
|
|
44237
44237
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44238
44238
|
var equal = require_fast_deep_equal();
|
|
@@ -44240,7 +44240,7 @@ var require_equal = __commonJS((exports2) => {
|
|
|
44240
44240
|
exports2.default = equal;
|
|
44241
44241
|
});
|
|
44242
44242
|
|
|
44243
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js
|
|
44243
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js
|
|
44244
44244
|
var require_uniqueItems = __commonJS((exports2) => {
|
|
44245
44245
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44246
44246
|
var dataType_1 = require_dataType();
|
|
@@ -44304,7 +44304,7 @@ var require_uniqueItems = __commonJS((exports2) => {
|
|
|
44304
44304
|
exports2.default = def;
|
|
44305
44305
|
});
|
|
44306
44306
|
|
|
44307
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/const.js
|
|
44307
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/const.js
|
|
44308
44308
|
var require_const = __commonJS((exports2) => {
|
|
44309
44309
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44310
44310
|
var codegen_1 = require_codegen();
|
|
@@ -44330,7 +44330,7 @@ var require_const = __commonJS((exports2) => {
|
|
|
44330
44330
|
exports2.default = def;
|
|
44331
44331
|
});
|
|
44332
44332
|
|
|
44333
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/enum.js
|
|
44333
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/enum.js
|
|
44334
44334
|
var require_enum = __commonJS((exports2) => {
|
|
44335
44335
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44336
44336
|
var codegen_1 = require_codegen();
|
|
@@ -44376,7 +44376,7 @@ var require_enum = __commonJS((exports2) => {
|
|
|
44376
44376
|
exports2.default = def;
|
|
44377
44377
|
});
|
|
44378
44378
|
|
|
44379
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/index.js
|
|
44379
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/index.js
|
|
44380
44380
|
var require_validation = __commonJS((exports2) => {
|
|
44381
44381
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44382
44382
|
var limitNumber_1 = require_limitNumber();
|
|
@@ -44406,7 +44406,7 @@ var require_validation = __commonJS((exports2) => {
|
|
|
44406
44406
|
exports2.default = validation;
|
|
44407
44407
|
});
|
|
44408
44408
|
|
|
44409
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
|
|
44409
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
|
|
44410
44410
|
var require_additionalItems = __commonJS((exports2) => {
|
|
44411
44411
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44412
44412
|
exports2.validateAdditionalItems = undefined;
|
|
@@ -44456,7 +44456,7 @@ var require_additionalItems = __commonJS((exports2) => {
|
|
|
44456
44456
|
exports2.default = def;
|
|
44457
44457
|
});
|
|
44458
44458
|
|
|
44459
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items.js
|
|
44459
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items.js
|
|
44460
44460
|
var require_items = __commonJS((exports2) => {
|
|
44461
44461
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44462
44462
|
exports2.validateTuple = undefined;
|
|
@@ -44510,7 +44510,7 @@ var require_items = __commonJS((exports2) => {
|
|
|
44510
44510
|
exports2.default = def;
|
|
44511
44511
|
});
|
|
44512
44512
|
|
|
44513
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js
|
|
44513
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js
|
|
44514
44514
|
var require_prefixItems = __commonJS((exports2) => {
|
|
44515
44515
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44516
44516
|
var items_1 = require_items();
|
|
@@ -44524,7 +44524,7 @@ var require_prefixItems = __commonJS((exports2) => {
|
|
|
44524
44524
|
exports2.default = def;
|
|
44525
44525
|
});
|
|
44526
44526
|
|
|
44527
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items2020.js
|
|
44527
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items2020.js
|
|
44528
44528
|
var require_items2020 = __commonJS((exports2) => {
|
|
44529
44529
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44530
44530
|
var codegen_1 = require_codegen();
|
|
@@ -44556,7 +44556,7 @@ var require_items2020 = __commonJS((exports2) => {
|
|
|
44556
44556
|
exports2.default = def;
|
|
44557
44557
|
});
|
|
44558
44558
|
|
|
44559
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/contains.js
|
|
44559
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/contains.js
|
|
44560
44560
|
var require_contains = __commonJS((exports2) => {
|
|
44561
44561
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44562
44562
|
var codegen_1 = require_codegen();
|
|
@@ -44647,7 +44647,7 @@ var require_contains = __commonJS((exports2) => {
|
|
|
44647
44647
|
exports2.default = def;
|
|
44648
44648
|
});
|
|
44649
44649
|
|
|
44650
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.js
|
|
44650
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.js
|
|
44651
44651
|
var require_dependencies = __commonJS((exports2) => {
|
|
44652
44652
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44653
44653
|
exports2.validateSchemaDeps = exports2.validatePropertyDeps = exports2.error = undefined;
|
|
@@ -44732,7 +44732,7 @@ var require_dependencies = __commonJS((exports2) => {
|
|
|
44732
44732
|
exports2.default = def;
|
|
44733
44733
|
});
|
|
44734
44734
|
|
|
44735
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js
|
|
44735
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js
|
|
44736
44736
|
var require_propertyNames = __commonJS((exports2) => {
|
|
44737
44737
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44738
44738
|
var codegen_1 = require_codegen();
|
|
@@ -44772,7 +44772,7 @@ var require_propertyNames = __commonJS((exports2) => {
|
|
|
44772
44772
|
exports2.default = def;
|
|
44773
44773
|
});
|
|
44774
44774
|
|
|
44775
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
|
|
44775
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
|
|
44776
44776
|
var require_additionalProperties = __commonJS((exports2) => {
|
|
44777
44777
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44778
44778
|
var code_1 = require_code2();
|
|
@@ -44875,7 +44875,7 @@ var require_additionalProperties = __commonJS((exports2) => {
|
|
|
44875
44875
|
exports2.default = def;
|
|
44876
44876
|
});
|
|
44877
44877
|
|
|
44878
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/properties.js
|
|
44878
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/properties.js
|
|
44879
44879
|
var require_properties = __commonJS((exports2) => {
|
|
44880
44880
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44881
44881
|
var validate_1 = require_validate();
|
|
@@ -44930,7 +44930,7 @@ var require_properties = __commonJS((exports2) => {
|
|
|
44930
44930
|
exports2.default = def;
|
|
44931
44931
|
});
|
|
44932
44932
|
|
|
44933
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js
|
|
44933
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js
|
|
44934
44934
|
var require_patternProperties = __commonJS((exports2) => {
|
|
44935
44935
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44936
44936
|
var code_1 = require_code2();
|
|
@@ -45001,7 +45001,7 @@ var require_patternProperties = __commonJS((exports2) => {
|
|
|
45001
45001
|
exports2.default = def;
|
|
45002
45002
|
});
|
|
45003
45003
|
|
|
45004
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/not.js
|
|
45004
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/not.js
|
|
45005
45005
|
var require_not = __commonJS((exports2) => {
|
|
45006
45006
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45007
45007
|
var util_1 = require_util2();
|
|
@@ -45029,7 +45029,7 @@ var require_not = __commonJS((exports2) => {
|
|
|
45029
45029
|
exports2.default = def;
|
|
45030
45030
|
});
|
|
45031
45031
|
|
|
45032
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.js
|
|
45032
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.js
|
|
45033
45033
|
var require_anyOf = __commonJS((exports2) => {
|
|
45034
45034
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45035
45035
|
var code_1 = require_code2();
|
|
@@ -45043,7 +45043,7 @@ var require_anyOf = __commonJS((exports2) => {
|
|
|
45043
45043
|
exports2.default = def;
|
|
45044
45044
|
});
|
|
45045
45045
|
|
|
45046
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.js
|
|
45046
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.js
|
|
45047
45047
|
var require_oneOf = __commonJS((exports2) => {
|
|
45048
45048
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45049
45049
|
var codegen_1 = require_codegen();
|
|
@@ -45098,7 +45098,7 @@ var require_oneOf = __commonJS((exports2) => {
|
|
|
45098
45098
|
exports2.default = def;
|
|
45099
45099
|
});
|
|
45100
45100
|
|
|
45101
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/allOf.js
|
|
45101
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/allOf.js
|
|
45102
45102
|
var require_allOf = __commonJS((exports2) => {
|
|
45103
45103
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45104
45104
|
var util_1 = require_util2();
|
|
@@ -45122,7 +45122,7 @@ var require_allOf = __commonJS((exports2) => {
|
|
|
45122
45122
|
exports2.default = def;
|
|
45123
45123
|
});
|
|
45124
45124
|
|
|
45125
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/if.js
|
|
45125
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/if.js
|
|
45126
45126
|
var require_if2 = __commonJS((exports2) => {
|
|
45127
45127
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45128
45128
|
var codegen_1 = require_codegen();
|
|
@@ -45188,7 +45188,7 @@ var require_if2 = __commonJS((exports2) => {
|
|
|
45188
45188
|
exports2.default = def;
|
|
45189
45189
|
});
|
|
45190
45190
|
|
|
45191
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/thenElse.js
|
|
45191
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/thenElse.js
|
|
45192
45192
|
var require_thenElse = __commonJS((exports2) => {
|
|
45193
45193
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45194
45194
|
var util_1 = require_util2();
|
|
@@ -45203,7 +45203,7 @@ var require_thenElse = __commonJS((exports2) => {
|
|
|
45203
45203
|
exports2.default = def;
|
|
45204
45204
|
});
|
|
45205
45205
|
|
|
45206
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/index.js
|
|
45206
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/index.js
|
|
45207
45207
|
var require_applicator = __commonJS((exports2) => {
|
|
45208
45208
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45209
45209
|
var additionalItems_1 = require_additionalItems();
|
|
@@ -45246,7 +45246,7 @@ var require_applicator = __commonJS((exports2) => {
|
|
|
45246
45246
|
exports2.default = getApplicator;
|
|
45247
45247
|
});
|
|
45248
45248
|
|
|
45249
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/format.js
|
|
45249
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/format.js
|
|
45250
45250
|
var require_format = __commonJS((exports2) => {
|
|
45251
45251
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45252
45252
|
var codegen_1 = require_codegen();
|
|
@@ -45333,7 +45333,7 @@ var require_format = __commonJS((exports2) => {
|
|
|
45333
45333
|
exports2.default = def;
|
|
45334
45334
|
});
|
|
45335
45335
|
|
|
45336
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/index.js
|
|
45336
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/index.js
|
|
45337
45337
|
var require_format2 = __commonJS((exports2) => {
|
|
45338
45338
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45339
45339
|
var format_1 = require_format();
|
|
@@ -45341,7 +45341,7 @@ var require_format2 = __commonJS((exports2) => {
|
|
|
45341
45341
|
exports2.default = format;
|
|
45342
45342
|
});
|
|
45343
45343
|
|
|
45344
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/metadata.js
|
|
45344
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/metadata.js
|
|
45345
45345
|
var require_metadata = __commonJS((exports2) => {
|
|
45346
45346
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45347
45347
|
exports2.contentVocabulary = exports2.metadataVocabulary = undefined;
|
|
@@ -45361,7 +45361,7 @@ var require_metadata = __commonJS((exports2) => {
|
|
|
45361
45361
|
];
|
|
45362
45362
|
});
|
|
45363
45363
|
|
|
45364
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/draft7.js
|
|
45364
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/draft7.js
|
|
45365
45365
|
var require_draft7 = __commonJS((exports2) => {
|
|
45366
45366
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45367
45367
|
var core_1 = require_core2();
|
|
@@ -45380,7 +45380,7 @@ var require_draft7 = __commonJS((exports2) => {
|
|
|
45380
45380
|
exports2.default = draft7Vocabularies;
|
|
45381
45381
|
});
|
|
45382
45382
|
|
|
45383
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/types.js
|
|
45383
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/types.js
|
|
45384
45384
|
var require_types = __commonJS((exports2) => {
|
|
45385
45385
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45386
45386
|
exports2.DiscrError = undefined;
|
|
@@ -45391,7 +45391,7 @@ var require_types = __commonJS((exports2) => {
|
|
|
45391
45391
|
})(DiscrError || (exports2.DiscrError = DiscrError = {}));
|
|
45392
45392
|
});
|
|
45393
45393
|
|
|
45394
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/index.js
|
|
45394
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/index.js
|
|
45395
45395
|
var require_discriminator = __commonJS((exports2) => {
|
|
45396
45396
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45397
45397
|
var codegen_1 = require_codegen();
|
|
@@ -45493,7 +45493,7 @@ var require_discriminator = __commonJS((exports2) => {
|
|
|
45493
45493
|
exports2.default = def;
|
|
45494
45494
|
});
|
|
45495
45495
|
|
|
45496
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/json-schema-draft-07.json
|
|
45496
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/json-schema-draft-07.json
|
|
45497
45497
|
var require_json_schema_draft_07 = __commonJS((exports2, module) => {
|
|
45498
45498
|
module.exports = {
|
|
45499
45499
|
$schema: "http://json-schema.org/draft-07/schema#",
|
|
@@ -45648,7 +45648,7 @@ var require_json_schema_draft_07 = __commonJS((exports2, module) => {
|
|
|
45648
45648
|
};
|
|
45649
45649
|
});
|
|
45650
45650
|
|
|
45651
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/ajv.js
|
|
45651
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/ajv.js
|
|
45652
45652
|
var require_ajv = __commonJS((exports2, module) => {
|
|
45653
45653
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45654
45654
|
exports2.MissingRefError = exports2.ValidationError = exports2.CodeGen = exports2.Name = exports2.nil = exports2.stringify = exports2.str = exports2._ = exports2.KeywordCxt = exports2.Ajv = undefined;
|
|
@@ -45716,7 +45716,7 @@ var require_ajv = __commonJS((exports2, module) => {
|
|
|
45716
45716
|
} });
|
|
45717
45717
|
});
|
|
45718
45718
|
|
|
45719
|
-
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/formats.js
|
|
45719
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/formats.js
|
|
45720
45720
|
var require_formats = __commonJS((exports2) => {
|
|
45721
45721
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45722
45722
|
exports2.formatNames = exports2.fastFormats = exports2.fullFormats = undefined;
|
|
@@ -45893,7 +45893,7 @@ var require_formats = __commonJS((exports2) => {
|
|
|
45893
45893
|
}
|
|
45894
45894
|
});
|
|
45895
45895
|
|
|
45896
|
-
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/limit.js
|
|
45896
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/limit.js
|
|
45897
45897
|
var require_limit = __commonJS((exports2) => {
|
|
45898
45898
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45899
45899
|
exports2.formatLimitDefinition = undefined;
|
|
@@ -45962,7 +45962,7 @@ var require_limit = __commonJS((exports2) => {
|
|
|
45962
45962
|
exports2.default = formatLimitPlugin;
|
|
45963
45963
|
});
|
|
45964
45964
|
|
|
45965
|
-
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/index.js
|
|
45965
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/index.js
|
|
45966
45966
|
var require_dist2 = __commonJS((exports2, module) => {
|
|
45967
45967
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45968
45968
|
var formats_1 = require_formats();
|
|
@@ -46001,7 +46001,7 @@ var require_dist2 = __commonJS((exports2, module) => {
|
|
|
46001
46001
|
exports2.default = formatsPlugin;
|
|
46002
46002
|
});
|
|
46003
46003
|
|
|
46004
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
|
|
46004
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
|
|
46005
46005
|
function createDefaultAjvInstance() {
|
|
46006
46006
|
const ajv = new import_ajv.default({
|
|
46007
46007
|
strict: false,
|
|
@@ -46044,7 +46044,7 @@ var init_ajv_provider = __esm(() => {
|
|
|
46044
46044
|
import_ajv_formats = __toESM(require_dist2(), 1);
|
|
46045
46045
|
});
|
|
46046
46046
|
|
|
46047
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js
|
|
46047
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js
|
|
46048
46048
|
class ExperimentalServerTasks {
|
|
46049
46049
|
constructor(_server) {
|
|
46050
46050
|
this._server = _server;
|
|
@@ -46125,7 +46125,7 @@ var init_server = __esm(() => {
|
|
|
46125
46125
|
init_types2();
|
|
46126
46126
|
});
|
|
46127
46127
|
|
|
46128
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js
|
|
46128
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js
|
|
46129
46129
|
function assertToolsCallTaskCapability(requests, method, entityName) {
|
|
46130
46130
|
if (!requests) {
|
|
46131
46131
|
throw new Error(`${entityName} does not support task creation (required for ${method})`);
|
|
@@ -46160,7 +46160,7 @@ function assertClientRequestTaskCapability(requests, method, entityName) {
|
|
|
46160
46160
|
}
|
|
46161
46161
|
}
|
|
46162
46162
|
|
|
46163
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
46163
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
46164
46164
|
var Server;
|
|
46165
46165
|
var init_server2 = __esm(() => {
|
|
46166
46166
|
init_protocol4();
|
|
@@ -46501,7 +46501,7 @@ var init_server2 = __esm(() => {
|
|
|
46501
46501
|
};
|
|
46502
46502
|
});
|
|
46503
46503
|
|
|
46504
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
46504
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
46505
46505
|
class ReadBuffer {
|
|
46506
46506
|
append(chunk2) {
|
|
46507
46507
|
this._buffer = this._buffer ? Buffer.concat([this._buffer, chunk2]) : chunk2;
|
|
@@ -46534,7 +46534,7 @@ var init_stdio = __esm(() => {
|
|
|
46534
46534
|
init_types2();
|
|
46535
46535
|
});
|
|
46536
46536
|
|
|
46537
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
46537
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
46538
46538
|
import process3 from "node:process";
|
|
46539
46539
|
|
|
46540
46540
|
class StdioServerTransport {
|
|
@@ -47231,7 +47231,7 @@ var init_server4 = __esm(() => {
|
|
|
47231
47231
|
];
|
|
47232
47232
|
});
|
|
47233
47233
|
|
|
47234
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/esm.mjs
|
|
47234
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/esm.mjs
|
|
47235
47235
|
var import__ = __toESM(require_commander(), 1);
|
|
47236
47236
|
var {
|
|
47237
47237
|
program,
|
|
@@ -47248,8 +47248,8 @@ var {
|
|
|
47248
47248
|
} = import__.default;
|
|
47249
47249
|
|
|
47250
47250
|
// src/build-info.ts
|
|
47251
|
-
var VERSION = "0.13.
|
|
47252
|
-
var COMMIT_SHA = "
|
|
47251
|
+
var VERSION = "0.13.5";
|
|
47252
|
+
var COMMIT_SHA = "cb688641";
|
|
47253
47253
|
|
|
47254
47254
|
// src/cli/agent.ts
|
|
47255
47255
|
init_source();
|
|
@@ -47522,6 +47522,10 @@ When you call \`mcp__switchroom-telegram__progress_update\` from inside this sub
|
|
|
47522
47522
|
One short line per call. Skip for trivial one-shot tasks. Don't narrate every tool call \u2014 the parent card already shows your tool ring buffer.
|
|
47523
47523
|
|
|
47524
47524
|
Pass \`chat_id\` = \`${args.defaultChatId}\` unless the parent is handling a different chat in this turn, in which case use whatever chat_id the parent saw on its inbound message.
|
|
47525
|
+
|
|
47526
|
+
## Vault / credential access
|
|
47527
|
+
|
|
47528
|
+
If you cannot reach a service or API because a credential is missing or denied, **do not tell the parent to ask the operator manually**. Instead, return the exact vault key name you need (use the \`<service>/<key>\` convention, e.g. \`coolify/api-token\`) and the verbatim error. Your parent agent can call \`vault_request_access\` to get the grant \u2014 that is the correct recovery path, not an escalation to the operator.
|
|
47525
47529
|
`;
|
|
47526
47530
|
}
|
|
47527
47531
|
function applyTelegramProgressGuidance(body, args) {
|
|
@@ -50468,13 +50472,11 @@ import { join as join12 } from "node:path";
|
|
|
50468
50472
|
import { execFileSync as execFileSync6 } from "node:child_process";
|
|
50469
50473
|
|
|
50470
50474
|
// src/agents/handoff-summarizer.ts
|
|
50471
|
-
import { readFileSync as readFileSync14, writeFileSync as writeFileSync8, renameSync as renameSync4, mkdirSync as mkdirSync11, existsSync as existsSync14, statSync as statSync9 } from "node:fs";
|
|
50475
|
+
import { readFileSync as readFileSync14, writeFileSync as writeFileSync8, renameSync as renameSync4, mkdirSync as mkdirSync11, existsSync as existsSync14, statSync as statSync9, readdirSync as readdirSync7 } from "node:fs";
|
|
50472
50476
|
import { join as join11 } from "node:path";
|
|
50473
|
-
import { spawn as spawn2 } from "node:child_process";
|
|
50474
|
-
var DEFAULT_SUMMARIZER_MODEL = "claude-haiku-4-5-20251001";
|
|
50475
50477
|
var DEFAULT_MAX_TURNS = 50;
|
|
50476
|
-
var DEFAULT_TIMEOUT_MS2 = 30000;
|
|
50477
50478
|
var TOPIC_MAX_CHARS = 117;
|
|
50479
|
+
var TURN_TEXT_MAX_CHARS = 1200;
|
|
50478
50480
|
function extractTurnsFromJsonl(path, maxTurns) {
|
|
50479
50481
|
let raw;
|
|
50480
50482
|
try {
|
|
@@ -50507,7 +50509,8 @@ function extractTurnsFromJsonl(path, maxTurns) {
|
|
|
50507
50509
|
}
|
|
50508
50510
|
if (obj.type === "user" && obj.message && typeof obj.message === "object") {
|
|
50509
50511
|
const content = obj.message.content;
|
|
50510
|
-
const
|
|
50512
|
+
const raw2 = extractTextBlocks(content);
|
|
50513
|
+
const text = raw2 ? extractChannelBody(raw2) : null;
|
|
50511
50514
|
if (text)
|
|
50512
50515
|
turns.push({ role: "user", text });
|
|
50513
50516
|
continue;
|
|
@@ -50520,9 +50523,16 @@ function extractTurnsFromJsonl(path, maxTurns) {
|
|
|
50520
50523
|
continue;
|
|
50521
50524
|
}
|
|
50522
50525
|
}
|
|
50523
|
-
|
|
50524
|
-
|
|
50525
|
-
|
|
50526
|
+
const deduped = [];
|
|
50527
|
+
for (const t of turns) {
|
|
50528
|
+
const prev = deduped[deduped.length - 1];
|
|
50529
|
+
if (prev && prev.role === t.role && prev.text === t.text)
|
|
50530
|
+
continue;
|
|
50531
|
+
deduped.push(t);
|
|
50532
|
+
}
|
|
50533
|
+
if (deduped.length <= maxTurns)
|
|
50534
|
+
return deduped;
|
|
50535
|
+
return deduped.slice(deduped.length - maxTurns);
|
|
50526
50536
|
}
|
|
50527
50537
|
function extractChannelBody(raw) {
|
|
50528
50538
|
const m = raw.match(/<channel[^>]*>([\s\S]*?)<\/channel>/);
|
|
@@ -50553,56 +50563,48 @@ function extractTextBlocks(content) {
|
|
|
50553
50563
|
`).trim();
|
|
50554
50564
|
return joined.length > 0 ? joined : null;
|
|
50555
50565
|
}
|
|
50556
|
-
function
|
|
50557
|
-
const
|
|
50558
|
-
|
|
50559
|
-
` + `Output format \u2014 EXACTLY this structure, no preamble:
|
|
50560
|
-
` + `## Topic: <one short line, max 100 chars, describing what the user and assistant were most recently focused on>
|
|
50561
|
-
|
|
50562
|
-
` + `## Summary
|
|
50563
|
-
<one paragraph, what we were working on>
|
|
50564
|
-
|
|
50565
|
-
` + `## Open threads
|
|
50566
|
-
- <bulleted list of pending/unresolved items; empty list ok>
|
|
50567
|
-
|
|
50568
|
-
` + `## Last exchange
|
|
50569
|
-
**User:** <verbatim or near-verbatim last user message, truncated to ~500 chars>
|
|
50570
|
-
**Assistant:** <last assistant response, truncated to ~500 chars>
|
|
50571
|
-
|
|
50572
|
-
` + `## Key decisions & facts
|
|
50573
|
-
- <bullets; empty list ok>
|
|
50574
|
-
|
|
50575
|
-
` + `## Active files / paths
|
|
50576
|
-
- <bullets; empty list ok>
|
|
50566
|
+
function formatTranscriptTail(turns) {
|
|
50567
|
+
const header = `# Handoff \u2014 previous session
|
|
50577
50568
|
|
|
50578
|
-
` + "
|
|
50579
|
-
|
|
50580
|
-
|
|
50569
|
+
` + "You are resuming this agent's work. There is no generated summary " + "\u2014 below is the **raw tail of the previous session's transcript** " + "(oldest first, most recent last). Read it to reorient, then carry " + "on. Anything important worth keeping long-term should already be " + `in your memory files \u2014 check those too.
|
|
50570
|
+
`;
|
|
50571
|
+
if (turns.length === 0) {
|
|
50572
|
+
return header + `
|
|
50573
|
+
_(No recent turns were recoverable from the previous session.)_
|
|
50574
|
+
`;
|
|
50575
|
+
}
|
|
50576
|
+
const body = turns.map((t) => {
|
|
50577
|
+
let text = t.text;
|
|
50578
|
+
if (text.length > TURN_TEXT_MAX_CHARS) {
|
|
50579
|
+
text = text.slice(0, TURN_TEXT_MAX_CHARS) + `
|
|
50580
|
+
\u2026[truncated]`;
|
|
50581
|
+
}
|
|
50582
|
+
return `### ${t.role === "user" ? "User" : "Assistant"}
|
|
50583
|
+
${text}`;
|
|
50584
|
+
}).join(`
|
|
50581
50585
|
|
|
50582
50586
|
`);
|
|
50583
|
-
|
|
50587
|
+
return `${header}
|
|
50588
|
+
## Recent turns
|
|
50584
50589
|
|
|
50585
|
-
|
|
50586
|
-
|
|
50590
|
+
${body}
|
|
50591
|
+
`;
|
|
50587
50592
|
}
|
|
50588
|
-
function
|
|
50589
|
-
|
|
50590
|
-
|
|
50591
|
-
|
|
50592
|
-
start++;
|
|
50593
|
-
if (start >= lines.length)
|
|
50594
|
-
return null;
|
|
50595
|
-
const first = lines[start].trim();
|
|
50596
|
-
const m = first.match(/^##\s*Topic:\s*(.+)$/i);
|
|
50597
|
-
if (!m)
|
|
50598
|
-
return null;
|
|
50599
|
-
let topic = m[1].trim();
|
|
50600
|
-
if (topic.length > TOPIC_MAX_CHARS) {
|
|
50601
|
-
topic = topic.slice(0, TOPIC_MAX_CHARS) + "\u2026";
|
|
50593
|
+
function deriveTopic(turns) {
|
|
50594
|
+
for (let i = turns.length - 1;i >= 0; i--) {
|
|
50595
|
+
if (turns[i].role === "user")
|
|
50596
|
+
return clampTopic(firstLine(turns[i].text));
|
|
50602
50597
|
}
|
|
50603
|
-
|
|
50604
|
-
|
|
50605
|
-
return
|
|
50598
|
+
if (turns.length > 0)
|
|
50599
|
+
return clampTopic(firstLine(turns[turns.length - 1].text));
|
|
50600
|
+
return "previous session";
|
|
50601
|
+
}
|
|
50602
|
+
function firstLine(s) {
|
|
50603
|
+
const line = s.split(/\r?\n/).find((l) => l.trim().length > 0) ?? s;
|
|
50604
|
+
return line.trim();
|
|
50605
|
+
}
|
|
50606
|
+
function clampTopic(s) {
|
|
50607
|
+
return s.length > TOPIC_MAX_CHARS ? s.slice(0, TOPIC_MAX_CHARS) + "\u2026" : s;
|
|
50606
50608
|
}
|
|
50607
50609
|
function writeSidecarsAtomic(agentDir, briefing, topic) {
|
|
50608
50610
|
mkdirSync11(agentDir, { recursive: true });
|
|
@@ -50615,103 +50617,24 @@ function writeSidecarsAtomic(agentDir, briefing, topic) {
|
|
|
50615
50617
|
renameSync4(handoffTmp, handoffPath);
|
|
50616
50618
|
renameSync4(topicTmp, topicPath);
|
|
50617
50619
|
}
|
|
50618
|
-
async function
|
|
50619
|
-
const model = opts.model ?? DEFAULT_SUMMARIZER_MODEL;
|
|
50620
|
+
async function buildHandoff(opts) {
|
|
50620
50621
|
const maxTurns = opts.maxTurns ?? DEFAULT_MAX_TURNS;
|
|
50621
|
-
const timeoutMs = opts.timeoutMs ?? DEFAULT_TIMEOUT_MS2;
|
|
50622
50622
|
const turns = extractTurnsFromJsonl(opts.jsonlPath, maxTurns);
|
|
50623
50623
|
if (turns.length === 0) {
|
|
50624
50624
|
return "no-turns";
|
|
50625
50625
|
}
|
|
50626
|
-
const
|
|
50627
|
-
const
|
|
50628
|
-
let raw;
|
|
50629
|
-
try {
|
|
50630
|
-
raw = await runner.run({
|
|
50631
|
-
model,
|
|
50632
|
-
system: prompt.system,
|
|
50633
|
-
user: prompt.user,
|
|
50634
|
-
timeoutMs
|
|
50635
|
-
});
|
|
50636
|
-
} catch (err) {
|
|
50637
|
-
process.stderr.write(`handoff-summarizer: claude -p call failed \u2014 ${errMsg(err)}
|
|
50638
|
-
`);
|
|
50639
|
-
return "cli-error";
|
|
50640
|
-
}
|
|
50641
|
-
raw = raw.trim();
|
|
50642
|
-
if (!raw) {
|
|
50643
|
-
return "empty-response";
|
|
50644
|
-
}
|
|
50645
|
-
const parsed = parseHandoffResponse(raw);
|
|
50646
|
-
if (!parsed) {
|
|
50647
|
-
process.stderr.write(`handoff-summarizer: response missing '## Topic:' header; skipping
|
|
50648
|
-
`);
|
|
50649
|
-
return "parse-error";
|
|
50650
|
-
}
|
|
50626
|
+
const briefing = formatTranscriptTail(turns);
|
|
50627
|
+
const topic = deriveTopic(turns);
|
|
50651
50628
|
try {
|
|
50652
|
-
writeSidecarsAtomic(opts.agentDir,
|
|
50629
|
+
writeSidecarsAtomic(opts.agentDir, briefing, topic);
|
|
50653
50630
|
} catch (err) {
|
|
50654
|
-
process.stderr.write(`handoff
|
|
50631
|
+
process.stderr.write(`handoff: sidecar write failed \u2014 ${errMsg(err)}
|
|
50655
50632
|
`);
|
|
50656
50633
|
return "write-error";
|
|
50657
50634
|
}
|
|
50658
|
-
await mirrorToHindsight(
|
|
50635
|
+
await mirrorToHindsight(briefing, opts).catch(() => {});
|
|
50659
50636
|
return "ok";
|
|
50660
50637
|
}
|
|
50661
|
-
function buildHandoffClaudeArgs(opts) {
|
|
50662
|
-
return [
|
|
50663
|
-
"-p",
|
|
50664
|
-
opts.user,
|
|
50665
|
-
"--model",
|
|
50666
|
-
opts.model,
|
|
50667
|
-
"--append-system-prompt",
|
|
50668
|
-
opts.system,
|
|
50669
|
-
"--no-session-persistence",
|
|
50670
|
-
"--strict-mcp-config"
|
|
50671
|
-
];
|
|
50672
|
-
}
|
|
50673
|
-
var defaultClaudeCliRunner = {
|
|
50674
|
-
async run({ model, system, user, timeoutMs }) {
|
|
50675
|
-
return await new Promise((resolve14, reject) => {
|
|
50676
|
-
const args = buildHandoffClaudeArgs({ model, system, user });
|
|
50677
|
-
const env2 = {
|
|
50678
|
-
...process.env,
|
|
50679
|
-
FORCE_COLOR: "0",
|
|
50680
|
-
NO_COLOR: "1"
|
|
50681
|
-
};
|
|
50682
|
-
const child = spawn2("claude", args, {
|
|
50683
|
-
stdio: ["ignore", "pipe", "pipe"],
|
|
50684
|
-
env: env2
|
|
50685
|
-
});
|
|
50686
|
-
let stdout = "";
|
|
50687
|
-
let stderr = "";
|
|
50688
|
-
const timer = setTimeout(() => {
|
|
50689
|
-
child.kill("SIGTERM");
|
|
50690
|
-
reject(new Error(`timeout after ${timeoutMs}ms`));
|
|
50691
|
-
}, timeoutMs);
|
|
50692
|
-
child.stdout.on("data", (d) => {
|
|
50693
|
-
stdout += d.toString("utf-8");
|
|
50694
|
-
});
|
|
50695
|
-
child.stderr.on("data", (d) => {
|
|
50696
|
-
stderr += d.toString("utf-8");
|
|
50697
|
-
});
|
|
50698
|
-
child.on("error", (err) => {
|
|
50699
|
-
clearTimeout(timer);
|
|
50700
|
-
reject(err);
|
|
50701
|
-
});
|
|
50702
|
-
child.on("close", (code) => {
|
|
50703
|
-
clearTimeout(timer);
|
|
50704
|
-
if (code === 0) {
|
|
50705
|
-
resolve14(stdout);
|
|
50706
|
-
} else {
|
|
50707
|
-
const tail = stderr.trim().split(`
|
|
50708
|
-
`).slice(-3).join(" | ");
|
|
50709
|
-
reject(new Error(`claude -p exited ${code}: ${tail || "(no stderr)"}`));
|
|
50710
|
-
}
|
|
50711
|
-
});
|
|
50712
|
-
});
|
|
50713
|
-
}
|
|
50714
|
-
};
|
|
50715
50638
|
function errMsg(err) {
|
|
50716
50639
|
if (err && typeof err === "object" && "message" in err) {
|
|
50717
50640
|
return String(err.message);
|
|
@@ -50742,7 +50665,7 @@ async function mirrorToHindsight(briefing, opts) {
|
|
|
50742
50665
|
body: JSON.stringify(body)
|
|
50743
50666
|
});
|
|
50744
50667
|
} catch (err) {
|
|
50745
|
-
process.stderr.write(`handoff
|
|
50668
|
+
process.stderr.write(`handoff: hindsight mirror failed \u2014 ${errMsg(err)}
|
|
50746
50669
|
`);
|
|
50747
50670
|
}
|
|
50748
50671
|
}
|
|
@@ -50754,7 +50677,7 @@ function findLatestSessionJsonl(claudeConfigDir) {
|
|
|
50754
50677
|
const walk = (dir) => {
|
|
50755
50678
|
let entries;
|
|
50756
50679
|
try {
|
|
50757
|
-
entries =
|
|
50680
|
+
entries = readdirSync7(dir);
|
|
50758
50681
|
} catch {
|
|
50759
50682
|
return;
|
|
50760
50683
|
}
|
|
@@ -51708,7 +51631,7 @@ function enforceUsername(username, agentSlug, expectedUsername, loose, warn) {
|
|
|
51708
51631
|
}
|
|
51709
51632
|
|
|
51710
51633
|
// src/setup/profile-picker.ts
|
|
51711
|
-
import { existsSync as existsSync20, readdirSync as
|
|
51634
|
+
import { existsSync as existsSync20, readdirSync as readdirSync10, statSync as statSync13 } from "node:fs";
|
|
51712
51635
|
import { resolve as resolve16 } from "node:path";
|
|
51713
51636
|
var PROFILE_GLOSSES = {
|
|
51714
51637
|
default: "minimal baseline \u2014 generic chat helper, no opinion.",
|
|
@@ -51724,7 +51647,7 @@ function defaultListProfileSkills(profileName) {
|
|
|
51724
51647
|
return [];
|
|
51725
51648
|
}
|
|
51726
51649
|
try {
|
|
51727
|
-
return
|
|
51650
|
+
return readdirSync10(skillsDir).filter((entry) => {
|
|
51728
51651
|
try {
|
|
51729
51652
|
return statSync13(resolve16(skillsDir, entry)).isDirectory();
|
|
51730
51653
|
} catch {
|
|
@@ -55390,7 +55313,7 @@ init_source();
|
|
|
55390
55313
|
init_loader();
|
|
55391
55314
|
init_vault();
|
|
55392
55315
|
init_hindsight();
|
|
55393
|
-
import { readFileSync as readFileSync26, writeFileSync as writeFileSync16, copyFileSync as copyFileSync6, existsSync as existsSync30, readdirSync as
|
|
55316
|
+
import { readFileSync as readFileSync26, writeFileSync as writeFileSync16, copyFileSync as copyFileSync6, existsSync as existsSync30, readdirSync as readdirSync14, statSync as statSync17 } from "node:fs";
|
|
55394
55317
|
import { execFileSync as execFileSync12 } from "node:child_process";
|
|
55395
55318
|
import { join as join23 } from "node:path";
|
|
55396
55319
|
import { homedir as homedir10 } from "node:os";
|
|
@@ -55415,7 +55338,7 @@ function findClaudeTranscripts() {
|
|
|
55415
55338
|
const walk = (dir) => {
|
|
55416
55339
|
let entries;
|
|
55417
55340
|
try {
|
|
55418
|
-
entries =
|
|
55341
|
+
entries = readdirSync14(dir);
|
|
55419
55342
|
} catch {
|
|
55420
55343
|
return;
|
|
55421
55344
|
}
|
|
@@ -55774,13 +55697,13 @@ init_loader();
|
|
|
55774
55697
|
init_loader();
|
|
55775
55698
|
init_client();
|
|
55776
55699
|
import { readFileSync as readFileSync31, existsSync as existsSync34, unlinkSync as unlinkSync9 } from "node:fs";
|
|
55777
|
-
import { spawn as
|
|
55700
|
+
import { spawn as spawn3 } from "node:child_process";
|
|
55778
55701
|
|
|
55779
55702
|
// src/vault/broker/server.ts
|
|
55780
55703
|
init_compose();
|
|
55781
55704
|
init_vault();
|
|
55782
55705
|
import * as net3 from "node:net";
|
|
55783
|
-
import { mkdirSync as mkdirSync20, chmodSync as chmodSync7, chownSync, existsSync as existsSync33, readFileSync as readFileSync29, readdirSync as
|
|
55706
|
+
import { mkdirSync as mkdirSync20, chmodSync as chmodSync7, chownSync, existsSync as existsSync33, readFileSync as readFileSync29, readdirSync as readdirSync15, statSync as statSync19, unlinkSync as unlinkSync8, writeFileSync as writeFileSync18, renameSync as renameSync9 } from "node:fs";
|
|
55784
55707
|
import { dirname as dirname6, resolve as resolve24, basename as basename5 } from "node:path";
|
|
55785
55708
|
import * as os4 from "node:os";
|
|
55786
55709
|
import * as path3 from "node:path";
|
|
@@ -56149,7 +56072,7 @@ function createAuditLogger(opts = {}) {
|
|
|
56149
56072
|
// src/vault/grants.ts
|
|
56150
56073
|
import { randomBytes as randomBytes7 } from "node:crypto";
|
|
56151
56074
|
|
|
56152
|
-
// node_modules/.bun/bcryptjs@3.0.3/node_modules/bcryptjs/index.js
|
|
56075
|
+
// ../switchroom-sec-1417/node_modules/.bun/bcryptjs@3.0.3/node_modules/bcryptjs/index.js
|
|
56153
56076
|
import nodeCrypto from "crypto";
|
|
56154
56077
|
var randomFallback = null;
|
|
56155
56078
|
function randomBytes6(len) {
|
|
@@ -59844,7 +59767,7 @@ async function main() {
|
|
|
59844
59767
|
let perAgentTargets = [];
|
|
59845
59768
|
try {
|
|
59846
59769
|
if (existsSync33(perAgentDir)) {
|
|
59847
|
-
const entries =
|
|
59770
|
+
const entries = readdirSync15(perAgentDir, { withFileTypes: true });
|
|
59848
59771
|
const flat = [];
|
|
59849
59772
|
const subdirs = [];
|
|
59850
59773
|
for (const e of entries) {
|
|
@@ -60124,7 +60047,7 @@ function registerVaultBrokerCommand(vaultCmd, program3) {
|
|
|
60124
60047
|
const args = ["vault", "broker", "start", "--foreground"];
|
|
60125
60048
|
if (parentOpts.config)
|
|
60126
60049
|
args.unshift("--config", parentOpts.config);
|
|
60127
|
-
const child =
|
|
60050
|
+
const child = spawn3(process.execPath, [self2, ...args], {
|
|
60128
60051
|
detached: true,
|
|
60129
60052
|
stdio: "ignore"
|
|
60130
60053
|
});
|
|
@@ -60411,11 +60334,11 @@ function levelLabel(level) {
|
|
|
60411
60334
|
function printDiagnostic(d) {
|
|
60412
60335
|
const glyph = levelGlyph(d.level);
|
|
60413
60336
|
const label = levelLabel(d.level);
|
|
60414
|
-
const
|
|
60337
|
+
const firstLine2 = d.message.split(`
|
|
60415
60338
|
`)[0];
|
|
60416
60339
|
const rest = d.message.split(`
|
|
60417
60340
|
`).slice(1);
|
|
60418
|
-
console.log(` ${glyph} [${label}] ${
|
|
60341
|
+
console.log(` ${glyph} [${label}] ${firstLine2}`);
|
|
60419
60342
|
for (const line of rest) {
|
|
60420
60343
|
console.log(` ${source_default.gray(line)}`);
|
|
60421
60344
|
}
|
|
@@ -60810,7 +60733,7 @@ import {
|
|
|
60810
60733
|
fsyncSync as fsyncSync5,
|
|
60811
60734
|
mkdirSync as mkdirSync21,
|
|
60812
60735
|
openSync as openSync9,
|
|
60813
|
-
readdirSync as
|
|
60736
|
+
readdirSync as readdirSync16,
|
|
60814
60737
|
readFileSync as readFileSync33,
|
|
60815
60738
|
renameSync as renameSync10,
|
|
60816
60739
|
statSync as statSync20,
|
|
@@ -60918,7 +60841,7 @@ function listBackupFiles(dir) {
|
|
|
60918
60841
|
return [];
|
|
60919
60842
|
let entries;
|
|
60920
60843
|
try {
|
|
60921
|
-
entries =
|
|
60844
|
+
entries = readdirSync16(dir);
|
|
60922
60845
|
} catch {
|
|
60923
60846
|
return [];
|
|
60924
60847
|
}
|
|
@@ -60941,7 +60864,7 @@ function backupVault(opts) {
|
|
|
60941
60864
|
throw new Error(`vault backup refused: source is not a valid vault envelope: ${validationError}`);
|
|
60942
60865
|
}
|
|
60943
60866
|
mkdirSync21(opts.destDir, { recursive: true, mode: 448 });
|
|
60944
|
-
const dirEntries =
|
|
60867
|
+
const dirEntries = readdirSync16(opts.destDir);
|
|
60945
60868
|
const offender = findAutoUnlockSibling(dirEntries);
|
|
60946
60869
|
if (offender) {
|
|
60947
60870
|
throw new Error(`vault backup refused: destination '${opts.destDir}' contains a file ` + `that looks like an auto-unlock credential ('${offender}'). The ` + `machine-bound auto-unlock blob MUST NOT be co-located with the ` + `encrypted vault \u2014 if they're together in version control, the ` + `passphrase gate is bypassed. Move/remove that file and retry.`);
|
|
@@ -62710,7 +62633,7 @@ import {
|
|
|
62710
62633
|
} from "node:fs";
|
|
62711
62634
|
import { resolve as resolve26, extname, join as join37, relative, dirname as dirname9 } from "node:path";
|
|
62712
62635
|
import { homedir as homedir19 } from "node:os";
|
|
62713
|
-
import { spawn as
|
|
62636
|
+
import { spawn as spawn4 } from "node:child_process";
|
|
62714
62637
|
import { timingSafeEqual as timingSafeEqual2, randomBytes as randomBytes10 } from "node:crypto";
|
|
62715
62638
|
|
|
62716
62639
|
// src/web/api.ts
|
|
@@ -62776,7 +62699,7 @@ function readRecentFires(jsonlPath) {
|
|
|
62776
62699
|
// src/web/api.ts
|
|
62777
62700
|
init_client3();
|
|
62778
62701
|
|
|
62779
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
62702
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
62780
62703
|
import { dirname as dirname7, posix, sep } from "path";
|
|
62781
62704
|
function createModulerModifier() {
|
|
62782
62705
|
const getModuleFromFileName = createGetModuleFromFilename();
|
|
@@ -62812,7 +62735,7 @@ function normalizeWindowsPath(path4) {
|
|
|
62812
62735
|
return path4.replace(/^[A-Z]:/, "").replace(/\\/g, "/");
|
|
62813
62736
|
}
|
|
62814
62737
|
|
|
62815
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
62738
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
62816
62739
|
var normalizeFlagsResponse = (flagsResponse) => {
|
|
62817
62740
|
if ("flags" in flagsResponse) {
|
|
62818
62741
|
const featureFlags = getFlagValuesFromFlags(flagsResponse.flags);
|
|
@@ -62883,7 +62806,7 @@ var parsePayload = (response) => {
|
|
|
62883
62806
|
}
|
|
62884
62807
|
};
|
|
62885
62808
|
|
|
62886
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/gzip.mjs
|
|
62809
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/gzip.mjs
|
|
62887
62810
|
function isGzipSupported() {
|
|
62888
62811
|
return "CompressionStream" in globalThis;
|
|
62889
62812
|
}
|
|
@@ -62903,7 +62826,7 @@ async function gzipCompress(input, isDebug = true) {
|
|
|
62903
62826
|
}
|
|
62904
62827
|
}
|
|
62905
62828
|
|
|
62906
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
62829
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
62907
62830
|
/*! For license information please see uuidv7.mjs.LICENSE.txt */
|
|
62908
62831
|
var DIGITS = "0123456789abcdef";
|
|
62909
62832
|
|
|
@@ -63081,7 +63004,7 @@ var defaultGenerator;
|
|
|
63081
63004
|
var uuidv7 = () => uuidv7obj().toString();
|
|
63082
63005
|
var uuidv7obj = () => (defaultGenerator || (defaultGenerator = new V7Generator)).generate();
|
|
63083
63006
|
|
|
63084
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/types.mjs
|
|
63007
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/types.mjs
|
|
63085
63008
|
var types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedProperty) {
|
|
63086
63009
|
PostHogPersistedProperty["AnonymousId"] = "anonymous_id";
|
|
63087
63010
|
PostHogPersistedProperty["DistinctId"] = "distinct_id";
|
|
@@ -63114,7 +63037,7 @@ var types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedPr
|
|
|
63114
63037
|
return PostHogPersistedProperty;
|
|
63115
63038
|
}({});
|
|
63116
63039
|
|
|
63117
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
63040
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
63118
63041
|
var DEFAULT_BLOCKED_UA_STRS = [
|
|
63119
63042
|
"amazonbot",
|
|
63120
63043
|
"amazonproductbot",
|
|
@@ -63203,7 +63126,7 @@ var isBlockedUA = function(ua, customBlockedUserAgents = []) {
|
|
|
63203
63126
|
return uaLower.indexOf(blockedUaLower) !== -1;
|
|
63204
63127
|
});
|
|
63205
63128
|
};
|
|
63206
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
63129
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
63207
63130
|
var nativeIsArray = Array.isArray;
|
|
63208
63131
|
var ObjProto = Object.prototype;
|
|
63209
63132
|
var type_utils_hasOwnProperty = ObjProto.hasOwnProperty;
|
|
@@ -63240,7 +63163,7 @@ function isInstanceOf(candidate, base) {
|
|
|
63240
63163
|
}
|
|
63241
63164
|
}
|
|
63242
63165
|
|
|
63243
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
63166
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
63244
63167
|
function clampToRange(value, min, max, logger, fallbackValue) {
|
|
63245
63168
|
if (min > max) {
|
|
63246
63169
|
logger.warn("min cannot be greater than max.");
|
|
@@ -63260,7 +63183,7 @@ function clampToRange(value, min, max, logger, fallbackValue) {
|
|
|
63260
63183
|
return clampToRange(fallbackValue || max, min, max, logger);
|
|
63261
63184
|
}
|
|
63262
63185
|
|
|
63263
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
63186
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
63264
63187
|
var ONE_DAY_IN_MS = 86400000;
|
|
63265
63188
|
|
|
63266
63189
|
class BucketedRateLimiter {
|
|
@@ -63304,7 +63227,7 @@ class BucketedRateLimiter {
|
|
|
63304
63227
|
this._buckets = {};
|
|
63305
63228
|
}
|
|
63306
63229
|
}
|
|
63307
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
63230
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
63308
63231
|
class PromiseQueue {
|
|
63309
63232
|
add(promise) {
|
|
63310
63233
|
const promiseUUID = uuidv7();
|
|
@@ -63330,7 +63253,7 @@ class PromiseQueue {
|
|
|
63330
63253
|
this.promiseByIds = {};
|
|
63331
63254
|
}
|
|
63332
63255
|
}
|
|
63333
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/logger.mjs
|
|
63256
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/logger.mjs
|
|
63334
63257
|
function createConsole(consoleLike = console) {
|
|
63335
63258
|
const lockedMethods = {
|
|
63336
63259
|
log: consoleLike.log.bind(consoleLike),
|
|
@@ -63368,7 +63291,7 @@ var passThrough = (fn) => fn();
|
|
|
63368
63291
|
function createLogger(prefix, maybeCall = passThrough) {
|
|
63369
63292
|
return _createLogger(prefix, maybeCall, createConsole());
|
|
63370
63293
|
}
|
|
63371
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
63294
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
63372
63295
|
var MOBILE = "Mobile";
|
|
63373
63296
|
var IOS = "iOS";
|
|
63374
63297
|
var ANDROID = "Android";
|
|
@@ -63625,7 +63548,7 @@ var osMatchers = [
|
|
|
63625
63548
|
]
|
|
63626
63549
|
];
|
|
63627
63550
|
|
|
63628
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/index.mjs
|
|
63551
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/index.mjs
|
|
63629
63552
|
var STRING_FORMAT = "utf8";
|
|
63630
63553
|
function assert(truthyValue, message) {
|
|
63631
63554
|
if (!truthyValue || typeof truthyValue != "string" || isEmpty(truthyValue))
|
|
@@ -63673,7 +63596,7 @@ function allSettled(promises) {
|
|
|
63673
63596
|
reason
|
|
63674
63597
|
}))));
|
|
63675
63598
|
}
|
|
63676
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/eventemitter.mjs
|
|
63599
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/eventemitter.mjs
|
|
63677
63600
|
class SimpleEventEmitter {
|
|
63678
63601
|
constructor() {
|
|
63679
63602
|
this.events = {};
|
|
@@ -63695,7 +63618,7 @@ class SimpleEventEmitter {
|
|
|
63695
63618
|
}
|
|
63696
63619
|
}
|
|
63697
63620
|
|
|
63698
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
63621
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
63699
63622
|
class PostHogFetchHttpError extends Error {
|
|
63700
63623
|
constructor(response, reqByteLength) {
|
|
63701
63624
|
super("HTTP error while fetching PostHog: status=" + response.status + ", reqByteLength=" + reqByteLength), this.response = response, this.reqByteLength = reqByteLength, this.name = "PostHogFetchHttpError";
|
|
@@ -64410,7 +64333,7 @@ class PostHogCoreStateless {
|
|
|
64410
64333
|
return this.shutdownPromise;
|
|
64411
64334
|
}
|
|
64412
64335
|
}
|
|
64413
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
64336
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
64414
64337
|
var exports_error_tracking = {};
|
|
64415
64338
|
__export(exports_error_tracking, {
|
|
64416
64339
|
winjsStackLineParser: () => winjsStackLineParser,
|
|
@@ -64434,7 +64357,7 @@ __export(exports_error_tracking, {
|
|
|
64434
64357
|
DOMExceptionCoercer: () => DOMExceptionCoercer
|
|
64435
64358
|
});
|
|
64436
64359
|
|
|
64437
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
64360
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
64438
64361
|
var parsedStackResults;
|
|
64439
64362
|
var lastKeysCount;
|
|
64440
64363
|
var cachedFilenameChunkIds;
|
|
@@ -64473,7 +64396,7 @@ function getFilenameToChunkIdMap(stackParser) {
|
|
|
64473
64396
|
return cachedFilenameChunkIds;
|
|
64474
64397
|
}
|
|
64475
64398
|
|
|
64476
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
64399
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
64477
64400
|
var MAX_CAUSE_RECURSION = 4;
|
|
64478
64401
|
|
|
64479
64402
|
class ErrorPropertiesBuilder {
|
|
@@ -64595,7 +64518,7 @@ class ErrorPropertiesBuilder {
|
|
|
64595
64518
|
return context;
|
|
64596
64519
|
}
|
|
64597
64520
|
}
|
|
64598
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
64521
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
64599
64522
|
var UNKNOWN_FUNCTION = "?";
|
|
64600
64523
|
function createFrame(platform, filename, func, lineno, colno) {
|
|
64601
64524
|
const frame = {
|
|
@@ -64611,7 +64534,7 @@ function createFrame(platform, filename, func, lineno, colno) {
|
|
|
64611
64534
|
return frame;
|
|
64612
64535
|
}
|
|
64613
64536
|
|
|
64614
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
64537
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
64615
64538
|
var extractSafariExtensionDetails = (func, filename) => {
|
|
64616
64539
|
const isSafariExtension = func.indexOf("safari-extension") !== -1;
|
|
64617
64540
|
const isSafariWebExtension = func.indexOf("safari-web-extension") !== -1;
|
|
@@ -64624,7 +64547,7 @@ var extractSafariExtensionDetails = (func, filename) => {
|
|
|
64624
64547
|
];
|
|
64625
64548
|
};
|
|
64626
64549
|
|
|
64627
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
64550
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
64628
64551
|
var chromeRegexNoFnName = /^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i;
|
|
64629
64552
|
var chromeRegex = /^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i;
|
|
64630
64553
|
var chromeEvalRegex = /\((\S*)(?::(\d+))(?::(\d+))\)/;
|
|
@@ -64650,7 +64573,7 @@ var chromeStackLineParser = (line, platform) => {
|
|
|
64650
64573
|
}
|
|
64651
64574
|
};
|
|
64652
64575
|
|
|
64653
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
64576
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
64654
64577
|
var geckoREgex = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i;
|
|
64655
64578
|
var geckoEvalRegex = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i;
|
|
64656
64579
|
var geckoStackLineParser = (line, platform) => {
|
|
@@ -64673,14 +64596,14 @@ var geckoStackLineParser = (line, platform) => {
|
|
|
64673
64596
|
}
|
|
64674
64597
|
};
|
|
64675
64598
|
|
|
64676
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
64599
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
64677
64600
|
var winjsRegex = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:[-a-z]+):.*?):(\d+)(?::(\d+))?\)?\s*$/i;
|
|
64678
64601
|
var winjsStackLineParser = (line, platform) => {
|
|
64679
64602
|
const parts = winjsRegex.exec(line);
|
|
64680
64603
|
return parts ? createFrame(platform, parts[2], parts[1] || UNKNOWN_FUNCTION, +parts[3], parts[4] ? +parts[4] : undefined) : undefined;
|
|
64681
64604
|
};
|
|
64682
64605
|
|
|
64683
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
64606
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
64684
64607
|
var opera10Regex = / line (\d+).*script (?:in )?(\S+)(?:: in function (\S+))?$/i;
|
|
64685
64608
|
var opera10StackLineParser = (line, platform) => {
|
|
64686
64609
|
const parts = opera10Regex.exec(line);
|
|
@@ -64692,7 +64615,7 @@ var opera11StackLineParser = (line, platform) => {
|
|
|
64692
64615
|
return parts ? createFrame(platform, parts[5], parts[3] || parts[4] || UNKNOWN_FUNCTION, +parts[1], +parts[2]) : undefined;
|
|
64693
64616
|
};
|
|
64694
64617
|
|
|
64695
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
64618
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
64696
64619
|
var FILENAME_MATCH = /^\s*[-]{4,}$/;
|
|
64697
64620
|
var FULL_MATCH = /at (?:async )?(?:(.+?)\s+\()?(?:(.+):(\d+):(\d+)?|([^)]+))\)?/;
|
|
64698
64621
|
var nodeStackLineParser = (line, platform) => {
|
|
@@ -64761,7 +64684,7 @@ function _parseIntOrUndefined(input) {
|
|
|
64761
64684
|
return parseInt(input || "", 10) || undefined;
|
|
64762
64685
|
}
|
|
64763
64686
|
|
|
64764
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
64687
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
64765
64688
|
var WEBPACK_ERROR_REGEXP = /\(error: (.*)\)/;
|
|
64766
64689
|
var STACKTRACE_FRAME_LIMIT = 50;
|
|
64767
64690
|
function reverseAndStripFrames(stack) {
|
|
@@ -64806,7 +64729,7 @@ function createStackParser(platform, ...parsers) {
|
|
|
64806
64729
|
return reverseAndStripFrames(frames);
|
|
64807
64730
|
};
|
|
64808
64731
|
}
|
|
64809
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
64732
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
64810
64733
|
class DOMExceptionCoercer {
|
|
64811
64734
|
match(err) {
|
|
64812
64735
|
return this.isDOMException(err) || this.isDOMError(err);
|
|
@@ -64836,7 +64759,7 @@ class DOMExceptionCoercer {
|
|
|
64836
64759
|
return isBuiltin(err, "DOMError");
|
|
64837
64760
|
}
|
|
64838
64761
|
}
|
|
64839
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
64762
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
64840
64763
|
class ErrorCoercer {
|
|
64841
64764
|
match(err) {
|
|
64842
64765
|
return isPlainError(err);
|
|
@@ -64863,7 +64786,7 @@ class ErrorCoercer {
|
|
|
64863
64786
|
return err.stacktrace || err.stack || undefined;
|
|
64864
64787
|
}
|
|
64865
64788
|
}
|
|
64866
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
64789
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
64867
64790
|
class ErrorEventCoercer {
|
|
64868
64791
|
constructor() {}
|
|
64869
64792
|
match(err) {
|
|
@@ -64881,7 +64804,7 @@ class ErrorEventCoercer {
|
|
|
64881
64804
|
return exceptionLike;
|
|
64882
64805
|
}
|
|
64883
64806
|
}
|
|
64884
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
64807
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
64885
64808
|
var ERROR_TYPES_PATTERN = /^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i;
|
|
64886
64809
|
|
|
64887
64810
|
class StringCoercer {
|
|
@@ -64911,7 +64834,7 @@ class StringCoercer {
|
|
|
64911
64834
|
];
|
|
64912
64835
|
}
|
|
64913
64836
|
}
|
|
64914
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
64837
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
64915
64838
|
var severityLevels = [
|
|
64916
64839
|
"fatal",
|
|
64917
64840
|
"error",
|
|
@@ -64921,7 +64844,7 @@ var severityLevels = [
|
|
|
64921
64844
|
"debug"
|
|
64922
64845
|
];
|
|
64923
64846
|
|
|
64924
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
64847
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
64925
64848
|
function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
64926
64849
|
const keys = Object.keys(err);
|
|
64927
64850
|
keys.sort();
|
|
@@ -64938,7 +64861,7 @@ function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
|
64938
64861
|
return "";
|
|
64939
64862
|
}
|
|
64940
64863
|
|
|
64941
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
64864
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
64942
64865
|
class ObjectCoercer {
|
|
64943
64866
|
match(candidate) {
|
|
64944
64867
|
return typeof candidate == "object" && candidate !== null;
|
|
@@ -64991,7 +64914,7 @@ class ObjectCoercer {
|
|
|
64991
64914
|
}
|
|
64992
64915
|
}
|
|
64993
64916
|
}
|
|
64994
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
64917
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
64995
64918
|
class EventCoercer {
|
|
64996
64919
|
match(err) {
|
|
64997
64920
|
return isEvent(err);
|
|
@@ -65006,7 +64929,7 @@ class EventCoercer {
|
|
|
65006
64929
|
};
|
|
65007
64930
|
}
|
|
65008
64931
|
}
|
|
65009
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
64932
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
65010
64933
|
class PrimitiveCoercer {
|
|
65011
64934
|
match(candidate) {
|
|
65012
64935
|
return isPrimitive(candidate);
|
|
@@ -65020,7 +64943,7 @@ class PrimitiveCoercer {
|
|
|
65020
64943
|
};
|
|
65021
64944
|
}
|
|
65022
64945
|
}
|
|
65023
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
64946
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
65024
64947
|
class PromiseRejectionEventCoercer {
|
|
65025
64948
|
match(err) {
|
|
65026
64949
|
return isBuiltin(err, "PromiseRejectionEvent") || this.isCustomEventWrappingRejection(err);
|
|
@@ -65056,7 +64979,7 @@ class PromiseRejectionEventCoercer {
|
|
|
65056
64979
|
return error;
|
|
65057
64980
|
}
|
|
65058
64981
|
}
|
|
65059
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
64982
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
65060
64983
|
class ReduceableCache {
|
|
65061
64984
|
constructor(_maxSize) {
|
|
65062
64985
|
this._maxSize = _maxSize;
|
|
@@ -65081,7 +65004,7 @@ class ReduceableCache {
|
|
|
65081
65004
|
}
|
|
65082
65005
|
}
|
|
65083
65006
|
}
|
|
65084
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
65007
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
65085
65008
|
import { createReadStream } from "node:fs";
|
|
65086
65009
|
import { createInterface as createInterface5 } from "node:readline";
|
|
65087
65010
|
var LRU_FILE_CONTENTS_CACHE = new exports_error_tracking.ReduceableCache(25);
|
|
@@ -65299,7 +65222,7 @@ function snipLine(line, colno) {
|
|
|
65299
65222
|
return newLine;
|
|
65300
65223
|
}
|
|
65301
65224
|
|
|
65302
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
65225
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
65303
65226
|
function makeUncaughtExceptionHandler(captureFn, onFatalFn) {
|
|
65304
65227
|
let calledFatalError = false;
|
|
65305
65228
|
return Object.assign((error) => {
|
|
@@ -65331,7 +65254,7 @@ function addUnhandledRejectionListener(captureFn) {
|
|
|
65331
65254
|
}));
|
|
65332
65255
|
}
|
|
65333
65256
|
|
|
65334
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
65257
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
65335
65258
|
var SHUTDOWN_TIMEOUT = 2000;
|
|
65336
65259
|
|
|
65337
65260
|
class ErrorTracking {
|
|
@@ -65400,10 +65323,10 @@ class ErrorTracking {
|
|
|
65400
65323
|
}
|
|
65401
65324
|
}
|
|
65402
65325
|
|
|
65403
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/version.mjs
|
|
65326
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/version.mjs
|
|
65404
65327
|
var version = "5.29.2";
|
|
65405
65328
|
|
|
65406
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/types.mjs
|
|
65329
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/types.mjs
|
|
65407
65330
|
var FeatureFlagError2 = {
|
|
65408
65331
|
ERRORS_WHILE_COMPUTING: "errors_while_computing_flags",
|
|
65409
65332
|
FLAG_MISSING: "flag_missing",
|
|
@@ -65411,7 +65334,7 @@ var FeatureFlagError2 = {
|
|
|
65411
65334
|
UNKNOWN_ERROR: "unknown_error"
|
|
65412
65335
|
};
|
|
65413
65336
|
|
|
65414
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
65337
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
65415
65338
|
async function hashSHA1(text) {
|
|
65416
65339
|
const subtle = globalThis.crypto?.subtle;
|
|
65417
65340
|
if (!subtle)
|
|
@@ -65421,7 +65344,7 @@ async function hashSHA1(text) {
|
|
|
65421
65344
|
return hashArray.map((byte) => byte.toString(16).padStart(2, "0")).join("");
|
|
65422
65345
|
}
|
|
65423
65346
|
|
|
65424
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
65347
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
65425
65348
|
var SIXTY_SECONDS = 60000;
|
|
65426
65349
|
var LONG_SCALE = 1152921504606847000;
|
|
65427
65350
|
var NULL_VALUES_ALLOWED_OPERATORS = [
|
|
@@ -66295,7 +66218,7 @@ function relativeDateParseForFeatureFlagMatching(value) {
|
|
|
66295
66218
|
}
|
|
66296
66219
|
}
|
|
66297
66220
|
|
|
66298
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/storage-memory.mjs
|
|
66221
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/storage-memory.mjs
|
|
66299
66222
|
class PostHogMemoryStorage {
|
|
66300
66223
|
getProperty(key) {
|
|
66301
66224
|
return this._memoryStorage[key];
|
|
@@ -66308,7 +66231,7 @@ class PostHogMemoryStorage {
|
|
|
66308
66231
|
}
|
|
66309
66232
|
}
|
|
66310
66233
|
|
|
66311
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/client.mjs
|
|
66234
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/client.mjs
|
|
66312
66235
|
var MINIMUM_POLLING_INTERVAL = 100;
|
|
66313
66236
|
var THIRTY_SECONDS = 30000;
|
|
66314
66237
|
var MAX_CACHE_SIZE = 50000;
|
|
@@ -67096,7 +67019,7 @@ class PostHogBackendClient extends PostHogCoreStateless {
|
|
|
67096
67019
|
}
|
|
67097
67020
|
}
|
|
67098
67021
|
|
|
67099
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
67022
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
67100
67023
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
67101
67024
|
|
|
67102
67025
|
class PostHogContext {
|
|
@@ -67127,7 +67050,7 @@ class PostHogContext {
|
|
|
67127
67050
|
}
|
|
67128
67051
|
}
|
|
67129
67052
|
|
|
67130
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
67053
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
67131
67054
|
var NAME = "posthog-node";
|
|
67132
67055
|
function createEventProcessor(_posthog, { organization, projectId, prefix, severityAllowList = [
|
|
67133
67056
|
"error"
|
|
@@ -67195,7 +67118,7 @@ class PostHogSentryIntegration {
|
|
|
67195
67118
|
};
|
|
67196
67119
|
}
|
|
67197
67120
|
}
|
|
67198
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
67121
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
67199
67122
|
ErrorTracking.errorPropertiesBuilder = new exports_error_tracking.ErrorPropertiesBuilder([
|
|
67200
67123
|
new exports_error_tracking.EventCoercer,
|
|
67201
67124
|
new exports_error_tracking.ErrorCoercer,
|
|
@@ -68626,7 +68549,7 @@ function startWebServer(config, port, hostname = "127.0.0.1", configPath) {
|
|
|
68626
68549
|
existing.kill();
|
|
68627
68550
|
ws._logProcess = null;
|
|
68628
68551
|
}
|
|
68629
|
-
const child =
|
|
68552
|
+
const child = spawn4("docker", ["logs", "-f", "--tail", "20", containerName(agentName)], { stdio: ["ignore", "pipe", "pipe"] });
|
|
68630
68553
|
child.on("error", (err) => {
|
|
68631
68554
|
try {
|
|
68632
68555
|
ws.send(JSON.stringify({
|
|
@@ -70233,7 +70156,7 @@ init_helpers();
|
|
|
70233
70156
|
init_loader();
|
|
70234
70157
|
import { resolve as resolve32 } from "node:path";
|
|
70235
70158
|
function registerHandoffCommand(program3) {
|
|
70236
|
-
program3.command("handoff <agent>", { hidden: true }).description("
|
|
70159
|
+
program3.command("handoff <agent>", { hidden: true }).description("Build the agent's session handoff sidecars \u2014 a transcript-tail " + "briefing (.handoff.md) and topic line (.handoff-topic). " + "[internal \u2014 used by the Stop hook]").option("--max-turns <n>", "Max turns kept in the handoff transcript tail", String(DEFAULT_MAX_TURNS)).action(withConfigError(async (agentName, opts) => {
|
|
70237
70160
|
const config = getConfig(program3);
|
|
70238
70161
|
const agentConfig = config.agents[agentName];
|
|
70239
70162
|
if (!agentConfig) {
|
|
@@ -70256,17 +70179,13 @@ function registerHandoffCommand(program3) {
|
|
|
70256
70179
|
`);
|
|
70257
70180
|
return;
|
|
70258
70181
|
}
|
|
70259
|
-
const timeoutMs = Math.max(1, parseInt(opts.timeout, 10)) * 1000;
|
|
70260
70182
|
const maxTurns = Math.max(1, parseInt(opts.maxTurns, 10));
|
|
70261
|
-
const model = continuity?.summarizer_model ?? opts.model;
|
|
70262
70183
|
const cappedMaxTurns = continuity?.max_turns_in_briefing ?? maxTurns;
|
|
70263
|
-
const status = await
|
|
70184
|
+
const status = await buildHandoff({
|
|
70264
70185
|
jsonlPath: jsonl,
|
|
70265
70186
|
agentDir,
|
|
70266
70187
|
agentName,
|
|
70267
|
-
|
|
70268
|
-
maxTurns: cappedMaxTurns,
|
|
70269
|
-
timeoutMs
|
|
70188
|
+
maxTurns: cappedMaxTurns
|
|
70270
70189
|
});
|
|
70271
70190
|
process.stderr.write(`handoff: ${status}
|
|
70272
70191
|
`);
|
|
@@ -70279,7 +70198,7 @@ import {
|
|
|
70279
70198
|
existsSync as existsSync53,
|
|
70280
70199
|
mkdirSync as mkdirSync29,
|
|
70281
70200
|
openSync as openSync11,
|
|
70282
|
-
readdirSync as
|
|
70201
|
+
readdirSync as readdirSync20,
|
|
70283
70202
|
readFileSync as readFileSync48,
|
|
70284
70203
|
renameSync as renameSync11,
|
|
70285
70204
|
statSync as statSync24,
|
|
@@ -70768,7 +70687,7 @@ var TMP_PREFIX = `${ISSUES_FILE}.tmp-`;
|
|
|
70768
70687
|
function sweepOrphanTmpFiles(stateDir) {
|
|
70769
70688
|
let entries;
|
|
70770
70689
|
try {
|
|
70771
|
-
entries =
|
|
70690
|
+
entries = readdirSync20(stateDir);
|
|
70772
70691
|
} catch {
|
|
70773
70692
|
return;
|
|
70774
70693
|
}
|
|
@@ -72341,7 +72260,7 @@ function registerSoulCommand(program3) {
|
|
|
72341
72260
|
// src/cli/debug.ts
|
|
72342
72261
|
init_helpers();
|
|
72343
72262
|
init_loader();
|
|
72344
|
-
import { existsSync as existsSync59, readFileSync as readFileSync52, readdirSync as
|
|
72263
|
+
import { existsSync as existsSync59, readFileSync as readFileSync52, readdirSync as readdirSync21, statSync as statSync25 } from "node:fs";
|
|
72345
72264
|
import { resolve as resolve37, join as join53 } from "node:path";
|
|
72346
72265
|
import { createHash as createHash12 } from "node:crypto";
|
|
72347
72266
|
init_merge();
|
|
@@ -72360,7 +72279,7 @@ function findLatestTranscriptJsonl(claudeConfigDir) {
|
|
|
72360
72279
|
if (!existsSync59(projectsDir))
|
|
72361
72280
|
return;
|
|
72362
72281
|
try {
|
|
72363
|
-
const entries =
|
|
72282
|
+
const entries = readdirSync21(projectsDir, { withFileTypes: true });
|
|
72364
72283
|
let latest;
|
|
72365
72284
|
for (const entry of entries) {
|
|
72366
72285
|
if (!entry.isDirectory())
|
|
@@ -72598,7 +72517,7 @@ import {
|
|
|
72598
72517
|
mkdirSync as mkdirSync32,
|
|
72599
72518
|
writeFileSync as writeFileSync29,
|
|
72600
72519
|
readFileSync as readFileSync53,
|
|
72601
|
-
readdirSync as
|
|
72520
|
+
readdirSync as readdirSync22,
|
|
72602
72521
|
unlinkSync as unlinkSync12,
|
|
72603
72522
|
existsSync as existsSync60,
|
|
72604
72523
|
renameSync as renameSync12
|
|
@@ -72641,7 +72560,7 @@ function listRecords() {
|
|
|
72641
72560
|
ensureDir2();
|
|
72642
72561
|
const dir = registryDir();
|
|
72643
72562
|
const records = [];
|
|
72644
|
-
for (const entry of
|
|
72563
|
+
for (const entry of readdirSync22(dir)) {
|
|
72645
72564
|
if (!entry.endsWith(".json"))
|
|
72646
72565
|
continue;
|
|
72647
72566
|
const id = entry.slice(0, -5);
|
|
@@ -72988,7 +72907,7 @@ init_scaffold_integration();
|
|
|
72988
72907
|
import {
|
|
72989
72908
|
chmodSync as chmodSync9,
|
|
72990
72909
|
mkdirSync as mkdirSync34,
|
|
72991
|
-
readdirSync as
|
|
72910
|
+
readdirSync as readdirSync23,
|
|
72992
72911
|
rmSync as rmSync15,
|
|
72993
72912
|
writeFileSync as writeFileSync30
|
|
72994
72913
|
} from "node:fs";
|
|
@@ -73161,7 +73080,7 @@ function resolveCredentialsDir(env2) {
|
|
|
73161
73080
|
function writeSeedFile(dir, email, seed) {
|
|
73162
73081
|
mkdirSync34(dir, { recursive: true, mode: 448 });
|
|
73163
73082
|
chmodSync9(dir, 448);
|
|
73164
|
-
for (const name of
|
|
73083
|
+
for (const name of readdirSync23(dir)) {
|
|
73165
73084
|
rmSync15(join56(dir, name), { force: true, recursive: true });
|
|
73166
73085
|
}
|
|
73167
73086
|
const filename = encodeCredentialsFilename(email);
|
|
@@ -73281,9 +73200,9 @@ async function runDriveMcpLauncher(opts) {
|
|
|
73281
73200
|
const tier = opts.tier ?? configSecrets.tier;
|
|
73282
73201
|
const args = buildUvxArgs(tier);
|
|
73283
73202
|
const env2 = buildChildEnv(process.env, credentialsDir, brokerCreds.accountEmail);
|
|
73284
|
-
const { spawn:
|
|
73203
|
+
const { spawn: spawn5 } = await import("node:child_process");
|
|
73285
73204
|
const os5 = await import("node:os");
|
|
73286
|
-
const child =
|
|
73205
|
+
const child = spawn5("uvx", args, {
|
|
73287
73206
|
stdio: ["pipe", "pipe", "inherit"],
|
|
73288
73207
|
env: env2
|
|
73289
73208
|
});
|
|
@@ -73318,7 +73237,7 @@ function registerDriveMcpLauncherCommand(program3) {
|
|
|
73318
73237
|
|
|
73319
73238
|
// src/cli/apply.ts
|
|
73320
73239
|
init_source();
|
|
73321
|
-
import { accessSync as accessSync3, constants as fsConstants6, copyFileSync as copyFileSync11, existsSync as existsSync67, mkdirSync as mkdirSync36, readdirSync as
|
|
73240
|
+
import { accessSync as accessSync3, constants as fsConstants6, copyFileSync as copyFileSync11, existsSync as existsSync67, mkdirSync as mkdirSync36, readdirSync as readdirSync25, renameSync as renameSync13, writeFileSync as writeFileSync32 } from "node:fs";
|
|
73322
73241
|
import { mkdir, writeFile } from "node:fs/promises";
|
|
73323
73242
|
import { spawnSync as childSpawnSync } from "node:child_process";
|
|
73324
73243
|
import readline from "node:readline";
|
|
@@ -73875,7 +73794,7 @@ import {
|
|
|
73875
73794
|
chownSync as chownSync2,
|
|
73876
73795
|
existsSync as existsSync66,
|
|
73877
73796
|
lstatSync as lstatSync7,
|
|
73878
|
-
readdirSync as
|
|
73797
|
+
readdirSync as readdirSync24,
|
|
73879
73798
|
realpathSync as realpathSync6,
|
|
73880
73799
|
statSync as statSync26
|
|
73881
73800
|
} from "node:fs";
|
|
@@ -73931,7 +73850,7 @@ function restoreOperatorOwnership(home2, operatorUid, deps = {}) {
|
|
|
73931
73850
|
});
|
|
73932
73851
|
const readdir2 = deps.readdir ?? ((p) => {
|
|
73933
73852
|
try {
|
|
73934
|
-
return
|
|
73853
|
+
return readdirSync24(p);
|
|
73935
73854
|
} catch {
|
|
73936
73855
|
return [];
|
|
73937
73856
|
}
|
|
@@ -73977,7 +73896,7 @@ function resolveVaultBindMountDir(homeDir, ctx) {
|
|
|
73977
73896
|
function inspectVaultBindMountDir(vaultDir) {
|
|
73978
73897
|
if (!existsSync67(vaultDir))
|
|
73979
73898
|
return { kind: "missing" };
|
|
73980
|
-
const entries =
|
|
73899
|
+
const entries = readdirSync25(vaultDir);
|
|
73981
73900
|
const unknown = [];
|
|
73982
73901
|
for (const name of entries) {
|
|
73983
73902
|
if (KNOWN_VAULT_ARTIFACT_NAMES.has(name))
|
|
@@ -74547,7 +74466,7 @@ function runRedactStdin() {
|
|
|
74547
74466
|
}
|
|
74548
74467
|
|
|
74549
74468
|
// src/cli/status-ask.ts
|
|
74550
|
-
import { readFileSync as readFileSync55, existsSync as existsSync68, readdirSync as
|
|
74469
|
+
import { readFileSync as readFileSync55, existsSync as existsSync68, readdirSync as readdirSync26 } from "node:fs";
|
|
74551
74470
|
import { join as join61 } from "node:path";
|
|
74552
74471
|
import { homedir as homedir34 } from "node:os";
|
|
74553
74472
|
|
|
@@ -74891,7 +74810,7 @@ function resolveSources(explicitPath) {
|
|
|
74891
74810
|
const sources = [];
|
|
74892
74811
|
let entries;
|
|
74893
74812
|
try {
|
|
74894
|
-
entries =
|
|
74813
|
+
entries = readdirSync26(agentsDir);
|
|
74895
74814
|
} catch {
|
|
74896
74815
|
return [];
|
|
74897
74816
|
}
|
|
@@ -75179,7 +75098,7 @@ import {
|
|
|
75179
75098
|
fsyncSync as fsyncSync6,
|
|
75180
75099
|
mkdirSync as mkdirSync38,
|
|
75181
75100
|
openSync as openSync13,
|
|
75182
|
-
readdirSync as
|
|
75101
|
+
readdirSync as readdirSync27,
|
|
75183
75102
|
readFileSync as readFileSync57,
|
|
75184
75103
|
renameSync as renameSync14,
|
|
75185
75104
|
statSync as statSync27,
|
|
@@ -75299,7 +75218,7 @@ function listSkillsOverlayEntries(agent, opts = {}) {
|
|
|
75299
75218
|
if (!existsSync70(paths.skillsDir))
|
|
75300
75219
|
return [];
|
|
75301
75220
|
const out = [];
|
|
75302
|
-
for (const name of
|
|
75221
|
+
for (const name of readdirSync27(paths.skillsDir)) {
|
|
75303
75222
|
if (!/\.ya?ml$/i.test(name))
|
|
75304
75223
|
continue;
|
|
75305
75224
|
const full = join63(paths.skillsDir, name);
|
|
@@ -75326,7 +75245,7 @@ function listOverlayEntries(agent, opts = {}) {
|
|
|
75326
75245
|
if (!existsSync70(paths.scheduleDir))
|
|
75327
75246
|
return [];
|
|
75328
75247
|
const out = [];
|
|
75329
|
-
for (const name of
|
|
75248
|
+
for (const name of readdirSync27(paths.scheduleDir)) {
|
|
75330
75249
|
if (!/\.ya?ml$/i.test(name))
|
|
75331
75250
|
continue;
|
|
75332
75251
|
const full = join63(paths.scheduleDir, name);
|
|
@@ -75478,7 +75397,7 @@ import {
|
|
|
75478
75397
|
fsyncSync as fsyncSync7,
|
|
75479
75398
|
mkdirSync as mkdirSync39,
|
|
75480
75399
|
openSync as openSync14,
|
|
75481
|
-
readdirSync as
|
|
75400
|
+
readdirSync as readdirSync28,
|
|
75482
75401
|
readFileSync as readFileSync58,
|
|
75483
75402
|
renameSync as renameSync15,
|
|
75484
75403
|
unlinkSync as unlinkSync15,
|
|
@@ -75534,7 +75453,7 @@ function listPendingScheduleEntries(agent, opts = {}) {
|
|
|
75534
75453
|
if (!existsSync71(dir))
|
|
75535
75454
|
return [];
|
|
75536
75455
|
const out = [];
|
|
75537
|
-
for (const name of
|
|
75456
|
+
for (const name of readdirSync28(dir).sort()) {
|
|
75538
75457
|
if (!name.endsWith(".meta.json"))
|
|
75539
75458
|
continue;
|
|
75540
75459
|
const stageId = name.slice(0, -".meta.json".length);
|
|
@@ -76272,7 +76191,7 @@ init_helpers();
|
|
|
76272
76191
|
init_loader();
|
|
76273
76192
|
import {
|
|
76274
76193
|
existsSync as existsSync75,
|
|
76275
|
-
readdirSync as
|
|
76194
|
+
readdirSync as readdirSync29,
|
|
76276
76195
|
readFileSync as readFileSync61,
|
|
76277
76196
|
renameSync as renameSync16,
|
|
76278
76197
|
statSync as statSync28,
|
|
@@ -76291,7 +76210,7 @@ function planCronUnitRenames(agentsDir, agents) {
|
|
|
76291
76210
|
continue;
|
|
76292
76211
|
let entries;
|
|
76293
76212
|
try {
|
|
76294
|
-
entries =
|
|
76213
|
+
entries = readdirSync29(telegramDir);
|
|
76295
76214
|
} catch {
|
|
76296
76215
|
continue;
|
|
76297
76216
|
}
|
|
@@ -76446,7 +76365,7 @@ function registerMigrateCommand(program3) {
|
|
|
76446
76365
|
// src/cli/hostd.ts
|
|
76447
76366
|
init_source();
|
|
76448
76367
|
init_helpers();
|
|
76449
|
-
import { existsSync as existsSync76, mkdirSync as mkdirSync40, readdirSync as
|
|
76368
|
+
import { existsSync as existsSync76, mkdirSync as mkdirSync40, readdirSync as readdirSync30, readFileSync as readFileSync62, writeFileSync as writeFileSync34, statSync as statSync29, copyFileSync as copyFileSync12 } from "node:fs";
|
|
76450
76369
|
import { homedir as homedir36 } from "node:os";
|
|
76451
76370
|
import { join as join67 } from "node:path";
|
|
76452
76371
|
import { spawnSync as spawnSync11 } from "node:child_process";
|
|
@@ -76647,7 +76566,7 @@ function doStatus() {
|
|
|
76647
76566
|
if (existsSync76(dir)) {
|
|
76648
76567
|
const entries = [];
|
|
76649
76568
|
try {
|
|
76650
|
-
for (const name of
|
|
76569
|
+
for (const name of readdirSync30(dir)) {
|
|
76651
76570
|
if (name === "docker-compose.yml" || name.startsWith("docker-compose.yml."))
|
|
76652
76571
|
continue;
|
|
76653
76572
|
const sockPath = join67(dir, name, "sock");
|