@lzdi/pty-remote-protocol 0.1.9 → 0.1.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lzdi/pty-remote-protocol",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "repository": {
@@ -10,7 +10,7 @@ export const PROVIDER_LABELS: Record<ProviderId, string> = {
10
10
 
11
11
  export const BUILTIN_SLASH_COMMANDS: Record<ProviderId, string[]> = {
12
12
  claude: ['clear', 'compact', 'context', 'cost', 'doctor', 'help', 'plan', 'stats', 'status'],
13
- codex: ['review', 'new', 'compat', 'undo', 'diff', 'status']
13
+ codex: ['review', 'new', 'compat', 'undo', 'diff', 'status', 'permissions']
14
14
  };
15
15
 
16
16
  export interface TextChatMessageBlock {
@@ -59,6 +59,7 @@ export interface ChatMessage {
59
59
  meta?: ChatMessageMeta;
60
60
  status: MessageStatus;
61
61
  createdAt: string;
62
+ sequence?: number;
62
63
  }
63
64
 
64
65
  export interface RuntimeSnapshot {