switchroom 0.13.4 → 0.13.7
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 +85 -80
- package/dist/auth-broker/index.js +85 -80
- package/dist/cli/drive-write-pretool.mjs +10 -10
- package/dist/cli/skill-validate-pretool.mjs +72 -72
- package/dist/cli/switchroom.js +430 -360
- package/dist/host-control/main.js +501 -126
- package/dist/vault/approvals/kernel-server.js +88 -83
- package/dist/vault/broker/server.js +89 -84
- package/package.json +1 -1
- package/profiles/_shared/telegram-style.md.hbs +1 -1
- package/profiles/_shared/vault-protocol.md.hbs +12 -0
- package/telegram-plugin/dist/bridge/bridge.js +136 -112
- package/telegram-plugin/dist/gateway/gateway.js +255 -195
- package/telegram-plugin/dist/server.js +184 -160
- package/telegram-plugin/gateway/gateway.ts +46 -1
- package/telegram-plugin/model-unavailable.ts +4 -0
- package/telegram-plugin/runtime-metrics.ts +14 -8
- package/telegram-plugin/session-tail.ts +53 -0
- package/telegram-plugin/silence-poke.ts +49 -1
- package/telegram-plugin/tests/model-unavailable.test.ts +9 -0
- package/telegram-plugin/tests/operator-events-session-tail.test.ts +43 -0
- package/telegram-plugin/tests/silence-poke.test.ts +135 -3
- 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,14 +13513,14 @@ 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();
|
|
13520
13520
|
});
|
|
13521
13521
|
|
|
13522
13522
|
// src/config/schema.ts
|
|
13523
|
-
var CodeRepoEntrySchema, AgentBindMountSchema, ScheduleEntrySchema, AgentSoulSchema, AgentToolsSchema, AgentMemorySchema, HookEntrySchema, AgentHooksSchema, SubagentSchema, SessionSchema, SessionContinuitySchema, TelegramChannelSchema, ChannelsSchema, TIMEZONE_REGEX, ApproverIdSchema, GoogleWorkspaceTierSchema, GoogleWorkspaceConfigSchema, AgentGoogleWorkspaceConfigSchema, ReactionsSchema, ReleaseBlock, NetworkIsolationSchema, profileFields, ProfileSchema, _omitExtends, defaultsFields, AgentDefaultsSchema, DEFAULT_PROFILE = "default", AgentSchema, TelegramConfigSchema, MemoryBackendConfigSchema, VaultConfigSchema, QuotaConfigSchema, HostControlConfigSchema, SwitchroomConfigSchema;
|
|
13523
|
+
var CodeRepoEntrySchema, AgentBindMountSchema, ScheduleEntrySchema, AgentSoulSchema, AgentToolsSchema, AgentMemorySchema, HookEntrySchema, AgentHooksSchema, SubagentSchema, SessionSchema, SessionContinuitySchema, TelegramChannelSchema, ChannelsSchema, TIMEZONE_REGEX, ApproverIdSchema, GoogleWorkspaceTierSchema, GoogleWorkspaceConfigSchema, AgentGoogleWorkspaceConfigSchema, ReactionsSchema, ReleaseBlock, NetworkIsolationSchema, profileFields, ProfileSchema, _omitExtends, defaultsFields, AgentDefaultsSchema, DEFAULT_PROFILE = "default", AgentSchema, TelegramConfigSchema, MemoryBackendConfigSchema, VaultConfigSchema, QuotaConfigSchema, HostControlConfigSchema, HostdConfigSchema, SwitchroomConfigSchema;
|
|
13524
13524
|
var init_schema = __esm(() => {
|
|
13525
13525
|
init_zod();
|
|
13526
13526
|
CodeRepoEntrySchema = exports_external.object({
|
|
@@ -13871,6 +13871,10 @@ var init_schema = __esm(() => {
|
|
|
13871
13871
|
HostControlConfigSchema = exports_external.object({
|
|
13872
13872
|
enabled: exports_external.boolean().default(true).describe("Whether the host-control daemon is in use. Default: true (since " + "RFC C Phase 2 default-flip \u2014 the gateway's /restart, /new, /reset, " + "and /update apply slash-commands all dispatch through hostd, and " + "without it those verbs fail on docker-mode installs because the " + "agent container has no docker binary/socket). " + "When true, the compose generator emits per-agent bind mounts " + "at `~/.switchroom/hostd/<name>/sock` for every admin-flagged " + "agent. Install the daemon with `switchroom hostd install` \u2014 " + "it runs as a docker container in its own compose project " + "(`switchroom-hostd`), separate from the agent fleet's compose " + "project so `up -d --remove-orphans` cycles of the fleet " + "can't recreate the daemon mid-RPC. See RFC C \u00a75.1. " + "Set enabled: false only on legacy systemd-mode installs that " + "still rely on the in-container `spawnSwitchroomDetached` " + "shellout (removal is tracked as RFC C Phase 3).")
|
|
13873
13873
|
});
|
|
13874
|
+
HostdConfigSchema = exports_external.object({
|
|
13875
|
+
config_edit_enabled: exports_external.boolean().default(false).describe("Opt-in toggle for the `config_propose_edit` hostd verb (RFC " + "admin-agent-config-edit \u00a73). Default false \u2014 the verb returns " + "`E_CONFIG_EDIT_DISABLED` until the operator explicitly flips " + "this to true. When true (and once PR 1c lands the apply path), " + "admin agents can propose unified-diff patches against " + "`/state/config/switchroom.yaml`, gated by an operator approval " + "card in the primary chat. Same trust posture as `update_apply` " + "and `agent_restart`: the human-in-the-loop tap is the security " + "boundary, not the agent's judgement."),
|
|
13876
|
+
config_edit_rate_per_hour: exports_external.number().int().min(1).max(20).default(3).describe("Per-requesting-agent rate cap for `config_propose_edit` cards " + "(RFC admin-agent-config-edit \u00a75). Default 3 cards/hour; min 1, " + "max 20. Implemented as a sqlite token bucket in PR 1c; the " + "field is wired here in PR 1a so operators can pin it before the " + "limiter is live. Above the cap, the verb returns " + "`E_RATE_LIMITED` without raising a card.")
|
|
13877
|
+
});
|
|
13874
13878
|
SwitchroomConfigSchema = exports_external.object({
|
|
13875
13879
|
switchroom: exports_external.object({
|
|
13876
13880
|
version: exports_external.literal(1).describe("Config schema version"),
|
|
@@ -13897,6 +13901,7 @@ var init_schema = __esm(() => {
|
|
|
13897
13901
|
google_workspace: GoogleWorkspaceConfigSchema.describe("RFC G canonical key. Top-level Google Workspace configuration \u2014 " + "OAuth client credentials, approver allowlist, and tier knob (`core` " + "| `extended` | `complete`, default `core`). Mutually exclusive with " + "`drive:` at the top level (loader fails fast if both are set)."),
|
|
13898
13902
|
quota: QuotaConfigSchema.optional().describe("Optional weekly/monthly USD spend budgets rendered in the session " + "greeting. Usage is read from ccusage at runtime; no network calls."),
|
|
13899
13903
|
host_control: HostControlConfigSchema.default({}).describe("Host-control daemon configuration. Defaults to enabled=true since " + "RFC C Phase 2 (docs/rfcs/host-control-daemon.md). Omit the block " + "to accept defaults; set `enabled: false` only on legacy systemd-" + "mode installs (removal tracked as RFC C Phase 3)."),
|
|
13904
|
+
hostd: HostdConfigSchema.default({}).describe("hostd verb-level knobs (RFC admin-agent-config-edit). Distinct " + "from `host_control:` which governs whether the daemon runs at " + "all. Currently scopes the opt-in flag and rate cap for the new " + "`config_propose_edit` verb (PR 1a \u2014 disabled by default)."),
|
|
13900
13905
|
google_accounts: exports_external.record(exports_external.string().regex(/^[^@\s:]+@[^@\s:]+\.[^@\s:]+$/, {
|
|
13901
13906
|
message: "Account key must be a Google account email like 'alice@example.com' (colons not allowed)"
|
|
13902
13907
|
}).transform((v) => v.trim().toLowerCase()), exports_external.object({
|
|
@@ -15059,7 +15064,7 @@ function classifyTimezoneSource(config, resolvedAgent) {
|
|
|
15059
15064
|
}
|
|
15060
15065
|
var init_timezone = () => {};
|
|
15061
15066
|
|
|
15062
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/utils.js
|
|
15067
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/utils.js
|
|
15063
15068
|
var require_utils = __commonJS((exports) => {
|
|
15064
15069
|
exports.__esModule = true;
|
|
15065
15070
|
exports.extend = extend;
|
|
@@ -15155,7 +15160,7 @@ var require_utils = __commonJS((exports) => {
|
|
|
15155
15160
|
}
|
|
15156
15161
|
});
|
|
15157
15162
|
|
|
15158
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/exception.js
|
|
15163
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/exception.js
|
|
15159
15164
|
var require_exception = __commonJS((exports, module) => {
|
|
15160
15165
|
exports.__esModule = true;
|
|
15161
15166
|
var errorProps = ["description", "fileName", "lineNumber", "endLineNumber", "message", "name", "number", "stack"];
|
|
@@ -15200,7 +15205,7 @@ var require_exception = __commonJS((exports, module) => {
|
|
|
15200
15205
|
module.exports = exports["default"];
|
|
15201
15206
|
});
|
|
15202
15207
|
|
|
15203
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js
|
|
15208
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js
|
|
15204
15209
|
var require_block_helper_missing = __commonJS((exports, module) => {
|
|
15205
15210
|
exports.__esModule = true;
|
|
15206
15211
|
var _utils = require_utils();
|
|
@@ -15233,7 +15238,7 @@ var require_block_helper_missing = __commonJS((exports, module) => {
|
|
|
15233
15238
|
module.exports = exports["default"];
|
|
15234
15239
|
});
|
|
15235
15240
|
|
|
15236
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js
|
|
15241
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js
|
|
15237
15242
|
var require_each = __commonJS((exports, module) => {
|
|
15238
15243
|
exports.__esModule = true;
|
|
15239
15244
|
function _interopRequireDefault(obj) {
|
|
@@ -15314,7 +15319,7 @@ var require_each = __commonJS((exports, module) => {
|
|
|
15314
15319
|
module.exports = exports["default"];
|
|
15315
15320
|
});
|
|
15316
15321
|
|
|
15317
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js
|
|
15322
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js
|
|
15318
15323
|
var require_helper_missing = __commonJS((exports, module) => {
|
|
15319
15324
|
exports.__esModule = true;
|
|
15320
15325
|
function _interopRequireDefault(obj) {
|
|
@@ -15334,7 +15339,7 @@ var require_helper_missing = __commonJS((exports, module) => {
|
|
|
15334
15339
|
module.exports = exports["default"];
|
|
15335
15340
|
});
|
|
15336
15341
|
|
|
15337
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/if.js
|
|
15342
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/if.js
|
|
15338
15343
|
var require_if = __commonJS((exports, module) => {
|
|
15339
15344
|
exports.__esModule = true;
|
|
15340
15345
|
function _interopRequireDefault(obj) {
|
|
@@ -15371,7 +15376,7 @@ var require_if = __commonJS((exports, module) => {
|
|
|
15371
15376
|
module.exports = exports["default"];
|
|
15372
15377
|
});
|
|
15373
15378
|
|
|
15374
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/log.js
|
|
15379
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/log.js
|
|
15375
15380
|
var require_log2 = __commonJS((exports, module) => {
|
|
15376
15381
|
exports.__esModule = true;
|
|
15377
15382
|
exports.default = function(instance) {
|
|
@@ -15393,7 +15398,7 @@ var require_log2 = __commonJS((exports, module) => {
|
|
|
15393
15398
|
module.exports = exports["default"];
|
|
15394
15399
|
});
|
|
15395
15400
|
|
|
15396
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js
|
|
15401
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js
|
|
15397
15402
|
var require_lookup = __commonJS((exports, module) => {
|
|
15398
15403
|
exports.__esModule = true;
|
|
15399
15404
|
exports.default = function(instance) {
|
|
@@ -15407,7 +15412,7 @@ var require_lookup = __commonJS((exports, module) => {
|
|
|
15407
15412
|
module.exports = exports["default"];
|
|
15408
15413
|
});
|
|
15409
15414
|
|
|
15410
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/with.js
|
|
15415
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/with.js
|
|
15411
15416
|
var require_with = __commonJS((exports, module) => {
|
|
15412
15417
|
exports.__esModule = true;
|
|
15413
15418
|
function _interopRequireDefault(obj) {
|
|
@@ -15443,7 +15448,7 @@ var require_with = __commonJS((exports, module) => {
|
|
|
15443
15448
|
module.exports = exports["default"];
|
|
15444
15449
|
});
|
|
15445
15450
|
|
|
15446
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers.js
|
|
15451
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers.js
|
|
15447
15452
|
var require_helpers = __commonJS((exports) => {
|
|
15448
15453
|
exports.__esModule = true;
|
|
15449
15454
|
exports.registerDefaultHelpers = registerDefaultHelpers;
|
|
@@ -15484,7 +15489,7 @@ var require_helpers = __commonJS((exports) => {
|
|
|
15484
15489
|
}
|
|
15485
15490
|
});
|
|
15486
15491
|
|
|
15487
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js
|
|
15492
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js
|
|
15488
15493
|
var require_inline = __commonJS((exports, module) => {
|
|
15489
15494
|
exports.__esModule = true;
|
|
15490
15495
|
var _utils = require_utils();
|
|
@@ -15508,7 +15513,7 @@ var require_inline = __commonJS((exports, module) => {
|
|
|
15508
15513
|
module.exports = exports["default"];
|
|
15509
15514
|
});
|
|
15510
15515
|
|
|
15511
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators.js
|
|
15516
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators.js
|
|
15512
15517
|
var require_decorators = __commonJS((exports) => {
|
|
15513
15518
|
exports.__esModule = true;
|
|
15514
15519
|
exports.registerDefaultDecorators = registerDefaultDecorators;
|
|
@@ -15522,7 +15527,7 @@ var require_decorators = __commonJS((exports) => {
|
|
|
15522
15527
|
}
|
|
15523
15528
|
});
|
|
15524
15529
|
|
|
15525
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/logger.js
|
|
15530
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/logger.js
|
|
15526
15531
|
var require_logger = __commonJS((exports, module) => {
|
|
15527
15532
|
exports.__esModule = true;
|
|
15528
15533
|
var _utils = require_utils();
|
|
@@ -15558,7 +15563,7 @@ var require_logger = __commonJS((exports, module) => {
|
|
|
15558
15563
|
module.exports = exports["default"];
|
|
15559
15564
|
});
|
|
15560
15565
|
|
|
15561
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/proto-access.js
|
|
15566
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/proto-access.js
|
|
15562
15567
|
var require_proto_access = __commonJS((exports) => {
|
|
15563
15568
|
exports.__esModule = true;
|
|
15564
15569
|
exports.createProtoAccessControl = createProtoAccessControl;
|
|
@@ -15625,7 +15630,7 @@ var require_proto_access = __commonJS((exports) => {
|
|
|
15625
15630
|
}
|
|
15626
15631
|
});
|
|
15627
15632
|
|
|
15628
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/base.js
|
|
15633
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/base.js
|
|
15629
15634
|
var require_base = __commonJS((exports) => {
|
|
15630
15635
|
exports.__esModule = true;
|
|
15631
15636
|
exports.HandlebarsEnvironment = HandlebarsEnvironment;
|
|
@@ -15718,7 +15723,7 @@ var require_base = __commonJS((exports) => {
|
|
|
15718
15723
|
exports.logger = _logger2["default"];
|
|
15719
15724
|
});
|
|
15720
15725
|
|
|
15721
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/safe-string.js
|
|
15726
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/safe-string.js
|
|
15722
15727
|
var require_safe_string = __commonJS((exports, module) => {
|
|
15723
15728
|
exports.__esModule = true;
|
|
15724
15729
|
function SafeString(string) {
|
|
@@ -15731,7 +15736,7 @@ var require_safe_string = __commonJS((exports, module) => {
|
|
|
15731
15736
|
module.exports = exports["default"];
|
|
15732
15737
|
});
|
|
15733
15738
|
|
|
15734
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/wrapHelper.js
|
|
15739
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/wrapHelper.js
|
|
15735
15740
|
var require_wrapHelper = __commonJS((exports) => {
|
|
15736
15741
|
exports.__esModule = true;
|
|
15737
15742
|
exports.wrapHelper = wrapHelper;
|
|
@@ -15748,7 +15753,7 @@ var require_wrapHelper = __commonJS((exports) => {
|
|
|
15748
15753
|
}
|
|
15749
15754
|
});
|
|
15750
15755
|
|
|
15751
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/runtime.js
|
|
15756
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/runtime.js
|
|
15752
15757
|
var require_runtime = __commonJS((exports) => {
|
|
15753
15758
|
exports.__esModule = true;
|
|
15754
15759
|
exports.checkRevision = checkRevision;
|
|
@@ -16063,7 +16068,7 @@ var require_runtime = __commonJS((exports) => {
|
|
|
16063
16068
|
}
|
|
16064
16069
|
});
|
|
16065
16070
|
|
|
16066
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js
|
|
16071
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js
|
|
16067
16072
|
var require_no_conflict = __commonJS((exports, module) => {
|
|
16068
16073
|
exports.__esModule = true;
|
|
16069
16074
|
exports.default = function(Handlebars) {
|
|
@@ -16087,7 +16092,7 @@ var require_no_conflict = __commonJS((exports, module) => {
|
|
|
16087
16092
|
module.exports = exports["default"];
|
|
16088
16093
|
});
|
|
16089
16094
|
|
|
16090
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.runtime.js
|
|
16095
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.runtime.js
|
|
16091
16096
|
var require_handlebars_runtime = __commonJS((exports, module) => {
|
|
16092
16097
|
exports.__esModule = true;
|
|
16093
16098
|
function _interopRequireDefault(obj) {
|
|
@@ -16141,7 +16146,7 @@ var require_handlebars_runtime = __commonJS((exports, module) => {
|
|
|
16141
16146
|
module.exports = exports["default"];
|
|
16142
16147
|
});
|
|
16143
16148
|
|
|
16144
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js
|
|
16149
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js
|
|
16145
16150
|
var require_ast = __commonJS((exports, module) => {
|
|
16146
16151
|
exports.__esModule = true;
|
|
16147
16152
|
var AST = {
|
|
@@ -16161,7 +16166,7 @@ var require_ast = __commonJS((exports, module) => {
|
|
|
16161
16166
|
module.exports = exports["default"];
|
|
16162
16167
|
});
|
|
16163
16168
|
|
|
16164
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js
|
|
16169
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js
|
|
16165
16170
|
var require_parser2 = __commonJS((exports, module) => {
|
|
16166
16171
|
exports.__esModule = true;
|
|
16167
16172
|
var handlebars = function() {
|
|
@@ -16885,7 +16890,7 @@ Expecting ` + expected.join(", ") + ", got '" + (this.terminals_[symbol] || symb
|
|
|
16885
16890
|
module.exports = exports["default"];
|
|
16886
16891
|
});
|
|
16887
16892
|
|
|
16888
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js
|
|
16893
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js
|
|
16889
16894
|
var require_visitor = __commonJS((exports, module) => {
|
|
16890
16895
|
exports.__esModule = true;
|
|
16891
16896
|
function _interopRequireDefault(obj) {
|
|
@@ -16990,7 +16995,7 @@ var require_visitor = __commonJS((exports, module) => {
|
|
|
16990
16995
|
module.exports = exports["default"];
|
|
16991
16996
|
});
|
|
16992
16997
|
|
|
16993
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js
|
|
16998
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js
|
|
16994
16999
|
var require_whitespace_control = __commonJS((exports, module) => {
|
|
16995
17000
|
exports.__esModule = true;
|
|
16996
17001
|
function _interopRequireDefault(obj) {
|
|
@@ -17136,7 +17141,7 @@ var require_whitespace_control = __commonJS((exports, module) => {
|
|
|
17136
17141
|
module.exports = exports["default"];
|
|
17137
17142
|
});
|
|
17138
17143
|
|
|
17139
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js
|
|
17144
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js
|
|
17140
17145
|
var require_helpers2 = __commonJS((exports) => {
|
|
17141
17146
|
exports.__esModule = true;
|
|
17142
17147
|
exports.SourceLocation = SourceLocation;
|
|
@@ -17321,7 +17326,7 @@ var require_helpers2 = __commonJS((exports) => {
|
|
|
17321
17326
|
}
|
|
17322
17327
|
});
|
|
17323
17328
|
|
|
17324
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
|
|
17329
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
|
|
17325
17330
|
var require_base2 = __commonJS((exports) => {
|
|
17326
17331
|
exports.__esModule = true;
|
|
17327
17332
|
exports.parseWithoutProcessing = parseWithoutProcessing;
|
|
@@ -17420,7 +17425,7 @@ var require_base2 = __commonJS((exports) => {
|
|
|
17420
17425
|
}
|
|
17421
17426
|
});
|
|
17422
17427
|
|
|
17423
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js
|
|
17428
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js
|
|
17424
17429
|
var require_compiler = __commonJS((exports) => {
|
|
17425
17430
|
exports.__esModule = true;
|
|
17426
17431
|
exports.Compiler = Compiler;
|
|
@@ -17837,7 +17842,7 @@ var require_compiler = __commonJS((exports) => {
|
|
|
17837
17842
|
}
|
|
17838
17843
|
});
|
|
17839
17844
|
|
|
17840
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64.js
|
|
17845
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64.js
|
|
17841
17846
|
var require_base64 = __commonJS((exports) => {
|
|
17842
17847
|
var intToCharMap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");
|
|
17843
17848
|
exports.encode = function(number) {
|
|
@@ -17876,7 +17881,7 @@ var require_base64 = __commonJS((exports) => {
|
|
|
17876
17881
|
};
|
|
17877
17882
|
});
|
|
17878
17883
|
|
|
17879
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js
|
|
17884
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js
|
|
17880
17885
|
var require_base64_vlq = __commonJS((exports) => {
|
|
17881
17886
|
var base64 = require_base64();
|
|
17882
17887
|
var VLQ_BASE_SHIFT = 5;
|
|
@@ -17928,7 +17933,7 @@ var require_base64_vlq = __commonJS((exports) => {
|
|
|
17928
17933
|
};
|
|
17929
17934
|
});
|
|
17930
17935
|
|
|
17931
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/util.js
|
|
17936
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/util.js
|
|
17932
17937
|
var require_util = __commonJS((exports) => {
|
|
17933
17938
|
function getArg(aArgs, aName, aDefaultValue) {
|
|
17934
17939
|
if (aName in aArgs) {
|
|
@@ -18227,7 +18232,7 @@ var require_util = __commonJS((exports) => {
|
|
|
18227
18232
|
exports.computeSourceURL = computeSourceURL;
|
|
18228
18233
|
});
|
|
18229
18234
|
|
|
18230
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/array-set.js
|
|
18235
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/array-set.js
|
|
18231
18236
|
var require_array_set = __commonJS((exports) => {
|
|
18232
18237
|
var util3 = require_util();
|
|
18233
18238
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -18295,7 +18300,7 @@ var require_array_set = __commonJS((exports) => {
|
|
|
18295
18300
|
exports.ArraySet = ArraySet;
|
|
18296
18301
|
});
|
|
18297
18302
|
|
|
18298
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js
|
|
18303
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js
|
|
18299
18304
|
var require_mapping_list = __commonJS((exports) => {
|
|
18300
18305
|
var util3 = require_util();
|
|
18301
18306
|
function generatedPositionAfter(mappingA, mappingB) {
|
|
@@ -18332,7 +18337,7 @@ var require_mapping_list = __commonJS((exports) => {
|
|
|
18332
18337
|
exports.MappingList = MappingList;
|
|
18333
18338
|
});
|
|
18334
18339
|
|
|
18335
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js
|
|
18340
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js
|
|
18336
18341
|
var require_source_map_generator = __commonJS((exports) => {
|
|
18337
18342
|
var base64VLQ = require_base64_vlq();
|
|
18338
18343
|
var util3 = require_util();
|
|
@@ -18602,7 +18607,7 @@ var require_source_map_generator = __commonJS((exports) => {
|
|
|
18602
18607
|
exports.SourceMapGenerator = SourceMapGenerator;
|
|
18603
18608
|
});
|
|
18604
18609
|
|
|
18605
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/binary-search.js
|
|
18610
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/binary-search.js
|
|
18606
18611
|
var require_binary_search = __commonJS((exports) => {
|
|
18607
18612
|
exports.GREATEST_LOWER_BOUND = 1;
|
|
18608
18613
|
exports.LEAST_UPPER_BOUND = 2;
|
|
@@ -18649,7 +18654,7 @@ var require_binary_search = __commonJS((exports) => {
|
|
|
18649
18654
|
};
|
|
18650
18655
|
});
|
|
18651
18656
|
|
|
18652
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js
|
|
18657
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js
|
|
18653
18658
|
var require_quick_sort = __commonJS((exports) => {
|
|
18654
18659
|
function swap(ary, x, y) {
|
|
18655
18660
|
var temp = ary[x];
|
|
@@ -18682,7 +18687,7 @@ var require_quick_sort = __commonJS((exports) => {
|
|
|
18682
18687
|
};
|
|
18683
18688
|
});
|
|
18684
18689
|
|
|
18685
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js
|
|
18690
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js
|
|
18686
18691
|
var require_source_map_consumer = __commonJS((exports) => {
|
|
18687
18692
|
var util3 = require_util();
|
|
18688
18693
|
var binarySearch = require_binary_search();
|
|
@@ -19251,7 +19256,7 @@ var require_source_map_consumer = __commonJS((exports) => {
|
|
|
19251
19256
|
exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|
|
19252
19257
|
});
|
|
19253
19258
|
|
|
19254
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-node.js
|
|
19259
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-node.js
|
|
19255
19260
|
var require_source_node = __commonJS((exports) => {
|
|
19256
19261
|
var SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
19257
19262
|
var util3 = require_util();
|
|
@@ -19505,14 +19510,14 @@ var require_source_node = __commonJS((exports) => {
|
|
|
19505
19510
|
exports.SourceNode = SourceNode;
|
|
19506
19511
|
});
|
|
19507
19512
|
|
|
19508
|
-
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/source-map.js
|
|
19513
|
+
// ../switchroom-sec-1417/node_modules/.bun/source-map@0.6.1/node_modules/source-map/source-map.js
|
|
19509
19514
|
var require_source_map = __commonJS((exports) => {
|
|
19510
19515
|
exports.SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
19511
19516
|
exports.SourceMapConsumer = require_source_map_consumer().SourceMapConsumer;
|
|
19512
19517
|
exports.SourceNode = require_source_node().SourceNode;
|
|
19513
19518
|
});
|
|
19514
19519
|
|
|
19515
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js
|
|
19520
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js
|
|
19516
19521
|
var require_code_gen = __commonJS((exports, module) => {
|
|
19517
19522
|
exports.__esModule = true;
|
|
19518
19523
|
var _utils = require_utils();
|
|
@@ -19645,7 +19650,7 @@ var require_code_gen = __commonJS((exports, module) => {
|
|
|
19645
19650
|
module.exports = exports["default"];
|
|
19646
19651
|
});
|
|
19647
19652
|
|
|
19648
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js
|
|
19653
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js
|
|
19649
19654
|
var require_javascript_compiler = __commonJS((exports, module) => {
|
|
19650
19655
|
exports.__esModule = true;
|
|
19651
19656
|
function _interopRequireDefault(obj) {
|
|
@@ -20413,7 +20418,7 @@ var require_javascript_compiler = __commonJS((exports, module) => {
|
|
|
20413
20418
|
module.exports = exports["default"];
|
|
20414
20419
|
});
|
|
20415
20420
|
|
|
20416
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.js
|
|
20421
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.js
|
|
20417
20422
|
var require_handlebars = __commonJS((exports, module) => {
|
|
20418
20423
|
exports.__esModule = true;
|
|
20419
20424
|
function _interopRequireDefault(obj) {
|
|
@@ -20457,7 +20462,7 @@ var require_handlebars = __commonJS((exports, module) => {
|
|
|
20457
20462
|
module.exports = exports["default"];
|
|
20458
20463
|
});
|
|
20459
20464
|
|
|
20460
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js
|
|
20465
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js
|
|
20461
20466
|
var require_printer = __commonJS((exports) => {
|
|
20462
20467
|
exports.__esModule = true;
|
|
20463
20468
|
exports.print = print;
|
|
@@ -20601,7 +20606,7 @@ var require_printer = __commonJS((exports) => {
|
|
|
20601
20606
|
};
|
|
20602
20607
|
});
|
|
20603
20608
|
|
|
20604
|
-
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/lib/index.js
|
|
20609
|
+
// ../switchroom-sec-1417/node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/lib/index.js
|
|
20605
20610
|
var require_lib = __commonJS((exports, module) => {
|
|
20606
20611
|
var handlebars = require_handlebars()["default"];
|
|
20607
20612
|
var printer = require_printer();
|
|
@@ -29067,7 +29072,7 @@ function decodeResponse3(line) {
|
|
|
29067
29072
|
const obj = JSON.parse(line);
|
|
29068
29073
|
return ResponseSchema3.parse(obj);
|
|
29069
29074
|
}
|
|
29070
|
-
var MAX_FRAME_BYTES3, RequestEnvelope, AgentRestartRequestSchema, UpgradeStatusRequestSchema, GetStatusRequestSchema, AgentNameSchema, UpdateCheckRequestSchema, UpdateApplyRequestSchema, ApplyRequestSchema, AgentStartRequestSchema, AgentStopRequestSchema, AgentLogsRequestSchema, AgentExecRequestSchema, DoctorRequestSchema, AgentSmokeRequestSchema, RequestSchema3, ResultSchema, ResponseEnvelope, ResponseSchema3;
|
|
29075
|
+
var MAX_FRAME_BYTES3, RequestEnvelope, AgentRestartRequestSchema, UpgradeStatusRequestSchema, GetStatusRequestSchema, AgentNameSchema, UpdateCheckRequestSchema, UpdateApplyRequestSchema, ApplyRequestSchema, AgentStartRequestSchema, AgentStopRequestSchema, AgentLogsRequestSchema, AgentExecRequestSchema, DoctorRequestSchema, AgentSmokeRequestSchema, ConfigProposeEditRequestSchema, RequestSchema3, ResultSchema, ResponseEnvelope, ResponseSchema3;
|
|
29071
29076
|
var init_protocol3 = __esm(() => {
|
|
29072
29077
|
init_zod();
|
|
29073
29078
|
MAX_FRAME_BYTES3 = 64 * 1024;
|
|
@@ -29161,6 +29166,15 @@ var init_protocol3 = __esm(() => {
|
|
|
29161
29166
|
deep: exports_external.boolean().optional()
|
|
29162
29167
|
})
|
|
29163
29168
|
});
|
|
29169
|
+
ConfigProposeEditRequestSchema = exports_external.object({
|
|
29170
|
+
...RequestEnvelope,
|
|
29171
|
+
op: exports_external.literal("config_propose_edit"),
|
|
29172
|
+
args: exports_external.object({
|
|
29173
|
+
unified_diff: exports_external.string().min(1).max(MAX_FRAME_BYTES3 - 1024),
|
|
29174
|
+
reason: exports_external.string().min(1).max(500),
|
|
29175
|
+
target_path: exports_external.literal("/state/config/switchroom.yaml")
|
|
29176
|
+
})
|
|
29177
|
+
});
|
|
29164
29178
|
RequestSchema3 = exports_external.discriminatedUnion("op", [
|
|
29165
29179
|
AgentRestartRequestSchema,
|
|
29166
29180
|
UpgradeStatusRequestSchema,
|
|
@@ -29173,7 +29187,8 @@ var init_protocol3 = __esm(() => {
|
|
|
29173
29187
|
AgentLogsRequestSchema,
|
|
29174
29188
|
AgentExecRequestSchema,
|
|
29175
29189
|
DoctorRequestSchema,
|
|
29176
|
-
AgentSmokeRequestSchema
|
|
29190
|
+
AgentSmokeRequestSchema,
|
|
29191
|
+
ConfigProposeEditRequestSchema
|
|
29177
29192
|
]);
|
|
29178
29193
|
ResultSchema = exports_external.enum(["started", "completed", "denied", "error"]);
|
|
29179
29194
|
ResponseEnvelope = {
|
|
@@ -31016,7 +31031,7 @@ function deriveSlug(inputs, existing) {
|
|
|
31016
31031
|
return `${base}_${n}`;
|
|
31017
31032
|
}
|
|
31018
31033
|
|
|
31019
|
-
// node_modules/.bun/boundary@2.0.0/node_modules/boundary/lib/index.js
|
|
31034
|
+
// ../switchroom-sec-1417/node_modules/.bun/boundary@2.0.0/node_modules/boundary/lib/index.js
|
|
31020
31035
|
var require_lib2 = __commonJS((exports2) => {
|
|
31021
31036
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
31022
31037
|
exports2.binarySearch = exports2.upperBound = exports2.lowerBound = exports2.compare = undefined;
|
|
@@ -31063,7 +31078,7 @@ var require_lib2 = __commonJS((exports2) => {
|
|
|
31063
31078
|
exports2.binarySearch = binarySearch;
|
|
31064
31079
|
});
|
|
31065
31080
|
|
|
31066
|
-
// node_modules/.bun/structured-source@4.0.0/node_modules/structured-source/lib/structured-source.js
|
|
31081
|
+
// ../switchroom-sec-1417/node_modules/.bun/structured-source@4.0.0/node_modules/structured-source/lib/structured-source.js
|
|
31067
31082
|
var require_structured_source = __commonJS((exports2) => {
|
|
31068
31083
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
31069
31084
|
exports2.StructuredSource = undefined;
|
|
@@ -31118,13 +31133,13 @@ var require_structured_source = __commonJS((exports2) => {
|
|
|
31118
31133
|
}
|
|
31119
31134
|
exports2.StructuredSource = StructuredSource;
|
|
31120
31135
|
});
|
|
31121
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/SecretLintSourceCodeImpl.js
|
|
31136
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/SecretLintSourceCodeImpl.js
|
|
31122
31137
|
var import_structured_source;
|
|
31123
31138
|
var init_SecretLintSourceCodeImpl = __esm(() => {
|
|
31124
31139
|
import_structured_source = __toESM(require_structured_source(), 1);
|
|
31125
31140
|
});
|
|
31126
31141
|
|
|
31127
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/helper/promise-event-emitter.js
|
|
31142
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/helper/promise-event-emitter.js
|
|
31128
31143
|
class EventEmitter {
|
|
31129
31144
|
#listeners = new Map;
|
|
31130
31145
|
on(type, listener) {
|
|
@@ -31163,9 +31178,9 @@ class EventEmitter {
|
|
|
31163
31178
|
return Array.from(this.#listeners.get(type) ?? []);
|
|
31164
31179
|
}
|
|
31165
31180
|
}
|
|
31166
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RuleContext.js
|
|
31181
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RuleContext.js
|
|
31167
31182
|
var init_RuleContext = () => {};
|
|
31168
|
-
// node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/index.js
|
|
31183
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/index.js
|
|
31169
31184
|
class SecretLintProfiler {
|
|
31170
31185
|
perf;
|
|
31171
31186
|
entries = [];
|
|
@@ -31222,7 +31237,7 @@ class SecretLintProfiler {
|
|
|
31222
31237
|
}
|
|
31223
31238
|
}
|
|
31224
31239
|
|
|
31225
|
-
// node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/node.js
|
|
31240
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/node.js
|
|
31226
31241
|
import perf_hooks from "node:perf_hooks";
|
|
31227
31242
|
|
|
31228
31243
|
class NullPerformanceObserver {
|
|
@@ -31237,19 +31252,19 @@ var init_node = __esm(() => {
|
|
|
31237
31252
|
});
|
|
31238
31253
|
});
|
|
31239
31254
|
|
|
31240
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RunningEvents.js
|
|
31255
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RunningEvents.js
|
|
31241
31256
|
var init_RunningEvents = __esm(() => {
|
|
31242
31257
|
init_node();
|
|
31243
31258
|
});
|
|
31244
31259
|
|
|
31245
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RulePresetContext.js
|
|
31260
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RulePresetContext.js
|
|
31246
31261
|
var init_RulePresetContext = __esm(() => {
|
|
31247
31262
|
init_RuleContext();
|
|
31248
31263
|
});
|
|
31249
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/messages/index.js
|
|
31264
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/messages/index.js
|
|
31250
31265
|
var init_messages = () => {};
|
|
31251
31266
|
|
|
31252
|
-
// node_modules/.bun/ms@2.1.3/node_modules/ms/index.js
|
|
31267
|
+
// ../switchroom-sec-1417/node_modules/.bun/ms@2.1.3/node_modules/ms/index.js
|
|
31253
31268
|
var require_ms = __commonJS((exports2, module) => {
|
|
31254
31269
|
var s = 1000;
|
|
31255
31270
|
var m = s * 60;
|
|
@@ -31359,7 +31374,7 @@ var require_ms = __commonJS((exports2, module) => {
|
|
|
31359
31374
|
}
|
|
31360
31375
|
});
|
|
31361
31376
|
|
|
31362
|
-
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/common.js
|
|
31377
|
+
// ../switchroom-sec-1417/node_modules/.bun/debug@4.4.3/node_modules/debug/src/common.js
|
|
31363
31378
|
var require_common = __commonJS((exports2, module) => {
|
|
31364
31379
|
function setup(env2) {
|
|
31365
31380
|
createDebug.debug = createDebug;
|
|
@@ -31534,7 +31549,7 @@ var require_common = __commonJS((exports2, module) => {
|
|
|
31534
31549
|
module.exports = setup;
|
|
31535
31550
|
});
|
|
31536
31551
|
|
|
31537
|
-
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/browser.js
|
|
31552
|
+
// ../switchroom-sec-1417/node_modules/.bun/debug@4.4.3/node_modules/debug/src/browser.js
|
|
31538
31553
|
var require_browser = __commonJS((exports2, module) => {
|
|
31539
31554
|
exports2.formatArgs = formatArgs;
|
|
31540
31555
|
exports2.save = save;
|
|
@@ -31694,7 +31709,7 @@ var require_browser = __commonJS((exports2, module) => {
|
|
|
31694
31709
|
};
|
|
31695
31710
|
});
|
|
31696
31711
|
|
|
31697
|
-
// node_modules/.bun/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
31712
|
+
// ../switchroom-sec-1417/node_modules/.bun/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
31698
31713
|
var require_has_flag = __commonJS((exports2, module) => {
|
|
31699
31714
|
module.exports = (flag, argv = process.argv) => {
|
|
31700
31715
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
@@ -31704,7 +31719,7 @@ var require_has_flag = __commonJS((exports2, module) => {
|
|
|
31704
31719
|
};
|
|
31705
31720
|
});
|
|
31706
31721
|
|
|
31707
|
-
// node_modules/.bun/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
31722
|
+
// ../switchroom-sec-1417/node_modules/.bun/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
31708
31723
|
var require_supports_color = __commonJS((exports2, module) => {
|
|
31709
31724
|
var os5 = __require("os");
|
|
31710
31725
|
var tty2 = __require("tty");
|
|
@@ -31803,7 +31818,7 @@ var require_supports_color = __commonJS((exports2, module) => {
|
|
|
31803
31818
|
};
|
|
31804
31819
|
});
|
|
31805
31820
|
|
|
31806
|
-
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/node.js
|
|
31821
|
+
// ../switchroom-sec-1417/node_modules/.bun/debug@4.4.3/node_modules/debug/src/node.js
|
|
31807
31822
|
var require_node = __commonJS((exports2, module) => {
|
|
31808
31823
|
var tty2 = __require("tty");
|
|
31809
31824
|
var util3 = __require("util");
|
|
@@ -31974,7 +31989,7 @@ var require_node = __commonJS((exports2, module) => {
|
|
|
31974
31989
|
};
|
|
31975
31990
|
});
|
|
31976
31991
|
|
|
31977
|
-
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/index.js
|
|
31992
|
+
// ../switchroom-sec-1417/node_modules/.bun/debug@4.4.3/node_modules/debug/src/index.js
|
|
31978
31993
|
var require_src = __commonJS((exports2, module) => {
|
|
31979
31994
|
if (typeof process === "undefined" || process.type === "renderer" || false || process.__nwjs) {
|
|
31980
31995
|
module.exports = require_browser();
|
|
@@ -31983,7 +31998,7 @@ var require_src = __commonJS((exports2, module) => {
|
|
|
31983
31998
|
}
|
|
31984
31999
|
});
|
|
31985
32000
|
|
|
31986
|
-
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/index.js
|
|
32001
|
+
// ../switchroom-sec-1417/node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/index.js
|
|
31987
32002
|
var import_debug, debug;
|
|
31988
32003
|
var init_module = __esm(() => {
|
|
31989
32004
|
init_SecretLintSourceCodeImpl();
|
|
@@ -31996,7 +32011,7 @@ var init_module = __esm(() => {
|
|
|
31996
32011
|
debug = import_debug.default("@secretlint/core");
|
|
31997
32012
|
});
|
|
31998
32013
|
|
|
31999
|
-
// node_modules/.bun/@secretlint+secretlint-rule-preset-recommend@12.2.0/node_modules/@secretlint/secretlint-rule-preset-recommend/module/index.js
|
|
32014
|
+
// ../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
32015
|
function requireLodash_uniq() {
|
|
32001
32016
|
if (hasRequiredLodash_uniq)
|
|
32002
32017
|
return lodash_uniq;
|
|
@@ -33679,7 +33694,7 @@ var init_secretlint_source = __esm(() => {
|
|
|
33679
33694
|
init_suppressor();
|
|
33680
33695
|
});
|
|
33681
33696
|
|
|
33682
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/core.js
|
|
33697
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/core.js
|
|
33683
33698
|
function $constructor(name, initializer, params) {
|
|
33684
33699
|
function init(inst, def) {
|
|
33685
33700
|
var _a;
|
|
@@ -33742,7 +33757,7 @@ var init_core = __esm(() => {
|
|
|
33742
33757
|
globalConfig = {};
|
|
33743
33758
|
});
|
|
33744
33759
|
|
|
33745
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/util.js
|
|
33760
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/util.js
|
|
33746
33761
|
var exports_util = {};
|
|
33747
33762
|
__export(exports_util, {
|
|
33748
33763
|
unwrapMessage: () => unwrapMessage,
|
|
@@ -34258,7 +34273,7 @@ var init_util2 = __esm(() => {
|
|
|
34258
34273
|
};
|
|
34259
34274
|
});
|
|
34260
34275
|
|
|
34261
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/errors.js
|
|
34276
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/errors.js
|
|
34262
34277
|
function flattenError(error, mapper = (issue2) => issue2.message) {
|
|
34263
34278
|
const fieldErrors = {};
|
|
34264
34279
|
const formErrors = [];
|
|
@@ -34336,7 +34351,7 @@ var init_errors2 = __esm(() => {
|
|
|
34336
34351
|
$ZodRealError = $constructor("$ZodError", initializer, { Parent: Error });
|
|
34337
34352
|
});
|
|
34338
34353
|
|
|
34339
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/parse.js
|
|
34354
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/parse.js
|
|
34340
34355
|
var _parse = (_Err) => (schema, value, _ctx, _params) => {
|
|
34341
34356
|
const ctx = _ctx ? Object.assign(_ctx, { async: false }) : { async: false };
|
|
34342
34357
|
const result = schema._zod.run({ value, issues: [] }, ctx);
|
|
@@ -34388,7 +34403,7 @@ var init_parse = __esm(() => {
|
|
|
34388
34403
|
safeParseAsync = /* @__PURE__ */ _safeParseAsync($ZodRealError);
|
|
34389
34404
|
});
|
|
34390
34405
|
|
|
34391
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/regexes.js
|
|
34406
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/regexes.js
|
|
34392
34407
|
function emoji() {
|
|
34393
34408
|
return new RegExp(_emoji, "u");
|
|
34394
34409
|
}
|
|
@@ -34445,7 +34460,7 @@ var init_regexes = __esm(() => {
|
|
|
34445
34460
|
uppercase = /^[^a-z]*$/;
|
|
34446
34461
|
});
|
|
34447
34462
|
|
|
34448
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/checks.js
|
|
34463
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/checks.js
|
|
34449
34464
|
var $ZodCheck, numericOriginMap, $ZodCheckLessThan, $ZodCheckGreaterThan, $ZodCheckMultipleOf, $ZodCheckNumberFormat, $ZodCheckMaxLength, $ZodCheckMinLength, $ZodCheckLengthEquals, $ZodCheckStringFormat, $ZodCheckRegex, $ZodCheckLowerCase, $ZodCheckUpperCase, $ZodCheckIncludes, $ZodCheckStartsWith, $ZodCheckEndsWith, $ZodCheckOverwrite;
|
|
34450
34465
|
var init_checks = __esm(() => {
|
|
34451
34466
|
init_core();
|
|
@@ -34835,7 +34850,7 @@ var init_checks = __esm(() => {
|
|
|
34835
34850
|
});
|
|
34836
34851
|
});
|
|
34837
34852
|
|
|
34838
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/doc.js
|
|
34853
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/doc.js
|
|
34839
34854
|
class Doc {
|
|
34840
34855
|
constructor(args = []) {
|
|
34841
34856
|
this.content = [];
|
|
@@ -34873,7 +34888,7 @@ class Doc {
|
|
|
34873
34888
|
}
|
|
34874
34889
|
}
|
|
34875
34890
|
|
|
34876
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/versions.js
|
|
34891
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/versions.js
|
|
34877
34892
|
var version2;
|
|
34878
34893
|
var init_versions = __esm(() => {
|
|
34879
34894
|
version2 = {
|
|
@@ -34883,7 +34898,7 @@ var init_versions = __esm(() => {
|
|
|
34883
34898
|
};
|
|
34884
34899
|
});
|
|
34885
34900
|
|
|
34886
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/schemas.js
|
|
34901
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/schemas.js
|
|
34887
34902
|
function isValidBase64(data) {
|
|
34888
34903
|
if (data === "")
|
|
34889
34904
|
return true;
|
|
@@ -36125,7 +36140,7 @@ var init_schemas = __esm(() => {
|
|
|
36125
36140
|
});
|
|
36126
36141
|
});
|
|
36127
36142
|
|
|
36128
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/en.js
|
|
36143
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/en.js
|
|
36129
36144
|
function en_default2() {
|
|
36130
36145
|
return {
|
|
36131
36146
|
localeError: error()
|
|
@@ -36245,10 +36260,10 @@ var init_en2 = __esm(() => {
|
|
|
36245
36260
|
init_util2();
|
|
36246
36261
|
});
|
|
36247
36262
|
|
|
36248
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/index.js
|
|
36263
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/index.js
|
|
36249
36264
|
var init_locales = () => {};
|
|
36250
36265
|
|
|
36251
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/registries.js
|
|
36266
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/registries.js
|
|
36252
36267
|
class $ZodRegistry {
|
|
36253
36268
|
constructor() {
|
|
36254
36269
|
this._map = new Map;
|
|
@@ -36301,7 +36316,7 @@ var init_registries = __esm(() => {
|
|
|
36301
36316
|
globalRegistry = /* @__PURE__ */ registry();
|
|
36302
36317
|
});
|
|
36303
36318
|
|
|
36304
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/api.js
|
|
36319
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/api.js
|
|
36305
36320
|
function _string(Class2, params) {
|
|
36306
36321
|
return new Class2({
|
|
36307
36322
|
type: "string",
|
|
@@ -36741,16 +36756,16 @@ var init_api = __esm(() => {
|
|
|
36741
36756
|
init_util2();
|
|
36742
36757
|
});
|
|
36743
36758
|
|
|
36744
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/function.js
|
|
36759
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/function.js
|
|
36745
36760
|
var init_function = () => {};
|
|
36746
36761
|
|
|
36747
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/to-json-schema.js
|
|
36762
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/to-json-schema.js
|
|
36748
36763
|
var init_to_json_schema = () => {};
|
|
36749
36764
|
|
|
36750
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/json-schema.js
|
|
36765
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/json-schema.js
|
|
36751
36766
|
var init_json_schema = () => {};
|
|
36752
36767
|
|
|
36753
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/index.js
|
|
36768
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/index.js
|
|
36754
36769
|
var init_core2 = __esm(() => {
|
|
36755
36770
|
init_util2();
|
|
36756
36771
|
init_regexes();
|
|
@@ -36768,24 +36783,24 @@ var init_core2 = __esm(() => {
|
|
|
36768
36783
|
init_to_json_schema();
|
|
36769
36784
|
});
|
|
36770
36785
|
|
|
36771
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/parse.js
|
|
36786
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/parse.js
|
|
36772
36787
|
var init_parse2 = __esm(() => {
|
|
36773
36788
|
init_core2();
|
|
36774
36789
|
});
|
|
36775
36790
|
|
|
36776
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/schemas.js
|
|
36791
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/schemas.js
|
|
36777
36792
|
var init_schemas2 = () => {};
|
|
36778
36793
|
|
|
36779
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/checks.js
|
|
36794
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/checks.js
|
|
36780
36795
|
var init_checks2 = () => {};
|
|
36781
36796
|
|
|
36782
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/iso.js
|
|
36797
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/iso.js
|
|
36783
36798
|
var init_iso = () => {};
|
|
36784
36799
|
|
|
36785
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/coerce.js
|
|
36800
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/coerce.js
|
|
36786
36801
|
var init_coerce = () => {};
|
|
36787
36802
|
|
|
36788
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/external.js
|
|
36803
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/external.js
|
|
36789
36804
|
var init_external2 = __esm(() => {
|
|
36790
36805
|
init_core2();
|
|
36791
36806
|
init_locales();
|
|
@@ -36796,17 +36811,17 @@ var init_external2 = __esm(() => {
|
|
|
36796
36811
|
init_checks2();
|
|
36797
36812
|
});
|
|
36798
36813
|
|
|
36799
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/index.js
|
|
36814
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/index.js
|
|
36800
36815
|
var init_mini = __esm(() => {
|
|
36801
36816
|
init_external2();
|
|
36802
36817
|
});
|
|
36803
36818
|
|
|
36804
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4-mini/index.js
|
|
36819
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4-mini/index.js
|
|
36805
36820
|
var init_v4_mini = __esm(() => {
|
|
36806
36821
|
init_mini();
|
|
36807
36822
|
});
|
|
36808
36823
|
|
|
36809
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js
|
|
36824
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js
|
|
36810
36825
|
function isZ4Schema(s) {
|
|
36811
36826
|
const schema = s;
|
|
36812
36827
|
return !!schema._zod;
|
|
@@ -36872,12 +36887,12 @@ var init_zod_compat = __esm(() => {
|
|
|
36872
36887
|
init_v4_mini();
|
|
36873
36888
|
});
|
|
36874
36889
|
|
|
36875
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/checks.js
|
|
36890
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/checks.js
|
|
36876
36891
|
var init_checks3 = __esm(() => {
|
|
36877
36892
|
init_core2();
|
|
36878
36893
|
});
|
|
36879
36894
|
|
|
36880
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/iso.js
|
|
36895
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/iso.js
|
|
36881
36896
|
var exports_iso2 = {};
|
|
36882
36897
|
__export(exports_iso2, {
|
|
36883
36898
|
time: () => time2,
|
|
@@ -36923,7 +36938,7 @@ var init_iso2 = __esm(() => {
|
|
|
36923
36938
|
});
|
|
36924
36939
|
});
|
|
36925
36940
|
|
|
36926
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/errors.js
|
|
36941
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/errors.js
|
|
36927
36942
|
var initializer2 = (inst, issues) => {
|
|
36928
36943
|
$ZodError.init(inst, issues);
|
|
36929
36944
|
inst.name = "ZodError";
|
|
@@ -36956,7 +36971,7 @@ var init_errors3 = __esm(() => {
|
|
|
36956
36971
|
});
|
|
36957
36972
|
});
|
|
36958
36973
|
|
|
36959
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/parse.js
|
|
36974
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/parse.js
|
|
36960
36975
|
var parse4, parseAsync2, safeParse3, safeParseAsync2;
|
|
36961
36976
|
var init_parse3 = __esm(() => {
|
|
36962
36977
|
init_core2();
|
|
@@ -36967,7 +36982,7 @@ var init_parse3 = __esm(() => {
|
|
|
36967
36982
|
safeParseAsync2 = /* @__PURE__ */ _safeParseAsync(ZodRealError);
|
|
36968
36983
|
});
|
|
36969
36984
|
|
|
36970
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/schemas.js
|
|
36985
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/schemas.js
|
|
36971
36986
|
function string2(params) {
|
|
36972
36987
|
return _string(ZodString2, params);
|
|
36973
36988
|
}
|
|
@@ -37581,13 +37596,13 @@ var init_schemas3 = __esm(() => {
|
|
|
37581
37596
|
});
|
|
37582
37597
|
});
|
|
37583
37598
|
|
|
37584
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/compat.js
|
|
37599
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/compat.js
|
|
37585
37600
|
var init_compat = () => {};
|
|
37586
37601
|
|
|
37587
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/coerce.js
|
|
37602
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/coerce.js
|
|
37588
37603
|
var init_coerce2 = () => {};
|
|
37589
37604
|
|
|
37590
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/external.js
|
|
37605
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/external.js
|
|
37591
37606
|
var init_external3 = __esm(() => {
|
|
37592
37607
|
init_core2();
|
|
37593
37608
|
init_core2();
|
|
@@ -37603,17 +37618,17 @@ var init_external3 = __esm(() => {
|
|
|
37603
37618
|
config(en_default2());
|
|
37604
37619
|
});
|
|
37605
37620
|
|
|
37606
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/index.js
|
|
37621
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/index.js
|
|
37607
37622
|
var init_classic = __esm(() => {
|
|
37608
37623
|
init_external3();
|
|
37609
37624
|
});
|
|
37610
37625
|
|
|
37611
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/index.js
|
|
37626
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v4/index.js
|
|
37612
37627
|
var init_v4 = __esm(() => {
|
|
37613
37628
|
init_classic();
|
|
37614
37629
|
});
|
|
37615
37630
|
|
|
37616
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
37631
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
37617
37632
|
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
37633
|
var init_types2 = __esm(() => {
|
|
37619
37634
|
init_v4();
|
|
@@ -38441,65 +38456,65 @@ var init_types2 = __esm(() => {
|
|
|
38441
38456
|
};
|
|
38442
38457
|
});
|
|
38443
38458
|
|
|
38444
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js
|
|
38459
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js
|
|
38445
38460
|
function isTerminal(status) {
|
|
38446
38461
|
return status === "completed" || status === "failed" || status === "cancelled";
|
|
38447
38462
|
}
|
|
38448
38463
|
|
|
38449
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/Options.js
|
|
38464
|
+
// ../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
38465
|
var ignoreOverride;
|
|
38451
38466
|
var init_Options = __esm(() => {
|
|
38452
38467
|
ignoreOverride = Symbol("Let zodToJsonSchema decide on which parser to use");
|
|
38453
38468
|
});
|
|
38454
38469
|
|
|
38455
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/Refs.js
|
|
38470
|
+
// ../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
38471
|
var init_Refs = __esm(() => {
|
|
38457
38472
|
init_Options();
|
|
38458
38473
|
});
|
|
38459
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/any.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/any.js
|
|
38460
38475
|
var init_any = () => {};
|
|
38461
38476
|
|
|
38462
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/array.js
|
|
38477
|
+
// ../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
38478
|
var init_array = __esm(() => {
|
|
38464
38479
|
init_parseDef();
|
|
38465
38480
|
});
|
|
38466
38481
|
|
|
38467
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.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/bigint.js
|
|
38468
38483
|
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
|
|
38484
|
+
// ../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
38485
|
var init_branded = __esm(() => {
|
|
38471
38486
|
init_parseDef();
|
|
38472
38487
|
});
|
|
38473
38488
|
|
|
38474
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js
|
|
38489
|
+
// ../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
38490
|
var init_catch = __esm(() => {
|
|
38476
38491
|
init_parseDef();
|
|
38477
38492
|
});
|
|
38478
38493
|
|
|
38479
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/date.js
|
|
38494
|
+
// ../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
38495
|
var init_date = () => {};
|
|
38481
38496
|
|
|
38482
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/default.js
|
|
38497
|
+
// ../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
38498
|
var init_default = __esm(() => {
|
|
38484
38499
|
init_parseDef();
|
|
38485
38500
|
});
|
|
38486
38501
|
|
|
38487
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/effects.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/effects.js
|
|
38488
38503
|
var init_effects = __esm(() => {
|
|
38489
38504
|
init_parseDef();
|
|
38490
38505
|
init_any();
|
|
38491
38506
|
});
|
|
38492
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js
|
|
38507
|
+
// ../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
38508
|
var init_intersection = __esm(() => {
|
|
38494
38509
|
init_parseDef();
|
|
38495
38510
|
});
|
|
38496
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/string.js
|
|
38511
|
+
// ../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
38512
|
var ALPHA_NUMERIC;
|
|
38498
38513
|
var init_string = __esm(() => {
|
|
38499
38514
|
ALPHA_NUMERIC = new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");
|
|
38500
38515
|
});
|
|
38501
38516
|
|
|
38502
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/record.js
|
|
38517
|
+
// ../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
38518
|
var init_record = __esm(() => {
|
|
38504
38519
|
init_parseDef();
|
|
38505
38520
|
init_string();
|
|
@@ -38507,77 +38522,77 @@ var init_record = __esm(() => {
|
|
|
38507
38522
|
init_any();
|
|
38508
38523
|
});
|
|
38509
38524
|
|
|
38510
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/map.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/map.js
|
|
38511
38526
|
var init_map = __esm(() => {
|
|
38512
38527
|
init_parseDef();
|
|
38513
38528
|
init_record();
|
|
38514
38529
|
init_any();
|
|
38515
38530
|
});
|
|
38516
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/never.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/never.js
|
|
38517
38532
|
var init_never = __esm(() => {
|
|
38518
38533
|
init_any();
|
|
38519
38534
|
});
|
|
38520
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/union.js
|
|
38535
|
+
// ../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
38536
|
var init_union = __esm(() => {
|
|
38522
38537
|
init_parseDef();
|
|
38523
38538
|
});
|
|
38524
38539
|
|
|
38525
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js
|
|
38540
|
+
// ../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
38541
|
var init_nullable = __esm(() => {
|
|
38527
38542
|
init_parseDef();
|
|
38528
38543
|
init_union();
|
|
38529
38544
|
});
|
|
38530
38545
|
|
|
38531
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/number.js
|
|
38546
|
+
// ../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
38547
|
var init_number = () => {};
|
|
38533
38548
|
|
|
38534
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/object.js
|
|
38549
|
+
// ../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
38550
|
var init_object = __esm(() => {
|
|
38536
38551
|
init_parseDef();
|
|
38537
38552
|
});
|
|
38538
38553
|
|
|
38539
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js
|
|
38554
|
+
// ../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
38555
|
var init_optional = __esm(() => {
|
|
38541
38556
|
init_parseDef();
|
|
38542
38557
|
init_any();
|
|
38543
38558
|
});
|
|
38544
38559
|
|
|
38545
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.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/pipeline.js
|
|
38546
38561
|
var init_pipeline = __esm(() => {
|
|
38547
38562
|
init_parseDef();
|
|
38548
38563
|
});
|
|
38549
38564
|
|
|
38550
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/promise.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/promise.js
|
|
38551
38566
|
var init_promise = __esm(() => {
|
|
38552
38567
|
init_parseDef();
|
|
38553
38568
|
});
|
|
38554
38569
|
|
|
38555
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/set.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/set.js
|
|
38556
38571
|
var init_set = __esm(() => {
|
|
38557
38572
|
init_parseDef();
|
|
38558
38573
|
});
|
|
38559
38574
|
|
|
38560
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.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/tuple.js
|
|
38561
38576
|
var init_tuple = __esm(() => {
|
|
38562
38577
|
init_parseDef();
|
|
38563
38578
|
});
|
|
38564
38579
|
|
|
38565
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js
|
|
38580
|
+
// ../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
38581
|
var init_undefined = __esm(() => {
|
|
38567
38582
|
init_any();
|
|
38568
38583
|
});
|
|
38569
38584
|
|
|
38570
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js
|
|
38585
|
+
// ../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
38586
|
var init_unknown = __esm(() => {
|
|
38572
38587
|
init_any();
|
|
38573
38588
|
});
|
|
38574
38589
|
|
|
38575
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js
|
|
38590
|
+
// ../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
38591
|
var init_readonly = __esm(() => {
|
|
38577
38592
|
init_parseDef();
|
|
38578
38593
|
});
|
|
38579
38594
|
|
|
38580
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/selectParser.js
|
|
38595
|
+
// ../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
38596
|
var init_selectParser = __esm(() => {
|
|
38582
38597
|
init_any();
|
|
38583
38598
|
init_array();
|
|
@@ -38606,24 +38621,24 @@ var init_selectParser = __esm(() => {
|
|
|
38606
38621
|
init_readonly();
|
|
38607
38622
|
});
|
|
38608
38623
|
|
|
38609
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parseDef.js
|
|
38624
|
+
// ../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
38625
|
var init_parseDef = __esm(() => {
|
|
38611
38626
|
init_Options();
|
|
38612
38627
|
init_selectParser();
|
|
38613
38628
|
init_any();
|
|
38614
38629
|
});
|
|
38615
38630
|
|
|
38616
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parseTypes.js
|
|
38631
|
+
// ../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
38632
|
var init_parseTypes = () => {};
|
|
38618
38633
|
|
|
38619
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js
|
|
38634
|
+
// ../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
38635
|
var init_zodToJsonSchema = __esm(() => {
|
|
38621
38636
|
init_parseDef();
|
|
38622
38637
|
init_Refs();
|
|
38623
38638
|
init_any();
|
|
38624
38639
|
});
|
|
38625
38640
|
|
|
38626
|
-
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/index.js
|
|
38641
|
+
// ../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
38642
|
var init_esm = __esm(() => {
|
|
38628
38643
|
init_zodToJsonSchema();
|
|
38629
38644
|
init_Options();
|
|
@@ -38659,7 +38674,7 @@ var init_esm = __esm(() => {
|
|
|
38659
38674
|
init_zodToJsonSchema();
|
|
38660
38675
|
});
|
|
38661
38676
|
|
|
38662
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js
|
|
38677
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js
|
|
38663
38678
|
function getMethodLiteral(schema) {
|
|
38664
38679
|
const shape = getObjectShape(schema);
|
|
38665
38680
|
const methodSchema = shape?.method;
|
|
@@ -38684,7 +38699,7 @@ var init_zod_json_schema_compat = __esm(() => {
|
|
|
38684
38699
|
init_esm();
|
|
38685
38700
|
});
|
|
38686
38701
|
|
|
38687
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js
|
|
38702
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js
|
|
38688
38703
|
class Protocol {
|
|
38689
38704
|
constructor(_options) {
|
|
38690
38705
|
this._options = _options;
|
|
@@ -39529,7 +39544,7 @@ var init_protocol4 = __esm(() => {
|
|
|
39529
39544
|
init_zod_json_schema_compat();
|
|
39530
39545
|
});
|
|
39531
39546
|
|
|
39532
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/code.js
|
|
39547
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/code.js
|
|
39533
39548
|
var require_code = __commonJS((exports2) => {
|
|
39534
39549
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
39535
39550
|
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 +39698,7 @@ var require_code = __commonJS((exports2) => {
|
|
|
39683
39698
|
exports2.regexpCode = regexpCode;
|
|
39684
39699
|
});
|
|
39685
39700
|
|
|
39686
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/scope.js
|
|
39701
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/scope.js
|
|
39687
39702
|
var require_scope = __commonJS((exports2) => {
|
|
39688
39703
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
39689
39704
|
exports2.ValueScope = exports2.ValueScopeName = exports2.Scope = exports2.varKinds = exports2.UsedValueState = undefined;
|
|
@@ -39829,7 +39844,7 @@ var require_scope = __commonJS((exports2) => {
|
|
|
39829
39844
|
exports2.ValueScope = ValueScope;
|
|
39830
39845
|
});
|
|
39831
39846
|
|
|
39832
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/index.js
|
|
39847
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/index.js
|
|
39833
39848
|
var require_codegen = __commonJS((exports2) => {
|
|
39834
39849
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
39835
39850
|
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 +40554,7 @@ var require_codegen = __commonJS((exports2) => {
|
|
|
40539
40554
|
}
|
|
40540
40555
|
});
|
|
40541
40556
|
|
|
40542
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/util.js
|
|
40557
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/util.js
|
|
40543
40558
|
var require_util2 = __commonJS((exports2) => {
|
|
40544
40559
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40545
40560
|
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 +40718,7 @@ var require_util2 = __commonJS((exports2) => {
|
|
|
40703
40718
|
exports2.checkStrictMode = checkStrictMode;
|
|
40704
40719
|
});
|
|
40705
40720
|
|
|
40706
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/names.js
|
|
40721
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/names.js
|
|
40707
40722
|
var require_names = __commonJS((exports2) => {
|
|
40708
40723
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40709
40724
|
var codegen_1 = require_codegen();
|
|
@@ -40728,7 +40743,7 @@ var require_names = __commonJS((exports2) => {
|
|
|
40728
40743
|
exports2.default = names;
|
|
40729
40744
|
});
|
|
40730
40745
|
|
|
40731
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/errors.js
|
|
40746
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/errors.js
|
|
40732
40747
|
var require_errors2 = __commonJS((exports2) => {
|
|
40733
40748
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40734
40749
|
exports2.extendErrors = exports2.resetErrorsCount = exports2.reportExtraError = exports2.reportError = exports2.keyword$DataError = exports2.keywordError = undefined;
|
|
@@ -40846,7 +40861,7 @@ var require_errors2 = __commonJS((exports2) => {
|
|
|
40846
40861
|
}
|
|
40847
40862
|
});
|
|
40848
40863
|
|
|
40849
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/boolSchema.js
|
|
40864
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/boolSchema.js
|
|
40850
40865
|
var require_boolSchema = __commonJS((exports2) => {
|
|
40851
40866
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40852
40867
|
exports2.boolOrEmptySchema = exports2.topBoolOrEmptySchema = undefined;
|
|
@@ -40894,7 +40909,7 @@ var require_boolSchema = __commonJS((exports2) => {
|
|
|
40894
40909
|
}
|
|
40895
40910
|
});
|
|
40896
40911
|
|
|
40897
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/rules.js
|
|
40912
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/rules.js
|
|
40898
40913
|
var require_rules = __commonJS((exports2) => {
|
|
40899
40914
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40900
40915
|
exports2.getRules = exports2.isJSONType = undefined;
|
|
@@ -40922,7 +40937,7 @@ var require_rules = __commonJS((exports2) => {
|
|
|
40922
40937
|
exports2.getRules = getRules;
|
|
40923
40938
|
});
|
|
40924
40939
|
|
|
40925
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/applicability.js
|
|
40940
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/applicability.js
|
|
40926
40941
|
var require_applicability = __commonJS((exports2) => {
|
|
40927
40942
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40928
40943
|
exports2.shouldUseRule = exports2.shouldUseGroup = exports2.schemaHasRulesForType = undefined;
|
|
@@ -40942,7 +40957,7 @@ var require_applicability = __commonJS((exports2) => {
|
|
|
40942
40957
|
exports2.shouldUseRule = shouldUseRule;
|
|
40943
40958
|
});
|
|
40944
40959
|
|
|
40945
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/dataType.js
|
|
40960
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/dataType.js
|
|
40946
40961
|
var require_dataType = __commonJS((exports2) => {
|
|
40947
40962
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40948
40963
|
exports2.reportTypeError = exports2.checkDataTypes = exports2.checkDataType = exports2.coerceAndCheckDataType = exports2.getJSONTypes = exports2.getSchemaTypes = exports2.DataType = undefined;
|
|
@@ -41123,7 +41138,7 @@ var require_dataType = __commonJS((exports2) => {
|
|
|
41123
41138
|
}
|
|
41124
41139
|
});
|
|
41125
41140
|
|
|
41126
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/defaults.js
|
|
41141
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/defaults.js
|
|
41127
41142
|
var require_defaults = __commonJS((exports2) => {
|
|
41128
41143
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41129
41144
|
exports2.assignDefaults = undefined;
|
|
@@ -41157,7 +41172,7 @@ var require_defaults = __commonJS((exports2) => {
|
|
|
41157
41172
|
}
|
|
41158
41173
|
});
|
|
41159
41174
|
|
|
41160
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/code.js
|
|
41175
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/code.js
|
|
41161
41176
|
var require_code2 = __commonJS((exports2) => {
|
|
41162
41177
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41163
41178
|
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 +41301,7 @@ var require_code2 = __commonJS((exports2) => {
|
|
|
41286
41301
|
exports2.validateUnion = validateUnion;
|
|
41287
41302
|
});
|
|
41288
41303
|
|
|
41289
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/keyword.js
|
|
41304
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/keyword.js
|
|
41290
41305
|
var require_keyword = __commonJS((exports2) => {
|
|
41291
41306
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41292
41307
|
exports2.validateKeywordUsage = exports2.validSchemaType = exports2.funcKeywordCode = exports2.macroKeywordCode = undefined;
|
|
@@ -41401,7 +41416,7 @@ var require_keyword = __commonJS((exports2) => {
|
|
|
41401
41416
|
exports2.validateKeywordUsage = validateKeywordUsage;
|
|
41402
41417
|
});
|
|
41403
41418
|
|
|
41404
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/subschema.js
|
|
41419
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/subschema.js
|
|
41405
41420
|
var require_subschema = __commonJS((exports2) => {
|
|
41406
41421
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41407
41422
|
exports2.extendSubschemaMode = exports2.extendSubschemaData = exports2.getSubschema = undefined;
|
|
@@ -41481,7 +41496,7 @@ var require_subschema = __commonJS((exports2) => {
|
|
|
41481
41496
|
exports2.extendSubschemaMode = extendSubschemaMode;
|
|
41482
41497
|
});
|
|
41483
41498
|
|
|
41484
|
-
// node_modules/.bun/fast-deep-equal@3.1.3/node_modules/fast-deep-equal/index.js
|
|
41499
|
+
// ../switchroom-sec-1417/node_modules/.bun/fast-deep-equal@3.1.3/node_modules/fast-deep-equal/index.js
|
|
41485
41500
|
var require_fast_deep_equal = __commonJS((exports2, module) => {
|
|
41486
41501
|
module.exports = function equal(a, b) {
|
|
41487
41502
|
if (a === b)
|
|
@@ -41523,7 +41538,7 @@ var require_fast_deep_equal = __commonJS((exports2, module) => {
|
|
|
41523
41538
|
};
|
|
41524
41539
|
});
|
|
41525
41540
|
|
|
41526
|
-
// node_modules/.bun/json-schema-traverse@1.0.0/node_modules/json-schema-traverse/index.js
|
|
41541
|
+
// ../switchroom-sec-1417/node_modules/.bun/json-schema-traverse@1.0.0/node_modules/json-schema-traverse/index.js
|
|
41527
41542
|
var require_json_schema_traverse = __commonJS((exports2, module) => {
|
|
41528
41543
|
var traverse = module.exports = function(schema, opts, cb) {
|
|
41529
41544
|
if (typeof opts == "function") {
|
|
@@ -41606,7 +41621,7 @@ var require_json_schema_traverse = __commonJS((exports2, module) => {
|
|
|
41606
41621
|
}
|
|
41607
41622
|
});
|
|
41608
41623
|
|
|
41609
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/resolve.js
|
|
41624
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/resolve.js
|
|
41610
41625
|
var require_resolve = __commonJS((exports2) => {
|
|
41611
41626
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41612
41627
|
exports2.getSchemaRefs = exports2.resolveUrl = exports2.normalizeId = exports2._getFullPath = exports2.getFullPath = exports2.inlineRef = undefined;
|
|
@@ -41759,7 +41774,7 @@ var require_resolve = __commonJS((exports2) => {
|
|
|
41759
41774
|
exports2.getSchemaRefs = getSchemaRefs;
|
|
41760
41775
|
});
|
|
41761
41776
|
|
|
41762
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/index.js
|
|
41777
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/index.js
|
|
41763
41778
|
var require_validate = __commonJS((exports2) => {
|
|
41764
41779
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41765
41780
|
exports2.getData = exports2.KeywordCxt = exports2.validateFunctionCode = undefined;
|
|
@@ -42264,7 +42279,7 @@ var require_validate = __commonJS((exports2) => {
|
|
|
42264
42279
|
exports2.getData = getData;
|
|
42265
42280
|
});
|
|
42266
42281
|
|
|
42267
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/validation_error.js
|
|
42282
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/validation_error.js
|
|
42268
42283
|
var require_validation_error = __commonJS((exports2) => {
|
|
42269
42284
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42270
42285
|
|
|
@@ -42278,7 +42293,7 @@ var require_validation_error = __commonJS((exports2) => {
|
|
|
42278
42293
|
exports2.default = ValidationError;
|
|
42279
42294
|
});
|
|
42280
42295
|
|
|
42281
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/ref_error.js
|
|
42296
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/ref_error.js
|
|
42282
42297
|
var require_ref_error = __commonJS((exports2) => {
|
|
42283
42298
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42284
42299
|
var resolve_1 = require_resolve();
|
|
@@ -42293,7 +42308,7 @@ var require_ref_error = __commonJS((exports2) => {
|
|
|
42293
42308
|
exports2.default = MissingRefError;
|
|
42294
42309
|
});
|
|
42295
42310
|
|
|
42296
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/index.js
|
|
42311
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/index.js
|
|
42297
42312
|
var require_compile = __commonJS((exports2) => {
|
|
42298
42313
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42299
42314
|
exports2.resolveSchema = exports2.getCompilingSchema = exports2.resolveRef = exports2.compileSchema = exports2.SchemaEnv = undefined;
|
|
@@ -42514,7 +42529,7 @@ var require_compile = __commonJS((exports2) => {
|
|
|
42514
42529
|
}
|
|
42515
42530
|
});
|
|
42516
42531
|
|
|
42517
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/data.json
|
|
42532
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/data.json
|
|
42518
42533
|
var require_data = __commonJS((exports2, module) => {
|
|
42519
42534
|
module.exports = {
|
|
42520
42535
|
$id: "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
|
|
@@ -42531,7 +42546,7 @@ var require_data = __commonJS((exports2, module) => {
|
|
|
42531
42546
|
};
|
|
42532
42547
|
});
|
|
42533
42548
|
|
|
42534
|
-
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/utils.js
|
|
42549
|
+
// ../switchroom-sec-1417/node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/utils.js
|
|
42535
42550
|
var require_utils2 = __commonJS((exports2, module) => {
|
|
42536
42551
|
var isUUID = RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu);
|
|
42537
42552
|
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 +42801,7 @@ var require_utils2 = __commonJS((exports2, module) => {
|
|
|
42786
42801
|
};
|
|
42787
42802
|
});
|
|
42788
42803
|
|
|
42789
|
-
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/schemes.js
|
|
42804
|
+
// ../switchroom-sec-1417/node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/schemes.js
|
|
42790
42805
|
var require_schemes = __commonJS((exports2, module) => {
|
|
42791
42806
|
var { isUUID } = require_utils2();
|
|
42792
42807
|
var URN_REG = /([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu;
|
|
@@ -42960,7 +42975,7 @@ var require_schemes = __commonJS((exports2, module) => {
|
|
|
42960
42975
|
};
|
|
42961
42976
|
});
|
|
42962
42977
|
|
|
42963
|
-
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/index.js
|
|
42978
|
+
// ../switchroom-sec-1417/node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/index.js
|
|
42964
42979
|
var require_fast_uri = __commonJS((exports2, module) => {
|
|
42965
42980
|
var { normalizeIPv6, removeDotSegments, recomposeAuthority, normalizeComponentEncoding, isIPv4, nonSimpleDomain } = require_utils2();
|
|
42966
42981
|
var { SCHEMES, getSchemeHandler } = require_schemes();
|
|
@@ -43211,7 +43226,7 @@ var require_fast_uri = __commonJS((exports2, module) => {
|
|
|
43211
43226
|
module.exports.fastUri = fastUri;
|
|
43212
43227
|
});
|
|
43213
43228
|
|
|
43214
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/uri.js
|
|
43229
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/uri.js
|
|
43215
43230
|
var require_uri = __commonJS((exports2) => {
|
|
43216
43231
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43217
43232
|
var uri = require_fast_uri();
|
|
@@ -43219,7 +43234,7 @@ var require_uri = __commonJS((exports2) => {
|
|
|
43219
43234
|
exports2.default = uri;
|
|
43220
43235
|
});
|
|
43221
43236
|
|
|
43222
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/core.js
|
|
43237
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/core.js
|
|
43223
43238
|
var require_core = __commonJS((exports2) => {
|
|
43224
43239
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43225
43240
|
exports2.CodeGen = exports2.Name = exports2.nil = exports2.stringify = exports2.str = exports2._ = exports2.KeywordCxt = undefined;
|
|
@@ -43812,7 +43827,7 @@ var require_core = __commonJS((exports2) => {
|
|
|
43812
43827
|
}
|
|
43813
43828
|
});
|
|
43814
43829
|
|
|
43815
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/id.js
|
|
43830
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/id.js
|
|
43816
43831
|
var require_id = __commonJS((exports2) => {
|
|
43817
43832
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43818
43833
|
var def = {
|
|
@@ -43824,7 +43839,7 @@ var require_id = __commonJS((exports2) => {
|
|
|
43824
43839
|
exports2.default = def;
|
|
43825
43840
|
});
|
|
43826
43841
|
|
|
43827
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/ref.js
|
|
43842
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/ref.js
|
|
43828
43843
|
var require_ref = __commonJS((exports2) => {
|
|
43829
43844
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43830
43845
|
exports2.callRef = exports2.getValidate = undefined;
|
|
@@ -43943,7 +43958,7 @@ var require_ref = __commonJS((exports2) => {
|
|
|
43943
43958
|
exports2.default = def;
|
|
43944
43959
|
});
|
|
43945
43960
|
|
|
43946
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/index.js
|
|
43961
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/index.js
|
|
43947
43962
|
var require_core2 = __commonJS((exports2) => {
|
|
43948
43963
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43949
43964
|
var id_1 = require_id();
|
|
@@ -43961,7 +43976,7 @@ var require_core2 = __commonJS((exports2) => {
|
|
|
43961
43976
|
exports2.default = core2;
|
|
43962
43977
|
});
|
|
43963
43978
|
|
|
43964
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.js
|
|
43979
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.js
|
|
43965
43980
|
var require_limitNumber = __commonJS((exports2) => {
|
|
43966
43981
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43967
43982
|
var codegen_1 = require_codegen();
|
|
@@ -43990,7 +44005,7 @@ var require_limitNumber = __commonJS((exports2) => {
|
|
|
43990
44005
|
exports2.default = def;
|
|
43991
44006
|
});
|
|
43992
44007
|
|
|
43993
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.js
|
|
44008
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.js
|
|
43994
44009
|
var require_multipleOf = __commonJS((exports2) => {
|
|
43995
44010
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43996
44011
|
var codegen_1 = require_codegen();
|
|
@@ -44015,7 +44030,7 @@ var require_multipleOf = __commonJS((exports2) => {
|
|
|
44015
44030
|
exports2.default = def;
|
|
44016
44031
|
});
|
|
44017
44032
|
|
|
44018
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/ucs2length.js
|
|
44033
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/ucs2length.js
|
|
44019
44034
|
var require_ucs2length = __commonJS((exports2) => {
|
|
44020
44035
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44021
44036
|
function ucs2length(str) {
|
|
@@ -44038,7 +44053,7 @@ var require_ucs2length = __commonJS((exports2) => {
|
|
|
44038
44053
|
ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
|
|
44039
44054
|
});
|
|
44040
44055
|
|
|
44041
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitLength.js
|
|
44056
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitLength.js
|
|
44042
44057
|
var require_limitLength = __commonJS((exports2) => {
|
|
44043
44058
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44044
44059
|
var codegen_1 = require_codegen();
|
|
@@ -44067,7 +44082,7 @@ var require_limitLength = __commonJS((exports2) => {
|
|
|
44067
44082
|
exports2.default = def;
|
|
44068
44083
|
});
|
|
44069
44084
|
|
|
44070
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/pattern.js
|
|
44085
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/pattern.js
|
|
44071
44086
|
var require_pattern = __commonJS((exports2) => {
|
|
44072
44087
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44073
44088
|
var code_1 = require_code2();
|
|
@@ -44101,7 +44116,7 @@ var require_pattern = __commonJS((exports2) => {
|
|
|
44101
44116
|
exports2.default = def;
|
|
44102
44117
|
});
|
|
44103
44118
|
|
|
44104
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitProperties.js
|
|
44119
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitProperties.js
|
|
44105
44120
|
var require_limitProperties = __commonJS((exports2) => {
|
|
44106
44121
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44107
44122
|
var codegen_1 = require_codegen();
|
|
@@ -44127,7 +44142,7 @@ var require_limitProperties = __commonJS((exports2) => {
|
|
|
44127
44142
|
exports2.default = def;
|
|
44128
44143
|
});
|
|
44129
44144
|
|
|
44130
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/required.js
|
|
44145
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/required.js
|
|
44131
44146
|
var require_required = __commonJS((exports2) => {
|
|
44132
44147
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44133
44148
|
var code_1 = require_code2();
|
|
@@ -44206,7 +44221,7 @@ var require_required = __commonJS((exports2) => {
|
|
|
44206
44221
|
exports2.default = def;
|
|
44207
44222
|
});
|
|
44208
44223
|
|
|
44209
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitItems.js
|
|
44224
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitItems.js
|
|
44210
44225
|
var require_limitItems = __commonJS((exports2) => {
|
|
44211
44226
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44212
44227
|
var codegen_1 = require_codegen();
|
|
@@ -44232,7 +44247,7 @@ var require_limitItems = __commonJS((exports2) => {
|
|
|
44232
44247
|
exports2.default = def;
|
|
44233
44248
|
});
|
|
44234
44249
|
|
|
44235
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/equal.js
|
|
44250
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/equal.js
|
|
44236
44251
|
var require_equal = __commonJS((exports2) => {
|
|
44237
44252
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44238
44253
|
var equal = require_fast_deep_equal();
|
|
@@ -44240,7 +44255,7 @@ var require_equal = __commonJS((exports2) => {
|
|
|
44240
44255
|
exports2.default = equal;
|
|
44241
44256
|
});
|
|
44242
44257
|
|
|
44243
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js
|
|
44258
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js
|
|
44244
44259
|
var require_uniqueItems = __commonJS((exports2) => {
|
|
44245
44260
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44246
44261
|
var dataType_1 = require_dataType();
|
|
@@ -44304,7 +44319,7 @@ var require_uniqueItems = __commonJS((exports2) => {
|
|
|
44304
44319
|
exports2.default = def;
|
|
44305
44320
|
});
|
|
44306
44321
|
|
|
44307
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/const.js
|
|
44322
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/const.js
|
|
44308
44323
|
var require_const = __commonJS((exports2) => {
|
|
44309
44324
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44310
44325
|
var codegen_1 = require_codegen();
|
|
@@ -44330,7 +44345,7 @@ var require_const = __commonJS((exports2) => {
|
|
|
44330
44345
|
exports2.default = def;
|
|
44331
44346
|
});
|
|
44332
44347
|
|
|
44333
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/enum.js
|
|
44348
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/enum.js
|
|
44334
44349
|
var require_enum = __commonJS((exports2) => {
|
|
44335
44350
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44336
44351
|
var codegen_1 = require_codegen();
|
|
@@ -44376,7 +44391,7 @@ var require_enum = __commonJS((exports2) => {
|
|
|
44376
44391
|
exports2.default = def;
|
|
44377
44392
|
});
|
|
44378
44393
|
|
|
44379
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/index.js
|
|
44394
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/index.js
|
|
44380
44395
|
var require_validation = __commonJS((exports2) => {
|
|
44381
44396
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44382
44397
|
var limitNumber_1 = require_limitNumber();
|
|
@@ -44406,7 +44421,7 @@ var require_validation = __commonJS((exports2) => {
|
|
|
44406
44421
|
exports2.default = validation;
|
|
44407
44422
|
});
|
|
44408
44423
|
|
|
44409
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
|
|
44424
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
|
|
44410
44425
|
var require_additionalItems = __commonJS((exports2) => {
|
|
44411
44426
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44412
44427
|
exports2.validateAdditionalItems = undefined;
|
|
@@ -44456,7 +44471,7 @@ var require_additionalItems = __commonJS((exports2) => {
|
|
|
44456
44471
|
exports2.default = def;
|
|
44457
44472
|
});
|
|
44458
44473
|
|
|
44459
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items.js
|
|
44474
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items.js
|
|
44460
44475
|
var require_items = __commonJS((exports2) => {
|
|
44461
44476
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44462
44477
|
exports2.validateTuple = undefined;
|
|
@@ -44510,7 +44525,7 @@ var require_items = __commonJS((exports2) => {
|
|
|
44510
44525
|
exports2.default = def;
|
|
44511
44526
|
});
|
|
44512
44527
|
|
|
44513
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js
|
|
44528
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js
|
|
44514
44529
|
var require_prefixItems = __commonJS((exports2) => {
|
|
44515
44530
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44516
44531
|
var items_1 = require_items();
|
|
@@ -44524,7 +44539,7 @@ var require_prefixItems = __commonJS((exports2) => {
|
|
|
44524
44539
|
exports2.default = def;
|
|
44525
44540
|
});
|
|
44526
44541
|
|
|
44527
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items2020.js
|
|
44542
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items2020.js
|
|
44528
44543
|
var require_items2020 = __commonJS((exports2) => {
|
|
44529
44544
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44530
44545
|
var codegen_1 = require_codegen();
|
|
@@ -44556,7 +44571,7 @@ var require_items2020 = __commonJS((exports2) => {
|
|
|
44556
44571
|
exports2.default = def;
|
|
44557
44572
|
});
|
|
44558
44573
|
|
|
44559
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/contains.js
|
|
44574
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/contains.js
|
|
44560
44575
|
var require_contains = __commonJS((exports2) => {
|
|
44561
44576
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44562
44577
|
var codegen_1 = require_codegen();
|
|
@@ -44647,7 +44662,7 @@ var require_contains = __commonJS((exports2) => {
|
|
|
44647
44662
|
exports2.default = def;
|
|
44648
44663
|
});
|
|
44649
44664
|
|
|
44650
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.js
|
|
44665
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.js
|
|
44651
44666
|
var require_dependencies = __commonJS((exports2) => {
|
|
44652
44667
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44653
44668
|
exports2.validateSchemaDeps = exports2.validatePropertyDeps = exports2.error = undefined;
|
|
@@ -44732,7 +44747,7 @@ var require_dependencies = __commonJS((exports2) => {
|
|
|
44732
44747
|
exports2.default = def;
|
|
44733
44748
|
});
|
|
44734
44749
|
|
|
44735
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js
|
|
44750
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js
|
|
44736
44751
|
var require_propertyNames = __commonJS((exports2) => {
|
|
44737
44752
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44738
44753
|
var codegen_1 = require_codegen();
|
|
@@ -44772,7 +44787,7 @@ var require_propertyNames = __commonJS((exports2) => {
|
|
|
44772
44787
|
exports2.default = def;
|
|
44773
44788
|
});
|
|
44774
44789
|
|
|
44775
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
|
|
44790
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
|
|
44776
44791
|
var require_additionalProperties = __commonJS((exports2) => {
|
|
44777
44792
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44778
44793
|
var code_1 = require_code2();
|
|
@@ -44875,7 +44890,7 @@ var require_additionalProperties = __commonJS((exports2) => {
|
|
|
44875
44890
|
exports2.default = def;
|
|
44876
44891
|
});
|
|
44877
44892
|
|
|
44878
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/properties.js
|
|
44893
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/properties.js
|
|
44879
44894
|
var require_properties = __commonJS((exports2) => {
|
|
44880
44895
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44881
44896
|
var validate_1 = require_validate();
|
|
@@ -44930,7 +44945,7 @@ var require_properties = __commonJS((exports2) => {
|
|
|
44930
44945
|
exports2.default = def;
|
|
44931
44946
|
});
|
|
44932
44947
|
|
|
44933
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js
|
|
44948
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js
|
|
44934
44949
|
var require_patternProperties = __commonJS((exports2) => {
|
|
44935
44950
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44936
44951
|
var code_1 = require_code2();
|
|
@@ -45001,7 +45016,7 @@ var require_patternProperties = __commonJS((exports2) => {
|
|
|
45001
45016
|
exports2.default = def;
|
|
45002
45017
|
});
|
|
45003
45018
|
|
|
45004
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/not.js
|
|
45019
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/not.js
|
|
45005
45020
|
var require_not = __commonJS((exports2) => {
|
|
45006
45021
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45007
45022
|
var util_1 = require_util2();
|
|
@@ -45029,7 +45044,7 @@ var require_not = __commonJS((exports2) => {
|
|
|
45029
45044
|
exports2.default = def;
|
|
45030
45045
|
});
|
|
45031
45046
|
|
|
45032
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.js
|
|
45047
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.js
|
|
45033
45048
|
var require_anyOf = __commonJS((exports2) => {
|
|
45034
45049
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45035
45050
|
var code_1 = require_code2();
|
|
@@ -45043,7 +45058,7 @@ var require_anyOf = __commonJS((exports2) => {
|
|
|
45043
45058
|
exports2.default = def;
|
|
45044
45059
|
});
|
|
45045
45060
|
|
|
45046
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.js
|
|
45061
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.js
|
|
45047
45062
|
var require_oneOf = __commonJS((exports2) => {
|
|
45048
45063
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45049
45064
|
var codegen_1 = require_codegen();
|
|
@@ -45098,7 +45113,7 @@ var require_oneOf = __commonJS((exports2) => {
|
|
|
45098
45113
|
exports2.default = def;
|
|
45099
45114
|
});
|
|
45100
45115
|
|
|
45101
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/allOf.js
|
|
45116
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/allOf.js
|
|
45102
45117
|
var require_allOf = __commonJS((exports2) => {
|
|
45103
45118
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45104
45119
|
var util_1 = require_util2();
|
|
@@ -45122,7 +45137,7 @@ var require_allOf = __commonJS((exports2) => {
|
|
|
45122
45137
|
exports2.default = def;
|
|
45123
45138
|
});
|
|
45124
45139
|
|
|
45125
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/if.js
|
|
45140
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/if.js
|
|
45126
45141
|
var require_if2 = __commonJS((exports2) => {
|
|
45127
45142
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45128
45143
|
var codegen_1 = require_codegen();
|
|
@@ -45188,7 +45203,7 @@ var require_if2 = __commonJS((exports2) => {
|
|
|
45188
45203
|
exports2.default = def;
|
|
45189
45204
|
});
|
|
45190
45205
|
|
|
45191
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/thenElse.js
|
|
45206
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/thenElse.js
|
|
45192
45207
|
var require_thenElse = __commonJS((exports2) => {
|
|
45193
45208
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45194
45209
|
var util_1 = require_util2();
|
|
@@ -45203,7 +45218,7 @@ var require_thenElse = __commonJS((exports2) => {
|
|
|
45203
45218
|
exports2.default = def;
|
|
45204
45219
|
});
|
|
45205
45220
|
|
|
45206
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/index.js
|
|
45221
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/index.js
|
|
45207
45222
|
var require_applicator = __commonJS((exports2) => {
|
|
45208
45223
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45209
45224
|
var additionalItems_1 = require_additionalItems();
|
|
@@ -45246,7 +45261,7 @@ var require_applicator = __commonJS((exports2) => {
|
|
|
45246
45261
|
exports2.default = getApplicator;
|
|
45247
45262
|
});
|
|
45248
45263
|
|
|
45249
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/format.js
|
|
45264
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/format.js
|
|
45250
45265
|
var require_format = __commonJS((exports2) => {
|
|
45251
45266
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45252
45267
|
var codegen_1 = require_codegen();
|
|
@@ -45333,7 +45348,7 @@ var require_format = __commonJS((exports2) => {
|
|
|
45333
45348
|
exports2.default = def;
|
|
45334
45349
|
});
|
|
45335
45350
|
|
|
45336
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/index.js
|
|
45351
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/index.js
|
|
45337
45352
|
var require_format2 = __commonJS((exports2) => {
|
|
45338
45353
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45339
45354
|
var format_1 = require_format();
|
|
@@ -45341,7 +45356,7 @@ var require_format2 = __commonJS((exports2) => {
|
|
|
45341
45356
|
exports2.default = format;
|
|
45342
45357
|
});
|
|
45343
45358
|
|
|
45344
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/metadata.js
|
|
45359
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/metadata.js
|
|
45345
45360
|
var require_metadata = __commonJS((exports2) => {
|
|
45346
45361
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45347
45362
|
exports2.contentVocabulary = exports2.metadataVocabulary = undefined;
|
|
@@ -45361,7 +45376,7 @@ var require_metadata = __commonJS((exports2) => {
|
|
|
45361
45376
|
];
|
|
45362
45377
|
});
|
|
45363
45378
|
|
|
45364
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/draft7.js
|
|
45379
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/draft7.js
|
|
45365
45380
|
var require_draft7 = __commonJS((exports2) => {
|
|
45366
45381
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45367
45382
|
var core_1 = require_core2();
|
|
@@ -45380,7 +45395,7 @@ var require_draft7 = __commonJS((exports2) => {
|
|
|
45380
45395
|
exports2.default = draft7Vocabularies;
|
|
45381
45396
|
});
|
|
45382
45397
|
|
|
45383
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/types.js
|
|
45398
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/types.js
|
|
45384
45399
|
var require_types = __commonJS((exports2) => {
|
|
45385
45400
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45386
45401
|
exports2.DiscrError = undefined;
|
|
@@ -45391,7 +45406,7 @@ var require_types = __commonJS((exports2) => {
|
|
|
45391
45406
|
})(DiscrError || (exports2.DiscrError = DiscrError = {}));
|
|
45392
45407
|
});
|
|
45393
45408
|
|
|
45394
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/index.js
|
|
45409
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/index.js
|
|
45395
45410
|
var require_discriminator = __commonJS((exports2) => {
|
|
45396
45411
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45397
45412
|
var codegen_1 = require_codegen();
|
|
@@ -45493,7 +45508,7 @@ var require_discriminator = __commonJS((exports2) => {
|
|
|
45493
45508
|
exports2.default = def;
|
|
45494
45509
|
});
|
|
45495
45510
|
|
|
45496
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/json-schema-draft-07.json
|
|
45511
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/json-schema-draft-07.json
|
|
45497
45512
|
var require_json_schema_draft_07 = __commonJS((exports2, module) => {
|
|
45498
45513
|
module.exports = {
|
|
45499
45514
|
$schema: "http://json-schema.org/draft-07/schema#",
|
|
@@ -45648,7 +45663,7 @@ var require_json_schema_draft_07 = __commonJS((exports2, module) => {
|
|
|
45648
45663
|
};
|
|
45649
45664
|
});
|
|
45650
45665
|
|
|
45651
|
-
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/ajv.js
|
|
45666
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/ajv.js
|
|
45652
45667
|
var require_ajv = __commonJS((exports2, module) => {
|
|
45653
45668
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45654
45669
|
exports2.MissingRefError = exports2.ValidationError = exports2.CodeGen = exports2.Name = exports2.nil = exports2.stringify = exports2.str = exports2._ = exports2.KeywordCxt = exports2.Ajv = undefined;
|
|
@@ -45716,7 +45731,7 @@ var require_ajv = __commonJS((exports2, module) => {
|
|
|
45716
45731
|
} });
|
|
45717
45732
|
});
|
|
45718
45733
|
|
|
45719
|
-
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/formats.js
|
|
45734
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/formats.js
|
|
45720
45735
|
var require_formats = __commonJS((exports2) => {
|
|
45721
45736
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45722
45737
|
exports2.formatNames = exports2.fastFormats = exports2.fullFormats = undefined;
|
|
@@ -45893,7 +45908,7 @@ var require_formats = __commonJS((exports2) => {
|
|
|
45893
45908
|
}
|
|
45894
45909
|
});
|
|
45895
45910
|
|
|
45896
|
-
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/limit.js
|
|
45911
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/limit.js
|
|
45897
45912
|
var require_limit = __commonJS((exports2) => {
|
|
45898
45913
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45899
45914
|
exports2.formatLimitDefinition = undefined;
|
|
@@ -45962,7 +45977,7 @@ var require_limit = __commonJS((exports2) => {
|
|
|
45962
45977
|
exports2.default = formatLimitPlugin;
|
|
45963
45978
|
});
|
|
45964
45979
|
|
|
45965
|
-
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/index.js
|
|
45980
|
+
// ../switchroom-sec-1417/node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/index.js
|
|
45966
45981
|
var require_dist2 = __commonJS((exports2, module) => {
|
|
45967
45982
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45968
45983
|
var formats_1 = require_formats();
|
|
@@ -46001,7 +46016,7 @@ var require_dist2 = __commonJS((exports2, module) => {
|
|
|
46001
46016
|
exports2.default = formatsPlugin;
|
|
46002
46017
|
});
|
|
46003
46018
|
|
|
46004
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
|
|
46019
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
|
|
46005
46020
|
function createDefaultAjvInstance() {
|
|
46006
46021
|
const ajv = new import_ajv.default({
|
|
46007
46022
|
strict: false,
|
|
@@ -46044,7 +46059,7 @@ var init_ajv_provider = __esm(() => {
|
|
|
46044
46059
|
import_ajv_formats = __toESM(require_dist2(), 1);
|
|
46045
46060
|
});
|
|
46046
46061
|
|
|
46047
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js
|
|
46062
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js
|
|
46048
46063
|
class ExperimentalServerTasks {
|
|
46049
46064
|
constructor(_server) {
|
|
46050
46065
|
this._server = _server;
|
|
@@ -46125,7 +46140,7 @@ var init_server = __esm(() => {
|
|
|
46125
46140
|
init_types2();
|
|
46126
46141
|
});
|
|
46127
46142
|
|
|
46128
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js
|
|
46143
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js
|
|
46129
46144
|
function assertToolsCallTaskCapability(requests, method, entityName) {
|
|
46130
46145
|
if (!requests) {
|
|
46131
46146
|
throw new Error(`${entityName} does not support task creation (required for ${method})`);
|
|
@@ -46160,7 +46175,7 @@ function assertClientRequestTaskCapability(requests, method, entityName) {
|
|
|
46160
46175
|
}
|
|
46161
46176
|
}
|
|
46162
46177
|
|
|
46163
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
46178
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
46164
46179
|
var Server;
|
|
46165
46180
|
var init_server2 = __esm(() => {
|
|
46166
46181
|
init_protocol4();
|
|
@@ -46501,7 +46516,7 @@ var init_server2 = __esm(() => {
|
|
|
46501
46516
|
};
|
|
46502
46517
|
});
|
|
46503
46518
|
|
|
46504
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
46519
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
46505
46520
|
class ReadBuffer {
|
|
46506
46521
|
append(chunk2) {
|
|
46507
46522
|
this._buffer = this._buffer ? Buffer.concat([this._buffer, chunk2]) : chunk2;
|
|
@@ -46534,7 +46549,7 @@ var init_stdio = __esm(() => {
|
|
|
46534
46549
|
init_types2();
|
|
46535
46550
|
});
|
|
46536
46551
|
|
|
46537
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
46552
|
+
// ../switchroom-sec-1417/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
46538
46553
|
import process3 from "node:process";
|
|
46539
46554
|
|
|
46540
46555
|
class StdioServerTransport {
|
|
@@ -47009,6 +47024,31 @@ async function dispatchTool2(name, args) {
|
|
|
47009
47024
|
};
|
|
47010
47025
|
break;
|
|
47011
47026
|
}
|
|
47027
|
+
case "config_propose_edit": {
|
|
47028
|
+
if (!args.unified_diff || typeof args.unified_diff !== "string") {
|
|
47029
|
+
return errorText2("config_propose_edit: unified_diff is required (non-empty string).");
|
|
47030
|
+
}
|
|
47031
|
+
if (!args.reason || typeof args.reason !== "string") {
|
|
47032
|
+
return errorText2("config_propose_edit: reason is required (non-empty string, \u2264500 chars).");
|
|
47033
|
+
}
|
|
47034
|
+
if (args.reason.length > 500) {
|
|
47035
|
+
return errorText2("config_propose_edit: reason is capped at 500 chars (RFC \u00a73.3).");
|
|
47036
|
+
}
|
|
47037
|
+
if (args.target_path !== "/state/config/switchroom.yaml") {
|
|
47038
|
+
return errorText2("config_propose_edit: target_path must be '/state/config/switchroom.yaml'.");
|
|
47039
|
+
}
|
|
47040
|
+
req = {
|
|
47041
|
+
v: 1,
|
|
47042
|
+
op: "config_propose_edit",
|
|
47043
|
+
request_id: makeRequestId("mcp-config-propose-edit"),
|
|
47044
|
+
args: {
|
|
47045
|
+
unified_diff: args.unified_diff,
|
|
47046
|
+
reason: args.reason,
|
|
47047
|
+
target_path: "/state/config/switchroom.yaml"
|
|
47048
|
+
}
|
|
47049
|
+
};
|
|
47050
|
+
break;
|
|
47051
|
+
}
|
|
47012
47052
|
default:
|
|
47013
47053
|
return errorText2(`unknown tool: ${name}`);
|
|
47014
47054
|
}
|
|
@@ -47219,6 +47259,32 @@ var init_server4 = __esm(() => {
|
|
|
47219
47259
|
}
|
|
47220
47260
|
}
|
|
47221
47261
|
},
|
|
47262
|
+
{
|
|
47263
|
+
name: "config_propose_edit",
|
|
47264
|
+
description: "Propose a unified-diff patch against /state/config/switchroom.yaml " + "(RFC admin-agent-config-edit). When fully shipped the host validates " + "the patch (applies cleanly + post-patch yaml parses against the " + "config schema) and raises a Telegram approval card in the OPERATOR's " + "primary chat \u2014 NOT yours; the requesting agent's chat is not the " + "approval surface. Admin-only at the wire layer. " + "Current status (PR 1a \u2014 skeleton): the tool is registered but the " + "feature is OFF by default; calling it returns " + "E_CONFIG_EDIT_DISABLED until the operator sets " + "hostd.config_edit_enabled=true in switchroom.yaml. Even when enabled " + "in this PR, the call returns E_NOT_IMPLEMENTED \u2014 the validation " + "pipeline (PR 1b) and apply path (PR 1c) ship in follow-up PRs.",
|
|
47265
|
+
inputSchema: {
|
|
47266
|
+
type: "object",
|
|
47267
|
+
required: ["unified_diff", "reason", "target_path"],
|
|
47268
|
+
properties: {
|
|
47269
|
+
unified_diff: {
|
|
47270
|
+
type: "string",
|
|
47271
|
+
minLength: 1,
|
|
47272
|
+
description: "Unified diff against switchroom.yaml. Must have \u22653 lines " + "context (enforced in PR 1b); no path-traversal or multi-file " + "diffs. LF-only, \u22641 MB."
|
|
47273
|
+
},
|
|
47274
|
+
reason: {
|
|
47275
|
+
type: "string",
|
|
47276
|
+
minLength: 1,
|
|
47277
|
+
maxLength: 500,
|
|
47278
|
+
description: "Human-readable rationale shown to the operator on the " + "approval card. Capped at 500 chars (RFC \u00a73.3)."
|
|
47279
|
+
},
|
|
47280
|
+
target_path: {
|
|
47281
|
+
type: "string",
|
|
47282
|
+
enum: ["/state/config/switchroom.yaml"],
|
|
47283
|
+
description: "Must be the literal string '/state/config/switchroom.yaml'. " + "Future-proofs against multi-file diffs and gives the validator " + "a single canonical path to anchor on."
|
|
47284
|
+
}
|
|
47285
|
+
}
|
|
47286
|
+
}
|
|
47287
|
+
},
|
|
47222
47288
|
{
|
|
47223
47289
|
name: "get_status",
|
|
47224
47290
|
description: "Read the most recent terminal `update_apply` audit row " + "(channel, pin, resolved_sha, install_context, result, " + "exit_code, stderr_tail). Use this after issuing an " + "`update_apply` to confirm what actually rolled out, or to " + "report the last update on demand. Returns the parsed audit " + "entry as JSON.",
|
|
@@ -47231,7 +47297,7 @@ var init_server4 = __esm(() => {
|
|
|
47231
47297
|
];
|
|
47232
47298
|
});
|
|
47233
47299
|
|
|
47234
|
-
// node_modules/.bun/commander@13.1.0/node_modules/commander/esm.mjs
|
|
47300
|
+
// ../switchroom-sec-1417/node_modules/.bun/commander@13.1.0/node_modules/commander/esm.mjs
|
|
47235
47301
|
var import__ = __toESM(require_commander(), 1);
|
|
47236
47302
|
var {
|
|
47237
47303
|
program,
|
|
@@ -47248,8 +47314,8 @@ var {
|
|
|
47248
47314
|
} = import__.default;
|
|
47249
47315
|
|
|
47250
47316
|
// src/build-info.ts
|
|
47251
|
-
var VERSION = "0.13.
|
|
47252
|
-
var COMMIT_SHA = "
|
|
47317
|
+
var VERSION = "0.13.7";
|
|
47318
|
+
var COMMIT_SHA = "84d28022";
|
|
47253
47319
|
|
|
47254
47320
|
// src/cli/agent.ts
|
|
47255
47321
|
init_source();
|
|
@@ -47522,6 +47588,10 @@ When you call \`mcp__switchroom-telegram__progress_update\` from inside this sub
|
|
|
47522
47588
|
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
47589
|
|
|
47524
47590
|
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.
|
|
47591
|
+
|
|
47592
|
+
## Vault / credential access
|
|
47593
|
+
|
|
47594
|
+
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
47595
|
`;
|
|
47526
47596
|
}
|
|
47527
47597
|
function applyTelegramProgressGuidance(body, args) {
|
|
@@ -56068,7 +56138,7 @@ function createAuditLogger(opts = {}) {
|
|
|
56068
56138
|
// src/vault/grants.ts
|
|
56069
56139
|
import { randomBytes as randomBytes7 } from "node:crypto";
|
|
56070
56140
|
|
|
56071
|
-
// node_modules/.bun/bcryptjs@3.0.3/node_modules/bcryptjs/index.js
|
|
56141
|
+
// ../switchroom-sec-1417/node_modules/.bun/bcryptjs@3.0.3/node_modules/bcryptjs/index.js
|
|
56072
56142
|
import nodeCrypto from "crypto";
|
|
56073
56143
|
var randomFallback = null;
|
|
56074
56144
|
function randomBytes6(len) {
|
|
@@ -62695,7 +62765,7 @@ function readRecentFires(jsonlPath) {
|
|
|
62695
62765
|
// src/web/api.ts
|
|
62696
62766
|
init_client3();
|
|
62697
62767
|
|
|
62698
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
62768
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
62699
62769
|
import { dirname as dirname7, posix, sep } from "path";
|
|
62700
62770
|
function createModulerModifier() {
|
|
62701
62771
|
const getModuleFromFileName = createGetModuleFromFilename();
|
|
@@ -62731,7 +62801,7 @@ function normalizeWindowsPath(path4) {
|
|
|
62731
62801
|
return path4.replace(/^[A-Z]:/, "").replace(/\\/g, "/");
|
|
62732
62802
|
}
|
|
62733
62803
|
|
|
62734
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
62804
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
62735
62805
|
var normalizeFlagsResponse = (flagsResponse) => {
|
|
62736
62806
|
if ("flags" in flagsResponse) {
|
|
62737
62807
|
const featureFlags = getFlagValuesFromFlags(flagsResponse.flags);
|
|
@@ -62802,7 +62872,7 @@ var parsePayload = (response) => {
|
|
|
62802
62872
|
}
|
|
62803
62873
|
};
|
|
62804
62874
|
|
|
62805
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/gzip.mjs
|
|
62875
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/gzip.mjs
|
|
62806
62876
|
function isGzipSupported() {
|
|
62807
62877
|
return "CompressionStream" in globalThis;
|
|
62808
62878
|
}
|
|
@@ -62822,7 +62892,7 @@ async function gzipCompress(input, isDebug = true) {
|
|
|
62822
62892
|
}
|
|
62823
62893
|
}
|
|
62824
62894
|
|
|
62825
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
62895
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
62826
62896
|
/*! For license information please see uuidv7.mjs.LICENSE.txt */
|
|
62827
62897
|
var DIGITS = "0123456789abcdef";
|
|
62828
62898
|
|
|
@@ -63000,7 +63070,7 @@ var defaultGenerator;
|
|
|
63000
63070
|
var uuidv7 = () => uuidv7obj().toString();
|
|
63001
63071
|
var uuidv7obj = () => (defaultGenerator || (defaultGenerator = new V7Generator)).generate();
|
|
63002
63072
|
|
|
63003
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/types.mjs
|
|
63073
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/types.mjs
|
|
63004
63074
|
var types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedProperty) {
|
|
63005
63075
|
PostHogPersistedProperty["AnonymousId"] = "anonymous_id";
|
|
63006
63076
|
PostHogPersistedProperty["DistinctId"] = "distinct_id";
|
|
@@ -63033,7 +63103,7 @@ var types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedPr
|
|
|
63033
63103
|
return PostHogPersistedProperty;
|
|
63034
63104
|
}({});
|
|
63035
63105
|
|
|
63036
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
63106
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
63037
63107
|
var DEFAULT_BLOCKED_UA_STRS = [
|
|
63038
63108
|
"amazonbot",
|
|
63039
63109
|
"amazonproductbot",
|
|
@@ -63122,7 +63192,7 @@ var isBlockedUA = function(ua, customBlockedUserAgents = []) {
|
|
|
63122
63192
|
return uaLower.indexOf(blockedUaLower) !== -1;
|
|
63123
63193
|
});
|
|
63124
63194
|
};
|
|
63125
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
63195
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
63126
63196
|
var nativeIsArray = Array.isArray;
|
|
63127
63197
|
var ObjProto = Object.prototype;
|
|
63128
63198
|
var type_utils_hasOwnProperty = ObjProto.hasOwnProperty;
|
|
@@ -63159,7 +63229,7 @@ function isInstanceOf(candidate, base) {
|
|
|
63159
63229
|
}
|
|
63160
63230
|
}
|
|
63161
63231
|
|
|
63162
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
63232
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
63163
63233
|
function clampToRange(value, min, max, logger, fallbackValue) {
|
|
63164
63234
|
if (min > max) {
|
|
63165
63235
|
logger.warn("min cannot be greater than max.");
|
|
@@ -63179,7 +63249,7 @@ function clampToRange(value, min, max, logger, fallbackValue) {
|
|
|
63179
63249
|
return clampToRange(fallbackValue || max, min, max, logger);
|
|
63180
63250
|
}
|
|
63181
63251
|
|
|
63182
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
63252
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
63183
63253
|
var ONE_DAY_IN_MS = 86400000;
|
|
63184
63254
|
|
|
63185
63255
|
class BucketedRateLimiter {
|
|
@@ -63223,7 +63293,7 @@ class BucketedRateLimiter {
|
|
|
63223
63293
|
this._buckets = {};
|
|
63224
63294
|
}
|
|
63225
63295
|
}
|
|
63226
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
63296
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
63227
63297
|
class PromiseQueue {
|
|
63228
63298
|
add(promise) {
|
|
63229
63299
|
const promiseUUID = uuidv7();
|
|
@@ -63249,7 +63319,7 @@ class PromiseQueue {
|
|
|
63249
63319
|
this.promiseByIds = {};
|
|
63250
63320
|
}
|
|
63251
63321
|
}
|
|
63252
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/logger.mjs
|
|
63322
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/logger.mjs
|
|
63253
63323
|
function createConsole(consoleLike = console) {
|
|
63254
63324
|
const lockedMethods = {
|
|
63255
63325
|
log: consoleLike.log.bind(consoleLike),
|
|
@@ -63287,7 +63357,7 @@ var passThrough = (fn) => fn();
|
|
|
63287
63357
|
function createLogger(prefix, maybeCall = passThrough) {
|
|
63288
63358
|
return _createLogger(prefix, maybeCall, createConsole());
|
|
63289
63359
|
}
|
|
63290
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
63360
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
63291
63361
|
var MOBILE = "Mobile";
|
|
63292
63362
|
var IOS = "iOS";
|
|
63293
63363
|
var ANDROID = "Android";
|
|
@@ -63544,7 +63614,7 @@ var osMatchers = [
|
|
|
63544
63614
|
]
|
|
63545
63615
|
];
|
|
63546
63616
|
|
|
63547
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/index.mjs
|
|
63617
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/index.mjs
|
|
63548
63618
|
var STRING_FORMAT = "utf8";
|
|
63549
63619
|
function assert(truthyValue, message) {
|
|
63550
63620
|
if (!truthyValue || typeof truthyValue != "string" || isEmpty(truthyValue))
|
|
@@ -63592,7 +63662,7 @@ function allSettled(promises) {
|
|
|
63592
63662
|
reason
|
|
63593
63663
|
}))));
|
|
63594
63664
|
}
|
|
63595
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/eventemitter.mjs
|
|
63665
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/eventemitter.mjs
|
|
63596
63666
|
class SimpleEventEmitter {
|
|
63597
63667
|
constructor() {
|
|
63598
63668
|
this.events = {};
|
|
@@ -63614,7 +63684,7 @@ class SimpleEventEmitter {
|
|
|
63614
63684
|
}
|
|
63615
63685
|
}
|
|
63616
63686
|
|
|
63617
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
63687
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
63618
63688
|
class PostHogFetchHttpError extends Error {
|
|
63619
63689
|
constructor(response, reqByteLength) {
|
|
63620
63690
|
super("HTTP error while fetching PostHog: status=" + response.status + ", reqByteLength=" + reqByteLength), this.response = response, this.reqByteLength = reqByteLength, this.name = "PostHogFetchHttpError";
|
|
@@ -64329,7 +64399,7 @@ class PostHogCoreStateless {
|
|
|
64329
64399
|
return this.shutdownPromise;
|
|
64330
64400
|
}
|
|
64331
64401
|
}
|
|
64332
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
64402
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
64333
64403
|
var exports_error_tracking = {};
|
|
64334
64404
|
__export(exports_error_tracking, {
|
|
64335
64405
|
winjsStackLineParser: () => winjsStackLineParser,
|
|
@@ -64353,7 +64423,7 @@ __export(exports_error_tracking, {
|
|
|
64353
64423
|
DOMExceptionCoercer: () => DOMExceptionCoercer
|
|
64354
64424
|
});
|
|
64355
64425
|
|
|
64356
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
64426
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
64357
64427
|
var parsedStackResults;
|
|
64358
64428
|
var lastKeysCount;
|
|
64359
64429
|
var cachedFilenameChunkIds;
|
|
@@ -64392,7 +64462,7 @@ function getFilenameToChunkIdMap(stackParser) {
|
|
|
64392
64462
|
return cachedFilenameChunkIds;
|
|
64393
64463
|
}
|
|
64394
64464
|
|
|
64395
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
64465
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
64396
64466
|
var MAX_CAUSE_RECURSION = 4;
|
|
64397
64467
|
|
|
64398
64468
|
class ErrorPropertiesBuilder {
|
|
@@ -64514,7 +64584,7 @@ class ErrorPropertiesBuilder {
|
|
|
64514
64584
|
return context;
|
|
64515
64585
|
}
|
|
64516
64586
|
}
|
|
64517
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
64587
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
64518
64588
|
var UNKNOWN_FUNCTION = "?";
|
|
64519
64589
|
function createFrame(platform, filename, func, lineno, colno) {
|
|
64520
64590
|
const frame = {
|
|
@@ -64530,7 +64600,7 @@ function createFrame(platform, filename, func, lineno, colno) {
|
|
|
64530
64600
|
return frame;
|
|
64531
64601
|
}
|
|
64532
64602
|
|
|
64533
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
64603
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
64534
64604
|
var extractSafariExtensionDetails = (func, filename) => {
|
|
64535
64605
|
const isSafariExtension = func.indexOf("safari-extension") !== -1;
|
|
64536
64606
|
const isSafariWebExtension = func.indexOf("safari-web-extension") !== -1;
|
|
@@ -64543,7 +64613,7 @@ var extractSafariExtensionDetails = (func, filename) => {
|
|
|
64543
64613
|
];
|
|
64544
64614
|
};
|
|
64545
64615
|
|
|
64546
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
64616
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
64547
64617
|
var chromeRegexNoFnName = /^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i;
|
|
64548
64618
|
var chromeRegex = /^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i;
|
|
64549
64619
|
var chromeEvalRegex = /\((\S*)(?::(\d+))(?::(\d+))\)/;
|
|
@@ -64569,7 +64639,7 @@ var chromeStackLineParser = (line, platform) => {
|
|
|
64569
64639
|
}
|
|
64570
64640
|
};
|
|
64571
64641
|
|
|
64572
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
64642
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
64573
64643
|
var geckoREgex = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i;
|
|
64574
64644
|
var geckoEvalRegex = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i;
|
|
64575
64645
|
var geckoStackLineParser = (line, platform) => {
|
|
@@ -64592,14 +64662,14 @@ var geckoStackLineParser = (line, platform) => {
|
|
|
64592
64662
|
}
|
|
64593
64663
|
};
|
|
64594
64664
|
|
|
64595
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
64665
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
64596
64666
|
var winjsRegex = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:[-a-z]+):.*?):(\d+)(?::(\d+))?\)?\s*$/i;
|
|
64597
64667
|
var winjsStackLineParser = (line, platform) => {
|
|
64598
64668
|
const parts = winjsRegex.exec(line);
|
|
64599
64669
|
return parts ? createFrame(platform, parts[2], parts[1] || UNKNOWN_FUNCTION, +parts[3], parts[4] ? +parts[4] : undefined) : undefined;
|
|
64600
64670
|
};
|
|
64601
64671
|
|
|
64602
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
64672
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
64603
64673
|
var opera10Regex = / line (\d+).*script (?:in )?(\S+)(?:: in function (\S+))?$/i;
|
|
64604
64674
|
var opera10StackLineParser = (line, platform) => {
|
|
64605
64675
|
const parts = opera10Regex.exec(line);
|
|
@@ -64611,7 +64681,7 @@ var opera11StackLineParser = (line, platform) => {
|
|
|
64611
64681
|
return parts ? createFrame(platform, parts[5], parts[3] || parts[4] || UNKNOWN_FUNCTION, +parts[1], +parts[2]) : undefined;
|
|
64612
64682
|
};
|
|
64613
64683
|
|
|
64614
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
64684
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
64615
64685
|
var FILENAME_MATCH = /^\s*[-]{4,}$/;
|
|
64616
64686
|
var FULL_MATCH = /at (?:async )?(?:(.+?)\s+\()?(?:(.+):(\d+):(\d+)?|([^)]+))\)?/;
|
|
64617
64687
|
var nodeStackLineParser = (line, platform) => {
|
|
@@ -64680,7 +64750,7 @@ function _parseIntOrUndefined(input) {
|
|
|
64680
64750
|
return parseInt(input || "", 10) || undefined;
|
|
64681
64751
|
}
|
|
64682
64752
|
|
|
64683
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
64753
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
64684
64754
|
var WEBPACK_ERROR_REGEXP = /\(error: (.*)\)/;
|
|
64685
64755
|
var STACKTRACE_FRAME_LIMIT = 50;
|
|
64686
64756
|
function reverseAndStripFrames(stack) {
|
|
@@ -64725,7 +64795,7 @@ function createStackParser(platform, ...parsers) {
|
|
|
64725
64795
|
return reverseAndStripFrames(frames);
|
|
64726
64796
|
};
|
|
64727
64797
|
}
|
|
64728
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
64798
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
64729
64799
|
class DOMExceptionCoercer {
|
|
64730
64800
|
match(err) {
|
|
64731
64801
|
return this.isDOMException(err) || this.isDOMError(err);
|
|
@@ -64755,7 +64825,7 @@ class DOMExceptionCoercer {
|
|
|
64755
64825
|
return isBuiltin(err, "DOMError");
|
|
64756
64826
|
}
|
|
64757
64827
|
}
|
|
64758
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
64828
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
64759
64829
|
class ErrorCoercer {
|
|
64760
64830
|
match(err) {
|
|
64761
64831
|
return isPlainError(err);
|
|
@@ -64782,7 +64852,7 @@ class ErrorCoercer {
|
|
|
64782
64852
|
return err.stacktrace || err.stack || undefined;
|
|
64783
64853
|
}
|
|
64784
64854
|
}
|
|
64785
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
64855
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
64786
64856
|
class ErrorEventCoercer {
|
|
64787
64857
|
constructor() {}
|
|
64788
64858
|
match(err) {
|
|
@@ -64800,7 +64870,7 @@ class ErrorEventCoercer {
|
|
|
64800
64870
|
return exceptionLike;
|
|
64801
64871
|
}
|
|
64802
64872
|
}
|
|
64803
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
64873
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
64804
64874
|
var ERROR_TYPES_PATTERN = /^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i;
|
|
64805
64875
|
|
|
64806
64876
|
class StringCoercer {
|
|
@@ -64830,7 +64900,7 @@ class StringCoercer {
|
|
|
64830
64900
|
];
|
|
64831
64901
|
}
|
|
64832
64902
|
}
|
|
64833
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
64903
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
64834
64904
|
var severityLevels = [
|
|
64835
64905
|
"fatal",
|
|
64836
64906
|
"error",
|
|
@@ -64840,7 +64910,7 @@ var severityLevels = [
|
|
|
64840
64910
|
"debug"
|
|
64841
64911
|
];
|
|
64842
64912
|
|
|
64843
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
64913
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
64844
64914
|
function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
64845
64915
|
const keys = Object.keys(err);
|
|
64846
64916
|
keys.sort();
|
|
@@ -64857,7 +64927,7 @@ function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
|
64857
64927
|
return "";
|
|
64858
64928
|
}
|
|
64859
64929
|
|
|
64860
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
64930
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
64861
64931
|
class ObjectCoercer {
|
|
64862
64932
|
match(candidate) {
|
|
64863
64933
|
return typeof candidate == "object" && candidate !== null;
|
|
@@ -64910,7 +64980,7 @@ class ObjectCoercer {
|
|
|
64910
64980
|
}
|
|
64911
64981
|
}
|
|
64912
64982
|
}
|
|
64913
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
64983
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
64914
64984
|
class EventCoercer {
|
|
64915
64985
|
match(err) {
|
|
64916
64986
|
return isEvent(err);
|
|
@@ -64925,7 +64995,7 @@ class EventCoercer {
|
|
|
64925
64995
|
};
|
|
64926
64996
|
}
|
|
64927
64997
|
}
|
|
64928
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
64998
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
64929
64999
|
class PrimitiveCoercer {
|
|
64930
65000
|
match(candidate) {
|
|
64931
65001
|
return isPrimitive(candidate);
|
|
@@ -64939,7 +65009,7 @@ class PrimitiveCoercer {
|
|
|
64939
65009
|
};
|
|
64940
65010
|
}
|
|
64941
65011
|
}
|
|
64942
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
65012
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
64943
65013
|
class PromiseRejectionEventCoercer {
|
|
64944
65014
|
match(err) {
|
|
64945
65015
|
return isBuiltin(err, "PromiseRejectionEvent") || this.isCustomEventWrappingRejection(err);
|
|
@@ -64975,7 +65045,7 @@ class PromiseRejectionEventCoercer {
|
|
|
64975
65045
|
return error;
|
|
64976
65046
|
}
|
|
64977
65047
|
}
|
|
64978
|
-
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
65048
|
+
// ../switchroom-sec-1417/node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
64979
65049
|
class ReduceableCache {
|
|
64980
65050
|
constructor(_maxSize) {
|
|
64981
65051
|
this._maxSize = _maxSize;
|
|
@@ -65000,7 +65070,7 @@ class ReduceableCache {
|
|
|
65000
65070
|
}
|
|
65001
65071
|
}
|
|
65002
65072
|
}
|
|
65003
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
65073
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
65004
65074
|
import { createReadStream } from "node:fs";
|
|
65005
65075
|
import { createInterface as createInterface5 } from "node:readline";
|
|
65006
65076
|
var LRU_FILE_CONTENTS_CACHE = new exports_error_tracking.ReduceableCache(25);
|
|
@@ -65218,7 +65288,7 @@ function snipLine(line, colno) {
|
|
|
65218
65288
|
return newLine;
|
|
65219
65289
|
}
|
|
65220
65290
|
|
|
65221
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
65291
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
65222
65292
|
function makeUncaughtExceptionHandler(captureFn, onFatalFn) {
|
|
65223
65293
|
let calledFatalError = false;
|
|
65224
65294
|
return Object.assign((error) => {
|
|
@@ -65250,7 +65320,7 @@ function addUnhandledRejectionListener(captureFn) {
|
|
|
65250
65320
|
}));
|
|
65251
65321
|
}
|
|
65252
65322
|
|
|
65253
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
65323
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
65254
65324
|
var SHUTDOWN_TIMEOUT = 2000;
|
|
65255
65325
|
|
|
65256
65326
|
class ErrorTracking {
|
|
@@ -65319,10 +65389,10 @@ class ErrorTracking {
|
|
|
65319
65389
|
}
|
|
65320
65390
|
}
|
|
65321
65391
|
|
|
65322
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/version.mjs
|
|
65392
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/version.mjs
|
|
65323
65393
|
var version = "5.29.2";
|
|
65324
65394
|
|
|
65325
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/types.mjs
|
|
65395
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/types.mjs
|
|
65326
65396
|
var FeatureFlagError2 = {
|
|
65327
65397
|
ERRORS_WHILE_COMPUTING: "errors_while_computing_flags",
|
|
65328
65398
|
FLAG_MISSING: "flag_missing",
|
|
@@ -65330,7 +65400,7 @@ var FeatureFlagError2 = {
|
|
|
65330
65400
|
UNKNOWN_ERROR: "unknown_error"
|
|
65331
65401
|
};
|
|
65332
65402
|
|
|
65333
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
65403
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
65334
65404
|
async function hashSHA1(text) {
|
|
65335
65405
|
const subtle = globalThis.crypto?.subtle;
|
|
65336
65406
|
if (!subtle)
|
|
@@ -65340,7 +65410,7 @@ async function hashSHA1(text) {
|
|
|
65340
65410
|
return hashArray.map((byte) => byte.toString(16).padStart(2, "0")).join("");
|
|
65341
65411
|
}
|
|
65342
65412
|
|
|
65343
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
65413
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
65344
65414
|
var SIXTY_SECONDS = 60000;
|
|
65345
65415
|
var LONG_SCALE = 1152921504606847000;
|
|
65346
65416
|
var NULL_VALUES_ALLOWED_OPERATORS = [
|
|
@@ -66214,7 +66284,7 @@ function relativeDateParseForFeatureFlagMatching(value) {
|
|
|
66214
66284
|
}
|
|
66215
66285
|
}
|
|
66216
66286
|
|
|
66217
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/storage-memory.mjs
|
|
66287
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/storage-memory.mjs
|
|
66218
66288
|
class PostHogMemoryStorage {
|
|
66219
66289
|
getProperty(key) {
|
|
66220
66290
|
return this._memoryStorage[key];
|
|
@@ -66227,7 +66297,7 @@ class PostHogMemoryStorage {
|
|
|
66227
66297
|
}
|
|
66228
66298
|
}
|
|
66229
66299
|
|
|
66230
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/client.mjs
|
|
66300
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/client.mjs
|
|
66231
66301
|
var MINIMUM_POLLING_INTERVAL = 100;
|
|
66232
66302
|
var THIRTY_SECONDS = 30000;
|
|
66233
66303
|
var MAX_CACHE_SIZE = 50000;
|
|
@@ -67015,7 +67085,7 @@ class PostHogBackendClient extends PostHogCoreStateless {
|
|
|
67015
67085
|
}
|
|
67016
67086
|
}
|
|
67017
67087
|
|
|
67018
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
67088
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
67019
67089
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
67020
67090
|
|
|
67021
67091
|
class PostHogContext {
|
|
@@ -67046,7 +67116,7 @@ class PostHogContext {
|
|
|
67046
67116
|
}
|
|
67047
67117
|
}
|
|
67048
67118
|
|
|
67049
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
67119
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
67050
67120
|
var NAME = "posthog-node";
|
|
67051
67121
|
function createEventProcessor(_posthog, { organization, projectId, prefix, severityAllowList = [
|
|
67052
67122
|
"error"
|
|
@@ -67114,7 +67184,7 @@ class PostHogSentryIntegration {
|
|
|
67114
67184
|
};
|
|
67115
67185
|
}
|
|
67116
67186
|
}
|
|
67117
|
-
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
67187
|
+
// ../switchroom-sec-1417/node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
67118
67188
|
ErrorTracking.errorPropertiesBuilder = new exports_error_tracking.ErrorPropertiesBuilder([
|
|
67119
67189
|
new exports_error_tracking.EventCoercer,
|
|
67120
67190
|
new exports_error_tracking.ErrorCoercer,
|