@axiom-lattice/microsandbox-service 0.1.1 → 0.1.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @axiom-lattice/microsandbox-service
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 08bf26a: update metric builder
8
+
3
9
  ## 0.1.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -81,10 +81,10 @@ declare const ensureSandboxSchema: z.ZodObject<{
81
81
  sizeMib?: number | undefined;
82
82
  }>]>>>;
83
83
  }, "strip", z.ZodTypeAny, {
84
+ env?: Record<string, string> | undefined;
84
85
  image?: string | undefined;
85
86
  cpus?: number | undefined;
86
87
  memoryMib?: number | undefined;
87
- env?: Record<string, string> | undefined;
88
88
  volumes?: Record<string, {
89
89
  type: "bind";
90
90
  source: string;
@@ -98,10 +98,10 @@ declare const ensureSandboxSchema: z.ZodObject<{
98
98
  sizeMib?: number | undefined;
99
99
  }> | undefined;
100
100
  }, {
101
+ env?: Record<string, string> | undefined;
101
102
  image?: string | undefined;
102
103
  cpus?: number | undefined;
103
104
  memoryMib?: number | undefined;
104
- env?: Record<string, string> | undefined;
105
105
  volumes?: Record<string, {
106
106
  type: "bind";
107
107
  source: string;
@@ -120,12 +120,12 @@ declare const listSandboxesQuerySchema: z.ZodObject<{
120
120
  image: z.ZodOptional<z.ZodString>;
121
121
  search: z.ZodOptional<z.ZodString>;
122
122
  }, "strip", z.ZodTypeAny, {
123
- status?: "unknown" | "running" | "stopped" | "crashed" | undefined;
124
123
  search?: string | undefined;
124
+ status?: "unknown" | "running" | "stopped" | "crashed" | undefined;
125
125
  image?: string | undefined;
126
126
  }, {
127
- status?: "unknown" | "running" | "stopped" | "crashed" | undefined;
128
127
  search?: string | undefined;
128
+ status?: "unknown" | "running" | "stopped" | "crashed" | undefined;
129
129
  image?: string | undefined;
130
130
  }>;
131
131
  declare const shellExecSchema: z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiom-lattice/microsandbox-service",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",