@remnawave/node-contract
Advanced tools
Comparing version 0.2.6 to 0.2.7
@@ -5,10 +5,10 @@ import { z } from 'zod'; | ||
const RequestSchema: z.ZodObject<{ | ||
tag: z.ZodString; | ||
tags: z.ZodArray<z.ZodString, "many">; | ||
username: z.ZodString; | ||
}, "strip", z.ZodTypeAny, { | ||
username: string; | ||
tag: string; | ||
tags: string[]; | ||
}, { | ||
username: string; | ||
tag: string; | ||
tags: string[]; | ||
}>; | ||
@@ -15,0 +15,0 @@ type Request = z.infer<typeof RequestSchema>; |
@@ -10,3 +10,3 @@ "use strict"; | ||
RemoveUserCommand.RequestSchema = zod_1.z.object({ | ||
tag: zod_1.z.string(), | ||
tags: zod_1.z.array(zod_1.z.string()), | ||
username: zod_1.z.string(), | ||
@@ -13,0 +13,0 @@ }); |
{ | ||
"name": "@remnawave/node-contract", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"description": "A node-contract library for Remnawave Panel", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
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
65851