@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
|
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
|
9
|
+
response: z.array(InboundsSchema),
|
10
10
|
});
|
11
11
|
|
12
12
|
export type Response = z.infer<typeof ResponseSchema>;
|