@remnawave/backend-contract 0.0.49 → 0.0.50
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.
@@ -10,8 +10,7 @@ var UpdateNodeCommand;
|
|
10
10
|
UpdateNodeCommand.TSQ_url = UpdateNodeCommand.url;
|
11
11
|
UpdateNodeCommand.RequestSchema = models_1.NodesSchema.pick({
|
12
12
|
uuid: true,
|
13
|
-
})
|
14
|
-
.extend({
|
13
|
+
}).extend({
|
15
14
|
name: zod_1.z.optional(zod_1.z.string().min(5, 'Min. 5 characters')),
|
16
15
|
address: zod_1.z.optional(zod_1.z.string().min(2, 'Min. 2 characters')),
|
17
16
|
port: zod_1.z.optional(zod_1.z.number()),
|
@@ -25,17 +24,6 @@ var UpdateNodeCommand;
|
|
25
24
|
.number()
|
26
25
|
.min(1, 'Traffic reset day must be greater than 0')
|
27
26
|
.max(31, 'Traffic reset day must be less than 31')),
|
28
|
-
})
|
29
|
-
.refine((data) => {
|
30
|
-
if (data.isTrafficTrackingActive) {
|
31
|
-
return (data.trafficLimitBytes != null &&
|
32
|
-
data.notifyPercent != null &&
|
33
|
-
data.trafficResetDay != null);
|
34
|
-
}
|
35
|
-
return true;
|
36
|
-
}, {
|
37
|
-
message: 'Traffic tracking fields are required when isTrafficTrackingActive is true',
|
38
|
-
path: ['trafficLimitBytes', 'notifyPercent', 'trafficResetDay'],
|
39
27
|
});
|
40
28
|
UpdateNodeCommand.ResponseSchema = zod_1.z.object({
|
41
29
|
response: models_1.NodesSchema,
|
@@ -8,45 +8,25 @@ export namespace UpdateNodeCommand {
|
|
8
8
|
|
9
9
|
export const RequestSchema = NodesSchema.pick({
|
10
10
|
uuid: true,
|
11
|
-
})
|
12
|
-
.
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
.max(31, 'Traffic reset day must be less than 31'),
|
31
|
-
),
|
32
|
-
})
|
33
|
-
.refine(
|
34
|
-
(data) => {
|
35
|
-
if (data.isTrafficTrackingActive) {
|
36
|
-
return (
|
37
|
-
data.trafficLimitBytes != null &&
|
38
|
-
data.notifyPercent != null &&
|
39
|
-
data.trafficResetDay != null
|
40
|
-
);
|
41
|
-
}
|
42
|
-
return true;
|
43
|
-
},
|
44
|
-
{
|
45
|
-
message:
|
46
|
-
'Traffic tracking fields are required when isTrafficTrackingActive is true',
|
47
|
-
path: ['trafficLimitBytes', 'notifyPercent', 'trafficResetDay'],
|
48
|
-
},
|
49
|
-
);
|
11
|
+
}).extend({
|
12
|
+
name: z.optional(z.string().min(5, 'Min. 5 characters')),
|
13
|
+
address: z.optional(z.string().min(2, 'Min. 2 characters')),
|
14
|
+
port: z.optional(z.number()),
|
15
|
+
isTrafficTrackingActive: z.optional(z.boolean()),
|
16
|
+
trafficLimitBytes: z.optional(z.number().min(0, 'Traffic limit must be greater than 0')),
|
17
|
+
notifyPercent: z.optional(
|
18
|
+
z
|
19
|
+
.number()
|
20
|
+
.min(0, 'Notify percent must be greater than 0')
|
21
|
+
.max(100, 'Notify percent must be less than 100'),
|
22
|
+
),
|
23
|
+
trafficResetDay: z.optional(
|
24
|
+
z
|
25
|
+
.number()
|
26
|
+
.min(1, 'Traffic reset day must be greater than 0')
|
27
|
+
.max(31, 'Traffic reset day must be less than 31'),
|
28
|
+
),
|
29
|
+
});
|
50
30
|
|
51
31
|
export type Request = z.infer<typeof RequestSchema>;
|
52
32
|
|