@remnawave/node-contract
Advanced tools
Comparing version 0.2.9 to 0.3.0
@@ -11,2 +11,15 @@ import { z } from 'zod'; | ||
error: z.ZodNullable<z.ZodString>; | ||
systemInformation: z.ZodNullable<z.ZodObject<{ | ||
cpuCores: z.ZodNumber; | ||
cpuModel: z.ZodString; | ||
memoryTotal: z.ZodString; | ||
}, "strip", z.ZodTypeAny, { | ||
cpuCores: number; | ||
cpuModel: string; | ||
memoryTotal: string; | ||
}, { | ||
cpuCores: number; | ||
cpuModel: string; | ||
memoryTotal: string; | ||
}>>; | ||
}, "strip", z.ZodTypeAny, { | ||
@@ -16,2 +29,7 @@ isStarted: boolean; | ||
error: string | null; | ||
systemInformation: { | ||
cpuCores: number; | ||
cpuModel: string; | ||
memoryTotal: string; | ||
} | null; | ||
}, { | ||
@@ -21,2 +39,7 @@ isStarted: boolean; | ||
error: string | null; | ||
systemInformation: { | ||
cpuCores: number; | ||
cpuModel: string; | ||
memoryTotal: string; | ||
} | null; | ||
}>; | ||
@@ -28,2 +51,7 @@ }, "strip", z.ZodTypeAny, { | ||
error: string | null; | ||
systemInformation: { | ||
cpuCores: number; | ||
cpuModel: string; | ||
memoryTotal: string; | ||
} | null; | ||
}; | ||
@@ -35,2 +63,7 @@ }, { | ||
error: string | null; | ||
systemInformation: { | ||
cpuCores: number; | ||
cpuModel: string; | ||
memoryTotal: string; | ||
} | null; | ||
}; | ||
@@ -37,0 +70,0 @@ }>; |
@@ -15,4 +15,9 @@ "use strict"; | ||
error: zod_1.z.string().nullable(), | ||
systemInformation: zod_1.z.nullable(zod_1.z.object({ | ||
cpuCores: zod_1.z.number(), | ||
cpuModel: zod_1.z.string(), | ||
memoryTotal: zod_1.z.string(), | ||
})), | ||
}), | ||
}); | ||
})(StartXrayCommand || (exports.StartXrayCommand = StartXrayCommand = {})); |
{ | ||
"name": "@remnawave/node-contract", | ||
"version": "0.2.9", | ||
"version": "0.3.0", | ||
"description": "A node-contract library for Remnawave Panel", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74965
1789