wenay-common2 1.0.64 → 1.0.66
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/CLAUDE.md +20 -0
- package/doc/REPLAY-PLAN.md +5 -1
- package/doc/ROADMAP.md +190 -0
- package/doc/changes/1.0.65.md +8 -0
- package/doc/changes/1.0.66.md +8 -0
- package/doc/wenay-common2-rare.md +49 -2
- package/doc/wenay-common2.md +17 -2
- package/lib/Common/Observe/store-replay.d.ts +8 -0
- package/lib/Common/Observe/store-replay.js +5 -0
- package/lib/Common/events/replay-index.d.ts +1 -0
- package/lib/Common/events/replay-index.js +1 -0
- package/lib/Common/events/replay-route.d.ts +25 -0
- package/lib/Common/events/replay-route.js +174 -0
- package/lib/Common/media/media-index.d.ts +1 -0
- package/lib/Common/media/media-index.js +17 -0
- package/lib/Common/media/media-source.d.ts +94 -0
- package/lib/Common/media/media-source.js +537 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +3 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -1
- package/package.json +4 -2
package/lib/index.js
CHANGED
|
@@ -36,7 +36,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
36
36
|
};
|
|
37
37
|
})();
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.Replay = exports.Observe = exports.Color = exports.Time = exports.Params = exports.Bars = exports.Math = void 0;
|
|
39
|
+
exports.Media = exports.Replay = exports.Observe = exports.Color = exports.Time = exports.Params = exports.Bars = exports.Math = void 0;
|
|
40
40
|
__exportStar(require("./Common/node_console"), exports);
|
|
41
41
|
__exportStar(require("./Common/core/Decorator"), exports);
|
|
42
42
|
__exportStar(require("./Common/core/BaseTypes"), exports);
|
|
@@ -56,6 +56,7 @@ __exportStar(require("./Common/events/SocketBuffer"), exports);
|
|
|
56
56
|
__exportStar(require("./Common/events/SocketServerHook"), exports);
|
|
57
57
|
__exportStar(require("./Common/events/joinListens"), exports);
|
|
58
58
|
__exportStar(require("./Common/events/mapListen"), exports);
|
|
59
|
+
__exportStar(require("./Common/media/media-index"), exports);
|
|
59
60
|
__exportStar(require("./Common/rcp/rpc-index"), exports);
|
|
60
61
|
__exportStar(require("./Common/Color"), exports);
|
|
61
62
|
__exportStar(require("./Common/funcTimeWait"), exports);
|
|
@@ -72,3 +73,4 @@ exports.Time = __importStar(require("./Common/Time"));
|
|
|
72
73
|
exports.Color = __importStar(require("./Common/Color"));
|
|
73
74
|
exports.Observe = __importStar(require("./Common/Observe"));
|
|
74
75
|
exports.Replay = __importStar(require("./Common/events/replay-index"));
|
|
76
|
+
exports.Media = __importStar(require("./Common/media/media-index"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wenay-common2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.66",
|
|
4
4
|
"description": "Common library",
|
|
5
5
|
"strict": true,
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"CLAUDE.md",
|
|
12
12
|
"rpc.md",
|
|
13
13
|
"!doc/target/**/*",
|
|
14
|
+
"!doc/progress/**/*",
|
|
14
15
|
"!**/*.tsbuildinfo"
|
|
15
16
|
],
|
|
16
17
|
"author": "wenay",
|
|
@@ -33,7 +34,8 @@
|
|
|
33
34
|
"./lib/server": "./lib/server.js",
|
|
34
35
|
"./client": "./lib/client.js",
|
|
35
36
|
"./server": "./lib/server.js",
|
|
36
|
-
"./package.json": "./package.json"
|
|
37
|
+
"./package.json": "./package.json",
|
|
38
|
+
"./media": "./lib/Common/media/media-index.js"
|
|
37
39
|
},
|
|
38
40
|
"dependencies": {
|
|
39
41
|
"express": "^5.2.1"
|