@paperclipai/plugin-workspace-diff 2026.623.0-canary.0 → 2026.623.0-canary.10
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/contracts.d.ts +6 -6
- package/dist/ui/index.d.ts +2 -2
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui/index.js +89 -84
- package/dist/ui/index.js.map +2 -2
- package/package.json +2 -2
package/dist/contracts.d.ts
CHANGED
|
@@ -185,7 +185,7 @@ export declare const workspaceDiffFileSchema: z.ZodObject<{
|
|
|
185
185
|
path: string | null;
|
|
186
186
|
}>, "many">;
|
|
187
187
|
}, "strict", z.ZodTypeAny, {
|
|
188
|
-
status: "
|
|
188
|
+
status: "unknown" | "deleted" | "added" | "modified" | "renamed" | "copied" | "type_changed" | "untracked";
|
|
189
189
|
path: string;
|
|
190
190
|
warnings: {
|
|
191
191
|
code: "base_ref_missing" | "base_ref_invalid" | "binary_file" | "file_count_truncated" | "file_oversized" | "git_command_failed" | "missing_cwd" | "non_git_workspace" | "patch_truncated" | "path_filter_invalid" | "symlink_target_outside_workspace" | "workspace_path_invalid";
|
|
@@ -217,7 +217,7 @@ export declare const workspaceDiffFileSchema: z.ZodObject<{
|
|
|
217
217
|
truncated: boolean;
|
|
218
218
|
}[];
|
|
219
219
|
}, {
|
|
220
|
-
status: "
|
|
220
|
+
status: "unknown" | "deleted" | "added" | "modified" | "renamed" | "copied" | "type_changed" | "untracked";
|
|
221
221
|
path: string;
|
|
222
222
|
warnings: {
|
|
223
223
|
code: "base_ref_missing" | "base_ref_invalid" | "binary_file" | "file_count_truncated" | "file_oversized" | "git_command_failed" | "missing_cwd" | "non_git_workspace" | "patch_truncated" | "path_filter_invalid" | "symlink_target_outside_workspace" | "workspace_path_invalid";
|
|
@@ -364,7 +364,7 @@ export declare const workspaceDiffResponseSchema: z.ZodObject<{
|
|
|
364
364
|
path: string | null;
|
|
365
365
|
}>, "many">;
|
|
366
366
|
}, "strict", z.ZodTypeAny, {
|
|
367
|
-
status: "
|
|
367
|
+
status: "unknown" | "deleted" | "added" | "modified" | "renamed" | "copied" | "type_changed" | "untracked";
|
|
368
368
|
path: string;
|
|
369
369
|
warnings: {
|
|
370
370
|
code: "base_ref_missing" | "base_ref_invalid" | "binary_file" | "file_count_truncated" | "file_oversized" | "git_command_failed" | "missing_cwd" | "non_git_workspace" | "patch_truncated" | "path_filter_invalid" | "symlink_target_outside_workspace" | "workspace_path_invalid";
|
|
@@ -396,7 +396,7 @@ export declare const workspaceDiffResponseSchema: z.ZodObject<{
|
|
|
396
396
|
truncated: boolean;
|
|
397
397
|
}[];
|
|
398
398
|
}, {
|
|
399
|
-
status: "
|
|
399
|
+
status: "unknown" | "deleted" | "added" | "modified" | "renamed" | "copied" | "type_changed" | "untracked";
|
|
400
400
|
path: string;
|
|
401
401
|
warnings: {
|
|
402
402
|
code: "base_ref_missing" | "base_ref_invalid" | "binary_file" | "file_count_truncated" | "file_oversized" | "git_command_failed" | "missing_cwd" | "non_git_workspace" | "patch_truncated" | "path_filter_invalid" | "symlink_target_outside_workspace" | "workspace_path_invalid";
|
|
@@ -499,7 +499,7 @@ export declare const workspaceDiffResponseSchema: z.ZodObject<{
|
|
|
499
499
|
path: string | null;
|
|
500
500
|
}[];
|
|
501
501
|
files: {
|
|
502
|
-
status: "
|
|
502
|
+
status: "unknown" | "deleted" | "added" | "modified" | "renamed" | "copied" | "type_changed" | "untracked";
|
|
503
503
|
path: string;
|
|
504
504
|
warnings: {
|
|
505
505
|
code: "base_ref_missing" | "base_ref_invalid" | "binary_file" | "file_count_truncated" | "file_oversized" | "git_command_failed" | "missing_cwd" | "non_git_workspace" | "patch_truncated" | "path_filter_invalid" | "symlink_target_outside_workspace" | "workspace_path_invalid";
|
|
@@ -564,7 +564,7 @@ export declare const workspaceDiffResponseSchema: z.ZodObject<{
|
|
|
564
564
|
path: string | null;
|
|
565
565
|
}[];
|
|
566
566
|
files: {
|
|
567
|
-
status: "
|
|
567
|
+
status: "unknown" | "deleted" | "added" | "modified" | "renamed" | "copied" | "type_changed" | "untracked";
|
|
568
568
|
path: string;
|
|
569
569
|
warnings: {
|
|
570
570
|
code: "base_ref_missing" | "base_ref_invalid" | "binary_file" | "file_count_truncated" | "file_oversized" | "git_command_failed" | "missing_cwd" | "non_git_workspace" | "patch_truncated" | "path_filter_invalid" | "symlink_target_outside_workspace" | "workspace_path_invalid";
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -2,6 +2,6 @@ import type { PluginDetailTabProps } from "@paperclipai/plugin-sdk/ui";
|
|
|
2
2
|
export declare function ErrorState({ message, onRetry, }: {
|
|
3
3
|
message: string;
|
|
4
4
|
onRetry: () => void;
|
|
5
|
-
}): import("react
|
|
6
|
-
export declare function ChangesTab({ context }: PluginDetailTabProps): import("react
|
|
5
|
+
}): import("react").JSX.Element;
|
|
6
|
+
export declare function ChangesTab({ context }: PluginDetailTabProps): import("react").JSX.Element;
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/ui/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ui/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAgSvE,wBAAgB,UAAU,CAAC,EACzB,OAAO,EACP,OAAO,GACR,EAAE;IACD,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ui/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAgSvE,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"}
|