@hyperdrive.bot/paseo-protocol 0.3.55 → 0.3.57
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/messages.d.ts
CHANGED
|
@@ -13297,6 +13297,10 @@ export declare const ProvidersReloadConfigResponseMessageSchema: z.ZodObject<{
|
|
|
13297
13297
|
label: z.ZodString;
|
|
13298
13298
|
enabled: z.ZodBoolean;
|
|
13299
13299
|
}, z.core.$strip>>;
|
|
13300
|
+
skipped: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13301
|
+
provider: z.ZodString;
|
|
13302
|
+
reason: z.ZodString;
|
|
13303
|
+
}, z.core.$strip>>>;
|
|
13300
13304
|
requestId: z.ZodString;
|
|
13301
13305
|
}, z.core.$strip>;
|
|
13302
13306
|
}, z.core.$strip>;
|
|
@@ -19854,6 +19858,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
19854
19858
|
label: z.ZodString;
|
|
19855
19859
|
enabled: z.ZodBoolean;
|
|
19856
19860
|
}, z.core.$strip>>;
|
|
19861
|
+
skipped: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19862
|
+
provider: z.ZodString;
|
|
19863
|
+
reason: z.ZodString;
|
|
19864
|
+
}, z.core.$strip>>>;
|
|
19857
19865
|
requestId: z.ZodString;
|
|
19858
19866
|
}, z.core.$strip>;
|
|
19859
19867
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -30333,6 +30341,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30333
30341
|
label: z.ZodString;
|
|
30334
30342
|
enabled: z.ZodBoolean;
|
|
30335
30343
|
}, z.core.$strip>>;
|
|
30344
|
+
skipped: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
30345
|
+
provider: z.ZodString;
|
|
30346
|
+
reason: z.ZodString;
|
|
30347
|
+
}, z.core.$strip>>>;
|
|
30336
30348
|
requestId: z.ZodString;
|
|
30337
30349
|
}, z.core.$strip>;
|
|
30338
30350
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -40470,6 +40482,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
40470
40482
|
label: z.ZodString;
|
|
40471
40483
|
enabled: z.ZodBoolean;
|
|
40472
40484
|
}, z.core.$strip>>;
|
|
40485
|
+
skipped: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40486
|
+
provider: z.ZodString;
|
|
40487
|
+
reason: z.ZodString;
|
|
40488
|
+
}, z.core.$strip>>>;
|
|
40473
40489
|
requestId: z.ZodString;
|
|
40474
40490
|
}, z.core.$strip>;
|
|
40475
40491
|
}, z.core.$strip>, z.ZodObject<{
|
package/dist/messages.js
CHANGED
|
@@ -4684,6 +4684,18 @@ export const ProvidersReloadConfigResponseMessageSchema = z.object({
|
|
|
4684
4684
|
label: z.string(),
|
|
4685
4685
|
enabled: z.boolean(),
|
|
4686
4686
|
})),
|
|
4687
|
+
// COMPAT(providerReloadSkipped): added in v0.3.56. A custom provider whose
|
|
4688
|
+
// entry cannot be resolved (no `extends`, an unknown base, an ACP entry with
|
|
4689
|
+
// no command) is skipped rather than aborting the whole rebuild, so ONE bad
|
|
4690
|
+
// entry can no longer wedge every other provider. Optional so an older client
|
|
4691
|
+
// parsing a newer daemon's response keeps working; `reason` is a plain-English
|
|
4692
|
+
// sentence and, like the rest of this payload, never carries resolved `env`.
|
|
4693
|
+
skipped: z
|
|
4694
|
+
.array(z.object({
|
|
4695
|
+
provider: z.string(),
|
|
4696
|
+
reason: z.string(),
|
|
4697
|
+
}))
|
|
4698
|
+
.optional(),
|
|
4687
4699
|
requestId: z.string(),
|
|
4688
4700
|
}),
|
|
4689
4701
|
});
|
|
@@ -6084,6 +6084,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6084
6084
|
label: import("zod").ZodString;
|
|
6085
6085
|
enabled: import("zod").ZodBoolean;
|
|
6086
6086
|
}, import("zod/v4/core").$strip>>;
|
|
6087
|
+
skipped: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6088
|
+
provider: import("zod").ZodString;
|
|
6089
|
+
reason: import("zod").ZodString;
|
|
6090
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6087
6091
|
requestId: import("zod").ZodString;
|
|
6088
6092
|
}, import("zod/v4/core").$strip>;
|
|
6089
6093
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|