@lzdi/pty-remote-protocol 0.1.6 → 0.1.8

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/protocol.ts +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lzdi/pty-remote-protocol",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "repository": {
package/src/protocol.ts CHANGED
@@ -210,6 +210,12 @@ export interface TerminalResizePayload {
210
210
  rows: number;
211
211
  }
212
212
 
213
+ export interface TerminalInputPayload {
214
+ targetCliId: string | null;
215
+ targetProviderId: ProviderId | null;
216
+ input: string;
217
+ }
218
+
213
219
  export interface TerminalFrameSyncResultPayload {
214
220
  ok: boolean;
215
221
  error?: string;