@monotykamary/dsh-session-log-export 0.1.7 → 0.1.9

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/README.i18n.yaml CHANGED
@@ -1,6 +1,6 @@
1
1
  # Bilingual-pair consistency record (docs/i18n/README.md): the git blob hash of each
2
2
  # side as of the last confirmed-consistent state. Both languages carry equal authority;
3
3
  # after editing either side, bring the other along and re-record with:
4
- # pnpm run verify-translation-pairing --write packages/session-query/session-log-export/README.md
4
+ # bun run verify-translation-pairing --write packages/session-query/session-log-export/README.md
5
5
  README.md: 051dcb9d1bd77bd743980b533394f016489aa4fd
6
6
  README.zh.md: 3e1965c52e0a9641d4e8583221989c255807b9b1
package/lib/client.js CHANGED
@@ -168,8 +168,8 @@ window.__ModuleLoader__.load({
168
168
  });
169
169
  }
170
170
  //#endregion
171
- //#region \0dsh-css:/home/runner/work/deepseek-harness/deepseek-harness/packages/session-query/session-log-export/src/client/HeaderAction.module.css.mjs
172
- const css = ".nL4_yW_sessionLogButton{border:1px solid var(--dsw-alias-border-l2);min-width:111px;height:32px;color:var(--dsw-alias-label-primary);font-family:var(--dsw-font-family);cursor:pointer;background:0 0;border-radius:18px;justify-content:center;align-items:center;gap:4px;padding:6px 12px;font-size:13px;font-weight:400;line-height:20px;display:inline-flex}.nL4_yW_sessionLogButton:hover:not(:disabled){background:var(--dsw-alias-interactive-bg-hover)}.nL4_yW_sessionLogButton:disabled{color:var(--dsw-alias-label-dimmed);cursor:wait}.nL4_yW_sessionLogButton span,.nL4_yW_sessionLogButton svg{flex:none}.nL4_yW_sessionLogButton span{white-space:nowrap}";
171
+ //#region \0dsh-css:/Users/monotykamary/VCS/working-remote/open-source/deepseek-harness/packages/session-query/session-log-export/src/client/HeaderAction.module.css.mjs
172
+ const css = ".TBrRZG_sessionLogButton{border:1px solid var(--dsw-alias-border-l2);min-width:111px;height:32px;color:var(--dsw-alias-label-primary);font-family:var(--dsw-font-family);cursor:pointer;background:0 0;border-radius:18px;justify-content:center;align-items:center;gap:4px;padding:6px 12px;font-size:13px;font-weight:400;line-height:20px;display:inline-flex}.TBrRZG_sessionLogButton:hover:not(:disabled){background:var(--dsw-alias-interactive-bg-hover)}.TBrRZG_sessionLogButton:disabled{color:var(--dsw-alias-label-dimmed);cursor:wait}.TBrRZG_sessionLogButton span,.TBrRZG_sessionLogButton svg{flex:none}.TBrRZG_sessionLogButton span{white-space:nowrap}";
173
173
  const tagId = "@monotykamary/dsh-session-log-export/HeaderAction.module.css";
