@quantiya/codevibe-claude-plugin 2.0.22 → 2.0.23

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevibe-claude",
3
- "version": "2.0.22",
3
+ "version": "2.0.23",
4
4
  "description": "Sync Claude Code sessions with iOS mobile app via AWS backend. Control Claude Code from your phone with real-time bidirectional synchronization.",
5
5
  "author": {
6
6
  "name": "CodeVibe Team"
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Closed, content-free projections for durable diagnostics.
3
+ *
4
+ * Provider output and Error objects may carry prompts, source, paths, command
5
+ * lines, credentials, or other user-controlled bytes. Durable logs receive
6
+ * only counts and closed classifications from this module.
7
+ */
8
+ /** Shape-only projection of arbitrary subprocess/provider output. */
9
+ export declare function outputShapeOnly(raw: string | undefined): Record<string, unknown>;
10
+ /** Shape-only projection for errors; no name, code, message, stack, or path. */
11
+ export declare function errorShapeOnly(error: unknown): Record<string, unknown>;