@remnawave/backend-contract 0.0.48 → 0.0.50
Sign up to get free protection for your applications and to get access to all the features.
@@ -8,28 +8,22 @@ var CreateNodeCommand;
|
|
8
8
|
(function (CreateNodeCommand) {
|
9
9
|
CreateNodeCommand.url = api_1.REST_API.NODES.CREATE;
|
10
10
|
CreateNodeCommand.TSQ_url = CreateNodeCommand.url;
|
11
|
-
CreateNodeCommand.RequestSchema =
|
11
|
+
CreateNodeCommand.RequestSchema = zod_1.z.object({
|
12
12
|
name: zod_1.z.string().min(5, 'Name is required'),
|
13
13
|
address: zod_1.z.string().min(2, 'Address is required'),
|
14
14
|
port: zod_1.z.number().int().min(1, 'Port is required').optional(),
|
15
15
|
isTrafficTrackingActive: zod_1.z.boolean().optional().default(false),
|
16
|
-
trafficLimitBytes: zod_1.z
|
17
|
-
|
18
|
-
.int()
|
19
|
-
.min(0, 'Traffic limit must be greater than 0')
|
20
|
-
.optional(),
|
21
|
-
notifyPercent: zod_1.z
|
16
|
+
trafficLimitBytes: zod_1.z.optional(zod_1.z.number().int().min(0, 'Traffic limit must be greater than 0')),
|
17
|
+
notifyPercent: zod_1.z.optional(zod_1.z
|
22
18
|
.number()
|
23
19
|
.int()
|
24
20
|
.min(0, 'Notify percent must be greater than 0')
|
25
|
-
.max(100, 'Notify percent must be less than 100')
|
26
|
-
|
27
|
-
trafficResetDay: zod_1.z
|
21
|
+
.max(100, 'Notify percent must be less than 100')),
|
22
|
+
trafficResetDay: zod_1.z.optional(zod_1.z
|
28
23
|
.number()
|
29
24
|
.int()
|
30
25
|
.min(1, 'Traffic reset day must be greater than 0')
|
31
|
-
.max(31, 'Traffic reset day must be less than 31')
|
32
|
-
.optional(),
|
26
|
+
.max(31, 'Traffic reset day must be less than 31')),
|
33
27
|
});
|
34
28
|
CreateNodeCommand.ResponseSchema = zod_1.z.object({
|
35
29
|
response: models_1.NodesSchema,
|
@@ -6,28 +6,28 @@ export namespace CreateNodeCommand {
|
|
6
6
|
export const url = REST_API.NODES.CREATE;
|
7
7
|
export const TSQ_url = url;
|
8
8
|
|
9
|
-
export const RequestSchema =
|
9
|
+
export const RequestSchema = z.object({
|
10
10
|
name: z.string().min(5, 'Name is required'),
|
11
11
|
address: z.string().min(2, 'Address is required'),
|
12
12
|
port: z.number().int().min(1, 'Port is required').optional(),
|
13
13
|
isTrafficTrackingActive: z.boolean().optional().default(false),
|
14
|
-
trafficLimitBytes: z
|
15
|
-
.number()
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
14
|
+
trafficLimitBytes: z.optional(
|
15
|
+
z.number().int().min(0, 'Traffic limit must be greater than 0'),
|
16
|
+
),
|
17
|
+
notifyPercent: z.optional(
|
18
|
+
z
|
19
|
+
.number()
|
20
|
+
.int()
|
21
|
+
.min(0, 'Notify percent must be greater than 0')
|
22
|
+
.max(100, 'Notify percent must be less than 100'),
|
23
|
+
),
|
24
|
+
trafficResetDay: z.optional(
|
25
|
+
z
|
26
|
+
.number()
|
27
|
+
.int()
|
28
|
+
.min(1, 'Traffic reset day must be greater than 0')
|
29
|
+
.max(31, 'Traffic reset day must be less than 31'),
|
30
|
+
),
|
31
31
|
});
|
32
32
|
|
33
33
|
export type Request = z.infer<typeof RequestSchema>;
|