@remnawave/backend-contract 2.3.5 → 2.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -72,14 +72,18 @@ export declare namespace GetStatsCommand {
72
72
  }>;
73
73
  nodes: z.ZodObject<{
74
74
  totalOnline: z.ZodNumber;
75
+ totalBytesLifetime: z.ZodString;
75
76
  }, "strip", z.ZodTypeAny, {
76
77
  totalOnline: number;
78
+ totalBytesLifetime: string;
77
79
  }, {
78
80
  totalOnline: number;
81
+ totalBytesLifetime: string;
79
82
  }>;
80
83
  }, "strip", z.ZodTypeAny, {
81
84
  nodes: {
82
85
  totalOnline: number;
86
+ totalBytesLifetime: string;
83
87
  };
84
88
  users: {
85
89
  statusCounts: Record<string, number>;
@@ -107,6 +111,7 @@ export declare namespace GetStatsCommand {
107
111
  }, {
108
112
  nodes: {
109
113
  totalOnline: number;
114
+ totalBytesLifetime: string;
110
115
  };
111
116
  users: {
112
117
  statusCounts: Record<string, number>;
@@ -136,6 +141,7 @@ export declare namespace GetStatsCommand {
136
141
  response: {
137
142
  nodes: {
138
143
  totalOnline: number;
144
+ totalBytesLifetime: string;
139
145
  };
140
146
  users: {
141
147
  statusCounts: Record<string, number>;
@@ -165,6 +171,7 @@ export declare namespace GetStatsCommand {
165
171
  response: {
166
172
  nodes: {
167
173
  totalOnline: number;
174
+ totalBytesLifetime: string;
168
175
  };
169
176
  users: {
170
177
  statusCounts: Record<string, number>;
@@ -1 +1 @@
1
- {"version":3,"file":"get-stats.command.d.ts","sourceRoot":"","sources":["../../../../commands/system/get-stats.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,eAAe,CAAC;IACtB,MAAM,GAAG,qBAAqC,CAAC;IAC/C,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,kBAAkB;;;;;;MAE7B,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAElD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAgCzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-stats.command.d.ts","sourceRoot":"","sources":["../../../../commands/system/get-stats.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,eAAe,CAAC;IACtB,MAAM,GAAG,qBAAqC,CAAC;IAC/C,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,kBAAkB;;;;;;MAE7B,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAElD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAiCzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -40,6 +40,7 @@ var GetStatsCommand;
40
40
  }),
41
41
  nodes: zod_1.z.object({
42
42
  totalOnline: zod_1.z.number(),
43
+ totalBytesLifetime: zod_1.z.string(),
43
44
  }),
44
45
  }),
45
46
  });
@@ -40,6 +40,7 @@ var GetStatsCommand;
40
40
  }),
41
41
  nodes: zod_1.z.object({
42
42
  totalOnline: zod_1.z.number(),
43
+ totalBytesLifetime: zod_1.z.string(),
43
44
  }),
44
45
  }),
45
46
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnawave/backend-contract",
3
- "version": "2.3.5",
3
+ "version": "2.3.6",
4
4
  "public": true,
5
5
  "license": "AGPL-3.0-only",
6
6
  "description": "A contract library for Remnawave Backend. It can be used in backend and frontend.",