@getpaseo/server 0.1.68 → 0.1.69
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/scripts/dev-runner.js +4 -1
- package/dist/scripts/dev-runner.js.map +1 -1
- package/dist/scripts/supervisor-entrypoint.js +32 -10
- package/dist/scripts/supervisor-entrypoint.js.map +1 -1
- package/dist/scripts/supervisor.js +71 -6
- package/dist/scripts/supervisor.js.map +1 -1
- package/dist/server/server/agent/agent-storage.d.ts +2 -2
- package/dist/server/server/agent/mcp-server.js +1 -1
- package/dist/server/server/agent/mcp-server.js.map +1 -1
- package/dist/server/server/agent/mcp-shared.d.ts +2 -2
- package/dist/server/server/agent/providers/claude-agent.d.ts +2 -1
- package/dist/server/server/agent/providers/claude-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/claude-agent.js +46 -1
- package/dist/server/server/agent/providers/claude-agent.js.map +1 -1
- package/dist/server/server/bootstrap.d.ts +2 -0
- package/dist/server/server/bootstrap.d.ts.map +1 -1
- package/dist/server/server/bootstrap.js +0 -8
- package/dist/server/server/bootstrap.js.map +1 -1
- package/dist/server/server/chat/chat-rpc-schemas.d.ts +42 -42
- package/dist/server/server/chat/chat-types.d.ts +6 -6
- package/dist/server/server/config.d.ts.map +1 -1
- package/dist/server/server/config.js +20 -1
- package/dist/server/server/config.js.map +1 -1
- package/dist/server/server/daemon-worker.d.ts +2 -0
- package/dist/server/server/daemon-worker.d.ts.map +1 -0
- package/dist/server/server/{index.js → daemon-worker.js} +10 -41
- package/dist/server/server/daemon-worker.js.map +1 -0
- package/dist/server/server/logger.d.ts +2 -6
- package/dist/server/server/logger.d.ts.map +1 -1
- package/dist/server/server/logger.js +28 -118
- package/dist/server/server/logger.js.map +1 -1
- package/dist/server/server/loop/rpc-schemas.d.ts +272 -272
- package/dist/server/server/loop-service.d.ts +50 -50
- package/dist/server/server/persisted-config.d.ts +18 -16
- package/dist/server/server/persisted-config.d.ts.map +1 -1
- package/dist/server/server/persisted-config.js +2 -2
- package/dist/server/server/persisted-config.js.map +1 -1
- package/dist/server/server/schedule/rpc-schemas.d.ts +52 -52
- package/dist/server/server/schedule/types.d.ts +12 -12
- package/dist/server/shared/messages.d.ts +3073 -3073
- package/dist/server/terminal/terminal-capture.d.ts +12 -0
- package/dist/server/terminal/terminal-capture.d.ts.map +1 -0
- package/dist/server/terminal/terminal-capture.js +43 -0
- package/dist/server/terminal/terminal-capture.js.map +1 -0
- package/dist/server/terminal/terminal-manager-factory.d.ts +2 -6
- package/dist/server/terminal/terminal-manager-factory.d.ts.map +1 -1
- package/dist/server/terminal/terminal-manager-factory.js +2 -10
- package/dist/server/terminal/terminal-manager-factory.js.map +1 -1
- package/dist/server/terminal/terminal-worker-process.js +1 -1
- package/dist/server/terminal/terminal-worker-process.js.map +1 -1
- package/dist/server/terminal/terminal-worker-protocol.d.ts +1 -1
- package/dist/server/terminal/terminal-worker-protocol.d.ts.map +1 -1
- package/dist/server/terminal/terminal.d.ts +1 -11
- package/dist/server/terminal/terminal.d.ts.map +1 -1
- package/dist/server/terminal/terminal.js +1 -42
- package/dist/server/terminal/terminal.js.map +1 -1
- package/dist/server/utils/worktree.d.ts.map +1 -1
- package/dist/server/utils/worktree.js +18 -43
- package/dist/server/utils/worktree.js.map +1 -1
- package/dist/src/server/agent/agent-sdk-types.js +12 -0
- package/dist/src/server/agent/agent-sdk-types.js.map +1 -0
- package/dist/src/server/agent/agent-title-limits.js +3 -0
- package/dist/src/server/agent/agent-title-limits.js.map +1 -0
- package/dist/src/server/agent/provider-launch-config.js +189 -0
- package/dist/src/server/agent/provider-launch-config.js.map +1 -0
- package/dist/src/server/agent/provider-manifest.js +186 -0
- package/dist/src/server/agent/provider-manifest.js.map +1 -0
- package/dist/src/server/chat/chat-rpc-schemas.js +103 -0
- package/dist/src/server/chat/chat-rpc-schemas.js.map +1 -0
- package/dist/src/server/chat/chat-types.js +22 -0
- package/dist/src/server/chat/chat-types.js.map +1 -0
- package/dist/src/server/loop/rpc-schemas.js +159 -0
- package/dist/src/server/loop/rpc-schemas.js.map +1 -0
- package/dist/src/server/paseo-env.js +70 -0
- package/dist/src/server/paseo-env.js.map +1 -0
- package/dist/src/server/persisted-config.js +362 -0
- package/dist/src/server/persisted-config.js.map +1 -0
- package/dist/src/server/schedule/rpc-schemas.js +112 -0
- package/dist/src/server/schedule/rpc-schemas.js.map +1 -0
- package/dist/src/server/schedule/types.js +73 -0
- package/dist/src/server/schedule/types.js.map +1 -0
- package/dist/src/shared/agent-lifecycle.js +8 -0
- package/dist/src/shared/agent-lifecycle.js.map +1 -0
- package/dist/src/shared/client-capabilities.js +4 -0
- package/dist/src/shared/client-capabilities.js.map +1 -0
- package/dist/src/shared/literal-union.js +2 -0
- package/dist/src/shared/literal-union.js.map +1 -0
- package/dist/src/shared/messages.js +3022 -0
- package/dist/src/shared/messages.js.map +1 -0
- package/dist/src/utils/executable.js +114 -0
- package/dist/src/utils/executable.js.map +1 -0
- package/dist/src/utils/paseo-config-schema.js +60 -0
- package/dist/src/utils/paseo-config-schema.js.map +1 -0
- package/dist/src/utils/spawn.js +70 -0
- package/dist/src/utils/spawn.js.map +1 -0
- package/dist/src/utils/windows-command.js +41 -0
- package/dist/src/utils/windows-command.js.map +1 -0
- package/package.json +5 -5
- package/dist/server/server/index.d.ts +0 -2
- package/dist/server/server/index.d.ts.map +0 -1
- package/dist/server/server/index.js.map +0 -1
|
@@ -460,26 +460,26 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
460
460
|
error: string | null;
|
|
461
461
|
agentId: string | null;
|
|
462
462
|
status: "running" | "failed" | "succeeded";
|
|
463
|
+
output: string | null;
|
|
463
464
|
id: string;
|
|
464
465
|
scheduledFor: string;
|
|
465
466
|
startedAt: string;
|
|
466
467
|
endedAt: string | null;
|
|
467
|
-
output: string | null;
|
|
468
468
|
}, {
|
|
469
469
|
error: string | null;
|
|
470
470
|
agentId: string | null;
|
|
471
471
|
status: "running" | "failed" | "succeeded";
|
|
472
|
+
output: string | null;
|
|
472
473
|
id: string;
|
|
473
474
|
scheduledFor: string;
|
|
474
475
|
startedAt: string;
|
|
475
476
|
endedAt: string | null;
|
|
476
|
-
output: string | null;
|
|
477
477
|
}>, "many">;
|
|
478
478
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
479
479
|
name: string | null;
|
|
480
480
|
status: "completed" | "active" | "paused";
|
|
481
|
-
id: string;
|
|
482
481
|
createdAt: string;
|
|
482
|
+
id: string;
|
|
483
483
|
updatedAt: string;
|
|
484
484
|
prompt: string;
|
|
485
485
|
cadence: {
|
|
@@ -521,8 +521,8 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
521
521
|
}, {
|
|
522
522
|
name: string | null;
|
|
523
523
|
status: "completed" | "active" | "paused";
|
|
524
|
-
id: string;
|
|
525
524
|
createdAt: string;
|
|
525
|
+
id: string;
|
|
526
526
|
updatedAt: string;
|
|
527
527
|
prompt: string;
|
|
528
528
|
cadence: {
|
|
@@ -569,8 +569,8 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
569
569
|
schedule: {
|
|
570
570
|
name: string | null;
|
|
571
571
|
status: "completed" | "active" | "paused";
|
|
572
|
-
id: string;
|
|
573
572
|
createdAt: string;
|
|
573
|
+
id: string;
|
|
574
574
|
updatedAt: string;
|
|
575
575
|
prompt: string;
|
|
576
576
|
cadence: {
|
|
@@ -616,8 +616,8 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
616
616
|
schedule: {
|
|
617
617
|
name: string | null;
|
|
618
618
|
status: "completed" | "active" | "paused";
|
|
619
|
-
id: string;
|
|
620
619
|
createdAt: string;
|
|
620
|
+
id: string;
|
|
621
621
|
updatedAt: string;
|
|
622
622
|
prompt: string;
|
|
623
623
|
cadence: {
|
|
@@ -666,8 +666,8 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
666
666
|
schedule: {
|
|
667
667
|
name: string | null;
|
|
668
668
|
status: "completed" | "active" | "paused";
|
|
669
|
-
id: string;
|
|
670
669
|
createdAt: string;
|
|
670
|
+
id: string;
|
|
671
671
|
updatedAt: string;
|
|
672
672
|
prompt: string;
|
|
673
673
|
cadence: {
|
|
@@ -716,8 +716,8 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
716
716
|
schedule: {
|
|
717
717
|
name: string | null;
|
|
718
718
|
status: "completed" | "active" | "paused";
|
|
719
|
-
id: string;
|
|
720
719
|
createdAt: string;
|
|
720
|
+
id: string;
|
|
721
721
|
updatedAt: string;
|
|
722
722
|
prompt: string;
|
|
723
723
|
cadence: {
|
|
@@ -917,26 +917,26 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
917
917
|
error: string | null;
|
|
918
918
|
agentId: string | null;
|
|
919
919
|
status: "running" | "failed" | "succeeded";
|
|
920
|
+
output: string | null;
|
|
920
921
|
id: string;
|
|
921
922
|
scheduledFor: string;
|
|
922
923
|
startedAt: string;
|
|
923
924
|
endedAt: string | null;
|
|
924
|
-
output: string | null;
|
|
925
925
|
}, {
|
|
926
926
|
error: string | null;
|
|
927
927
|
agentId: string | null;
|
|
928
928
|
status: "running" | "failed" | "succeeded";
|
|
929
|
+
output: string | null;
|
|
929
930
|
id: string;
|
|
930
931
|
scheduledFor: string;
|
|
931
932
|
startedAt: string;
|
|
932
933
|
endedAt: string | null;
|
|
933
|
-
output: string | null;
|
|
934
934
|
}>, "many">;
|
|
935
935
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
936
936
|
name: string | null;
|
|
937
937
|
status: "completed" | "active" | "paused";
|
|
938
|
-
id: string;
|
|
939
938
|
createdAt: string;
|
|
939
|
+
id: string;
|
|
940
940
|
updatedAt: string;
|
|
941
941
|
prompt: string;
|
|
942
942
|
cadence: {
|
|
@@ -978,8 +978,8 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
978
978
|
}, {
|
|
979
979
|
name: string | null;
|
|
980
980
|
status: "completed" | "active" | "paused";
|
|
981
|
-
id: string;
|
|
982
981
|
createdAt: string;
|
|
982
|
+
id: string;
|
|
983
983
|
updatedAt: string;
|
|
984
984
|
prompt: string;
|
|
985
985
|
cadence: {
|
|
@@ -1026,8 +1026,8 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1026
1026
|
schedules: {
|
|
1027
1027
|
name: string | null;
|
|
1028
1028
|
status: "completed" | "active" | "paused";
|
|
1029
|
-
id: string;
|
|
1030
1029
|
createdAt: string;
|
|
1030
|
+
id: string;
|
|
1031
1031
|
updatedAt: string;
|
|
1032
1032
|
prompt: string;
|
|
1033
1033
|
cadence: {
|
|
@@ -1073,8 +1073,8 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1073
1073
|
schedules: {
|
|
1074
1074
|
name: string | null;
|
|
1075
1075
|
status: "completed" | "active" | "paused";
|
|
1076
|
-
id: string;
|
|
1077
1076
|
createdAt: string;
|
|
1077
|
+
id: string;
|
|
1078
1078
|
updatedAt: string;
|
|
1079
1079
|
prompt: string;
|
|
1080
1080
|
cadence: {
|
|
@@ -1123,8 +1123,8 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1123
1123
|
schedules: {
|
|
1124
1124
|
name: string | null;
|
|
1125
1125
|
status: "completed" | "active" | "paused";
|
|
1126
|
-
id: string;
|
|
1127
1126
|
createdAt: string;
|
|
1127
|
+
id: string;
|
|
1128
1128
|
updatedAt: string;
|
|
1129
1129
|
prompt: string;
|
|
1130
1130
|
cadence: {
|
|
@@ -1173,8 +1173,8 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1173
1173
|
schedules: {
|
|
1174
1174
|
name: string | null;
|
|
1175
1175
|
status: "completed" | "active" | "paused";
|
|
1176
|
-
id: string;
|
|
1177
1176
|
createdAt: string;
|
|
1177
|
+
id: string;
|
|
1178
1178
|
updatedAt: string;
|
|
1179
1179
|
prompt: string;
|
|
1180
1180
|
cadence: {
|
|
@@ -1374,26 +1374,26 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1374
1374
|
error: string | null;
|
|
1375
1375
|
agentId: string | null;
|
|
1376
1376
|
status: "running" | "failed" | "succeeded";
|
|
1377
|
+
output: string | null;
|
|
1377
1378
|
id: string;
|
|
1378
1379
|
scheduledFor: string;
|
|
1379
1380
|
startedAt: string;
|
|
1380
1381
|
endedAt: string | null;
|
|
1381
|
-
output: string | null;
|
|
1382
1382
|
}, {
|
|
1383
1383
|
error: string | null;
|
|
1384
1384
|
agentId: string | null;
|
|
1385
1385
|
status: "running" | "failed" | "succeeded";
|
|
1386
|
+
output: string | null;
|
|
1386
1387
|
id: string;
|
|
1387
1388
|
scheduledFor: string;
|
|
1388
1389
|
startedAt: string;
|
|
1389
1390
|
endedAt: string | null;
|
|
1390
|
-
output: string | null;
|
|
1391
1391
|
}>, "many">;
|
|
1392
1392
|
}, "strip", z.ZodTypeAny, {
|
|
1393
1393
|
name: string | null;
|
|
1394
1394
|
status: "completed" | "active" | "paused";
|
|
1395
|
-
id: string;
|
|
1396
1395
|
createdAt: string;
|
|
1396
|
+
id: string;
|
|
1397
1397
|
updatedAt: string;
|
|
1398
1398
|
prompt: string;
|
|
1399
1399
|
cadence: {
|
|
@@ -1436,17 +1436,17 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1436
1436
|
error: string | null;
|
|
1437
1437
|
agentId: string | null;
|
|
1438
1438
|
status: "running" | "failed" | "succeeded";
|
|
1439
|
+
output: string | null;
|
|
1439
1440
|
id: string;
|
|
1440
1441
|
scheduledFor: string;
|
|
1441
1442
|
startedAt: string;
|
|
1442
1443
|
endedAt: string | null;
|
|
1443
|
-
output: string | null;
|
|
1444
1444
|
}[];
|
|
1445
1445
|
}, {
|
|
1446
1446
|
name: string | null;
|
|
1447
1447
|
status: "completed" | "active" | "paused";
|
|
1448
|
-
id: string;
|
|
1449
1448
|
createdAt: string;
|
|
1449
|
+
id: string;
|
|
1450
1450
|
updatedAt: string;
|
|
1451
1451
|
prompt: string;
|
|
1452
1452
|
cadence: {
|
|
@@ -1489,11 +1489,11 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1489
1489
|
error: string | null;
|
|
1490
1490
|
agentId: string | null;
|
|
1491
1491
|
status: "running" | "failed" | "succeeded";
|
|
1492
|
+
output: string | null;
|
|
1492
1493
|
id: string;
|
|
1493
1494
|
scheduledFor: string;
|
|
1494
1495
|
startedAt: string;
|
|
1495
1496
|
endedAt: string | null;
|
|
1496
|
-
output: string | null;
|
|
1497
1497
|
}[];
|
|
1498
1498
|
}>>;
|
|
1499
1499
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -1503,8 +1503,8 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1503
1503
|
schedule: {
|
|
1504
1504
|
name: string | null;
|
|
1505
1505
|
status: "completed" | "active" | "paused";
|
|
1506
|
-
id: string;
|
|
1507
1506
|
createdAt: string;
|
|
1507
|
+
id: string;
|
|
1508
1508
|
updatedAt: string;
|
|
1509
1509
|
prompt: string;
|
|
1510
1510
|
cadence: {
|
|
@@ -1547,11 +1547,11 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1547
1547
|
error: string | null;
|
|
1548
1548
|
agentId: string | null;
|
|
1549
1549
|
status: "running" | "failed" | "succeeded";
|
|
1550
|
+
output: string | null;
|
|
1550
1551
|
id: string;
|
|
1551
1552
|
scheduledFor: string;
|
|
1552
1553
|
startedAt: string;
|
|
1553
1554
|
endedAt: string | null;
|
|
1554
|
-
output: string | null;
|
|
1555
1555
|
}[];
|
|
1556
1556
|
} | null;
|
|
1557
1557
|
}, {
|
|
@@ -1560,8 +1560,8 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1560
1560
|
schedule: {
|
|
1561
1561
|
name: string | null;
|
|
1562
1562
|
status: "completed" | "active" | "paused";
|
|
1563
|
-
id: string;
|
|
1564
1563
|
createdAt: string;
|
|
1564
|
+
id: string;
|
|
1565
1565
|
updatedAt: string;
|
|
1566
1566
|
prompt: string;
|
|
1567
1567
|
cadence: {
|
|
@@ -1604,11 +1604,11 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1604
1604
|
error: string | null;
|
|
1605
1605
|
agentId: string | null;
|
|
1606
1606
|
status: "running" | "failed" | "succeeded";
|
|
1607
|
+
output: string | null;
|
|
1607
1608
|
id: string;
|
|
1608
1609
|
scheduledFor: string;
|
|
1609
1610
|
startedAt: string;
|
|
1610
1611
|
endedAt: string | null;
|
|
1611
|
-
output: string | null;
|
|
1612
1612
|
}[];
|
|
1613
1613
|
} | null;
|
|
1614
1614
|
}>;
|
|
@@ -1620,8 +1620,8 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1620
1620
|
schedule: {
|
|
1621
1621
|
name: string | null;
|
|
1622
1622
|
status: "completed" | "active" | "paused";
|
|
1623
|
-
id: string;
|
|
1624
1623
|
createdAt: string;
|
|
1624
|
+
id: string;
|
|
1625
1625
|
updatedAt: string;
|
|
1626
1626
|
prompt: string;
|
|
1627
1627
|
cadence: {
|
|
@@ -1664,11 +1664,11 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1664
1664
|
error: string | null;
|
|
1665
1665
|
agentId: string | null;
|
|
1666
1666
|
status: "running" | "failed" | "succeeded";
|
|
1667
|
+
output: string | null;
|
|
1667
1668
|
id: string;
|
|
1668
1669
|
scheduledFor: string;
|
|
1669
1670
|
startedAt: string;
|
|
1670
1671
|
endedAt: string | null;
|
|
1671
|
-
output: string | null;
|
|
1672
1672
|
}[];
|
|
1673
1673
|
} | null;
|
|
1674
1674
|
};
|
|
@@ -1680,8 +1680,8 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1680
1680
|
schedule: {
|
|
1681
1681
|
name: string | null;
|
|
1682
1682
|
status: "completed" | "active" | "paused";
|
|
1683
|
-
id: string;
|
|
1684
1683
|
createdAt: string;
|
|
1684
|
+
id: string;
|
|
1685
1685
|
updatedAt: string;
|
|
1686
1686
|
prompt: string;
|
|
1687
1687
|
cadence: {
|
|
@@ -1724,11 +1724,11 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1724
1724
|
error: string | null;
|
|
1725
1725
|
agentId: string | null;
|
|
1726
1726
|
status: "running" | "failed" | "succeeded";
|
|
1727
|
+
output: string | null;
|
|
1727
1728
|
id: string;
|
|
1728
1729
|
scheduledFor: string;
|
|
1729
1730
|
startedAt: string;
|
|
1730
1731
|
endedAt: string | null;
|
|
1731
|
-
output: string | null;
|
|
1732
1732
|
}[];
|
|
1733
1733
|
} | null;
|
|
1734
1734
|
};
|
|
@@ -1750,20 +1750,20 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1750
1750
|
error: string | null;
|
|
1751
1751
|
agentId: string | null;
|
|
1752
1752
|
status: "running" | "failed" | "succeeded";
|
|
1753
|
+
output: string | null;
|
|
1753
1754
|
id: string;
|
|
1754
1755
|
scheduledFor: string;
|
|
1755
1756
|
startedAt: string;
|
|
1756
1757
|
endedAt: string | null;
|
|
1757
|
-
output: string | null;
|
|
1758
1758
|
}, {
|
|
1759
1759
|
error: string | null;
|
|
1760
1760
|
agentId: string | null;
|
|
1761
1761
|
status: "running" | "failed" | "succeeded";
|
|
1762
|
+
output: string | null;
|
|
1762
1763
|
id: string;
|
|
1763
1764
|
scheduledFor: string;
|
|
1764
1765
|
startedAt: string;
|
|
1765
1766
|
endedAt: string | null;
|
|
1766
|
-
output: string | null;
|
|
1767
1767
|
}>, "many">;
|
|
1768
1768
|
error: z.ZodNullable<z.ZodString>;
|
|
1769
1769
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1773,11 +1773,11 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1773
1773
|
error: string | null;
|
|
1774
1774
|
agentId: string | null;
|
|
1775
1775
|
status: "running" | "failed" | "succeeded";
|
|
1776
|
+
output: string | null;
|
|
1776
1777
|
id: string;
|
|
1777
1778
|
scheduledFor: string;
|
|
1778
1779
|
startedAt: string;
|
|
1779
1780
|
endedAt: string | null;
|
|
1780
|
-
output: string | null;
|
|
1781
1781
|
}[];
|
|
1782
1782
|
}, {
|
|
1783
1783
|
error: string | null;
|
|
@@ -1786,11 +1786,11 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1786
1786
|
error: string | null;
|
|
1787
1787
|
agentId: string | null;
|
|
1788
1788
|
status: "running" | "failed" | "succeeded";
|
|
1789
|
+
output: string | null;
|
|
1789
1790
|
id: string;
|
|
1790
1791
|
scheduledFor: string;
|
|
1791
1792
|
startedAt: string;
|
|
1792
1793
|
endedAt: string | null;
|
|
1793
|
-
output: string | null;
|
|
1794
1794
|
}[];
|
|
1795
1795
|
}>;
|
|
1796
1796
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1802,11 +1802,11 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1802
1802
|
error: string | null;
|
|
1803
1803
|
agentId: string | null;
|
|
1804
1804
|
status: "running" | "failed" | "succeeded";
|
|
1805
|
+
output: string | null;
|
|
1805
1806
|
id: string;
|
|
1806
1807
|
scheduledFor: string;
|
|
1807
1808
|
startedAt: string;
|
|
1808
1809
|
endedAt: string | null;
|
|
1809
|
-
output: string | null;
|
|
1810
1810
|
}[];
|
|
1811
1811
|
};
|
|
1812
1812
|
}, {
|
|
@@ -1818,11 +1818,11 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1818
1818
|
error: string | null;
|
|
1819
1819
|
agentId: string | null;
|
|
1820
1820
|
status: "running" | "failed" | "succeeded";
|
|
1821
|
+
output: string | null;
|
|
1821
1822
|
id: string;
|
|
1822
1823
|
scheduledFor: string;
|
|
1823
1824
|
startedAt: string;
|
|
1824
1825
|
endedAt: string | null;
|
|
1825
|
-
output: string | null;
|
|
1826
1826
|
}[];
|
|
1827
1827
|
};
|
|
1828
1828
|
}>;
|
|
@@ -1984,26 +1984,26 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
1984
1984
|
error: string | null;
|
|
1985
1985
|
agentId: string | null;
|
|
1986
1986
|
status: "running" | "failed" | "succeeded";
|
|
1987
|
+
output: string | null;
|
|
1987
1988
|
id: string;
|
|
1988
1989
|
scheduledFor: string;
|
|
1989
1990
|
startedAt: string;
|
|
1990
1991
|
endedAt: string | null;
|
|
1991
|
-
output: string | null;
|
|
1992
1992
|
}, {
|
|
1993
1993
|
error: string | null;
|
|
1994
1994
|
agentId: string | null;
|
|
1995
1995
|
status: "running" | "failed" | "succeeded";
|
|
1996
|
+
output: string | null;
|
|
1996
1997
|
id: string;
|
|
1997
1998
|
scheduledFor: string;
|
|
1998
1999
|
startedAt: string;
|
|
1999
2000
|
endedAt: string | null;
|
|
2000
|
-
output: string | null;
|
|
2001
2001
|
}>, "many">;
|
|
2002
2002
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
2003
2003
|
name: string | null;
|
|
2004
2004
|
status: "completed" | "active" | "paused";
|
|
2005
|
-
id: string;
|
|
2006
2005
|
createdAt: string;
|
|
2006
|
+
id: string;
|
|
2007
2007
|
updatedAt: string;
|
|
2008
2008
|
prompt: string;
|
|
2009
2009
|
cadence: {
|
|
@@ -2045,8 +2045,8 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2045
2045
|
}, {
|
|
2046
2046
|
name: string | null;
|
|
2047
2047
|
status: "completed" | "active" | "paused";
|
|
2048
|
-
id: string;
|
|
2049
2048
|
createdAt: string;
|
|
2049
|
+
id: string;
|
|
2050
2050
|
updatedAt: string;
|
|
2051
2051
|
prompt: string;
|
|
2052
2052
|
cadence: {
|
|
@@ -2093,8 +2093,8 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2093
2093
|
schedule: {
|
|
2094
2094
|
name: string | null;
|
|
2095
2095
|
status: "completed" | "active" | "paused";
|
|
2096
|
-
id: string;
|
|
2097
2096
|
createdAt: string;
|
|
2097
|
+
id: string;
|
|
2098
2098
|
updatedAt: string;
|
|
2099
2099
|
prompt: string;
|
|
2100
2100
|
cadence: {
|
|
@@ -2140,8 +2140,8 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2140
2140
|
schedule: {
|
|
2141
2141
|
name: string | null;
|
|
2142
2142
|
status: "completed" | "active" | "paused";
|
|
2143
|
-
id: string;
|
|
2144
2143
|
createdAt: string;
|
|
2144
|
+
id: string;
|
|
2145
2145
|
updatedAt: string;
|
|
2146
2146
|
prompt: string;
|
|
2147
2147
|
cadence: {
|
|
@@ -2190,8 +2190,8 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2190
2190
|
schedule: {
|
|
2191
2191
|
name: string | null;
|
|
2192
2192
|
status: "completed" | "active" | "paused";
|
|
2193
|
-
id: string;
|
|
2194
2193
|
createdAt: string;
|
|
2194
|
+
id: string;
|
|
2195
2195
|
updatedAt: string;
|
|
2196
2196
|
prompt: string;
|
|
2197
2197
|
cadence: {
|
|
@@ -2240,8 +2240,8 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2240
2240
|
schedule: {
|
|
2241
2241
|
name: string | null;
|
|
2242
2242
|
status: "completed" | "active" | "paused";
|
|
2243
|
-
id: string;
|
|
2244
2243
|
createdAt: string;
|
|
2244
|
+
id: string;
|
|
2245
2245
|
updatedAt: string;
|
|
2246
2246
|
prompt: string;
|
|
2247
2247
|
cadence: {
|
|
@@ -2441,26 +2441,26 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2441
2441
|
error: string | null;
|
|
2442
2442
|
agentId: string | null;
|
|
2443
2443
|
status: "running" | "failed" | "succeeded";
|
|
2444
|
+
output: string | null;
|
|
2444
2445
|
id: string;
|
|
2445
2446
|
scheduledFor: string;
|
|
2446
2447
|
startedAt: string;
|
|
2447
2448
|
endedAt: string | null;
|
|
2448
|
-
output: string | null;
|
|
2449
2449
|
}, {
|
|
2450
2450
|
error: string | null;
|
|
2451
2451
|
agentId: string | null;
|
|
2452
2452
|
status: "running" | "failed" | "succeeded";
|
|
2453
|
+
output: string | null;
|
|
2453
2454
|
id: string;
|
|
2454
2455
|
scheduledFor: string;
|
|
2455
2456
|
startedAt: string;
|
|
2456
2457
|
endedAt: string | null;
|
|
2457
|
-
output: string | null;
|
|
2458
2458
|
}>, "many">;
|
|
2459
2459
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
2460
2460
|
name: string | null;
|
|
2461
2461
|
status: "completed" | "active" | "paused";
|
|
2462
|
-
id: string;
|
|
2463
2462
|
createdAt: string;
|
|
2463
|
+
id: string;
|
|
2464
2464
|
updatedAt: string;
|
|
2465
2465
|
prompt: string;
|
|
2466
2466
|
cadence: {
|
|
@@ -2502,8 +2502,8 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2502
2502
|
}, {
|
|
2503
2503
|
name: string | null;
|
|
2504
2504
|
status: "completed" | "active" | "paused";
|
|
2505
|
-
id: string;
|
|
2506
2505
|
createdAt: string;
|
|
2506
|
+
id: string;
|
|
2507
2507
|
updatedAt: string;
|
|
2508
2508
|
prompt: string;
|
|
2509
2509
|
cadence: {
|
|
@@ -2550,8 +2550,8 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2550
2550
|
schedule: {
|
|
2551
2551
|
name: string | null;
|
|
2552
2552
|
status: "completed" | "active" | "paused";
|
|
2553
|
-
id: string;
|
|
2554
2553
|
createdAt: string;
|
|
2554
|
+
id: string;
|
|
2555
2555
|
updatedAt: string;
|
|
2556
2556
|
prompt: string;
|
|
2557
2557
|
cadence: {
|
|
@@ -2597,8 +2597,8 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2597
2597
|
schedule: {
|
|
2598
2598
|
name: string | null;
|
|
2599
2599
|
status: "completed" | "active" | "paused";
|
|
2600
|
-
id: string;
|
|
2601
2600
|
createdAt: string;
|
|
2601
|
+
id: string;
|
|
2602
2602
|
updatedAt: string;
|
|
2603
2603
|
prompt: string;
|
|
2604
2604
|
cadence: {
|
|
@@ -2647,8 +2647,8 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2647
2647
|
schedule: {
|
|
2648
2648
|
name: string | null;
|
|
2649
2649
|
status: "completed" | "active" | "paused";
|
|
2650
|
-
id: string;
|
|
2651
2650
|
createdAt: string;
|
|
2651
|
+
id: string;
|
|
2652
2652
|
updatedAt: string;
|
|
2653
2653
|
prompt: string;
|
|
2654
2654
|
cadence: {
|
|
@@ -2697,8 +2697,8 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2697
2697
|
schedule: {
|
|
2698
2698
|
name: string | null;
|
|
2699
2699
|
status: "completed" | "active" | "paused";
|
|
2700
|
-
id: string;
|
|
2701
2700
|
createdAt: string;
|
|
2701
|
+
id: string;
|
|
2702
2702
|
updatedAt: string;
|
|
2703
2703
|
prompt: string;
|
|
2704
2704
|
cadence: {
|
|
@@ -145,20 +145,20 @@ export declare const ScheduleRunSchema: z.ZodObject<{
|
|
|
145
145
|
error: string | null;
|
|
146
146
|
agentId: string | null;
|
|
147
147
|
status: "running" | "failed" | "succeeded";
|
|
148
|
+
output: string | null;
|
|
148
149
|
id: string;
|
|
149
150
|
scheduledFor: string;
|
|
150
151
|
startedAt: string;
|
|
151
152
|
endedAt: string | null;
|
|
152
|
-
output: string | null;
|
|
153
153
|
}, {
|
|
154
154
|
error: string | null;
|
|
155
155
|
agentId: string | null;
|
|
156
156
|
status: "running" | "failed" | "succeeded";
|
|
157
|
+
output: string | null;
|
|
157
158
|
id: string;
|
|
158
159
|
scheduledFor: string;
|
|
159
160
|
startedAt: string;
|
|
160
161
|
endedAt: string | null;
|
|
161
|
-
output: string | null;
|
|
162
162
|
}>;
|
|
163
163
|
export type ScheduleRun = z.infer<typeof ScheduleRunSchema>;
|
|
164
164
|
export declare const StoredScheduleSchema: z.ZodObject<{
|
|
@@ -315,26 +315,26 @@ export declare const StoredScheduleSchema: z.ZodObject<{
|
|
|
315
315
|
error: string | null;
|
|
316
316
|
agentId: string | null;
|
|
317
317
|
status: "running" | "failed" | "succeeded";
|
|
318
|
+
output: string | null;
|
|
318
319
|
id: string;
|
|
319
320
|
scheduledFor: string;
|
|
320
321
|
startedAt: string;
|
|
321
322
|
endedAt: string | null;
|
|
322
|
-
output: string | null;
|
|
323
323
|
}, {
|
|
324
324
|
error: string | null;
|
|
325
325
|
agentId: string | null;
|
|
326
326
|
status: "running" | "failed" | "succeeded";
|
|
327
|
+
output: string | null;
|
|
327
328
|
id: string;
|
|
328
329
|
scheduledFor: string;
|
|
329
330
|
startedAt: string;
|
|
330
331
|
endedAt: string | null;
|
|
331
|
-
output: string | null;
|
|
332
332
|
}>, "many">;
|
|
333
333
|
}, "strip", z.ZodTypeAny, {
|
|
334
334
|
name: string | null;
|
|
335
335
|
status: "completed" | "active" | "paused";
|
|
336
|
-
id: string;
|
|
337
336
|
createdAt: string;
|
|
337
|
+
id: string;
|
|
338
338
|
updatedAt: string;
|
|
339
339
|
prompt: string;
|
|
340
340
|
cadence: {
|
|
@@ -377,17 +377,17 @@ export declare const StoredScheduleSchema: z.ZodObject<{
|
|
|
377
377
|
error: string | null;
|
|
378
378
|
agentId: string | null;
|
|
379
379
|
status: "running" | "failed" | "succeeded";
|
|
380
|
+
output: string | null;
|
|
380
381
|
id: string;
|
|
381
382
|
scheduledFor: string;
|
|
382
383
|
startedAt: string;
|
|
383
384
|
endedAt: string | null;
|
|
384
|
-
output: string | null;
|
|
385
385
|
}[];
|
|
386
386
|
}, {
|
|
387
387
|
name: string | null;
|
|
388
388
|
status: "completed" | "active" | "paused";
|
|
389
|
-
id: string;
|
|
390
389
|
createdAt: string;
|
|
390
|
+
id: string;
|
|
391
391
|
updatedAt: string;
|
|
392
392
|
prompt: string;
|
|
393
393
|
cadence: {
|
|
@@ -430,11 +430,11 @@ export declare const StoredScheduleSchema: z.ZodObject<{
|
|
|
430
430
|
error: string | null;
|
|
431
431
|
agentId: string | null;
|
|
432
432
|
status: "running" | "failed" | "succeeded";
|
|
433
|
+
output: string | null;
|
|
433
434
|
id: string;
|
|
434
435
|
scheduledFor: string;
|
|
435
436
|
startedAt: string;
|
|
436
437
|
endedAt: string | null;
|
|
437
|
-
output: string | null;
|
|
438
438
|
}[];
|
|
439
439
|
}>;
|
|
440
440
|
export type StoredSchedule = z.infer<typeof StoredScheduleSchema>;
|
|
@@ -592,26 +592,26 @@ export declare const ScheduleSummarySchema: z.ZodObject<Omit<{
|
|
|
592
592
|
error: string | null;
|
|
593
593
|
agentId: string | null;
|
|
594
594
|
status: "running" | "failed" | "succeeded";
|
|
595
|
+
output: string | null;
|
|
595
596
|
id: string;
|
|
596
597
|
scheduledFor: string;
|
|
597
598
|
startedAt: string;
|
|
598
599
|
endedAt: string | null;
|
|
599
|
-
output: string | null;
|
|
600
600
|
}, {
|
|
601
601
|
error: string | null;
|
|
602
602
|
agentId: string | null;
|
|
603
603
|
status: "running" | "failed" | "succeeded";
|
|
604
|
+
output: string | null;
|
|
604
605
|
id: string;
|
|
605
606
|
scheduledFor: string;
|
|
606
607
|
startedAt: string;
|
|
607
608
|
endedAt: string | null;
|
|
608
|
-
output: string | null;
|
|
609
609
|
}>, "many">;
|
|
610
610
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
611
611
|
name: string | null;
|
|
612
612
|
status: "completed" | "active" | "paused";
|
|
613
|
-
id: string;
|
|
614
613
|
createdAt: string;
|
|
614
|
+
id: string;
|
|
615
615
|
updatedAt: string;
|
|
616
616
|
prompt: string;
|
|
617
617
|
cadence: {
|
|
@@ -653,8 +653,8 @@ export declare const ScheduleSummarySchema: z.ZodObject<Omit<{
|
|
|
653
653
|
}, {
|
|
654
654
|
name: string | null;
|
|
655
655
|
status: "completed" | "active" | "paused";
|
|
656
|
-
id: string;
|
|
657
656
|
createdAt: string;
|
|
657
|
+
id: string;
|
|
658
658
|
updatedAt: string;
|
|
659
659
|
prompt: string;
|
|
660
660
|
cadence: {
|