@kmmao/happy-wire 0.2.11 → 0.3.1
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.cjs +47 -0
- package/dist/index.d.cts +86 -2
- package/dist/index.d.mts +86 -2
- package/dist/index.mjs +44 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -310,6 +310,49 @@ const ApiUpdateMachineStateSchema = UpdateMachineBodySchema;
|
|
|
310
310
|
const UpdateBodySchema = UpdateNewMessageBodySchema;
|
|
311
311
|
const UpdateSchema = CoreUpdateContainerSchema;
|
|
312
312
|
|
|
313
|
+
const MachineMetadataSchema = z__namespace.object({
|
|
314
|
+
host: z__namespace.string(),
|
|
315
|
+
platform: z__namespace.string(),
|
|
316
|
+
happyCliVersion: z__namespace.string(),
|
|
317
|
+
homeDir: z__namespace.string(),
|
|
318
|
+
happyHomeDir: z__namespace.string(),
|
|
319
|
+
happyLibDir: z__namespace.string()
|
|
320
|
+
});
|
|
321
|
+
const TailscaleServeEntrySchema = z__namespace.object({
|
|
322
|
+
port: z__namespace.number(),
|
|
323
|
+
path: z__namespace.string().optional(),
|
|
324
|
+
protocol: z__namespace.string(),
|
|
325
|
+
target: z__namespace.string(),
|
|
326
|
+
funnel: z__namespace.boolean(),
|
|
327
|
+
hostname: z__namespace.string()
|
|
328
|
+
});
|
|
329
|
+
const TailscaleInfoSchema = z__namespace.object({
|
|
330
|
+
status: z__namespace.enum(["connected", "disconnected", "not-installed"]),
|
|
331
|
+
ipv4: z__namespace.string().optional(),
|
|
332
|
+
ipv6: z__namespace.string().optional(),
|
|
333
|
+
hostname: z__namespace.string().optional(),
|
|
334
|
+
tailnetName: z__namespace.string().optional(),
|
|
335
|
+
version: z__namespace.string().optional(),
|
|
336
|
+
serves: z__namespace.array(TailscaleServeEntrySchema).optional()
|
|
337
|
+
});
|
|
338
|
+
const DaemonStateSchema = z__namespace.object({
|
|
339
|
+
status: z__namespace.union([
|
|
340
|
+
z__namespace.enum(["running", "shutting-down"]),
|
|
341
|
+
z__namespace.string()
|
|
342
|
+
// Forward compatibility
|
|
343
|
+
]),
|
|
344
|
+
pid: z__namespace.number().optional(),
|
|
345
|
+
httpPort: z__namespace.number().optional(),
|
|
346
|
+
startedAt: z__namespace.number().optional(),
|
|
347
|
+
shutdownRequestedAt: z__namespace.number().optional(),
|
|
348
|
+
shutdownSource: z__namespace.union([
|
|
349
|
+
z__namespace.enum(["mobile-app", "cli", "os-signal", "unknown"]),
|
|
350
|
+
z__namespace.string()
|
|
351
|
+
// Forward compatibility
|
|
352
|
+
]).optional(),
|
|
353
|
+
tailscale: TailscaleInfoSchema.optional()
|
|
354
|
+
});
|
|
355
|
+
|
|
313
356
|
exports.AgentMessageSchema = AgentMessageSchema;
|
|
314
357
|
exports.ApiMessageSchema = ApiMessageSchema;
|
|
315
358
|
exports.ApiUpdateMachineStateSchema = ApiUpdateMachineStateSchema;
|
|
@@ -317,12 +360,16 @@ exports.ApiUpdateNewMessageSchema = ApiUpdateNewMessageSchema;
|
|
|
317
360
|
exports.ApiUpdateSessionStateSchema = ApiUpdateSessionStateSchema;
|
|
318
361
|
exports.CoreUpdateBodySchema = CoreUpdateBodySchema;
|
|
319
362
|
exports.CoreUpdateContainerSchema = CoreUpdateContainerSchema;
|
|
363
|
+
exports.DaemonStateSchema = DaemonStateSchema;
|
|
320
364
|
exports.LegacyMessageContentSchema = LegacyMessageContentSchema;
|
|
365
|
+
exports.MachineMetadataSchema = MachineMetadataSchema;
|
|
321
366
|
exports.MessageContentSchema = MessageContentSchema;
|
|
322
367
|
exports.MessageMetaSchema = MessageMetaSchema;
|
|
323
368
|
exports.SessionMessageContentSchema = SessionMessageContentSchema;
|
|
324
369
|
exports.SessionMessageSchema = SessionMessageSchema;
|
|
325
370
|
exports.SessionProtocolMessageSchema = SessionProtocolMessageSchema;
|
|
371
|
+
exports.TailscaleInfoSchema = TailscaleInfoSchema;
|
|
372
|
+
exports.TailscaleServeEntrySchema = TailscaleServeEntrySchema;
|
|
326
373
|
exports.UpdateBodySchema = UpdateBodySchema;
|
|
327
374
|
exports.UpdateMachineBodySchema = UpdateMachineBodySchema;
|
|
328
375
|
exports.UpdateNewMessageBodySchema = UpdateNewMessageBodySchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -1175,5 +1175,89 @@ type CreateEnvelopeOptions = {
|
|
|
1175
1175
|
};
|
|
1176
1176
|
declare function createEnvelope(role: SessionRole, ev: SessionEvent, opts?: CreateEnvelopeOptions): SessionEnvelope;
|
|
1177
1177
|
|
|
1178
|
-
|
|
1179
|
-
|
|
1178
|
+
/**
|
|
1179
|
+
* Machine-related Zod schemas shared across CLI, Agent, and Server.
|
|
1180
|
+
*
|
|
1181
|
+
* Single source of truth for MachineMetadata, DaemonState,
|
|
1182
|
+
* and Tailscale types. All packages import from here.
|
|
1183
|
+
*/
|
|
1184
|
+
|
|
1185
|
+
declare const MachineMetadataSchema: z.ZodObject<{
|
|
1186
|
+
host: z.ZodString;
|
|
1187
|
+
platform: z.ZodString;
|
|
1188
|
+
happyCliVersion: z.ZodString;
|
|
1189
|
+
homeDir: z.ZodString;
|
|
1190
|
+
happyHomeDir: z.ZodString;
|
|
1191
|
+
happyLibDir: z.ZodString;
|
|
1192
|
+
}, z.core.$strip>;
|
|
1193
|
+
type MachineMetadata = z.infer<typeof MachineMetadataSchema>;
|
|
1194
|
+
declare const TailscaleServeEntrySchema: z.ZodObject<{
|
|
1195
|
+
port: z.ZodNumber;
|
|
1196
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1197
|
+
protocol: z.ZodString;
|
|
1198
|
+
target: z.ZodString;
|
|
1199
|
+
funnel: z.ZodBoolean;
|
|
1200
|
+
hostname: z.ZodString;
|
|
1201
|
+
}, z.core.$strip>;
|
|
1202
|
+
type TailscaleServeEntry = z.infer<typeof TailscaleServeEntrySchema>;
|
|
1203
|
+
declare const TailscaleInfoSchema: z.ZodObject<{
|
|
1204
|
+
status: z.ZodEnum<{
|
|
1205
|
+
connected: "connected";
|
|
1206
|
+
disconnected: "disconnected";
|
|
1207
|
+
"not-installed": "not-installed";
|
|
1208
|
+
}>;
|
|
1209
|
+
ipv4: z.ZodOptional<z.ZodString>;
|
|
1210
|
+
ipv6: z.ZodOptional<z.ZodString>;
|
|
1211
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
1212
|
+
tailnetName: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
serves: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1215
|
+
port: z.ZodNumber;
|
|
1216
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1217
|
+
protocol: z.ZodString;
|
|
1218
|
+
target: z.ZodString;
|
|
1219
|
+
funnel: z.ZodBoolean;
|
|
1220
|
+
hostname: z.ZodString;
|
|
1221
|
+
}, z.core.$strip>>>;
|
|
1222
|
+
}, z.core.$strip>;
|
|
1223
|
+
type TailscaleInfo = z.infer<typeof TailscaleInfoSchema>;
|
|
1224
|
+
declare const DaemonStateSchema: z.ZodObject<{
|
|
1225
|
+
status: z.ZodUnion<readonly [z.ZodEnum<{
|
|
1226
|
+
running: "running";
|
|
1227
|
+
"shutting-down": "shutting-down";
|
|
1228
|
+
}>, z.ZodString]>;
|
|
1229
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1230
|
+
httpPort: z.ZodOptional<z.ZodNumber>;
|
|
1231
|
+
startedAt: z.ZodOptional<z.ZodNumber>;
|
|
1232
|
+
shutdownRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
1233
|
+
shutdownSource: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1234
|
+
unknown: "unknown";
|
|
1235
|
+
"mobile-app": "mobile-app";
|
|
1236
|
+
cli: "cli";
|
|
1237
|
+
"os-signal": "os-signal";
|
|
1238
|
+
}>, z.ZodString]>>;
|
|
1239
|
+
tailscale: z.ZodOptional<z.ZodObject<{
|
|
1240
|
+
status: z.ZodEnum<{
|
|
1241
|
+
connected: "connected";
|
|
1242
|
+
disconnected: "disconnected";
|
|
1243
|
+
"not-installed": "not-installed";
|
|
1244
|
+
}>;
|
|
1245
|
+
ipv4: z.ZodOptional<z.ZodString>;
|
|
1246
|
+
ipv6: z.ZodOptional<z.ZodString>;
|
|
1247
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
1248
|
+
tailnetName: z.ZodOptional<z.ZodString>;
|
|
1249
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1250
|
+
serves: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1251
|
+
port: z.ZodNumber;
|
|
1252
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1253
|
+
protocol: z.ZodString;
|
|
1254
|
+
target: z.ZodString;
|
|
1255
|
+
funnel: z.ZodBoolean;
|
|
1256
|
+
hostname: z.ZodString;
|
|
1257
|
+
}, z.core.$strip>>>;
|
|
1258
|
+
}, z.core.$strip>>;
|
|
1259
|
+
}, z.core.$strip>;
|
|
1260
|
+
type DaemonState = z.infer<typeof DaemonStateSchema>;
|
|
1261
|
+
|
|
1262
|
+
export { AgentMessageSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, DaemonStateSchema, LegacyMessageContentSchema, MachineMetadataSchema, MessageContentSchema, MessageMetaSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, TailscaleInfoSchema, TailscaleServeEntrySchema, UpdateBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, createEnvelope, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStopEventSchema, sessionTaskEndEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema };
|
|
1263
|
+
export type { AgentMessage, ApiMessage, ApiUpdateMachineState, ApiUpdateNewMessage, ApiUpdateSessionState, CoreUpdateBody, CoreUpdateContainer, CreateEnvelopeOptions, DaemonState, LegacyMessageContent, MachineMetadata, MessageContent, MessageMeta, SessionEnvelope, SessionEvent, SessionMessage, SessionMessageContent, SessionModelUsage, SessionProtocolMessage, SessionRole, SessionTurnEndStatus, TailscaleInfo, TailscaleServeEntry, Update, UpdateBody, UpdateMachineBody, UpdateNewMessageBody, UpdateSessionBody, UserMessage, VersionedEncryptedValue, VersionedMachineEncryptedValue, VersionedNullableEncryptedValue };
|
package/dist/index.d.mts
CHANGED
|
@@ -1175,5 +1175,89 @@ type CreateEnvelopeOptions = {
|
|
|
1175
1175
|
};
|
|
1176
1176
|
declare function createEnvelope(role: SessionRole, ev: SessionEvent, opts?: CreateEnvelopeOptions): SessionEnvelope;
|
|
1177
1177
|
|
|
1178
|
-
|
|
1179
|
-
|
|
1178
|
+
/**
|
|
1179
|
+
* Machine-related Zod schemas shared across CLI, Agent, and Server.
|
|
1180
|
+
*
|
|
1181
|
+
* Single source of truth for MachineMetadata, DaemonState,
|
|
1182
|
+
* and Tailscale types. All packages import from here.
|
|
1183
|
+
*/
|
|
1184
|
+
|
|
1185
|
+
declare const MachineMetadataSchema: z.ZodObject<{
|
|
1186
|
+
host: z.ZodString;
|
|
1187
|
+
platform: z.ZodString;
|
|
1188
|
+
happyCliVersion: z.ZodString;
|
|
1189
|
+
homeDir: z.ZodString;
|
|
1190
|
+
happyHomeDir: z.ZodString;
|
|
1191
|
+
happyLibDir: z.ZodString;
|
|
1192
|
+
}, z.core.$strip>;
|
|
1193
|
+
type MachineMetadata = z.infer<typeof MachineMetadataSchema>;
|
|
1194
|
+
declare const TailscaleServeEntrySchema: z.ZodObject<{
|
|
1195
|
+
port: z.ZodNumber;
|
|
1196
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1197
|
+
protocol: z.ZodString;
|
|
1198
|
+
target: z.ZodString;
|
|
1199
|
+
funnel: z.ZodBoolean;
|
|
1200
|
+
hostname: z.ZodString;
|
|
1201
|
+
}, z.core.$strip>;
|
|
1202
|
+
type TailscaleServeEntry = z.infer<typeof TailscaleServeEntrySchema>;
|
|
1203
|
+
declare const TailscaleInfoSchema: z.ZodObject<{
|
|
1204
|
+
status: z.ZodEnum<{
|
|
1205
|
+
connected: "connected";
|
|
1206
|
+
disconnected: "disconnected";
|
|
1207
|
+
"not-installed": "not-installed";
|
|
1208
|
+
}>;
|
|
1209
|
+
ipv4: z.ZodOptional<z.ZodString>;
|
|
1210
|
+
ipv6: z.ZodOptional<z.ZodString>;
|
|
1211
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
1212
|
+
tailnetName: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
serves: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1215
|
+
port: z.ZodNumber;
|
|
1216
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1217
|
+
protocol: z.ZodString;
|
|
1218
|
+
target: z.ZodString;
|
|
1219
|
+
funnel: z.ZodBoolean;
|
|
1220
|
+
hostname: z.ZodString;
|
|
1221
|
+
}, z.core.$strip>>>;
|
|
1222
|
+
}, z.core.$strip>;
|
|
1223
|
+
type TailscaleInfo = z.infer<typeof TailscaleInfoSchema>;
|
|
1224
|
+
declare const DaemonStateSchema: z.ZodObject<{
|
|
1225
|
+
status: z.ZodUnion<readonly [z.ZodEnum<{
|
|
1226
|
+
running: "running";
|
|
1227
|
+
"shutting-down": "shutting-down";
|
|
1228
|
+
}>, z.ZodString]>;
|
|
1229
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1230
|
+
httpPort: z.ZodOptional<z.ZodNumber>;
|
|
1231
|
+
startedAt: z.ZodOptional<z.ZodNumber>;
|
|
1232
|
+
shutdownRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
1233
|
+
shutdownSource: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1234
|
+
unknown: "unknown";
|
|
1235
|
+
"mobile-app": "mobile-app";
|
|
1236
|
+
cli: "cli";
|
|
1237
|
+
"os-signal": "os-signal";
|
|
1238
|
+
}>, z.ZodString]>>;
|
|
1239
|
+
tailscale: z.ZodOptional<z.ZodObject<{
|
|
1240
|
+
status: z.ZodEnum<{
|
|
1241
|
+
connected: "connected";
|
|
1242
|
+
disconnected: "disconnected";
|
|
1243
|
+
"not-installed": "not-installed";
|
|
1244
|
+
}>;
|
|
1245
|
+
ipv4: z.ZodOptional<z.ZodString>;
|
|
1246
|
+
ipv6: z.ZodOptional<z.ZodString>;
|
|
1247
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
1248
|
+
tailnetName: z.ZodOptional<z.ZodString>;
|
|
1249
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1250
|
+
serves: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1251
|
+
port: z.ZodNumber;
|
|
1252
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1253
|
+
protocol: z.ZodString;
|
|
1254
|
+
target: z.ZodString;
|
|
1255
|
+
funnel: z.ZodBoolean;
|
|
1256
|
+
hostname: z.ZodString;
|
|
1257
|
+
}, z.core.$strip>>>;
|
|
1258
|
+
}, z.core.$strip>>;
|
|
1259
|
+
}, z.core.$strip>;
|
|
1260
|
+
type DaemonState = z.infer<typeof DaemonStateSchema>;
|
|
1261
|
+
|
|
1262
|
+
export { AgentMessageSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, DaemonStateSchema, LegacyMessageContentSchema, MachineMetadataSchema, MessageContentSchema, MessageMetaSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, TailscaleInfoSchema, TailscaleServeEntrySchema, UpdateBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, createEnvelope, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStopEventSchema, sessionTaskEndEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema };
|
|
1263
|
+
export type { AgentMessage, ApiMessage, ApiUpdateMachineState, ApiUpdateNewMessage, ApiUpdateSessionState, CoreUpdateBody, CoreUpdateContainer, CreateEnvelopeOptions, DaemonState, LegacyMessageContent, MachineMetadata, MessageContent, MessageMeta, SessionEnvelope, SessionEvent, SessionMessage, SessionMessageContent, SessionModelUsage, SessionProtocolMessage, SessionRole, SessionTurnEndStatus, TailscaleInfo, TailscaleServeEntry, Update, UpdateBody, UpdateMachineBody, UpdateNewMessageBody, UpdateSessionBody, UserMessage, VersionedEncryptedValue, VersionedMachineEncryptedValue, VersionedNullableEncryptedValue };
|
package/dist/index.mjs
CHANGED
|
@@ -289,4 +289,47 @@ const ApiUpdateMachineStateSchema = UpdateMachineBodySchema;
|
|
|
289
289
|
const UpdateBodySchema = UpdateNewMessageBodySchema;
|
|
290
290
|
const UpdateSchema = CoreUpdateContainerSchema;
|
|
291
291
|
|
|
292
|
-
|
|
292
|
+
const MachineMetadataSchema = z.object({
|
|
293
|
+
host: z.string(),
|
|
294
|
+
platform: z.string(),
|
|
295
|
+
happyCliVersion: z.string(),
|
|
296
|
+
homeDir: z.string(),
|
|
297
|
+
happyHomeDir: z.string(),
|
|
298
|
+
happyLibDir: z.string()
|
|
299
|
+
});
|
|
300
|
+
const TailscaleServeEntrySchema = z.object({
|
|
301
|
+
port: z.number(),
|
|
302
|
+
path: z.string().optional(),
|
|
303
|
+
protocol: z.string(),
|
|
304
|
+
target: z.string(),
|
|
305
|
+
funnel: z.boolean(),
|
|
306
|
+
hostname: z.string()
|
|
307
|
+
});
|
|
308
|
+
const TailscaleInfoSchema = z.object({
|
|
309
|
+
status: z.enum(["connected", "disconnected", "not-installed"]),
|
|
310
|
+
ipv4: z.string().optional(),
|
|
311
|
+
ipv6: z.string().optional(),
|
|
312
|
+
hostname: z.string().optional(),
|
|
313
|
+
tailnetName: z.string().optional(),
|
|
314
|
+
version: z.string().optional(),
|
|
315
|
+
serves: z.array(TailscaleServeEntrySchema).optional()
|
|
316
|
+
});
|
|
317
|
+
const DaemonStateSchema = z.object({
|
|
318
|
+
status: z.union([
|
|
319
|
+
z.enum(["running", "shutting-down"]),
|
|
320
|
+
z.string()
|
|
321
|
+
// Forward compatibility
|
|
322
|
+
]),
|
|
323
|
+
pid: z.number().optional(),
|
|
324
|
+
httpPort: z.number().optional(),
|
|
325
|
+
startedAt: z.number().optional(),
|
|
326
|
+
shutdownRequestedAt: z.number().optional(),
|
|
327
|
+
shutdownSource: z.union([
|
|
328
|
+
z.enum(["mobile-app", "cli", "os-signal", "unknown"]),
|
|
329
|
+
z.string()
|
|
330
|
+
// Forward compatibility
|
|
331
|
+
]).optional(),
|
|
332
|
+
tailscale: TailscaleInfoSchema.optional()
|
|
333
|
+
});
|
|
334
|
+
|
|
335
|
+
export { AgentMessageSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, DaemonStateSchema, LegacyMessageContentSchema, MachineMetadataSchema, MessageContentSchema, MessageMetaSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, TailscaleInfoSchema, TailscaleServeEntrySchema, UpdateBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, createEnvelope, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStopEventSchema, sessionTaskEndEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema };
|