@hasna/machines 0.0.36 → 0.0.38
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/README.md +54 -0
- package/dist/agent/index.js +10554 -166
- package/dist/agent/runtime.d.ts +33 -3
- package/dist/agent/runtime.d.ts.map +1 -1
- package/dist/cli/index.js +886 -58
- package/dist/commands/daemon.d.ts +76 -0
- package/dist/commands/daemon.d.ts.map +1 -0
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/serve.d.ts.map +1 -1
- package/dist/commands/status.d.ts.map +1 -1
- package/dist/consumer.js +225 -6
- package/dist/db.d.ts +29 -1
- package/dist/db.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1330 -228
- package/dist/manifests.d.ts +6 -6
- package/dist/mcp/index.js +1755 -1083
- package/dist/mcp/server.d.ts +1 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/pg-migrations.d.ts.map +1 -1
- package/dist/redaction.d.ts +9 -0
- package/dist/redaction.d.ts.map +1 -1
- package/dist/remote-storage.d.ts +3 -0
- package/dist/remote-storage.d.ts.map +1 -1
- package/dist/storage.js +116 -7
- package/dist/topology.d.ts +21 -0
- package/dist/topology.d.ts.map +1 -1
- package/dist/types.d.ts +5 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/manifests.d.ts
CHANGED
|
@@ -67,8 +67,8 @@ export declare const machineSchema: z.ZodObject<{
|
|
|
67
67
|
mode?: "copy" | "symlink" | undefined;
|
|
68
68
|
}>, "many">>;
|
|
69
69
|
}, "strip", z.ZodTypeAny, {
|
|
70
|
-
id: string;
|
|
71
70
|
platform: "linux" | "macos" | "windows";
|
|
71
|
+
id: string;
|
|
72
72
|
workspacePath: string;
|
|
73
73
|
hostname?: string | undefined;
|
|
74
74
|
sshAddress?: string | undefined;
|
|
@@ -93,8 +93,8 @@ export declare const machineSchema: z.ZodObject<{
|
|
|
93
93
|
mode?: "copy" | "symlink" | undefined;
|
|
94
94
|
}[] | undefined;
|
|
95
95
|
}, {
|
|
96
|
-
id: string;
|
|
97
96
|
platform: "linux" | "macos" | "windows";
|
|
97
|
+
id: string;
|
|
98
98
|
workspacePath: string;
|
|
99
99
|
hostname?: string | undefined;
|
|
100
100
|
sshAddress?: string | undefined;
|
|
@@ -173,8 +173,8 @@ export declare const fleetSchema: z.ZodObject<{
|
|
|
173
173
|
mode?: "copy" | "symlink" | undefined;
|
|
174
174
|
}>, "many">>;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
id: string;
|
|
177
176
|
platform: "linux" | "macos" | "windows";
|
|
177
|
+
id: string;
|
|
178
178
|
workspacePath: string;
|
|
179
179
|
hostname?: string | undefined;
|
|
180
180
|
sshAddress?: string | undefined;
|
|
@@ -199,8 +199,8 @@ export declare const fleetSchema: z.ZodObject<{
|
|
|
199
199
|
mode?: "copy" | "symlink" | undefined;
|
|
200
200
|
}[] | undefined;
|
|
201
201
|
}, {
|
|
202
|
-
id: string;
|
|
203
202
|
platform: "linux" | "macos" | "windows";
|
|
203
|
+
id: string;
|
|
204
204
|
workspacePath: string;
|
|
205
205
|
hostname?: string | undefined;
|
|
206
206
|
sshAddress?: string | undefined;
|
|
@@ -227,8 +227,8 @@ export declare const fleetSchema: z.ZodObject<{
|
|
|
227
227
|
}>, "many">;
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
229
|
machines: {
|
|
230
|
-
id: string;
|
|
231
230
|
platform: "linux" | "macos" | "windows";
|
|
231
|
+
id: string;
|
|
232
232
|
workspacePath: string;
|
|
233
233
|
hostname?: string | undefined;
|
|
234
234
|
sshAddress?: string | undefined;
|
|
@@ -257,8 +257,8 @@ export declare const fleetSchema: z.ZodObject<{
|
|
|
257
257
|
generatedAt?: string | undefined;
|
|
258
258
|
}, {
|
|
259
259
|
machines: {
|
|
260
|
-
id: string;
|
|
261
260
|
platform: "linux" | "macos" | "windows";
|
|
261
|
+
id: string;
|
|
262
262
|
workspacePath: string;
|
|
263
263
|
hostname?: string | undefined;
|
|
264
264
|
sshAddress?: string | undefined;
|