@morlay/better-session 0.0.12 → 0.0.14
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/index.d.mts +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +6 -7
- package/src/index.ts +1 -0
- package/dist/invariant.d.mts +0 -8
- package/dist/invariant.d.mts.map +0 -1
- package/dist/invariant.mjs +0 -10
- package/dist/invariant.mjs.map +0 -1
- package/src/invariant.ts +0 -13
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@morlay/better-session",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"description": "Example dsh profile bundle: assembles @morlay/session-rdb and @morlay/ui-conversation-message-actions into a web profile — rewind / retry / fork closed loop on RDB persistence.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dsh",
|
|
@@ -24,18 +24,17 @@
|
|
|
24
24
|
],
|
|
25
25
|
"type": "module",
|
|
26
26
|
"exports": {
|
|
27
|
-
".": "./dist/
|
|
27
|
+
".": "./dist/index.mjs",
|
|
28
28
|
"./package.json": "./package.json",
|
|
29
29
|
"./cordis.patch.yml": "./cordis.patch.yml"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@morlay/session-branch": "^0.0.
|
|
33
|
-
"@morlay/session-rdb": "^0.0.
|
|
34
|
-
"@morlay/ui-conversation-message-actions": "^0.0.
|
|
32
|
+
"@morlay/session-branch": "^0.0.3",
|
|
33
|
+
"@morlay/session-rdb": "^0.0.14",
|
|
34
|
+
"@morlay/ui-conversation-message-actions": "^0.0.13"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@deepseek-ai/cordis": "^4.0.2"
|
|
38
|
-
"@deepseek-ai/dsh-invariants": "^0.1.2-rc.1"
|
|
37
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
39
38
|
},
|
|
40
39
|
"dsh": {
|
|
41
40
|
"bundle": {
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/invariant.d.mts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Context } from "@deepseek-ai/cordis";
|
|
2
|
-
//#region src/invariant.d.ts
|
|
3
|
-
declare const name = "web-app-invariant";
|
|
4
|
-
declare const inject: string[];
|
|
5
|
-
declare const apply: (ctx: Context) => Promise<() => void>;
|
|
6
|
-
//#endregion
|
|
7
|
-
export { apply, inject, name };
|
|
8
|
-
//# sourceMappingURL=invariant.d.mts.map
|
package/dist/invariant.d.mts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"invariant.d.mts","names":[],"sources":["../src/invariant.ts"],"mappings":";;cAKa;cAEA;cAIA,QAAK,KAAS,YAAU"}
|
package/dist/invariant.mjs
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
//#region src/invariant.ts
|
|
2
|
-
const PACKAGE_NAME = "@morlay/better-session";
|
|
3
|
-
const name = "web-app-invariant";
|
|
4
|
-
const inject = ["invariants"];
|
|
5
|
-
const install = () => {};
|
|
6
|
-
const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
|
|
7
|
-
//#endregion
|
|
8
|
-
export { apply, inject, name };
|
|
9
|
-
|
|
10
|
-
//# sourceMappingURL=invariant.mjs.map
|
package/dist/invariant.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"invariant.mjs","names":[],"sources":["../src/invariant.ts"],"sourcesContent":["import type { Context } from \"@deepseek-ai/cordis\";\nimport type { InvariantInstaller } from \"@deepseek-ai/dsh-invariants\";\n\nconst PACKAGE_NAME = \"@morlay/better-session\";\n\nexport const name = \"web-app-invariant\";\n\nexport const inject = [\"invariants\"];\n\nconst install: InvariantInstaller = () => {};\n\nexport const apply = (ctx: Context): Promise<() => void> =>\n Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));\n"],"mappings":";AAGA,MAAM,eAAe;AAErB,MAAa,OAAO;AAEpB,MAAa,SAAS,CAAC,YAAY;AAEnC,MAAM,gBAAoC,CAAC;AAE3C,MAAa,SAAS,QACpB,QAAQ,QAAQ,IAAI,WAAW,SAAS,cAAc,OAAO,CAAC"}
|
package/src/invariant.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { Context } from "@deepseek-ai/cordis";
|
|
2
|
-
import type { InvariantInstaller } from "@deepseek-ai/dsh-invariants";
|
|
3
|
-
|
|
4
|
-
const PACKAGE_NAME = "@morlay/better-session";
|
|
5
|
-
|
|
6
|
-
export const name = "web-app-invariant";
|
|
7
|
-
|
|
8
|
-
export const inject = ["invariants"];
|
|
9
|
-
|
|
10
|
-
const install: InvariantInstaller = () => {};
|
|
11
|
-
|
|
12
|
-
export const apply = (ctx: Context): Promise<() => void> =>
|
|
13
|
-
Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
|