174
174
  if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId) + "]") === null) {
175
175
  const tag = document.createElement("style");
@@ -178,7 +178,7 @@ window.__ModuleLoader__.load({
178
178
  tag.textContent = css;
179
179
  document.head.appendChild(tag);
180
180
  }
181
- var HeaderAction_module_css_default = { "sessionLogButton": "nL4_yW_sessionLogButton" };
181
+ var HeaderAction_module_css_default = { "sessionLogButton": "TBrRZG_sessionLogButton" };
182
182
  //#endregion
183
183
  //#region lib/types/client/HeaderAction.js
184
184
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@monotykamary/dsh-session-log-export",
3
3
  "description": "Web Session-log export command and shared download dialog",
4
- "version": "0.1.7",
4
+ "version": "0.1.9",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -35,34 +35,38 @@
35
35
  "lib/client.js",
36
36
  "lib/types/**/*.d.ts"
37
37
  ],
38
+ "scripts": {
39
+ "bundle": "tsdown",
40
+ "watch": "tsdown --watch"
41
+ },
38
42
  "license": "MIT",
39
43
  "peerDependencies": {
40
- "react": "^18.2.0",
41
44
  "@monotykamary/cordis": "^4.0.1",
42
- "@monotykamary/dsh-client-locale": "^0.1.7",
43
- "@monotykamary/dsh-client-ui-commands": "^0.1.7",
44
- "@monotykamary/dsh-client-ui-conversation": "^0.1.7",
45
- "@monotykamary/dsh-invariants": "^0.1.7",
46
- "@monotykamary/dsh-client-runtime": "^0.1.7",
47
- "@monotykamary/dsh-client-ui-primitives": "^0.1.7",
48
- "@monotykamary/dsh-client-ui-slots": "^0.1.7",
49
- "@monotykamary/dsh-commands": "^0.1.7"
45
+ "@monotykamary/dsh-client-locale": "^0.1.9",
46
+ "@monotykamary/dsh-client-runtime": "^0.1.9",
47
+ "@monotykamary/dsh-client-ui-commands": "^0.1.9",
48
+ "@monotykamary/dsh-client-ui-conversation": "^0.1.9",
49
+ "@monotykamary/dsh-commands": "^0.1.9",
50
+ "@monotykamary/dsh-invariants": "^0.1.9",
51
+ "@monotykamary/dsh-client-ui-primitives": "^0.1.9",
52
+ "@monotykamary/dsh-client-ui-slots": "^0.1.9",
53
+ "react": "^18.2.0"
50
54
  },
51
55
  "devDependencies": {
52
- "@types/react": "~18.3.1",
53
- "react": "^18.2.0",
54
56
  "@monotykamary/cordis": "^4.0.1",
55
- "@monotykamary/dsh-client-runtime": "^0.1.7",
56
- "@monotykamary/dsh-agent": "^0.1.7",
57
- "@monotykamary/dsh-client-locale": "^0.1.7",
58
- "@monotykamary/dsh-client-ui-conversation": "^0.1.7",
59
- "@monotykamary/dsh-client-ui-commands": "^0.1.7",
60
- "@monotykamary/dsh-client-ui-primitives": "^0.1.7",
61
- "@monotykamary/dsh-client-ui-slots": "^0.1.7",
62
- "@monotykamary/dsh-commands": "^0.1.7",
63
57
  "@monotykamary/cordis-plugin-loader": "^1.0.2",
64
- "@monotykamary/dsh-session": "^0.1.7",
65
- "@monotykamary/dsh-invariants": "^0.1.7"
58
+ "@monotykamary/dsh-agent": "^0.1.9",
59
+ "@monotykamary/dsh-client-locale": "^0.1.9",
60
+ "@monotykamary/dsh-client-runtime": "^0.1.9",
61
+ "@monotykamary/dsh-client-ui-commands": "^0.1.9",
62
+ "@monotykamary/dsh-client-ui-conversation": "^0.1.9",
63
+ "@monotykamary/dsh-client-ui-primitives": "^0.1.9",
64
+ "@monotykamary/dsh-client-ui-slots": "^0.1.9",
65
+ "@monotykamary/dsh-commands": "^0.1.9",
66
+ "@monotykamary/dsh-invariants": "^0.1.9",
67
+ "@monotykamary/dsh-session": "^0.1.9",
68
+ "@types/react": "~18.3.1",
69
+ "react": "^18.2.0"
66
70
  },
67
71
  "dsh": {
68
72
  "client": {
@@ -74,9 +78,5 @@
74
78
  ],
75
79
  "platform": "web"
76
80
  }
77
- },
78
- "scripts": {
79
- "bundle": "tsdown",
80
- "watch": "tsdown --watch"
81
81
  }
82
- }
82
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 DeepSeek
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.