@tickernelz/paperclip-pro-plugin-workspace-diff 2026.925.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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../src/manifest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AAKtF,QAAA,MAAM,QAAQ,EAAE,yBA6Bf,CAAC;eAEa,QAAQ"}
@@ -0,0 +1,34 @@
1
+ const PLUGIN_ID = "paperclip.workspace-diff";
2
+ const CHANGES_TAB_SLOT_ID = "workspace-changes-tab";
3
+ const manifest = {
4
+ id: PLUGIN_ID,
5
+ apiVersion: 1,
6
+ version: "0.1.0",
7
+ displayName: "Workspace Changes",
8
+ description: "Adds a Changes tab to execution and project workspaces using plugin-local Git diff computation and @pierre/diffs.",
9
+ author: "Paperclip",
10
+ categories: ["workspace", "ui"],
11
+ capabilities: [
12
+ "ui.detailTab.register",
13
+ "execution.workspaces.read",
14
+ "project.workspaces.read",
15
+ ],
16
+ entrypoints: {
17
+ worker: "./dist/worker.js",
18
+ ui: "./dist/ui",
19
+ },
20
+ ui: {
21
+ slots: [
22
+ {
23
+ type: "detailTab",
24
+ id: CHANGES_TAB_SLOT_ID,
25
+ displayName: "Changes",
26
+ exportName: "ChangesTab",
27
+ entityTypes: ["execution_workspace", "project_workspace"],
28
+ order: 25,
29
+ },
30
+ ],
31
+ },
32
+ };
33
+ export default manifest;
34
+ //# sourceMappingURL=manifest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manifest.js","sourceRoot":"","sources":["../src/manifest.ts"],"names":[],"mappings":"AAEA,MAAM,SAAS,GAAG,0BAA0B,CAAC;AAC7C,MAAM,mBAAmB,GAAG,uBAAuB,CAAC;AAEpD,MAAM,QAAQ,GAA8B;IAC1C,EAAE,EAAE,SAAS;IACb,UAAU,EAAE,CAAC;IACb,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,mBAAmB;IAChC,WAAW,EAAE,mHAAmH;IAChI,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,WAAW,EAAE,IAAI,CAAC;IAC/B,YAAY,EAAE;QACZ,uBAAuB;QACvB,2BAA2B;QAC3B,yBAAyB;KAC1B;IACD,WAAW,EAAE;QACX,MAAM,EAAE,kBAAkB;QAC1B,EAAE,EAAE,WAAW;KAChB;IACD,EAAE,EAAE;QACF,KAAK,EAAE;YACL;gBACE,IAAI,EAAE,WAAW;gBACjB,EAAE,EAAE,mBAAmB;gBACvB,WAAW,EAAE,SAAS;gBACtB,UAAU,EAAE,YAAY;gBACxB,WAAW,EAAE,CAAC,qBAAqB,EAAE,mBAAmB,CAAC;gBACzD,KAAK,EAAE,EAAE;aACV;SACF;KACF;CACF,CAAC;AAEF,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { PluginDetailTabProps } from "@tickernelz/paperclip-pro-plugin-sdk/ui";
2
+ export declare function ErrorState({ message, onRetry, }: {
3
+ message: string;
4
+ onRetry: () => void;
5
+ }): import("react").JSX.Element;
6
+ export declare function ChangesTab({ context }: PluginDetailTabProps): import("react").JSX.Element;
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ui/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAC;AAmSpF,wBAAgB,UAAU,CAAC,EACzB,OAAO,EACP,OAAO,GACR,EAAE;IACD,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB,+BA6BA;AAuFD,wBAAgB,UAAU,CAAC,EAAE,OAAO,EAAE,EAAE,oBAAoB,+BA6Z3D"}