Skip to content

Commit d8b7c39

Browse files
committed
structure fix
1 parent b74b090 commit d8b7c39

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

commands/machine/schemas.ts

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
import { z } from "../../zcli.ts";
22

3-
export const MachineAutoSnapshotFrequencySchema = z.enum([
4-
"hourly",
5-
"daily",
6-
"weekly",
7-
"monthly",
8-
]).optional();
3+
export const MachineAutoSnapshotFrequencySchema = z
4+
.enum([
5+
"hourly",
6+
"daily",
7+
"weekly",
8+
"monthly",
9+
])
10+
.optional();
911

10-
export const MachineRestorePointFrequencySchema = z.enum(["shutdown"])
12+
export const MachineRestorePointFrequencySchema = z
13+
.enum(["shutdown"])
1114
.optional();
1215

13-
export const MachinePublicIpTypeSchema = z.enum(["static", "dynamic", "none"])
16+
export const MachinePublicIpTypeSchema = z
17+
.enum(["static", "dynamic", "none"])
1418
.optional();

0 commit comments

Comments
 (0)