@quantiya/codevibe-codex-plugin 2.0.16 → 2.0.18

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,4 +1,4 @@
1
- export { resumeOrCreateSession, prepareSessionEncryption, PlannerProxyServiceKeyMissingError, SessionEncryptionPreparationError, } from './session-resume';
1
+ export { resumeOrCreateSession, prepareSessionEncryption, PlannerProxyServiceKeyMissingError, SessionEncryptionPreparationError, RetiredSessionCannotReactivateError, isRetiredSessionCannotReactivateError, } from './session-resume';
2
2
  export type { ResumeOrCreateSessionInput, ResumeOrCreateSessionResult, SessionEncryptionPreparationFailureKind, } from './session-resume';
3
3
  export { createSessionWithPendingLedger, replayPendingSessionCreateForIntent, } from './pending-session-create';
4
4
  export type { PendingSessionCreateIntent } from './pending-session-create';
@@ -38,6 +38,18 @@ export interface ResumeOrCreateSessionResult {
38
38
  */
39
39
  sessionKeyGen: string | null;
40
40
  }
41
+ /**
42
+ * The backend permanently fenced the requested session generation. Continuing
43
+ * with its cached key would let callers subscribe, heartbeat, and emit against
44
+ * a row that can never become ACTIVE again.
45
+ */
46
+ export declare class RetiredSessionCannotReactivateError extends Error {
47
+ readonly code = "RETIRED_SESSION_CANNOT_REACTIVATE";
48
+ readonly sessionId: string;
49
+ readonly cause: unknown;
50
+ constructor(sessionId: string, cause: unknown);
51
+ }
52
+ export declare function isRetiredSessionCannotReactivateError(error: unknown): error is RetiredSessionCannotReactivateError;
41
53
  /**
42
54
  * CP-1.b IMPL r5 H-2 — Typed error thrown by `prepareSessionEncryption()`
43
55
  * when `listServiceDeviceKeys()` returns an empty array across all
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-core",
3
- "version": "2.0.10",
3
+ "version": "2.0.13",
4
4
  "description": "Core library for CodeVibe plugins - shared keychain, crypto, AppSync, and auth functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-codex-plugin",
3
- "version": "2.0.16",
3
+ "version": "2.0.18",
4
4
  "description": "Control OpenAI Codex CLI 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": {
@@ -47,7 +47,7 @@
47
47
  "node": ">=22.0.0"
48
48
  },
49
49
  "dependencies": {
50
- "@quantiya/codevibe-core": "2.0.10",
50
+ "@quantiya/codevibe-core": "2.0.13",
51
51
  "@quantiya/quorum-core": "^1.0.1",
52
52
  "chokidar": "^4.0.0",
53
53
  "dotenv": "^16.6.1",