@linkshell/protocol 0.1.2 → 0.2.0
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/dist/index.d.ts +158 -0
- package/dist/index.js +40 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -80,18 +80,21 @@ export declare const sessionConnectPayloadSchema: z.ZodObject<{
|
|
|
80
80
|
provider: z.ZodOptional<z.ZodEnum<["claude", "codex", "custom"]>>;
|
|
81
81
|
protocolVersion: z.ZodOptional<z.ZodNumber>;
|
|
82
82
|
hostname: z.ZodOptional<z.ZodString>;
|
|
83
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
83
84
|
}, "strip", z.ZodTypeAny, {
|
|
84
85
|
role: "host" | "client";
|
|
85
86
|
clientName: string;
|
|
86
87
|
provider?: "custom" | "claude" | "codex" | undefined;
|
|
87
88
|
protocolVersion?: number | undefined;
|
|
88
89
|
hostname?: string | undefined;
|
|
90
|
+
platform?: string | undefined;
|
|
89
91
|
}, {
|
|
90
92
|
role: "host" | "client";
|
|
91
93
|
clientName: string;
|
|
92
94
|
provider?: "custom" | "claude" | "codex" | undefined;
|
|
93
95
|
protocolVersion?: number | undefined;
|
|
94
96
|
hostname?: string | undefined;
|
|
97
|
+
platform?: string | undefined;
|
|
95
98
|
}>;
|
|
96
99
|
export declare const terminalExitPayloadSchema: z.ZodObject<{
|
|
97
100
|
exitCode: z.ZodNullable<z.ZodNumber>;
|
|
@@ -190,6 +193,82 @@ export declare const sessionHostDisconnectedPayloadSchema: z.ZodObject<{
|
|
|
190
193
|
reason?: string | undefined;
|
|
191
194
|
}>;
|
|
192
195
|
export declare const sessionHostReconnectedPayloadSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
196
|
+
export declare const screenStartPayloadSchema: z.ZodObject<{
|
|
197
|
+
fps: z.ZodDefault<z.ZodNumber>;
|
|
198
|
+
quality: z.ZodDefault<z.ZodNumber>;
|
|
199
|
+
scale: z.ZodDefault<z.ZodNumber>;
|
|
200
|
+
}, "strip", z.ZodTypeAny, {
|
|
201
|
+
fps: number;
|
|
202
|
+
quality: number;
|
|
203
|
+
scale: number;
|
|
204
|
+
}, {
|
|
205
|
+
fps?: number | undefined;
|
|
206
|
+
quality?: number | undefined;
|
|
207
|
+
scale?: number | undefined;
|
|
208
|
+
}>;
|
|
209
|
+
export declare const screenStopPayloadSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
210
|
+
export declare const screenFramePayloadSchema: z.ZodObject<{
|
|
211
|
+
data: z.ZodString;
|
|
212
|
+
width: z.ZodNumber;
|
|
213
|
+
height: z.ZodNumber;
|
|
214
|
+
frameId: z.ZodNumber;
|
|
215
|
+
chunkIndex: z.ZodDefault<z.ZodNumber>;
|
|
216
|
+
chunkTotal: z.ZodDefault<z.ZodNumber>;
|
|
217
|
+
}, "strip", z.ZodTypeAny, {
|
|
218
|
+
data: string;
|
|
219
|
+
width: number;
|
|
220
|
+
height: number;
|
|
221
|
+
frameId: number;
|
|
222
|
+
chunkIndex: number;
|
|
223
|
+
chunkTotal: number;
|
|
224
|
+
}, {
|
|
225
|
+
data: string;
|
|
226
|
+
width: number;
|
|
227
|
+
height: number;
|
|
228
|
+
frameId: number;
|
|
229
|
+
chunkIndex?: number | undefined;
|
|
230
|
+
chunkTotal?: number | undefined;
|
|
231
|
+
}>;
|
|
232
|
+
export declare const screenStatusPayloadSchema: z.ZodObject<{
|
|
233
|
+
active: z.ZodBoolean;
|
|
234
|
+
mode: z.ZodDefault<z.ZodEnum<["webrtc", "fallback", "off"]>>;
|
|
235
|
+
error: z.ZodOptional<z.ZodString>;
|
|
236
|
+
}, "strip", z.ZodTypeAny, {
|
|
237
|
+
active: boolean;
|
|
238
|
+
mode: "webrtc" | "fallback" | "off";
|
|
239
|
+
error?: string | undefined;
|
|
240
|
+
}, {
|
|
241
|
+
active: boolean;
|
|
242
|
+
mode?: "webrtc" | "fallback" | "off" | undefined;
|
|
243
|
+
error?: string | undefined;
|
|
244
|
+
}>;
|
|
245
|
+
export declare const screenOfferPayloadSchema: z.ZodObject<{
|
|
246
|
+
sdp: z.ZodString;
|
|
247
|
+
}, "strip", z.ZodTypeAny, {
|
|
248
|
+
sdp: string;
|
|
249
|
+
}, {
|
|
250
|
+
sdp: string;
|
|
251
|
+
}>;
|
|
252
|
+
export declare const screenAnswerPayloadSchema: z.ZodObject<{
|
|
253
|
+
sdp: z.ZodString;
|
|
254
|
+
}, "strip", z.ZodTypeAny, {
|
|
255
|
+
sdp: string;
|
|
256
|
+
}, {
|
|
257
|
+
sdp: string;
|
|
258
|
+
}>;
|
|
259
|
+
export declare const screenIcePayloadSchema: z.ZodObject<{
|
|
260
|
+
candidate: z.ZodString;
|
|
261
|
+
sdpMid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
262
|
+
sdpMLineIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
263
|
+
}, "strip", z.ZodTypeAny, {
|
|
264
|
+
candidate: string;
|
|
265
|
+
sdpMid?: string | null | undefined;
|
|
266
|
+
sdpMLineIndex?: number | null | undefined;
|
|
267
|
+
}, {
|
|
268
|
+
candidate: string;
|
|
269
|
+
sdpMid?: string | null | undefined;
|
|
270
|
+
sdpMLineIndex?: number | null | undefined;
|
|
271
|
+
}>;
|
|
193
272
|
export declare const errorPayloadSchema: z.ZodObject<{
|
|
194
273
|
code: z.ZodString;
|
|
195
274
|
message: z.ZodString;
|
|
@@ -207,18 +286,21 @@ export declare const protocolMessageSchemas: {
|
|
|
207
286
|
provider: z.ZodOptional<z.ZodEnum<["claude", "codex", "custom"]>>;
|
|
208
287
|
protocolVersion: z.ZodOptional<z.ZodNumber>;
|
|
209
288
|
hostname: z.ZodOptional<z.ZodString>;
|
|
289
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
210
290
|
}, "strip", z.ZodTypeAny, {
|
|
211
291
|
role: "host" | "client";
|
|
212
292
|
clientName: string;
|
|
213
293
|
provider?: "custom" | "claude" | "codex" | undefined;
|
|
214
294
|
protocolVersion?: number | undefined;
|
|
215
295
|
hostname?: string | undefined;
|
|
296
|
+
platform?: string | undefined;
|
|
216
297
|
}, {
|
|
217
298
|
role: "host" | "client";
|
|
218
299
|
clientName: string;
|
|
219
300
|
provider?: "custom" | "claude" | "codex" | undefined;
|
|
220
301
|
protocolVersion?: number | undefined;
|
|
221
302
|
hostname?: string | undefined;
|
|
303
|
+
platform?: string | undefined;
|
|
222
304
|
}>;
|
|
223
305
|
readonly "session.ack": z.ZodObject<{
|
|
224
306
|
seq: z.ZodNumber;
|
|
@@ -363,6 +445,82 @@ export declare const protocolMessageSchemas: {
|
|
|
363
445
|
reason?: string | undefined;
|
|
364
446
|
}>;
|
|
365
447
|
readonly "session.host_reconnected": z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
448
|
+
readonly "screen.start": z.ZodObject<{
|
|
449
|
+
fps: z.ZodDefault<z.ZodNumber>;
|
|
450
|
+
quality: z.ZodDefault<z.ZodNumber>;
|
|
451
|
+
scale: z.ZodDefault<z.ZodNumber>;
|
|
452
|
+
}, "strip", z.ZodTypeAny, {
|
|
453
|
+
fps: number;
|
|
454
|
+
quality: number;
|
|
455
|
+
scale: number;
|
|
456
|
+
}, {
|
|
457
|
+
fps?: number | undefined;
|
|
458
|
+
quality?: number | undefined;
|
|
459
|
+
scale?: number | undefined;
|
|
460
|
+
}>;
|
|
461
|
+
readonly "screen.stop": z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
462
|
+
readonly "screen.frame": z.ZodObject<{
|
|
463
|
+
data: z.ZodString;
|
|
464
|
+
width: z.ZodNumber;
|
|
465
|
+
height: z.ZodNumber;
|
|
466
|
+
frameId: z.ZodNumber;
|
|
467
|
+
chunkIndex: z.ZodDefault<z.ZodNumber>;
|
|
468
|
+
chunkTotal: z.ZodDefault<z.ZodNumber>;
|
|
469
|
+
}, "strip", z.ZodTypeAny, {
|
|
470
|
+
data: string;
|
|
471
|
+
width: number;
|
|
472
|
+
height: number;
|
|
473
|
+
frameId: number;
|
|
474
|
+
chunkIndex: number;
|
|
475
|
+
chunkTotal: number;
|
|
476
|
+
}, {
|
|
477
|
+
data: string;
|
|
478
|
+
width: number;
|
|
479
|
+
height: number;
|
|
480
|
+
frameId: number;
|
|
481
|
+
chunkIndex?: number | undefined;
|
|
482
|
+
chunkTotal?: number | undefined;
|
|
483
|
+
}>;
|
|
484
|
+
readonly "screen.status": z.ZodObject<{
|
|
485
|
+
active: z.ZodBoolean;
|
|
486
|
+
mode: z.ZodDefault<z.ZodEnum<["webrtc", "fallback", "off"]>>;
|
|
487
|
+
error: z.ZodOptional<z.ZodString>;
|
|
488
|
+
}, "strip", z.ZodTypeAny, {
|
|
489
|
+
active: boolean;
|
|
490
|
+
mode: "webrtc" | "fallback" | "off";
|
|
491
|
+
error?: string | undefined;
|
|
492
|
+
}, {
|
|
493
|
+
active: boolean;
|
|
494
|
+
mode?: "webrtc" | "fallback" | "off" | undefined;
|
|
495
|
+
error?: string | undefined;
|
|
496
|
+
}>;
|
|
497
|
+
readonly "screen.offer": z.ZodObject<{
|
|
498
|
+
sdp: z.ZodString;
|
|
499
|
+
}, "strip", z.ZodTypeAny, {
|
|
500
|
+
sdp: string;
|
|
501
|
+
}, {
|
|
502
|
+
sdp: string;
|
|
503
|
+
}>;
|
|
504
|
+
readonly "screen.answer": z.ZodObject<{
|
|
505
|
+
sdp: z.ZodString;
|
|
506
|
+
}, "strip", z.ZodTypeAny, {
|
|
507
|
+
sdp: string;
|
|
508
|
+
}, {
|
|
509
|
+
sdp: string;
|
|
510
|
+
}>;
|
|
511
|
+
readonly "screen.ice": z.ZodObject<{
|
|
512
|
+
candidate: z.ZodString;
|
|
513
|
+
sdpMid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
514
|
+
sdpMLineIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
515
|
+
}, "strip", z.ZodTypeAny, {
|
|
516
|
+
candidate: string;
|
|
517
|
+
sdpMid?: string | null | undefined;
|
|
518
|
+
sdpMLineIndex?: number | null | undefined;
|
|
519
|
+
}, {
|
|
520
|
+
candidate: string;
|
|
521
|
+
sdpMid?: string | null | undefined;
|
|
522
|
+
sdpMLineIndex?: number | null | undefined;
|
|
523
|
+
}>;
|
|
366
524
|
};
|
|
367
525
|
export type ProtocolMessageType = keyof typeof protocolMessageSchemas;
|
|
368
526
|
export declare function createEnvelope<T>(input: {
|
package/dist/index.js
CHANGED
|
@@ -54,6 +54,7 @@ export const sessionConnectPayloadSchema = z.object({
|
|
|
54
54
|
provider: z.enum(["claude", "codex", "custom"]).optional(),
|
|
55
55
|
protocolVersion: z.number().int().optional(),
|
|
56
56
|
hostname: z.string().optional(),
|
|
57
|
+
platform: z.string().optional(),
|
|
57
58
|
});
|
|
58
59
|
export const terminalExitPayloadSchema = z.object({
|
|
59
60
|
exitCode: z.number().int().nullable(),
|
|
@@ -63,7 +64,7 @@ export const sessionAckPayloadSchema = z.object({
|
|
|
63
64
|
seq: z.number().int().nonnegative(),
|
|
64
65
|
});
|
|
65
66
|
export const sessionResumePayloadSchema = z.object({
|
|
66
|
-
lastAckedSeq: z.number().int().
|
|
67
|
+
lastAckedSeq: z.number().int().min(-1),
|
|
67
68
|
});
|
|
68
69
|
export const sessionHeartbeatPayloadSchema = z.object({
|
|
69
70
|
ts: z.number(), // unix ms
|
|
@@ -96,6 +97,37 @@ export const sessionHostDisconnectedPayloadSchema = z.object({
|
|
|
96
97
|
reason: z.string().optional(),
|
|
97
98
|
});
|
|
98
99
|
export const sessionHostReconnectedPayloadSchema = z.object({});
|
|
100
|
+
// ── Screen sharing payloads ─────────────────────────────────────────
|
|
101
|
+
export const screenStartPayloadSchema = z.object({
|
|
102
|
+
fps: z.number().int().min(1).max(30).default(5),
|
|
103
|
+
quality: z.number().int().min(10).max(100).default(60),
|
|
104
|
+
scale: z.number().min(0.1).max(1).default(0.5),
|
|
105
|
+
});
|
|
106
|
+
export const screenStopPayloadSchema = z.object({});
|
|
107
|
+
export const screenFramePayloadSchema = z.object({
|
|
108
|
+
data: z.string(), // base64 JPEG
|
|
109
|
+
width: z.number().int(),
|
|
110
|
+
height: z.number().int(),
|
|
111
|
+
frameId: z.number().int(),
|
|
112
|
+
chunkIndex: z.number().int().default(0),
|
|
113
|
+
chunkTotal: z.number().int().default(1),
|
|
114
|
+
});
|
|
115
|
+
export const screenStatusPayloadSchema = z.object({
|
|
116
|
+
active: z.boolean(),
|
|
117
|
+
mode: z.enum(["webrtc", "fallback", "off"]).default("off"),
|
|
118
|
+
error: z.string().optional(),
|
|
119
|
+
});
|
|
120
|
+
export const screenOfferPayloadSchema = z.object({
|
|
121
|
+
sdp: z.string(),
|
|
122
|
+
});
|
|
123
|
+
export const screenAnswerPayloadSchema = z.object({
|
|
124
|
+
sdp: z.string(),
|
|
125
|
+
});
|
|
126
|
+
export const screenIcePayloadSchema = z.object({
|
|
127
|
+
candidate: z.string(),
|
|
128
|
+
sdpMid: z.string().nullable().optional(),
|
|
129
|
+
sdpMLineIndex: z.number().nullable().optional(),
|
|
130
|
+
});
|
|
99
131
|
export const errorPayloadSchema = z.object({
|
|
100
132
|
code: z.string().min(1),
|
|
101
133
|
message: z.string().min(1),
|
|
@@ -120,6 +152,13 @@ export const protocolMessageSchemas = {
|
|
|
120
152
|
"control.release": controlReleasePayloadSchema,
|
|
121
153
|
"session.host_disconnected": sessionHostDisconnectedPayloadSchema,
|
|
122
154
|
"session.host_reconnected": sessionHostReconnectedPayloadSchema,
|
|
155
|
+
"screen.start": screenStartPayloadSchema,
|
|
156
|
+
"screen.stop": screenStopPayloadSchema,
|
|
157
|
+
"screen.frame": screenFramePayloadSchema,
|
|
158
|
+
"screen.status": screenStatusPayloadSchema,
|
|
159
|
+
"screen.offer": screenOfferPayloadSchema,
|
|
160
|
+
"screen.answer": screenAnswerPayloadSchema,
|
|
161
|
+
"screen.ice": screenIcePayloadSchema,
|
|
123
162
|
};
|
|
124
163
|
// ── UUID helper (works in Node, Web, and Expo) ─────────────────────
|
|
125
164
|
function generateId() {
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|