@remnawave/backend-contract 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,6 +8,6 @@ var GetInboundsCommand;
8
8
  (function (GetInboundsCommand) {
9
9
  GetInboundsCommand.url = api_1.REST_API.INBOUNDS.GET_INBOUNDS;
10
10
  GetInboundsCommand.ResponseSchema = zod_1.z.object({
11
- response: zod_1.z.array(inbounds_schema_1.InboundsSchema.pick({ tag: true, uuid: true })),
11
+ response: zod_1.z.array(inbounds_schema_1.InboundsSchema),
12
12
  });
13
13
  })(GetInboundsCommand || (exports.GetInboundsCommand = GetInboundsCommand = {}));
@@ -6,7 +6,7 @@ export namespace GetInboundsCommand {
6
6
  export const url = REST_API.INBOUNDS.GET_INBOUNDS;
7
7
 
8
8
  export const ResponseSchema = z.object({
9
- response: z.array(InboundsSchema.pick({ tag: true, uuid: true })),
9
+ response: z.array(InboundsSchema),
10
10
  });
11
11
 
12
12
  export type Response = z.infer<typeof ResponseSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnawave/backend-contract",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "A contract library for Remnawave",
5
5
  "main": "index.js",
6
6
  "scripts": {