@quantiya/codevibe-claude-plugin 2.0.25 → 2.0.26

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.
Files changed (23) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/node_modules/@iarna/toml/CHANGELOG.md +278 -0
  3. package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +2 -1
  4. package/node_modules/@quantiya/codevibe-core/dist/index.js +621 -430
  5. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-browser.d.ts +42 -2
  6. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-runner.d.ts +13 -1
  7. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +8 -0
  8. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +649 -87
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/flag-command.d.ts +4 -1
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +16 -2
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +2 -0
  12. package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +32 -32
  13. package/node_modules/@quantiya/codevibe-core/package.json +1 -1
  14. package/node_modules/color-convert/CHANGELOG.md +54 -0
  15. package/node_modules/cross-spawn/node_modules/which/CHANGELOG.md +166 -0
  16. package/node_modules/deep-extend/CHANGELOG.md +46 -0
  17. package/node_modules/es-toolkit/CHANGELOG.md +1018 -0
  18. package/node_modules/es-toolkit/src/compat/_internal/Equals.d.ts +1 -0
  19. package/node_modules/es-toolkit/src/compat/_internal/IsWritable.d.ts +3 -0
  20. package/node_modules/es-toolkit/src/compat/_internal/MutableList.d.ts +4 -0
  21. package/node_modules/es-toolkit/src/compat/_internal/RejectReadonly.d.ts +4 -0
  22. package/node_modules/keytar/build/Release/keytar.node +0 -0
  23. package/package.json +2 -2
@@ -0,0 +1 @@
1
+ export type Equals<T, U> = (<X>() => X extends T ? 1 : 2) extends <X>() => X extends U ? 1 : 2 ? true : false;
@@ -0,0 +1,3 @@
1
+ import type { Equals } from './Equals.d.ts';
2
+
3
+ export type IsWritable<T> = Equals<{ [K in keyof T]: T[K] }, { -readonly [K in keyof T]: T[K] }>;
@@ -0,0 +1,4 @@
1
+ export interface MutableList<T> {
2
+ length: number;
3
+ [k: number]: T;
4
+ }
@@ -0,0 +1,4 @@
1
+ import { IsWritable } from './IsWritable.d.ts';
2
+ import { MutableList } from './MutableList.d.ts';
3
+
4
+ export type RejectReadonly<T extends MutableList<unknown>> = IsWritable<T> extends true ? T : never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-claude-plugin",
3
- "version": "2.0.25",
3
+ "version": "2.0.26",
4
4
  "description": "Control Claude Code from your iPhone and Android — real-time sync, approve file edits, send prompts by voice. Part of CodeVibe.",
5
5
  "main": "dist/server.js",
6
6
  "codevibe": {
@@ -48,7 +48,7 @@
48
48
  "node": ">=22.0.0"
49
49
  },
50
50
  "dependencies": {
51
- "@quantiya/codevibe-core": "2.0.21",
51
+ "@quantiya/codevibe-core": "^2.0.22",
52
52
  "@quantiya/quorum-core": "^1.0.1",
53
53
  "dotenv": "^16.6.1",
54
54
  "express": "^5.1.0",