phala 1.1.21 → 1.1.22
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/api/index.d.ts +10 -10
- package/dist/api/index.js +24 -24
- package/dist/index.js +160 -231
- package/package.json +2 -2
package/dist/api/index.d.ts
CHANGED
|
@@ -6,12 +6,12 @@ declare const dockerConfigSchema: z.ZodObject<{
|
|
|
6
6
|
registry: z.ZodNullable<z.ZodString>;
|
|
7
7
|
username: z.ZodString;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
registry?: string;
|
|
10
9
|
password?: string;
|
|
10
|
+
registry?: string;
|
|
11
11
|
username?: string;
|
|
12
12
|
}, {
|
|
13
|
-
registry?: string;
|
|
14
13
|
password?: string;
|
|
14
|
+
registry?: string;
|
|
15
15
|
username?: string;
|
|
16
16
|
}>;
|
|
17
17
|
declare const composeFileSchema: z.ZodObject<{
|
|
@@ -21,12 +21,12 @@ declare const composeFileSchema: z.ZodObject<{
|
|
|
21
21
|
registry: z.ZodNullable<z.ZodString>;
|
|
22
22
|
username: z.ZodString;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
registry?: string;
|
|
25
24
|
password?: string;
|
|
25
|
+
registry?: string;
|
|
26
26
|
username?: string;
|
|
27
27
|
}, {
|
|
28
|
-
registry?: string;
|
|
29
28
|
password?: string;
|
|
29
|
+
registry?: string;
|
|
30
30
|
username?: string;
|
|
31
31
|
}>>>;
|
|
32
32
|
features: z.ZodArray<z.ZodString, "many">;
|
|
@@ -46,12 +46,12 @@ declare const composeFileSchema: z.ZodObject<{
|
|
|
46
46
|
registry: z.ZodNullable<z.ZodString>;
|
|
47
47
|
username: z.ZodString;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
|
-
registry?: string;
|
|
50
49
|
password?: string;
|
|
50
|
+
registry?: string;
|
|
51
51
|
username?: string;
|
|
52
52
|
}, {
|
|
53
|
-
registry?: string;
|
|
54
53
|
password?: string;
|
|
54
|
+
registry?: string;
|
|
55
55
|
username?: string;
|
|
56
56
|
}>>>;
|
|
57
57
|
features: z.ZodArray<z.ZodString, "many">;
|
|
@@ -71,12 +71,12 @@ declare const composeFileSchema: z.ZodObject<{
|
|
|
71
71
|
registry: z.ZodNullable<z.ZodString>;
|
|
72
72
|
username: z.ZodString;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
|
-
registry?: string;
|
|
75
74
|
password?: string;
|
|
75
|
+
registry?: string;
|
|
76
76
|
username?: string;
|
|
77
77
|
}, {
|
|
78
|
-
registry?: string;
|
|
79
78
|
password?: string;
|
|
79
|
+
registry?: string;
|
|
80
80
|
username?: string;
|
|
81
81
|
}>>>;
|
|
82
82
|
features: z.ZodArray<z.ZodString, "many">;
|
|
@@ -231,10 +231,10 @@ declare const replicateCvmResponseSchema: z.ZodObject<{
|
|
|
231
231
|
app_id?: string;
|
|
232
232
|
instance_id?: string;
|
|
233
233
|
version?: string;
|
|
234
|
-
runner?: string;
|
|
235
234
|
docker_compose_file?: string;
|
|
236
235
|
features?: string[];
|
|
237
236
|
manifest_version?: number;
|
|
237
|
+
runner?: string;
|
|
238
238
|
teepod_id?: number;
|
|
239
239
|
teepod?: {
|
|
240
240
|
name?: string;
|
|
@@ -256,10 +256,10 @@ declare const replicateCvmResponseSchema: z.ZodObject<{
|
|
|
256
256
|
app_id?: string;
|
|
257
257
|
instance_id?: string;
|
|
258
258
|
version?: string;
|
|
259
|
-
runner?: string;
|
|
260
259
|
docker_compose_file?: string;
|
|
261
260
|
features?: string[];
|
|
262
261
|
manifest_version?: number;
|
|
262
|
+
runner?: string;
|
|
263
263
|
teepod_id?: number;
|
|
264
264
|
teepod?: {
|
|
265
265
|
name?: string;
|