switchroom 0.14.34 → 0.14.36
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 +82 -81
- package/dist/auth-broker/index.js +82 -81
- package/dist/cli/drive-write-pretool.mjs +10 -10
- package/dist/cli/notion-write-pretool.mjs +86 -84
- package/dist/cli/skill-validate-pretool.mjs +72 -72
- package/dist/cli/switchroom.js +507 -371
- package/dist/host-control/main.js +150 -149
- package/dist/vault/approvals/kernel-server.js +106 -90
- package/dist/vault/broker/server.js +177 -90
- package/package.json +2 -2
- package/telegram-plugin/dist/bridge/bridge.js +112 -112
- package/telegram-plugin/dist/gateway/gateway.js +227 -195
- package/telegram-plugin/dist/server.js +160 -160
- package/telegram-plugin/gateway/gateway.ts +41 -1
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
|
-
//
|
|
69
|
+
// 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
|
-
//
|
|
93
|
+
// 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
|
-
//
|
|
172
|
+
// 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
|
-
//
|
|
522
|
+
// 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
|
-
//
|
|
700
|
+
// 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
|
-
//
|
|
773
|
+
// 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
|
-
//
|
|
2083
|
+
// 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
|
-
//
|
|
2103
|
+
// 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
|
-
//
|
|
2279
|
+
// 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
|
-
//
|
|
2413
|
+
// 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
|
-
//
|
|
2446
|
+
// 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
|
-
//
|
|
2592
|
+
// 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
|
-
//
|
|
2646
|
+
// 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
|
-
//
|
|
2801
|
+
// 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
|
-
//
|
|
2953
|
+
// 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
|
-
//
|
|
3015
|
+
// 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
|
-
//
|
|
3062
|
+
// 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
|
-
//
|
|
3089
|
+
// 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
|
-
//
|
|
3126
|
+
// 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
|
-
//
|
|
3234
|
+
// 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
|
-
//
|
|
3262
|
+
// 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
|
-
//
|
|
3334
|
+
// 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
|
-
//
|
|
3449
|
+
// 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
|
-
//
|
|
3466
|
+
// 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
|
-
//
|
|
3603
|
+
// 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
|
-
//
|
|
3901
|
+
// 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
|
-
//
|
|
4022
|
+
// 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
|
-
//
|
|
4158
|
+
// 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
|
-
//
|
|
4177
|
+
// 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
|
-
//
|
|
4231
|
+
// 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
|
-
//
|
|
4292
|
+
// 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
|
-
//
|
|
4330
|
+
// 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
|
-
//
|
|
4482
|
+
// 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
|
-
//
|
|
4609
|
+
// 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
|
-
//
|
|
4628
|
+
// 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
|
-
//
|
|
4721
|
+
// 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
|
-
//
|
|
4740
|
+
// 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
|
-
//
|
|
4756
|
+
// 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
|
-
//
|
|
4771
|
+
// 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
|
-
//
|
|
4792
|
+
// 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
|
-
//
|
|
4816
|
+
// 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
|
-
//
|
|
4859
|
+
// 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
|
-
//
|
|
4901
|
+
// 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
|
-
//
|
|
4926
|
+
// 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
|
-
//
|
|
4990
|
+
// 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
|
-
//
|
|
5045
|
+
// 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
|
-
//
|
|
5120
|
+
// 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
|
-
//
|
|
5192
|
+
// 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
|
-
//
|
|
5221
|
+
// 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
|
-
//
|
|
5267
|
+
// 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
|
-
//
|
|
5343
|
+
// 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
|
-
//
|
|
5426
|
+
// 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
|
-
//
|
|
5508
|
+
// 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
|
-
//
|
|
5549
|
+
// 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
|
-
//
|
|
5640
|
+
// 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
|
-
//
|
|
5670
|
+
// 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
|
-
//
|
|
5750
|
+
// 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
|
-
//
|
|
5985
|
+
// 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
|
-
//
|
|
6050
|
+
// 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
|
-
//
|
|
6180
|
+
// 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
|
-
//
|
|
6220
|
+
// 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
|
-
//
|
|
6235
|
+
// 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
|
-
//
|
|
6248
|
+
// 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
|
-
//
|
|
6355
|
+
// 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
|
-
//
|
|
6403
|
+
// 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
|
-
//
|
|
6443
|
+
// 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
|
-
//
|
|
6634
|
+
// 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
|
-
//
|
|
6696
|
+
// 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
|
-
//
|
|
6889
|
+
// 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
|
-
//
|
|
7105
|
+
// 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
|
-
//
|
|
7183
|
+
// 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
|
-
//
|
|
7210
|
+
// 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
|
-
//
|
|
7313
|
+
// 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
|
-
//
|
|
7353
|
+
// 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
|
-
//
|
|
7542
|
+
// 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
|
-
//
|
|
7732
|
+
// 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
|
-
//
|
|
7790
|
+
// 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
|
-
//
|
|
7849
|
+
// 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
|
-
//
|
|
7950
|
+
// 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
|
-
//
|
|
8536
|
+
// 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
|
-
//
|
|
8564
|
+
// 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
|
-
//
|
|
9413
|
+
// 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
|
-
//
|
|
9507
|
+
// 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
|
-
//
|
|
9556
|
+
// 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
|
-
//
|
|
9687
|
+
// 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
|
-
//
|
|
9808
|
+
// 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
|
-
//
|
|
9915
|
+
// 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
|
-
//
|
|
9928
|
+
// 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
|
-
//
|
|
10033
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.js
|
|
10034
10034
|
var init_typeAliases = () => {};
|
|
10035
10035
|
|
|
10036
|
-
//
|
|
10036
|
+
// 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
|
-
//
|
|
10045
|
+
// 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
|
-
//
|
|
13396
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v3/external.js
|
|
13397
13397
|
var exports_external = {};
|
|
13398
13398
|
__export(exports_external, {
|
|
13399
13399
|
void: () => voidType,
|
|
@@ -13513,7 +13513,7 @@ var init_external = __esm(() => {
|
|
|
13513
13513
|
init_ZodError();
|
|
13514
13514
|
});
|
|
13515
13515
|
|
|
13516
|
-
//
|
|
13516
|
+
// 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();
|
|
@@ -13950,7 +13950,8 @@ var init_schema = __esm(() => {
|
|
|
13950
13950
|
autoUnlock: exports_external.boolean().default(false).describe("Auto-unlock the vault at broker start using a machine-bound " + "encrypted blob. Off by default. When enabled, the broker reads " + "the configured blob path, derives the AES key from /etc/machine-id, " + "decrypts the passphrase, and unlocks the vault \u2014 no sudo, no " + "systemd-creds, no TPM. Run `switchroom vault broker " + "enable-auto-unlock` once to write the blob."),
|
|
13951
13951
|
autoUnlockCredentialPath: exports_external.string().default("~/.switchroom/vault-auto-unlock").describe("Path to the machine-bound auto-unlock blob (see " + "src/vault/auto-unlock.ts for the format). Default lives under " + "~/.switchroom so it can be bind-mounted into the vault-broker " + "container by docker compose. Tilde-expansion happens " + "at read time."),
|
|
13952
13952
|
approvalAuth: exports_external.enum(["passphrase", "telegram-id"]).default("passphrase").describe("Posture for tap-to-Approve on vault grant cards. `passphrase` " + "(default) prompts the operator to type the vault passphrase on " + "every Approve \u2014 two-factor (Telegram ID + passphrase). " + "`telegram-id` mints immediately on Approve with no passphrase " + "prompt \u2014 single-factor (Telegram ID only); REQUIRES " + "`autoUnlock: true` so the broker already holds the passphrase. " + "Trades a factor of security for smoother UX; opt-in only."),
|
|
13953
|
-
postureMintAgents: exports_external.array(exports_external.string().min(1)).default([]).describe("Per-agent opt-in for posture-attested broker calls (`mint_grant` / " + "`list_grants` / `put` with `attest_via_posture: true`). Only agents " + "whose names are in this list can use the silent-mint path under " + "`approvalAuth: telegram-id`. Default `[]` \u2014 no agent can self-mint " + "until the operator explicitly opts it in. The request's `agent` " + "field must also equal the calling peer's resolved agent name " + "(broker rejects cross-agent posture mints). When `approvalAuth` is " + "`passphrase` this list is ignored \u2014 passphrase attestation still " + "works as before. Each entry is an agent slug exactly as it appears " + "under `agents:` in this config.")
|
|
13953
|
+
postureMintAgents: exports_external.array(exports_external.string().min(1)).default([]).describe("Per-agent opt-in for posture-attested broker calls (`mint_grant` / " + "`list_grants` / `put` with `attest_via_posture: true`). Only agents " + "whose names are in this list can use the silent-mint path under " + "`approvalAuth: telegram-id`. Default `[]` \u2014 no agent can self-mint " + "until the operator explicitly opts it in. The request's `agent` " + "field must also equal the calling peer's resolved agent name " + "(broker rejects cross-agent posture mints). When `approvalAuth` is " + "`passphrase` this list is ignored \u2014 passphrase attestation still " + "works as before. Each entry is an agent slug exactly as it appears " + "under `agents:` in this config."),
|
|
13954
|
+
adminOnlyKeys: exports_external.array(exports_external.string().min(1)).default([]).describe("Vault keys held to a higher approval bar: only the admin operator " + "(`access.allowFrom[0]`) may approve a grant for them, and they can " + "NEVER be minted via posture attestation \u2014 granting one requires the " + "operator passphrase (so an agent, even one on `postureMintAgents`, " + "cannot self-grant it). Entries are exact key names or `*` globs, " + "e.g. `stripe/*`, `*/oauth-token`, `microsoft/ken-tokens` (`*` matches " + "any run of characters incl. `/`; case-sensitive). Default `[]` \u2014 no " + "key is admin-only. Posture may RETAIN an admin-only key across a " + "union re-mint but never ADD one. Takes effect on broker + gateway " + "restart (broker has no ACL hot-reload).")
|
|
13954
13955
|
}).default({}).superRefine((broker, ctx) => {
|
|
13955
13956
|
if (broker.approvalAuth === "telegram-id" && broker.autoUnlock !== true) {
|
|
13956
13957
|
ctx.addIssue({
|
|
@@ -15274,7 +15275,7 @@ function classifyTimezoneSource(config, resolvedAgent) {
|
|
|
15274
15275
|
}
|
|
15275
15276
|
var init_timezone = () => {};
|
|
15276
15277
|
|
|
15277
|
-
//
|
|
15278
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/utils.js
|
|
15278
15279
|
var require_utils = __commonJS((exports) => {
|
|
15279
15280
|
exports.__esModule = true;
|
|
15280
15281
|
exports.extend = extend;
|
|
@@ -15370,7 +15371,7 @@ var require_utils = __commonJS((exports) => {
|
|
|
15370
15371
|
}
|
|
15371
15372
|
});
|
|
15372
15373
|
|
|
15373
|
-
//
|
|
15374
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/exception.js
|
|
15374
15375
|
var require_exception = __commonJS((exports, module) => {
|
|
15375
15376
|
exports.__esModule = true;
|
|
15376
15377
|
var errorProps = ["description", "fileName", "lineNumber", "endLineNumber", "message", "name", "number", "stack"];
|
|
@@ -15415,7 +15416,7 @@ var require_exception = __commonJS((exports, module) => {
|
|
|
15415
15416
|
module.exports = exports["default"];
|
|
15416
15417
|
});
|
|
15417
15418
|
|
|
15418
|
-
//
|
|
15419
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js
|
|
15419
15420
|
var require_block_helper_missing = __commonJS((exports, module) => {
|
|
15420
15421
|
exports.__esModule = true;
|
|
15421
15422
|
var _utils = require_utils();
|
|
@@ -15448,7 +15449,7 @@ var require_block_helper_missing = __commonJS((exports, module) => {
|
|
|
15448
15449
|
module.exports = exports["default"];
|
|
15449
15450
|
});
|
|
15450
15451
|
|
|
15451
|
-
//
|
|
15452
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js
|
|
15452
15453
|
var require_each = __commonJS((exports, module) => {
|
|
15453
15454
|
exports.__esModule = true;
|
|
15454
15455
|
function _interopRequireDefault(obj) {
|
|
@@ -15529,7 +15530,7 @@ var require_each = __commonJS((exports, module) => {
|
|
|
15529
15530
|
module.exports = exports["default"];
|
|
15530
15531
|
});
|
|
15531
15532
|
|
|
15532
|
-
//
|
|
15533
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js
|
|
15533
15534
|
var require_helper_missing = __commonJS((exports, module) => {
|
|
15534
15535
|
exports.__esModule = true;
|
|
15535
15536
|
function _interopRequireDefault(obj) {
|
|
@@ -15549,7 +15550,7 @@ var require_helper_missing = __commonJS((exports, module) => {
|
|
|
15549
15550
|
module.exports = exports["default"];
|
|
15550
15551
|
});
|
|
15551
15552
|
|
|
15552
|
-
//
|
|
15553
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/if.js
|
|
15553
15554
|
var require_if = __commonJS((exports, module) => {
|
|
15554
15555
|
exports.__esModule = true;
|
|
15555
15556
|
function _interopRequireDefault(obj) {
|
|
@@ -15586,7 +15587,7 @@ var require_if = __commonJS((exports, module) => {
|
|
|
15586
15587
|
module.exports = exports["default"];
|
|
15587
15588
|
});
|
|
15588
15589
|
|
|
15589
|
-
//
|
|
15590
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/log.js
|
|
15590
15591
|
var require_log2 = __commonJS((exports, module) => {
|
|
15591
15592
|
exports.__esModule = true;
|
|
15592
15593
|
exports.default = function(instance) {
|
|
@@ -15608,7 +15609,7 @@ var require_log2 = __commonJS((exports, module) => {
|
|
|
15608
15609
|
module.exports = exports["default"];
|
|
15609
15610
|
});
|
|
15610
15611
|
|
|
15611
|
-
//
|
|
15612
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js
|
|
15612
15613
|
var require_lookup = __commonJS((exports, module) => {
|
|
15613
15614
|
exports.__esModule = true;
|
|
15614
15615
|
exports.default = function(instance) {
|
|
@@ -15622,7 +15623,7 @@ var require_lookup = __commonJS((exports, module) => {
|
|
|
15622
15623
|
module.exports = exports["default"];
|
|
15623
15624
|
});
|
|
15624
15625
|
|
|
15625
|
-
//
|
|
15626
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers/with.js
|
|
15626
15627
|
var require_with = __commonJS((exports, module) => {
|
|
15627
15628
|
exports.__esModule = true;
|
|
15628
15629
|
function _interopRequireDefault(obj) {
|
|
@@ -15658,7 +15659,7 @@ var require_with = __commonJS((exports, module) => {
|
|
|
15658
15659
|
module.exports = exports["default"];
|
|
15659
15660
|
});
|
|
15660
15661
|
|
|
15661
|
-
//
|
|
15662
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/helpers.js
|
|
15662
15663
|
var require_helpers = __commonJS((exports) => {
|
|
15663
15664
|
exports.__esModule = true;
|
|
15664
15665
|
exports.registerDefaultHelpers = registerDefaultHelpers;
|
|
@@ -15699,7 +15700,7 @@ var require_helpers = __commonJS((exports) => {
|
|
|
15699
15700
|
}
|
|
15700
15701
|
});
|
|
15701
15702
|
|
|
15702
|
-
//
|
|
15703
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js
|
|
15703
15704
|
var require_inline = __commonJS((exports, module) => {
|
|
15704
15705
|
exports.__esModule = true;
|
|
15705
15706
|
var _utils = require_utils();
|
|
@@ -15723,7 +15724,7 @@ var require_inline = __commonJS((exports, module) => {
|
|
|
15723
15724
|
module.exports = exports["default"];
|
|
15724
15725
|
});
|
|
15725
15726
|
|
|
15726
|
-
//
|
|
15727
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/decorators.js
|
|
15727
15728
|
var require_decorators = __commonJS((exports) => {
|
|
15728
15729
|
exports.__esModule = true;
|
|
15729
15730
|
exports.registerDefaultDecorators = registerDefaultDecorators;
|
|
@@ -15737,7 +15738,7 @@ var require_decorators = __commonJS((exports) => {
|
|
|
15737
15738
|
}
|
|
15738
15739
|
});
|
|
15739
15740
|
|
|
15740
|
-
//
|
|
15741
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/logger.js
|
|
15741
15742
|
var require_logger = __commonJS((exports, module) => {
|
|
15742
15743
|
exports.__esModule = true;
|
|
15743
15744
|
var _utils = require_utils();
|
|
@@ -15773,7 +15774,7 @@ var require_logger = __commonJS((exports, module) => {
|
|
|
15773
15774
|
module.exports = exports["default"];
|
|
15774
15775
|
});
|
|
15775
15776
|
|
|
15776
|
-
//
|
|
15777
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/proto-access.js
|
|
15777
15778
|
var require_proto_access = __commonJS((exports) => {
|
|
15778
15779
|
exports.__esModule = true;
|
|
15779
15780
|
exports.createProtoAccessControl = createProtoAccessControl;
|
|
@@ -15840,7 +15841,7 @@ var require_proto_access = __commonJS((exports) => {
|
|
|
15840
15841
|
}
|
|
15841
15842
|
});
|
|
15842
15843
|
|
|
15843
|
-
//
|
|
15844
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/base.js
|
|
15844
15845
|
var require_base = __commonJS((exports) => {
|
|
15845
15846
|
exports.__esModule = true;
|
|
15846
15847
|
exports.HandlebarsEnvironment = HandlebarsEnvironment;
|
|
@@ -15933,7 +15934,7 @@ var require_base = __commonJS((exports) => {
|
|
|
15933
15934
|
exports.logger = _logger2["default"];
|
|
15934
15935
|
});
|
|
15935
15936
|
|
|
15936
|
-
//
|
|
15937
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/safe-string.js
|
|
15937
15938
|
var require_safe_string = __commonJS((exports, module) => {
|
|
15938
15939
|
exports.__esModule = true;
|
|
15939
15940
|
function SafeString(string) {
|
|
@@ -15946,7 +15947,7 @@ var require_safe_string = __commonJS((exports, module) => {
|
|
|
15946
15947
|
module.exports = exports["default"];
|
|
15947
15948
|
});
|
|
15948
15949
|
|
|
15949
|
-
//
|
|
15950
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/internal/wrapHelper.js
|
|
15950
15951
|
var require_wrapHelper = __commonJS((exports) => {
|
|
15951
15952
|
exports.__esModule = true;
|
|
15952
15953
|
exports.wrapHelper = wrapHelper;
|
|
@@ -15963,7 +15964,7 @@ var require_wrapHelper = __commonJS((exports) => {
|
|
|
15963
15964
|
}
|
|
15964
15965
|
});
|
|
15965
15966
|
|
|
15966
|
-
//
|
|
15967
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/runtime.js
|
|
15967
15968
|
var require_runtime = __commonJS((exports) => {
|
|
15968
15969
|
exports.__esModule = true;
|
|
15969
15970
|
exports.checkRevision = checkRevision;
|
|
@@ -16278,7 +16279,7 @@ var require_runtime = __commonJS((exports) => {
|
|
|
16278
16279
|
}
|
|
16279
16280
|
});
|
|
16280
16281
|
|
|
16281
|
-
//
|
|
16282
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js
|
|
16282
16283
|
var require_no_conflict = __commonJS((exports, module) => {
|
|
16283
16284
|
exports.__esModule = true;
|
|
16284
16285
|
exports.default = function(Handlebars) {
|
|
@@ -16302,7 +16303,7 @@ var require_no_conflict = __commonJS((exports, module) => {
|
|
|
16302
16303
|
module.exports = exports["default"];
|
|
16303
16304
|
});
|
|
16304
16305
|
|
|
16305
|
-
//
|
|
16306
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.runtime.js
|
|
16306
16307
|
var require_handlebars_runtime = __commonJS((exports, module) => {
|
|
16307
16308
|
exports.__esModule = true;
|
|
16308
16309
|
function _interopRequireDefault(obj) {
|
|
@@ -16356,7 +16357,7 @@ var require_handlebars_runtime = __commonJS((exports, module) => {
|
|
|
16356
16357
|
module.exports = exports["default"];
|
|
16357
16358
|
});
|
|
16358
16359
|
|
|
16359
|
-
//
|
|
16360
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js
|
|
16360
16361
|
var require_ast = __commonJS((exports, module) => {
|
|
16361
16362
|
exports.__esModule = true;
|
|
16362
16363
|
var AST = {
|
|
@@ -16376,7 +16377,7 @@ var require_ast = __commonJS((exports, module) => {
|
|
|
16376
16377
|
module.exports = exports["default"];
|
|
16377
16378
|
});
|
|
16378
16379
|
|
|
16379
|
-
//
|
|
16380
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js
|
|
16380
16381
|
var require_parser2 = __commonJS((exports, module) => {
|
|
16381
16382
|
exports.__esModule = true;
|
|
16382
16383
|
var handlebars = function() {
|
|
@@ -17100,7 +17101,7 @@ Expecting ` + expected.join(", ") + ", got '" + (this.terminals_[symbol] || symb
|
|
|
17100
17101
|
module.exports = exports["default"];
|
|
17101
17102
|
});
|
|
17102
17103
|
|
|
17103
|
-
//
|
|
17104
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js
|
|
17104
17105
|
var require_visitor = __commonJS((exports, module) => {
|
|
17105
17106
|
exports.__esModule = true;
|
|
17106
17107
|
function _interopRequireDefault(obj) {
|
|
@@ -17205,7 +17206,7 @@ var require_visitor = __commonJS((exports, module) => {
|
|
|
17205
17206
|
module.exports = exports["default"];
|
|
17206
17207
|
});
|
|
17207
17208
|
|
|
17208
|
-
//
|
|
17209
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js
|
|
17209
17210
|
var require_whitespace_control = __commonJS((exports, module) => {
|
|
17210
17211
|
exports.__esModule = true;
|
|
17211
17212
|
function _interopRequireDefault(obj) {
|
|
@@ -17351,7 +17352,7 @@ var require_whitespace_control = __commonJS((exports, module) => {
|
|
|
17351
17352
|
module.exports = exports["default"];
|
|
17352
17353
|
});
|
|
17353
17354
|
|
|
17354
|
-
//
|
|
17355
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js
|
|
17355
17356
|
var require_helpers2 = __commonJS((exports) => {
|
|
17356
17357
|
exports.__esModule = true;
|
|
17357
17358
|
exports.SourceLocation = SourceLocation;
|
|
@@ -17536,7 +17537,7 @@ var require_helpers2 = __commonJS((exports) => {
|
|
|
17536
17537
|
}
|
|
17537
17538
|
});
|
|
17538
17539
|
|
|
17539
|
-
//
|
|
17540
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
|
|
17540
17541
|
var require_base2 = __commonJS((exports) => {
|
|
17541
17542
|
exports.__esModule = true;
|
|
17542
17543
|
exports.parseWithoutProcessing = parseWithoutProcessing;
|
|
@@ -17635,7 +17636,7 @@ var require_base2 = __commonJS((exports) => {
|
|
|
17635
17636
|
}
|
|
17636
17637
|
});
|
|
17637
17638
|
|
|
17638
|
-
//
|
|
17639
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js
|
|
17639
17640
|
var require_compiler = __commonJS((exports) => {
|
|
17640
17641
|
exports.__esModule = true;
|
|
17641
17642
|
exports.Compiler = Compiler;
|
|
@@ -18052,7 +18053,7 @@ var require_compiler = __commonJS((exports) => {
|
|
|
18052
18053
|
}
|
|
18053
18054
|
});
|
|
18054
18055
|
|
|
18055
|
-
//
|
|
18056
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64.js
|
|
18056
18057
|
var require_base64 = __commonJS((exports) => {
|
|
18057
18058
|
var intToCharMap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");
|
|
18058
18059
|
exports.encode = function(number) {
|
|
@@ -18091,7 +18092,7 @@ var require_base64 = __commonJS((exports) => {
|
|
|
18091
18092
|
};
|
|
18092
18093
|
});
|
|
18093
18094
|
|
|
18094
|
-
//
|
|
18095
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js
|
|
18095
18096
|
var require_base64_vlq = __commonJS((exports) => {
|
|
18096
18097
|
var base64 = require_base64();
|
|
18097
18098
|
var VLQ_BASE_SHIFT = 5;
|
|
@@ -18143,7 +18144,7 @@ var require_base64_vlq = __commonJS((exports) => {
|
|
|
18143
18144
|
};
|
|
18144
18145
|
});
|
|
18145
18146
|
|
|
18146
|
-
//
|
|
18147
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/util.js
|
|
18147
18148
|
var require_util = __commonJS((exports) => {
|
|
18148
18149
|
function getArg(aArgs, aName, aDefaultValue) {
|
|
18149
18150
|
if (aName in aArgs) {
|
|
@@ -18442,7 +18443,7 @@ var require_util = __commonJS((exports) => {
|
|
|
18442
18443
|
exports.computeSourceURL = computeSourceURL;
|
|
18443
18444
|
});
|
|
18444
18445
|
|
|
18445
|
-
//
|
|
18446
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/array-set.js
|
|
18446
18447
|
var require_array_set = __commonJS((exports) => {
|
|
18447
18448
|
var util3 = require_util();
|
|
18448
18449
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -18510,7 +18511,7 @@ var require_array_set = __commonJS((exports) => {
|
|
|
18510
18511
|
exports.ArraySet = ArraySet;
|
|
18511
18512
|
});
|
|
18512
18513
|
|
|
18513
|
-
//
|
|
18514
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js
|
|
18514
18515
|
var require_mapping_list = __commonJS((exports) => {
|
|
18515
18516
|
var util3 = require_util();
|
|
18516
18517
|
function generatedPositionAfter(mappingA, mappingB) {
|
|
@@ -18547,7 +18548,7 @@ var require_mapping_list = __commonJS((exports) => {
|
|
|
18547
18548
|
exports.MappingList = MappingList;
|
|
18548
18549
|
});
|
|
18549
18550
|
|
|
18550
|
-
//
|
|
18551
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js
|
|
18551
18552
|
var require_source_map_generator = __commonJS((exports) => {
|
|
18552
18553
|
var base64VLQ = require_base64_vlq();
|
|
18553
18554
|
var util3 = require_util();
|
|
@@ -18817,7 +18818,7 @@ var require_source_map_generator = __commonJS((exports) => {
|
|
|
18817
18818
|
exports.SourceMapGenerator = SourceMapGenerator;
|
|
18818
18819
|
});
|
|
18819
18820
|
|
|
18820
|
-
//
|
|
18821
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/binary-search.js
|
|
18821
18822
|
var require_binary_search = __commonJS((exports) => {
|
|
18822
18823
|
exports.GREATEST_LOWER_BOUND = 1;
|
|
18823
18824
|
exports.LEAST_UPPER_BOUND = 2;
|
|
@@ -18864,7 +18865,7 @@ var require_binary_search = __commonJS((exports) => {
|
|
|
18864
18865
|
};
|
|
18865
18866
|
});
|
|
18866
18867
|
|
|
18867
|
-
//
|
|
18868
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js
|
|
18868
18869
|
var require_quick_sort = __commonJS((exports) => {
|
|
18869
18870
|
function swap(ary, x, y) {
|
|
18870
18871
|
var temp = ary[x];
|
|
@@ -18897,7 +18898,7 @@ var require_quick_sort = __commonJS((exports) => {
|
|
|
18897
18898
|
};
|
|
18898
18899
|
});
|
|
18899
18900
|
|
|
18900
|
-
//
|
|
18901
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js
|
|
18901
18902
|
var require_source_map_consumer = __commonJS((exports) => {
|
|
18902
18903
|
var util3 = require_util();
|
|
18903
18904
|
var binarySearch = require_binary_search();
|
|
@@ -19466,7 +19467,7 @@ var require_source_map_consumer = __commonJS((exports) => {
|
|
|
19466
19467
|
exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|
|
19467
19468
|
});
|
|
19468
19469
|
|
|
19469
|
-
//
|
|
19470
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/lib/source-node.js
|
|
19470
19471
|
var require_source_node = __commonJS((exports) => {
|
|
19471
19472
|
var SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
19472
19473
|
var util3 = require_util();
|
|
@@ -19720,14 +19721,14 @@ var require_source_node = __commonJS((exports) => {
|
|
|
19720
19721
|
exports.SourceNode = SourceNode;
|
|
19721
19722
|
});
|
|
19722
19723
|
|
|
19723
|
-
//
|
|
19724
|
+
// node_modules/.bun/source-map@0.6.1/node_modules/source-map/source-map.js
|
|
19724
19725
|
var require_source_map = __commonJS((exports) => {
|
|
19725
19726
|
exports.SourceMapGenerator = require_source_map_generator().SourceMapGenerator;
|
|
19726
19727
|
exports.SourceMapConsumer = require_source_map_consumer().SourceMapConsumer;
|
|
19727
19728
|
exports.SourceNode = require_source_node().SourceNode;
|
|
19728
19729
|
});
|
|
19729
19730
|
|
|
19730
|
-
//
|
|
19731
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js
|
|
19731
19732
|
var require_code_gen = __commonJS((exports, module) => {
|
|
19732
19733
|
exports.__esModule = true;
|
|
19733
19734
|
var _utils = require_utils();
|
|
@@ -19860,7 +19861,7 @@ var require_code_gen = __commonJS((exports, module) => {
|
|
|
19860
19861
|
module.exports = exports["default"];
|
|
19861
19862
|
});
|
|
19862
19863
|
|
|
19863
|
-
//
|
|
19864
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js
|
|
19864
19865
|
var require_javascript_compiler = __commonJS((exports, module) => {
|
|
19865
19866
|
exports.__esModule = true;
|
|
19866
19867
|
function _interopRequireDefault(obj) {
|
|
@@ -20628,7 +20629,7 @@ var require_javascript_compiler = __commonJS((exports, module) => {
|
|
|
20628
20629
|
module.exports = exports["default"];
|
|
20629
20630
|
});
|
|
20630
20631
|
|
|
20631
|
-
//
|
|
20632
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars.js
|
|
20632
20633
|
var require_handlebars = __commonJS((exports, module) => {
|
|
20633
20634
|
exports.__esModule = true;
|
|
20634
20635
|
function _interopRequireDefault(obj) {
|
|
@@ -20672,7 +20673,7 @@ var require_handlebars = __commonJS((exports, module) => {
|
|
|
20672
20673
|
module.exports = exports["default"];
|
|
20673
20674
|
});
|
|
20674
20675
|
|
|
20675
|
-
//
|
|
20676
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js
|
|
20676
20677
|
var require_printer = __commonJS((exports) => {
|
|
20677
20678
|
exports.__esModule = true;
|
|
20678
20679
|
exports.print = print;
|
|
@@ -20816,7 +20817,7 @@ var require_printer = __commonJS((exports) => {
|
|
|
20816
20817
|
};
|
|
20817
20818
|
});
|
|
20818
20819
|
|
|
20819
|
-
//
|
|
20820
|
+
// node_modules/.bun/handlebars@4.7.9/node_modules/handlebars/lib/index.js
|
|
20820
20821
|
var require_lib = __commonJS((exports, module) => {
|
|
20821
20822
|
var handlebars = require_handlebars()["default"];
|
|
20822
20823
|
var printer = require_printer();
|
|
@@ -22012,7 +22013,8 @@ var init_protocol = __esm(() => {
|
|
|
22012
22013
|
description: exports_external.string().optional(),
|
|
22013
22014
|
write_keys: exports_external.array(exports_external.string().min(1)).optional(),
|
|
22014
22015
|
passphrase: exports_external.string().optional(),
|
|
22015
|
-
attest_via_posture: exports_external.boolean().optional()
|
|
22016
|
+
attest_via_posture: exports_external.boolean().optional(),
|
|
22017
|
+
decision_id: exports_external.string().optional()
|
|
22016
22018
|
});
|
|
22017
22019
|
ListGrantsRequestSchema = exports_external.object({
|
|
22018
22020
|
v: exports_external.literal(1),
|
|
@@ -32974,7 +32976,7 @@ function deriveSlug(inputs, existing) {
|
|
|
32974
32976
|
return `${base}_${n}`;
|
|
32975
32977
|
}
|
|
32976
32978
|
|
|
32977
|
-
//
|
|
32979
|
+
// node_modules/.bun/boundary@2.0.0/node_modules/boundary/lib/index.js
|
|
32978
32980
|
var require_lib2 = __commonJS((exports2) => {
|
|
32979
32981
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
32980
32982
|
exports2.binarySearch = exports2.upperBound = exports2.lowerBound = exports2.compare = undefined;
|
|
@@ -33021,7 +33023,7 @@ var require_lib2 = __commonJS((exports2) => {
|
|
|
33021
33023
|
exports2.binarySearch = binarySearch;
|
|
33022
33024
|
});
|
|
33023
33025
|
|
|
33024
|
-
//
|
|
33026
|
+
// node_modules/.bun/structured-source@4.0.0/node_modules/structured-source/lib/structured-source.js
|
|
33025
33027
|
var require_structured_source = __commonJS((exports2) => {
|
|
33026
33028
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
33027
33029
|
exports2.StructuredSource = undefined;
|
|
@@ -33076,13 +33078,13 @@ var require_structured_source = __commonJS((exports2) => {
|
|
|
33076
33078
|
}
|
|
33077
33079
|
exports2.StructuredSource = StructuredSource;
|
|
33078
33080
|
});
|
|
33079
|
-
//
|
|
33081
|
+
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/SecretLintSourceCodeImpl.js
|
|
33080
33082
|
var import_structured_source;
|
|
33081
33083
|
var init_SecretLintSourceCodeImpl = __esm(() => {
|
|
33082
33084
|
import_structured_source = __toESM(require_structured_source(), 1);
|
|
33083
33085
|
});
|
|
33084
33086
|
|
|
33085
|
-
//
|
|
33087
|
+
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/helper/promise-event-emitter.js
|
|
33086
33088
|
class EventEmitter {
|
|
33087
33089
|
#listeners = new Map;
|
|
33088
33090
|
on(type, listener) {
|
|
@@ -33121,9 +33123,9 @@ class EventEmitter {
|
|
|
33121
33123
|
return Array.from(this.#listeners.get(type) ?? []);
|
|
33122
33124
|
}
|
|
33123
33125
|
}
|
|
33124
|
-
//
|
|
33126
|
+
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RuleContext.js
|
|
33125
33127
|
var init_RuleContext = () => {};
|
|
33126
|
-
//
|
|
33128
|
+
// node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/index.js
|
|
33127
33129
|
class SecretLintProfiler {
|
|
33128
33130
|
perf;
|
|
33129
33131
|
entries = [];
|
|
@@ -33180,7 +33182,7 @@ class SecretLintProfiler {
|
|
|
33180
33182
|
}
|
|
33181
33183
|
}
|
|
33182
33184
|
|
|
33183
|
-
//
|
|
33185
|
+
// node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/node.js
|
|
33184
33186
|
import perf_hooks from "node:perf_hooks";
|
|
33185
33187
|
|
|
33186
33188
|
class NullPerformanceObserver {
|
|
@@ -33195,19 +33197,19 @@ var init_node = __esm(() => {
|
|
|
33195
33197
|
});
|
|
33196
33198
|
});
|
|
33197
33199
|
|
|
33198
|
-
//
|
|
33200
|
+
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RunningEvents.js
|
|
33199
33201
|
var init_RunningEvents = __esm(() => {
|
|
33200
33202
|
init_node();
|
|
33201
33203
|
});
|
|
33202
33204
|
|
|
33203
|
-
//
|
|
33205
|
+
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RulePresetContext.js
|
|
33204
33206
|
var init_RulePresetContext = __esm(() => {
|
|
33205
33207
|
init_RuleContext();
|
|
33206
33208
|
});
|
|
33207
|
-
//
|
|
33209
|
+
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/messages/index.js
|
|
33208
33210
|
var init_messages = () => {};
|
|
33209
33211
|
|
|
33210
|
-
//
|
|
33212
|
+
// node_modules/.bun/ms@2.1.3/node_modules/ms/index.js
|
|
33211
33213
|
var require_ms = __commonJS((exports2, module) => {
|
|
33212
33214
|
var s = 1000;
|
|
33213
33215
|
var m = s * 60;
|
|
@@ -33317,7 +33319,7 @@ var require_ms = __commonJS((exports2, module) => {
|
|
|
33317
33319
|
}
|
|
33318
33320
|
});
|
|
33319
33321
|
|
|
33320
|
-
//
|
|
33322
|
+
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/common.js
|
|
33321
33323
|
var require_common = __commonJS((exports2, module) => {
|
|
33322
33324
|
function setup(env2) {
|
|
33323
33325
|
createDebug.debug = createDebug;
|
|
@@ -33492,7 +33494,7 @@ var require_common = __commonJS((exports2, module) => {
|
|
|
33492
33494
|
module.exports = setup;
|
|
33493
33495
|
});
|
|
33494
33496
|
|
|
33495
|
-
//
|
|
33497
|
+
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/browser.js
|
|
33496
33498
|
var require_browser = __commonJS((exports2, module) => {
|
|
33497
33499
|
exports2.formatArgs = formatArgs;
|
|
33498
33500
|
exports2.save = save;
|
|
@@ -33652,7 +33654,7 @@ var require_browser = __commonJS((exports2, module) => {
|
|
|
33652
33654
|
};
|
|
33653
33655
|
});
|
|
33654
33656
|
|
|
33655
|
-
//
|
|
33657
|
+
// node_modules/.bun/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
33656
33658
|
var require_has_flag = __commonJS((exports2, module) => {
|
|
33657
33659
|
module.exports = (flag, argv = process.argv) => {
|
|
33658
33660
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
@@ -33662,7 +33664,7 @@ var require_has_flag = __commonJS((exports2, module) => {
|
|
|
33662
33664
|
};
|
|
33663
33665
|
});
|
|
33664
33666
|
|
|
33665
|
-
//
|
|
33667
|
+
// node_modules/.bun/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
33666
33668
|
var require_supports_color = __commonJS((exports2, module) => {
|
|
33667
33669
|
var os5 = __require("os");
|
|
33668
33670
|
var tty2 = __require("tty");
|
|
@@ -33761,7 +33763,7 @@ var require_supports_color = __commonJS((exports2, module) => {
|
|
|
33761
33763
|
};
|
|
33762
33764
|
});
|
|
33763
33765
|
|
|
33764
|
-
//
|
|
33766
|
+
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/node.js
|
|
33765
33767
|
var require_node = __commonJS((exports2, module) => {
|
|
33766
33768
|
var tty2 = __require("tty");
|
|
33767
33769
|
var util3 = __require("util");
|
|
@@ -33932,7 +33934,7 @@ var require_node = __commonJS((exports2, module) => {
|
|
|
33932
33934
|
};
|
|
33933
33935
|
});
|
|
33934
33936
|
|
|
33935
|
-
//
|
|
33937
|
+
// node_modules/.bun/debug@4.4.3/node_modules/debug/src/index.js
|
|
33936
33938
|
var require_src = __commonJS((exports2, module) => {
|
|
33937
33939
|
if (typeof process === "undefined" || process.type === "renderer" || false || process.__nwjs) {
|
|
33938
33940
|
module.exports = require_browser();
|
|
@@ -33941,7 +33943,7 @@ var require_src = __commonJS((exports2, module) => {
|
|
|
33941
33943
|
}
|
|
33942
33944
|
});
|
|
33943
33945
|
|
|
33944
|
-
//
|
|
33946
|
+
// node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/index.js
|
|
33945
33947
|
var import_debug, debug;
|
|
33946
33948
|
var init_module = __esm(() => {
|
|
33947
33949
|
init_SecretLintSourceCodeImpl();
|
|
@@ -33954,7 +33956,7 @@ var init_module = __esm(() => {
|
|
|
33954
33956
|
debug = import_debug.default("@secretlint/core");
|
|
33955
33957
|
});
|
|
33956
33958
|
|
|
33957
|
-
//
|
|
33959
|
+
// node_modules/.bun/@secretlint+secretlint-rule-preset-recommend@12.2.0/node_modules/@secretlint/secretlint-rule-preset-recommend/module/index.js
|
|
33958
33960
|
function requireLodash_uniq() {
|
|
33959
33961
|
if (hasRequiredLodash_uniq)
|
|
33960
33962
|
return lodash_uniq;
|
|
@@ -35637,7 +35639,7 @@ var init_secretlint_source = __esm(() => {
|
|
|
35637
35639
|
init_suppressor();
|
|
35638
35640
|
});
|
|
35639
35641
|
|
|
35640
|
-
//
|
|
35642
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/core.js
|
|
35641
35643
|
function $constructor(name, initializer, params) {
|
|
35642
35644
|
function init(inst, def) {
|
|
35643
35645
|
var _a;
|
|
@@ -35700,7 +35702,7 @@ var init_core = __esm(() => {
|
|
|
35700
35702
|
globalConfig = {};
|
|
35701
35703
|
});
|
|
35702
35704
|
|
|
35703
|
-
//
|
|
35705
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/util.js
|
|
35704
35706
|
var exports_util = {};
|
|
35705
35707
|
__export(exports_util, {
|
|
35706
35708
|
unwrapMessage: () => unwrapMessage,
|
|
@@ -36216,7 +36218,7 @@ var init_util2 = __esm(() => {
|
|
|
36216
36218
|
};
|
|
36217
36219
|
});
|
|
36218
36220
|
|
|
36219
|
-
//
|
|
36221
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/errors.js
|
|
36220
36222
|
function flattenError(error, mapper = (issue2) => issue2.message) {
|
|
36221
36223
|
const fieldErrors = {};
|
|
36222
36224
|
const formErrors = [];
|
|
@@ -36294,7 +36296,7 @@ var init_errors2 = __esm(() => {
|
|
|
36294
36296
|
$ZodRealError = $constructor("$ZodError", initializer, { Parent: Error });
|
|
36295
36297
|
});
|
|
36296
36298
|
|
|
36297
|
-
//
|
|
36299
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/parse.js
|
|
36298
36300
|
var _parse = (_Err) => (schema, value, _ctx, _params) => {
|
|
36299
36301
|
const ctx = _ctx ? Object.assign(_ctx, { async: false }) : { async: false };
|
|
36300
36302
|
const result = schema._zod.run({ value, issues: [] }, ctx);
|
|
@@ -36346,7 +36348,7 @@ var init_parse = __esm(() => {
|
|
|
36346
36348
|
safeParseAsync = /* @__PURE__ */ _safeParseAsync($ZodRealError);
|
|
36347
36349
|
});
|
|
36348
36350
|
|
|
36349
|
-
//
|
|
36351
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/regexes.js
|
|
36350
36352
|
function emoji() {
|
|
36351
36353
|
return new RegExp(_emoji, "u");
|
|
36352
36354
|
}
|
|
@@ -36403,7 +36405,7 @@ var init_regexes = __esm(() => {
|
|
|
36403
36405
|
uppercase = /^[^a-z]*$/;
|
|
36404
36406
|
});
|
|
36405
36407
|
|
|
36406
|
-
//
|
|
36408
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/checks.js
|
|
36407
36409
|
var $ZodCheck, numericOriginMap, $ZodCheckLessThan, $ZodCheckGreaterThan, $ZodCheckMultipleOf, $ZodCheckNumberFormat, $ZodCheckMaxLength, $ZodCheckMinLength, $ZodCheckLengthEquals, $ZodCheckStringFormat, $ZodCheckRegex, $ZodCheckLowerCase, $ZodCheckUpperCase, $ZodCheckIncludes, $ZodCheckStartsWith, $ZodCheckEndsWith, $ZodCheckOverwrite;
|
|
36408
36410
|
var init_checks = __esm(() => {
|
|
36409
36411
|
init_core();
|
|
@@ -36793,7 +36795,7 @@ var init_checks = __esm(() => {
|
|
|
36793
36795
|
});
|
|
36794
36796
|
});
|
|
36795
36797
|
|
|
36796
|
-
//
|
|
36798
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/doc.js
|
|
36797
36799
|
class Doc {
|
|
36798
36800
|
constructor(args = []) {
|
|
36799
36801
|
this.content = [];
|
|
@@ -36831,7 +36833,7 @@ class Doc {
|
|
|
36831
36833
|
}
|
|
36832
36834
|
}
|
|
36833
36835
|
|
|
36834
|
-
//
|
|
36836
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/versions.js
|
|
36835
36837
|
var version2;
|
|
36836
36838
|
var init_versions = __esm(() => {
|
|
36837
36839
|
version2 = {
|
|
@@ -36841,7 +36843,7 @@ var init_versions = __esm(() => {
|
|
|
36841
36843
|
};
|
|
36842
36844
|
});
|
|
36843
36845
|
|
|
36844
|
-
//
|
|
36846
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/schemas.js
|
|
36845
36847
|
function isValidBase64(data) {
|
|
36846
36848
|
if (data === "")
|
|
36847
36849
|
return true;
|
|
@@ -38083,7 +38085,7 @@ var init_schemas = __esm(() => {
|
|
|
38083
38085
|
});
|
|
38084
38086
|
});
|
|
38085
38087
|
|
|
38086
|
-
//
|
|
38088
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/en.js
|
|
38087
38089
|
function en_default2() {
|
|
38088
38090
|
return {
|
|
38089
38091
|
localeError: error()
|
|
@@ -38203,10 +38205,10 @@ var init_en2 = __esm(() => {
|
|
|
38203
38205
|
init_util2();
|
|
38204
38206
|
});
|
|
38205
38207
|
|
|
38206
|
-
//
|
|
38208
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/locales/index.js
|
|
38207
38209
|
var init_locales = () => {};
|
|
38208
38210
|
|
|
38209
|
-
//
|
|
38211
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/registries.js
|
|
38210
38212
|
class $ZodRegistry {
|
|
38211
38213
|
constructor() {
|
|
38212
38214
|
this._map = new Map;
|
|
@@ -38259,7 +38261,7 @@ var init_registries = __esm(() => {
|
|
|
38259
38261
|
globalRegistry = /* @__PURE__ */ registry();
|
|
38260
38262
|
});
|
|
38261
38263
|
|
|
38262
|
-
//
|
|
38264
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/api.js
|
|
38263
38265
|
function _string(Class2, params) {
|
|
38264
38266
|
return new Class2({
|
|
38265
38267
|
type: "string",
|
|
@@ -38699,16 +38701,16 @@ var init_api = __esm(() => {
|
|
|
38699
38701
|
init_util2();
|
|
38700
38702
|
});
|
|
38701
38703
|
|
|
38702
|
-
//
|
|
38704
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/function.js
|
|
38703
38705
|
var init_function = () => {};
|
|
38704
38706
|
|
|
38705
|
-
//
|
|
38707
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/to-json-schema.js
|
|
38706
38708
|
var init_to_json_schema = () => {};
|
|
38707
38709
|
|
|
38708
|
-
//
|
|
38710
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/json-schema.js
|
|
38709
38711
|
var init_json_schema = () => {};
|
|
38710
38712
|
|
|
38711
|
-
//
|
|
38713
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/core/index.js
|
|
38712
38714
|
var init_core2 = __esm(() => {
|
|
38713
38715
|
init_util2();
|
|
38714
38716
|
init_regexes();
|
|
@@ -38726,24 +38728,24 @@ var init_core2 = __esm(() => {
|
|
|
38726
38728
|
init_to_json_schema();
|
|
38727
38729
|
});
|
|
38728
38730
|
|
|
38729
|
-
//
|
|
38731
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/parse.js
|
|
38730
38732
|
var init_parse2 = __esm(() => {
|
|
38731
38733
|
init_core2();
|
|
38732
38734
|
});
|
|
38733
38735
|
|
|
38734
|
-
//
|
|
38736
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/schemas.js
|
|
38735
38737
|
var init_schemas2 = () => {};
|
|
38736
38738
|
|
|
38737
|
-
//
|
|
38739
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/checks.js
|
|
38738
38740
|
var init_checks2 = () => {};
|
|
38739
38741
|
|
|
38740
|
-
//
|
|
38742
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/iso.js
|
|
38741
38743
|
var init_iso = () => {};
|
|
38742
38744
|
|
|
38743
|
-
//
|
|
38745
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/coerce.js
|
|
38744
38746
|
var init_coerce = () => {};
|
|
38745
38747
|
|
|
38746
|
-
//
|
|
38748
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/external.js
|
|
38747
38749
|
var init_external2 = __esm(() => {
|
|
38748
38750
|
init_core2();
|
|
38749
38751
|
init_locales();
|
|
@@ -38754,17 +38756,17 @@ var init_external2 = __esm(() => {
|
|
|
38754
38756
|
init_checks2();
|
|
38755
38757
|
});
|
|
38756
38758
|
|
|
38757
|
-
//
|
|
38759
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/mini/index.js
|
|
38758
38760
|
var init_mini = __esm(() => {
|
|
38759
38761
|
init_external2();
|
|
38760
38762
|
});
|
|
38761
38763
|
|
|
38762
|
-
//
|
|
38764
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4-mini/index.js
|
|
38763
38765
|
var init_v4_mini = __esm(() => {
|
|
38764
38766
|
init_mini();
|
|
38765
38767
|
});
|
|
38766
38768
|
|
|
38767
|
-
//
|
|
38769
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js
|
|
38768
38770
|
function isZ4Schema(s) {
|
|
38769
38771
|
const schema = s;
|
|
38770
38772
|
return !!schema._zod;
|
|
@@ -38830,12 +38832,12 @@ var init_zod_compat = __esm(() => {
|
|
|
38830
38832
|
init_v4_mini();
|
|
38831
38833
|
});
|
|
38832
38834
|
|
|
38833
|
-
//
|
|
38835
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/checks.js
|
|
38834
38836
|
var init_checks3 = __esm(() => {
|
|
38835
38837
|
init_core2();
|
|
38836
38838
|
});
|
|
38837
38839
|
|
|
38838
|
-
//
|
|
38840
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/iso.js
|
|
38839
38841
|
var exports_iso2 = {};
|
|
38840
38842
|
__export(exports_iso2, {
|
|
38841
38843
|
time: () => time2,
|
|
@@ -38881,7 +38883,7 @@ var init_iso2 = __esm(() => {
|
|
|
38881
38883
|
});
|
|
38882
38884
|
});
|
|
38883
38885
|
|
|
38884
|
-
//
|
|
38886
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/errors.js
|
|
38885
38887
|
var initializer2 = (inst, issues) => {
|
|
38886
38888
|
$ZodError.init(inst, issues);
|
|
38887
38889
|
inst.name = "ZodError";
|
|
@@ -38914,7 +38916,7 @@ var init_errors3 = __esm(() => {
|
|
|
38914
38916
|
});
|
|
38915
38917
|
});
|
|
38916
38918
|
|
|
38917
|
-
//
|
|
38919
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/parse.js
|
|
38918
38920
|
var parse4, parseAsync2, safeParse3, safeParseAsync2;
|
|
38919
38921
|
var init_parse3 = __esm(() => {
|
|
38920
38922
|
init_core2();
|
|
@@ -38925,7 +38927,7 @@ var init_parse3 = __esm(() => {
|
|
|
38925
38927
|
safeParseAsync2 = /* @__PURE__ */ _safeParseAsync(ZodRealError);
|
|
38926
38928
|
});
|
|
38927
38929
|
|
|
38928
|
-
//
|
|
38930
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/schemas.js
|
|
38929
38931
|
function string2(params) {
|
|
38930
38932
|
return _string(ZodString2, params);
|
|
38931
38933
|
}
|
|
@@ -39539,13 +39541,13 @@ var init_schemas3 = __esm(() => {
|
|
|
39539
39541
|
});
|
|
39540
39542
|
});
|
|
39541
39543
|
|
|
39542
|
-
//
|
|
39544
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/compat.js
|
|
39543
39545
|
var init_compat = () => {};
|
|
39544
39546
|
|
|
39545
|
-
//
|
|
39547
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/coerce.js
|
|
39546
39548
|
var init_coerce2 = () => {};
|
|
39547
39549
|
|
|
39548
|
-
//
|
|
39550
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/external.js
|
|
39549
39551
|
var init_external3 = __esm(() => {
|
|
39550
39552
|
init_core2();
|
|
39551
39553
|
init_core2();
|
|
@@ -39561,17 +39563,17 @@ var init_external3 = __esm(() => {
|
|
|
39561
39563
|
config(en_default2());
|
|
39562
39564
|
});
|
|
39563
39565
|
|
|
39564
|
-
//
|
|
39566
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/classic/index.js
|
|
39565
39567
|
var init_classic = __esm(() => {
|
|
39566
39568
|
init_external3();
|
|
39567
39569
|
});
|
|
39568
39570
|
|
|
39569
|
-
//
|
|
39571
|
+
// node_modules/.bun/zod@3.25.76/node_modules/zod/v4/index.js
|
|
39570
39572
|
var init_v4 = __esm(() => {
|
|
39571
39573
|
init_classic();
|
|
39572
39574
|
});
|
|
39573
39575
|
|
|
39574
|
-
//
|
|
39576
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
39575
39577
|
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;
|
|
39576
39578
|
var init_types2 = __esm(() => {
|
|
39577
39579
|
init_v4();
|
|
@@ -40399,65 +40401,65 @@ var init_types2 = __esm(() => {
|
|
|
40399
40401
|
};
|
|
40400
40402
|
});
|
|
40401
40403
|
|
|
40402
|
-
//
|
|
40404
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js
|
|
40403
40405
|
function isTerminal(status) {
|
|
40404
40406
|
return status === "completed" || status === "failed" || status === "cancelled";
|
|
40405
40407
|
}
|
|
40406
40408
|
|
|
40407
|
-
//
|
|
40409
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/Options.js
|
|
40408
40410
|
var ignoreOverride;
|
|
40409
40411
|
var init_Options = __esm(() => {
|
|
40410
40412
|
ignoreOverride = Symbol("Let zodToJsonSchema decide on which parser to use");
|
|
40411
40413
|
});
|
|
40412
40414
|
|
|
40413
|
-
//
|
|
40415
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/Refs.js
|
|
40414
40416
|
var init_Refs = __esm(() => {
|
|
40415
40417
|
init_Options();
|
|
40416
40418
|
});
|
|
40417
|
-
//
|
|
40419
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/any.js
|
|
40418
40420
|
var init_any = () => {};
|
|
40419
40421
|
|
|
40420
|
-
//
|
|
40422
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/array.js
|
|
40421
40423
|
var init_array = __esm(() => {
|
|
40422
40424
|
init_parseDef();
|
|
40423
40425
|
});
|
|
40424
40426
|
|
|
40425
|
-
//
|
|
40427
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js
|
|
40426
40428
|
var init_bigint = () => {};
|
|
40427
|
-
//
|
|
40429
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js
|
|
40428
40430
|
var init_branded = __esm(() => {
|
|
40429
40431
|
init_parseDef();
|
|
40430
40432
|
});
|
|
40431
40433
|
|
|
40432
|
-
//
|
|
40434
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js
|
|
40433
40435
|
var init_catch = __esm(() => {
|
|
40434
40436
|
init_parseDef();
|
|
40435
40437
|
});
|
|
40436
40438
|
|
|
40437
|
-
//
|
|
40439
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/date.js
|
|
40438
40440
|
var init_date = () => {};
|
|
40439
40441
|
|
|
40440
|
-
//
|
|
40442
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/default.js
|
|
40441
40443
|
var init_default = __esm(() => {
|
|
40442
40444
|
init_parseDef();
|
|
40443
40445
|
});
|
|
40444
40446
|
|
|
40445
|
-
//
|
|
40447
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js
|
|
40446
40448
|
var init_effects = __esm(() => {
|
|
40447
40449
|
init_parseDef();
|
|
40448
40450
|
init_any();
|
|
40449
40451
|
});
|
|
40450
|
-
//
|
|
40452
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js
|
|
40451
40453
|
var init_intersection = __esm(() => {
|
|
40452
40454
|
init_parseDef();
|
|
40453
40455
|
});
|
|
40454
|
-
//
|
|
40456
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/string.js
|
|
40455
40457
|
var ALPHA_NUMERIC;
|
|
40456
40458
|
var init_string = __esm(() => {
|
|
40457
40459
|
ALPHA_NUMERIC = new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");
|
|
40458
40460
|
});
|
|
40459
40461
|
|
|
40460
|
-
//
|
|
40462
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/record.js
|
|
40461
40463
|
var init_record = __esm(() => {
|
|
40462
40464
|
init_parseDef();
|
|
40463
40465
|
init_string();
|
|
@@ -40465,77 +40467,77 @@ var init_record = __esm(() => {
|
|
|
40465
40467
|
init_any();
|
|
40466
40468
|
});
|
|
40467
40469
|
|
|
40468
|
-
//
|
|
40470
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/map.js
|
|
40469
40471
|
var init_map = __esm(() => {
|
|
40470
40472
|
init_parseDef();
|
|
40471
40473
|
init_record();
|
|
40472
40474
|
init_any();
|
|
40473
40475
|
});
|
|
40474
|
-
//
|
|
40476
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/never.js
|
|
40475
40477
|
var init_never = __esm(() => {
|
|
40476
40478
|
init_any();
|
|
40477
40479
|
});
|
|
40478
|
-
//
|
|
40480
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/union.js
|
|
40479
40481
|
var init_union = __esm(() => {
|
|
40480
40482
|
init_parseDef();
|
|
40481
40483
|
});
|
|
40482
40484
|
|
|
40483
|
-
//
|
|
40485
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js
|
|
40484
40486
|
var init_nullable = __esm(() => {
|
|
40485
40487
|
init_parseDef();
|
|
40486
40488
|
init_union();
|
|
40487
40489
|
});
|
|
40488
40490
|
|
|
40489
|
-
//
|
|
40491
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/number.js
|
|
40490
40492
|
var init_number = () => {};
|
|
40491
40493
|
|
|
40492
|
-
//
|
|
40494
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/object.js
|
|
40493
40495
|
var init_object = __esm(() => {
|
|
40494
40496
|
init_parseDef();
|
|
40495
40497
|
});
|
|
40496
40498
|
|
|
40497
|
-
//
|
|
40499
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js
|
|
40498
40500
|
var init_optional = __esm(() => {
|
|
40499
40501
|
init_parseDef();
|
|
40500
40502
|
init_any();
|
|
40501
40503
|
});
|
|
40502
40504
|
|
|
40503
|
-
//
|
|
40505
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js
|
|
40504
40506
|
var init_pipeline = __esm(() => {
|
|
40505
40507
|
init_parseDef();
|
|
40506
40508
|
});
|
|
40507
40509
|
|
|
40508
|
-
//
|
|
40510
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js
|
|
40509
40511
|
var init_promise = __esm(() => {
|
|
40510
40512
|
init_parseDef();
|
|
40511
40513
|
});
|
|
40512
40514
|
|
|
40513
|
-
//
|
|
40515
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/set.js
|
|
40514
40516
|
var init_set = __esm(() => {
|
|
40515
40517
|
init_parseDef();
|
|
40516
40518
|
});
|
|
40517
40519
|
|
|
40518
|
-
//
|
|
40520
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js
|
|
40519
40521
|
var init_tuple = __esm(() => {
|
|
40520
40522
|
init_parseDef();
|
|
40521
40523
|
});
|
|
40522
40524
|
|
|
40523
|
-
//
|
|
40525
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js
|
|
40524
40526
|
var init_undefined = __esm(() => {
|
|
40525
40527
|
init_any();
|
|
40526
40528
|
});
|
|
40527
40529
|
|
|
40528
|
-
//
|
|
40530
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js
|
|
40529
40531
|
var init_unknown = __esm(() => {
|
|
40530
40532
|
init_any();
|
|
40531
40533
|
});
|
|
40532
40534
|
|
|
40533
|
-
//
|
|
40535
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js
|
|
40534
40536
|
var init_readonly = __esm(() => {
|
|
40535
40537
|
init_parseDef();
|
|
40536
40538
|
});
|
|
40537
40539
|
|
|
40538
|
-
//
|
|
40540
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/selectParser.js
|
|
40539
40541
|
var init_selectParser = __esm(() => {
|
|
40540
40542
|
init_any();
|
|
40541
40543
|
init_array();
|
|
@@ -40564,24 +40566,24 @@ var init_selectParser = __esm(() => {
|
|
|
40564
40566
|
init_readonly();
|
|
40565
40567
|
});
|
|
40566
40568
|
|
|
40567
|
-
//
|
|
40569
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parseDef.js
|
|
40568
40570
|
var init_parseDef = __esm(() => {
|
|
40569
40571
|
init_Options();
|
|
40570
40572
|
init_selectParser();
|
|
40571
40573
|
init_any();
|
|
40572
40574
|
});
|
|
40573
40575
|
|
|
40574
|
-
//
|
|
40576
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/parseTypes.js
|
|
40575
40577
|
var init_parseTypes = () => {};
|
|
40576
40578
|
|
|
40577
|
-
//
|
|
40579
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js
|
|
40578
40580
|
var init_zodToJsonSchema = __esm(() => {
|
|
40579
40581
|
init_parseDef();
|
|
40580
40582
|
init_Refs();
|
|
40581
40583
|
init_any();
|
|
40582
40584
|
});
|
|
40583
40585
|
|
|
40584
|
-
//
|
|
40586
|
+
// node_modules/.bun/zod-to-json-schema@3.25.2+27912429049419a2/node_modules/zod-to-json-schema/dist/esm/index.js
|
|
40585
40587
|
var init_esm = __esm(() => {
|
|
40586
40588
|
init_zodToJsonSchema();
|
|
40587
40589
|
init_Options();
|
|
@@ -40617,7 +40619,7 @@ var init_esm = __esm(() => {
|
|
|
40617
40619
|
init_zodToJsonSchema();
|
|
40618
40620
|
});
|
|
40619
40621
|
|
|
40620
|
-
//
|
|
40622
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js
|
|
40621
40623
|
function getMethodLiteral(schema) {
|
|
40622
40624
|
const shape = getObjectShape(schema);
|
|
40623
40625
|
const methodSchema = shape?.method;
|
|
@@ -40642,7 +40644,7 @@ var init_zod_json_schema_compat = __esm(() => {
|
|
|
40642
40644
|
init_esm();
|
|
40643
40645
|
});
|
|
40644
40646
|
|
|
40645
|
-
//
|
|
40647
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js
|
|
40646
40648
|
class Protocol {
|
|
40647
40649
|
constructor(_options) {
|
|
40648
40650
|
this._options = _options;
|
|
@@ -41487,7 +41489,7 @@ var init_protocol4 = __esm(() => {
|
|
|
41487
41489
|
init_zod_json_schema_compat();
|
|
41488
41490
|
});
|
|
41489
41491
|
|
|
41490
|
-
//
|
|
41492
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/code.js
|
|
41491
41493
|
var require_code = __commonJS((exports2) => {
|
|
41492
41494
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41493
41495
|
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;
|
|
@@ -41641,7 +41643,7 @@ var require_code = __commonJS((exports2) => {
|
|
|
41641
41643
|
exports2.regexpCode = regexpCode;
|
|
41642
41644
|
});
|
|
41643
41645
|
|
|
41644
|
-
//
|
|
41646
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/scope.js
|
|
41645
41647
|
var require_scope = __commonJS((exports2) => {
|
|
41646
41648
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41647
41649
|
exports2.ValueScope = exports2.ValueScopeName = exports2.Scope = exports2.varKinds = exports2.UsedValueState = undefined;
|
|
@@ -41787,7 +41789,7 @@ var require_scope = __commonJS((exports2) => {
|
|
|
41787
41789
|
exports2.ValueScope = ValueScope;
|
|
41788
41790
|
});
|
|
41789
41791
|
|
|
41790
|
-
//
|
|
41792
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/index.js
|
|
41791
41793
|
var require_codegen = __commonJS((exports2) => {
|
|
41792
41794
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
41793
41795
|
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;
|
|
@@ -42497,7 +42499,7 @@ var require_codegen = __commonJS((exports2) => {
|
|
|
42497
42499
|
}
|
|
42498
42500
|
});
|
|
42499
42501
|
|
|
42500
|
-
//
|
|
42502
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/util.js
|
|
42501
42503
|
var require_util2 = __commonJS((exports2) => {
|
|
42502
42504
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42503
42505
|
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;
|
|
@@ -42661,7 +42663,7 @@ var require_util2 = __commonJS((exports2) => {
|
|
|
42661
42663
|
exports2.checkStrictMode = checkStrictMode;
|
|
42662
42664
|
});
|
|
42663
42665
|
|
|
42664
|
-
//
|
|
42666
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/names.js
|
|
42665
42667
|
var require_names = __commonJS((exports2) => {
|
|
42666
42668
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42667
42669
|
var codegen_1 = require_codegen();
|
|
@@ -42686,7 +42688,7 @@ var require_names = __commonJS((exports2) => {
|
|
|
42686
42688
|
exports2.default = names;
|
|
42687
42689
|
});
|
|
42688
42690
|
|
|
42689
|
-
//
|
|
42691
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/errors.js
|
|
42690
42692
|
var require_errors2 = __commonJS((exports2) => {
|
|
42691
42693
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42692
42694
|
exports2.extendErrors = exports2.resetErrorsCount = exports2.reportExtraError = exports2.reportError = exports2.keyword$DataError = exports2.keywordError = undefined;
|
|
@@ -42804,7 +42806,7 @@ var require_errors2 = __commonJS((exports2) => {
|
|
|
42804
42806
|
}
|
|
42805
42807
|
});
|
|
42806
42808
|
|
|
42807
|
-
//
|
|
42809
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/boolSchema.js
|
|
42808
42810
|
var require_boolSchema = __commonJS((exports2) => {
|
|
42809
42811
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42810
42812
|
exports2.boolOrEmptySchema = exports2.topBoolOrEmptySchema = undefined;
|
|
@@ -42852,7 +42854,7 @@ var require_boolSchema = __commonJS((exports2) => {
|
|
|
42852
42854
|
}
|
|
42853
42855
|
});
|
|
42854
42856
|
|
|
42855
|
-
//
|
|
42857
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/rules.js
|
|
42856
42858
|
var require_rules = __commonJS((exports2) => {
|
|
42857
42859
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42858
42860
|
exports2.getRules = exports2.isJSONType = undefined;
|
|
@@ -42880,7 +42882,7 @@ var require_rules = __commonJS((exports2) => {
|
|
|
42880
42882
|
exports2.getRules = getRules;
|
|
42881
42883
|
});
|
|
42882
42884
|
|
|
42883
|
-
//
|
|
42885
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/applicability.js
|
|
42884
42886
|
var require_applicability = __commonJS((exports2) => {
|
|
42885
42887
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42886
42888
|
exports2.shouldUseRule = exports2.shouldUseGroup = exports2.schemaHasRulesForType = undefined;
|
|
@@ -42900,7 +42902,7 @@ var require_applicability = __commonJS((exports2) => {
|
|
|
42900
42902
|
exports2.shouldUseRule = shouldUseRule;
|
|
42901
42903
|
});
|
|
42902
42904
|
|
|
42903
|
-
//
|
|
42905
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/dataType.js
|
|
42904
42906
|
var require_dataType = __commonJS((exports2) => {
|
|
42905
42907
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
42906
42908
|
exports2.reportTypeError = exports2.checkDataTypes = exports2.checkDataType = exports2.coerceAndCheckDataType = exports2.getJSONTypes = exports2.getSchemaTypes = exports2.DataType = undefined;
|
|
@@ -43081,7 +43083,7 @@ var require_dataType = __commonJS((exports2) => {
|
|
|
43081
43083
|
}
|
|
43082
43084
|
});
|
|
43083
43085
|
|
|
43084
|
-
//
|
|
43086
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/defaults.js
|
|
43085
43087
|
var require_defaults = __commonJS((exports2) => {
|
|
43086
43088
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43087
43089
|
exports2.assignDefaults = undefined;
|
|
@@ -43115,7 +43117,7 @@ var require_defaults = __commonJS((exports2) => {
|
|
|
43115
43117
|
}
|
|
43116
43118
|
});
|
|
43117
43119
|
|
|
43118
|
-
//
|
|
43120
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/code.js
|
|
43119
43121
|
var require_code2 = __commonJS((exports2) => {
|
|
43120
43122
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43121
43123
|
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;
|
|
@@ -43244,7 +43246,7 @@ var require_code2 = __commonJS((exports2) => {
|
|
|
43244
43246
|
exports2.validateUnion = validateUnion;
|
|
43245
43247
|
});
|
|
43246
43248
|
|
|
43247
|
-
//
|
|
43249
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/keyword.js
|
|
43248
43250
|
var require_keyword = __commonJS((exports2) => {
|
|
43249
43251
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43250
43252
|
exports2.validateKeywordUsage = exports2.validSchemaType = exports2.funcKeywordCode = exports2.macroKeywordCode = undefined;
|
|
@@ -43359,7 +43361,7 @@ var require_keyword = __commonJS((exports2) => {
|
|
|
43359
43361
|
exports2.validateKeywordUsage = validateKeywordUsage;
|
|
43360
43362
|
});
|
|
43361
43363
|
|
|
43362
|
-
//
|
|
43364
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/subschema.js
|
|
43363
43365
|
var require_subschema = __commonJS((exports2) => {
|
|
43364
43366
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43365
43367
|
exports2.extendSubschemaMode = exports2.extendSubschemaData = exports2.getSubschema = undefined;
|
|
@@ -43439,7 +43441,7 @@ var require_subschema = __commonJS((exports2) => {
|
|
|
43439
43441
|
exports2.extendSubschemaMode = extendSubschemaMode;
|
|
43440
43442
|
});
|
|
43441
43443
|
|
|
43442
|
-
//
|
|
43444
|
+
// node_modules/.bun/fast-deep-equal@3.1.3/node_modules/fast-deep-equal/index.js
|
|
43443
43445
|
var require_fast_deep_equal = __commonJS((exports2, module) => {
|
|
43444
43446
|
module.exports = function equal(a, b) {
|
|
43445
43447
|
if (a === b)
|
|
@@ -43481,7 +43483,7 @@ var require_fast_deep_equal = __commonJS((exports2, module) => {
|
|
|
43481
43483
|
};
|
|
43482
43484
|
});
|
|
43483
43485
|
|
|
43484
|
-
//
|
|
43486
|
+
// node_modules/.bun/json-schema-traverse@1.0.0/node_modules/json-schema-traverse/index.js
|
|
43485
43487
|
var require_json_schema_traverse = __commonJS((exports2, module) => {
|
|
43486
43488
|
var traverse = module.exports = function(schema, opts, cb) {
|
|
43487
43489
|
if (typeof opts == "function") {
|
|
@@ -43564,7 +43566,7 @@ var require_json_schema_traverse = __commonJS((exports2, module) => {
|
|
|
43564
43566
|
}
|
|
43565
43567
|
});
|
|
43566
43568
|
|
|
43567
|
-
//
|
|
43569
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/resolve.js
|
|
43568
43570
|
var require_resolve = __commonJS((exports2) => {
|
|
43569
43571
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43570
43572
|
exports2.getSchemaRefs = exports2.resolveUrl = exports2.normalizeId = exports2._getFullPath = exports2.getFullPath = exports2.inlineRef = undefined;
|
|
@@ -43717,7 +43719,7 @@ var require_resolve = __commonJS((exports2) => {
|
|
|
43717
43719
|
exports2.getSchemaRefs = getSchemaRefs;
|
|
43718
43720
|
});
|
|
43719
43721
|
|
|
43720
|
-
//
|
|
43722
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/validate/index.js
|
|
43721
43723
|
var require_validate = __commonJS((exports2) => {
|
|
43722
43724
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43723
43725
|
exports2.getData = exports2.KeywordCxt = exports2.validateFunctionCode = undefined;
|
|
@@ -44222,7 +44224,7 @@ var require_validate = __commonJS((exports2) => {
|
|
|
44222
44224
|
exports2.getData = getData;
|
|
44223
44225
|
});
|
|
44224
44226
|
|
|
44225
|
-
//
|
|
44227
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/validation_error.js
|
|
44226
44228
|
var require_validation_error = __commonJS((exports2) => {
|
|
44227
44229
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44228
44230
|
|
|
@@ -44236,7 +44238,7 @@ var require_validation_error = __commonJS((exports2) => {
|
|
|
44236
44238
|
exports2.default = ValidationError;
|
|
44237
44239
|
});
|
|
44238
44240
|
|
|
44239
|
-
//
|
|
44241
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/ref_error.js
|
|
44240
44242
|
var require_ref_error = __commonJS((exports2) => {
|
|
44241
44243
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44242
44244
|
var resolve_1 = require_resolve();
|
|
@@ -44251,7 +44253,7 @@ var require_ref_error = __commonJS((exports2) => {
|
|
|
44251
44253
|
exports2.default = MissingRefError;
|
|
44252
44254
|
});
|
|
44253
44255
|
|
|
44254
|
-
//
|
|
44256
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/compile/index.js
|
|
44255
44257
|
var require_compile = __commonJS((exports2) => {
|
|
44256
44258
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44257
44259
|
exports2.resolveSchema = exports2.getCompilingSchema = exports2.resolveRef = exports2.compileSchema = exports2.SchemaEnv = undefined;
|
|
@@ -44472,7 +44474,7 @@ var require_compile = __commonJS((exports2) => {
|
|
|
44472
44474
|
}
|
|
44473
44475
|
});
|
|
44474
44476
|
|
|
44475
|
-
//
|
|
44477
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/data.json
|
|
44476
44478
|
var require_data = __commonJS((exports2, module) => {
|
|
44477
44479
|
module.exports = {
|
|
44478
44480
|
$id: "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
|
|
@@ -44489,7 +44491,7 @@ var require_data = __commonJS((exports2, module) => {
|
|
|
44489
44491
|
};
|
|
44490
44492
|
});
|
|
44491
44493
|
|
|
44492
|
-
//
|
|
44494
|
+
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/utils.js
|
|
44493
44495
|
var require_utils2 = __commonJS((exports2, module) => {
|
|
44494
44496
|
var isUUID = RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu);
|
|
44495
44497
|
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);
|
|
@@ -44744,7 +44746,7 @@ var require_utils2 = __commonJS((exports2, module) => {
|
|
|
44744
44746
|
};
|
|
44745
44747
|
});
|
|
44746
44748
|
|
|
44747
|
-
//
|
|
44749
|
+
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/lib/schemes.js
|
|
44748
44750
|
var require_schemes = __commonJS((exports2, module) => {
|
|
44749
44751
|
var { isUUID } = require_utils2();
|
|
44750
44752
|
var URN_REG = /([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu;
|
|
@@ -44918,7 +44920,7 @@ var require_schemes = __commonJS((exports2, module) => {
|
|
|
44918
44920
|
};
|
|
44919
44921
|
});
|
|
44920
44922
|
|
|
44921
|
-
//
|
|
44923
|
+
// node_modules/.bun/fast-uri@3.1.0/node_modules/fast-uri/index.js
|
|
44922
44924
|
var require_fast_uri = __commonJS((exports2, module) => {
|
|
44923
44925
|
var { normalizeIPv6, removeDotSegments, recomposeAuthority, normalizeComponentEncoding, isIPv4, nonSimpleDomain } = require_utils2();
|
|
44924
44926
|
var { SCHEMES, getSchemeHandler } = require_schemes();
|
|
@@ -45169,7 +45171,7 @@ var require_fast_uri = __commonJS((exports2, module) => {
|
|
|
45169
45171
|
module.exports.fastUri = fastUri;
|
|
45170
45172
|
});
|
|
45171
45173
|
|
|
45172
|
-
//
|
|
45174
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/uri.js
|
|
45173
45175
|
var require_uri = __commonJS((exports2) => {
|
|
45174
45176
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45175
45177
|
var uri = require_fast_uri();
|
|
@@ -45177,7 +45179,7 @@ var require_uri = __commonJS((exports2) => {
|
|
|
45177
45179
|
exports2.default = uri;
|
|
45178
45180
|
});
|
|
45179
45181
|
|
|
45180
|
-
//
|
|
45182
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/core.js
|
|
45181
45183
|
var require_core = __commonJS((exports2) => {
|
|
45182
45184
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45183
45185
|
exports2.CodeGen = exports2.Name = exports2.nil = exports2.stringify = exports2.str = exports2._ = exports2.KeywordCxt = undefined;
|
|
@@ -45770,7 +45772,7 @@ var require_core = __commonJS((exports2) => {
|
|
|
45770
45772
|
}
|
|
45771
45773
|
});
|
|
45772
45774
|
|
|
45773
|
-
//
|
|
45775
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/id.js
|
|
45774
45776
|
var require_id = __commonJS((exports2) => {
|
|
45775
45777
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45776
45778
|
var def = {
|
|
@@ -45782,7 +45784,7 @@ var require_id = __commonJS((exports2) => {
|
|
|
45782
45784
|
exports2.default = def;
|
|
45783
45785
|
});
|
|
45784
45786
|
|
|
45785
|
-
//
|
|
45787
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/ref.js
|
|
45786
45788
|
var require_ref = __commonJS((exports2) => {
|
|
45787
45789
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45788
45790
|
exports2.callRef = exports2.getValidate = undefined;
|
|
@@ -45901,7 +45903,7 @@ var require_ref = __commonJS((exports2) => {
|
|
|
45901
45903
|
exports2.default = def;
|
|
45902
45904
|
});
|
|
45903
45905
|
|
|
45904
|
-
//
|
|
45906
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/core/index.js
|
|
45905
45907
|
var require_core2 = __commonJS((exports2) => {
|
|
45906
45908
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45907
45909
|
var id_1 = require_id();
|
|
@@ -45919,7 +45921,7 @@ var require_core2 = __commonJS((exports2) => {
|
|
|
45919
45921
|
exports2.default = core2;
|
|
45920
45922
|
});
|
|
45921
45923
|
|
|
45922
|
-
//
|
|
45924
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.js
|
|
45923
45925
|
var require_limitNumber = __commonJS((exports2) => {
|
|
45924
45926
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45925
45927
|
var codegen_1 = require_codegen();
|
|
@@ -45948,7 +45950,7 @@ var require_limitNumber = __commonJS((exports2) => {
|
|
|
45948
45950
|
exports2.default = def;
|
|
45949
45951
|
});
|
|
45950
45952
|
|
|
45951
|
-
//
|
|
45953
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.js
|
|
45952
45954
|
var require_multipleOf = __commonJS((exports2) => {
|
|
45953
45955
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45954
45956
|
var codegen_1 = require_codegen();
|
|
@@ -45973,7 +45975,7 @@ var require_multipleOf = __commonJS((exports2) => {
|
|
|
45973
45975
|
exports2.default = def;
|
|
45974
45976
|
});
|
|
45975
45977
|
|
|
45976
|
-
//
|
|
45978
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/ucs2length.js
|
|
45977
45979
|
var require_ucs2length = __commonJS((exports2) => {
|
|
45978
45980
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45979
45981
|
function ucs2length(str) {
|
|
@@ -45996,7 +45998,7 @@ var require_ucs2length = __commonJS((exports2) => {
|
|
|
45996
45998
|
ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
|
|
45997
45999
|
});
|
|
45998
46000
|
|
|
45999
|
-
//
|
|
46001
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitLength.js
|
|
46000
46002
|
var require_limitLength = __commonJS((exports2) => {
|
|
46001
46003
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46002
46004
|
var codegen_1 = require_codegen();
|
|
@@ -46025,7 +46027,7 @@ var require_limitLength = __commonJS((exports2) => {
|
|
|
46025
46027
|
exports2.default = def;
|
|
46026
46028
|
});
|
|
46027
46029
|
|
|
46028
|
-
//
|
|
46030
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/pattern.js
|
|
46029
46031
|
var require_pattern = __commonJS((exports2) => {
|
|
46030
46032
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46031
46033
|
var code_1 = require_code2();
|
|
@@ -46059,7 +46061,7 @@ var require_pattern = __commonJS((exports2) => {
|
|
|
46059
46061
|
exports2.default = def;
|
|
46060
46062
|
});
|
|
46061
46063
|
|
|
46062
|
-
//
|
|
46064
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitProperties.js
|
|
46063
46065
|
var require_limitProperties = __commonJS((exports2) => {
|
|
46064
46066
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46065
46067
|
var codegen_1 = require_codegen();
|
|
@@ -46085,7 +46087,7 @@ var require_limitProperties = __commonJS((exports2) => {
|
|
|
46085
46087
|
exports2.default = def;
|
|
46086
46088
|
});
|
|
46087
46089
|
|
|
46088
|
-
//
|
|
46090
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/required.js
|
|
46089
46091
|
var require_required = __commonJS((exports2) => {
|
|
46090
46092
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46091
46093
|
var code_1 = require_code2();
|
|
@@ -46164,7 +46166,7 @@ var require_required = __commonJS((exports2) => {
|
|
|
46164
46166
|
exports2.default = def;
|
|
46165
46167
|
});
|
|
46166
46168
|
|
|
46167
|
-
//
|
|
46169
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/limitItems.js
|
|
46168
46170
|
var require_limitItems = __commonJS((exports2) => {
|
|
46169
46171
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46170
46172
|
var codegen_1 = require_codegen();
|
|
@@ -46190,7 +46192,7 @@ var require_limitItems = __commonJS((exports2) => {
|
|
|
46190
46192
|
exports2.default = def;
|
|
46191
46193
|
});
|
|
46192
46194
|
|
|
46193
|
-
//
|
|
46195
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/runtime/equal.js
|
|
46194
46196
|
var require_equal = __commonJS((exports2) => {
|
|
46195
46197
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46196
46198
|
var equal = require_fast_deep_equal();
|
|
@@ -46198,7 +46200,7 @@ var require_equal = __commonJS((exports2) => {
|
|
|
46198
46200
|
exports2.default = equal;
|
|
46199
46201
|
});
|
|
46200
46202
|
|
|
46201
|
-
//
|
|
46203
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js
|
|
46202
46204
|
var require_uniqueItems = __commonJS((exports2) => {
|
|
46203
46205
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46204
46206
|
var dataType_1 = require_dataType();
|
|
@@ -46262,7 +46264,7 @@ var require_uniqueItems = __commonJS((exports2) => {
|
|
|
46262
46264
|
exports2.default = def;
|
|
46263
46265
|
});
|
|
46264
46266
|
|
|
46265
|
-
//
|
|
46267
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/const.js
|
|
46266
46268
|
var require_const = __commonJS((exports2) => {
|
|
46267
46269
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46268
46270
|
var codegen_1 = require_codegen();
|
|
@@ -46288,7 +46290,7 @@ var require_const = __commonJS((exports2) => {
|
|
|
46288
46290
|
exports2.default = def;
|
|
46289
46291
|
});
|
|
46290
46292
|
|
|
46291
|
-
//
|
|
46293
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/enum.js
|
|
46292
46294
|
var require_enum = __commonJS((exports2) => {
|
|
46293
46295
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46294
46296
|
var codegen_1 = require_codegen();
|
|
@@ -46334,7 +46336,7 @@ var require_enum = __commonJS((exports2) => {
|
|
|
46334
46336
|
exports2.default = def;
|
|
46335
46337
|
});
|
|
46336
46338
|
|
|
46337
|
-
//
|
|
46339
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/validation/index.js
|
|
46338
46340
|
var require_validation = __commonJS((exports2) => {
|
|
46339
46341
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46340
46342
|
var limitNumber_1 = require_limitNumber();
|
|
@@ -46364,7 +46366,7 @@ var require_validation = __commonJS((exports2) => {
|
|
|
46364
46366
|
exports2.default = validation;
|
|
46365
46367
|
});
|
|
46366
46368
|
|
|
46367
|
-
//
|
|
46369
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
|
|
46368
46370
|
var require_additionalItems = __commonJS((exports2) => {
|
|
46369
46371
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46370
46372
|
exports2.validateAdditionalItems = undefined;
|
|
@@ -46414,7 +46416,7 @@ var require_additionalItems = __commonJS((exports2) => {
|
|
|
46414
46416
|
exports2.default = def;
|
|
46415
46417
|
});
|
|
46416
46418
|
|
|
46417
|
-
//
|
|
46419
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items.js
|
|
46418
46420
|
var require_items = __commonJS((exports2) => {
|
|
46419
46421
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46420
46422
|
exports2.validateTuple = undefined;
|
|
@@ -46468,7 +46470,7 @@ var require_items = __commonJS((exports2) => {
|
|
|
46468
46470
|
exports2.default = def;
|
|
46469
46471
|
});
|
|
46470
46472
|
|
|
46471
|
-
//
|
|
46473
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js
|
|
46472
46474
|
var require_prefixItems = __commonJS((exports2) => {
|
|
46473
46475
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46474
46476
|
var items_1 = require_items();
|
|
@@ -46482,7 +46484,7 @@ var require_prefixItems = __commonJS((exports2) => {
|
|
|
46482
46484
|
exports2.default = def;
|
|
46483
46485
|
});
|
|
46484
46486
|
|
|
46485
|
-
//
|
|
46487
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/items2020.js
|
|
46486
46488
|
var require_items2020 = __commonJS((exports2) => {
|
|
46487
46489
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46488
46490
|
var codegen_1 = require_codegen();
|
|
@@ -46514,7 +46516,7 @@ var require_items2020 = __commonJS((exports2) => {
|
|
|
46514
46516
|
exports2.default = def;
|
|
46515
46517
|
});
|
|
46516
46518
|
|
|
46517
|
-
//
|
|
46519
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/contains.js
|
|
46518
46520
|
var require_contains = __commonJS((exports2) => {
|
|
46519
46521
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46520
46522
|
var codegen_1 = require_codegen();
|
|
@@ -46605,7 +46607,7 @@ var require_contains = __commonJS((exports2) => {
|
|
|
46605
46607
|
exports2.default = def;
|
|
46606
46608
|
});
|
|
46607
46609
|
|
|
46608
|
-
//
|
|
46610
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.js
|
|
46609
46611
|
var require_dependencies = __commonJS((exports2) => {
|
|
46610
46612
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46611
46613
|
exports2.validateSchemaDeps = exports2.validatePropertyDeps = exports2.error = undefined;
|
|
@@ -46690,7 +46692,7 @@ var require_dependencies = __commonJS((exports2) => {
|
|
|
46690
46692
|
exports2.default = def;
|
|
46691
46693
|
});
|
|
46692
46694
|
|
|
46693
|
-
//
|
|
46695
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js
|
|
46694
46696
|
var require_propertyNames = __commonJS((exports2) => {
|
|
46695
46697
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46696
46698
|
var codegen_1 = require_codegen();
|
|
@@ -46730,7 +46732,7 @@ var require_propertyNames = __commonJS((exports2) => {
|
|
|
46730
46732
|
exports2.default = def;
|
|
46731
46733
|
});
|
|
46732
46734
|
|
|
46733
|
-
//
|
|
46735
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
|
|
46734
46736
|
var require_additionalProperties = __commonJS((exports2) => {
|
|
46735
46737
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46736
46738
|
var code_1 = require_code2();
|
|
@@ -46833,7 +46835,7 @@ var require_additionalProperties = __commonJS((exports2) => {
|
|
|
46833
46835
|
exports2.default = def;
|
|
46834
46836
|
});
|
|
46835
46837
|
|
|
46836
|
-
//
|
|
46838
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/properties.js
|
|
46837
46839
|
var require_properties = __commonJS((exports2) => {
|
|
46838
46840
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46839
46841
|
var validate_1 = require_validate();
|
|
@@ -46888,7 +46890,7 @@ var require_properties = __commonJS((exports2) => {
|
|
|
46888
46890
|
exports2.default = def;
|
|
46889
46891
|
});
|
|
46890
46892
|
|
|
46891
|
-
//
|
|
46893
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js
|
|
46892
46894
|
var require_patternProperties = __commonJS((exports2) => {
|
|
46893
46895
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46894
46896
|
var code_1 = require_code2();
|
|
@@ -46959,7 +46961,7 @@ var require_patternProperties = __commonJS((exports2) => {
|
|
|
46959
46961
|
exports2.default = def;
|
|
46960
46962
|
});
|
|
46961
46963
|
|
|
46962
|
-
//
|
|
46964
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/not.js
|
|
46963
46965
|
var require_not = __commonJS((exports2) => {
|
|
46964
46966
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46965
46967
|
var util_1 = require_util2();
|
|
@@ -46987,7 +46989,7 @@ var require_not = __commonJS((exports2) => {
|
|
|
46987
46989
|
exports2.default = def;
|
|
46988
46990
|
});
|
|
46989
46991
|
|
|
46990
|
-
//
|
|
46992
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.js
|
|
46991
46993
|
var require_anyOf = __commonJS((exports2) => {
|
|
46992
46994
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46993
46995
|
var code_1 = require_code2();
|
|
@@ -47001,7 +47003,7 @@ var require_anyOf = __commonJS((exports2) => {
|
|
|
47001
47003
|
exports2.default = def;
|
|
47002
47004
|
});
|
|
47003
47005
|
|
|
47004
|
-
//
|
|
47006
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.js
|
|
47005
47007
|
var require_oneOf = __commonJS((exports2) => {
|
|
47006
47008
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47007
47009
|
var codegen_1 = require_codegen();
|
|
@@ -47056,7 +47058,7 @@ var require_oneOf = __commonJS((exports2) => {
|
|
|
47056
47058
|
exports2.default = def;
|
|
47057
47059
|
});
|
|
47058
47060
|
|
|
47059
|
-
//
|
|
47061
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/allOf.js
|
|
47060
47062
|
var require_allOf = __commonJS((exports2) => {
|
|
47061
47063
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47062
47064
|
var util_1 = require_util2();
|
|
@@ -47080,7 +47082,7 @@ var require_allOf = __commonJS((exports2) => {
|
|
|
47080
47082
|
exports2.default = def;
|
|
47081
47083
|
});
|
|
47082
47084
|
|
|
47083
|
-
//
|
|
47085
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/if.js
|
|
47084
47086
|
var require_if2 = __commonJS((exports2) => {
|
|
47085
47087
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47086
47088
|
var codegen_1 = require_codegen();
|
|
@@ -47146,7 +47148,7 @@ var require_if2 = __commonJS((exports2) => {
|
|
|
47146
47148
|
exports2.default = def;
|
|
47147
47149
|
});
|
|
47148
47150
|
|
|
47149
|
-
//
|
|
47151
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/thenElse.js
|
|
47150
47152
|
var require_thenElse = __commonJS((exports2) => {
|
|
47151
47153
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47152
47154
|
var util_1 = require_util2();
|
|
@@ -47161,7 +47163,7 @@ var require_thenElse = __commonJS((exports2) => {
|
|
|
47161
47163
|
exports2.default = def;
|
|
47162
47164
|
});
|
|
47163
47165
|
|
|
47164
|
-
//
|
|
47166
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/applicator/index.js
|
|
47165
47167
|
var require_applicator = __commonJS((exports2) => {
|
|
47166
47168
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47167
47169
|
var additionalItems_1 = require_additionalItems();
|
|
@@ -47204,7 +47206,7 @@ var require_applicator = __commonJS((exports2) => {
|
|
|
47204
47206
|
exports2.default = getApplicator;
|
|
47205
47207
|
});
|
|
47206
47208
|
|
|
47207
|
-
//
|
|
47209
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/format.js
|
|
47208
47210
|
var require_format = __commonJS((exports2) => {
|
|
47209
47211
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47210
47212
|
var codegen_1 = require_codegen();
|
|
@@ -47291,7 +47293,7 @@ var require_format = __commonJS((exports2) => {
|
|
|
47291
47293
|
exports2.default = def;
|
|
47292
47294
|
});
|
|
47293
47295
|
|
|
47294
|
-
//
|
|
47296
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/format/index.js
|
|
47295
47297
|
var require_format2 = __commonJS((exports2) => {
|
|
47296
47298
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47297
47299
|
var format_1 = require_format();
|
|
@@ -47299,7 +47301,7 @@ var require_format2 = __commonJS((exports2) => {
|
|
|
47299
47301
|
exports2.default = format;
|
|
47300
47302
|
});
|
|
47301
47303
|
|
|
47302
|
-
//
|
|
47304
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/metadata.js
|
|
47303
47305
|
var require_metadata = __commonJS((exports2) => {
|
|
47304
47306
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47305
47307
|
exports2.contentVocabulary = exports2.metadataVocabulary = undefined;
|
|
@@ -47319,7 +47321,7 @@ var require_metadata = __commonJS((exports2) => {
|
|
|
47319
47321
|
];
|
|
47320
47322
|
});
|
|
47321
47323
|
|
|
47322
|
-
//
|
|
47324
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/draft7.js
|
|
47323
47325
|
var require_draft7 = __commonJS((exports2) => {
|
|
47324
47326
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47325
47327
|
var core_1 = require_core2();
|
|
@@ -47338,7 +47340,7 @@ var require_draft7 = __commonJS((exports2) => {
|
|
|
47338
47340
|
exports2.default = draft7Vocabularies;
|
|
47339
47341
|
});
|
|
47340
47342
|
|
|
47341
|
-
//
|
|
47343
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/types.js
|
|
47342
47344
|
var require_types = __commonJS((exports2) => {
|
|
47343
47345
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47344
47346
|
exports2.DiscrError = undefined;
|
|
@@ -47349,7 +47351,7 @@ var require_types = __commonJS((exports2) => {
|
|
|
47349
47351
|
})(DiscrError || (exports2.DiscrError = DiscrError = {}));
|
|
47350
47352
|
});
|
|
47351
47353
|
|
|
47352
|
-
//
|
|
47354
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/vocabularies/discriminator/index.js
|
|
47353
47355
|
var require_discriminator = __commonJS((exports2) => {
|
|
47354
47356
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47355
47357
|
var codegen_1 = require_codegen();
|
|
@@ -47451,7 +47453,7 @@ var require_discriminator = __commonJS((exports2) => {
|
|
|
47451
47453
|
exports2.default = def;
|
|
47452
47454
|
});
|
|
47453
47455
|
|
|
47454
|
-
//
|
|
47456
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/refs/json-schema-draft-07.json
|
|
47455
47457
|
var require_json_schema_draft_07 = __commonJS((exports2, module) => {
|
|
47456
47458
|
module.exports = {
|
|
47457
47459
|
$schema: "http://json-schema.org/draft-07/schema#",
|
|
@@ -47606,7 +47608,7 @@ var require_json_schema_draft_07 = __commonJS((exports2, module) => {
|
|
|
47606
47608
|
};
|
|
47607
47609
|
});
|
|
47608
47610
|
|
|
47609
|
-
//
|
|
47611
|
+
// node_modules/.bun/ajv@8.18.0/node_modules/ajv/dist/ajv.js
|
|
47610
47612
|
var require_ajv = __commonJS((exports2, module) => {
|
|
47611
47613
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47612
47614
|
exports2.MissingRefError = exports2.ValidationError = exports2.CodeGen = exports2.Name = exports2.nil = exports2.stringify = exports2.str = exports2._ = exports2.KeywordCxt = exports2.Ajv = undefined;
|
|
@@ -47674,7 +47676,7 @@ var require_ajv = __commonJS((exports2, module) => {
|
|
|
47674
47676
|
} });
|
|
47675
47677
|
});
|
|
47676
47678
|
|
|
47677
|
-
//
|
|
47679
|
+
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/formats.js
|
|
47678
47680
|
var require_formats = __commonJS((exports2) => {
|
|
47679
47681
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47680
47682
|
exports2.formatNames = exports2.fastFormats = exports2.fullFormats = undefined;
|
|
@@ -47851,7 +47853,7 @@ var require_formats = __commonJS((exports2) => {
|
|
|
47851
47853
|
}
|
|
47852
47854
|
});
|
|
47853
47855
|
|
|
47854
|
-
//
|
|
47856
|
+
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/limit.js
|
|
47855
47857
|
var require_limit = __commonJS((exports2) => {
|
|
47856
47858
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47857
47859
|
exports2.formatLimitDefinition = undefined;
|
|
@@ -47920,7 +47922,7 @@ var require_limit = __commonJS((exports2) => {
|
|
|
47920
47922
|
exports2.default = formatLimitPlugin;
|
|
47921
47923
|
});
|
|
47922
47924
|
|
|
47923
|
-
//
|
|
47925
|
+
// node_modules/.bun/ajv-formats@3.0.1/node_modules/ajv-formats/dist/index.js
|
|
47924
47926
|
var require_dist2 = __commonJS((exports2, module) => {
|
|
47925
47927
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47926
47928
|
var formats_1 = require_formats();
|
|
@@ -47959,7 +47961,7 @@ var require_dist2 = __commonJS((exports2, module) => {
|
|
|
47959
47961
|
exports2.default = formatsPlugin;
|
|
47960
47962
|
});
|
|
47961
47963
|
|
|
47962
|
-
//
|
|
47964
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
|
|
47963
47965
|
function createDefaultAjvInstance() {
|
|
47964
47966
|
const ajv = new import_ajv.default({
|
|
47965
47967
|
strict: false,
|
|
@@ -48002,7 +48004,7 @@ var init_ajv_provider = __esm(() => {
|
|
|
48002
48004
|
import_ajv_formats = __toESM(require_dist2(), 1);
|
|
48003
48005
|
});
|
|
48004
48006
|
|
|
48005
|
-
//
|
|
48007
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js
|
|
48006
48008
|
class ExperimentalServerTasks {
|
|
48007
48009
|
constructor(_server) {
|
|
48008
48010
|
this._server = _server;
|
|
@@ -48083,7 +48085,7 @@ var init_server = __esm(() => {
|
|
|
48083
48085
|
init_types2();
|
|
48084
48086
|
});
|
|
48085
48087
|
|
|
48086
|
-
//
|
|
48088
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js
|
|
48087
48089
|
function assertToolsCallTaskCapability(requests, method, entityName) {
|
|
48088
48090
|
if (!requests) {
|
|
48089
48091
|
throw new Error(`${entityName} does not support task creation (required for ${method})`);
|
|
@@ -48118,7 +48120,7 @@ function assertClientRequestTaskCapability(requests, method, entityName) {
|
|
|
48118
48120
|
}
|
|
48119
48121
|
}
|
|
48120
48122
|
|
|
48121
|
-
//
|
|
48123
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
48122
48124
|
var Server;
|
|
48123
48125
|
var init_server2 = __esm(() => {
|
|
48124
48126
|
init_protocol4();
|
|
@@ -48459,7 +48461,7 @@ var init_server2 = __esm(() => {
|
|
|
48459
48461
|
};
|
|
48460
48462
|
});
|
|
48461
48463
|
|
|
48462
|
-
//
|
|
48464
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
48463
48465
|
class ReadBuffer {
|
|
48464
48466
|
append(chunk2) {
|
|
48465
48467
|
this._buffer = this._buffer ? Buffer.concat([this._buffer, chunk2]) : chunk2;
|
|
@@ -48492,7 +48494,7 @@ var init_stdio = __esm(() => {
|
|
|
48492
48494
|
init_types2();
|
|
48493
48495
|
});
|
|
48494
48496
|
|
|
48495
|
-
//
|
|
48497
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
48496
48498
|
import process3 from "node:process";
|
|
48497
48499
|
|
|
48498
48500
|
class StdioServerTransport {
|
|
@@ -49421,7 +49423,7 @@ var init_server4 = __esm(() => {
|
|
|
49421
49423
|
];
|
|
49422
49424
|
});
|
|
49423
49425
|
|
|
49424
|
-
//
|
|
49426
|
+
// node_modules/.bun/commander@13.1.0/node_modules/commander/esm.mjs
|
|
49425
49427
|
var import__ = __toESM(require_commander(), 1);
|
|
49426
49428
|
var {
|
|
49427
49429
|
program,
|
|
@@ -49438,8 +49440,8 @@ var {
|
|
|
49438
49440
|
} = import__.default;
|
|
49439
49441
|
|
|
49440
49442
|
// src/build-info.ts
|
|
49441
|
-
var VERSION = "0.14.
|
|
49442
|
-
var COMMIT_SHA = "
|
|
49443
|
+
var VERSION = "0.14.36";
|
|
49444
|
+
var COMMIT_SHA = "127b6f28";
|
|
49443
49445
|
|
|
49444
49446
|
// src/cli/agent.ts
|
|
49445
49447
|
init_source();
|
|
@@ -50341,6 +50343,22 @@ If you genuinely need WebFetch back for one agent (e.g. a workflow
|
|
|
50341
50343
|
that depends on its specific output shape), set \`mcp_servers.webkite:
|
|
50342
50344
|
false\` in that agent's switchroom.yaml block \u2014 webkite goes away
|
|
50343
50345
|
and the native tools come back together.`;
|
|
50346
|
+
var VAULT_GUIDANCE = `## Secrets in the vault \u2014 discover, don't guess
|
|
50347
|
+
|
|
50348
|
+
Your API keys and credentials live in the Switchroom vault. For normal
|
|
50349
|
+
MCP-tool work they're injected by the launchers and you never touch the
|
|
50350
|
+
raw values. When a task needs a secret directly (a direct API call an
|
|
50351
|
+
MCP tool has no verb for), read it with \`switchroom vault get <key>\`.
|
|
50352
|
+
|
|
50353
|
+
**Never guess a key name.** Run \`switchroom vault list\` to see the
|
|
50354
|
+
exact keys you already hold \u2014 they're usually namespaced \`<you>/...\`
|
|
50355
|
+
(e.g. \`marko/postiz-api-key\`, not \`postiz/api-key\`). Use the real
|
|
50356
|
+
name from that list.
|
|
50357
|
+
|
|
50358
|
+
Only call the \`vault_request_access\` MCP tool \u2014 which pings the
|
|
50359
|
+
operator for a Telegram approval \u2014 for a key you've **confirmed via
|
|
50360
|
+
\`vault list\` you don't already have.** Requesting access to a guessed
|
|
50361
|
+
or already-held key wastes the operator's tap and fails.`;
|
|
50344
50362
|
function renderFleetInvariants() {
|
|
50345
50363
|
return [
|
|
50346
50364
|
"<!--",
|
|
@@ -50365,6 +50383,8 @@ function renderFleetInvariants() {
|
|
|
50365
50383
|
MEMORY_GUIDANCE,
|
|
50366
50384
|
"",
|
|
50367
50385
|
WEB_FETCH_GUIDANCE,
|
|
50386
|
+
"",
|
|
50387
|
+
VAULT_GUIDANCE,
|
|
50368
50388
|
""
|
|
50369
50389
|
].join(`
|
|
50370
50390
|
`);
|
|
@@ -59006,6 +59026,26 @@ function scrubSqlite(path, values, dryRun) {
|
|
|
59006
59026
|
// src/cli/vault.ts
|
|
59007
59027
|
init_client();
|
|
59008
59028
|
|
|
59029
|
+
// src/cli/vault-key-suggest.ts
|
|
59030
|
+
function tokenize(key) {
|
|
59031
|
+
return key.toLowerCase().split(/[/\-_.]+/).filter((t) => t.length > 0);
|
|
59032
|
+
}
|
|
59033
|
+
function suggestVaultKeys(requested, available, max = 3) {
|
|
59034
|
+
const want = new Set(tokenize(requested));
|
|
59035
|
+
if (want.size === 0)
|
|
59036
|
+
return [];
|
|
59037
|
+
const scored = available.map((key) => {
|
|
59038
|
+
const have = new Set(tokenize(key));
|
|
59039
|
+
let shared = 0;
|
|
59040
|
+
for (const t of have)
|
|
59041
|
+
if (want.has(t))
|
|
59042
|
+
shared++;
|
|
59043
|
+
const diff = want.size + have.size - 2 * shared;
|
|
59044
|
+
return { key, shared, diff };
|
|
59045
|
+
}).filter((c) => c.shared > 0 && c.key !== requested).sort((a, b) => b.shared - a.shared || a.diff - b.diff);
|
|
59046
|
+
return scored.slice(0, max).map((c) => c.key);
|
|
59047
|
+
}
|
|
59048
|
+
|
|
59009
59049
|
// src/cli/vault-broker.ts
|
|
59010
59050
|
init_loader();
|
|
59011
59051
|
init_loader();
|
|
@@ -59438,7 +59478,7 @@ function createAuditLogger(opts = {}) {
|
|
|
59438
59478
|
// src/vault/grants.ts
|
|
59439
59479
|
import { randomBytes as randomBytes8 } from "node:crypto";
|
|
59440
59480
|
|
|
59441
|
-
//
|
|
59481
|
+
// node_modules/.bun/bcryptjs@3.0.3/node_modules/bcryptjs/index.js
|
|
59442
59482
|
import nodeCrypto from "crypto";
|
|
59443
59483
|
var randomFallback = null;
|
|
59444
59484
|
function randomBytes7(len) {
|
|
@@ -61282,6 +61322,31 @@ function listGrants(db, agent_slug) {
|
|
|
61282
61322
|
return rows.map(rowToGrant);
|
|
61283
61323
|
}
|
|
61284
61324
|
|
|
61325
|
+
// src/vault/admin-only-keys.ts
|
|
61326
|
+
function globToRegExp(pattern) {
|
|
61327
|
+
const escaped = pattern.replace(/[.+?^${}()|[\]\\]/g, "\\$&").replace(/\*/g, ".*");
|
|
61328
|
+
return new RegExp(`^${escaped}$`);
|
|
61329
|
+
}
|
|
61330
|
+
function matchesAdminOnlyKey(key, patterns) {
|
|
61331
|
+
for (const p of patterns) {
|
|
61332
|
+
if (p === key)
|
|
61333
|
+
return true;
|
|
61334
|
+
if (p.includes("*") && globToRegExp(p).test(key))
|
|
61335
|
+
return true;
|
|
61336
|
+
}
|
|
61337
|
+
return false;
|
|
61338
|
+
}
|
|
61339
|
+
function adminOnlyKeysBeingAdded(requestedKeys, existingKeys, patterns) {
|
|
61340
|
+
const existing = new Set(existingKeys);
|
|
61341
|
+
const blocked = [];
|
|
61342
|
+
for (const k of requestedKeys) {
|
|
61343
|
+
if (matchesAdminOnlyKey(k, patterns) && !existing.has(k) && !blocked.includes(k)) {
|
|
61344
|
+
blocked.push(k);
|
|
61345
|
+
}
|
|
61346
|
+
}
|
|
61347
|
+
return blocked;
|
|
61348
|
+
}
|
|
61349
|
+
|
|
61285
61350
|
// src/vault/grants-db.ts
|
|
61286
61351
|
import * as os3 from "node:os";
|
|
61287
61352
|
import * as path2 from "node:path";
|
|
@@ -61303,9 +61368,20 @@ function migrateApprovalSchema(db) {
|
|
|
61303
61368
|
approver_set_canonical TEXT NOT NULL,
|
|
61304
61369
|
last_used_at INTEGER,
|
|
61305
61370
|
revoked_at INTEGER,
|
|
61306
|
-
revoke_reason TEXT
|
|
61371
|
+
revoke_reason TEXT,
|
|
61372
|
+
-- Provenance of the operator-authorization (RFC vault-approval-hard-
|
|
61373
|
+
-- boundary). 'agent': recorded on a per-agent socket \u2014 claude shares
|
|
61374
|
+
-- that socket, so it is FORGEABLE and must NOT be trusted as proof an
|
|
61375
|
+
-- operator tapped. 'operator': recorded via the host-side verifier on a
|
|
61376
|
+
-- claude-unreachable channel \u2014 the only value the broker's mint gate
|
|
61377
|
+
-- trusts. Default 'agent' (fail-closed for the new gate).
|
|
61378
|
+
origin TEXT NOT NULL DEFAULT 'agent'
|
|
61307
61379
|
)
|
|
61308
61380
|
`);
|
|
61381
|
+
const decisionCols = db.query("PRAGMA table_info(approval_decisions)").all();
|
|
61382
|
+
if (!decisionCols.some((c) => c.name === "origin")) {
|
|
61383
|
+
db.run(`ALTER TABLE approval_decisions ADD COLUMN origin TEXT NOT NULL DEFAULT 'agent'`);
|
|
61384
|
+
}
|
|
61309
61385
|
db.run(`
|
|
61310
61386
|
CREATE INDEX IF NOT EXISTS approval_decisions_lookup
|
|
61311
61387
|
ON approval_decisions(agent_unit, scope, action)
|
|
@@ -61407,7 +61483,8 @@ function rowToDecision(row) {
|
|
|
61407
61483
|
approver_set_canonical: row.approver_set_canonical,
|
|
61408
61484
|
last_used_at: row.last_used_at ?? null,
|
|
61409
61485
|
revoked_at: row.revoked_at ?? null,
|
|
61410
|
-
revoke_reason: row.revoke_reason ?? null
|
|
61486
|
+
revoke_reason: row.revoke_reason ?? null,
|
|
61487
|
+
origin: row.origin === "operator" ? "operator" : "agent"
|
|
61411
61488
|
};
|
|
61412
61489
|
}
|
|
61413
61490
|
var MAX_PENDING_PER_AGENT = 2;
|
|
@@ -61573,8 +61650,8 @@ function recordDecision(db, input, now = Date.now()) {
|
|
|
61573
61650
|
db.run(`INSERT INTO approval_decisions
|
|
61574
61651
|
(id, agent_unit, scope, action, decision,
|
|
61575
61652
|
ttl_expires_at, granted_at, granted_by_user_id,
|
|
61576
|
-
approver_set_canonical, last_used_at, revoked_at, revoke_reason)
|
|
61577
|
-
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, NULL, NULL, NULL)`, [
|
|
61653
|
+
approver_set_canonical, last_used_at, revoked_at, revoke_reason, origin)
|
|
61654
|
+
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, NULL, NULL, NULL, ?)`, [
|
|
61578
61655
|
id,
|
|
61579
61656
|
input.nonce.agent_unit,
|
|
61580
61657
|
input.nonce.scope,
|
|
@@ -61583,7 +61660,8 @@ function recordDecision(db, input, now = Date.now()) {
|
|
|
61583
61660
|
ttl_expires_at,
|
|
61584
61661
|
now,
|
|
61585
61662
|
input.granted_by_user_id,
|
|
61586
|
-
canonical
|
|
61663
|
+
canonical,
|
|
61664
|
+
input.origin ?? "agent"
|
|
61587
61665
|
]);
|
|
61588
61666
|
db.run(`UPDATE approval_nonces SET decision_id = ? WHERE request_id = ?`, [id, input.nonce.request_id]);
|
|
61589
61667
|
const granted = input.decision === "allow_once" || input.decision === "allow_always" || input.decision === "allow_ttl";
|
|
@@ -61637,6 +61715,13 @@ function listDecisions(db, filter, now = Date.now()) {
|
|
|
61637
61715
|
const rows = db.query(sql).all(...params);
|
|
61638
61716
|
return rows.map(rowToDecision);
|
|
61639
61717
|
}
|
|
61718
|
+
function getDecision(db, id) {
|
|
61719
|
+
const row = db.query(`SELECT * FROM approval_decisions WHERE id = ?`).get(id);
|
|
61720
|
+
return row ? rowToDecision(row) : null;
|
|
61721
|
+
}
|
|
61722
|
+
function isOperatorVerifiedDecision(dec, agent_unit, now = Date.now()) {
|
|
61723
|
+
return dec !== null && dec.origin === "operator" && dec.agent_unit === agent_unit && dec.revoked_at === null && (dec.decision === "allow_once" || dec.decision === "allow_always" || dec.decision === "allow_ttl") && (dec.ttl_expires_at === null || dec.ttl_expires_at > now);
|
|
61724
|
+
}
|
|
61640
61725
|
function getNonce(db, request_id) {
|
|
61641
61726
|
const row = db.query(`SELECT * FROM approval_nonces WHERE request_id = ?`).get(request_id);
|
|
61642
61727
|
return row ? nonceFromRow(row) : null;
|
|
@@ -62640,6 +62725,30 @@ class VaultBroker {
|
|
|
62640
62725
|
socket.write(encodeResponse(errorResponse("DENIED", `posture-attested list refused: request.agent=${reqAgent} but calling peer is ${agentName}`)));
|
|
62641
62726
|
return;
|
|
62642
62727
|
}
|
|
62728
|
+
if (req.op === "mint_grant") {
|
|
62729
|
+
const adminOnly = this.config?.vault?.broker?.adminOnlyKeys ?? [];
|
|
62730
|
+
if (adminOnly.length > 0) {
|
|
62731
|
+
const requested = [
|
|
62732
|
+
...req.keys ?? [],
|
|
62733
|
+
...req.write_keys ?? []
|
|
62734
|
+
];
|
|
62735
|
+
const nowSec = Math.floor(Date.now() / 1000);
|
|
62736
|
+
const existingKeys = listGrants(this.grantsDb, agentName).filter((g) => g.expires_at === null || g.expires_at > nowSec).flatMap((g) => [...g.key_allow ?? [], ...g.write_allow ?? []]);
|
|
62737
|
+
const blocked = adminOnlyKeysBeingAdded(requested, existingKeys, adminOnly);
|
|
62738
|
+
if (blocked.length > 0) {
|
|
62739
|
+
writeAudit({
|
|
62740
|
+
ts: new Date().toISOString(),
|
|
62741
|
+
op: req.op,
|
|
62742
|
+
caller: auditCaller,
|
|
62743
|
+
pid: auditPid,
|
|
62744
|
+
cgroup: auditCgroup,
|
|
62745
|
+
result: "denied:posture-mint-admin-only-key"
|
|
62746
|
+
});
|
|
62747
|
+
socket.write(encodeResponse(errorResponse("DENIED", `admin-only credential(s) ${blocked.join(", ")} cannot be minted via posture ` + `attestation \u2014 they require the operator passphrase (vault.broker.adminOnlyKeys)`)));
|
|
62748
|
+
return;
|
|
62749
|
+
}
|
|
62750
|
+
}
|
|
62751
|
+
}
|
|
62643
62752
|
if (this.passphrase === null) {
|
|
62644
62753
|
writeAudit({
|
|
62645
62754
|
ts: new Date().toISOString(),
|
|
@@ -62652,6 +62761,22 @@ class VaultBroker {
|
|
|
62652
62761
|
socket.write(encodeResponse(errorResponse("LOCKED", "Broker is locked")));
|
|
62653
62762
|
return;
|
|
62654
62763
|
}
|
|
62764
|
+
if (req.op === "mint_grant" && process.env.SWITCHROOM_REQUIRE_OPERATOR_APPROVAL_MINT === "1") {
|
|
62765
|
+
const decisionId = req.decision_id;
|
|
62766
|
+
const dec = decisionId != null && decisionId !== "" ? getDecision(this.grantsDb, decisionId) : null;
|
|
62767
|
+
if (!isOperatorVerifiedDecision(dec, agentName ?? "")) {
|
|
62768
|
+
writeAudit({
|
|
62769
|
+
ts: new Date().toISOString(),
|
|
62770
|
+
op: req.op,
|
|
62771
|
+
caller: auditCaller,
|
|
62772
|
+
pid: auditPid,
|
|
62773
|
+
cgroup: auditCgroup,
|
|
62774
|
+
result: "denied:posture-mint-needs-operator-verified-decision"
|
|
62775
|
+
});
|
|
62776
|
+
socket.write(encodeResponse(errorResponse("DENIED", "posture-attested mint requires an operator-verified approval (host-side tap); none referenced. See RFC vault-approval-hard-boundary.")));
|
|
62777
|
+
return;
|
|
62778
|
+
}
|
|
62779
|
+
}
|
|
62655
62780
|
mintPostureAttested = true;
|
|
62656
62781
|
writeAudit({
|
|
62657
62782
|
ts: new Date().toISOString(),
|
|
@@ -64422,14 +64547,19 @@ function refuseSandboxDirectAccess(verbHint) {
|
|
|
64422
64547
|
`);
|
|
64423
64548
|
process.exit(VAULT_EXIT_SANDBOX_CONTEXT);
|
|
64424
64549
|
}
|
|
64425
|
-
function recoveryHint(situation, key) {
|
|
64550
|
+
function recoveryHint(situation, key, suggestions) {
|
|
64426
64551
|
if (!isSandboxContext()) {
|
|
64427
64552
|
const keyArg = key ? ` ${key}` : "";
|
|
64428
64553
|
return `Hint: run 'switchroom vault get --no-broker${keyArg}' for interactive (non-cron) access.`;
|
|
64429
64554
|
}
|
|
64430
64555
|
switch (situation) {
|
|
64431
|
-
case "denied":
|
|
64432
|
-
|
|
64556
|
+
case "denied": {
|
|
64557
|
+
const named = key ? `'${key}'` : "this key";
|
|
64558
|
+
if (suggestions && suggestions.length > 0) {
|
|
64559
|
+
return `Hint: you have no grant for ${named} \u2014 that key may not even exist. ` + `You ALREADY have access to similar keys: ${suggestions.join(", ")}. ` + `Try \`switchroom vault get <one-of-those>\` instead. ` + `Run \`switchroom vault list\` to see every key you hold. ` + `Only call the \`vault_request_access\` MCP tool for a key you've ` + `confirmed (via \`vault list\`) you don't already have. ` + `Do NOT retry with --no-broker \u2014 the vault file is not mounted ` + `into agent containers.`;
|
|
64560
|
+
}
|
|
64561
|
+
return `Hint: this agent has no grant for ${named}. ` + `FIRST run \`switchroom vault list\` to see the keys you already hold \u2014 ` + `the real name often differs from a guessed one (it's usually ` + `namespaced \`<you>/...\`). ` + `If you genuinely lack it, call the \`vault_request_access\` MCP tool ` + `(key=${key ? `'${key}'` : "'<key>'"}, scope='read') ` + `to ask the operator for access via a Telegram approval card. ` + `Do NOT retry with --no-broker \u2014 the vault file is not mounted ` + `into agent containers.`;
|
|
64562
|
+
}
|
|
64433
64563
|
case "locked":
|
|
64434
64564
|
return `Hint: the broker is locked. Ask the operator to unlock it ` + `(\`/vault unlock\` in this chat, or ` + `\`switchroom vault broker unlock\` on the host). ` + `Do NOT retry with --no-broker \u2014 the vault file is not mounted ` + `into agent containers.`;
|
|
64435
64565
|
case "unreachable":
|
|
@@ -64847,8 +64977,14 @@ Push passphrase to broker for future requests? [Y/n]: `);
|
|
|
64847
64977
|
if (process.stdin.isTTY) {
|
|
64848
64978
|
console.error(source_default.yellow(`broker denied request (${result.code}): ${result.msg}. ` + `Falling back to direct vault access.`));
|
|
64849
64979
|
} else {
|
|
64980
|
+
let suggestions = [];
|
|
64981
|
+
try {
|
|
64982
|
+
const myKeys = await listViaBroker(brokerOpts);
|
|
64983
|
+
if (myKeys && key)
|
|
64984
|
+
suggestions = suggestVaultKeys(key, myKeys);
|
|
64985
|
+
} catch {}
|
|
64850
64986
|
process.stderr.write(`VAULT-BROKER-DENIED [${result.code}]: ${result.msg}
|
|
64851
|
-
` + `${recoveryHint("denied", key)}
|
|
64987
|
+
` + `${recoveryHint("denied", key, suggestions)}
|
|
64852
64988
|
`);
|
|
64853
64989
|
writeVaultDeniedEnvelope(key, result.code, result.msg);
|
|
64854
64990
|
process.exit(2);
|
|
@@ -66296,7 +66432,7 @@ function readRecentFires(jsonlPath) {
|
|
|
66296
66432
|
// src/web/api.ts
|
|
66297
66433
|
init_client3();
|
|
66298
66434
|
|
|
66299
|
-
//
|
|
66435
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
66300
66436
|
import { dirname as dirname7, posix, sep as sep2 } from "path";
|
|
66301
66437
|
function createModulerModifier() {
|
|
66302
66438
|
const getModuleFromFileName = createGetModuleFromFilename();
|
|
@@ -66332,7 +66468,7 @@ function normalizeWindowsPath(path4) {
|
|
|
66332
66468
|
return path4.replace(/^[A-Z]:/, "").replace(/\\/g, "/");
|
|
66333
66469
|
}
|
|
66334
66470
|
|
|
66335
|
-
//
|
|
66471
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
66336
66472
|
var normalizeFlagsResponse = (flagsResponse) => {
|
|
66337
66473
|
if ("flags" in flagsResponse) {
|
|
66338
66474
|
const featureFlags = getFlagValuesFromFlags(flagsResponse.flags);
|
|
@@ -66403,7 +66539,7 @@ var parsePayload = (response) => {
|
|
|
66403
66539
|
}
|
|
66404
66540
|
};
|
|
66405
66541
|
|
|
66406
|
-
//
|
|
66542
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/gzip.mjs
|
|
66407
66543
|
function isGzipSupported() {
|
|
66408
66544
|
return "CompressionStream" in globalThis;
|
|
66409
66545
|
}
|
|
@@ -66423,7 +66559,7 @@ async function gzipCompress(input, isDebug = true) {
|
|
|
66423
66559
|
}
|
|
66424
66560
|
}
|
|
66425
66561
|
|
|
66426
|
-
//
|
|
66562
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
66427
66563
|
/*! For license information please see uuidv7.mjs.LICENSE.txt */
|
|
66428
66564
|
var DIGITS = "0123456789abcdef";
|
|
66429
66565
|
|
|
@@ -66601,7 +66737,7 @@ var defaultGenerator;
|
|
|
66601
66737
|
var uuidv7 = () => uuidv7obj().toString();
|
|
66602
66738
|
var uuidv7obj = () => (defaultGenerator || (defaultGenerator = new V7Generator)).generate();
|
|
66603
66739
|
|
|
66604
|
-
//
|
|
66740
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/types.mjs
|
|
66605
66741
|
var types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedProperty) {
|
|
66606
66742
|
PostHogPersistedProperty["AnonymousId"] = "anonymous_id";
|
|
66607
66743
|
PostHogPersistedProperty["DistinctId"] = "distinct_id";
|
|
@@ -66634,7 +66770,7 @@ var types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedPr
|
|
|
66634
66770
|
return PostHogPersistedProperty;
|
|
66635
66771
|
}({});
|
|
66636
66772
|
|
|
66637
|
-
//
|
|
66773
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
66638
66774
|
var DEFAULT_BLOCKED_UA_STRS = [
|
|
66639
66775
|
"amazonbot",
|
|
66640
66776
|
"amazonproductbot",
|
|
@@ -66723,7 +66859,7 @@ var isBlockedUA = function(ua, customBlockedUserAgents = []) {
|
|
|
66723
66859
|
return uaLower.indexOf(blockedUaLower) !== -1;
|
|
66724
66860
|
});
|
|
66725
66861
|
};
|
|
66726
|
-
//
|
|
66862
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
66727
66863
|
var nativeIsArray = Array.isArray;
|
|
66728
66864
|
var ObjProto = Object.prototype;
|
|
66729
66865
|
var type_utils_hasOwnProperty = ObjProto.hasOwnProperty;
|
|
@@ -66760,7 +66896,7 @@ function isInstanceOf(candidate, base) {
|
|
|
66760
66896
|
}
|
|
66761
66897
|
}
|
|
66762
66898
|
|
|
66763
|
-
//
|
|
66899
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
66764
66900
|
function clampToRange(value, min, max, logger, fallbackValue) {
|
|
66765
66901
|
if (min > max) {
|
|
66766
66902
|
logger.warn("min cannot be greater than max.");
|
|
@@ -66780,7 +66916,7 @@ function clampToRange(value, min, max, logger, fallbackValue) {
|
|
|
66780
66916
|
return clampToRange(fallbackValue || max, min, max, logger);
|
|
66781
66917
|
}
|
|
66782
66918
|
|
|
66783
|
-
//
|
|
66919
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
66784
66920
|
var ONE_DAY_IN_MS = 86400000;
|
|
66785
66921
|
|
|
66786
66922
|
class BucketedRateLimiter {
|
|
@@ -66824,7 +66960,7 @@ class BucketedRateLimiter {
|
|
|
66824
66960
|
this._buckets = {};
|
|
66825
66961
|
}
|
|
66826
66962
|
}
|
|
66827
|
-
//
|
|
66963
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
66828
66964
|
class PromiseQueue {
|
|
66829
66965
|
add(promise) {
|
|
66830
66966
|
const promiseUUID = uuidv7();
|
|
@@ -66850,7 +66986,7 @@ class PromiseQueue {
|
|
|
66850
66986
|
this.promiseByIds = {};
|
|
66851
66987
|
}
|
|
66852
66988
|
}
|
|
66853
|
-
//
|
|
66989
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/logger.mjs
|
|
66854
66990
|
function createConsole(consoleLike = console) {
|
|
66855
66991
|
const lockedMethods = {
|
|
66856
66992
|
log: consoleLike.log.bind(consoleLike),
|
|
@@ -66888,7 +67024,7 @@ var passThrough = (fn) => fn();
|
|
|
66888
67024
|
function createLogger(prefix, maybeCall = passThrough) {
|
|
66889
67025
|
return _createLogger(prefix, maybeCall, createConsole());
|
|
66890
67026
|
}
|
|
66891
|
-
//
|
|
67027
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
66892
67028
|
var MOBILE = "Mobile";
|
|
66893
67029
|
var IOS = "iOS";
|
|
66894
67030
|
var ANDROID = "Android";
|
|
@@ -67145,7 +67281,7 @@ var osMatchers = [
|
|
|
67145
67281
|
]
|
|
67146
67282
|
];
|
|
67147
67283
|
|
|
67148
|
-
//
|
|
67284
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/index.mjs
|
|
67149
67285
|
var STRING_FORMAT = "utf8";
|
|
67150
67286
|
function assert(truthyValue, message) {
|
|
67151
67287
|
if (!truthyValue || typeof truthyValue != "string" || isEmpty(truthyValue))
|
|
@@ -67193,7 +67329,7 @@ function allSettled(promises) {
|
|
|
67193
67329
|
reason
|
|
67194
67330
|
}))));
|
|
67195
67331
|
}
|
|
67196
|
-
//
|
|
67332
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/eventemitter.mjs
|
|
67197
67333
|
class SimpleEventEmitter {
|
|
67198
67334
|
constructor() {
|
|
67199
67335
|
this.events = {};
|
|
@@ -67215,7 +67351,7 @@ class SimpleEventEmitter {
|
|
|
67215
67351
|
}
|
|
67216
67352
|
}
|
|
67217
67353
|
|
|
67218
|
-
//
|
|
67354
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
67219
67355
|
class PostHogFetchHttpError extends Error {
|
|
67220
67356
|
constructor(response, reqByteLength) {
|
|
67221
67357
|
super("HTTP error while fetching PostHog: status=" + response.status + ", reqByteLength=" + reqByteLength), this.response = response, this.reqByteLength = reqByteLength, this.name = "PostHogFetchHttpError";
|
|
@@ -67930,7 +68066,7 @@ class PostHogCoreStateless {
|
|
|
67930
68066
|
return this.shutdownPromise;
|
|
67931
68067
|
}
|
|
67932
68068
|
}
|
|
67933
|
-
//
|
|
68069
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
67934
68070
|
var exports_error_tracking = {};
|
|
67935
68071
|
__export(exports_error_tracking, {
|
|
67936
68072
|
winjsStackLineParser: () => winjsStackLineParser,
|
|
@@ -67954,7 +68090,7 @@ __export(exports_error_tracking, {
|
|
|
67954
68090
|
DOMExceptionCoercer: () => DOMExceptionCoercer
|
|
67955
68091
|
});
|
|
67956
68092
|
|
|
67957
|
-
//
|
|
68093
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
67958
68094
|
var parsedStackResults;
|
|
67959
68095
|
var lastKeysCount;
|
|
67960
68096
|
var cachedFilenameChunkIds;
|
|
@@ -67993,7 +68129,7 @@ function getFilenameToChunkIdMap(stackParser) {
|
|
|
67993
68129
|
return cachedFilenameChunkIds;
|
|
67994
68130
|
}
|
|
67995
68131
|
|
|
67996
|
-
//
|
|
68132
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
67997
68133
|
var MAX_CAUSE_RECURSION = 4;
|
|
67998
68134
|
|
|
67999
68135
|
class ErrorPropertiesBuilder {
|
|
@@ -68115,7 +68251,7 @@ class ErrorPropertiesBuilder {
|
|
|
68115
68251
|
return context;
|
|
68116
68252
|
}
|
|
68117
68253
|
}
|
|
68118
|
-
//
|
|
68254
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
68119
68255
|
var UNKNOWN_FUNCTION = "?";
|
|
68120
68256
|
function createFrame(platform, filename, func, lineno, colno) {
|
|
68121
68257
|
const frame = {
|
|
@@ -68131,7 +68267,7 @@ function createFrame(platform, filename, func, lineno, colno) {
|
|
|
68131
68267
|
return frame;
|
|
68132
68268
|
}
|
|
68133
68269
|
|
|
68134
|
-
//
|
|
68270
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
68135
68271
|
var extractSafariExtensionDetails = (func, filename) => {
|
|
68136
68272
|
const isSafariExtension = func.indexOf("safari-extension") !== -1;
|
|
68137
68273
|
const isSafariWebExtension = func.indexOf("safari-web-extension") !== -1;
|
|
@@ -68144,7 +68280,7 @@ var extractSafariExtensionDetails = (func, filename) => {
|
|
|
68144
68280
|
];
|
|
68145
68281
|
};
|
|
68146
68282
|
|
|
68147
|
-
//
|
|
68283
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
68148
68284
|
var chromeRegexNoFnName = /^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i;
|
|
68149
68285
|
var chromeRegex = /^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i;
|
|
68150
68286
|
var chromeEvalRegex = /\((\S*)(?::(\d+))(?::(\d+))\)/;
|
|
@@ -68170,7 +68306,7 @@ var chromeStackLineParser = (line, platform) => {
|
|
|
68170
68306
|
}
|
|
68171
68307
|
};
|
|
68172
68308
|
|
|
68173
|
-
//
|
|
68309
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
68174
68310
|
var geckoREgex = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i;
|
|
68175
68311
|
var geckoEvalRegex = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i;
|
|
68176
68312
|
var geckoStackLineParser = (line, platform) => {
|
|
@@ -68193,14 +68329,14 @@ var geckoStackLineParser = (line, platform) => {
|
|
|
68193
68329
|
}
|
|
68194
68330
|
};
|
|
68195
68331
|
|
|
68196
|
-
//
|
|
68332
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
68197
68333
|
var winjsRegex = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:[-a-z]+):.*?):(\d+)(?::(\d+))?\)?\s*$/i;
|
|
68198
68334
|
var winjsStackLineParser = (line, platform) => {
|
|
68199
68335
|
const parts = winjsRegex.exec(line);
|
|
68200
68336
|
return parts ? createFrame(platform, parts[2], parts[1] || UNKNOWN_FUNCTION, +parts[3], parts[4] ? +parts[4] : undefined) : undefined;
|
|
68201
68337
|
};
|
|
68202
68338
|
|
|
68203
|
-
//
|
|
68339
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
68204
68340
|
var opera10Regex = / line (\d+).*script (?:in )?(\S+)(?:: in function (\S+))?$/i;
|
|
68205
68341
|
var opera10StackLineParser = (line, platform) => {
|
|
68206
68342
|
const parts = opera10Regex.exec(line);
|
|
@@ -68212,7 +68348,7 @@ var opera11StackLineParser = (line, platform) => {
|
|
|
68212
68348
|
return parts ? createFrame(platform, parts[5], parts[3] || parts[4] || UNKNOWN_FUNCTION, +parts[1], +parts[2]) : undefined;
|
|
68213
68349
|
};
|
|
68214
68350
|
|
|
68215
|
-
//
|
|
68351
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
68216
68352
|
var FILENAME_MATCH = /^\s*[-]{4,}$/;
|
|
68217
68353
|
var FULL_MATCH = /at (?:async )?(?:(.+?)\s+\()?(?:(.+):(\d+):(\d+)?|([^)]+))\)?/;
|
|
68218
68354
|
var nodeStackLineParser = (line, platform) => {
|
|
@@ -68281,7 +68417,7 @@ function _parseIntOrUndefined(input) {
|
|
|
68281
68417
|
return parseInt(input || "", 10) || undefined;
|
|
68282
68418
|
}
|
|
68283
68419
|
|
|
68284
|
-
//
|
|
68420
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
68285
68421
|
var WEBPACK_ERROR_REGEXP = /\(error: (.*)\)/;
|
|
68286
68422
|
var STACKTRACE_FRAME_LIMIT = 50;
|
|
68287
68423
|
function reverseAndStripFrames(stack) {
|
|
@@ -68326,7 +68462,7 @@ function createStackParser(platform, ...parsers) {
|
|
|
68326
68462
|
return reverseAndStripFrames(frames);
|
|
68327
68463
|
};
|
|
68328
68464
|
}
|
|
68329
|
-
//
|
|
68465
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
68330
68466
|
class DOMExceptionCoercer {
|
|
68331
68467
|
match(err) {
|
|
68332
68468
|
return this.isDOMException(err) || this.isDOMError(err);
|
|
@@ -68356,7 +68492,7 @@ class DOMExceptionCoercer {
|
|
|
68356
68492
|
return isBuiltin(err, "DOMError");
|
|
68357
68493
|
}
|
|
68358
68494
|
}
|
|
68359
|
-
//
|
|
68495
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
68360
68496
|
class ErrorCoercer {
|
|
68361
68497
|
match(err) {
|
|
68362
68498
|
return isPlainError(err);
|
|
@@ -68383,7 +68519,7 @@ class ErrorCoercer {
|
|
|
68383
68519
|
return err.stacktrace || err.stack || undefined;
|
|
68384
68520
|
}
|
|
68385
68521
|
}
|
|
68386
|
-
//
|
|
68522
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
68387
68523
|
class ErrorEventCoercer {
|
|
68388
68524
|
constructor() {}
|
|
68389
68525
|
match(err) {
|
|
@@ -68401,7 +68537,7 @@ class ErrorEventCoercer {
|
|
|
68401
68537
|
return exceptionLike;
|
|
68402
68538
|
}
|
|
68403
68539
|
}
|
|
68404
|
-
//
|
|
68540
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
68405
68541
|
var ERROR_TYPES_PATTERN = /^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i;
|
|
68406
68542
|
|
|
68407
68543
|
class StringCoercer {
|
|
@@ -68431,7 +68567,7 @@ class StringCoercer {
|
|
|
68431
68567
|
];
|
|
68432
68568
|
}
|
|
68433
68569
|
}
|
|
68434
|
-
//
|
|
68570
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
68435
68571
|
var severityLevels = [
|
|
68436
68572
|
"fatal",
|
|
68437
68573
|
"error",
|
|
@@ -68441,7 +68577,7 @@ var severityLevels = [
|
|
|
68441
68577
|
"debug"
|
|
68442
68578
|
];
|
|
68443
68579
|
|
|
68444
|
-
//
|
|
68580
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
68445
68581
|
function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
68446
68582
|
const keys = Object.keys(err);
|
|
68447
68583
|
keys.sort();
|
|
@@ -68458,7 +68594,7 @@ function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
|
68458
68594
|
return "";
|
|
68459
68595
|
}
|
|
68460
68596
|
|
|
68461
|
-
//
|
|
68597
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
68462
68598
|
class ObjectCoercer {
|
|
68463
68599
|
match(candidate) {
|
|
68464
68600
|
return typeof candidate == "object" && candidate !== null;
|
|
@@ -68511,7 +68647,7 @@ class ObjectCoercer {
|
|
|
68511
68647
|
}
|
|
68512
68648
|
}
|
|
68513
68649
|
}
|
|
68514
|
-
//
|
|
68650
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
68515
68651
|
class EventCoercer {
|
|
68516
68652
|
match(err) {
|
|
68517
68653
|
return isEvent(err);
|
|
@@ -68526,7 +68662,7 @@ class EventCoercer {
|
|
|
68526
68662
|
};
|
|
68527
68663
|
}
|
|
68528
68664
|
}
|
|
68529
|
-
//
|
|
68665
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
68530
68666
|
class PrimitiveCoercer {
|
|
68531
68667
|
match(candidate) {
|
|
68532
68668
|
return isPrimitive(candidate);
|
|
@@ -68540,7 +68676,7 @@ class PrimitiveCoercer {
|
|
|
68540
68676
|
};
|
|
68541
68677
|
}
|
|
68542
68678
|
}
|
|
68543
|
-
//
|
|
68679
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
68544
68680
|
class PromiseRejectionEventCoercer {
|
|
68545
68681
|
match(err) {
|
|
68546
68682
|
return isBuiltin(err, "PromiseRejectionEvent") || this.isCustomEventWrappingRejection(err);
|
|
@@ -68576,7 +68712,7 @@ class PromiseRejectionEventCoercer {
|
|
|
68576
68712
|
return error;
|
|
68577
68713
|
}
|
|
68578
68714
|
}
|
|
68579
|
-
//
|
|
68715
|
+
// node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
68580
68716
|
class ReduceableCache {
|
|
68581
68717
|
constructor(_maxSize) {
|
|
68582
68718
|
this._maxSize = _maxSize;
|
|
@@ -68601,7 +68737,7 @@ class ReduceableCache {
|
|
|
68601
68737
|
}
|
|
68602
68738
|
}
|
|
68603
68739
|
}
|
|
68604
|
-
//
|
|
68740
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
68605
68741
|
import { createReadStream } from "node:fs";
|
|
68606
68742
|
import { createInterface as createInterface5 } from "node:readline";
|
|
68607
68743
|
var LRU_FILE_CONTENTS_CACHE = new exports_error_tracking.ReduceableCache(25);
|
|
@@ -68819,7 +68955,7 @@ function snipLine(line, colno) {
|
|
|
68819
68955
|
return newLine;
|
|
68820
68956
|
}
|
|
68821
68957
|
|
|
68822
|
-
//
|
|
68958
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
68823
68959
|
function makeUncaughtExceptionHandler(captureFn, onFatalFn) {
|
|
68824
68960
|
let calledFatalError = false;
|
|
68825
68961
|
return Object.assign((error) => {
|
|
@@ -68851,7 +68987,7 @@ function addUnhandledRejectionListener(captureFn) {
|
|
|
68851
68987
|
}));
|
|
68852
68988
|
}
|
|
68853
68989
|
|
|
68854
|
-
//
|
|
68990
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
68855
68991
|
var SHUTDOWN_TIMEOUT = 2000;
|
|
68856
68992
|
|
|
68857
68993
|
class ErrorTracking {
|
|
@@ -68920,10 +69056,10 @@ class ErrorTracking {
|
|
|
68920
69056
|
}
|
|
68921
69057
|
}
|
|
68922
69058
|
|
|
68923
|
-
//
|
|
69059
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/version.mjs
|
|
68924
69060
|
var version = "5.29.2";
|
|
68925
69061
|
|
|
68926
|
-
//
|
|
69062
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/types.mjs
|
|
68927
69063
|
var FeatureFlagError2 = {
|
|
68928
69064
|
ERRORS_WHILE_COMPUTING: "errors_while_computing_flags",
|
|
68929
69065
|
FLAG_MISSING: "flag_missing",
|
|
@@ -68931,7 +69067,7 @@ var FeatureFlagError2 = {
|
|
|
68931
69067
|
UNKNOWN_ERROR: "unknown_error"
|
|
68932
69068
|
};
|
|
68933
69069
|
|
|
68934
|
-
//
|
|
69070
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
68935
69071
|
async function hashSHA1(text) {
|
|
68936
69072
|
const subtle = globalThis.crypto?.subtle;
|
|
68937
69073
|
if (!subtle)
|
|
@@ -68941,7 +69077,7 @@ async function hashSHA1(text) {
|
|
|
68941
69077
|
return hashArray.map((byte) => byte.toString(16).padStart(2, "0")).join("");
|
|
68942
69078
|
}
|
|
68943
69079
|
|
|
68944
|
-
//
|
|
69080
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
68945
69081
|
var SIXTY_SECONDS = 60000;
|
|
68946
69082
|
var LONG_SCALE = 1152921504606847000;
|
|
68947
69083
|
var NULL_VALUES_ALLOWED_OPERATORS = [
|
|
@@ -69815,7 +69951,7 @@ function relativeDateParseForFeatureFlagMatching(value) {
|
|
|
69815
69951
|
}
|
|
69816
69952
|
}
|
|
69817
69953
|
|
|
69818
|
-
//
|
|
69954
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/storage-memory.mjs
|
|
69819
69955
|
class PostHogMemoryStorage {
|
|
69820
69956
|
getProperty(key) {
|
|
69821
69957
|
return this._memoryStorage[key];
|
|
@@ -69828,7 +69964,7 @@ class PostHogMemoryStorage {
|
|
|
69828
69964
|
}
|
|
69829
69965
|
}
|
|
69830
69966
|
|
|
69831
|
-
//
|
|
69967
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/client.mjs
|
|
69832
69968
|
var MINIMUM_POLLING_INTERVAL = 100;
|
|
69833
69969
|
var THIRTY_SECONDS = 30000;
|
|
69834
69970
|
var MAX_CACHE_SIZE = 50000;
|
|
@@ -70616,7 +70752,7 @@ class PostHogBackendClient extends PostHogCoreStateless {
|
|
|
70616
70752
|
}
|
|
70617
70753
|
}
|
|
70618
70754
|
|
|
70619
|
-
//
|
|
70755
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
70620
70756
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
70621
70757
|
|
|
70622
70758
|
class PostHogContext {
|
|
@@ -70647,7 +70783,7 @@ class PostHogContext {
|
|
|
70647
70783
|
}
|
|
70648
70784
|
}
|
|
70649
70785
|
|
|
70650
|
-
//
|
|
70786
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
70651
70787
|
var NAME = "posthog-node";
|
|
70652
70788
|
function createEventProcessor(_posthog, { organization, projectId, prefix, severityAllowList = [
|
|
70653
70789
|
"error"
|
|
@@ -70715,7 +70851,7 @@ class PostHogSentryIntegration {
|
|
|
70715
70851
|
};
|
|
70716
70852
|
}
|
|
70717
70853
|
}
|
|
70718
|
-
//
|
|
70854
|
+
// node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
70719
70855
|
ErrorTracking.errorPropertiesBuilder = new exports_error_tracking.ErrorPropertiesBuilder([
|
|
70720
70856
|
new exports_error_tracking.EventCoercer,
|
|
70721
70857
|
new exports_error_tracking.ErrorCoercer,
|
|
@@ -75562,7 +75698,7 @@ var DEFAULT_MEMORY_SEARCH_MAX_RESULTS = 6;
|
|
|
75562
75698
|
var DEFAULT_MEMORY_SEARCH_SNIPPET_CHARS = 220;
|
|
75563
75699
|
var MEMORY_SEARCH_MAX_INDEXED_CHARS = 2000000;
|
|
75564
75700
|
var MEMORY_SEARCH_MAX_FILE_SIZE = 512 * 1024;
|
|
75565
|
-
function
|
|
75701
|
+
function tokenize2(text) {
|
|
75566
75702
|
return text.toLowerCase().split(/[^a-z0-9]+/u).filter((t) => t.length > 1 && t.length < 40);
|
|
75567
75703
|
}
|
|
75568
75704
|
async function listMarkdownFiles(workspaceDir, maxDepth = 3) {
|
|
@@ -75614,7 +75750,7 @@ async function loadIndex(workspaceDir) {
|
|
|
75614
75750
|
if (content.length === 0)
|
|
75615
75751
|
continue;
|
|
75616
75752
|
totalChars += content.length;
|
|
75617
|
-
const terms =
|
|
75753
|
+
const terms = tokenize2(content);
|
|
75618
75754
|
const freq = new Map;
|
|
75619
75755
|
for (const t of terms) {
|
|
75620
75756
|
freq.set(t, (freq.get(t) ?? 0) + 1);
|
|
@@ -75687,7 +75823,7 @@ function computeIdf(index, queryTerms) {
|
|
|
75687
75823
|
async function searchWorkspaceMemory(params) {
|
|
75688
75824
|
const maxResults = params.maxResults ?? DEFAULT_MEMORY_SEARCH_MAX_RESULTS;
|
|
75689
75825
|
const snippetChars = params.snippetChars ?? DEFAULT_MEMORY_SEARCH_SNIPPET_CHARS;
|
|
75690
|
-
const queryTerms = Array.from(new Set(
|
|
75826
|
+
const queryTerms = Array.from(new Set(tokenize2(params.query)));
|
|
75691
75827
|
if (queryTerms.length === 0) {
|
|
75692
75828
|
return { query: params.query, indexedFiles: 0, totalMatches: 0, hits: [] };
|
|
75693
75829
|
}
|