tandem-editor 0.7.0 → 0.8.0
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-plugin/plugin.json +9 -2
- package/CHANGELOG.md +43 -329
- package/README.md +36 -19
- package/dist/channel/index.js +3 -1
- package/dist/channel/index.js.map +1 -1
- package/dist/cli/index.js +442 -40
- package/dist/cli/index.js.map +1 -1
- package/dist/client/assets/CoworkSettings-CXODT6KV.js +1 -0
- package/dist/client/assets/core-DhEqZVGG.js +1 -0
- package/dist/client/assets/index-C6rbXHNq.css +1 -0
- package/dist/client/assets/index-q_8NVSM3.js +228 -0
- package/dist/client/assets/webview-BQBJMQvJ.js +1 -0
- package/dist/client/index.html +47 -1
- package/dist/monitor/index.js +33 -32
- package/dist/monitor/index.js.map +1 -1
- package/dist/server/index.js +3615 -3102
- package/dist/server/index.js.map +1 -1
- package/package.json +6 -7
- package/skills/tandem/SKILL.md +2 -2
- package/dist/client/assets/index-B1Cd5UGT.js +0 -349
- package/dist/client/assets/webview-0tvvWtyc.js +0 -1
package/dist/channel/index.js
CHANGED
|
@@ -17945,7 +17945,7 @@ async function authFetch(url, init) {
|
|
|
17945
17945
|
return fetch(url, init);
|
|
17946
17946
|
}
|
|
17947
17947
|
|
|
17948
|
-
// src/
|
|
17948
|
+
// src/shared/events/types.ts
|
|
17949
17949
|
var VALID_EVENT_TYPES = /* @__PURE__ */ new Set([
|
|
17950
17950
|
"annotation:created",
|
|
17951
17951
|
"annotation:accepted",
|
|
@@ -18005,6 +18005,7 @@ function formatEventContent(event) {
|
|
|
18005
18005
|
}
|
|
18006
18006
|
default: {
|
|
18007
18007
|
const _exhaustive = event;
|
|
18008
|
+
void _exhaustive;
|
|
18008
18009
|
return `Unknown event${doc}`;
|
|
18009
18010
|
}
|
|
18010
18011
|
}
|
|
@@ -18034,6 +18035,7 @@ function formatEventMeta(event) {
|
|
|
18034
18035
|
break;
|
|
18035
18036
|
default: {
|
|
18036
18037
|
const _exhaustive = event;
|
|
18038
|
+
void _exhaustive;
|
|
18037
18039
|
break;
|
|
18038
18040
|
}
|
|
18039
18041
|
}
|