switchroom 0.14.5 → 0.14.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/dist/agent-scheduler/index.js +95 -81
- package/dist/auth-broker/index.js +95 -81
- package/dist/cli/drive-write-pretool.mjs +10 -10
- package/dist/cli/notion-write-pretool.mjs +97 -83
- package/dist/cli/skill-validate-pretool.mjs +72 -72
- package/dist/cli/switchroom.js +373 -359
- package/dist/host-control/main.js +163 -149
- package/dist/vault/approvals/kernel-server.js +97 -83
- package/dist/vault/broker/server.js +98 -84
- package/examples/switchroom.yaml +1 -1
- package/package.json +1 -1
- package/skills/switchroom-status/SKILL.md +1 -1
- package/telegram-plugin/dist/bridge/bridge.js +112 -112
- package/telegram-plugin/dist/gateway/gateway.js +219 -193
- package/telegram-plugin/dist/server.js +160 -160
|
@@ -292,6 +292,18 @@ function mergeAgentConfig(defaultsIn, agentIn) {
|
|
|
292
292
|
...merged.cli_args ?? []
|
|
293
293
|
];
|
|
294
294
|
}
|
|
295
|
+
if (defaults.allowed_tools || merged.allowed_tools) {
|
|
296
|
+
merged.allowed_tools = dedupe([
|
|
297
|
+
...defaults.allowed_tools ?? [],
|
|
298
|
+
...merged.allowed_tools ?? []
|
|
299
|
+
]);
|
|
300
|
+
}
|
|
301
|
+
if (defaults.disallowed_tools || merged.disallowed_tools) {
|
|
302
|
+
merged.disallowed_tools = dedupe([
|
|
303
|
+
...defaults.disallowed_tools ?? [],
|
|
304
|
+
...merged.disallowed_tools ?? []
|
|
305
|
+
]);
|
|
306
|
+
}
|
|
295
307
|
if (defaults.extra_stable_files || merged.extra_stable_files) {
|
|
296
308
|
const d = defaults.extra_stable_files ?? [];
|
|
297
309
|
const a = merged.extra_stable_files ?? [];
|
|
@@ -328,7 +340,7 @@ var init_merge = __esm(() => {
|
|
|
328
340
|
})(mergeAgentConfig ||= {});
|
|
329
341
|
});
|
|
330
342
|
|
|
331
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
|
|
343
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
|
|
332
344
|
var require_identity = __commonJS((exports) => {
|
|
333
345
|
var ALIAS = Symbol.for("yaml.alias");
|
|
334
346
|
var DOC = Symbol.for("yaml.document");
|
|
@@ -382,7 +394,7 @@ var require_identity = __commonJS((exports) => {
|
|
|
382
394
|
exports.isSeq = isSeq;
|
|
383
395
|
});
|
|
384
396
|
|
|
385
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
|
|
397
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
|
|
386
398
|
var require_visit = __commonJS((exports) => {
|
|
387
399
|
var identity = require_identity();
|
|
388
400
|
var BREAK = Symbol("break visit");
|
|
@@ -537,7 +549,7 @@ var require_visit = __commonJS((exports) => {
|
|
|
537
549
|
exports.visitAsync = visitAsync;
|
|
538
550
|
});
|
|
539
551
|
|
|
540
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
|
|
552
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
|
|
541
553
|
var require_directives = __commonJS((exports) => {
|
|
542
554
|
var identity = require_identity();
|
|
543
555
|
var visit = require_visit();
|
|
@@ -689,7 +701,7 @@ var require_directives = __commonJS((exports) => {
|
|
|
689
701
|
exports.Directives = Directives;
|
|
690
702
|
});
|
|
691
703
|
|
|
692
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
|
|
704
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
|
|
693
705
|
var require_anchors = __commonJS((exports) => {
|
|
694
706
|
var identity = require_identity();
|
|
695
707
|
var visit = require_visit();
|
|
@@ -751,7 +763,7 @@ var require_anchors = __commonJS((exports) => {
|
|
|
751
763
|
exports.findNewAnchor = findNewAnchor;
|
|
752
764
|
});
|
|
753
765
|
|
|
754
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
|
|
766
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
|
|
755
767
|
var require_applyReviver = __commonJS((exports) => {
|
|
756
768
|
function applyReviver(reviver, obj, key, val) {
|
|
757
769
|
if (val && typeof val === "object") {
|
|
@@ -798,7 +810,7 @@ var require_applyReviver = __commonJS((exports) => {
|
|
|
798
810
|
exports.applyReviver = applyReviver;
|
|
799
811
|
});
|
|
800
812
|
|
|
801
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
|
|
813
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
|
|
802
814
|
var require_toJS = __commonJS((exports) => {
|
|
803
815
|
var identity = require_identity();
|
|
804
816
|
function toJS(value, arg, ctx) {
|
|
@@ -825,7 +837,7 @@ var require_toJS = __commonJS((exports) => {
|
|
|
825
837
|
exports.toJS = toJS;
|
|
826
838
|
});
|
|
827
839
|
|
|
828
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
|
|
840
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
|
|
829
841
|
var require_Node = __commonJS((exports) => {
|
|
830
842
|
var applyReviver = require_applyReviver();
|
|
831
843
|
var identity = require_identity();
|
|
@@ -862,7 +874,7 @@ var require_Node = __commonJS((exports) => {
|
|
|
862
874
|
exports.NodeBase = NodeBase;
|
|
863
875
|
});
|
|
864
876
|
|
|
865
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
|
|
877
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
|
|
866
878
|
var require_Alias = __commonJS((exports) => {
|
|
867
879
|
var anchors = require_anchors();
|
|
868
880
|
var visit = require_visit();
|
|
@@ -970,7 +982,7 @@ var require_Alias = __commonJS((exports) => {
|
|
|
970
982
|
exports.Alias = Alias;
|
|
971
983
|
});
|
|
972
984
|
|
|
973
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
|
|
985
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
|
|
974
986
|
var require_Scalar = __commonJS((exports) => {
|
|
975
987
|
var identity = require_identity();
|
|
976
988
|
var Node = require_Node();
|
|
@@ -998,7 +1010,7 @@ var require_Scalar = __commonJS((exports) => {
|
|
|
998
1010
|
exports.isScalarValue = isScalarValue;
|
|
999
1011
|
});
|
|
1000
1012
|
|
|
1001
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
|
|
1013
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
|
|
1002
1014
|
var require_createNode = __commonJS((exports) => {
|
|
1003
1015
|
var Alias = require_Alias();
|
|
1004
1016
|
var identity = require_identity();
|
|
@@ -1070,7 +1082,7 @@ var require_createNode = __commonJS((exports) => {
|
|
|
1070
1082
|
exports.createNode = createNode;
|
|
1071
1083
|
});
|
|
1072
1084
|
|
|
1073
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
|
|
1085
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
|
|
1074
1086
|
var require_Collection = __commonJS((exports) => {
|
|
1075
1087
|
var createNode = require_createNode();
|
|
1076
1088
|
var identity = require_identity();
|
|
@@ -1185,7 +1197,7 @@ var require_Collection = __commonJS((exports) => {
|
|
|
1185
1197
|
exports.isEmptyPath = isEmptyPath;
|
|
1186
1198
|
});
|
|
1187
1199
|
|
|
1188
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
|
|
1200
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
|
|
1189
1201
|
var require_stringifyComment = __commonJS((exports) => {
|
|
1190
1202
|
var stringifyComment = (str) => str.replace(/^(?!$)(?: $)?/gm, "#");
|
|
1191
1203
|
function indentComment(comment, indent) {
|
|
@@ -1202,7 +1214,7 @@ var require_stringifyComment = __commonJS((exports) => {
|
|
|
1202
1214
|
exports.stringifyComment = stringifyComment;
|
|
1203
1215
|
});
|
|
1204
1216
|
|
|
1205
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
|
|
1217
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
|
|
1206
1218
|
var require_foldFlowLines = __commonJS((exports) => {
|
|
1207
1219
|
var FOLD_FLOW = "flow";
|
|
1208
1220
|
var FOLD_BLOCK = "block";
|
|
@@ -1339,7 +1351,7 @@ ${indent}${text.slice(fold + 1, end2)}`;
|
|
|
1339
1351
|
exports.foldFlowLines = foldFlowLines;
|
|
1340
1352
|
});
|
|
1341
1353
|
|
|
1342
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
|
|
1354
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
|
|
1343
1355
|
var require_stringifyString = __commonJS((exports) => {
|
|
1344
1356
|
var Scalar = require_Scalar();
|
|
1345
1357
|
var foldFlowLines = require_foldFlowLines();
|
|
@@ -1637,7 +1649,7 @@ ${indent}`);
|
|
|
1637
1649
|
exports.stringifyString = stringifyString;
|
|
1638
1650
|
});
|
|
1639
1651
|
|
|
1640
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
|
|
1652
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
|
|
1641
1653
|
var require_stringify = __commonJS((exports) => {
|
|
1642
1654
|
var anchors = require_anchors();
|
|
1643
1655
|
var identity = require_identity();
|
|
@@ -1758,7 +1770,7 @@ ${ctx.indent}${str}`;
|
|
|
1758
1770
|
exports.stringify = stringify;
|
|
1759
1771
|
});
|
|
1760
1772
|
|
|
1761
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
|
|
1773
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
|
|
1762
1774
|
var require_stringifyPair = __commonJS((exports) => {
|
|
1763
1775
|
var identity = require_identity();
|
|
1764
1776
|
var Scalar = require_Scalar();
|
|
@@ -1894,7 +1906,7 @@ ${ctx.indent}`;
|
|
|
1894
1906
|
exports.stringifyPair = stringifyPair;
|
|
1895
1907
|
});
|
|
1896
1908
|
|
|
1897
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
|
|
1909
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
|
|
1898
1910
|
var require_log = __commonJS((exports) => {
|
|
1899
1911
|
var node_process = __require("process");
|
|
1900
1912
|
function debug(logLevel, ...messages) {
|
|
@@ -1913,7 +1925,7 @@ var require_log = __commonJS((exports) => {
|
|
|
1913
1925
|
exports.warn = warn;
|
|
1914
1926
|
});
|
|
1915
1927
|
|
|
1916
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
|
|
1928
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
|
|
1917
1929
|
var require_merge = __commonJS((exports) => {
|
|
1918
1930
|
var identity = require_identity();
|
|
1919
1931
|
var Scalar = require_Scalar();
|
|
@@ -1967,7 +1979,7 @@ var require_merge = __commonJS((exports) => {
|
|
|
1967
1979
|
exports.merge = merge;
|
|
1968
1980
|
});
|
|
1969
1981
|
|
|
1970
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
|
|
1982
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
|
|
1971
1983
|
var require_addPairToJSMap = __commonJS((exports) => {
|
|
1972
1984
|
var log = require_log();
|
|
1973
1985
|
var merge = require_merge();
|
|
@@ -2028,7 +2040,7 @@ var require_addPairToJSMap = __commonJS((exports) => {
|
|
|
2028
2040
|
exports.addPairToJSMap = addPairToJSMap;
|
|
2029
2041
|
});
|
|
2030
2042
|
|
|
2031
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
|
|
2043
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
|
|
2032
2044
|
var require_Pair = __commonJS((exports) => {
|
|
2033
2045
|
var createNode = require_createNode();
|
|
2034
2046
|
var stringifyPair = require_stringifyPair();
|
|
@@ -2066,7 +2078,7 @@ var require_Pair = __commonJS((exports) => {
|
|
|
2066
2078
|
exports.createPair = createPair;
|
|
2067
2079
|
});
|
|
2068
2080
|
|
|
2069
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
|
|
2081
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
|
|
2070
2082
|
var require_stringifyCollection = __commonJS((exports) => {
|
|
2071
2083
|
var identity = require_identity();
|
|
2072
2084
|
var stringify = require_stringify();
|
|
@@ -2218,7 +2230,7 @@ ${indent}${end}`;
|
|
|
2218
2230
|
exports.stringifyCollection = stringifyCollection;
|
|
2219
2231
|
});
|
|
2220
2232
|
|
|
2221
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
|
|
2233
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
|
|
2222
2234
|
var require_YAMLMap = __commonJS((exports) => {
|
|
2223
2235
|
var stringifyCollection = require_stringifyCollection();
|
|
2224
2236
|
var addPairToJSMap = require_addPairToJSMap();
|
|
@@ -2345,7 +2357,7 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
|
2345
2357
|
exports.findPair = findPair;
|
|
2346
2358
|
});
|
|
2347
2359
|
|
|
2348
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
|
|
2360
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
|
|
2349
2361
|
var require_map = __commonJS((exports) => {
|
|
2350
2362
|
var identity = require_identity();
|
|
2351
2363
|
var YAMLMap = require_YAMLMap();
|
|
@@ -2364,7 +2376,7 @@ var require_map = __commonJS((exports) => {
|
|
|
2364
2376
|
exports.map = map;
|
|
2365
2377
|
});
|
|
2366
2378
|
|
|
2367
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
|
|
2379
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
|
|
2368
2380
|
var require_YAMLSeq = __commonJS((exports) => {
|
|
2369
2381
|
var createNode = require_createNode();
|
|
2370
2382
|
var stringifyCollection = require_stringifyCollection();
|
|
@@ -2457,7 +2469,7 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
|
2457
2469
|
exports.YAMLSeq = YAMLSeq;
|
|
2458
2470
|
});
|
|
2459
2471
|
|
|
2460
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
|
|
2472
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
|
|
2461
2473
|
var require_seq = __commonJS((exports) => {
|
|
2462
2474
|
var identity = require_identity();
|
|
2463
2475
|
var YAMLSeq = require_YAMLSeq();
|
|
@@ -2476,7 +2488,7 @@ var require_seq = __commonJS((exports) => {
|
|
|
2476
2488
|
exports.seq = seq;
|
|
2477
2489
|
});
|
|
2478
2490
|
|
|
2479
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
|
|
2491
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
|
|
2480
2492
|
var require_string = __commonJS((exports) => {
|
|
2481
2493
|
var stringifyString = require_stringifyString();
|
|
2482
2494
|
var string = {
|
|
@@ -2492,7 +2504,7 @@ var require_string = __commonJS((exports) => {
|
|
|
2492
2504
|
exports.string = string;
|
|
2493
2505
|
});
|
|
2494
2506
|
|
|
2495
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
|
|
2507
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
|
|
2496
2508
|
var require_null = __commonJS((exports) => {
|
|
2497
2509
|
var Scalar = require_Scalar();
|
|
2498
2510
|
var nullTag = {
|
|
@@ -2507,7 +2519,7 @@ var require_null = __commonJS((exports) => {
|
|
|
2507
2519
|
exports.nullTag = nullTag;
|
|
2508
2520
|
});
|
|
2509
2521
|
|
|
2510
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
|
|
2522
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
|
|
2511
2523
|
var require_bool = __commonJS((exports) => {
|
|
2512
2524
|
var Scalar = require_Scalar();
|
|
2513
2525
|
var boolTag = {
|
|
@@ -2528,7 +2540,7 @@ var require_bool = __commonJS((exports) => {
|
|
|
2528
2540
|
exports.boolTag = boolTag;
|
|
2529
2541
|
});
|
|
2530
2542
|
|
|
2531
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
|
|
2543
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
|
|
2532
2544
|
var require_stringifyNumber = __commonJS((exports) => {
|
|
2533
2545
|
function stringifyNumber({ format, minFractionDigits, tag, value }) {
|
|
2534
2546
|
if (typeof value === "bigint")
|
|
@@ -2552,7 +2564,7 @@ var require_stringifyNumber = __commonJS((exports) => {
|
|
|
2552
2564
|
exports.stringifyNumber = stringifyNumber;
|
|
2553
2565
|
});
|
|
2554
2566
|
|
|
2555
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
|
|
2567
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
|
|
2556
2568
|
var require_float = __commonJS((exports) => {
|
|
2557
2569
|
var Scalar = require_Scalar();
|
|
2558
2570
|
var stringifyNumber = require_stringifyNumber();
|
|
@@ -2595,7 +2607,7 @@ var require_float = __commonJS((exports) => {
|
|
|
2595
2607
|
exports.floatNaN = floatNaN;
|
|
2596
2608
|
});
|
|
2597
2609
|
|
|
2598
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
|
|
2610
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
|
|
2599
2611
|
var require_int = __commonJS((exports) => {
|
|
2600
2612
|
var stringifyNumber = require_stringifyNumber();
|
|
2601
2613
|
var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
|
|
@@ -2637,7 +2649,7 @@ var require_int = __commonJS((exports) => {
|
|
|
2637
2649
|
exports.intOct = intOct;
|
|
2638
2650
|
});
|
|
2639
2651
|
|
|
2640
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
|
|
2652
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
|
|
2641
2653
|
var require_schema = __commonJS((exports) => {
|
|
2642
2654
|
var map = require_map();
|
|
2643
2655
|
var _null = require_null();
|
|
@@ -2662,7 +2674,7 @@ var require_schema = __commonJS((exports) => {
|
|
|
2662
2674
|
exports.schema = schema;
|
|
2663
2675
|
});
|
|
2664
2676
|
|
|
2665
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
|
|
2677
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
|
|
2666
2678
|
var require_schema2 = __commonJS((exports) => {
|
|
2667
2679
|
var Scalar = require_Scalar();
|
|
2668
2680
|
var map = require_map();
|
|
@@ -2726,7 +2738,7 @@ var require_schema2 = __commonJS((exports) => {
|
|
|
2726
2738
|
exports.schema = schema;
|
|
2727
2739
|
});
|
|
2728
2740
|
|
|
2729
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
|
|
2741
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
|
|
2730
2742
|
var require_binary = __commonJS((exports) => {
|
|
2731
2743
|
var node_buffer = __require("buffer");
|
|
2732
2744
|
var Scalar = require_Scalar();
|
|
@@ -2781,7 +2793,7 @@ var require_binary = __commonJS((exports) => {
|
|
|
2781
2793
|
exports.binary = binary;
|
|
2782
2794
|
});
|
|
2783
2795
|
|
|
2784
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
|
|
2796
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
|
|
2785
2797
|
var require_pairs = __commonJS((exports) => {
|
|
2786
2798
|
var identity = require_identity();
|
|
2787
2799
|
var Pair = require_Pair();
|
|
@@ -2856,7 +2868,7 @@ ${cn.comment}` : item.comment;
|
|
|
2856
2868
|
exports.resolvePairs = resolvePairs;
|
|
2857
2869
|
});
|
|
2858
2870
|
|
|
2859
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
|
|
2871
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
|
|
2860
2872
|
var require_omap = __commonJS((exports) => {
|
|
2861
2873
|
var identity = require_identity();
|
|
2862
2874
|
var toJS = require_toJS();
|
|
@@ -2928,7 +2940,7 @@ var require_omap = __commonJS((exports) => {
|
|
|
2928
2940
|
exports.omap = omap;
|
|
2929
2941
|
});
|
|
2930
2942
|
|
|
2931
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
|
|
2943
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
|
|
2932
2944
|
var require_bool2 = __commonJS((exports) => {
|
|
2933
2945
|
var Scalar = require_Scalar();
|
|
2934
2946
|
function boolStringify({ value, source }, ctx) {
|
|
@@ -2957,7 +2969,7 @@ var require_bool2 = __commonJS((exports) => {
|
|
|
2957
2969
|
exports.trueTag = trueTag;
|
|
2958
2970
|
});
|
|
2959
2971
|
|
|
2960
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
|
|
2972
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
|
|
2961
2973
|
var require_float2 = __commonJS((exports) => {
|
|
2962
2974
|
var Scalar = require_Scalar();
|
|
2963
2975
|
var stringifyNumber = require_stringifyNumber();
|
|
@@ -3003,7 +3015,7 @@ var require_float2 = __commonJS((exports) => {
|
|
|
3003
3015
|
exports.floatNaN = floatNaN;
|
|
3004
3016
|
});
|
|
3005
3017
|
|
|
3006
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
|
|
3018
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
|
|
3007
3019
|
var require_int2 = __commonJS((exports) => {
|
|
3008
3020
|
var stringifyNumber = require_stringifyNumber();
|
|
3009
3021
|
var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
|
|
@@ -3079,7 +3091,7 @@ var require_int2 = __commonJS((exports) => {
|
|
|
3079
3091
|
exports.intOct = intOct;
|
|
3080
3092
|
});
|
|
3081
3093
|
|
|
3082
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
|
|
3094
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
|
|
3083
3095
|
var require_set = __commonJS((exports) => {
|
|
3084
3096
|
var identity = require_identity();
|
|
3085
3097
|
var Pair = require_Pair();
|
|
@@ -3162,7 +3174,7 @@ var require_set = __commonJS((exports) => {
|
|
|
3162
3174
|
exports.set = set;
|
|
3163
3175
|
});
|
|
3164
3176
|
|
|
3165
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
|
|
3177
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
|
|
3166
3178
|
var require_timestamp = __commonJS((exports) => {
|
|
3167
3179
|
var stringifyNumber = require_stringifyNumber();
|
|
3168
3180
|
function parseSexagesimal(str, asBigInt) {
|
|
@@ -3244,7 +3256,7 @@ var require_timestamp = __commonJS((exports) => {
|
|
|
3244
3256
|
exports.timestamp = timestamp;
|
|
3245
3257
|
});
|
|
3246
3258
|
|
|
3247
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
|
|
3259
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
|
|
3248
3260
|
var require_schema3 = __commonJS((exports) => {
|
|
3249
3261
|
var map = require_map();
|
|
3250
3262
|
var _null = require_null();
|
|
@@ -3285,7 +3297,7 @@ var require_schema3 = __commonJS((exports) => {
|
|
|
3285
3297
|
exports.schema = schema;
|
|
3286
3298
|
});
|
|
3287
3299
|
|
|
3288
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
|
|
3300
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
|
|
3289
3301
|
var require_tags = __commonJS((exports) => {
|
|
3290
3302
|
var map = require_map();
|
|
3291
3303
|
var _null = require_null();
|
|
@@ -3376,7 +3388,7 @@ var require_tags = __commonJS((exports) => {
|
|
|
3376
3388
|
exports.getTags = getTags;
|
|
3377
3389
|
});
|
|
3378
3390
|
|
|
3379
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
|
|
3391
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
|
|
3380
3392
|
var require_Schema = __commonJS((exports) => {
|
|
3381
3393
|
var identity = require_identity();
|
|
3382
3394
|
var map = require_map();
|
|
@@ -3406,7 +3418,7 @@ var require_Schema = __commonJS((exports) => {
|
|
|
3406
3418
|
exports.Schema = Schema;
|
|
3407
3419
|
});
|
|
3408
3420
|
|
|
3409
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
|
|
3421
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
|
|
3410
3422
|
var require_stringifyDocument = __commonJS((exports) => {
|
|
3411
3423
|
var identity = require_identity();
|
|
3412
3424
|
var stringify = require_stringify();
|
|
@@ -3486,7 +3498,7 @@ var require_stringifyDocument = __commonJS((exports) => {
|
|
|
3486
3498
|
exports.stringifyDocument = stringifyDocument;
|
|
3487
3499
|
});
|
|
3488
3500
|
|
|
3489
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
|
|
3501
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
|
|
3490
3502
|
var require_Document = __commonJS((exports) => {
|
|
3491
3503
|
var Alias = require_Alias();
|
|
3492
3504
|
var Collection = require_Collection();
|
|
@@ -3721,7 +3733,7 @@ var require_Document = __commonJS((exports) => {
|
|
|
3721
3733
|
exports.Document = Document;
|
|
3722
3734
|
});
|
|
3723
3735
|
|
|
3724
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
|
|
3736
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
|
|
3725
3737
|
var require_errors = __commonJS((exports) => {
|
|
3726
3738
|
class YAMLError extends Error {
|
|
3727
3739
|
constructor(name, pos, code, message) {
|
|
@@ -3786,7 +3798,7 @@ ${pointer}
|
|
|
3786
3798
|
exports.prettifyError = prettifyError;
|
|
3787
3799
|
});
|
|
3788
3800
|
|
|
3789
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
|
|
3801
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
|
|
3790
3802
|
var require_resolve_props = __commonJS((exports) => {
|
|
3791
3803
|
function resolveProps(tokens, { flow, indicator, next, offset, onError, parentIndent, startOnNewline }) {
|
|
3792
3804
|
let spaceBefore = false;
|
|
@@ -3916,7 +3928,7 @@ var require_resolve_props = __commonJS((exports) => {
|
|
|
3916
3928
|
exports.resolveProps = resolveProps;
|
|
3917
3929
|
});
|
|
3918
3930
|
|
|
3919
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
|
|
3931
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
|
|
3920
3932
|
var require_util_contains_newline = __commonJS((exports) => {
|
|
3921
3933
|
function containsNewline(key) {
|
|
3922
3934
|
if (!key)
|
|
@@ -3956,7 +3968,7 @@ var require_util_contains_newline = __commonJS((exports) => {
|
|
|
3956
3968
|
exports.containsNewline = containsNewline;
|
|
3957
3969
|
});
|
|
3958
3970
|
|
|
3959
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
|
|
3971
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
|
|
3960
3972
|
var require_util_flow_indent_check = __commonJS((exports) => {
|
|
3961
3973
|
var utilContainsNewline = require_util_contains_newline();
|
|
3962
3974
|
function flowIndentCheck(indent, fc, onError) {
|
|
@@ -3971,7 +3983,7 @@ var require_util_flow_indent_check = __commonJS((exports) => {
|
|
|
3971
3983
|
exports.flowIndentCheck = flowIndentCheck;
|
|
3972
3984
|
});
|
|
3973
3985
|
|
|
3974
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
|
|
3986
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
|
|
3975
3987
|
var require_util_map_includes = __commonJS((exports) => {
|
|
3976
3988
|
var identity = require_identity();
|
|
3977
3989
|
function mapIncludes(ctx, items, search) {
|
|
@@ -3984,7 +3996,7 @@ var require_util_map_includes = __commonJS((exports) => {
|
|
|
3984
3996
|
exports.mapIncludes = mapIncludes;
|
|
3985
3997
|
});
|
|
3986
3998
|
|
|
3987
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
|
|
3999
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
|
|
3988
4000
|
var require_resolve_block_map = __commonJS((exports) => {
|
|
3989
4001
|
var Pair = require_Pair();
|
|
3990
4002
|
var YAMLMap = require_YAMLMap();
|
|
@@ -4091,7 +4103,7 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
|
4091
4103
|
exports.resolveBlockMap = resolveBlockMap;
|
|
4092
4104
|
});
|
|
4093
4105
|
|
|
4094
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
|
|
4106
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
|
|
4095
4107
|
var require_resolve_block_seq = __commonJS((exports) => {
|
|
4096
4108
|
var YAMLSeq = require_YAMLSeq();
|
|
4097
4109
|
var resolveProps = require_resolve_props();
|
|
@@ -4139,7 +4151,7 @@ var require_resolve_block_seq = __commonJS((exports) => {
|
|
|
4139
4151
|
exports.resolveBlockSeq = resolveBlockSeq;
|
|
4140
4152
|
});
|
|
4141
4153
|
|
|
4142
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
|
|
4154
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
|
|
4143
4155
|
var require_resolve_end = __commonJS((exports) => {
|
|
4144
4156
|
function resolveEnd(end, offset, reqSpace, onError) {
|
|
4145
4157
|
let comment = "";
|
|
@@ -4179,7 +4191,7 @@ var require_resolve_end = __commonJS((exports) => {
|
|
|
4179
4191
|
exports.resolveEnd = resolveEnd;
|
|
4180
4192
|
});
|
|
4181
4193
|
|
|
4182
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
|
|
4194
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
|
|
4183
4195
|
var require_resolve_flow_collection = __commonJS((exports) => {
|
|
4184
4196
|
var identity = require_identity();
|
|
4185
4197
|
var Pair = require_Pair();
|
|
@@ -4370,7 +4382,7 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
|
4370
4382
|
exports.resolveFlowCollection = resolveFlowCollection;
|
|
4371
4383
|
});
|
|
4372
4384
|
|
|
4373
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
|
|
4385
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
|
|
4374
4386
|
var require_compose_collection = __commonJS((exports) => {
|
|
4375
4387
|
var identity = require_identity();
|
|
4376
4388
|
var Scalar = require_Scalar();
|
|
@@ -4432,7 +4444,7 @@ var require_compose_collection = __commonJS((exports) => {
|
|
|
4432
4444
|
exports.composeCollection = composeCollection;
|
|
4433
4445
|
});
|
|
4434
4446
|
|
|
4435
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
|
|
4447
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
|
|
4436
4448
|
var require_resolve_block_scalar = __commonJS((exports) => {
|
|
4437
4449
|
var Scalar = require_Scalar();
|
|
4438
4450
|
function resolveBlockScalar(ctx, scalar, onError) {
|
|
@@ -4625,7 +4637,7 @@ var require_resolve_block_scalar = __commonJS((exports) => {
|
|
|
4625
4637
|
exports.resolveBlockScalar = resolveBlockScalar;
|
|
4626
4638
|
});
|
|
4627
4639
|
|
|
4628
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
|
|
4640
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
|
|
4629
4641
|
var require_resolve_flow_scalar = __commonJS((exports) => {
|
|
4630
4642
|
var Scalar = require_Scalar();
|
|
4631
4643
|
var resolveEnd = require_resolve_end();
|
|
@@ -4841,7 +4853,7 @@ var require_resolve_flow_scalar = __commonJS((exports) => {
|
|
|
4841
4853
|
exports.resolveFlowScalar = resolveFlowScalar;
|
|
4842
4854
|
});
|
|
4843
4855
|
|
|
4844
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
|
|
4856
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
|
|
4845
4857
|
var require_compose_scalar = __commonJS((exports) => {
|
|
4846
4858
|
var identity = require_identity();
|
|
4847
4859
|
var Scalar = require_Scalar();
|
|
@@ -4919,7 +4931,7 @@ var require_compose_scalar = __commonJS((exports) => {
|
|
|
4919
4931
|
exports.composeScalar = composeScalar;
|
|
4920
4932
|
});
|
|
4921
4933
|
|
|
4922
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
|
|
4934
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
|
|
4923
4935
|
var require_util_empty_scalar_position = __commonJS((exports) => {
|
|
4924
4936
|
function emptyScalarPosition(offset, before, pos) {
|
|
4925
4937
|
if (before) {
|
|
@@ -4946,7 +4958,7 @@ var require_util_empty_scalar_position = __commonJS((exports) => {
|
|
|
4946
4958
|
exports.emptyScalarPosition = emptyScalarPosition;
|
|
4947
4959
|
});
|
|
4948
4960
|
|
|
4949
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
|
|
4961
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
|
|
4950
4962
|
var require_compose_node = __commonJS((exports) => {
|
|
4951
4963
|
var Alias = require_Alias();
|
|
4952
4964
|
var identity = require_identity();
|
|
@@ -5049,7 +5061,7 @@ var require_compose_node = __commonJS((exports) => {
|
|
|
5049
5061
|
exports.composeNode = composeNode;
|
|
5050
5062
|
});
|
|
5051
5063
|
|
|
5052
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
|
|
5064
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
|
|
5053
5065
|
var require_compose_doc = __commonJS((exports) => {
|
|
5054
5066
|
var Document = require_Document();
|
|
5055
5067
|
var composeNode = require_compose_node();
|
|
@@ -5089,7 +5101,7 @@ var require_compose_doc = __commonJS((exports) => {
|
|
|
5089
5101
|
exports.composeDoc = composeDoc;
|
|
5090
5102
|
});
|
|
5091
5103
|
|
|
5092
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
|
|
5104
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
|
|
5093
5105
|
var require_composer = __commonJS((exports) => {
|
|
5094
5106
|
var node_process = __require("process");
|
|
5095
5107
|
var directives = require_directives();
|
|
@@ -5278,7 +5290,7 @@ ${end.comment}` : end.comment;
|
|
|
5278
5290
|
exports.Composer = Composer;
|
|
5279
5291
|
});
|
|
5280
5292
|
|
|
5281
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
|
|
5293
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
|
|
5282
5294
|
var require_cst_scalar = __commonJS((exports) => {
|
|
5283
5295
|
var resolveBlockScalar = require_resolve_block_scalar();
|
|
5284
5296
|
var resolveFlowScalar = require_resolve_flow_scalar();
|
|
@@ -5468,7 +5480,7 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
|
5468
5480
|
exports.setScalarValue = setScalarValue;
|
|
5469
5481
|
});
|
|
5470
5482
|
|
|
5471
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
|
|
5483
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
|
|
5472
5484
|
var require_cst_stringify = __commonJS((exports) => {
|
|
5473
5485
|
var stringify = (cst) => ("type" in cst) ? stringifyToken(cst) : stringifyItem(cst);
|
|
5474
5486
|
function stringifyToken(token) {
|
|
@@ -5526,7 +5538,7 @@ var require_cst_stringify = __commonJS((exports) => {
|
|
|
5526
5538
|
exports.stringify = stringify;
|
|
5527
5539
|
});
|
|
5528
5540
|
|
|
5529
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
|
|
5541
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
|
|
5530
5542
|
var require_cst_visit = __commonJS((exports) => {
|
|
5531
5543
|
var BREAK = Symbol("break visit");
|
|
5532
5544
|
var SKIP = Symbol("skip children");
|
|
@@ -5585,7 +5597,7 @@ var require_cst_visit = __commonJS((exports) => {
|
|
|
5585
5597
|
exports.visit = visit;
|
|
5586
5598
|
});
|
|
5587
5599
|
|
|
5588
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
|
|
5600
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
|
|
5589
5601
|
var require_cst = __commonJS((exports) => {
|
|
5590
5602
|
var cstScalar = require_cst_scalar();
|
|
5591
5603
|
var cstStringify = require_cst_stringify();
|
|
@@ -5686,7 +5698,7 @@ var require_cst = __commonJS((exports) => {
|
|
|
5686
5698
|
exports.tokenType = tokenType;
|
|
5687
5699
|
});
|
|
5688
5700
|
|
|
5689
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
|
|
5701
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
|
|
5690
5702
|
var require_lexer = __commonJS((exports) => {
|
|
5691
5703
|
var cst = require_cst();
|
|
5692
5704
|
function isEmpty(ch) {
|
|
@@ -6272,7 +6284,7 @@ var require_lexer = __commonJS((exports) => {
|
|
|
6272
6284
|
exports.Lexer = Lexer;
|
|
6273
6285
|
});
|
|
6274
6286
|
|
|
6275
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
|
|
6287
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
|
|
6276
6288
|
var require_line_counter = __commonJS((exports) => {
|
|
6277
6289
|
class LineCounter {
|
|
6278
6290
|
constructor() {
|
|
@@ -6300,7 +6312,7 @@ var require_line_counter = __commonJS((exports) => {
|
|
|
6300
6312
|
exports.LineCounter = LineCounter;
|
|
6301
6313
|
});
|
|
6302
6314
|
|
|
6303
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
|
|
6315
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
|
|
6304
6316
|
var require_parser = __commonJS((exports) => {
|
|
6305
6317
|
var node_process = __require("process");
|
|
6306
6318
|
var cst = require_cst();
|
|
@@ -7149,7 +7161,7 @@ var require_parser = __commonJS((exports) => {
|
|
|
7149
7161
|
exports.Parser = Parser;
|
|
7150
7162
|
});
|
|
7151
7163
|
|
|
7152
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
|
|
7164
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
|
|
7153
7165
|
var require_public_api = __commonJS((exports) => {
|
|
7154
7166
|
var composer = require_composer();
|
|
7155
7167
|
var Document = require_Document();
|
|
@@ -7243,7 +7255,7 @@ var require_public_api = __commonJS((exports) => {
|
|
|
7243
7255
|
exports.stringify = stringify;
|
|
7244
7256
|
});
|
|
7245
7257
|
|
|
7246
|
-
// node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
|
|
7258
|
+
// ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
|
|
7247
7259
|
var composer, Document, Schema, errors, Alias, identity, Pair, Scalar, YAMLMap, YAMLSeq, cst, lexer, lineCounter, parser, publicApi, visit, $Composer, $Document, $Schema, $YAMLError, $YAMLParseError, $YAMLWarning, $Alias, $isAlias, $isCollection, $isDocument, $isMap, $isNode, $isPair, $isScalar, $isSeq, $Pair, $Scalar, $YAMLMap, $YAMLSeq, $Lexer, $LineCounter, $Parser, $parse, $parseAllDocuments, $parseDocument, $stringify, $visit, $visitAsync;
|
|
7248
7260
|
var init_dist = __esm(() => {
|
|
7249
7261
|
composer = require_composer();
|
|
@@ -7292,7 +7304,7 @@ var init_dist = __esm(() => {
|
|
|
7292
7304
|
$visitAsync = visit.visitAsync;
|
|
7293
7305
|
});
|
|
7294
7306
|
|
|
7295
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/util.js
|
|
7307
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/util.js
|
|
7296
7308
|
var util, objectUtil, ZodParsedType, getParsedType = (data) => {
|
|
7297
7309
|
const t = typeof data;
|
|
7298
7310
|
switch (t) {
|
|
@@ -7423,7 +7435,7 @@ var init_util = __esm(() => {
|
|
|
7423
7435
|
]);
|
|
7424
7436
|
});
|
|
7425
7437
|
|
|
7426
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/ZodError.js
|
|
7438
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/ZodError.js
|
|
7427
7439
|
var ZodIssueCode, quotelessJson = (obj) => {
|
|
7428
7440
|
const json = JSON.stringify(obj, null, 2);
|
|
7429
7441
|
return json.replace(/"([^"]+)":/g, "$1:");
|
|
@@ -7544,7 +7556,7 @@ var init_ZodError = __esm(() => {
|
|
|
7544
7556
|
};
|
|
7545
7557
|
});
|
|
7546
7558
|
|
|
7547
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/locales/en.js
|
|
7559
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/locales/en.js
|
|
7548
7560
|
var errorMap = (issue, _ctx) => {
|
|
7549
7561
|
let message;
|
|
7550
7562
|
switch (issue.code) {
|
|
@@ -7651,7 +7663,7 @@ var init_en = __esm(() => {
|
|
|
7651
7663
|
en_default = errorMap;
|
|
7652
7664
|
});
|
|
7653
7665
|
|
|
7654
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/errors.js
|
|
7666
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/errors.js
|
|
7655
7667
|
function setErrorMap(map) {
|
|
7656
7668
|
overrideErrorMap = map;
|
|
7657
7669
|
}
|
|
@@ -7664,7 +7676,7 @@ var init_errors = __esm(() => {
|
|
|
7664
7676
|
overrideErrorMap = en_default;
|
|
7665
7677
|
});
|
|
7666
7678
|
|
|
7667
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.js
|
|
7679
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.js
|
|
7668
7680
|
function addIssueToContext(ctx, issueData) {
|
|
7669
7681
|
const overrideMap = getErrorMap();
|
|
7670
7682
|
const issue = makeIssue({
|
|
@@ -7769,10 +7781,10 @@ var init_parseUtil = __esm(() => {
|
|
|
7769
7781
|
});
|
|
7770
7782
|
});
|
|
7771
7783
|
|
|
7772
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.js
|
|
7784
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.js
|
|
7773
7785
|
var init_typeAliases = () => {};
|
|
7774
7786
|
|
|
7775
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.js
|
|
7787
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.js
|
|
7776
7788
|
var errorUtil;
|
|
7777
7789
|
var init_errorUtil = __esm(() => {
|
|
7778
7790
|
(function(errorUtil2) {
|
|
@@ -7781,7 +7793,7 @@ var init_errorUtil = __esm(() => {
|
|
|
7781
7793
|
})(errorUtil || (errorUtil = {}));
|
|
7782
7794
|
});
|
|
7783
7795
|
|
|
7784
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/types.js
|
|
7796
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/types.js
|
|
7785
7797
|
class ParseInputLazyPath {
|
|
7786
7798
|
constructor(parent, value, path, key) {
|
|
7787
7799
|
this._cachedPath = [];
|
|
@@ -11132,7 +11144,7 @@ var init_types = __esm(() => {
|
|
|
11132
11144
|
NEVER = INVALID;
|
|
11133
11145
|
});
|
|
11134
11146
|
|
|
11135
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/external.js
|
|
11147
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/external.js
|
|
11136
11148
|
var exports_external = {};
|
|
11137
11149
|
__export(exports_external, {
|
|
11138
11150
|
void: () => voidType,
|
|
@@ -11252,7 +11264,7 @@ var init_external = __esm(() => {
|
|
|
11252
11264
|
init_ZodError();
|
|
11253
11265
|
});
|
|
11254
11266
|
|
|
11255
|
-
// node_modules/.bun/zod@3.25.76/node_modules/zod/index.js
|
|
11267
|
+
// ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/index.js
|
|
11256
11268
|
var init_zod = __esm(() => {
|
|
11257
11269
|
init_external();
|
|
11258
11270
|
init_external();
|
|
@@ -11543,7 +11555,9 @@ var init_schema = __esm(() => {
|
|
|
11543
11555
|
experimental: exports_external.object({
|
|
11544
11556
|
legacy_pty: exports_external.boolean().optional().describe("Opt out of the default tmux supervisor (#725) and run the agent under " + "the legacy PTY supervisor instead. Default: false (tmux is the default)."),
|
|
11545
11557
|
legacy_autoaccept_expect: exports_external.boolean().optional().describe("Opt the autoaccept gateway back into the legacy expect-script behaviour " + "instead of the tmux send-keys path. Default: false.")
|
|
11546
|
-
}).optional().describe("Opt-in flags for experimental / legacy behaviours. Cascades through " + "defaults → profile → per-agent.")
|
|
11558
|
+
}).optional().describe("Opt-in flags for experimental / legacy behaviours. Cascades through " + "defaults → profile → per-agent."),
|
|
11559
|
+
allowed_tools: exports_external.array(exports_external.string()).optional().describe("Granular tool allowlist passed verbatim to Claude Code's --allowedTools " + "flag. Cascades defaults → profile → per-agent (union, dedup). Supports " + "patterns like 'Bash(git *)' or 'mcp__perplexity__*' that the coarse " + "`tools.allow` field can't express. See #199."),
|
|
11560
|
+
disallowed_tools: exports_external.array(exports_external.string()).optional().describe("Granular tool denylist passed verbatim to Claude Code's --disallowedTools " + "flag. Cascades defaults → profile → per-agent (union, dedup). Same pattern " + "syntax as allowed_tools (e.g. 'Bash(rm *)'). See #199.")
|
|
11547
11561
|
};
|
|
11548
11562
|
ProfileSchema = exports_external.object(profileFields);
|
|
11549
11563
|
({ extends: _omitExtends, ...defaultsFields } = profileFields);
|
|
@@ -13822,7 +13836,7 @@ function createAuditLogger(opts = {}) {
|
|
|
13822
13836
|
// src/vault/grants.ts
|
|
13823
13837
|
import { randomBytes as randomBytes4 } from "node:crypto";
|
|
13824
13838
|
|
|
13825
|
-
// node_modules/.bun/bcryptjs@3.0.3/node_modules/bcryptjs/index.js
|
|
13839
|
+
// ../switchroom-sec-1417/node_modules/.bun/bcryptjs@3.0.3/node_modules/bcryptjs/index.js
|
|
13826
13840
|
import nodeCrypto from "crypto";
|
|
13827
13841
|
var randomFallback = null;
|
|
13828
13842
|
function randomBytes3(len) {
|