@remnawave/backend-contract 2.6.49 → 2.6.51

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.
Files changed (56) hide show
  1. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +160 -6
  2. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -1
  3. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +160 -6
  4. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
  5. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +160 -6
  6. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts.map +1 -1
  7. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +160 -6
  8. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
  9. package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts +80 -3
  10. package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts.map +1 -1
  11. package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts +80 -3
  12. package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts.map +1 -1
  13. package/build/backend/commands/nodes/actions/disable.command.d.ts +152 -15
  14. package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
  15. package/build/backend/commands/nodes/actions/enable.command.d.ts +152 -15
  16. package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
  17. package/build/backend/commands/nodes/actions/reorder.command.d.ts +232 -18
  18. package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
  19. package/build/backend/commands/nodes/create.command.d.ts +152 -15
  20. package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
  21. package/build/backend/commands/nodes/get-all.command.d.ts +152 -15
  22. package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
  23. package/build/backend/commands/nodes/get-one.command.d.ts +152 -15
  24. package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
  25. package/build/backend/commands/nodes/update.command.d.ts +232 -18
  26. package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
  27. package/build/backend/commands/system/get-remnawave-health.command.d.ts +6 -6
  28. package/build/backend/commands/system/get-stats.command.d.ts +4 -25
  29. package/build/backend/commands/system/get-stats.command.d.ts.map +1 -1
  30. package/build/backend/commands/system/get-stats.command.js +0 -3
  31. package/build/backend/constants/cache-keys/cache-keys.constants.d.ts +6 -5
  32. package/build/backend/constants/cache-keys/cache-keys.constants.d.ts.map +1 -1
  33. package/build/backend/constants/cache-keys/cache-keys.constants.js +6 -5
  34. package/build/backend/models/index.d.ts +1 -0
  35. package/build/backend/models/index.d.ts.map +1 -1
  36. package/build/backend/models/index.js +1 -0
  37. package/build/backend/models/infra-billing-available-node.schema.d.ts +80 -3
  38. package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
  39. package/build/backend/models/infra-billing-node.schema.d.ts +80 -3
  40. package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
  41. package/build/backend/models/node-system.schema.d.ts +129 -0
  42. package/build/backend/models/node-system.schema.d.ts.map +1 -0
  43. package/build/backend/models/node-system.schema.js +24 -0
  44. package/build/backend/models/nodes.schema.d.ts +116 -9
  45. package/build/backend/models/nodes.schema.d.ts.map +1 -1
  46. package/build/backend/models/nodes.schema.js +2 -3
  47. package/build/backend/models/torrent-blocker-report.schema.d.ts +80 -3
  48. package/build/backend/models/torrent-blocker-report.schema.d.ts.map +1 -1
  49. package/build/backend/models/webhook/webhook.schema.d.ts +680 -72
  50. package/build/backend/models/webhook/webhook.schema.d.ts.map +1 -1
  51. package/build/frontend/commands/system/get-stats.command.js +0 -3
  52. package/build/frontend/constants/cache-keys/cache-keys.constants.js +6 -5
  53. package/build/frontend/models/index.js +1 -0
  54. package/build/frontend/models/node-system.schema.js +24 -0
  55. package/build/frontend/models/nodes.schema.js +2 -3
  56. package/package.json +1 -1
