Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 22953f1

Browse files
authored
Merge pull request #31 from Phala-Network/hash/fix-eliza-template
fix instance id to be nullable
2 parents ed9cfba + c124ff8 commit 22953f1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phala",
3-
"version": "1.0.14",
3+
"version": "1.0.15",
44
"description": "CLI for Managing Phala Cloud Services",
55
"author": {
66
"name": "Phala Network",

src/api/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export const getCvmByAppIdResponseSchema = z.object({
124124
in_progress: z.boolean(),
125125
app_id: z.string(),
126126
vm_uuid: z.string(),
127-
instance_id: z.string(),
127+
instance_id: z.string().nullable(),
128128
vcpu: z.number(),
129129
memory: z.number(),
130130
disk_size: z.number(),

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async function main() {
1919
.description(
2020
`${logo}\nPhala Cloud CLI - Manage your Phala Cloud Deployments`,
2121
)
22-
.version("v1.0.14")
22+
.version("v1.0.15")
2323
.addCommand(authCommands)
2424
.addCommand(cvmsCommand)
2525
.addCommand(dockerCommands)

0 commit comments

Comments
 (0)