botmux 2.54.0 → 2.55.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/adapters/backend/zellij-observe-backend.d.ts +15 -0
- package/dist/adapters/backend/zellij-observe-backend.d.ts.map +1 -1
- package/dist/adapters/backend/zellij-observe-backend.js +37 -0
- package/dist/adapters/backend/zellij-observe-backend.js.map +1 -1
- package/dist/adapters/cli/claude-code.d.ts +3 -3
- package/dist/adapters/cli/claude-code.js.map +1 -1
- package/dist/adapters/cli/codex.d.ts.map +1 -1
- package/dist/adapters/cli/codex.js +44 -28
- package/dist/adapters/cli/codex.js.map +1 -1
- package/dist/adapters/cli/seed.d.ts +1 -1
- package/dist/adapters/cli/seed.js +2 -2
- package/dist/adapters/cli/seed.js.map +1 -1
- package/dist/adapters/cli/types.d.ts +5 -1
- package/dist/adapters/cli/types.d.ts.map +1 -1
- package/dist/bot-registry.d.ts +8 -0
- package/dist/bot-registry.d.ts.map +1 -1
- package/dist/bot-registry.js +31 -5
- package/dist/bot-registry.js.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +250 -101
- package/dist/cli.js.map +1 -1
- package/dist/core/dispatch.d.ts +23 -0
- package/dist/core/dispatch.d.ts.map +1 -1
- package/dist/core/dispatch.js +17 -0
- package/dist/core/dispatch.js.map +1 -1
- package/dist/core/pending-response.d.ts +0 -6
- package/dist/core/pending-response.d.ts.map +1 -1
- package/dist/core/pending-response.js +0 -5
- package/dist/core/pending-response.js.map +1 -1
- package/dist/core/session-discovery.d.ts.map +1 -1
- package/dist/core/session-discovery.js +5 -0
- package/dist/core/session-discovery.js.map +1 -1
- package/dist/core/worker-pool.d.ts +26 -0
- package/dist/core/worker-pool.d.ts.map +1 -1
- package/dist/core/worker-pool.js +68 -1
- package/dist/core/worker-pool.js.map +1 -1
- package/dist/dashboard/bot-onboarding.d.ts +46 -3
- package/dist/dashboard/bot-onboarding.d.ts.map +1 -1
- package/dist/dashboard/bot-onboarding.js +86 -7
- package/dist/dashboard/bot-onboarding.js.map +1 -1
- package/dist/dashboard/federated-group-core.js +8 -4
- package/dist/dashboard/federated-group-core.js.map +1 -1
- package/dist/dashboard/federation-api.d.ts.map +1 -1
- package/dist/dashboard/federation-api.js +22 -2
- package/dist/dashboard/federation-api.js.map +1 -1
- package/dist/dashboard/web/bot-onboarding.d.ts.map +1 -1
- package/dist/dashboard/web/bot-onboarding.js +139 -20
- package/dist/dashboard/web/bot-onboarding.js.map +1 -1
- package/dist/dashboard/web/i18n.d.ts.map +1 -1
- package/dist/dashboard/web/i18n.js +36 -6
- package/dist/dashboard/web/i18n.js.map +1 -1
- package/dist/dashboard-web/app.js +171 -143
- package/dist/dashboard-web/style.css +58 -0
- package/dist/dashboard.js +37 -1
- package/dist/dashboard.js.map +1 -1
- package/dist/global-config.d.ts +5 -0
- package/dist/global-config.d.ts.map +1 -1
- package/dist/global-config.js +17 -0
- package/dist/global-config.js.map +1 -1
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +4 -0
- package/dist/i18n/en.js.map +1 -1
- package/dist/i18n/zh.d.ts.map +1 -1
- package/dist/i18n/zh.js +4 -0
- package/dist/i18n/zh.js.map +1 -1
- package/dist/im/lark/card-builder.d.ts +1 -1
- package/dist/im/lark/card-builder.js +1 -1
- package/dist/im/lark/card-handler.d.ts.map +1 -1
- package/dist/im/lark/card-handler.js +59 -10
- package/dist/im/lark/card-handler.js.map +1 -1
- package/dist/im/lark/client.d.ts +3 -1
- package/dist/im/lark/client.d.ts.map +1 -1
- package/dist/im/lark/client.js +7 -2
- package/dist/im/lark/client.js.map +1 -1
- package/dist/im/lark/event-dispatcher.d.ts.map +1 -1
- package/dist/im/lark/event-dispatcher.js +8 -6
- package/dist/im/lark/event-dispatcher.js.map +1 -1
- package/dist/services/codex-paths.d.ts +7 -0
- package/dist/services/codex-paths.d.ts.map +1 -0
- package/dist/services/codex-paths.js +19 -0
- package/dist/services/codex-paths.js.map +1 -0
- package/dist/services/codex-transcript.d.ts.map +1 -1
- package/dist/services/codex-transcript.js +5 -4
- package/dist/services/codex-transcript.js.map +1 -1
- package/dist/services/voice/audio.d.ts +32 -0
- package/dist/services/voice/audio.d.ts.map +1 -0
- package/dist/services/voice/audio.js +114 -0
- package/dist/services/voice/audio.js.map +1 -0
- package/dist/services/voice/index.d.ts +32 -0
- package/dist/services/voice/index.d.ts.map +1 -0
- package/dist/services/voice/index.js +98 -0
- package/dist/services/voice/index.js.map +1 -0
- package/dist/services/voice/openai.d.ts +24 -0
- package/dist/services/voice/openai.d.ts.map +1 -0
- package/dist/services/voice/openai.js +47 -0
- package/dist/services/voice/openai.js.map +1 -0
- package/dist/services/voice/sami.d.ts +22 -0
- package/dist/services/voice/sami.d.ts.map +1 -0
- package/dist/services/voice/sami.js +128 -0
- package/dist/services/voice/sami.js.map +1 -0
- package/dist/services/voice/types.d.ts +32 -0
- package/dist/services/voice/types.d.ts.map +1 -0
- package/dist/services/voice/types.js +2 -0
- package/dist/services/voice/types.js.map +1 -0
- package/dist/setup/bot-config-editor.d.ts +9 -0
- package/dist/setup/bot-config-editor.d.ts.map +1 -1
- package/dist/setup/bot-config-editor.js +26 -0
- package/dist/setup/bot-config-editor.js.map +1 -1
- package/dist/setup/verify-permissions.js +3 -3
- package/dist/setup/verify-permissions.js.map +1 -1
- package/dist/skills/definitions.d.ts.map +1 -1
- package/dist/skills/definitions.js +0 -1
- package/dist/skills/definitions.js.map +1 -1
- package/dist/worker.js +33 -2
- package/dist/worker.js.map +1 -1
- package/dist/workflows/events/schema.d.ts +140 -140
- package/package.json +1 -1
|
@@ -113,6 +113,7 @@ export declare const RunCreatedEventSchema: z.ZodObject<{
|
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
114
|
type: "runCreated";
|
|
115
115
|
runId: string;
|
|
116
|
+
timestamp: number;
|
|
116
117
|
schemaVersion: 1;
|
|
117
118
|
eventId: string;
|
|
118
119
|
payload: {
|
|
@@ -137,12 +138,12 @@ export declare const RunCreatedEventSchema: z.ZodObject<{
|
|
|
137
138
|
bytes: number;
|
|
138
139
|
schemaVersion: number;
|
|
139
140
|
};
|
|
140
|
-
timestamp: number;
|
|
141
141
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
142
142
|
payloadHash?: string | undefined;
|
|
143
143
|
}, {
|
|
144
144
|
type: "runCreated";
|
|
145
145
|
runId: string;
|
|
146
|
+
timestamp: number;
|
|
146
147
|
schemaVersion: 1;
|
|
147
148
|
eventId: string;
|
|
148
149
|
payload: {
|
|
@@ -167,7 +168,6 @@ export declare const RunCreatedEventSchema: z.ZodObject<{
|
|
|
167
168
|
bytes: number;
|
|
168
169
|
schemaVersion: number;
|
|
169
170
|
};
|
|
170
|
-
timestamp: number;
|
|
171
171
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
172
172
|
payloadHash?: string | undefined;
|
|
173
173
|
}>;
|
|
@@ -195,6 +195,7 @@ export declare const RunStartedEventSchema: z.ZodObject<{
|
|
|
195
195
|
}, "strip", z.ZodTypeAny, {
|
|
196
196
|
type: "runStarted";
|
|
197
197
|
runId: string;
|
|
198
|
+
timestamp: number;
|
|
198
199
|
schemaVersion: 1;
|
|
199
200
|
eventId: string;
|
|
200
201
|
payload: {} | {
|
|
@@ -202,12 +203,12 @@ export declare const RunStartedEventSchema: z.ZodObject<{
|
|
|
202
203
|
bytes: number;
|
|
203
204
|
schemaVersion: number;
|
|
204
205
|
};
|
|
205
|
-
timestamp: number;
|
|
206
206
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
207
207
|
payloadHash?: string | undefined;
|
|
208
208
|
}, {
|
|
209
209
|
type: "runStarted";
|
|
210
210
|
runId: string;
|
|
211
|
+
timestamp: number;
|
|
211
212
|
schemaVersion: 1;
|
|
212
213
|
eventId: string;
|
|
213
214
|
payload: {} | {
|
|
@@ -215,7 +216,6 @@ export declare const RunStartedEventSchema: z.ZodObject<{
|
|
|
215
216
|
bytes: number;
|
|
216
217
|
schemaVersion: number;
|
|
217
218
|
};
|
|
218
|
-
timestamp: number;
|
|
219
219
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
220
220
|
payloadHash?: string | undefined;
|
|
221
221
|
}>;
|
|
@@ -279,6 +279,7 @@ export declare const RunSucceededEventSchema: z.ZodObject<{
|
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
280
|
type: "runSucceeded";
|
|
281
281
|
runId: string;
|
|
282
|
+
timestamp: number;
|
|
282
283
|
schemaVersion: 1;
|
|
283
284
|
eventId: string;
|
|
284
285
|
payload: {
|
|
@@ -294,12 +295,12 @@ export declare const RunSucceededEventSchema: z.ZodObject<{
|
|
|
294
295
|
bytes: number;
|
|
295
296
|
schemaVersion: number;
|
|
296
297
|
};
|
|
297
|
-
timestamp: number;
|
|
298
298
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
299
299
|
payloadHash?: string | undefined;
|
|
300
300
|
}, {
|
|
301
301
|
type: "runSucceeded";
|
|
302
302
|
runId: string;
|
|
303
|
+
timestamp: number;
|
|
303
304
|
schemaVersion: 1;
|
|
304
305
|
eventId: string;
|
|
305
306
|
payload: {
|
|
@@ -315,7 +316,6 @@ export declare const RunSucceededEventSchema: z.ZodObject<{
|
|
|
315
316
|
bytes: number;
|
|
316
317
|
schemaVersion: number;
|
|
317
318
|
};
|
|
318
|
-
timestamp: number;
|
|
319
319
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
320
320
|
payloadHash?: string | undefined;
|
|
321
321
|
}>;
|
|
@@ -352,6 +352,7 @@ export declare const RunFailedEventSchema: z.ZodObject<{
|
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
353
353
|
type: "runFailed";
|
|
354
354
|
runId: string;
|
|
355
|
+
timestamp: number;
|
|
355
356
|
schemaVersion: 1;
|
|
356
357
|
eventId: string;
|
|
357
358
|
payload: {
|
|
@@ -362,12 +363,12 @@ export declare const RunFailedEventSchema: z.ZodObject<{
|
|
|
362
363
|
bytes: number;
|
|
363
364
|
schemaVersion: number;
|
|
364
365
|
};
|
|
365
|
-
timestamp: number;
|
|
366
366
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
367
367
|
payloadHash?: string | undefined;
|
|
368
368
|
}, {
|
|
369
369
|
type: "runFailed";
|
|
370
370
|
runId: string;
|
|
371
|
+
timestamp: number;
|
|
371
372
|
schemaVersion: 1;
|
|
372
373
|
eventId: string;
|
|
373
374
|
payload: {
|
|
@@ -378,7 +379,6 @@ export declare const RunFailedEventSchema: z.ZodObject<{
|
|
|
378
379
|
bytes: number;
|
|
379
380
|
schemaVersion: number;
|
|
380
381
|
};
|
|
381
|
-
timestamp: number;
|
|
382
382
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
383
383
|
payloadHash?: string | undefined;
|
|
384
384
|
}>;
|
|
@@ -412,6 +412,7 @@ export declare const RunCanceledEventSchema: z.ZodObject<{
|
|
|
412
412
|
}, "strip", z.ZodTypeAny, {
|
|
413
413
|
type: "runCanceled";
|
|
414
414
|
runId: string;
|
|
415
|
+
timestamp: number;
|
|
415
416
|
schemaVersion: 1;
|
|
416
417
|
eventId: string;
|
|
417
418
|
payload: {
|
|
@@ -421,12 +422,12 @@ export declare const RunCanceledEventSchema: z.ZodObject<{
|
|
|
421
422
|
bytes: number;
|
|
422
423
|
schemaVersion: number;
|
|
423
424
|
};
|
|
424
|
-
timestamp: number;
|
|
425
425
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
426
426
|
payloadHash?: string | undefined;
|
|
427
427
|
}, {
|
|
428
428
|
type: "runCanceled";
|
|
429
429
|
runId: string;
|
|
430
|
+
timestamp: number;
|
|
430
431
|
schemaVersion: 1;
|
|
431
432
|
eventId: string;
|
|
432
433
|
payload: {
|
|
@@ -436,7 +437,6 @@ export declare const RunCanceledEventSchema: z.ZodObject<{
|
|
|
436
437
|
bytes: number;
|
|
437
438
|
schemaVersion: number;
|
|
438
439
|
};
|
|
439
|
-
timestamp: number;
|
|
440
440
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
441
441
|
payloadHash?: string | undefined;
|
|
442
442
|
}>;
|
|
@@ -476,6 +476,7 @@ export declare const NodeWaitingEventSchema: z.ZodObject<{
|
|
|
476
476
|
}, "strip", z.ZodTypeAny, {
|
|
477
477
|
type: "nodeWaiting";
|
|
478
478
|
runId: string;
|
|
479
|
+
timestamp: number;
|
|
479
480
|
schemaVersion: 1;
|
|
480
481
|
eventId: string;
|
|
481
482
|
payload: {
|
|
@@ -487,12 +488,12 @@ export declare const NodeWaitingEventSchema: z.ZodObject<{
|
|
|
487
488
|
bytes: number;
|
|
488
489
|
schemaVersion: number;
|
|
489
490
|
};
|
|
490
|
-
timestamp: number;
|
|
491
491
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
492
492
|
payloadHash?: string | undefined;
|
|
493
493
|
}, {
|
|
494
494
|
type: "nodeWaiting";
|
|
495
495
|
runId: string;
|
|
496
|
+
timestamp: number;
|
|
496
497
|
schemaVersion: 1;
|
|
497
498
|
eventId: string;
|
|
498
499
|
payload: {
|
|
@@ -504,7 +505,6 @@ export declare const NodeWaitingEventSchema: z.ZodObject<{
|
|
|
504
505
|
bytes: number;
|
|
505
506
|
schemaVersion: number;
|
|
506
507
|
};
|
|
507
|
-
timestamp: number;
|
|
508
508
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
509
509
|
payloadHash?: string | undefined;
|
|
510
510
|
}>;
|
|
@@ -544,6 +544,7 @@ export declare const NodeRetryingEventSchema: z.ZodObject<{
|
|
|
544
544
|
}, "strip", z.ZodTypeAny, {
|
|
545
545
|
type: "nodeRetrying";
|
|
546
546
|
runId: string;
|
|
547
|
+
timestamp: number;
|
|
547
548
|
schemaVersion: 1;
|
|
548
549
|
eventId: string;
|
|
549
550
|
payload: {
|
|
@@ -555,12 +556,12 @@ export declare const NodeRetryingEventSchema: z.ZodObject<{
|
|
|
555
556
|
bytes: number;
|
|
556
557
|
schemaVersion: number;
|
|
557
558
|
};
|
|
558
|
-
timestamp: number;
|
|
559
559
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
560
560
|
payloadHash?: string | undefined;
|
|
561
561
|
}, {
|
|
562
562
|
type: "nodeRetrying";
|
|
563
563
|
runId: string;
|
|
564
|
+
timestamp: number;
|
|
564
565
|
schemaVersion: 1;
|
|
565
566
|
eventId: string;
|
|
566
567
|
payload: {
|
|
@@ -572,7 +573,6 @@ export declare const NodeRetryingEventSchema: z.ZodObject<{
|
|
|
572
573
|
bytes: number;
|
|
573
574
|
schemaVersion: number;
|
|
574
575
|
};
|
|
575
|
-
timestamp: number;
|
|
576
576
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
577
577
|
payloadHash?: string | undefined;
|
|
578
578
|
}>;
|
|
@@ -609,6 +609,7 @@ export declare const NodeSucceededEventSchema: z.ZodObject<{
|
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
610
610
|
type: "nodeSucceeded";
|
|
611
611
|
runId: string;
|
|
612
|
+
timestamp: number;
|
|
612
613
|
schemaVersion: 1;
|
|
613
614
|
eventId: string;
|
|
614
615
|
payload: {
|
|
@@ -619,12 +620,12 @@ export declare const NodeSucceededEventSchema: z.ZodObject<{
|
|
|
619
620
|
bytes: number;
|
|
620
621
|
schemaVersion: number;
|
|
621
622
|
};
|
|
622
|
-
timestamp: number;
|
|
623
623
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
624
624
|
payloadHash?: string | undefined;
|
|
625
625
|
}, {
|
|
626
626
|
type: "nodeSucceeded";
|
|
627
627
|
runId: string;
|
|
628
|
+
timestamp: number;
|
|
628
629
|
schemaVersion: 1;
|
|
629
630
|
eventId: string;
|
|
630
631
|
payload: {
|
|
@@ -635,7 +636,6 @@ export declare const NodeSucceededEventSchema: z.ZodObject<{
|
|
|
635
636
|
bytes: number;
|
|
636
637
|
schemaVersion: number;
|
|
637
638
|
};
|
|
638
|
-
timestamp: number;
|
|
639
639
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
640
640
|
payloadHash?: string | undefined;
|
|
641
641
|
}>;
|
|
@@ -675,6 +675,7 @@ export declare const NodeFailedEventSchema: z.ZodObject<{
|
|
|
675
675
|
}, "strip", z.ZodTypeAny, {
|
|
676
676
|
type: "nodeFailed";
|
|
677
677
|
runId: string;
|
|
678
|
+
timestamp: number;
|
|
678
679
|
schemaVersion: 1;
|
|
679
680
|
eventId: string;
|
|
680
681
|
payload: {
|
|
@@ -686,12 +687,12 @@ export declare const NodeFailedEventSchema: z.ZodObject<{
|
|
|
686
687
|
bytes: number;
|
|
687
688
|
schemaVersion: number;
|
|
688
689
|
};
|
|
689
|
-
timestamp: number;
|
|
690
690
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
691
691
|
payloadHash?: string | undefined;
|
|
692
692
|
}, {
|
|
693
693
|
type: "nodeFailed";
|
|
694
694
|
runId: string;
|
|
695
|
+
timestamp: number;
|
|
695
696
|
schemaVersion: 1;
|
|
696
697
|
eventId: string;
|
|
697
698
|
payload: {
|
|
@@ -703,7 +704,6 @@ export declare const NodeFailedEventSchema: z.ZodObject<{
|
|
|
703
704
|
bytes: number;
|
|
704
705
|
schemaVersion: number;
|
|
705
706
|
};
|
|
706
|
-
timestamp: number;
|
|
707
707
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
708
708
|
payloadHash?: string | undefined;
|
|
709
709
|
}>;
|
|
@@ -740,6 +740,7 @@ export declare const NodeSkippedEventSchema: z.ZodObject<{
|
|
|
740
740
|
}, "strip", z.ZodTypeAny, {
|
|
741
741
|
type: "nodeSkipped";
|
|
742
742
|
runId: string;
|
|
743
|
+
timestamp: number;
|
|
743
744
|
schemaVersion: 1;
|
|
744
745
|
eventId: string;
|
|
745
746
|
payload: {
|
|
@@ -750,12 +751,12 @@ export declare const NodeSkippedEventSchema: z.ZodObject<{
|
|
|
750
751
|
bytes: number;
|
|
751
752
|
schemaVersion: number;
|
|
752
753
|
};
|
|
753
|
-
timestamp: number;
|
|
754
754
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
755
755
|
payloadHash?: string | undefined;
|
|
756
756
|
}, {
|
|
757
757
|
type: "nodeSkipped";
|
|
758
758
|
runId: string;
|
|
759
|
+
timestamp: number;
|
|
759
760
|
schemaVersion: 1;
|
|
760
761
|
eventId: string;
|
|
761
762
|
payload: {
|
|
@@ -766,7 +767,6 @@ export declare const NodeSkippedEventSchema: z.ZodObject<{
|
|
|
766
767
|
bytes: number;
|
|
767
768
|
schemaVersion: number;
|
|
768
769
|
};
|
|
769
|
-
timestamp: number;
|
|
770
770
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
771
771
|
payloadHash?: string | undefined;
|
|
772
772
|
}>;
|
|
@@ -803,6 +803,7 @@ export declare const NodeCanceledEventSchema: z.ZodObject<{
|
|
|
803
803
|
}, "strip", z.ZodTypeAny, {
|
|
804
804
|
type: "nodeCanceled";
|
|
805
805
|
runId: string;
|
|
806
|
+
timestamp: number;
|
|
806
807
|
schemaVersion: 1;
|
|
807
808
|
eventId: string;
|
|
808
809
|
payload: {
|
|
@@ -813,12 +814,12 @@ export declare const NodeCanceledEventSchema: z.ZodObject<{
|
|
|
813
814
|
bytes: number;
|
|
814
815
|
schemaVersion: number;
|
|
815
816
|
};
|
|
816
|
-
timestamp: number;
|
|
817
817
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
818
818
|
payloadHash?: string | undefined;
|
|
819
819
|
}, {
|
|
820
820
|
type: "nodeCanceled";
|
|
821
821
|
runId: string;
|
|
822
|
+
timestamp: number;
|
|
822
823
|
schemaVersion: 1;
|
|
823
824
|
eventId: string;
|
|
824
825
|
payload: {
|
|
@@ -829,7 +830,6 @@ export declare const NodeCanceledEventSchema: z.ZodObject<{
|
|
|
829
830
|
bytes: number;
|
|
830
831
|
schemaVersion: number;
|
|
831
832
|
};
|
|
832
|
-
timestamp: number;
|
|
833
833
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
834
834
|
payloadHash?: string | undefined;
|
|
835
835
|
}>;
|
|
@@ -869,6 +869,7 @@ export declare const ActivityRunningEventSchema: z.ZodObject<{
|
|
|
869
869
|
}, "strip", z.ZodTypeAny, {
|
|
870
870
|
type: "activityRunning";
|
|
871
871
|
runId: string;
|
|
872
|
+
timestamp: number;
|
|
872
873
|
schemaVersion: 1;
|
|
873
874
|
eventId: string;
|
|
874
875
|
payload: {
|
|
@@ -880,12 +881,12 @@ export declare const ActivityRunningEventSchema: z.ZodObject<{
|
|
|
880
881
|
bytes: number;
|
|
881
882
|
schemaVersion: number;
|
|
882
883
|
};
|
|
883
|
-
timestamp: number;
|
|
884
884
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
885
885
|
payloadHash?: string | undefined;
|
|
886
886
|
}, {
|
|
887
887
|
type: "activityRunning";
|
|
888
888
|
runId: string;
|
|
889
|
+
timestamp: number;
|
|
889
890
|
schemaVersion: 1;
|
|
890
891
|
eventId: string;
|
|
891
892
|
payload: {
|
|
@@ -897,7 +898,6 @@ export declare const ActivityRunningEventSchema: z.ZodObject<{
|
|
|
897
898
|
bytes: number;
|
|
898
899
|
schemaVersion: number;
|
|
899
900
|
};
|
|
900
|
-
timestamp: number;
|
|
901
901
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
902
902
|
payloadHash?: string | undefined;
|
|
903
903
|
}>;
|
|
@@ -934,6 +934,7 @@ export declare const ActivityWaitingEventSchema: z.ZodObject<{
|
|
|
934
934
|
}, "strip", z.ZodTypeAny, {
|
|
935
935
|
type: "activityWaiting";
|
|
936
936
|
runId: string;
|
|
937
|
+
timestamp: number;
|
|
937
938
|
schemaVersion: 1;
|
|
938
939
|
eventId: string;
|
|
939
940
|
payload: {
|
|
@@ -944,12 +945,12 @@ export declare const ActivityWaitingEventSchema: z.ZodObject<{
|
|
|
944
945
|
bytes: number;
|
|
945
946
|
schemaVersion: number;
|
|
946
947
|
};
|
|
947
|
-
timestamp: number;
|
|
948
948
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
949
949
|
payloadHash?: string | undefined;
|
|
950
950
|
}, {
|
|
951
951
|
type: "activityWaiting";
|
|
952
952
|
runId: string;
|
|
953
|
+
timestamp: number;
|
|
953
954
|
schemaVersion: 1;
|
|
954
955
|
eventId: string;
|
|
955
956
|
payload: {
|
|
@@ -960,7 +961,6 @@ export declare const ActivityWaitingEventSchema: z.ZodObject<{
|
|
|
960
961
|
bytes: number;
|
|
961
962
|
schemaVersion: number;
|
|
962
963
|
};
|
|
963
|
-
timestamp: number;
|
|
964
964
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
965
965
|
payloadHash?: string | undefined;
|
|
966
966
|
}>;
|
|
@@ -1006,6 +1006,7 @@ export declare const ActivityTimedOutEventSchema: z.ZodObject<{
|
|
|
1006
1006
|
}, "strip", z.ZodTypeAny, {
|
|
1007
1007
|
type: "activityTimedOut";
|
|
1008
1008
|
runId: string;
|
|
1009
|
+
timestamp: number;
|
|
1009
1010
|
schemaVersion: 1;
|
|
1010
1011
|
eventId: string;
|
|
1011
1012
|
payload: {
|
|
@@ -1019,12 +1020,12 @@ export declare const ActivityTimedOutEventSchema: z.ZodObject<{
|
|
|
1019
1020
|
bytes: number;
|
|
1020
1021
|
schemaVersion: number;
|
|
1021
1022
|
};
|
|
1022
|
-
timestamp: number;
|
|
1023
1023
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1024
1024
|
payloadHash?: string | undefined;
|
|
1025
1025
|
}, {
|
|
1026
1026
|
type: "activityTimedOut";
|
|
1027
1027
|
runId: string;
|
|
1028
|
+
timestamp: number;
|
|
1028
1029
|
schemaVersion: 1;
|
|
1029
1030
|
eventId: string;
|
|
1030
1031
|
payload: {
|
|
@@ -1038,7 +1039,6 @@ export declare const ActivityTimedOutEventSchema: z.ZodObject<{
|
|
|
1038
1039
|
bytes: number;
|
|
1039
1040
|
schemaVersion: number;
|
|
1040
1041
|
};
|
|
1041
|
-
timestamp: number;
|
|
1042
1042
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1043
1043
|
payloadHash?: string | undefined;
|
|
1044
1044
|
}>;
|
|
@@ -1075,6 +1075,7 @@ export declare const LoopStartedEventSchema: z.ZodObject<{
|
|
|
1075
1075
|
}, "strip", z.ZodTypeAny, {
|
|
1076
1076
|
type: "loopStarted";
|
|
1077
1077
|
runId: string;
|
|
1078
|
+
timestamp: number;
|
|
1078
1079
|
schemaVersion: 1;
|
|
1079
1080
|
eventId: string;
|
|
1080
1081
|
payload: {
|
|
@@ -1085,12 +1086,12 @@ export declare const LoopStartedEventSchema: z.ZodObject<{
|
|
|
1085
1086
|
bytes: number;
|
|
1086
1087
|
schemaVersion: number;
|
|
1087
1088
|
};
|
|
1088
|
-
timestamp: number;
|
|
1089
1089
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1090
1090
|
payloadHash?: string | undefined;
|
|
1091
1091
|
}, {
|
|
1092
1092
|
type: "loopStarted";
|
|
1093
1093
|
runId: string;
|
|
1094
|
+
timestamp: number;
|
|
1094
1095
|
schemaVersion: 1;
|
|
1095
1096
|
eventId: string;
|
|
1096
1097
|
payload: {
|
|
@@ -1101,7 +1102,6 @@ export declare const LoopStartedEventSchema: z.ZodObject<{
|
|
|
1101
1102
|
bytes: number;
|
|
1102
1103
|
schemaVersion: number;
|
|
1103
1104
|
};
|
|
1104
|
-
timestamp: number;
|
|
1105
1105
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1106
1106
|
payloadHash?: string | undefined;
|
|
1107
1107
|
}>;
|
|
@@ -1141,6 +1141,7 @@ export declare const LoopIterationStartedEventSchema: z.ZodObject<{
|
|
|
1141
1141
|
}, "strip", z.ZodTypeAny, {
|
|
1142
1142
|
type: "loopIterationStarted";
|
|
1143
1143
|
runId: string;
|
|
1144
|
+
timestamp: number;
|
|
1144
1145
|
schemaVersion: 1;
|
|
1145
1146
|
eventId: string;
|
|
1146
1147
|
payload: {
|
|
@@ -1152,12 +1153,12 @@ export declare const LoopIterationStartedEventSchema: z.ZodObject<{
|
|
|
1152
1153
|
bytes: number;
|
|
1153
1154
|
schemaVersion: number;
|
|
1154
1155
|
};
|
|
1155
|
-
timestamp: number;
|
|
1156
1156
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1157
1157
|
payloadHash?: string | undefined;
|
|
1158
1158
|
}, {
|
|
1159
1159
|
type: "loopIterationStarted";
|
|
1160
1160
|
runId: string;
|
|
1161
|
+
timestamp: number;
|
|
1161
1162
|
schemaVersion: 1;
|
|
1162
1163
|
eventId: string;
|
|
1163
1164
|
payload: {
|
|
@@ -1169,7 +1170,6 @@ export declare const LoopIterationStartedEventSchema: z.ZodObject<{
|
|
|
1169
1170
|
bytes: number;
|
|
1170
1171
|
schemaVersion: number;
|
|
1171
1172
|
};
|
|
1172
|
-
timestamp: number;
|
|
1173
1173
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1174
1174
|
payloadHash?: string | undefined;
|
|
1175
1175
|
}>;
|
|
@@ -1224,6 +1224,7 @@ export declare const LoopIterationFinishedEventSchema: z.ZodObject<{
|
|
|
1224
1224
|
}, "strip", z.ZodTypeAny, {
|
|
1225
1225
|
type: "loopIterationFinished";
|
|
1226
1226
|
runId: string;
|
|
1227
|
+
timestamp: number;
|
|
1227
1228
|
schemaVersion: 1;
|
|
1228
1229
|
eventId: string;
|
|
1229
1230
|
payload: {
|
|
@@ -1240,12 +1241,12 @@ export declare const LoopIterationFinishedEventSchema: z.ZodObject<{
|
|
|
1240
1241
|
bytes: number;
|
|
1241
1242
|
schemaVersion: number;
|
|
1242
1243
|
};
|
|
1243
|
-
timestamp: number;
|
|
1244
1244
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1245
1245
|
payloadHash?: string | undefined;
|
|
1246
1246
|
}, {
|
|
1247
1247
|
type: "loopIterationFinished";
|
|
1248
1248
|
runId: string;
|
|
1249
|
+
timestamp: number;
|
|
1249
1250
|
schemaVersion: 1;
|
|
1250
1251
|
eventId: string;
|
|
1251
1252
|
payload: {
|
|
@@ -1262,7 +1263,6 @@ export declare const LoopIterationFinishedEventSchema: z.ZodObject<{
|
|
|
1262
1263
|
bytes: number;
|
|
1263
1264
|
schemaVersion: number;
|
|
1264
1265
|
};
|
|
1265
|
-
timestamp: number;
|
|
1266
1266
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1267
1267
|
payloadHash?: string | undefined;
|
|
1268
1268
|
}>;
|
|
@@ -1341,6 +1341,7 @@ export declare const LoopFinishedEventSchema: z.ZodObject<{
|
|
|
1341
1341
|
}, "strip", z.ZodTypeAny, {
|
|
1342
1342
|
type: "loopFinished";
|
|
1343
1343
|
runId: string;
|
|
1344
|
+
timestamp: number;
|
|
1344
1345
|
schemaVersion: 1;
|
|
1345
1346
|
eventId: string;
|
|
1346
1347
|
payload: {
|
|
@@ -1361,12 +1362,12 @@ export declare const LoopFinishedEventSchema: z.ZodObject<{
|
|
|
1361
1362
|
bytes: number;
|
|
1362
1363
|
schemaVersion: number;
|
|
1363
1364
|
};
|
|
1364
|
-
timestamp: number;
|
|
1365
1365
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1366
1366
|
payloadHash?: string | undefined;
|
|
1367
1367
|
}, {
|
|
1368
1368
|
type: "loopFinished";
|
|
1369
1369
|
runId: string;
|
|
1370
|
+
timestamp: number;
|
|
1370
1371
|
schemaVersion: 1;
|
|
1371
1372
|
eventId: string;
|
|
1372
1373
|
payload: {
|
|
@@ -1387,7 +1388,6 @@ export declare const LoopFinishedEventSchema: z.ZodObject<{
|
|
|
1387
1388
|
bytes: number;
|
|
1388
1389
|
schemaVersion: number;
|
|
1389
1390
|
};
|
|
1390
|
-
timestamp: number;
|
|
1391
1391
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1392
1392
|
payloadHash?: string | undefined;
|
|
1393
1393
|
}>;
|
|
@@ -1430,6 +1430,7 @@ export declare const ConditionEvaluatedEventSchema: z.ZodObject<{
|
|
|
1430
1430
|
}, "strip", z.ZodTypeAny, {
|
|
1431
1431
|
type: "conditionEvaluated";
|
|
1432
1432
|
runId: string;
|
|
1433
|
+
timestamp: number;
|
|
1433
1434
|
schemaVersion: 1;
|
|
1434
1435
|
eventId: string;
|
|
1435
1436
|
payload: {
|
|
@@ -1442,12 +1443,12 @@ export declare const ConditionEvaluatedEventSchema: z.ZodObject<{
|
|
|
1442
1443
|
bytes: number;
|
|
1443
1444
|
schemaVersion: number;
|
|
1444
1445
|
};
|
|
1445
|
-
timestamp: number;
|
|
1446
1446
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1447
1447
|
payloadHash?: string | undefined;
|
|
1448
1448
|
}, {
|
|
1449
1449
|
type: "conditionEvaluated";
|
|
1450
1450
|
runId: string;
|
|
1451
|
+
timestamp: number;
|
|
1451
1452
|
schemaVersion: 1;
|
|
1452
1453
|
eventId: string;
|
|
1453
1454
|
payload: {
|
|
@@ -1460,7 +1461,6 @@ export declare const ConditionEvaluatedEventSchema: z.ZodObject<{
|
|
|
1460
1461
|
bytes: number;
|
|
1461
1462
|
schemaVersion: number;
|
|
1462
1463
|
};
|
|
1463
|
-
timestamp: number;
|
|
1464
1464
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1465
1465
|
payloadHash?: string | undefined;
|
|
1466
1466
|
}>;
|
|
@@ -1506,6 +1506,7 @@ export declare const LeaseSignedEventSchema: z.ZodObject<{
|
|
|
1506
1506
|
}, "strip", z.ZodTypeAny, {
|
|
1507
1507
|
type: "leaseSigned";
|
|
1508
1508
|
runId: string;
|
|
1509
|
+
timestamp: number;
|
|
1509
1510
|
schemaVersion: 1;
|
|
1510
1511
|
eventId: string;
|
|
1511
1512
|
payload: {
|
|
@@ -1519,12 +1520,12 @@ export declare const LeaseSignedEventSchema: z.ZodObject<{
|
|
|
1519
1520
|
bytes: number;
|
|
1520
1521
|
schemaVersion: number;
|
|
1521
1522
|
};
|
|
1522
|
-
timestamp: number;
|
|
1523
1523
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1524
1524
|
payloadHash?: string | undefined;
|
|
1525
1525
|
}, {
|
|
1526
1526
|
type: "leaseSigned";
|
|
1527
1527
|
runId: string;
|
|
1528
|
+
timestamp: number;
|
|
1528
1529
|
schemaVersion: 1;
|
|
1529
1530
|
eventId: string;
|
|
1530
1531
|
payload: {
|
|
@@ -1538,7 +1539,6 @@ export declare const LeaseSignedEventSchema: z.ZodObject<{
|
|
|
1538
1539
|
bytes: number;
|
|
1539
1540
|
schemaVersion: number;
|
|
1540
1541
|
};
|
|
1541
|
-
timestamp: number;
|
|
1542
1542
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1543
1543
|
payloadHash?: string | undefined;
|
|
1544
1544
|
}>;
|
|
@@ -1614,6 +1614,7 @@ export declare const AttemptCreatedEventSchema: z.ZodObject<{
|
|
|
1614
1614
|
}, "strip", z.ZodTypeAny, {
|
|
1615
1615
|
type: "attemptCreated";
|
|
1616
1616
|
runId: string;
|
|
1617
|
+
timestamp: number;
|
|
1617
1618
|
schemaVersion: 1;
|
|
1618
1619
|
eventId: string;
|
|
1619
1620
|
payload: {
|
|
@@ -1633,12 +1634,12 @@ export declare const AttemptCreatedEventSchema: z.ZodObject<{
|
|
|
1633
1634
|
bytes: number;
|
|
1634
1635
|
schemaVersion: number;
|
|
1635
1636
|
};
|
|
1636
|
-
timestamp: number;
|
|
1637
1637
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1638
1638
|
payloadHash?: string | undefined;
|
|
1639
1639
|
}, {
|
|
1640
1640
|
type: "attemptCreated";
|
|
1641
1641
|
runId: string;
|
|
1642
|
+
timestamp: number;
|
|
1642
1643
|
schemaVersion: 1;
|
|
1643
1644
|
eventId: string;
|
|
1644
1645
|
payload: {
|
|
@@ -1658,7 +1659,6 @@ export declare const AttemptCreatedEventSchema: z.ZodObject<{
|
|
|
1658
1659
|
bytes: number;
|
|
1659
1660
|
schemaVersion: number;
|
|
1660
1661
|
};
|
|
1661
|
-
timestamp: number;
|
|
1662
1662
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1663
1663
|
payloadHash?: string | undefined;
|
|
1664
1664
|
}>;
|
|
@@ -1726,6 +1726,7 @@ export declare const BackoffScheduledEventSchema: z.ZodObject<{
|
|
|
1726
1726
|
}, "strip", z.ZodTypeAny, {
|
|
1727
1727
|
type: "backoffScheduled";
|
|
1728
1728
|
runId: string;
|
|
1729
|
+
timestamp: number;
|
|
1729
1730
|
schemaVersion: 1;
|
|
1730
1731
|
eventId: string;
|
|
1731
1732
|
payload: {
|
|
@@ -1743,12 +1744,12 @@ export declare const BackoffScheduledEventSchema: z.ZodObject<{
|
|
|
1743
1744
|
bytes: number;
|
|
1744
1745
|
schemaVersion: number;
|
|
1745
1746
|
};
|
|
1746
|
-
timestamp: number;
|
|
1747
1747
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1748
1748
|
payloadHash?: string | undefined;
|
|
1749
1749
|
}, {
|
|
1750
1750
|
type: "backoffScheduled";
|
|
1751
1751
|
runId: string;
|
|
1752
|
+
timestamp: number;
|
|
1752
1753
|
schemaVersion: 1;
|
|
1753
1754
|
eventId: string;
|
|
1754
1755
|
payload: {
|
|
@@ -1766,7 +1767,6 @@ export declare const BackoffScheduledEventSchema: z.ZodObject<{
|
|
|
1766
1767
|
bytes: number;
|
|
1767
1768
|
schemaVersion: number;
|
|
1768
1769
|
};
|
|
1769
|
-
timestamp: number;
|
|
1770
1770
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1771
1771
|
payloadHash?: string | undefined;
|
|
1772
1772
|
}>;
|
|
@@ -1803,6 +1803,7 @@ export declare const BackoffElapsedEventSchema: z.ZodObject<{
|
|
|
1803
1803
|
}, "strip", z.ZodTypeAny, {
|
|
1804
1804
|
type: "backoffElapsed";
|
|
1805
1805
|
runId: string;
|
|
1806
|
+
timestamp: number;
|
|
1806
1807
|
schemaVersion: 1;
|
|
1807
1808
|
eventId: string;
|
|
1808
1809
|
payload: {
|
|
@@ -1813,12 +1814,12 @@ export declare const BackoffElapsedEventSchema: z.ZodObject<{
|
|
|
1813
1814
|
bytes: number;
|
|
1814
1815
|
schemaVersion: number;
|
|
1815
1816
|
};
|
|
1816
|
-
timestamp: number;
|
|
1817
1817
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1818
1818
|
payloadHash?: string | undefined;
|
|
1819
1819
|
}, {
|
|
1820
1820
|
type: "backoffElapsed";
|
|
1821
1821
|
runId: string;
|
|
1822
|
+
timestamp: number;
|
|
1822
1823
|
schemaVersion: 1;
|
|
1823
1824
|
eventId: string;
|
|
1824
1825
|
payload: {
|
|
@@ -1829,7 +1830,6 @@ export declare const BackoffElapsedEventSchema: z.ZodObject<{
|
|
|
1829
1830
|
bytes: number;
|
|
1830
1831
|
schemaVersion: number;
|
|
1831
1832
|
};
|
|
1832
|
-
timestamp: number;
|
|
1833
1833
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1834
1834
|
payloadHash?: string | undefined;
|
|
1835
1835
|
}>;
|
|
@@ -1878,6 +1878,7 @@ export declare const EffectAttemptedEventSchema: z.ZodObject<{
|
|
|
1878
1878
|
}, "strip", z.ZodTypeAny, {
|
|
1879
1879
|
type: "effectAttempted";
|
|
1880
1880
|
runId: string;
|
|
1881
|
+
timestamp: number;
|
|
1881
1882
|
schemaVersion: 1;
|
|
1882
1883
|
eventId: string;
|
|
1883
1884
|
payload: {
|
|
@@ -1892,12 +1893,12 @@ export declare const EffectAttemptedEventSchema: z.ZodObject<{
|
|
|
1892
1893
|
bytes: number;
|
|
1893
1894
|
schemaVersion: number;
|
|
1894
1895
|
};
|
|
1895
|
-
timestamp: number;
|
|
1896
1896
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1897
1897
|
payloadHash?: string | undefined;
|
|
1898
1898
|
}, {
|
|
1899
1899
|
type: "effectAttempted";
|
|
1900
1900
|
runId: string;
|
|
1901
|
+
timestamp: number;
|
|
1901
1902
|
schemaVersion: 1;
|
|
1902
1903
|
eventId: string;
|
|
1903
1904
|
payload: {
|
|
@@ -1912,7 +1913,6 @@ export declare const EffectAttemptedEventSchema: z.ZodObject<{
|
|
|
1912
1913
|
bytes: number;
|
|
1913
1914
|
schemaVersion: number;
|
|
1914
1915
|
};
|
|
1915
|
-
timestamp: number;
|
|
1916
1916
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
1917
1917
|
payloadHash?: string | undefined;
|
|
1918
1918
|
}>;
|
|
@@ -1985,6 +1985,7 @@ export declare const ActivitySucceededEventSchema: z.ZodObject<{
|
|
|
1985
1985
|
}, "strip", z.ZodTypeAny, {
|
|
1986
1986
|
type: "activitySucceeded";
|
|
1987
1987
|
runId: string;
|
|
1988
|
+
timestamp: number;
|
|
1988
1989
|
schemaVersion: 1;
|
|
1989
1990
|
eventId: string;
|
|
1990
1991
|
payload: {
|
|
@@ -2003,12 +2004,12 @@ export declare const ActivitySucceededEventSchema: z.ZodObject<{
|
|
|
2003
2004
|
bytes: number;
|
|
2004
2005
|
schemaVersion: number;
|
|
2005
2006
|
};
|
|
2006
|
-
timestamp: number;
|
|
2007
2007
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2008
2008
|
payloadHash?: string | undefined;
|
|
2009
2009
|
}, {
|
|
2010
2010
|
type: "activitySucceeded";
|
|
2011
2011
|
runId: string;
|
|
2012
|
+
timestamp: number;
|
|
2012
2013
|
schemaVersion: 1;
|
|
2013
2014
|
eventId: string;
|
|
2014
2015
|
payload: {
|
|
@@ -2027,7 +2028,6 @@ export declare const ActivitySucceededEventSchema: z.ZodObject<{
|
|
|
2027
2028
|
bytes: number;
|
|
2028
2029
|
schemaVersion: number;
|
|
2029
2030
|
};
|
|
2030
|
-
timestamp: number;
|
|
2031
2031
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2032
2032
|
payloadHash?: string | undefined;
|
|
2033
2033
|
}>;
|
|
@@ -2092,6 +2092,7 @@ export declare const ActivityFailedEventSchema: z.ZodObject<{
|
|
|
2092
2092
|
}, "strip", z.ZodTypeAny, {
|
|
2093
2093
|
type: "activityFailed";
|
|
2094
2094
|
runId: string;
|
|
2095
|
+
timestamp: number;
|
|
2095
2096
|
schemaVersion: 1;
|
|
2096
2097
|
eventId: string;
|
|
2097
2098
|
payload: {
|
|
@@ -2108,12 +2109,12 @@ export declare const ActivityFailedEventSchema: z.ZodObject<{
|
|
|
2108
2109
|
bytes: number;
|
|
2109
2110
|
schemaVersion: number;
|
|
2110
2111
|
};
|
|
2111
|
-
timestamp: number;
|
|
2112
2112
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2113
2113
|
payloadHash?: string | undefined;
|
|
2114
2114
|
}, {
|
|
2115
2115
|
type: "activityFailed";
|
|
2116
2116
|
runId: string;
|
|
2117
|
+
timestamp: number;
|
|
2117
2118
|
schemaVersion: 1;
|
|
2118
2119
|
eventId: string;
|
|
2119
2120
|
payload: {
|
|
@@ -2130,7 +2131,6 @@ export declare const ActivityFailedEventSchema: z.ZodObject<{
|
|
|
2130
2131
|
bytes: number;
|
|
2131
2132
|
schemaVersion: number;
|
|
2132
2133
|
};
|
|
2133
|
-
timestamp: number;
|
|
2134
2134
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2135
2135
|
payloadHash?: string | undefined;
|
|
2136
2136
|
}>;
|
|
@@ -2218,6 +2218,7 @@ export declare const WaitCreatedEventSchema: z.ZodObject<{
|
|
|
2218
2218
|
}, "strip", z.ZodTypeAny, {
|
|
2219
2219
|
type: "waitCreated";
|
|
2220
2220
|
runId: string;
|
|
2221
|
+
timestamp: number;
|
|
2221
2222
|
schemaVersion: 1;
|
|
2222
2223
|
eventId: string;
|
|
2223
2224
|
payload: {
|
|
@@ -2241,12 +2242,12 @@ export declare const WaitCreatedEventSchema: z.ZodObject<{
|
|
|
2241
2242
|
bytes: number;
|
|
2242
2243
|
schemaVersion: number;
|
|
2243
2244
|
};
|
|
2244
|
-
timestamp: number;
|
|
2245
2245
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2246
2246
|
payloadHash?: string | undefined;
|
|
2247
2247
|
}, {
|
|
2248
2248
|
type: "waitCreated";
|
|
2249
2249
|
runId: string;
|
|
2250
|
+
timestamp: number;
|
|
2250
2251
|
schemaVersion: 1;
|
|
2251
2252
|
eventId: string;
|
|
2252
2253
|
payload: {
|
|
@@ -2270,7 +2271,6 @@ export declare const WaitCreatedEventSchema: z.ZodObject<{
|
|
|
2270
2271
|
bytes: number;
|
|
2271
2272
|
schemaVersion: number;
|
|
2272
2273
|
};
|
|
2273
|
-
timestamp: number;
|
|
2274
2274
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2275
2275
|
payloadHash?: string | undefined;
|
|
2276
2276
|
}>;
|
|
@@ -2313,6 +2313,7 @@ export declare const WaitResolvedEventSchema: z.ZodObject<{
|
|
|
2313
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2314
2314
|
type: "waitResolved";
|
|
2315
2315
|
runId: string;
|
|
2316
|
+
timestamp: number;
|
|
2316
2317
|
schemaVersion: 1;
|
|
2317
2318
|
eventId: string;
|
|
2318
2319
|
payload: {
|
|
@@ -2325,12 +2326,12 @@ export declare const WaitResolvedEventSchema: z.ZodObject<{
|
|
|
2325
2326
|
bytes: number;
|
|
2326
2327
|
schemaVersion: number;
|
|
2327
2328
|
};
|
|
2328
|
-
timestamp: number;
|
|
2329
2329
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2330
2330
|
payloadHash?: string | undefined;
|
|
2331
2331
|
}, {
|
|
2332
2332
|
type: "waitResolved";
|
|
2333
2333
|
runId: string;
|
|
2334
|
+
timestamp: number;
|
|
2334
2335
|
schemaVersion: 1;
|
|
2335
2336
|
eventId: string;
|
|
2336
2337
|
payload: {
|
|
@@ -2343,7 +2344,6 @@ export declare const WaitResolvedEventSchema: z.ZodObject<{
|
|
|
2343
2344
|
bytes: number;
|
|
2344
2345
|
schemaVersion: number;
|
|
2345
2346
|
};
|
|
2346
|
-
timestamp: number;
|
|
2347
2347
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2348
2348
|
payloadHash?: string | undefined;
|
|
2349
2349
|
}>;
|
|
@@ -2383,6 +2383,7 @@ export declare const WaitDeadlineExceededEventSchema: z.ZodObject<{
|
|
|
2383
2383
|
}, "strip", z.ZodTypeAny, {
|
|
2384
2384
|
type: "waitDeadlineExceeded";
|
|
2385
2385
|
runId: string;
|
|
2386
|
+
timestamp: number;
|
|
2386
2387
|
schemaVersion: 1;
|
|
2387
2388
|
eventId: string;
|
|
2388
2389
|
payload: {
|
|
@@ -2394,12 +2395,12 @@ export declare const WaitDeadlineExceededEventSchema: z.ZodObject<{
|
|
|
2394
2395
|
bytes: number;
|
|
2395
2396
|
schemaVersion: number;
|
|
2396
2397
|
};
|
|
2397
|
-
timestamp: number;
|
|
2398
2398
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2399
2399
|
payloadHash?: string | undefined;
|
|
2400
2400
|
}, {
|
|
2401
2401
|
type: "waitDeadlineExceeded";
|
|
2402
2402
|
runId: string;
|
|
2403
|
+
timestamp: number;
|
|
2403
2404
|
schemaVersion: 1;
|
|
2404
2405
|
eventId: string;
|
|
2405
2406
|
payload: {
|
|
@@ -2411,7 +2412,6 @@ export declare const WaitDeadlineExceededEventSchema: z.ZodObject<{
|
|
|
2411
2412
|
bytes: number;
|
|
2412
2413
|
schemaVersion: number;
|
|
2413
2414
|
};
|
|
2414
|
-
timestamp: number;
|
|
2415
2415
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2416
2416
|
payloadHash?: string | undefined;
|
|
2417
2417
|
}>;
|
|
@@ -2496,6 +2496,7 @@ export declare const CancelRequestedEventSchema: z.ZodObject<{
|
|
|
2496
2496
|
}, "strip", z.ZodTypeAny, {
|
|
2497
2497
|
type: "cancelRequested";
|
|
2498
2498
|
runId: string;
|
|
2499
|
+
timestamp: number;
|
|
2499
2500
|
schemaVersion: 1;
|
|
2500
2501
|
eventId: string;
|
|
2501
2502
|
payload: {
|
|
@@ -2516,12 +2517,12 @@ export declare const CancelRequestedEventSchema: z.ZodObject<{
|
|
|
2516
2517
|
bytes: number;
|
|
2517
2518
|
schemaVersion: number;
|
|
2518
2519
|
};
|
|
2519
|
-
timestamp: number;
|
|
2520
2520
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2521
2521
|
payloadHash?: string | undefined;
|
|
2522
2522
|
}, {
|
|
2523
2523
|
type: "cancelRequested";
|
|
2524
2524
|
runId: string;
|
|
2525
|
+
timestamp: number;
|
|
2525
2526
|
schemaVersion: 1;
|
|
2526
2527
|
eventId: string;
|
|
2527
2528
|
payload: {
|
|
@@ -2542,7 +2543,6 @@ export declare const CancelRequestedEventSchema: z.ZodObject<{
|
|
|
2542
2543
|
bytes: number;
|
|
2543
2544
|
schemaVersion: number;
|
|
2544
2545
|
};
|
|
2545
|
-
timestamp: number;
|
|
2546
2546
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2547
2547
|
payloadHash?: string | undefined;
|
|
2548
2548
|
}>;
|
|
@@ -2624,6 +2624,7 @@ export declare const CancelDeliveredEventSchema: z.ZodObject<{
|
|
|
2624
2624
|
}, "strip", z.ZodTypeAny, {
|
|
2625
2625
|
type: "cancelDelivered";
|
|
2626
2626
|
runId: string;
|
|
2627
|
+
timestamp: number;
|
|
2627
2628
|
schemaVersion: 1;
|
|
2628
2629
|
eventId: string;
|
|
2629
2630
|
payload: {
|
|
@@ -2643,12 +2644,12 @@ export declare const CancelDeliveredEventSchema: z.ZodObject<{
|
|
|
2643
2644
|
bytes: number;
|
|
2644
2645
|
schemaVersion: number;
|
|
2645
2646
|
};
|
|
2646
|
-
timestamp: number;
|
|
2647
2647
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2648
2648
|
payloadHash?: string | undefined;
|
|
2649
2649
|
}, {
|
|
2650
2650
|
type: "cancelDelivered";
|
|
2651
2651
|
runId: string;
|
|
2652
|
+
timestamp: number;
|
|
2652
2653
|
schemaVersion: 1;
|
|
2653
2654
|
eventId: string;
|
|
2654
2655
|
payload: {
|
|
@@ -2668,7 +2669,6 @@ export declare const CancelDeliveredEventSchema: z.ZodObject<{
|
|
|
2668
2669
|
bytes: number;
|
|
2669
2670
|
schemaVersion: number;
|
|
2670
2671
|
};
|
|
2671
|
-
timestamp: number;
|
|
2672
2672
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2673
2673
|
payloadHash?: string | undefined;
|
|
2674
2674
|
}>;
|
|
@@ -2708,6 +2708,7 @@ export declare const ActivityCanceledEventSchema: z.ZodObject<{
|
|
|
2708
2708
|
}, "strip", z.ZodTypeAny, {
|
|
2709
2709
|
type: "activityCanceled";
|
|
2710
2710
|
runId: string;
|
|
2711
|
+
timestamp: number;
|
|
2711
2712
|
schemaVersion: 1;
|
|
2712
2713
|
eventId: string;
|
|
2713
2714
|
payload: {
|
|
@@ -2719,12 +2720,12 @@ export declare const ActivityCanceledEventSchema: z.ZodObject<{
|
|
|
2719
2720
|
bytes: number;
|
|
2720
2721
|
schemaVersion: number;
|
|
2721
2722
|
};
|
|
2722
|
-
timestamp: number;
|
|
2723
2723
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2724
2724
|
payloadHash?: string | undefined;
|
|
2725
2725
|
}, {
|
|
2726
2726
|
type: "activityCanceled";
|
|
2727
2727
|
runId: string;
|
|
2728
|
+
timestamp: number;
|
|
2728
2729
|
schemaVersion: 1;
|
|
2729
2730
|
eventId: string;
|
|
2730
2731
|
payload: {
|
|
@@ -2736,7 +2737,6 @@ export declare const ActivityCanceledEventSchema: z.ZodObject<{
|
|
|
2736
2737
|
bytes: number;
|
|
2737
2738
|
schemaVersion: number;
|
|
2738
2739
|
};
|
|
2739
|
-
timestamp: number;
|
|
2740
2740
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2741
2741
|
payloadHash?: string | undefined;
|
|
2742
2742
|
}>;
|
|
@@ -2773,6 +2773,7 @@ export declare const WorkerLostEventSchema: z.ZodObject<{
|
|
|
2773
2773
|
}, "strip", z.ZodTypeAny, {
|
|
2774
2774
|
type: "workerLost";
|
|
2775
2775
|
runId: string;
|
|
2776
|
+
timestamp: number;
|
|
2776
2777
|
schemaVersion: 1;
|
|
2777
2778
|
eventId: string;
|
|
2778
2779
|
payload: {
|
|
@@ -2783,12 +2784,12 @@ export declare const WorkerLostEventSchema: z.ZodObject<{
|
|
|
2783
2784
|
bytes: number;
|
|
2784
2785
|
schemaVersion: number;
|
|
2785
2786
|
};
|
|
2786
|
-
timestamp: number;
|
|
2787
2787
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2788
2788
|
payloadHash?: string | undefined;
|
|
2789
2789
|
}, {
|
|
2790
2790
|
type: "workerLost";
|
|
2791
2791
|
runId: string;
|
|
2792
|
+
timestamp: number;
|
|
2792
2793
|
schemaVersion: 1;
|
|
2793
2794
|
eventId: string;
|
|
2794
2795
|
payload: {
|
|
@@ -2799,7 +2800,6 @@ export declare const WorkerLostEventSchema: z.ZodObject<{
|
|
|
2799
2800
|
bytes: number;
|
|
2800
2801
|
schemaVersion: number;
|
|
2801
2802
|
};
|
|
2802
|
-
timestamp: number;
|
|
2803
2803
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2804
2804
|
payloadHash?: string | undefined;
|
|
2805
2805
|
}>;
|
|
@@ -2836,6 +2836,7 @@ export declare const ResumeStartedEventSchema: z.ZodObject<{
|
|
|
2836
2836
|
}, "strip", z.ZodTypeAny, {
|
|
2837
2837
|
type: "resumeStarted";
|
|
2838
2838
|
runId: string;
|
|
2839
|
+
timestamp: number;
|
|
2839
2840
|
schemaVersion: 1;
|
|
2840
2841
|
eventId: string;
|
|
2841
2842
|
payload: {
|
|
@@ -2846,12 +2847,12 @@ export declare const ResumeStartedEventSchema: z.ZodObject<{
|
|
|
2846
2847
|
bytes: number;
|
|
2847
2848
|
schemaVersion: number;
|
|
2848
2849
|
};
|
|
2849
|
-
timestamp: number;
|
|
2850
2850
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2851
2851
|
payloadHash?: string | undefined;
|
|
2852
2852
|
}, {
|
|
2853
2853
|
type: "resumeStarted";
|
|
2854
2854
|
runId: string;
|
|
2855
|
+
timestamp: number;
|
|
2855
2856
|
schemaVersion: 1;
|
|
2856
2857
|
eventId: string;
|
|
2857
2858
|
payload: {
|
|
@@ -2862,7 +2863,6 @@ export declare const ResumeStartedEventSchema: z.ZodObject<{
|
|
|
2862
2863
|
bytes: number;
|
|
2863
2864
|
schemaVersion: number;
|
|
2864
2865
|
};
|
|
2865
|
-
timestamp: number;
|
|
2866
2866
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2867
2867
|
payloadHash?: string | undefined;
|
|
2868
2868
|
}>;
|
|
@@ -2908,6 +2908,7 @@ export declare const ReconcileResultEventSchema: z.ZodObject<{
|
|
|
2908
2908
|
}, "strip", z.ZodTypeAny, {
|
|
2909
2909
|
type: "reconcileResult";
|
|
2910
2910
|
runId: string;
|
|
2911
|
+
timestamp: number;
|
|
2911
2912
|
schemaVersion: 1;
|
|
2912
2913
|
eventId: string;
|
|
2913
2914
|
payload: {
|
|
@@ -2921,12 +2922,12 @@ export declare const ReconcileResultEventSchema: z.ZodObject<{
|
|
|
2921
2922
|
bytes: number;
|
|
2922
2923
|
schemaVersion: number;
|
|
2923
2924
|
};
|
|
2924
|
-
timestamp: number;
|
|
2925
2925
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2926
2926
|
payloadHash?: string | undefined;
|
|
2927
2927
|
}, {
|
|
2928
2928
|
type: "reconcileResult";
|
|
2929
2929
|
runId: string;
|
|
2930
|
+
timestamp: number;
|
|
2930
2931
|
schemaVersion: 1;
|
|
2931
2932
|
eventId: string;
|
|
2932
2933
|
payload: {
|
|
@@ -2940,7 +2941,6 @@ export declare const ReconcileResultEventSchema: z.ZodObject<{
|
|
|
2940
2941
|
bytes: number;
|
|
2941
2942
|
schemaVersion: number;
|
|
2942
2943
|
};
|
|
2943
|
-
timestamp: number;
|
|
2944
2944
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
2945
2945
|
payloadHash?: string | undefined;
|
|
2946
2946
|
}>;
|
|
@@ -3050,6 +3050,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3050
3050
|
}, "strip", z.ZodTypeAny, {
|
|
3051
3051
|
type: "runCreated";
|
|
3052
3052
|
runId: string;
|
|
3053
|
+
timestamp: number;
|
|
3053
3054
|
schemaVersion: 1;
|
|
3054
3055
|
eventId: string;
|
|
3055
3056
|
payload: {
|
|
@@ -3074,12 +3075,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3074
3075
|
bytes: number;
|
|
3075
3076
|
schemaVersion: number;
|
|
3076
3077
|
};
|
|
3077
|
-
timestamp: number;
|
|
3078
3078
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3079
3079
|
payloadHash?: string | undefined;
|
|
3080
3080
|
}, {
|
|
3081
3081
|
type: "runCreated";
|
|
3082
3082
|
runId: string;
|
|
3083
|
+
timestamp: number;
|
|
3083
3084
|
schemaVersion: 1;
|
|
3084
3085
|
eventId: string;
|
|
3085
3086
|
payload: {
|
|
@@ -3104,7 +3105,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3104
3105
|
bytes: number;
|
|
3105
3106
|
schemaVersion: number;
|
|
3106
3107
|
};
|
|
3107
|
-
timestamp: number;
|
|
3108
3108
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3109
3109
|
payloadHash?: string | undefined;
|
|
3110
3110
|
}>, z.ZodObject<{
|
|
@@ -3131,6 +3131,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3131
3131
|
}, "strip", z.ZodTypeAny, {
|
|
3132
3132
|
type: "runStarted";
|
|
3133
3133
|
runId: string;
|
|
3134
|
+
timestamp: number;
|
|
3134
3135
|
schemaVersion: 1;
|
|
3135
3136
|
eventId: string;
|
|
3136
3137
|
payload: {} | {
|
|
@@ -3138,12 +3139,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3138
3139
|
bytes: number;
|
|
3139
3140
|
schemaVersion: number;
|
|
3140
3141
|
};
|
|
3141
|
-
timestamp: number;
|
|
3142
3142
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3143
3143
|
payloadHash?: string | undefined;
|
|
3144
3144
|
}, {
|
|
3145
3145
|
type: "runStarted";
|
|
3146
3146
|
runId: string;
|
|
3147
|
+
timestamp: number;
|
|
3147
3148
|
schemaVersion: 1;
|
|
3148
3149
|
eventId: string;
|
|
3149
3150
|
payload: {} | {
|
|
@@ -3151,7 +3152,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3151
3152
|
bytes: number;
|
|
3152
3153
|
schemaVersion: number;
|
|
3153
3154
|
};
|
|
3154
|
-
timestamp: number;
|
|
3155
3155
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3156
3156
|
payloadHash?: string | undefined;
|
|
3157
3157
|
}>, z.ZodObject<{
|
|
@@ -3214,6 +3214,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3214
3214
|
}, "strip", z.ZodTypeAny, {
|
|
3215
3215
|
type: "runSucceeded";
|
|
3216
3216
|
runId: string;
|
|
3217
|
+
timestamp: number;
|
|
3217
3218
|
schemaVersion: 1;
|
|
3218
3219
|
eventId: string;
|
|
3219
3220
|
payload: {
|
|
@@ -3229,12 +3230,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3229
3230
|
bytes: number;
|
|
3230
3231
|
schemaVersion: number;
|
|
3231
3232
|
};
|
|
3232
|
-
timestamp: number;
|
|
3233
3233
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3234
3234
|
payloadHash?: string | undefined;
|
|
3235
3235
|
}, {
|
|
3236
3236
|
type: "runSucceeded";
|
|
3237
3237
|
runId: string;
|
|
3238
|
+
timestamp: number;
|
|
3238
3239
|
schemaVersion: 1;
|
|
3239
3240
|
eventId: string;
|
|
3240
3241
|
payload: {
|
|
@@ -3250,7 +3251,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3250
3251
|
bytes: number;
|
|
3251
3252
|
schemaVersion: number;
|
|
3252
3253
|
};
|
|
3253
|
-
timestamp: number;
|
|
3254
3254
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3255
3255
|
payloadHash?: string | undefined;
|
|
3256
3256
|
}>, z.ZodObject<{
|
|
@@ -3286,6 +3286,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3286
3286
|
}, "strip", z.ZodTypeAny, {
|
|
3287
3287
|
type: "runFailed";
|
|
3288
3288
|
runId: string;
|
|
3289
|
+
timestamp: number;
|
|
3289
3290
|
schemaVersion: 1;
|
|
3290
3291
|
eventId: string;
|
|
3291
3292
|
payload: {
|
|
@@ -3296,12 +3297,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3296
3297
|
bytes: number;
|
|
3297
3298
|
schemaVersion: number;
|
|
3298
3299
|
};
|
|
3299
|
-
timestamp: number;
|
|
3300
3300
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3301
3301
|
payloadHash?: string | undefined;
|
|
3302
3302
|
}, {
|
|
3303
3303
|
type: "runFailed";
|
|
3304
3304
|
runId: string;
|
|
3305
|
+
timestamp: number;
|
|
3305
3306
|
schemaVersion: 1;
|
|
3306
3307
|
eventId: string;
|
|
3307
3308
|
payload: {
|
|
@@ -3312,7 +3313,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3312
3313
|
bytes: number;
|
|
3313
3314
|
schemaVersion: number;
|
|
3314
3315
|
};
|
|
3315
|
-
timestamp: number;
|
|
3316
3316
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3317
3317
|
payloadHash?: string | undefined;
|
|
3318
3318
|
}>, z.ZodObject<{
|
|
@@ -3345,6 +3345,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3345
3345
|
}, "strip", z.ZodTypeAny, {
|
|
3346
3346
|
type: "runCanceled";
|
|
3347
3347
|
runId: string;
|
|
3348
|
+
timestamp: number;
|
|
3348
3349
|
schemaVersion: 1;
|
|
3349
3350
|
eventId: string;
|
|
3350
3351
|
payload: {
|
|
@@ -3354,12 +3355,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3354
3355
|
bytes: number;
|
|
3355
3356
|
schemaVersion: number;
|
|
3356
3357
|
};
|
|
3357
|
-
timestamp: number;
|
|
3358
3358
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3359
3359
|
payloadHash?: string | undefined;
|
|
3360
3360
|
}, {
|
|
3361
3361
|
type: "runCanceled";
|
|
3362
3362
|
runId: string;
|
|
3363
|
+
timestamp: number;
|
|
3363
3364
|
schemaVersion: 1;
|
|
3364
3365
|
eventId: string;
|
|
3365
3366
|
payload: {
|
|
@@ -3369,7 +3370,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3369
3370
|
bytes: number;
|
|
3370
3371
|
schemaVersion: number;
|
|
3371
3372
|
};
|
|
3372
|
-
timestamp: number;
|
|
3373
3373
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3374
3374
|
payloadHash?: string | undefined;
|
|
3375
3375
|
}>, z.ZodObject<{
|
|
@@ -3408,6 +3408,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3408
3408
|
}, "strip", z.ZodTypeAny, {
|
|
3409
3409
|
type: "nodeWaiting";
|
|
3410
3410
|
runId: string;
|
|
3411
|
+
timestamp: number;
|
|
3411
3412
|
schemaVersion: 1;
|
|
3412
3413
|
eventId: string;
|
|
3413
3414
|
payload: {
|
|
@@ -3419,12 +3420,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3419
3420
|
bytes: number;
|
|
3420
3421
|
schemaVersion: number;
|
|
3421
3422
|
};
|
|
3422
|
-
timestamp: number;
|
|
3423
3423
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3424
3424
|
payloadHash?: string | undefined;
|
|
3425
3425
|
}, {
|
|
3426
3426
|
type: "nodeWaiting";
|
|
3427
3427
|
runId: string;
|
|
3428
|
+
timestamp: number;
|
|
3428
3429
|
schemaVersion: 1;
|
|
3429
3430
|
eventId: string;
|
|
3430
3431
|
payload: {
|
|
@@ -3436,7 +3437,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3436
3437
|
bytes: number;
|
|
3437
3438
|
schemaVersion: number;
|
|
3438
3439
|
};
|
|
3439
|
-
timestamp: number;
|
|
3440
3440
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3441
3441
|
payloadHash?: string | undefined;
|
|
3442
3442
|
}>, z.ZodObject<{
|
|
@@ -3475,6 +3475,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3475
3475
|
}, "strip", z.ZodTypeAny, {
|
|
3476
3476
|
type: "nodeRetrying";
|
|
3477
3477
|
runId: string;
|
|
3478
|
+
timestamp: number;
|
|
3478
3479
|
schemaVersion: 1;
|
|
3479
3480
|
eventId: string;
|
|
3480
3481
|
payload: {
|
|
@@ -3486,12 +3487,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3486
3487
|
bytes: number;
|
|
3487
3488
|
schemaVersion: number;
|
|
3488
3489
|
};
|
|
3489
|
-
timestamp: number;
|
|
3490
3490
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3491
3491
|
payloadHash?: string | undefined;
|
|
3492
3492
|
}, {
|
|
3493
3493
|
type: "nodeRetrying";
|
|
3494
3494
|
runId: string;
|
|
3495
|
+
timestamp: number;
|
|
3495
3496
|
schemaVersion: 1;
|
|
3496
3497
|
eventId: string;
|
|
3497
3498
|
payload: {
|
|
@@ -3503,7 +3504,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3503
3504
|
bytes: number;
|
|
3504
3505
|
schemaVersion: number;
|
|
3505
3506
|
};
|
|
3506
|
-
timestamp: number;
|
|
3507
3507
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3508
3508
|
payloadHash?: string | undefined;
|
|
3509
3509
|
}>, z.ZodObject<{
|
|
@@ -3539,6 +3539,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3539
3539
|
}, "strip", z.ZodTypeAny, {
|
|
3540
3540
|
type: "nodeSucceeded";
|
|
3541
3541
|
runId: string;
|
|
3542
|
+
timestamp: number;
|
|
3542
3543
|
schemaVersion: 1;
|
|
3543
3544
|
eventId: string;
|
|
3544
3545
|
payload: {
|
|
@@ -3549,12 +3550,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3549
3550
|
bytes: number;
|
|
3550
3551
|
schemaVersion: number;
|
|
3551
3552
|
};
|
|
3552
|
-
timestamp: number;
|
|
3553
3553
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3554
3554
|
payloadHash?: string | undefined;
|
|
3555
3555
|
}, {
|
|
3556
3556
|
type: "nodeSucceeded";
|
|
3557
3557
|
runId: string;
|
|
3558
|
+
timestamp: number;
|
|
3558
3559
|
schemaVersion: 1;
|
|
3559
3560
|
eventId: string;
|
|
3560
3561
|
payload: {
|
|
@@ -3565,7 +3566,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3565
3566
|
bytes: number;
|
|
3566
3567
|
schemaVersion: number;
|
|
3567
3568
|
};
|
|
3568
|
-
timestamp: number;
|
|
3569
3569
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3570
3570
|
payloadHash?: string | undefined;
|
|
3571
3571
|
}>, z.ZodObject<{
|
|
@@ -3604,6 +3604,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3604
3604
|
}, "strip", z.ZodTypeAny, {
|
|
3605
3605
|
type: "nodeFailed";
|
|
3606
3606
|
runId: string;
|
|
3607
|
+
timestamp: number;
|
|
3607
3608
|
schemaVersion: 1;
|
|
3608
3609
|
eventId: string;
|
|
3609
3610
|
payload: {
|
|
@@ -3615,12 +3616,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3615
3616
|
bytes: number;
|
|
3616
3617
|
schemaVersion: number;
|
|
3617
3618
|
};
|
|
3618
|
-
timestamp: number;
|
|
3619
3619
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3620
3620
|
payloadHash?: string | undefined;
|
|
3621
3621
|
}, {
|
|
3622
3622
|
type: "nodeFailed";
|
|
3623
3623
|
runId: string;
|
|
3624
|
+
timestamp: number;
|
|
3624
3625
|
schemaVersion: 1;
|
|
3625
3626
|
eventId: string;
|
|
3626
3627
|
payload: {
|
|
@@ -3632,7 +3633,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3632
3633
|
bytes: number;
|
|
3633
3634
|
schemaVersion: number;
|
|
3634
3635
|
};
|
|
3635
|
-
timestamp: number;
|
|
3636
3636
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3637
3637
|
payloadHash?: string | undefined;
|
|
3638
3638
|
}>, z.ZodObject<{
|
|
@@ -3668,6 +3668,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3668
3668
|
}, "strip", z.ZodTypeAny, {
|
|
3669
3669
|
type: "nodeSkipped";
|
|
3670
3670
|
runId: string;
|
|
3671
|
+
timestamp: number;
|
|
3671
3672
|
schemaVersion: 1;
|
|
3672
3673
|
eventId: string;
|
|
3673
3674
|
payload: {
|
|
@@ -3678,12 +3679,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3678
3679
|
bytes: number;
|
|
3679
3680
|
schemaVersion: number;
|
|
3680
3681
|
};
|
|
3681
|
-
timestamp: number;
|
|
3682
3682
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3683
3683
|
payloadHash?: string | undefined;
|
|
3684
3684
|
}, {
|
|
3685
3685
|
type: "nodeSkipped";
|
|
3686
3686
|
runId: string;
|
|
3687
|
+
timestamp: number;
|
|
3687
3688
|
schemaVersion: 1;
|
|
3688
3689
|
eventId: string;
|
|
3689
3690
|
payload: {
|
|
@@ -3694,7 +3695,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3694
3695
|
bytes: number;
|
|
3695
3696
|
schemaVersion: number;
|
|
3696
3697
|
};
|
|
3697
|
-
timestamp: number;
|
|
3698
3698
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3699
3699
|
payloadHash?: string | undefined;
|
|
3700
3700
|
}>, z.ZodObject<{
|
|
@@ -3730,6 +3730,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3730
3730
|
}, "strip", z.ZodTypeAny, {
|
|
3731
3731
|
type: "nodeCanceled";
|
|
3732
3732
|
runId: string;
|
|
3733
|
+
timestamp: number;
|
|
3733
3734
|
schemaVersion: 1;
|
|
3734
3735
|
eventId: string;
|
|
3735
3736
|
payload: {
|
|
@@ -3740,12 +3741,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3740
3741
|
bytes: number;
|
|
3741
3742
|
schemaVersion: number;
|
|
3742
3743
|
};
|
|
3743
|
-
timestamp: number;
|
|
3744
3744
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3745
3745
|
payloadHash?: string | undefined;
|
|
3746
3746
|
}, {
|
|
3747
3747
|
type: "nodeCanceled";
|
|
3748
3748
|
runId: string;
|
|
3749
|
+
timestamp: number;
|
|
3749
3750
|
schemaVersion: 1;
|
|
3750
3751
|
eventId: string;
|
|
3751
3752
|
payload: {
|
|
@@ -3756,7 +3757,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3756
3757
|
bytes: number;
|
|
3757
3758
|
schemaVersion: number;
|
|
3758
3759
|
};
|
|
3759
|
-
timestamp: number;
|
|
3760
3760
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3761
3761
|
payloadHash?: string | undefined;
|
|
3762
3762
|
}>, z.ZodObject<{
|
|
@@ -3795,6 +3795,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3795
3795
|
}, "strip", z.ZodTypeAny, {
|
|
3796
3796
|
type: "activityRunning";
|
|
3797
3797
|
runId: string;
|
|
3798
|
+
timestamp: number;
|
|
3798
3799
|
schemaVersion: 1;
|
|
3799
3800
|
eventId: string;
|
|
3800
3801
|
payload: {
|
|
@@ -3806,12 +3807,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3806
3807
|
bytes: number;
|
|
3807
3808
|
schemaVersion: number;
|
|
3808
3809
|
};
|
|
3809
|
-
timestamp: number;
|
|
3810
3810
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3811
3811
|
payloadHash?: string | undefined;
|
|
3812
3812
|
}, {
|
|
3813
3813
|
type: "activityRunning";
|
|
3814
3814
|
runId: string;
|
|
3815
|
+
timestamp: number;
|
|
3815
3816
|
schemaVersion: 1;
|
|
3816
3817
|
eventId: string;
|
|
3817
3818
|
payload: {
|
|
@@ -3823,7 +3824,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3823
3824
|
bytes: number;
|
|
3824
3825
|
schemaVersion: number;
|
|
3825
3826
|
};
|
|
3826
|
-
timestamp: number;
|
|
3827
3827
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3828
3828
|
payloadHash?: string | undefined;
|
|
3829
3829
|
}>, z.ZodObject<{
|
|
@@ -3859,6 +3859,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3859
3859
|
}, "strip", z.ZodTypeAny, {
|
|
3860
3860
|
type: "activityWaiting";
|
|
3861
3861
|
runId: string;
|
|
3862
|
+
timestamp: number;
|
|
3862
3863
|
schemaVersion: 1;
|
|
3863
3864
|
eventId: string;
|
|
3864
3865
|
payload: {
|
|
@@ -3869,12 +3870,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3869
3870
|
bytes: number;
|
|
3870
3871
|
schemaVersion: number;
|
|
3871
3872
|
};
|
|
3872
|
-
timestamp: number;
|
|
3873
3873
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3874
3874
|
payloadHash?: string | undefined;
|
|
3875
3875
|
}, {
|
|
3876
3876
|
type: "activityWaiting";
|
|
3877
3877
|
runId: string;
|
|
3878
|
+
timestamp: number;
|
|
3878
3879
|
schemaVersion: 1;
|
|
3879
3880
|
eventId: string;
|
|
3880
3881
|
payload: {
|
|
@@ -3885,7 +3886,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3885
3886
|
bytes: number;
|
|
3886
3887
|
schemaVersion: number;
|
|
3887
3888
|
};
|
|
3888
|
-
timestamp: number;
|
|
3889
3889
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3890
3890
|
payloadHash?: string | undefined;
|
|
3891
3891
|
}>, z.ZodObject<{
|
|
@@ -3930,6 +3930,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3930
3930
|
}, "strip", z.ZodTypeAny, {
|
|
3931
3931
|
type: "activityTimedOut";
|
|
3932
3932
|
runId: string;
|
|
3933
|
+
timestamp: number;
|
|
3933
3934
|
schemaVersion: 1;
|
|
3934
3935
|
eventId: string;
|
|
3935
3936
|
payload: {
|
|
@@ -3943,12 +3944,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3943
3944
|
bytes: number;
|
|
3944
3945
|
schemaVersion: number;
|
|
3945
3946
|
};
|
|
3946
|
-
timestamp: number;
|
|
3947
3947
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3948
3948
|
payloadHash?: string | undefined;
|
|
3949
3949
|
}, {
|
|
3950
3950
|
type: "activityTimedOut";
|
|
3951
3951
|
runId: string;
|
|
3952
|
+
timestamp: number;
|
|
3952
3953
|
schemaVersion: 1;
|
|
3953
3954
|
eventId: string;
|
|
3954
3955
|
payload: {
|
|
@@ -3962,7 +3963,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3962
3963
|
bytes: number;
|
|
3963
3964
|
schemaVersion: number;
|
|
3964
3965
|
};
|
|
3965
|
-
timestamp: number;
|
|
3966
3966
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
3967
3967
|
payloadHash?: string | undefined;
|
|
3968
3968
|
}>, z.ZodObject<{
|
|
@@ -3998,6 +3998,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3998
3998
|
}, "strip", z.ZodTypeAny, {
|
|
3999
3999
|
type: "loopStarted";
|
|
4000
4000
|
runId: string;
|
|
4001
|
+
timestamp: number;
|
|
4001
4002
|
schemaVersion: 1;
|
|
4002
4003
|
eventId: string;
|
|
4003
4004
|
payload: {
|
|
@@ -4008,12 +4009,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4008
4009
|
bytes: number;
|
|
4009
4010
|
schemaVersion: number;
|
|
4010
4011
|
};
|
|
4011
|
-
timestamp: number;
|
|
4012
4012
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4013
4013
|
payloadHash?: string | undefined;
|
|
4014
4014
|
}, {
|
|
4015
4015
|
type: "loopStarted";
|
|
4016
4016
|
runId: string;
|
|
4017
|
+
timestamp: number;
|
|
4017
4018
|
schemaVersion: 1;
|
|
4018
4019
|
eventId: string;
|
|
4019
4020
|
payload: {
|
|
@@ -4024,7 +4025,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4024
4025
|
bytes: number;
|
|
4025
4026
|
schemaVersion: number;
|
|
4026
4027
|
};
|
|
4027
|
-
timestamp: number;
|
|
4028
4028
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4029
4029
|
payloadHash?: string | undefined;
|
|
4030
4030
|
}>, z.ZodObject<{
|
|
@@ -4063,6 +4063,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4063
4063
|
}, "strip", z.ZodTypeAny, {
|
|
4064
4064
|
type: "loopIterationStarted";
|
|
4065
4065
|
runId: string;
|
|
4066
|
+
timestamp: number;
|
|
4066
4067
|
schemaVersion: 1;
|
|
4067
4068
|
eventId: string;
|
|
4068
4069
|
payload: {
|
|
@@ -4074,12 +4075,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4074
4075
|
bytes: number;
|
|
4075
4076
|
schemaVersion: number;
|
|
4076
4077
|
};
|
|
4077
|
-
timestamp: number;
|
|
4078
4078
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4079
4079
|
payloadHash?: string | undefined;
|
|
4080
4080
|
}, {
|
|
4081
4081
|
type: "loopIterationStarted";
|
|
4082
4082
|
runId: string;
|
|
4083
|
+
timestamp: number;
|
|
4083
4084
|
schemaVersion: 1;
|
|
4084
4085
|
eventId: string;
|
|
4085
4086
|
payload: {
|
|
@@ -4091,7 +4092,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4091
4092
|
bytes: number;
|
|
4092
4093
|
schemaVersion: number;
|
|
4093
4094
|
};
|
|
4094
|
-
timestamp: number;
|
|
4095
4095
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4096
4096
|
payloadHash?: string | undefined;
|
|
4097
4097
|
}>, z.ZodObject<{
|
|
@@ -4145,6 +4145,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4145
4145
|
}, "strip", z.ZodTypeAny, {
|
|
4146
4146
|
type: "loopIterationFinished";
|
|
4147
4147
|
runId: string;
|
|
4148
|
+
timestamp: number;
|
|
4148
4149
|
schemaVersion: 1;
|
|
4149
4150
|
eventId: string;
|
|
4150
4151
|
payload: {
|
|
@@ -4161,12 +4162,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4161
4162
|
bytes: number;
|
|
4162
4163
|
schemaVersion: number;
|
|
4163
4164
|
};
|
|
4164
|
-
timestamp: number;
|
|
4165
4165
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4166
4166
|
payloadHash?: string | undefined;
|
|
4167
4167
|
}, {
|
|
4168
4168
|
type: "loopIterationFinished";
|
|
4169
4169
|
runId: string;
|
|
4170
|
+
timestamp: number;
|
|
4170
4171
|
schemaVersion: 1;
|
|
4171
4172
|
eventId: string;
|
|
4172
4173
|
payload: {
|
|
@@ -4183,7 +4184,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4183
4184
|
bytes: number;
|
|
4184
4185
|
schemaVersion: number;
|
|
4185
4186
|
};
|
|
4186
|
-
timestamp: number;
|
|
4187
4187
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4188
4188
|
payloadHash?: string | undefined;
|
|
4189
4189
|
}>, z.ZodObject<{
|
|
@@ -4261,6 +4261,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4261
4261
|
}, "strip", z.ZodTypeAny, {
|
|
4262
4262
|
type: "loopFinished";
|
|
4263
4263
|
runId: string;
|
|
4264
|
+
timestamp: number;
|
|
4264
4265
|
schemaVersion: 1;
|
|
4265
4266
|
eventId: string;
|
|
4266
4267
|
payload: {
|
|
@@ -4281,12 +4282,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4281
4282
|
bytes: number;
|
|
4282
4283
|
schemaVersion: number;
|
|
4283
4284
|
};
|
|
4284
|
-
timestamp: number;
|
|
4285
4285
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4286
4286
|
payloadHash?: string | undefined;
|
|
4287
4287
|
}, {
|
|
4288
4288
|
type: "loopFinished";
|
|
4289
4289
|
runId: string;
|
|
4290
|
+
timestamp: number;
|
|
4290
4291
|
schemaVersion: 1;
|
|
4291
4292
|
eventId: string;
|
|
4292
4293
|
payload: {
|
|
@@ -4307,7 +4308,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4307
4308
|
bytes: number;
|
|
4308
4309
|
schemaVersion: number;
|
|
4309
4310
|
};
|
|
4310
|
-
timestamp: number;
|
|
4311
4311
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4312
4312
|
payloadHash?: string | undefined;
|
|
4313
4313
|
}>, z.ZodObject<{
|
|
@@ -4349,6 +4349,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4349
4349
|
}, "strip", z.ZodTypeAny, {
|
|
4350
4350
|
type: "conditionEvaluated";
|
|
4351
4351
|
runId: string;
|
|
4352
|
+
timestamp: number;
|
|
4352
4353
|
schemaVersion: 1;
|
|
4353
4354
|
eventId: string;
|
|
4354
4355
|
payload: {
|
|
@@ -4361,12 +4362,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4361
4362
|
bytes: number;
|
|
4362
4363
|
schemaVersion: number;
|
|
4363
4364
|
};
|
|
4364
|
-
timestamp: number;
|
|
4365
4365
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4366
4366
|
payloadHash?: string | undefined;
|
|
4367
4367
|
}, {
|
|
4368
4368
|
type: "conditionEvaluated";
|
|
4369
4369
|
runId: string;
|
|
4370
|
+
timestamp: number;
|
|
4370
4371
|
schemaVersion: 1;
|
|
4371
4372
|
eventId: string;
|
|
4372
4373
|
payload: {
|
|
@@ -4379,7 +4380,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4379
4380
|
bytes: number;
|
|
4380
4381
|
schemaVersion: number;
|
|
4381
4382
|
};
|
|
4382
|
-
timestamp: number;
|
|
4383
4383
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4384
4384
|
payloadHash?: string | undefined;
|
|
4385
4385
|
}>, z.ZodObject<{
|
|
@@ -4424,6 +4424,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4424
4424
|
}, "strip", z.ZodTypeAny, {
|
|
4425
4425
|
type: "leaseSigned";
|
|
4426
4426
|
runId: string;
|
|
4427
|
+
timestamp: number;
|
|
4427
4428
|
schemaVersion: 1;
|
|
4428
4429
|
eventId: string;
|
|
4429
4430
|
payload: {
|
|
@@ -4437,12 +4438,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4437
4438
|
bytes: number;
|
|
4438
4439
|
schemaVersion: number;
|
|
4439
4440
|
};
|
|
4440
|
-
timestamp: number;
|
|
4441
4441
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4442
4442
|
payloadHash?: string | undefined;
|
|
4443
4443
|
}, {
|
|
4444
4444
|
type: "leaseSigned";
|
|
4445
4445
|
runId: string;
|
|
4446
|
+
timestamp: number;
|
|
4446
4447
|
schemaVersion: 1;
|
|
4447
4448
|
eventId: string;
|
|
4448
4449
|
payload: {
|
|
@@ -4456,7 +4457,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4456
4457
|
bytes: number;
|
|
4457
4458
|
schemaVersion: number;
|
|
4458
4459
|
};
|
|
4459
|
-
timestamp: number;
|
|
4460
4460
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4461
4461
|
payloadHash?: string | undefined;
|
|
4462
4462
|
}>, z.ZodObject<{
|
|
@@ -4531,6 +4531,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4531
4531
|
}, "strip", z.ZodTypeAny, {
|
|
4532
4532
|
type: "attemptCreated";
|
|
4533
4533
|
runId: string;
|
|
4534
|
+
timestamp: number;
|
|
4534
4535
|
schemaVersion: 1;
|
|
4535
4536
|
eventId: string;
|
|
4536
4537
|
payload: {
|
|
@@ -4550,12 +4551,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4550
4551
|
bytes: number;
|
|
4551
4552
|
schemaVersion: number;
|
|
4552
4553
|
};
|
|
4553
|
-
timestamp: number;
|
|
4554
4554
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4555
4555
|
payloadHash?: string | undefined;
|
|
4556
4556
|
}, {
|
|
4557
4557
|
type: "attemptCreated";
|
|
4558
4558
|
runId: string;
|
|
4559
|
+
timestamp: number;
|
|
4559
4560
|
schemaVersion: 1;
|
|
4560
4561
|
eventId: string;
|
|
4561
4562
|
payload: {
|
|
@@ -4575,7 +4576,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4575
4576
|
bytes: number;
|
|
4576
4577
|
schemaVersion: number;
|
|
4577
4578
|
};
|
|
4578
|
-
timestamp: number;
|
|
4579
4579
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4580
4580
|
payloadHash?: string | undefined;
|
|
4581
4581
|
}>, z.ZodObject<{
|
|
@@ -4642,6 +4642,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4642
4642
|
}, "strip", z.ZodTypeAny, {
|
|
4643
4643
|
type: "backoffScheduled";
|
|
4644
4644
|
runId: string;
|
|
4645
|
+
timestamp: number;
|
|
4645
4646
|
schemaVersion: 1;
|
|
4646
4647
|
eventId: string;
|
|
4647
4648
|
payload: {
|
|
@@ -4659,12 +4660,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4659
4660
|
bytes: number;
|
|
4660
4661
|
schemaVersion: number;
|
|
4661
4662
|
};
|
|
4662
|
-
timestamp: number;
|
|
4663
4663
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4664
4664
|
payloadHash?: string | undefined;
|
|
4665
4665
|
}, {
|
|
4666
4666
|
type: "backoffScheduled";
|
|
4667
4667
|
runId: string;
|
|
4668
|
+
timestamp: number;
|
|
4668
4669
|
schemaVersion: 1;
|
|
4669
4670
|
eventId: string;
|
|
4670
4671
|
payload: {
|
|
@@ -4682,7 +4683,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4682
4683
|
bytes: number;
|
|
4683
4684
|
schemaVersion: number;
|
|
4684
4685
|
};
|
|
4685
|
-
timestamp: number;
|
|
4686
4686
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4687
4687
|
payloadHash?: string | undefined;
|
|
4688
4688
|
}>, z.ZodObject<{
|
|
@@ -4718,6 +4718,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4718
4718
|
}, "strip", z.ZodTypeAny, {
|
|
4719
4719
|
type: "backoffElapsed";
|
|
4720
4720
|
runId: string;
|
|
4721
|
+
timestamp: number;
|
|
4721
4722
|
schemaVersion: 1;
|
|
4722
4723
|
eventId: string;
|
|
4723
4724
|
payload: {
|
|
@@ -4728,12 +4729,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4728
4729
|
bytes: number;
|
|
4729
4730
|
schemaVersion: number;
|
|
4730
4731
|
};
|
|
4731
|
-
timestamp: number;
|
|
4732
4732
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4733
4733
|
payloadHash?: string | undefined;
|
|
4734
4734
|
}, {
|
|
4735
4735
|
type: "backoffElapsed";
|
|
4736
4736
|
runId: string;
|
|
4737
|
+
timestamp: number;
|
|
4737
4738
|
schemaVersion: 1;
|
|
4738
4739
|
eventId: string;
|
|
4739
4740
|
payload: {
|
|
@@ -4744,7 +4745,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4744
4745
|
bytes: number;
|
|
4745
4746
|
schemaVersion: number;
|
|
4746
4747
|
};
|
|
4747
|
-
timestamp: number;
|
|
4748
4748
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4749
4749
|
payloadHash?: string | undefined;
|
|
4750
4750
|
}>, z.ZodObject<{
|
|
@@ -4792,6 +4792,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4792
4792
|
}, "strip", z.ZodTypeAny, {
|
|
4793
4793
|
type: "effectAttempted";
|
|
4794
4794
|
runId: string;
|
|
4795
|
+
timestamp: number;
|
|
4795
4796
|
schemaVersion: 1;
|
|
4796
4797
|
eventId: string;
|
|
4797
4798
|
payload: {
|
|
@@ -4806,12 +4807,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4806
4807
|
bytes: number;
|
|
4807
4808
|
schemaVersion: number;
|
|
4808
4809
|
};
|
|
4809
|
-
timestamp: number;
|
|
4810
4810
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4811
4811
|
payloadHash?: string | undefined;
|
|
4812
4812
|
}, {
|
|
4813
4813
|
type: "effectAttempted";
|
|
4814
4814
|
runId: string;
|
|
4815
|
+
timestamp: number;
|
|
4815
4816
|
schemaVersion: 1;
|
|
4816
4817
|
eventId: string;
|
|
4817
4818
|
payload: {
|
|
@@ -4826,7 +4827,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4826
4827
|
bytes: number;
|
|
4827
4828
|
schemaVersion: number;
|
|
4828
4829
|
};
|
|
4829
|
-
timestamp: number;
|
|
4830
4830
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4831
4831
|
payloadHash?: string | undefined;
|
|
4832
4832
|
}>, z.ZodObject<{
|
|
@@ -4898,6 +4898,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4898
4898
|
}, "strip", z.ZodTypeAny, {
|
|
4899
4899
|
type: "activitySucceeded";
|
|
4900
4900
|
runId: string;
|
|
4901
|
+
timestamp: number;
|
|
4901
4902
|
schemaVersion: 1;
|
|
4902
4903
|
eventId: string;
|
|
4903
4904
|
payload: {
|
|
@@ -4916,12 +4917,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4916
4917
|
bytes: number;
|
|
4917
4918
|
schemaVersion: number;
|
|
4918
4919
|
};
|
|
4919
|
-
timestamp: number;
|
|
4920
4920
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4921
4921
|
payloadHash?: string | undefined;
|
|
4922
4922
|
}, {
|
|
4923
4923
|
type: "activitySucceeded";
|
|
4924
4924
|
runId: string;
|
|
4925
|
+
timestamp: number;
|
|
4925
4926
|
schemaVersion: 1;
|
|
4926
4927
|
eventId: string;
|
|
4927
4928
|
payload: {
|
|
@@ -4940,7 +4941,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4940
4941
|
bytes: number;
|
|
4941
4942
|
schemaVersion: number;
|
|
4942
4943
|
};
|
|
4943
|
-
timestamp: number;
|
|
4944
4944
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
4945
4945
|
payloadHash?: string | undefined;
|
|
4946
4946
|
}>, z.ZodObject<{
|
|
@@ -5004,6 +5004,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5004
5004
|
}, "strip", z.ZodTypeAny, {
|
|
5005
5005
|
type: "activityFailed";
|
|
5006
5006
|
runId: string;
|
|
5007
|
+
timestamp: number;
|
|
5007
5008
|
schemaVersion: 1;
|
|
5008
5009
|
eventId: string;
|
|
5009
5010
|
payload: {
|
|
@@ -5020,12 +5021,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5020
5021
|
bytes: number;
|
|
5021
5022
|
schemaVersion: number;
|
|
5022
5023
|
};
|
|
5023
|
-
timestamp: number;
|
|
5024
5024
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5025
5025
|
payloadHash?: string | undefined;
|
|
5026
5026
|
}, {
|
|
5027
5027
|
type: "activityFailed";
|
|
5028
5028
|
runId: string;
|
|
5029
|
+
timestamp: number;
|
|
5029
5030
|
schemaVersion: 1;
|
|
5030
5031
|
eventId: string;
|
|
5031
5032
|
payload: {
|
|
@@ -5042,7 +5043,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5042
5043
|
bytes: number;
|
|
5043
5044
|
schemaVersion: number;
|
|
5044
5045
|
};
|
|
5045
|
-
timestamp: number;
|
|
5046
5046
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5047
5047
|
payloadHash?: string | undefined;
|
|
5048
5048
|
}>, z.ZodObject<{
|
|
@@ -5129,6 +5129,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5129
5129
|
}, "strip", z.ZodTypeAny, {
|
|
5130
5130
|
type: "waitCreated";
|
|
5131
5131
|
runId: string;
|
|
5132
|
+
timestamp: number;
|
|
5132
5133
|
schemaVersion: 1;
|
|
5133
5134
|
eventId: string;
|
|
5134
5135
|
payload: {
|
|
@@ -5152,12 +5153,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5152
5153
|
bytes: number;
|
|
5153
5154
|
schemaVersion: number;
|
|
5154
5155
|
};
|
|
5155
|
-
timestamp: number;
|
|
5156
5156
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5157
5157
|
payloadHash?: string | undefined;
|
|
5158
5158
|
}, {
|
|
5159
5159
|
type: "waitCreated";
|
|
5160
5160
|
runId: string;
|
|
5161
|
+
timestamp: number;
|
|
5161
5162
|
schemaVersion: 1;
|
|
5162
5163
|
eventId: string;
|
|
5163
5164
|
payload: {
|
|
@@ -5181,7 +5182,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5181
5182
|
bytes: number;
|
|
5182
5183
|
schemaVersion: number;
|
|
5183
5184
|
};
|
|
5184
|
-
timestamp: number;
|
|
5185
5185
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5186
5186
|
payloadHash?: string | undefined;
|
|
5187
5187
|
}>, z.ZodObject<{
|
|
@@ -5223,6 +5223,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5223
5223
|
}, "strip", z.ZodTypeAny, {
|
|
5224
5224
|
type: "waitResolved";
|
|
5225
5225
|
runId: string;
|
|
5226
|
+
timestamp: number;
|
|
5226
5227
|
schemaVersion: 1;
|
|
5227
5228
|
eventId: string;
|
|
5228
5229
|
payload: {
|
|
@@ -5235,12 +5236,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5235
5236
|
bytes: number;
|
|
5236
5237
|
schemaVersion: number;
|
|
5237
5238
|
};
|
|
5238
|
-
timestamp: number;
|
|
5239
5239
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5240
5240
|
payloadHash?: string | undefined;
|
|
5241
5241
|
}, {
|
|
5242
5242
|
type: "waitResolved";
|
|
5243
5243
|
runId: string;
|
|
5244
|
+
timestamp: number;
|
|
5244
5245
|
schemaVersion: 1;
|
|
5245
5246
|
eventId: string;
|
|
5246
5247
|
payload: {
|
|
@@ -5253,7 +5254,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5253
5254
|
bytes: number;
|
|
5254
5255
|
schemaVersion: number;
|
|
5255
5256
|
};
|
|
5256
|
-
timestamp: number;
|
|
5257
5257
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5258
5258
|
payloadHash?: string | undefined;
|
|
5259
5259
|
}>, z.ZodObject<{
|
|
@@ -5292,6 +5292,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5292
5292
|
}, "strip", z.ZodTypeAny, {
|
|
5293
5293
|
type: "waitDeadlineExceeded";
|
|
5294
5294
|
runId: string;
|
|
5295
|
+
timestamp: number;
|
|
5295
5296
|
schemaVersion: 1;
|
|
5296
5297
|
eventId: string;
|
|
5297
5298
|
payload: {
|
|
@@ -5303,12 +5304,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5303
5304
|
bytes: number;
|
|
5304
5305
|
schemaVersion: number;
|
|
5305
5306
|
};
|
|
5306
|
-
timestamp: number;
|
|
5307
5307
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5308
5308
|
payloadHash?: string | undefined;
|
|
5309
5309
|
}, {
|
|
5310
5310
|
type: "waitDeadlineExceeded";
|
|
5311
5311
|
runId: string;
|
|
5312
|
+
timestamp: number;
|
|
5312
5313
|
schemaVersion: 1;
|
|
5313
5314
|
eventId: string;
|
|
5314
5315
|
payload: {
|
|
@@ -5320,7 +5321,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5320
5321
|
bytes: number;
|
|
5321
5322
|
schemaVersion: number;
|
|
5322
5323
|
};
|
|
5323
|
-
timestamp: number;
|
|
5324
5324
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5325
5325
|
payloadHash?: string | undefined;
|
|
5326
5326
|
}>, z.ZodObject<{
|
|
@@ -5404,6 +5404,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5404
5404
|
}, "strip", z.ZodTypeAny, {
|
|
5405
5405
|
type: "cancelRequested";
|
|
5406
5406
|
runId: string;
|
|
5407
|
+
timestamp: number;
|
|
5407
5408
|
schemaVersion: 1;
|
|
5408
5409
|
eventId: string;
|
|
5409
5410
|
payload: {
|
|
@@ -5424,12 +5425,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5424
5425
|
bytes: number;
|
|
5425
5426
|
schemaVersion: number;
|
|
5426
5427
|
};
|
|
5427
|
-
timestamp: number;
|
|
5428
5428
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5429
5429
|
payloadHash?: string | undefined;
|
|
5430
5430
|
}, {
|
|
5431
5431
|
type: "cancelRequested";
|
|
5432
5432
|
runId: string;
|
|
5433
|
+
timestamp: number;
|
|
5433
5434
|
schemaVersion: 1;
|
|
5434
5435
|
eventId: string;
|
|
5435
5436
|
payload: {
|
|
@@ -5450,7 +5451,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5450
5451
|
bytes: number;
|
|
5451
5452
|
schemaVersion: number;
|
|
5452
5453
|
};
|
|
5453
|
-
timestamp: number;
|
|
5454
5454
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5455
5455
|
payloadHash?: string | undefined;
|
|
5456
5456
|
}>, z.ZodObject<{
|
|
@@ -5531,6 +5531,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5531
5531
|
}, "strip", z.ZodTypeAny, {
|
|
5532
5532
|
type: "cancelDelivered";
|
|
5533
5533
|
runId: string;
|
|
5534
|
+
timestamp: number;
|
|
5534
5535
|
schemaVersion: 1;
|
|
5535
5536
|
eventId: string;
|
|
5536
5537
|
payload: {
|
|
@@ -5550,12 +5551,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5550
5551
|
bytes: number;
|
|
5551
5552
|
schemaVersion: number;
|
|
5552
5553
|
};
|
|
5553
|
-
timestamp: number;
|
|
5554
5554
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5555
5555
|
payloadHash?: string | undefined;
|
|
5556
5556
|
}, {
|
|
5557
5557
|
type: "cancelDelivered";
|
|
5558
5558
|
runId: string;
|
|
5559
|
+
timestamp: number;
|
|
5559
5560
|
schemaVersion: 1;
|
|
5560
5561
|
eventId: string;
|
|
5561
5562
|
payload: {
|
|
@@ -5575,7 +5576,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5575
5576
|
bytes: number;
|
|
5576
5577
|
schemaVersion: number;
|
|
5577
5578
|
};
|
|
5578
|
-
timestamp: number;
|
|
5579
5579
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5580
5580
|
payloadHash?: string | undefined;
|
|
5581
5581
|
}>, z.ZodObject<{
|
|
@@ -5614,6 +5614,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5614
5614
|
}, "strip", z.ZodTypeAny, {
|
|
5615
5615
|
type: "activityCanceled";
|
|
5616
5616
|
runId: string;
|
|
5617
|
+
timestamp: number;
|
|
5617
5618
|
schemaVersion: 1;
|
|
5618
5619
|
eventId: string;
|
|
5619
5620
|
payload: {
|
|
@@ -5625,12 +5626,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5625
5626
|
bytes: number;
|
|
5626
5627
|
schemaVersion: number;
|
|
5627
5628
|
};
|
|
5628
|
-
timestamp: number;
|
|
5629
5629
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5630
5630
|
payloadHash?: string | undefined;
|
|
5631
5631
|
}, {
|
|
5632
5632
|
type: "activityCanceled";
|
|
5633
5633
|
runId: string;
|
|
5634
|
+
timestamp: number;
|
|
5634
5635
|
schemaVersion: 1;
|
|
5635
5636
|
eventId: string;
|
|
5636
5637
|
payload: {
|
|
@@ -5642,7 +5643,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5642
5643
|
bytes: number;
|
|
5643
5644
|
schemaVersion: number;
|
|
5644
5645
|
};
|
|
5645
|
-
timestamp: number;
|
|
5646
5646
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5647
5647
|
payloadHash?: string | undefined;
|
|
5648
5648
|
}>, z.ZodObject<{
|
|
@@ -5678,6 +5678,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5678
5678
|
}, "strip", z.ZodTypeAny, {
|
|
5679
5679
|
type: "workerLost";
|
|
5680
5680
|
runId: string;
|
|
5681
|
+
timestamp: number;
|
|
5681
5682
|
schemaVersion: 1;
|
|
5682
5683
|
eventId: string;
|
|
5683
5684
|
payload: {
|
|
@@ -5688,12 +5689,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5688
5689
|
bytes: number;
|
|
5689
5690
|
schemaVersion: number;
|
|
5690
5691
|
};
|
|
5691
|
-
timestamp: number;
|
|
5692
5692
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5693
5693
|
payloadHash?: string | undefined;
|
|
5694
5694
|
}, {
|
|
5695
5695
|
type: "workerLost";
|
|
5696
5696
|
runId: string;
|
|
5697
|
+
timestamp: number;
|
|
5697
5698
|
schemaVersion: 1;
|
|
5698
5699
|
eventId: string;
|
|
5699
5700
|
payload: {
|
|
@@ -5704,7 +5705,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5704
5705
|
bytes: number;
|
|
5705
5706
|
schemaVersion: number;
|
|
5706
5707
|
};
|
|
5707
|
-
timestamp: number;
|
|
5708
5708
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5709
5709
|
payloadHash?: string | undefined;
|
|
5710
5710
|
}>, z.ZodObject<{
|
|
@@ -5740,6 +5740,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5740
5740
|
}, "strip", z.ZodTypeAny, {
|
|
5741
5741
|
type: "resumeStarted";
|
|
5742
5742
|
runId: string;
|
|
5743
|
+
timestamp: number;
|
|
5743
5744
|
schemaVersion: 1;
|
|
5744
5745
|
eventId: string;
|
|
5745
5746
|
payload: {
|
|
@@ -5750,12 +5751,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5750
5751
|
bytes: number;
|
|
5751
5752
|
schemaVersion: number;
|
|
5752
5753
|
};
|
|
5753
|
-
timestamp: number;
|
|
5754
5754
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5755
5755
|
payloadHash?: string | undefined;
|
|
5756
5756
|
}, {
|
|
5757
5757
|
type: "resumeStarted";
|
|
5758
5758
|
runId: string;
|
|
5759
|
+
timestamp: number;
|
|
5759
5760
|
schemaVersion: 1;
|
|
5760
5761
|
eventId: string;
|
|
5761
5762
|
payload: {
|
|
@@ -5766,7 +5767,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5766
5767
|
bytes: number;
|
|
5767
5768
|
schemaVersion: number;
|
|
5768
5769
|
};
|
|
5769
|
-
timestamp: number;
|
|
5770
5770
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5771
5771
|
payloadHash?: string | undefined;
|
|
5772
5772
|
}>, z.ZodObject<{
|
|
@@ -5811,6 +5811,7 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5811
5811
|
}, "strip", z.ZodTypeAny, {
|
|
5812
5812
|
type: "reconcileResult";
|
|
5813
5813
|
runId: string;
|
|
5814
|
+
timestamp: number;
|
|
5814
5815
|
schemaVersion: 1;
|
|
5815
5816
|
eventId: string;
|
|
5816
5817
|
payload: {
|
|
@@ -5824,12 +5825,12 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5824
5825
|
bytes: number;
|
|
5825
5826
|
schemaVersion: number;
|
|
5826
5827
|
};
|
|
5827
|
-
timestamp: number;
|
|
5828
5828
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5829
5829
|
payloadHash?: string | undefined;
|
|
5830
5830
|
}, {
|
|
5831
5831
|
type: "reconcileResult";
|
|
5832
5832
|
runId: string;
|
|
5833
|
+
timestamp: number;
|
|
5833
5834
|
schemaVersion: 1;
|
|
5834
5835
|
eventId: string;
|
|
5835
5836
|
payload: {
|
|
@@ -5843,7 +5844,6 @@ export declare const EventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5843
5844
|
bytes: number;
|
|
5844
5845
|
schemaVersion: number;
|
|
5845
5846
|
};
|
|
5846
|
-
timestamp: number;
|
|
5847
5847
|
actor: "scheduler" | "worker" | "hostExecutor" | "human" | "supervisor" | "system";
|
|
5848
5848
|
payloadHash?: string | undefined;
|
|
5849
5849
|
}>]>;
|