@agentdock/wire 0.0.39 → 0.0.40
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/machine.d.ts +2 -2
- package/package.json +1 -1
package/dist/machine.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export declare const MachineSummarySchema: z.ZodObject<{
|
|
|
79
79
|
}>;
|
|
80
80
|
export type MachineSummary = z.infer<typeof MachineSummarySchema>;
|
|
81
81
|
export declare const MigrationInfoSchema: z.ZodObject<{
|
|
82
|
-
/** The npm package to migrate to (e.g. '
|
|
82
|
+
/** The npm package to migrate to (e.g. 'ccpark'). */
|
|
83
83
|
targetPackage: z.ZodString;
|
|
84
84
|
/** User-facing message explaining the migration. */
|
|
85
85
|
message: z.ZodString;
|
|
@@ -104,7 +104,7 @@ export declare const MachineRegisterResultSchema: z.ZodObject<{
|
|
|
104
104
|
}>>;
|
|
105
105
|
/** Present when the daemon's brand has been renamed and should migrate. */
|
|
106
106
|
migration: z.ZodOptional<z.ZodObject<{
|
|
107
|
-
/** The npm package to migrate to (e.g. '
|
|
107
|
+
/** The npm package to migrate to (e.g. 'ccpark'). */
|
|
108
108
|
targetPackage: z.ZodString;
|
|
109
109
|
/** User-facing message explaining the migration. */
|
|
110
110
|
message: z.ZodString;
|