@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
@@ -86,9 +86,6 @@ export declare namespace CreateNodeCommand {
86
86
  countryCode: z.ZodString;
87
87
  consumptionMultiplier: z.ZodNumber;
88
88
  tags: z.ZodArray<z.ZodString, "many">;
89
- cpuCount: z.ZodNullable<z.ZodNumber>;
90
- cpuModel: z.ZodNullable<z.ZodString>;
91
- totalRam: z.ZodNullable<z.ZodString>;
92
89
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
93
90
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
94
91
  configProfile: z.ZodObject<{
@@ -170,8 +167,106 @@ export declare namespace CreateNodeCommand {
170
167
  loginUrl: string | null;
171
168
  }>>;
172
169
  activePluginUuid: z.ZodNullable<z.ZodString>;
170
+ system: z.ZodNullable<z.ZodObject<{
171
+ info: z.ZodObject<{
172
+ arch: z.ZodString;
173
+ cpus: z.ZodNumber;
174
+ cpuModel: z.ZodString;
175
+ memoryTotal: z.ZodNumber;
176
+ hostname: z.ZodString;
177
+ platform: z.ZodString;
178
+ release: z.ZodString;
179
+ type: z.ZodString;
180
+ version: z.ZodString;
181
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
182
+ }, "strip", z.ZodTypeAny, {
183
+ type: string;
184
+ version: string;
185
+ platform: string;
186
+ arch: string;
187
+ cpus: number;
188
+ cpuModel: string;
189
+ memoryTotal: number;
190
+ hostname: string;
191
+ release: string;
192
+ networkInterfaces: string[];
193
+ }, {
194
+ type: string;
195
+ version: string;
196
+ platform: string;
197
+ arch: string;
198
+ cpus: number;
199
+ cpuModel: string;
200
+ memoryTotal: number;
201
+ hostname: string;
202
+ release: string;
203
+ networkInterfaces: string[];
204
+ }>;
205
+ stats: z.ZodObject<{
206
+ memoryFree: z.ZodNumber;
207
+ uptime: z.ZodNumber;
208
+ }, "strip", z.ZodTypeAny, {
209
+ memoryFree: number;
210
+ uptime: number;
211
+ }, {
212
+ memoryFree: number;
213
+ uptime: number;
214
+ }>;
215
+ }, "strip", z.ZodTypeAny, {
216
+ stats: {
217
+ memoryFree: number;
218
+ uptime: number;
219
+ };
220
+ info: {
221
+ type: string;
222
+ version: string;
223
+ platform: string;
224
+ arch: string;
225
+ cpus: number;
226
+ cpuModel: string;
227
+ memoryTotal: number;
228
+ hostname: string;
229
+ release: string;
230
+ networkInterfaces: string[];
231
+ };
232
+ }, {
233
+ stats: {
234
+ memoryFree: number;
235
+ uptime: number;
236
+ };
237
+ info: {
238
+ type: string;
239
+ version: string;
240
+ platform: string;
241
+ arch: string;
242
+ cpus: number;
243
+ cpuModel: string;
244
+ memoryTotal: number;
245
+ hostname: string;
246
+ release: string;
247
+ networkInterfaces: string[];
248
+ };
249
+ }>>;
173
250
  }, "strip", z.ZodTypeAny, {
174
251
  tags: string[];
252
+ system: {
253
+ stats: {
254
+ memoryFree: number;
255
+ uptime: number;
256
+ };
257
+ info: {
258
+ type: string;
259
+ version: string;
260
+ platform: string;
261
+ arch: string;
262
+ cpus: number;
263
+ cpuModel: string;
264
+ memoryTotal: number;
265
+ hostname: string;
266
+ release: string;
267
+ networkInterfaces: string[];
268
+ };
269
+ } | null;
175
270
  uuid: string;
176
271
  createdAt: Date;
177
272
  updatedAt: Date;
@@ -203,9 +298,6 @@ export declare namespace CreateNodeCommand {
203
298
  notifyPercent: number | null;
204
299
  usersOnline: number | null;
205
300
  consumptionMultiplier: number;
206
- cpuCount: number | null;
207
- cpuModel: string | null;
208
- totalRam: string | null;
209
301
  configProfile: {
210
302
  activeConfigProfileUuid: string | null;
211
303
  activeInbounds: {
@@ -223,6 +315,24 @@ export declare namespace CreateNodeCommand {
223
315
  activePluginUuid: string | null;
224
316
  }, {
225
317
  tags: string[];
318
+ system: {
319
+ stats: {
320
+ memoryFree: number;
321
+ uptime: number;
322
+ };
323
+ info: {
324
+ type: string;
325
+ version: string;
326
+ platform: string;
327
+ arch: string;
328
+ cpus: number;
329
+ cpuModel: string;
330
+ memoryTotal: number;
331
+ hostname: string;
332
+ release: string;
333
+ networkInterfaces: string[];
334
+ };
335
+ } | null;
226
336
  uuid: string;
227
337
  createdAt: string;
228
338
  updatedAt: string;
@@ -254,9 +364,6 @@ export declare namespace CreateNodeCommand {
254
364
  notifyPercent: number | null;
255
365
  usersOnline: number | null;
256
366
  consumptionMultiplier: number;
257
- cpuCount: number | null;
258
- cpuModel: string | null;
259
- totalRam: string | null;
260
367
  configProfile: {
261
368
  activeConfigProfileUuid: string | null;
262
369
  activeInbounds: {
@@ -276,6 +383,24 @@ export declare namespace CreateNodeCommand {
276
383
  }, "strip", z.ZodTypeAny, {
277
384
  response: {
278
385
  tags: string[];
386
+ system: {
387
+ stats: {
388
+ memoryFree: number;
389
+ uptime: number;
390
+ };
391
+ info: {
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
+ } | null;
279
404
  uuid: string;
280
405
  createdAt: Date;
281
406
  updatedAt: Date;
@@ -307,9 +432,6 @@ export declare namespace CreateNodeCommand {
307
432
  notifyPercent: number | null;
308
433
  usersOnline: number | null;
309
434
  consumptionMultiplier: number;
310
- cpuCount: number | null;
311
- cpuModel: string | null;
312
- totalRam: string | null;
313
435
  configProfile: {
314
436
  activeConfigProfileUuid: string | null;
315
437
  activeInbounds: {
@@ -329,6 +451,24 @@ export declare namespace CreateNodeCommand {
329
451
  }, {
330
452
  response: {
331
453
  tags: string[];
454
+ system: {
455
+ stats: {
456
+ memoryFree: number;
457
+ uptime: number;
458
+ };
459
+ info: {
460
+ type: string;
461
+ version: string;
462
+ platform: string;
463
+ arch: string;
464
+ cpus: number;
465
+ cpuModel: string;
466
+ memoryTotal: number;
467
+ hostname: string;
468
+ release: string;
469
+ networkInterfaces: string[];
470
+ };
471
+ } | null;
332
472
  uuid: string;
333
473
  createdAt: string;
334
474
  updatedAt: string;
@@ -360,9 +500,6 @@ export declare namespace CreateNodeCommand {
360
500
  notifyPercent: number | null;
361
501
  usersOnline: number | null;
362
502
  consumptionMultiplier: number;
363
- cpuCount: number | null;
364
- cpuModel: string | null;
365
- totalRam: string | null;
366
503
  configProfile: {
367
504
  activeConfigProfileUuid: string | null;
368
505
  activeInbounds: {
@@ -1 +1 @@
1
- {"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8DxB,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":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8DxB,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"}
@@ -27,9 +27,6 @@ export declare namespace GetAllNodesCommand {
27
27
  countryCode: z.ZodString;
28
28
  consumptionMultiplier: z.ZodNumber;
29
29
  tags: z.ZodArray<z.ZodString, "many">;
30
- cpuCount: z.ZodNullable<z.ZodNumber>;
31
- cpuModel: z.ZodNullable<z.ZodString>;
32
- totalRam: z.ZodNullable<z.ZodString>;
33
30
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
34
31
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
35
32
  configProfile: z.ZodObject<{
@@ -111,8 +108,106 @@ export declare namespace GetAllNodesCommand {
111
108
  loginUrl: string | null;
112
109
  }>>;
113
110
  activePluginUuid: z.ZodNullable<z.ZodString>;
111
+ system: z.ZodNullable<z.ZodObject<{
112
+ info: z.ZodObject<{
113
+ arch: z.ZodString;
114
+ cpus: z.ZodNumber;
115
+ cpuModel: z.ZodString;
116
+ memoryTotal: z.ZodNumber;
117
+ hostname: z.ZodString;
118
+ platform: z.ZodString;
119
+ release: z.ZodString;
120
+ type: z.ZodString;
121
+ version: z.ZodString;
122
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
123
+ }, "strip", z.ZodTypeAny, {
124
+ type: string;
125
+ version: string;
126
+ platform: string;
127
+ arch: string;
128
+ cpus: number;
129
+ cpuModel: string;
130
+ memoryTotal: number;
131
+ hostname: string;
132
+ release: string;
133
+ networkInterfaces: string[];
134
+ }, {
135
+ type: string;
136
+ version: string;
137
+ platform: string;
138
+ arch: string;
139
+ cpus: number;
140
+ cpuModel: string;
141
+ memoryTotal: number;
142
+ hostname: string;
143
+ release: string;
144
+ networkInterfaces: string[];
145
+ }>;
146
+ stats: z.ZodObject<{
147
+ memoryFree: z.ZodNumber;
148
+ uptime: z.ZodNumber;
149
+ }, "strip", z.ZodTypeAny, {
150
+ memoryFree: number;
151
+ uptime: number;
152
+ }, {
153
+ memoryFree: number;
154
+ uptime: number;
155
+ }>;
156
+ }, "strip", z.ZodTypeAny, {
157
+ stats: {
158
+ memoryFree: number;
159
+ uptime: number;
160
+ };
161
+ info: {
162
+ type: string;
163
+ version: string;
164
+ platform: string;
165
+ arch: string;
166
+ cpus: number;
167
+ cpuModel: string;
168
+ memoryTotal: number;
169
+ hostname: string;
170
+ release: string;
171
+ networkInterfaces: string[];
172
+ };
173
+ }, {
174
+ stats: {
175
+ memoryFree: number;
176
+ uptime: number;
177
+ };
178
+ info: {
179
+ type: string;
180
+ version: string;
181
+ platform: string;
182
+ arch: string;
183
+ cpus: number;
184
+ cpuModel: string;
185
+ memoryTotal: number;
186
+ hostname: string;
187
+ release: string;
188
+ networkInterfaces: string[];
189
+ };
190
+ }>>;
114
191
  }, "strip", z.ZodTypeAny, {
115
192
  tags: string[];
193
+ system: {
194
+ stats: {
195
+ memoryFree: number;
196
+ uptime: number;
197
+ };
198
+ info: {
199
+ type: string;
200
+ version: string;
201
+ platform: string;
202
+ arch: string;
203
+ cpus: number;
204
+ cpuModel: string;
205
+ memoryTotal: number;
206
+ hostname: string;
207
+ release: string;
208
+ networkInterfaces: string[];
209
+ };
210
+ } | null;
116
211
  uuid: string;
117
212
  createdAt: Date;
118
213
  updatedAt: Date;
@@ -144,9 +239,6 @@ export declare namespace GetAllNodesCommand {
144
239
  notifyPercent: number | null;
145
240
  usersOnline: number | null;
146
241
  consumptionMultiplier: number;
147
- cpuCount: number | null;
148
- cpuModel: string | null;
149
- totalRam: string | null;
150
242
  configProfile: {
151
243
  activeConfigProfileUuid: string | null;
152
244
  activeInbounds: {
@@ -164,6 +256,24 @@ export declare namespace GetAllNodesCommand {
164
256
  activePluginUuid: string | null;
165
257
  }, {
166
258
  tags: string[];
259
+ system: {
260
+ stats: {
261
+ memoryFree: number;
262
+ uptime: number;
263
+ };
264
+ info: {
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
+ } | null;
167
277
  uuid: string;
168
278
  createdAt: string;
169
279
  updatedAt: string;
@@ -195,9 +305,6 @@ export declare namespace GetAllNodesCommand {
195
305
  notifyPercent: number | null;
196
306
  usersOnline: number | null;
197
307
  consumptionMultiplier: number;
198
- cpuCount: number | null;
199
- cpuModel: string | null;
200
- totalRam: string | null;
201
308
  configProfile: {
202
309
  activeConfigProfileUuid: string | null;
203
310
  activeInbounds: {
@@ -217,6 +324,24 @@ export declare namespace GetAllNodesCommand {
217
324
  }, "strip", z.ZodTypeAny, {
218
325
  response: {
219
326
  tags: string[];
327
+ system: {
328
+ stats: {
329
+ memoryFree: number;
330
+ uptime: number;
331
+ };
332
+ info: {
333
+ type: string;
334
+ version: string;
335
+ platform: string;
336
+ arch: string;
337
+ cpus: number;
338
+ cpuModel: string;
339
+ memoryTotal: number;
340
+ hostname: string;
341
+ release: string;
342
+ networkInterfaces: string[];
343
+ };
344
+ } | null;
220
345
  uuid: string;
221
346
  createdAt: Date;
222
347
  updatedAt: Date;
@@ -248,9 +373,6 @@ export declare namespace GetAllNodesCommand {
248
373
  notifyPercent: number | null;
249
374
  usersOnline: number | null;
250
375
  consumptionMultiplier: number;
251
- cpuCount: number | null;
252
- cpuModel: string | null;
253
- totalRam: string | null;
254
376
  configProfile: {
255
377
  activeConfigProfileUuid: string | null;
256
378
  activeInbounds: {
@@ -270,6 +392,24 @@ export declare namespace GetAllNodesCommand {
270
392
  }, {
271
393
  response: {
272
394
  tags: string[];
395
+ system: {
396
+ stats: {
397
+ memoryFree: number;
398
+ uptime: number;
399
+ };
400
+ info: {
401
+ type: string;
402
+ version: string;
403
+ platform: string;
404
+ arch: string;
405
+ cpus: number;
406
+ cpuModel: string;
407
+ memoryTotal: number;
408
+ hostname: string;
409
+ release: string;
410
+ networkInterfaces: string[];
411
+ };
412
+ } | null;
273
413
  uuid: string;
274
414
  createdAt: string;
275
415
  updatedAt: string;
@@ -301,9 +441,6 @@ export declare namespace GetAllNodesCommand {
301
441
  notifyPercent: number | null;
302
442
  usersOnline: number | null;
303
443
  consumptionMultiplier: number;
304
- cpuCount: number | null;
305
- cpuModel: string | null;
306
- totalRam: string | null;
307
444
  configProfile: {
308
445
  activeConfigProfileUuid: string | null;
309
446
  activeInbounds: {
@@ -1 +1 @@
1
- {"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -35,9 +35,6 @@ export declare namespace GetOneNodeCommand {
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 GetOneNodeCommand {
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 GetOneNodeCommand {
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 GetOneNodeCommand {
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 GetOneNodeCommand {
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 GetOneNodeCommand {
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 GetOneNodeCommand {
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 GetOneNodeCommand {
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 GetOneNodeCommand {
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: {