happy-imou-cloud 2.1.1 → 2.1.3
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/bin/happy-cloud.mjs +21 -21
- package/compat/acp-sdk-schema/index.js +27 -27
- package/compat/acp-sdk-schema/types.gen.js +2 -2
- package/compat/acp-sdk-schema/zod.gen.js +1553 -1553
- package/compat/ink-build/components/Cursor.d.ts +83 -83
- package/compat/ink-build/components/Cursor.js +52 -52
- package/compat/ink-build/components/CursorContext.d.ts +11 -11
- package/compat/ink-build/components/CursorContext.js +7 -7
- package/compat/ink-build/components/ErrorBoundary.d.ts +18 -18
- package/compat/ink-build/components/ErrorBoundary.js +22 -22
- package/compat/ink-build/hooks/use-cursor.d.ts +12 -12
- package/compat/ink-build/hooks/use-cursor.js +28 -28
- package/dist/{BaseReasoningProcessor-CBMK-8Gi.cjs → BaseReasoningProcessor-BrcBFCoL.cjs} +3 -3
- package/dist/{BaseReasoningProcessor-Dn9FxfxU.mjs → BaseReasoningProcessor-CPLK0a8y.mjs} +3 -3
- package/dist/ProviderSelectionHandler-CrXfMTg1.mjs +261 -0
- package/dist/ProviderSelectionHandler-f7_I3vQa.cjs +265 -0
- package/dist/{api-DBy5lPZw.mjs → api-BGv79x9Q.mjs} +3 -3
- package/dist/{api-DId_j3C2.cjs → api-OoiG7XjD.cjs} +2 -2
- package/dist/{command-DwfUpmId.cjs → command-DAYJSP16.cjs} +3 -3
- package/dist/{command-CeaBwYCW.mjs → command-FbV44egL.mjs} +3 -3
- package/dist/{index-CuuYSKiv.cjs → index-D9lWHpn-.cjs} +199 -78
- package/dist/{index-66vjECEd.mjs → index-TRC83Ks9.mjs} +196 -75
- package/dist/index.cjs +3 -3
- package/dist/index.mjs +3 -3
- package/dist/lib.cjs +1 -1
- package/dist/lib.d.cts +51 -52
- package/dist/lib.d.mts +51 -52
- package/dist/lib.mjs +1 -1
- package/dist/{persistence-BOWh1NER.mjs → persistence-Cmgj3ubQ.mjs} +1 -1
- package/dist/{persistence-Dzr6sFwD.cjs → persistence-lN9HV4IZ.cjs} +1 -1
- package/dist/{registerKillSessionHandler-D4_wpN18.mjs → registerKillSessionHandler-NZd3xieQ.mjs} +417 -5
- package/dist/{registerKillSessionHandler-Dg_iRBPm.cjs → registerKillSessionHandler-pk4Ohq4Y.cjs} +419 -4
- package/dist/{runClaude-B74dHAnQ.mjs → runClaude-7St9-Jci.mjs} +34 -5
- package/dist/{runClaude-oIFzkfuU.cjs → runClaude-BP-O6ucu.cjs} +37 -8
- package/dist/{runCodex-D_9CuL6M.cjs → runCodex-BV6kKtTO.cjs} +29 -21
- package/dist/{runCodex-mLHjsgVj.mjs → runCodex-BaXi_9BC.mjs} +26 -18
- package/dist/{runGemini-CcWGezMt.cjs → runGemini-BiYKqJqO.cjs} +267 -82
- package/dist/{runGemini-BMiho2ab.mjs → runGemini-ClNqE9N3.mjs} +267 -82
- package/package.json +9 -9
- package/scripts/build.mjs +68 -68
- package/scripts/devtools/README.md +9 -9
- package/scripts/e2e/fake-codex-acp-agent.mjs +139 -139
- package/scripts/e2e/local-server-session-roundtrip.mjs +1063 -1063
- package/scripts/ensureAcpSdkCompat.mjs +171 -173
- package/scripts/release-smoke.mjs +38 -35
- package/dist/ProviderSelectionHandler-BuXk-8ji.cjs +0 -680
- package/dist/ProviderSelectionHandler-CMaQThYO.mjs +0 -673
package/dist/lib.d.cts
CHANGED
|
@@ -437,6 +437,13 @@ declare const HappyOrgMetadataSchema: z.ZodObject<{
|
|
|
437
437
|
repeatFingerprint: string | null;
|
|
438
438
|
}>>;
|
|
439
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
|
+
repeat?: {
|
|
441
|
+
threshold: number;
|
|
442
|
+
fingerprints: Record<string, {
|
|
443
|
+
count: number;
|
|
444
|
+
lastSeenAt: number;
|
|
445
|
+
}>;
|
|
446
|
+
} | undefined;
|
|
440
447
|
taskContext?: {
|
|
441
448
|
taskId: string;
|
|
442
449
|
organizationId: string;
|
|
@@ -454,13 +461,6 @@ declare const HappyOrgMetadataSchema: z.ZodObject<{
|
|
|
454
461
|
ownerRunId: string;
|
|
455
462
|
claimedAt: number;
|
|
456
463
|
} | null | undefined;
|
|
457
|
-
repeat?: {
|
|
458
|
-
threshold: number;
|
|
459
|
-
fingerprints: Record<string, {
|
|
460
|
-
count: number;
|
|
461
|
-
lastSeenAt: number;
|
|
462
|
-
}>;
|
|
463
|
-
} | undefined;
|
|
464
464
|
lastTurnReport?: {
|
|
465
465
|
summary: string;
|
|
466
466
|
taskId: string;
|
|
@@ -475,6 +475,13 @@ declare const HappyOrgMetadataSchema: z.ZodObject<{
|
|
|
475
475
|
repeatFingerprint: string | null;
|
|
476
476
|
} | undefined;
|
|
477
477
|
}, {
|
|
478
|
+
repeat?: {
|
|
479
|
+
threshold: number;
|
|
480
|
+
fingerprints: Record<string, {
|
|
481
|
+
count: number;
|
|
482
|
+
lastSeenAt: number;
|
|
483
|
+
}>;
|
|
484
|
+
} | undefined;
|
|
478
485
|
taskContext?: {
|
|
479
486
|
taskId: string;
|
|
480
487
|
organizationId: string;
|
|
@@ -492,13 +499,6 @@ declare const HappyOrgMetadataSchema: z.ZodObject<{
|
|
|
492
499
|
ownerRunId: string;
|
|
493
500
|
claimedAt: number;
|
|
494
501
|
} | null | undefined;
|
|
495
|
-
repeat?: {
|
|
496
|
-
threshold: number;
|
|
497
|
-
fingerprints: Record<string, {
|
|
498
|
-
count: number;
|
|
499
|
-
lastSeenAt: number;
|
|
500
|
-
}>;
|
|
501
|
-
} | undefined;
|
|
502
502
|
lastTurnReport?: {
|
|
503
503
|
summary: string;
|
|
504
504
|
taskId: string;
|
|
@@ -635,9 +635,9 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
635
635
|
agentStateVersion: number;
|
|
636
636
|
createdAt?: number | undefined;
|
|
637
637
|
updatedAt?: number | undefined;
|
|
638
|
+
active?: boolean | undefined;
|
|
638
639
|
title?: string | null | undefined;
|
|
639
640
|
dataEncryptionKey?: string | null | undefined;
|
|
640
|
-
active?: boolean | undefined;
|
|
641
641
|
activeAt?: number | undefined;
|
|
642
642
|
sessionIndex?: {
|
|
643
643
|
machineId?: string | null | undefined;
|
|
@@ -656,9 +656,9 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
656
656
|
agentStateVersion: number;
|
|
657
657
|
createdAt?: number | undefined;
|
|
658
658
|
updatedAt?: number | undefined;
|
|
659
|
+
active?: boolean | undefined;
|
|
659
660
|
title?: string | null | undefined;
|
|
660
661
|
dataEncryptionKey?: string | null | undefined;
|
|
661
|
-
active?: boolean | undefined;
|
|
662
662
|
activeAt?: number | undefined;
|
|
663
663
|
sessionIndex?: {
|
|
664
664
|
machineId?: string | null | undefined;
|
|
@@ -685,21 +685,21 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
685
685
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
686
686
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
687
687
|
}, "strip", z.ZodTypeAny, {
|
|
688
|
+
id: string;
|
|
688
689
|
content: {
|
|
689
690
|
c: string;
|
|
690
691
|
t: "encrypted";
|
|
691
692
|
};
|
|
692
|
-
id: string;
|
|
693
693
|
seq: number;
|
|
694
694
|
createdAt?: number | undefined;
|
|
695
695
|
updatedAt?: number | undefined;
|
|
696
696
|
localId?: string | null | undefined;
|
|
697
697
|
}, {
|
|
698
|
+
id: string;
|
|
698
699
|
content: {
|
|
699
700
|
c: string;
|
|
700
701
|
t: "encrypted";
|
|
701
702
|
};
|
|
702
|
-
id: string;
|
|
703
703
|
seq: number;
|
|
704
704
|
createdAt?: number | undefined;
|
|
705
705
|
updatedAt?: number | undefined;
|
|
@@ -709,11 +709,11 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
709
709
|
t: z.ZodLiteral<"new-message">;
|
|
710
710
|
}, "strip", z.ZodTypeAny, {
|
|
711
711
|
message: {
|
|
712
|
+
id: string;
|
|
712
713
|
content: {
|
|
713
714
|
c: string;
|
|
714
715
|
t: "encrypted";
|
|
715
716
|
};
|
|
716
|
-
id: string;
|
|
717
717
|
seq: number;
|
|
718
718
|
createdAt?: number | undefined;
|
|
719
719
|
updatedAt?: number | undefined;
|
|
@@ -723,11 +723,11 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
723
723
|
sid: string;
|
|
724
724
|
}, {
|
|
725
725
|
message: {
|
|
726
|
+
id: string;
|
|
726
727
|
content: {
|
|
727
728
|
c: string;
|
|
728
729
|
t: "encrypted";
|
|
729
730
|
};
|
|
730
|
-
id: string;
|
|
731
731
|
seq: number;
|
|
732
732
|
createdAt?: number | undefined;
|
|
733
733
|
updatedAt?: number | undefined;
|
|
@@ -895,9 +895,9 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
895
895
|
agentStateVersion: number;
|
|
896
896
|
createdAt?: number | undefined;
|
|
897
897
|
updatedAt?: number | undefined;
|
|
898
|
+
active?: boolean | undefined;
|
|
898
899
|
title?: string | null | undefined;
|
|
899
900
|
dataEncryptionKey?: string | null | undefined;
|
|
900
|
-
active?: boolean | undefined;
|
|
901
901
|
activeAt?: number | undefined;
|
|
902
902
|
sessionIndex?: {
|
|
903
903
|
machineId?: string | null | undefined;
|
|
@@ -908,11 +908,11 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
908
908
|
} | null | undefined;
|
|
909
909
|
} | {
|
|
910
910
|
message: {
|
|
911
|
+
id: string;
|
|
911
912
|
content: {
|
|
912
913
|
c: string;
|
|
913
914
|
t: "encrypted";
|
|
914
915
|
};
|
|
915
|
-
id: string;
|
|
916
916
|
seq: number;
|
|
917
917
|
createdAt?: number | undefined;
|
|
918
918
|
updatedAt?: number | undefined;
|
|
@@ -971,9 +971,9 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
971
971
|
agentStateVersion: number;
|
|
972
972
|
createdAt?: number | undefined;
|
|
973
973
|
updatedAt?: number | undefined;
|
|
974
|
+
active?: boolean | undefined;
|
|
974
975
|
title?: string | null | undefined;
|
|
975
976
|
dataEncryptionKey?: string | null | undefined;
|
|
976
|
-
active?: boolean | undefined;
|
|
977
977
|
activeAt?: number | undefined;
|
|
978
978
|
sessionIndex?: {
|
|
979
979
|
machineId?: string | null | undefined;
|
|
@@ -984,11 +984,11 @@ declare const UpdateSchema: z.ZodObject<{
|
|
|
984
984
|
} | null | undefined;
|
|
985
985
|
} | {
|
|
986
986
|
message: {
|
|
987
|
+
id: string;
|
|
987
988
|
content: {
|
|
988
989
|
c: string;
|
|
989
990
|
t: "encrypted";
|
|
990
991
|
};
|
|
991
|
-
id: string;
|
|
992
992
|
seq: number;
|
|
993
993
|
createdAt?: number | undefined;
|
|
994
994
|
updatedAt?: number | undefined;
|
|
@@ -1162,13 +1162,13 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1162
1162
|
lastChangeSeq: number;
|
|
1163
1163
|
createdAt?: number | undefined;
|
|
1164
1164
|
updatedAt?: number | undefined;
|
|
1165
|
+
active?: boolean | undefined;
|
|
1165
1166
|
title?: string | null | undefined;
|
|
1166
1167
|
metadata?: string | undefined;
|
|
1167
1168
|
metadataVersion?: number | undefined;
|
|
1168
1169
|
agentState?: string | null | undefined;
|
|
1169
1170
|
agentStateVersion?: number | undefined;
|
|
1170
1171
|
dataEncryptionKey?: string | null | undefined;
|
|
1171
|
-
active?: boolean | undefined;
|
|
1172
1172
|
activeAt?: number | undefined;
|
|
1173
1173
|
pendingCount?: number | undefined;
|
|
1174
1174
|
pendingVersion?: number | undefined;
|
|
@@ -1178,13 +1178,13 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1178
1178
|
lastChangeSeq: number;
|
|
1179
1179
|
createdAt?: number | undefined;
|
|
1180
1180
|
updatedAt?: number | undefined;
|
|
1181
|
+
active?: boolean | undefined;
|
|
1181
1182
|
title?: string | null | undefined;
|
|
1182
1183
|
metadata?: string | undefined;
|
|
1183
1184
|
metadataVersion?: number | undefined;
|
|
1184
1185
|
agentState?: string | null | undefined;
|
|
1185
1186
|
agentStateVersion?: number | undefined;
|
|
1186
1187
|
dataEncryptionKey?: string | null | undefined;
|
|
1187
|
-
active?: boolean | undefined;
|
|
1188
1188
|
activeAt?: number | undefined;
|
|
1189
1189
|
pendingCount?: number | undefined;
|
|
1190
1190
|
pendingVersion?: number | undefined;
|
|
@@ -1208,23 +1208,23 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1208
1208
|
createdAt: z.ZodNumber;
|
|
1209
1209
|
updatedAt: z.ZodNumber;
|
|
1210
1210
|
}, "strip", z.ZodTypeAny, {
|
|
1211
|
+
id: string;
|
|
1212
|
+
createdAt: number;
|
|
1213
|
+
updatedAt: number;
|
|
1211
1214
|
content: {
|
|
1212
1215
|
c: string;
|
|
1213
1216
|
t: "encrypted";
|
|
1214
1217
|
};
|
|
1215
|
-
id: string;
|
|
1216
|
-
createdAt: number;
|
|
1217
|
-
updatedAt: number;
|
|
1218
1218
|
seq: number;
|
|
1219
1219
|
localId: string | null;
|
|
1220
1220
|
}, {
|
|
1221
|
+
id: string;
|
|
1222
|
+
createdAt: number;
|
|
1223
|
+
updatedAt: number;
|
|
1221
1224
|
content: {
|
|
1222
1225
|
c: string;
|
|
1223
1226
|
t: "encrypted";
|
|
1224
1227
|
};
|
|
1225
|
-
id: string;
|
|
1226
|
-
createdAt: number;
|
|
1227
|
-
updatedAt: number;
|
|
1228
1228
|
seq: number;
|
|
1229
1229
|
localId: string | null;
|
|
1230
1230
|
}>, "many">;
|
|
@@ -1232,13 +1232,13 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1232
1232
|
oldestRetainedSeq: z.ZodNullable<z.ZodNumber>;
|
|
1233
1233
|
}, "strip", z.ZodTypeAny, {
|
|
1234
1234
|
messages: {
|
|
1235
|
+
id: string;
|
|
1236
|
+
createdAt: number;
|
|
1237
|
+
updatedAt: number;
|
|
1235
1238
|
content: {
|
|
1236
1239
|
c: string;
|
|
1237
1240
|
t: "encrypted";
|
|
1238
1241
|
};
|
|
1239
|
-
id: string;
|
|
1240
|
-
createdAt: number;
|
|
1241
|
-
updatedAt: number;
|
|
1242
1242
|
seq: number;
|
|
1243
1243
|
localId: string | null;
|
|
1244
1244
|
}[];
|
|
@@ -1246,13 +1246,13 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1246
1246
|
oldestRetainedSeq: number | null;
|
|
1247
1247
|
}, {
|
|
1248
1248
|
messages: {
|
|
1249
|
+
id: string;
|
|
1250
|
+
createdAt: number;
|
|
1251
|
+
updatedAt: number;
|
|
1249
1252
|
content: {
|
|
1250
1253
|
c: string;
|
|
1251
1254
|
t: "encrypted";
|
|
1252
1255
|
};
|
|
1253
|
-
id: string;
|
|
1254
|
-
createdAt: number;
|
|
1255
|
-
updatedAt: number;
|
|
1256
1256
|
seq: number;
|
|
1257
1257
|
localId: string | null;
|
|
1258
1258
|
}[];
|
|
@@ -1274,13 +1274,13 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1274
1274
|
lastChangeSeq: number;
|
|
1275
1275
|
createdAt?: number | undefined;
|
|
1276
1276
|
updatedAt?: number | undefined;
|
|
1277
|
+
active?: boolean | undefined;
|
|
1277
1278
|
title?: string | null | undefined;
|
|
1278
1279
|
metadata?: string | undefined;
|
|
1279
1280
|
metadataVersion?: number | undefined;
|
|
1280
1281
|
agentState?: string | null | undefined;
|
|
1281
1282
|
agentStateVersion?: number | undefined;
|
|
1282
1283
|
dataEncryptionKey?: string | null | undefined;
|
|
1283
|
-
active?: boolean | undefined;
|
|
1284
1284
|
activeAt?: number | undefined;
|
|
1285
1285
|
pendingCount?: number | undefined;
|
|
1286
1286
|
pendingVersion?: number | undefined;
|
|
@@ -1288,13 +1288,13 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1288
1288
|
};
|
|
1289
1289
|
snapshot: {
|
|
1290
1290
|
messages: {
|
|
1291
|
+
id: string;
|
|
1292
|
+
createdAt: number;
|
|
1293
|
+
updatedAt: number;
|
|
1291
1294
|
content: {
|
|
1292
1295
|
c: string;
|
|
1293
1296
|
t: "encrypted";
|
|
1294
1297
|
};
|
|
1295
|
-
id: string;
|
|
1296
|
-
createdAt: number;
|
|
1297
|
-
updatedAt: number;
|
|
1298
1298
|
seq: number;
|
|
1299
1299
|
localId: string | null;
|
|
1300
1300
|
}[];
|
|
@@ -1316,13 +1316,13 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1316
1316
|
lastChangeSeq: number;
|
|
1317
1317
|
createdAt?: number | undefined;
|
|
1318
1318
|
updatedAt?: number | undefined;
|
|
1319
|
+
active?: boolean | undefined;
|
|
1319
1320
|
title?: string | null | undefined;
|
|
1320
1321
|
metadata?: string | undefined;
|
|
1321
1322
|
metadataVersion?: number | undefined;
|
|
1322
1323
|
agentState?: string | null | undefined;
|
|
1323
1324
|
agentStateVersion?: number | undefined;
|
|
1324
1325
|
dataEncryptionKey?: string | null | undefined;
|
|
1325
|
-
active?: boolean | undefined;
|
|
1326
1326
|
activeAt?: number | undefined;
|
|
1327
1327
|
pendingCount?: number | undefined;
|
|
1328
1328
|
pendingVersion?: number | undefined;
|
|
@@ -1330,13 +1330,13 @@ declare const ProtocolV3SessionSnapshotResponseSchema: z.ZodObject<{
|
|
|
1330
1330
|
};
|
|
1331
1331
|
snapshot: {
|
|
1332
1332
|
messages: {
|
|
1333
|
+
id: string;
|
|
1334
|
+
createdAt: number;
|
|
1335
|
+
updatedAt: number;
|
|
1333
1336
|
content: {
|
|
1334
1337
|
c: string;
|
|
1335
1338
|
t: "encrypted";
|
|
1336
1339
|
};
|
|
1337
|
-
id: string;
|
|
1338
|
-
createdAt: number;
|
|
1339
|
-
updatedAt: number;
|
|
1340
1340
|
seq: number;
|
|
1341
1341
|
localId: string | null;
|
|
1342
1342
|
}[];
|
|
@@ -1455,13 +1455,13 @@ declare const ProtocolV3SessionChangesResponseSchema: z.ZodObject<{
|
|
|
1455
1455
|
lastChangeSeq: number;
|
|
1456
1456
|
createdAt?: number | undefined;
|
|
1457
1457
|
updatedAt?: number | undefined;
|
|
1458
|
+
active?: boolean | undefined;
|
|
1458
1459
|
title?: string | null | undefined;
|
|
1459
1460
|
metadata?: string | undefined;
|
|
1460
1461
|
metadataVersion?: number | undefined;
|
|
1461
1462
|
agentState?: string | null | undefined;
|
|
1462
1463
|
agentStateVersion?: number | undefined;
|
|
1463
1464
|
dataEncryptionKey?: string | null | undefined;
|
|
1464
|
-
active?: boolean | undefined;
|
|
1465
1465
|
activeAt?: number | undefined;
|
|
1466
1466
|
pendingCount?: number | undefined;
|
|
1467
1467
|
pendingVersion?: number | undefined;
|
|
@@ -1471,13 +1471,13 @@ declare const ProtocolV3SessionChangesResponseSchema: z.ZodObject<{
|
|
|
1471
1471
|
lastChangeSeq: number;
|
|
1472
1472
|
createdAt?: number | undefined;
|
|
1473
1473
|
updatedAt?: number | undefined;
|
|
1474
|
+
active?: boolean | undefined;
|
|
1474
1475
|
title?: string | null | undefined;
|
|
1475
1476
|
metadata?: string | undefined;
|
|
1476
1477
|
metadataVersion?: number | undefined;
|
|
1477
1478
|
agentState?: string | null | undefined;
|
|
1478
1479
|
agentStateVersion?: number | undefined;
|
|
1479
1480
|
dataEncryptionKey?: string | null | undefined;
|
|
1480
|
-
active?: boolean | undefined;
|
|
1481
1481
|
activeAt?: number | undefined;
|
|
1482
1482
|
pendingCount?: number | undefined;
|
|
1483
1483
|
pendingVersion?: number | undefined;
|
|
@@ -1527,13 +1527,13 @@ declare const ProtocolV3SessionChangesResponseSchema: z.ZodObject<{
|
|
|
1527
1527
|
lastChangeSeq: number;
|
|
1528
1528
|
createdAt?: number | undefined;
|
|
1529
1529
|
updatedAt?: number | undefined;
|
|
1530
|
+
active?: boolean | undefined;
|
|
1530
1531
|
title?: string | null | undefined;
|
|
1531
1532
|
metadata?: string | undefined;
|
|
1532
1533
|
metadataVersion?: number | undefined;
|
|
1533
1534
|
agentState?: string | null | undefined;
|
|
1534
1535
|
agentStateVersion?: number | undefined;
|
|
1535
1536
|
dataEncryptionKey?: string | null | undefined;
|
|
1536
|
-
active?: boolean | undefined;
|
|
1537
1537
|
activeAt?: number | undefined;
|
|
1538
1538
|
pendingCount?: number | undefined;
|
|
1539
1539
|
pendingVersion?: number | undefined;
|
|
@@ -1565,13 +1565,13 @@ declare const ProtocolV3SessionChangesResponseSchema: z.ZodObject<{
|
|
|
1565
1565
|
lastChangeSeq: number;
|
|
1566
1566
|
createdAt?: number | undefined;
|
|
1567
1567
|
updatedAt?: number | undefined;
|
|
1568
|
+
active?: boolean | undefined;
|
|
1568
1569
|
title?: string | null | undefined;
|
|
1569
1570
|
metadata?: string | undefined;
|
|
1570
1571
|
metadataVersion?: number | undefined;
|
|
1571
1572
|
agentState?: string | null | undefined;
|
|
1572
1573
|
agentStateVersion?: number | undefined;
|
|
1573
1574
|
dataEncryptionKey?: string | null | undefined;
|
|
1574
|
-
active?: boolean | undefined;
|
|
1575
1575
|
activeAt?: number | undefined;
|
|
1576
1576
|
pendingCount?: number | undefined;
|
|
1577
1577
|
pendingVersion?: number | undefined;
|
|
@@ -2344,5 +2344,4 @@ declare class Configuration {
|
|
|
2344
2344
|
}
|
|
2345
2345
|
declare const configuration: Configuration;
|
|
2346
2346
|
|
|
2347
|
-
export { ApiClient, ApiSessionClient, RawJSONLinesSchema, configuration, logger };
|
|
2348
|
-
export type { RawJSONLines };
|
|
2347
|
+
export { ApiClient, ApiSessionClient, type RawJSONLines, RawJSONLinesSchema, configuration, logger };
|