@cyberstrike-io/cyberstrike 1.1.15-beta.2 → 1.1.15
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/hackbrowser-worker.js +24 -6
- package/package.json +12 -12
- package/web/assets/{ghostty-web-EyEK4Ew6.js → ghostty-web-ClrKZYRt.js} +1 -1
- package/web/assets/{home-SafXwlHS.js → home-CBbUenzB.js} +1 -1
- package/web/assets/{index-C0CQ2ZN1.js → index-DMx52TJy.js} +1 -1
- package/web/assets/{session-WtE9tIH4.js → session-BpWko3PJ.js} +24 -24
- package/web/index.html +1 -1
package/hackbrowser-worker.js
CHANGED
|
@@ -5,25 +5,43 @@ var __getProtoOf = Object.getPrototypeOf;
|
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
6
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
function __accessProp(key) {
|
|
9
|
+
return this[key];
|
|
10
|
+
}
|
|
11
|
+
var __toESMCache_node;
|
|
12
|
+
var __toESMCache_esm;
|
|
8
13
|
var __toESM = (mod, isNodeMode, target) => {
|
|
14
|
+
var canCache = mod != null && typeof mod === "object";
|
|
15
|
+
if (canCache) {
|
|
16
|
+
var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
|
|
17
|
+
var cached = cache.get(mod);
|
|
18
|
+
if (cached)
|
|
19
|
+
return cached;
|
|
20
|
+
}
|
|
9
21
|
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
10
22
|
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
11
23
|
for (let key of __getOwnPropNames(mod))
|
|
12
24
|
if (!__hasOwnProp.call(to, key))
|
|
13
25
|
__defProp(to, key, {
|
|
14
|
-
get: (
|
|
26
|
+
get: __accessProp.bind(mod, key),
|
|
15
27
|
enumerable: true
|
|
16
28
|
});
|
|
29
|
+
if (canCache)
|
|
30
|
+
cache.set(mod, to);
|
|
17
31
|
return to;
|
|
18
32
|
};
|
|
19
33
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
34
|
+
var __returnValue = (v) => v;
|
|
35
|
+
function __exportSetter(name, newValue) {
|
|
36
|
+
this[name] = __returnValue.bind(null, newValue);
|
|
37
|
+
}
|
|
20
38
|
var __export = (target, all) => {
|
|
21
39
|
for (var name in all)
|
|
22
40
|
__defProp(target, name, {
|
|
23
41
|
get: all[name],
|
|
24
42
|
enumerable: true,
|
|
25
43
|
configurable: true,
|
|
26
|
-
set: (
|
|
44
|
+
set: __exportSetter.bind(all, name)
|
|
27
45
|
});
|
|
28
46
|
};
|
|
29
47
|
var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
@@ -19325,7 +19343,7 @@ var require_tracestate_impl = __commonJS((exports) => {
|
|
|
19325
19343
|
const value = listMember.slice(i2 + 1, part.length);
|
|
19326
19344
|
if ((0, tracestate_validators_1.validateKey)(key) && (0, tracestate_validators_1.validateValue)(value)) {
|
|
19327
19345
|
agg.set(key, value);
|
|
19328
|
-
}
|
|
19346
|
+
}
|
|
19329
19347
|
}
|
|
19330
19348
|
return agg;
|
|
19331
19349
|
}, new Map);
|
|
@@ -30834,7 +30852,7 @@ class JSONSchemaGenerator {
|
|
|
30834
30852
|
if (val === undefined) {
|
|
30835
30853
|
if (this.unrepresentable === "throw") {
|
|
30836
30854
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
30837
|
-
}
|
|
30855
|
+
}
|
|
30838
30856
|
} else if (typeof val === "bigint") {
|
|
30839
30857
|
if (this.unrepresentable === "throw") {
|
|
30840
30858
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
|
@@ -87512,7 +87530,7 @@ function finalize(ctx, schema) {
|
|
|
87512
87530
|
result.$schema = "http://json-schema.org/draft-07/schema#";
|
|
87513
87531
|
} else if (ctx.target === "draft-04") {
|
|
87514
87532
|
result.$schema = "http://json-schema.org/draft-04/schema#";
|
|
87515
|
-
} else if (ctx.target === "openapi-3.0") {}
|
|
87533
|
+
} else if (ctx.target === "openapi-3.0") {}
|
|
87516
87534
|
if (ctx.external?.uri) {
|
|
87517
87535
|
const id = ctx.external.registry.get(schema)?.id;
|
|
87518
87536
|
if (!id)
|
|
@@ -87759,7 +87777,7 @@ var literalProcessor = (schema, ctx, json2, _params) => {
|
|
|
87759
87777
|
if (val === undefined) {
|
|
87760
87778
|
if (ctx.unrepresentable === "throw") {
|
|
87761
87779
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
87762
|
-
}
|
|
87780
|
+
}
|
|
87763
87781
|
} else if (typeof val === "bigint") {
|
|
87764
87782
|
if (ctx.unrepresentable === "throw") {
|
|
87765
87783
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"scripts": {
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
9
9
|
},
|
|
10
|
-
"version": "1.1.15
|
|
10
|
+
"version": "1.1.15",
|
|
11
11
|
"license": "AGPL-3.0-only",
|
|
12
12
|
"keywords": [
|
|
13
13
|
"cyberstrike",
|
|
@@ -40,16 +40,16 @@
|
|
|
40
40
|
"playwright": "1.58.2"
|
|
41
41
|
},
|
|
42
42
|
"optionalDependencies": {
|
|
43
|
-
"@cyberstrike-io/cyberstrike-
|
|
44
|
-
"@cyberstrike-io/cyberstrike-
|
|
45
|
-
"@cyberstrike-io/cyberstrike-
|
|
46
|
-
"@cyberstrike-io/cyberstrike-windows-x64
|
|
47
|
-
"@cyberstrike-io/cyberstrike-
|
|
48
|
-
"@cyberstrike-io/cyberstrike-linux-
|
|
49
|
-
"@cyberstrike-io/cyberstrike-linux-
|
|
50
|
-
"@cyberstrike-io/cyberstrike-
|
|
51
|
-
"@cyberstrike-io/cyberstrike-
|
|
52
|
-
"@cyberstrike-io/cyberstrike-linux-
|
|
53
|
-
"@cyberstrike-io/cyberstrike-
|
|
43
|
+
"@cyberstrike-io/cyberstrike-linux-x64-musl": "1.1.15",
|
|
44
|
+
"@cyberstrike-io/cyberstrike-darwin-arm64": "1.1.15",
|
|
45
|
+
"@cyberstrike-io/cyberstrike-linux-arm64": "1.1.15",
|
|
46
|
+
"@cyberstrike-io/cyberstrike-windows-x64": "1.1.15",
|
|
47
|
+
"@cyberstrike-io/cyberstrike-darwin-x64-baseline": "1.1.15",
|
|
48
|
+
"@cyberstrike-io/cyberstrike-linux-x64": "1.1.15",
|
|
49
|
+
"@cyberstrike-io/cyberstrike-linux-x64-baseline": "1.1.15",
|
|
50
|
+
"@cyberstrike-io/cyberstrike-linux-x64-baseline-musl": "1.1.15",
|
|
51
|
+
"@cyberstrike-io/cyberstrike-darwin-x64": "1.1.15",
|
|
52
|
+
"@cyberstrike-io/cyberstrike-linux-arm64-musl": "1.1.15",
|
|
53
|
+
"@cyberstrike-io/cyberstrike-windows-x64-baseline": "1.1.15"
|
|
54
54
|
}
|
|
55
55
|
}
|