@kmmao/happy-wire 0.2.11 → 0.3.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.cjs +46 -0
- package/dist/index.d.cts +83 -2
- package/dist/index.d.mts +83 -2
- package/dist/index.mjs +43 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -310,6 +310,48 @@ 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
|
+
protocol: z__namespace.string(),
|
|
324
|
+
target: z__namespace.string(),
|
|
325
|
+
funnel: z__namespace.boolean(),
|
|
326
|
+
hostname: z__namespace.string()
|
|
327
|
+
});
|
|
328
|
+
const TailscaleInfoSchema = z__namespace.object({
|
|
329
|
+
status: z__namespace.enum(["connected", "disconnected", "not-installed"]),
|
|
330
|
+
ipv4: z__namespace.string().optional(),
|
|
331
|
+
ipv6: z__namespace.string().optional(),
|
|
332
|
+
hostname: z__namespace.string().optional(),
|
|
333
|
+
tailnetName: z__namespace.string().optional(),
|
|
334
|
+
version: z__namespace.string().optional(),
|
|
335
|
+
serves: z__namespace.array(TailscaleServeEntrySchema).optional()
|
|
336
|
+
});
|
|
337
|
+
const DaemonStateSchema = z__namespace.object({
|
|
338
|
+
status: z__namespace.union([
|
|
339
|
+
z__namespace.enum(["running", "shutting-down"]),
|
|
340
|
+
z__namespace.string()
|
|
341
|
+
// Forward compatibility
|
|
342
|
+
]),
|
|
343
|
+
pid: z__namespace.number().optional(),
|
|
344
|
+
httpPort: z__namespace.number().optional(),
|
|
345
|
+
startedAt: z__namespace.number().optional(),
|
|
346
|
+
shutdownRequestedAt: z__namespace.number().optional(),
|
|
347
|
+
shutdownSource: z__namespace.union([
|
|
348
|
+
z__namespace.enum(["mobile-app", "cli", "os-signal", "unknown"]),
|
|
349
|
+
z__namespace.string()
|
|
350
|
+
// Forward compatibility
|
|
351
|
+
]).optional(),
|
|
352
|
+
tailscale: TailscaleInfoSchema.optional()
|
|
353
|
+
});
|
|
354
|
+
|
|
313
355
|
exports.AgentMessageSchema = AgentMessageSchema;
|
|
314
356
|
exports.ApiMessageSchema = ApiMessageSchema;
|
|
315
357
|
exports.ApiUpdateMachineStateSchema = ApiUpdateMachineStateSchema;
|
|
@@ -317,12 +359,16 @@ exports.ApiUpdateNewMessageSchema = ApiUpdateNewMessageSchema;
|
|
|
317
359
|
exports.ApiUpdateSessionStateSchema = ApiUpdateSessionStateSchema;
|
|
318
360
|
exports.CoreUpdateBodySchema = CoreUpdateBodySchema;
|
|
319
361
|
exports.CoreUpdateContainerSchema = CoreUpdateContainerSchema;
|
|
362
|
+
exports.DaemonStateSchema = DaemonStateSchema;
|
|
320
363
|
exports.LegacyMessageContentSchema = LegacyMessageContentSchema;
|
|
364
|
+
exports.MachineMetadataSchema = MachineMetadataSchema;
|
|
321
365
|
exports.MessageContentSchema = MessageContentSchema;
|
|
322
366
|
exports.MessageMetaSchema = MessageMetaSchema;
|
|
323
367
|
exports.SessionMessageContentSchema = SessionMessageContentSchema;
|
|
324
368
|
exports.SessionMessageSchema = SessionMessageSchema;
|
|
325
369
|
exports.SessionProtocolMessageSchema = SessionProtocolMessageSchema;
|
|
370
|
+
exports.TailscaleInfoSchema = TailscaleInfoSchema;
|
|
371
|
+
exports.TailscaleServeEntrySchema = TailscaleServeEntrySchema;
|
|
326
372
|
exports.UpdateBodySchema = UpdateBodySchema;
|
|
327
373
|
exports.UpdateMachineBodySchema = UpdateMachineBodySchema;
|
|
328
374
|
exports.UpdateNewMessageBodySchema = UpdateNewMessageBodySchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -1175,5 +1175,86 @@ 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
|
+
protocol: z.ZodString;
|
|
1197
|
+
target: z.ZodString;
|
|
1198
|
+
funnel: z.ZodBoolean;
|
|
1199
|
+
hostname: z.ZodString;
|
|
1200
|
+
}, z.core.$strip>;
|
|
1201
|
+
type TailscaleServeEntry = z.infer<typeof TailscaleServeEntrySchema>;
|
|
1202
|
+
declare const TailscaleInfoSchema: z.ZodObject<{
|
|
1203
|
+
status: z.ZodEnum<{
|
|
1204
|
+
connected: "connected";
|
|
1205
|
+
disconnected: "disconnected";
|
|
1206
|
+
"not-installed": "not-installed";
|
|
1207
|
+
}>;
|
|
1208
|
+
ipv4: z.ZodOptional<z.ZodString>;
|
|
1209
|
+
ipv6: z.ZodOptional<z.ZodString>;
|
|
1210
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
1211
|
+
tailnetName: z.ZodOptional<z.ZodString>;
|
|
1212
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
serves: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1214
|
+
port: z.ZodNumber;
|
|
1215
|
+
protocol: z.ZodString;
|
|
1216
|
+
target: z.ZodString;
|
|
1217
|
+
funnel: z.ZodBoolean;
|
|
1218
|
+
hostname: z.ZodString;
|
|
1219
|
+
}, z.core.$strip>>>;
|
|
1220
|
+
}, z.core.$strip>;
|
|
1221
|
+
type TailscaleInfo = z.infer<typeof TailscaleInfoSchema>;
|
|
1222
|
+
declare const DaemonStateSchema: z.ZodObject<{
|
|
1223
|
+
status: z.ZodUnion<readonly [z.ZodEnum<{
|
|
1224
|
+
running: "running";
|
|
1225
|
+
"shutting-down": "shutting-down";
|
|
1226
|
+
}>, z.ZodString]>;
|
|
1227
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1228
|
+
httpPort: z.ZodOptional<z.ZodNumber>;
|
|
1229
|
+
startedAt: z.ZodOptional<z.ZodNumber>;
|
|
1230
|
+
shutdownRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
1231
|
+
shutdownSource: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1232
|
+
unknown: "unknown";
|
|
1233
|
+
"mobile-app": "mobile-app";
|
|
1234
|
+
cli: "cli";
|
|
1235
|
+
"os-signal": "os-signal";
|
|
1236
|
+
}>, z.ZodString]>>;
|
|
1237
|
+
tailscale: z.ZodOptional<z.ZodObject<{
|
|
1238
|
+
status: z.ZodEnum<{
|
|
1239
|
+
connected: "connected";
|
|
1240
|
+
disconnected: "disconnected";
|
|
1241
|
+
"not-installed": "not-installed";
|
|
1242
|
+
}>;
|
|
1243
|
+
ipv4: z.ZodOptional<z.ZodString>;
|
|
1244
|
+
ipv6: z.ZodOptional<z.ZodString>;
|
|
1245
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
1246
|
+
tailnetName: z.ZodOptional<z.ZodString>;
|
|
1247
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1248
|
+
serves: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1249
|
+
port: z.ZodNumber;
|
|
1250
|
+
protocol: z.ZodString;
|
|
1251
|
+
target: z.ZodString;
|
|
1252
|
+
funnel: z.ZodBoolean;
|
|
1253
|
+
hostname: z.ZodString;
|
|
1254
|
+
}, z.core.$strip>>>;
|
|
1255
|
+
}, z.core.$strip>>;
|
|
1256
|
+
}, z.core.$strip>;
|
|
1257
|
+
type DaemonState = z.infer<typeof DaemonStateSchema>;
|
|
1258
|
+
|
|
1259
|
+
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 };
|
|
1260
|
+
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,86 @@ 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
|
+
protocol: z.ZodString;
|
|
1197
|
+
target: z.ZodString;
|
|
1198
|
+
funnel: z.ZodBoolean;
|
|
1199
|
+
hostname: z.ZodString;
|
|
1200
|
+
}, z.core.$strip>;
|
|
1201
|
+
type TailscaleServeEntry = z.infer<typeof TailscaleServeEntrySchema>;
|
|
1202
|
+
declare const TailscaleInfoSchema: z.ZodObject<{
|
|
1203
|
+
status: z.ZodEnum<{
|
|
1204
|
+
connected: "connected";
|
|
1205
|
+
disconnected: "disconnected";
|
|
1206
|
+
"not-installed": "not-installed";
|
|
1207
|
+
}>;
|
|
1208
|
+
ipv4: z.ZodOptional<z.ZodString>;
|
|
1209
|
+
ipv6: z.ZodOptional<z.ZodString>;
|
|
1210
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
1211
|
+
tailnetName: z.ZodOptional<z.ZodString>;
|
|
1212
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
serves: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1214
|
+
port: z.ZodNumber;
|
|
1215
|
+
protocol: z.ZodString;
|
|
1216
|
+
target: z.ZodString;
|
|
1217
|
+
funnel: z.ZodBoolean;
|
|
1218
|
+
hostname: z.ZodString;
|
|
1219
|
+
}, z.core.$strip>>>;
|
|
1220
|
+
}, z.core.$strip>;
|
|
1221
|
+
type TailscaleInfo = z.infer<typeof TailscaleInfoSchema>;
|
|
1222
|
+
declare const DaemonStateSchema: z.ZodObject<{
|
|
1223
|
+
status: z.ZodUnion<readonly [z.ZodEnum<{
|
|
1224
|
+
running: "running";
|
|
1225
|
+
"shutting-down": "shutting-down";
|
|
1226
|
+
}>, z.ZodString]>;
|
|
1227
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1228
|
+
httpPort: z.ZodOptional<z.ZodNumber>;
|
|
1229
|
+
startedAt: z.ZodOptional<z.ZodNumber>;
|
|
1230
|
+
shutdownRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
1231
|
+
shutdownSource: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1232
|
+
unknown: "unknown";
|
|
1233
|
+
"mobile-app": "mobile-app";
|
|
1234
|
+
cli: "cli";
|
|
1235
|
+
"os-signal": "os-signal";
|
|
1236
|
+
}>, z.ZodString]>>;
|
|
1237
|
+
tailscale: z.ZodOptional<z.ZodObject<{
|
|
1238
|
+
status: z.ZodEnum<{
|
|
1239
|
+
connected: "connected";
|
|
1240
|
+
disconnected: "disconnected";
|
|
1241
|
+
"not-installed": "not-installed";
|
|
1242
|
+
}>;
|
|
1243
|
+
ipv4: z.ZodOptional<z.ZodString>;
|
|
1244
|
+
ipv6: z.ZodOptional<z.ZodString>;
|
|
1245
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
1246
|
+
tailnetName: z.ZodOptional<z.ZodString>;
|
|
1247
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1248
|
+
serves: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1249
|
+
port: z.ZodNumber;
|
|
1250
|
+
protocol: z.ZodString;
|
|
1251
|
+
target: z.ZodString;
|
|
1252
|
+
funnel: z.ZodBoolean;
|
|
1253
|
+
hostname: z.ZodString;
|
|
1254
|
+
}, z.core.$strip>>>;
|
|
1255
|
+
}, z.core.$strip>>;
|
|
1256
|
+
}, z.core.$strip>;
|
|
1257
|
+
type DaemonState = z.infer<typeof DaemonStateSchema>;
|
|
1258
|
+
|
|
1259
|
+
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 };
|
|
1260
|
+
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,46 @@ 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
|
+
protocol: z.string(),
|
|
303
|
+
target: z.string(),
|
|
304
|
+
funnel: z.boolean(),
|
|
305
|
+
hostname: z.string()
|
|
306
|
+
});
|
|
307
|
+
const TailscaleInfoSchema = z.object({
|
|
308
|
+
status: z.enum(["connected", "disconnected", "not-installed"]),
|
|
309
|
+
ipv4: z.string().optional(),
|
|
310
|
+
ipv6: z.string().optional(),
|
|
311
|
+
hostname: z.string().optional(),
|
|
312
|
+
tailnetName: z.string().optional(),
|
|
313
|
+
version: z.string().optional(),
|
|
314
|
+
serves: z.array(TailscaleServeEntrySchema).optional()
|
|
315
|
+
});
|
|
316
|
+
const DaemonStateSchema = z.object({
|
|
317
|
+
status: z.union([
|
|
318
|
+
z.enum(["running", "shutting-down"]),
|
|
319
|
+
z.string()
|
|
320
|
+
// Forward compatibility
|
|
321
|
+
]),
|
|
322
|
+
pid: z.number().optional(),
|
|
323
|
+
httpPort: z.number().optional(),
|
|
324
|
+
startedAt: z.number().optional(),
|
|
325
|
+
shutdownRequestedAt: z.number().optional(),
|
|
326
|
+
shutdownSource: z.union([
|
|
327
|
+
z.enum(["mobile-app", "cli", "os-signal", "unknown"]),
|
|
328
|
+
z.string()
|
|
329
|
+
// Forward compatibility
|
|
330
|
+
]).optional(),
|
|
331
|
+
tailscale: TailscaleInfoSchema.optional()
|
|
332
|
+
});
|
|
333
|
+
|
|
334
|
+
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 };
|