@remnawave/node-contract 0.5.1 → 0.5.3
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.
|
@@ -21,6 +21,13 @@ export declare namespace StartXrayCommand {
|
|
|
21
21
|
cpuModel: string;
|
|
22
22
|
memoryTotal: string;
|
|
23
23
|
}>>;
|
|
24
|
+
nodeInformation: z.ZodObject<{
|
|
25
|
+
version: z.ZodNullable<z.ZodString>;
|
|
26
|
+
}, "strip", z.ZodTypeAny, {
|
|
27
|
+
version: string | null;
|
|
28
|
+
}, {
|
|
29
|
+
version: string | null;
|
|
30
|
+
}>;
|
|
24
31
|
}, "strip", z.ZodTypeAny, {
|
|
25
32
|
error: string | null;
|
|
26
33
|
version: string | null;
|
|
@@ -30,6 +37,9 @@ export declare namespace StartXrayCommand {
|
|
|
30
37
|
cpuModel: string;
|
|
31
38
|
memoryTotal: string;
|
|
32
39
|
} | null;
|
|
40
|
+
nodeInformation: {
|
|
41
|
+
version: string | null;
|
|
42
|
+
};
|
|
33
43
|
}, {
|
|
34
44
|
error: string | null;
|
|
35
45
|
version: string | null;
|
|
@@ -39,6 +49,9 @@ export declare namespace StartXrayCommand {
|
|
|
39
49
|
cpuModel: string;
|
|
40
50
|
memoryTotal: string;
|
|
41
51
|
} | null;
|
|
52
|
+
nodeInformation: {
|
|
53
|
+
version: string | null;
|
|
54
|
+
};
|
|
42
55
|
}>;
|
|
43
56
|
}, "strip", z.ZodTypeAny, {
|
|
44
57
|
response: {
|
|
@@ -50,6 +63,9 @@ export declare namespace StartXrayCommand {
|
|
|
50
63
|
cpuModel: string;
|
|
51
64
|
memoryTotal: string;
|
|
52
65
|
} | null;
|
|
66
|
+
nodeInformation: {
|
|
67
|
+
version: string | null;
|
|
68
|
+
};
|
|
53
69
|
};
|
|
54
70
|
}, {
|
|
55
71
|
response: {
|
|
@@ -61,6 +77,9 @@ export declare namespace StartXrayCommand {
|
|
|
61
77
|
cpuModel: string;
|
|
62
78
|
memoryTotal: string;
|
|
63
79
|
} | null;
|
|
80
|
+
nodeInformation: {
|
|
81
|
+
version: string | null;
|
|
82
|
+
};
|
|
64
83
|
};
|
|
65
84
|
}>;
|
|
66
85
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"start.command.d.ts","sourceRoot":"","sources":["../../../commands/xray/start.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,yBAAiB,gBAAgB,CAAC;IACvB,MAAM,GAAG,oBAAsB,CAAC;IAChC,MAAM,aAAa,wCAAwB,CAAC;IAEnD,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"start.command.d.ts","sourceRoot":"","sources":["../../../commands/xray/start.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,yBAAiB,gBAAgB,CAAC;IACvB,MAAM,GAAG,oBAAsB,CAAC;IAChC,MAAM,aAAa,wCAAwB,CAAC;IAEnD,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAgBzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -17,6 +17,9 @@ var StartXrayCommand;
|
|
|
17
17
|
cpuModel: zod_1.z.string(),
|
|
18
18
|
memoryTotal: zod_1.z.string(),
|
|
19
19
|
})),
|
|
20
|
+
nodeInformation: zod_1.z.object({
|
|
21
|
+
version: zod_1.z.string().nullable(),
|
|
22
|
+
}),
|
|
20
23
|
}),
|
|
21
24
|
});
|
|
22
25
|
})(StartXrayCommand || (exports.StartXrayCommand = StartXrayCommand = {}));
|
|
@@ -7,8 +7,8 @@ export declare const XRAY_DEFAULT_POLICY_MODEL: {
|
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
9
|
readonly system: {
|
|
10
|
-
readonly statsInboundDownlink:
|
|
11
|
-
readonly statsInboundUplink:
|
|
10
|
+
readonly statsInboundDownlink: true;
|
|
11
|
+
readonly statsInboundUplink: true;
|
|
12
12
|
readonly statsOutboundDownlink: true;
|
|
13
13
|
readonly statsOutboundUplink: true;
|
|
14
14
|
};
|