@spotpatch/shared 1.10.0 → 1.11.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/{chunk-ZCG3DLSW.js → chunk-JGOIBOFI.js} +8 -2
- package/dist/chunk-JGOIBOFI.js.map +1 -0
- package/dist/{chunk-MOGITGPP.js → chunk-JU5HIWX7.js} +1 -1
- package/dist/chunk-JU5HIWX7.js.map +1 -0
- package/dist/{data-flow-runtime-BMm3F-eV.d.cts → data-flow-runtime-BiouPr1G.d.cts} +1 -1
- package/dist/{data-flow-runtime-Dp-xznQW.d.ts → data-flow-runtime-oKZOBYAB.d.ts} +1 -1
- package/dist/data-flow-runtime.cjs +7 -1
- package/dist/data-flow-runtime.cjs.map +1 -1
- package/dist/data-flow-runtime.d.cts +2 -2
- package/dist/data-flow-runtime.d.ts +2 -2
- package/dist/data-flow-runtime.js +1 -1
- package/dist/{endpoints-BT-Bl1WS.d.cts → endpoints-GedF44M2.d.cts} +6 -0
- package/dist/{endpoints-BT-Bl1WS.d.ts → endpoints-GedF44M2.d.ts} +6 -0
- package/dist/external-agent-control-BB-oicmw.d.cts +547 -0
- package/dist/external-agent-control-BB-oicmw.d.ts +547 -0
- package/dist/external-agent-node.cjs.map +1 -1
- package/dist/external-agent-node.d.cts +20 -20
- package/dist/external-agent-node.d.ts +20 -20
- package/dist/external-agent-node.js +1 -1
- package/dist/external-handoff-browser.cjs +162 -1
- package/dist/external-handoff-browser.cjs.map +1 -1
- package/dist/external-handoff-browser.d.cts +29 -3
- package/dist/external-handoff-browser.d.ts +29 -3
- package/dist/external-handoff-browser.js +141 -1
- package/dist/external-handoff-browser.js.map +1 -1
- package/dist/index.cjs +481 -183
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -29
- package/dist/index.d.ts +31 -29
- package/dist/index.js +328 -66
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-MOGITGPP.js.map +0 -1
- package/dist/chunk-ZCG3DLSW.js.map +0 -1
- package/dist/{external-handoff-CWoooqhp.d.cts → external-handoff--lT9XQEw.d.cts} +22 -22
- package/dist/{external-handoff-CWoooqhp.d.ts → external-handoff--lT9XQEw.d.ts} +22 -22
|
@@ -144,11 +144,11 @@ type ExternalHandoffDispatchPhase = (typeof EXTERNAL_HANDOFF_DISPATCH_PHASES)[nu
|
|
|
144
144
|
type ExternalHandoffReportableDispatchPhase = (typeof EXTERNAL_HANDOFF_REPORTABLE_DISPATCH_PHASES)[number];
|
|
145
145
|
|
|
146
146
|
declare const externalHandoffReportableDispatchPhaseSchema: z.ZodEnum<{
|
|
147
|
-
completed: "completed";
|
|
148
|
-
failed: "failed";
|
|
149
147
|
dispatching: "dispatching";
|
|
150
148
|
dispatched: "dispatched";
|
|
151
149
|
working: "working";
|
|
150
|
+
completed: "completed";
|
|
151
|
+
failed: "failed";
|
|
152
152
|
"delivery-unknown": "delivery-unknown";
|
|
153
153
|
}>;
|
|
154
154
|
declare const externalHandoffSummarySchema: z.ZodObject<{
|
|
@@ -307,8 +307,8 @@ declare const activeAdapterSummarySchema: z.ZodObject<{
|
|
|
307
307
|
}>;
|
|
308
308
|
state: z.ZodEnum<{
|
|
309
309
|
ready: "ready";
|
|
310
|
-
blocked: "blocked";
|
|
311
310
|
busy: "busy";
|
|
311
|
+
blocked: "blocked";
|
|
312
312
|
}>;
|
|
313
313
|
canDispatch: z.ZodBoolean;
|
|
314
314
|
connectedAt: z.ZodISODateTime;
|
|
@@ -321,13 +321,13 @@ declare const dispatchSummarySchema: z.ZodObject<{
|
|
|
321
321
|
}>;
|
|
322
322
|
revision: z.ZodNumber;
|
|
323
323
|
phase: z.ZodEnum<{
|
|
324
|
-
queued: "queued";
|
|
325
|
-
completed: "completed";
|
|
326
|
-
failed: "failed";
|
|
327
324
|
dispatching: "dispatching";
|
|
328
325
|
dispatched: "dispatched";
|
|
329
326
|
working: "working";
|
|
327
|
+
completed: "completed";
|
|
328
|
+
failed: "failed";
|
|
330
329
|
"delivery-unknown": "delivery-unknown";
|
|
330
|
+
queued: "queued";
|
|
331
331
|
}>;
|
|
332
332
|
updatedAt: z.ZodISODateTime;
|
|
333
333
|
}, z.core.$strict>;
|
|
@@ -467,8 +467,8 @@ declare const externalHandoffCapabilitySchema: z.ZodObject<{
|
|
|
467
467
|
}>;
|
|
468
468
|
state: z.ZodEnum<{
|
|
469
469
|
ready: "ready";
|
|
470
|
-
blocked: "blocked";
|
|
471
470
|
busy: "busy";
|
|
471
|
+
blocked: "blocked";
|
|
472
472
|
}>;
|
|
473
473
|
canDispatch: z.ZodBoolean;
|
|
474
474
|
connectedAt: z.ZodISODateTime;
|
|
@@ -481,13 +481,13 @@ declare const externalHandoffCapabilitySchema: z.ZodObject<{
|
|
|
481
481
|
}>;
|
|
482
482
|
revision: z.ZodNumber;
|
|
483
483
|
phase: z.ZodEnum<{
|
|
484
|
-
queued: "queued";
|
|
485
|
-
completed: "completed";
|
|
486
|
-
failed: "failed";
|
|
487
484
|
dispatching: "dispatching";
|
|
488
485
|
dispatched: "dispatched";
|
|
489
486
|
working: "working";
|
|
487
|
+
completed: "completed";
|
|
488
|
+
failed: "failed";
|
|
490
489
|
"delivery-unknown": "delivery-unknown";
|
|
490
|
+
queued: "queued";
|
|
491
491
|
}>;
|
|
492
492
|
updatedAt: z.ZodISODateTime;
|
|
493
493
|
}, z.core.$strict>>;
|
|
@@ -503,8 +503,8 @@ declare const externalHandoffPublishDeliverySchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
503
503
|
}>;
|
|
504
504
|
state: z.ZodEnum<{
|
|
505
505
|
ready: "ready";
|
|
506
|
-
blocked: "blocked";
|
|
507
506
|
busy: "busy";
|
|
507
|
+
blocked: "blocked";
|
|
508
508
|
}>;
|
|
509
509
|
canDispatch: z.ZodBoolean;
|
|
510
510
|
connectedAt: z.ZodISODateTime;
|
|
@@ -517,13 +517,13 @@ declare const externalHandoffPublishDeliverySchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
517
517
|
}>;
|
|
518
518
|
revision: z.ZodNumber;
|
|
519
519
|
phase: z.ZodEnum<{
|
|
520
|
-
queued: "queued";
|
|
521
|
-
completed: "completed";
|
|
522
|
-
failed: "failed";
|
|
523
520
|
dispatching: "dispatching";
|
|
524
521
|
dispatched: "dispatched";
|
|
525
522
|
working: "working";
|
|
523
|
+
completed: "completed";
|
|
524
|
+
failed: "failed";
|
|
526
525
|
"delivery-unknown": "delivery-unknown";
|
|
526
|
+
queued: "queued";
|
|
527
527
|
}>;
|
|
528
528
|
updatedAt: z.ZodISODateTime;
|
|
529
529
|
}, z.core.$strict>;
|
|
@@ -563,8 +563,8 @@ declare const externalHandoffPublishResultSchema: z.ZodObject<{
|
|
|
563
563
|
}>;
|
|
564
564
|
state: z.ZodEnum<{
|
|
565
565
|
ready: "ready";
|
|
566
|
-
blocked: "blocked";
|
|
567
566
|
busy: "busy";
|
|
567
|
+
blocked: "blocked";
|
|
568
568
|
}>;
|
|
569
569
|
canDispatch: z.ZodBoolean;
|
|
570
570
|
connectedAt: z.ZodISODateTime;
|
|
@@ -577,13 +577,13 @@ declare const externalHandoffPublishResultSchema: z.ZodObject<{
|
|
|
577
577
|
}>;
|
|
578
578
|
revision: z.ZodNumber;
|
|
579
579
|
phase: z.ZodEnum<{
|
|
580
|
-
queued: "queued";
|
|
581
|
-
completed: "completed";
|
|
582
|
-
failed: "failed";
|
|
583
580
|
dispatching: "dispatching";
|
|
584
581
|
dispatched: "dispatched";
|
|
585
582
|
working: "working";
|
|
583
|
+
completed: "completed";
|
|
584
|
+
failed: "failed";
|
|
586
585
|
"delivery-unknown": "delivery-unknown";
|
|
586
|
+
queued: "queued";
|
|
587
587
|
}>;
|
|
588
588
|
updatedAt: z.ZodISODateTime;
|
|
589
589
|
}, z.core.$strict>;
|
|
@@ -621,8 +621,8 @@ declare const externalHandoffStatusResultSchema: z.ZodObject<{
|
|
|
621
621
|
}>;
|
|
622
622
|
state: z.ZodEnum<{
|
|
623
623
|
ready: "ready";
|
|
624
|
-
blocked: "blocked";
|
|
625
624
|
busy: "busy";
|
|
625
|
+
blocked: "blocked";
|
|
626
626
|
}>;
|
|
627
627
|
canDispatch: z.ZodBoolean;
|
|
628
628
|
connectedAt: z.ZodISODateTime;
|
|
@@ -635,13 +635,13 @@ declare const externalHandoffStatusResultSchema: z.ZodObject<{
|
|
|
635
635
|
}>;
|
|
636
636
|
revision: z.ZodNumber;
|
|
637
637
|
phase: z.ZodEnum<{
|
|
638
|
-
queued: "queued";
|
|
639
|
-
completed: "completed";
|
|
640
|
-
failed: "failed";
|
|
641
638
|
dispatching: "dispatching";
|
|
642
639
|
dispatched: "dispatched";
|
|
643
640
|
working: "working";
|
|
641
|
+
completed: "completed";
|
|
642
|
+
failed: "failed";
|
|
644
643
|
"delivery-unknown": "delivery-unknown";
|
|
644
|
+
queued: "queued";
|
|
645
645
|
}>;
|
|
646
646
|
updatedAt: z.ZodISODateTime;
|
|
647
647
|
}, z.core.$strict>>;
|