@remnawave/backend-contract 0.0.33 → 0.0.34

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetBandwidthStatsCommand = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const api_1 = require("../../api");
6
+ const base_stat_schema_1 = require("../../models/base-stat.schema");
6
7
  var GetBandwidthStatsCommand;
7
8
  (function (GetBandwidthStatsCommand) {
8
9
  GetBandwidthStatsCommand.url = api_1.REST_API.SYSTEM.BANDWIDTH;
@@ -11,16 +12,11 @@ var GetBandwidthStatsCommand;
11
12
  });
12
13
  GetBandwidthStatsCommand.ResponseSchema = zod_1.z.object({
13
14
  response: zod_1.z.object({
14
- bandwidthLastTwoDays: zod_1.z.object({
15
- current: zod_1.z.string(),
16
- previous: zod_1.z.string(),
17
- difference: zod_1.z.string(),
18
- }),
19
- bandwidthLastSevenDays: zod_1.z.object({
20
- current: zod_1.z.string(),
21
- previous: zod_1.z.string(),
22
- difference: zod_1.z.string(),
23
- }),
15
+ bandwidthLastTwoDays: base_stat_schema_1.BaseStatSchema,
16
+ bandwidthLastSevenDays: base_stat_schema_1.BaseStatSchema,
17
+ bandwidthLast30Days: base_stat_schema_1.BaseStatSchema,
18
+ bandwidthCalendarMonth: base_stat_schema_1.BaseStatSchema,
19
+ bandwidthCurrentYear: base_stat_schema_1.BaseStatSchema,
24
20
  }),
25
21
  });
26
22
  })(GetBandwidthStatsCommand || (exports.GetBandwidthStatsCommand = GetBandwidthStatsCommand = {}));
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BaseStatSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ exports.BaseStatSchema = zod_1.z.object({
6
+ current: zod_1.z.string(),
7
+ previous: zod_1.z.string(),
8
+ difference: zod_1.z.string(),
9
+ });
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./api-tokens.schema"), exports);
18
18
  __exportStar(require("./auth.schema"), exports);
19
+ __exportStar(require("./base-stat.schema"), exports);
19
20
  __exportStar(require("./hosts.schema"), exports);
20
21
  __exportStar(require("./inbounds.schema"), exports);
21
22
  __exportStar(require("./nodes.schema"), exports);
@@ -1,5 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { REST_API } from '../../api';
3
+ import { BaseStatSchema } from '../../models/base-stat.schema';
3
4
 
4
5
  export namespace GetBandwidthStatsCommand {
5
6
  export const url = REST_API.SYSTEM.BANDWIDTH;
@@ -12,16 +13,11 @@ export namespace GetBandwidthStatsCommand {
12
13
 
13
14
  export const ResponseSchema = z.object({
14
15
  response: z.object({
15
- bandwidthLastTwoDays: z.object({
16
- current: z.string(),
17
- previous: z.string(),
18
- difference: z.string(),
19
- }),
20
- bandwidthLastSevenDays: z.object({
21
- current: z.string(),
22
- previous: z.string(),
23
- difference: z.string(),
24
- }),
16
+ bandwidthLastTwoDays: BaseStatSchema,
17
+ bandwidthLastSevenDays: BaseStatSchema,
18
+ bandwidthLast30Days: BaseStatSchema,
19
+ bandwidthCalendarMonth: BaseStatSchema,
20
+ bandwidthCurrentYear: BaseStatSchema,
25
21
  }),
26
22
  });
27
23
 
@@ -0,0 +1,7 @@
1
+ import { z } from 'zod';
2
+
3
+ export const BaseStatSchema = z.object({
4
+ current: z.string(),
5
+ previous: z.string(),
6
+ difference: z.string(),
7
+ });
package/models/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from './api-tokens.schema';
2
2
  export * from './auth.schema';
3
+ export * from './base-stat.schema';
3
4
  export * from './hosts.schema';
4
5
  export * from './inbounds.schema';
5
6
  export * from './nodes.schema';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnawave/backend-contract",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "description": "A contract library for Remnawave",
5
5
  "main": "index.js",
6
6
  "scripts": {