@@ -62,9 +62,6 @@ export declare namespace UpdateInfraBillingNodeCommand {
62
62
  countryCode: z.ZodString;
63
63
  consumptionMultiplier: z.ZodNumber;
64
64
  tags: z.ZodArray<z.ZodString, "many">;
65
- cpuCount: z.ZodNullable<z.ZodNumber>;
66
- cpuModel: z.ZodNullable<z.ZodString>;
67
- totalRam: z.ZodNullable<z.ZodString>;
68
65
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
69
66
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
70
67
  configProfile: z.ZodObject<{
@@ -146,6 +143,86 @@ export declare namespace UpdateInfraBillingNodeCommand {
146
143
  loginUrl: string | null;
147
144
  }>>;
148
145
  activePluginUuid: z.ZodNullable<z.ZodString>;
146
+ system: z.ZodNullable<z.ZodObject<{
147
+ info: z.ZodObject<{
148
+ arch: z.ZodString;
149
+ cpus: z.ZodNumber;
150
+ cpuModel: z.ZodString;
151
+ memoryTotal: z.ZodNumber;
152
+ hostname: z.ZodString;
153
+ platform: z.ZodString;
154
+ release: z.ZodString;
155
+ type: z.ZodString;
156
+ version: z.ZodString;
157
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
158
+ }, "strip", z.ZodTypeAny, {
159
+ type: string;
160
+ version: string;
161
+ platform: string;
162
+ arch: string;
163
+ cpus: number;
164
+ cpuModel: string;
165
+ memoryTotal: number;
166
+ hostname: string;
167
+ release: string;
168
+ networkInterfaces: string[];
169
+ }, {
170
+ type: string;
171
+ version: string;
172
+ platform: string;
173
+ arch: string;
174
+ cpus: number;
175
+ cpuModel: string;
176
+ memoryTotal: number;
177
+ hostname: string;
178
+ release: string;
179
+ networkInterfaces: string[];
180
+ }>;
181
+ stats: z.ZodObject<{
182
+ memoryFree: z.ZodNumber;
183
+ uptime: z.ZodNumber;
184
+ }, "strip", z.ZodTypeAny, {
185
+ memoryFree: number;
186
+ uptime: number;
187
+ }, {
188
+ memoryFree: number;
189
+ uptime: number;
190
+ }>;
191
+ }, "strip", z.ZodTypeAny, {
192
+ stats: {
193
+ memoryFree: number;
194
+ uptime: number;
195
+ };
196
+ info: {
197
+ type: string;
198
+ version: string;
199
+ platform: string;
200
+ arch: string;
201
+ cpus: number;
202
+ cpuModel: string;
203
+ memoryTotal: number;
204
+ hostname: string;
205
+ release: string;
206
+ networkInterfaces: string[];
207
+ };
208
+ }, {
209
+ stats: {
210
+ memoryFree: number;
211
+ uptime: number;
212
+ };
213
+ info: {
214
+ type: string;
215
+ version: string;
216
+ platform: string;
217
+ arch: string;
218
+ cpus: number;
219
+ cpuModel: string;
220
+ memoryTotal: number;
221
+ hostname: string;
222
+ release: string;
223
+ networkInterfaces: string[];
224
+ };
225
+ }>>;
149
226
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
150
227
  uuid: string;
151
228
  countryCode: string;
@@ -218,9 +295,6 @@ export declare namespace UpdateInfraBillingNodeCommand {
218
295
  countryCode: z.ZodString;
219
296
  consumptionMultiplier: z.ZodNumber;
220
297
  tags: z.ZodArray<z.ZodString, "many">;
221
- cpuCount: z.ZodNullable<z.ZodNumber>;
222
- cpuModel: z.ZodNullable<z.ZodString>;
223
- totalRam: z.ZodNullable<z.ZodString>;
224
298
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
225
299
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
226
300
  configProfile: z.ZodObject<{
@@ -302,6 +376,86 @@ export declare namespace UpdateInfraBillingNodeCommand {
302
376
  loginUrl: string | null;
303
377
  }>>;
304
378
  activePluginUuid: z.ZodNullable<z.ZodString>;
379
+ system: z.ZodNullable<z.ZodObject<{
380
+ info: z.ZodObject<{
381
+ arch: z.ZodString;
382
+ cpus: z.ZodNumber;
383
+ cpuModel: z.ZodString;
384
+ memoryTotal: z.ZodNumber;
385
+ hostname: z.ZodString;
386
+ platform: z.ZodString;
387
+ release: z.ZodString;
388
+ type: z.ZodString;
389
+ version: z.ZodString;
390
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
391
+ }, "strip", z.ZodTypeAny, {
392
+ type: string;
393
+ version: string;
394
+ platform: string;
395
+ arch: string;
396
+ cpus: number;
397
+ cpuModel: string;
398
+ memoryTotal: number;
399
+ hostname: string;
400
+ release: string;
401
+ networkInterfaces: string[];
402
+ }, {
403
+ type: string;
404
+ version: string;
405
+ platform: string;
406
+ arch: string;
407
+ cpus: number;
408
+ cpuModel: string;
409
+ memoryTotal: number;
410
+ hostname: string;
411
+ release: string;
412
+ networkInterfaces: string[];
413
+ }>;
414
+ stats: z.ZodObject<{
415
+ memoryFree: z.ZodNumber;
416
+ uptime: z.ZodNumber;
417
+ }, "strip", z.ZodTypeAny, {
418
+ memoryFree: number;
419
+ uptime: number;
420
+ }, {
421
+ memoryFree: number;
422
+ uptime: number;
423
+ }>;
424
+ }, "strip", z.ZodTypeAny, {
425
+ stats: {
426
+ memoryFree: number;
427
+ uptime: number;
428
+ };
429
+ info: {
430
+ type: string;
431
+ version: string;
432
+ platform: string;
433
+ arch: string;
434
+ cpus: number;
435
+ cpuModel: string;
436
+ memoryTotal: number;
437
+ hostname: string;
438
+ release: string;
439
+ networkInterfaces: string[];
440
+ };
441
+ }, {
442
+ stats: {
443
+ memoryFree: number;
444
+ uptime: number;
445
+ };
446
+ info: {
447
+ type: string;
448
+ version: string;
449
+ platform: string;
450
+ arch: string;
451
+ cpus: number;
452
+ cpuModel: string;
453
+ memoryTotal: number;
454
+ hostname: string;
455
+ release: string;
456
+ networkInterfaces: string[];
457
+ };
458
+ }>>;
305
459
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
306
460
  uuid: string;
307
461
  countryCode: string;
@@ -1 +1 @@
1
- {"version":3,"file":"update-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/update-billing-node.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,4BAA6C,CAAC;IACvD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAQxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"update-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/update-billing-node.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,4BAA6C,CAAC;IACvD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAQxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -157,9 +157,6 @@ export declare namespace GetTorrentBlockerReportsCommand {
157
157
  countryCode: z.ZodString;
158
158
  consumptionMultiplier: z.ZodNumber;
159
159
  tags: z.ZodArray<z.ZodString, "many">;
160
- cpuCount: z.ZodNullable<z.ZodNumber>;
161
- cpuModel: z.ZodNullable<z.ZodString>;
162
- totalRam: z.ZodNullable<z.ZodString>;
163
160
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
164
161
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
165
162
  configProfile: z.ZodObject<{
@@ -241,6 +238,86 @@ export declare namespace GetTorrentBlockerReportsCommand {
241
238
  loginUrl: string | null;
242
239
  }>>;
243
240
  activePluginUuid: z.ZodNullable<z.ZodString>;
241
+ system: z.ZodNullable<z.ZodObject<{
242
+ info: z.ZodObject<{
243
+ arch: z.ZodString;
244
+ cpus: z.ZodNumber;
245
+ cpuModel: z.ZodString;
246
+ memoryTotal: z.ZodNumber;
247
+ hostname: z.ZodString;
248
+ platform: z.ZodString;
249
+ release: z.ZodString;
250
+ type: z.ZodString;
251
+ version: z.ZodString;
252
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
253
+ }, "strip", z.ZodTypeAny, {
254
+ type: string;
255
+ version: string;
256
+ platform: string;
257
+ arch: string;
258
+ cpus: number;
259
+ cpuModel: string;
260
+ memoryTotal: number;
261
+ hostname: string;
262
+ release: string;
263
+ networkInterfaces: string[];
264
+ }, {
265
+ type: string;
266
+ version: string;
267
+ platform: string;
268
+ arch: string;
269
+ cpus: number;
270
+ cpuModel: string;
271
+ memoryTotal: number;
272
+ hostname: string;
273
+ release: string;
274
+ networkInterfaces: string[];
275
+ }>;
276
+ stats: z.ZodObject<{
277
+ memoryFree: z.ZodNumber;
278
+ uptime: z.ZodNumber;
279
+ }, "strip", z.ZodTypeAny, {
280
+ memoryFree: number;
281
+ uptime: number;
282
+ }, {
283
+ memoryFree: number;
284
+ uptime: number;
285
+ }>;
286
+ }, "strip", z.ZodTypeAny, {
287
+ stats: {
288
+ memoryFree: number;
289
+ uptime: number;
290
+ };
291
+ info: {
292
+ type: string;
293
+ version: string;
294
+ platform: string;
295
+ arch: string;
296
+ cpus: number;
297
+ cpuModel: string;
298
+ memoryTotal: number;
299
+ hostname: string;
300
+ release: string;
301
+ networkInterfaces: string[];
302
+ };
303
+ }, {
304
+ stats: {
305
+ memoryFree: number;
306
+ uptime: number;
307
+ };
308
+ info: {
309
+ type: string;
310
+ version: string;
311
+ platform: string;
312
+ arch: string;
313
+ cpus: number;
314
+ cpuModel: string;
315
+ memoryTotal: number;
316
+ hostname: string;
317
+ release: string;
318
+ networkInterfaces: string[];
319
+ };
320
+ }>>;
244
321
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
245
322
  uuid: string;
246
323
  countryCode: string;
@@ -1 +1 @@
1
- {"version":3,"file":"get-torrent-blocker-reports.command.d.ts","sourceRoot":"","sources":["../../../../../commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,+BAA+B,CAAC;IACtC,MAAM,GAAG,qCAAoD,CAAC;IAC9D,MAAM,OAAO,qCAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkC,CAAC;IAElE,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-torrent-blocker-reports.command.d.ts","sourceRoot":"","sources":["../../../../../commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,+BAA+B,CAAC;IACtC,MAAM,GAAG,qCAAoD,CAAC;IAC9D,MAAM,OAAO,qCAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkC,CAAC;IAElE,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -104,9 +104,6 @@ export declare namespace TruncateTorrentBlockerReportsCommand {
104
104
  countryCode: z.ZodString;
105
105
  consumptionMultiplier: z.ZodNumber;
106
106
  tags: z.ZodArray<z.ZodString, "many">;
107
- cpuCount: z.ZodNullable<z.ZodNumber>;
108
- cpuModel: z.ZodNullable<z.ZodString>;
109
- totalRam: z.ZodNullable<z.ZodString>;
110
107
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
111
108
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
112
109
  configProfile: z.ZodObject<{
@@ -188,6 +185,86 @@ export declare namespace TruncateTorrentBlockerReportsCommand {
188
185
  loginUrl: string | null;
189
186
  }>>;
190
187
  activePluginUuid: z.ZodNullable<z.ZodString>;
188
+ system: z.ZodNullable<z.ZodObject<{
189
+ info: z.ZodObject<{
190
+ arch: z.ZodString;
191
+ cpus: z.ZodNumber;
192
+ cpuModel: z.ZodString;
193
+ memoryTotal: z.ZodNumber;
194
+ hostname: z.ZodString;
195
+ platform: z.ZodString;
196
+ release: z.ZodString;
197
+ type: z.ZodString;
198
+ version: z.ZodString;
199
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
200
+ }, "strip", z.ZodTypeAny, {
201
+ type: string;
202
+ version: string;
203
+ platform: string;
204
+ arch: string;
205
+ cpus: number;
206
+ cpuModel: string;
207
+ memoryTotal: number;
208
+ hostname: string;
209
+ release: string;
210
+ networkInterfaces: string[];
211
+ }, {
212
+ type: string;
213
+ version: string;
214
+ platform: string;
215
+ arch: string;
216
+ cpus: number;
217
+ cpuModel: string;
218
+ memoryTotal: number;
219
+ hostname: string;
220
+ release: string;
221
+ networkInterfaces: string[];
222
+ }>;
223
+ stats: z.ZodObject<{
224
+ memoryFree: z.ZodNumber;
225
+ uptime: z.ZodNumber;
226
+ }, "strip", z.ZodTypeAny, {
227
+ memoryFree: number;
228
+ uptime: number;
229
+ }, {
230
+ memoryFree: number;
231
+ uptime: number;
232
+ }>;
233
+ }, "strip", z.ZodTypeAny, {
234
+ stats: {
235
+ memoryFree: number;
236
+ uptime: number;
237
+ };
238
+ info: {
239
+ type: string;
240
+ version: string;
241
+ platform: string;
242
+ arch: string;
243
+ cpus: number;
244
+ cpuModel: string;
245
+ memoryTotal: number;
246
+ hostname: string;
247
+ release: string;
248
+ networkInterfaces: string[];
249
+ };
250
+ }, {
251
+ stats: {
252
+ memoryFree: number;
253
+ uptime: number;
254
+ };
255
+ info: {
256
+ type: string;
257
+ version: string;
258
+ platform: string;
259
+ arch: string;
260
+ cpus: number;
261
+ cpuModel: string;
262
+ memoryTotal: number;
263
+ hostname: string;
264
+ release: string;
265
+ networkInterfaces: string[];
266
+ };
267
+ }>>;
191
268
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
192
269
  uuid: string;
193
270
  countryCode: string;
@@ -1 +1 @@
1
- {"version":3,"file":"truncate-torrent-blocker-reports.command.d.ts","sourceRoot":"","sources":["../../../../../commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oCAAoC,CAAC;IAC3C,MAAM,GAAG,8CAAyD,CAAC;IACnE,MAAM,OAAO,8CAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"truncate-torrent-blocker-reports.command.d.ts","sourceRoot":"","sources":["../../../../../commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oCAAoC,CAAC;IAC3C,MAAM,GAAG,8CAAyD,CAAC;IACnE,MAAM,OAAO,8CAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -35,9 +35,6 @@ export declare namespace DisableNodeCommand {
35
35
  countryCode: z.ZodString;
36
36
  consumptionMultiplier: z.ZodNumber;
37
37
  tags: z.ZodArray<z.ZodString, "many">;
38
- cpuCount: z.ZodNullable<z.ZodNumber>;
39
- cpuModel: z.ZodNullable<z.ZodString>;
40
- totalRam: z.ZodNullable<z.ZodString>;
41
38
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
42
39
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
43
40
  configProfile: z.ZodObject<{
@@ -119,8 +116,106 @@ export declare namespace DisableNodeCommand {
119
116
  loginUrl: string | null;
120
117
  }>>;
121
118
  activePluginUuid: z.ZodNullable<z.ZodString>;
119
+ system: z.ZodNullable<z.ZodObject<{
120
+ info: z.ZodObject<{
121
+ arch: z.ZodString;
122
+ cpus: z.ZodNumber;
123
+ cpuModel: z.ZodString;
124
+ memoryTotal: z.ZodNumber;
125
+ hostname: z.ZodString;
126
+ platform: z.ZodString;
127
+ release: z.ZodString;
128
+ type: z.ZodString;
129
+ version: z.ZodString;
130
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
131
+ }, "strip", z.ZodTypeAny, {
132
+ type: string;
133
+ version: string;
134
+ platform: string;
135
+ arch: string;
136
+ cpus: number;
137
+ cpuModel: string;
138
+ memoryTotal: number;
139
+ hostname: string;
140
+ release: string;
141
+ networkInterfaces: string[];
142
+ }, {
143
+ type: string;
144
+ version: string;
145
+ platform: string;
146
+ arch: string;
147
+ cpus: number;
148
+ cpuModel: string;
149
+ memoryTotal: number;
150
+ hostname: string;
151
+ release: string;
152
+ networkInterfaces: string[];
153
+ }>;
154
+ stats: z.ZodObject<{
155
+ memoryFree: z.ZodNumber;
156
+ uptime: z.ZodNumber;
157
+ }, "strip", z.ZodTypeAny, {
158
+ memoryFree: number;
159
+ uptime: number;
160
+ }, {
161
+ memoryFree: number;
162
+ uptime: number;
163
+ }>;
164
+ }, "strip", z.ZodTypeAny, {
165
+ stats: {
166
+ memoryFree: number;
167
+ uptime: number;
168
+ };
169
+ info: {
170
+ type: string;
171
+ version: string;
172
+ platform: string;
173
+ arch: string;
174
+ cpus: number;
175
+ cpuModel: string;
176
+ memoryTotal: number;
177
+ hostname: string;
178
+ release: string;
179
+ networkInterfaces: string[];
180
+ };
181
+ }, {
182
+ stats: {
183
+ memoryFree: number;
184
+ uptime: number;
185
+ };
186
+ info: {
187
+ type: string;
188
+ version: string;
189
+ platform: string;
190
+ arch: string;
191
+ cpus: number;
192
+ cpuModel: string;
193
+ memoryTotal: number;
194
+ hostname: string;
195
+ release: string;
196
+ networkInterfaces: string[];
197
+ };
198
+ }>>;
122
199
  }, "strip", z.ZodTypeAny, {
123
200
  tags: string[];
201
+ system: {
202
+ stats: {
203
+ memoryFree: number;
204
+ uptime: number;
205
+ };
206
+ info: {
207
+ type: string;
208
+ version: string;
209
+ platform: string;
210
+ arch: string;
211
+ cpus: number;
212
+ cpuModel: string;
213
+ memoryTotal: number;
214
+ hostname: string;
215
+ release: string;
216
+ networkInterfaces: string[];
217
+ };
218
+ } | null;
124
219
  uuid: string;
125
220
  createdAt: Date;
126
221
  updatedAt: Date;
@@ -152,9 +247,6 @@ export declare namespace DisableNodeCommand {
152
247
  notifyPercent: number | null;
153
248
  usersOnline: number | null;
154
249
  consumptionMultiplier: number;
155
- cpuCount: number | null;
156
- cpuModel: string | null;
157
- totalRam: string | null;
158
250
  configProfile: {
159
251
  activeConfigProfileUuid: string | null;
160
252
  activeInbounds: {
@@ -172,6 +264,24 @@ export declare namespace DisableNodeCommand {
172
264
  activePluginUuid: string | null;
173
265
  }, {
174
266
  tags: string[];
267
+ system: {
268
+ stats: {
269
+ memoryFree: number;
270
+ uptime: number;
271
+ };
272
+ info: {
273
+ type: string;
274
+ version: string;
275
+ platform: string;
276
+ arch: string;
277
+ cpus: number;
278
+ cpuModel: string;
279
+ memoryTotal: number;
280
+ hostname: string;
281
+ release: string;
282
+ networkInterfaces: string[];
283
+ };
284
+ } | null;
175
285
  uuid: string;
176
286
  createdAt: string;
177
287
  updatedAt: string;
@@ -203,9 +313,6 @@ export declare namespace DisableNodeCommand {
203
313
  notifyPercent: number | null;
204
314
  usersOnline: number | null;
205
315
  consumptionMultiplier: number;
206
- cpuCount: number | null;
207
- cpuModel: string | null;
208
- totalRam: string | null;
209
316
  configProfile: {
210
317
  activeConfigProfileUuid: string | null;
211
318
  activeInbounds: {
@@ -225,6 +332,24 @@ export declare namespace DisableNodeCommand {
225
332
  }, "strip", z.ZodTypeAny, {
226
333
  response: {
227
334
  tags: string[];
335
+ system: {
336
+ stats: {
337
+ memoryFree: number;
338
+ uptime: number;
339
+ };
340
+ info: {
341
+ type: string;
342
+ version: string;
343
+ platform: string;
344
+ arch: string;
345
+ cpus: number;
346
+ cpuModel: string;
347
+ memoryTotal: number;
348
+ hostname: string;
349
+ release: string;
350
+ networkInterfaces: string[];
351
+ };
352
+ } | null;
228
353
  uuid: string;
229
354
  createdAt: Date;
230
355
  updatedAt: Date;
@@ -256,9 +381,6 @@ export declare namespace DisableNodeCommand {
256
381
  notifyPercent: number | null;
257
382
  usersOnline: number | null;
258
383
  consumptionMultiplier: number;
259
- cpuCount: number | null;
260
- cpuModel: string | null;
261
- totalRam: string | null;
262
384
  configProfile: {
263
385
  activeConfigProfileUuid: string | null;
264
386
  activeInbounds: {
@@ -278,6 +400,24 @@ export declare namespace DisableNodeCommand {
278
400
  }, {
279
401
  response: {
280
402
  tags: string[];
403
+ system: {
404
+ stats: {
405
+ memoryFree: number;
406
+ uptime: number;
407
+ };
408
+ info: {
409
+ type: string;
410
+ version: string;
411
+ platform: string;
412
+ arch: string;
413
+ cpus: number;
414
+ cpuModel: string;
415
+ memoryTotal: number;
416
+ hostname: string;
417
+ release: string;
418
+ networkInterfaces: string[];
419
+ };
420
+ } | null;
281
421
  uuid: string;
282
422
  createdAt: string;
283
423
  updatedAt: string;
@@ -309,9 +449,6 @@ export declare namespace DisableNodeCommand {
309
449
  notifyPercent: number | null;
310
450
  usersOnline: number | null;
311
451
  consumptionMultiplier: number;
312
- cpuCount: number | null;
313
- cpuModel: string | null;
314
- totalRam: string | null;
315
452
  configProfile: {
316
453
  activeConfigProfileUuid: string | null;
317
454
  activeInbounds: {
@@ -1 +1 @@
1
- {"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}