@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
@@ -65,9 +65,6 @@ export declare namespace CreateInfraBillingNodeCommand {
65
65
  countryCode: z.ZodString;
66
66
  consumptionMultiplier: z.ZodNumber;
67
67
  tags: z.ZodArray<z.ZodString, "many">;
68
- cpuCount: z.ZodNullable<z.ZodNumber>;
69
- cpuModel: z.ZodNullable<z.ZodString>;
70
- totalRam: z.ZodNullable<z.ZodString>;
71
68
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
72
69
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
73
70
  configProfile: z.ZodObject<{
@@ -149,6 +146,86 @@ export declare namespace CreateInfraBillingNodeCommand {
149
146
  loginUrl: string | null;
150
147
  }>>;
151
148
  activePluginUuid: z.ZodNullable<z.ZodString>;
149
+ system: z.ZodNullable<z.ZodObject<{
150
+ info: z.ZodObject<{
151
+ arch: z.ZodString;
152
+ cpus: z.ZodNumber;
153
+ cpuModel: z.ZodString;
154
+ memoryTotal: z.ZodNumber;
155
+ hostname: z.ZodString;
156
+ platform: z.ZodString;
157
+ release: z.ZodString;
158
+ type: z.ZodString;
159
+ version: z.ZodString;
160
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
161
+ }, "strip", z.ZodTypeAny, {
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
+ type: string;
174
+ version: string;
175
+ platform: string;
176
+ arch: string;
177
+ cpus: number;
178
+ cpuModel: string;
179
+ memoryTotal: number;
180
+ hostname: string;
181
+ release: string;
182
+ networkInterfaces: string[];
183
+ }>;
184
+ stats: z.ZodObject<{
185
+ memoryFree: z.ZodNumber;
186
+ uptime: z.ZodNumber;
187
+ }, "strip", z.ZodTypeAny, {
188
+ memoryFree: number;
189
+ uptime: number;
190
+ }, {
191
+ memoryFree: number;
192
+ uptime: number;
193
+ }>;
194
+ }, "strip", z.ZodTypeAny, {
195
+ stats: {
196
+ memoryFree: number;
197
+ uptime: number;
198
+ };
199
+ info: {
200
+ type: string;
201
+ version: string;
202
+ platform: string;
203
+ arch: string;
204
+ cpus: number;
205
+ cpuModel: string;
206
+ memoryTotal: number;
207
+ hostname: string;
208
+ release: string;
209
+ networkInterfaces: string[];
210
+ };
211
+ }, {
212
+ stats: {
213
+ memoryFree: number;
214
+ uptime: number;
215
+ };
216
+ info: {
217
+ type: string;
218
+ version: string;
219
+ platform: string;
220
+ arch: string;
221
+ cpus: number;
222
+ cpuModel: string;
223
+ memoryTotal: number;
224
+ hostname: string;
225
+ release: string;
226
+ networkInterfaces: string[];
227
+ };
228
+ }>>;
152
229
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
153
230
  uuid: string;
154
231
  countryCode: string;
@@ -221,9 +298,6 @@ export declare namespace CreateInfraBillingNodeCommand {
221
298
  countryCode: z.ZodString;
222
299
  consumptionMultiplier: z.ZodNumber;
223
300
  tags: z.ZodArray<z.ZodString, "many">;
224
- cpuCount: z.ZodNullable<z.ZodNumber>;
225
- cpuModel: z.ZodNullable<z.ZodString>;
226
- totalRam: z.ZodNullable<z.ZodString>;
227
301
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
228
302
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
229
303
  configProfile: z.ZodObject<{
@@ -305,6 +379,86 @@ export declare namespace CreateInfraBillingNodeCommand {
305
379
  loginUrl: string | null;
306
380
  }>>;
307
381
  activePluginUuid: z.ZodNullable<z.ZodString>;
382
+ system: z.ZodNullable<z.ZodObject<{
383
+ info: z.ZodObject<{
384
+ arch: z.ZodString;
385
+ cpus: z.ZodNumber;
386
+ cpuModel: z.ZodString;
387
+ memoryTotal: z.ZodNumber;
388
+ hostname: z.ZodString;
389
+ platform: z.ZodString;
390
+ release: z.ZodString;
391
+ type: z.ZodString;
392
+ version: z.ZodString;
393
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
394
+ }, "strip", z.ZodTypeAny, {
395
+ type: string;
396
+ version: string;
397
+ platform: string;
398
+ arch: string;
399
+ cpus: number;
400
+ cpuModel: string;
401
+ memoryTotal: number;
402
+ hostname: string;
403
+ release: string;
404
+ networkInterfaces: string[];
405
+ }, {
406
+ type: string;
407
+ version: string;
408
+ platform: string;
409
+ arch: string;
410
+ cpus: number;
411
+ cpuModel: string;
412
+ memoryTotal: number;
413
+ hostname: string;
414
+ release: string;
415
+ networkInterfaces: string[];
416
+ }>;
417
+ stats: z.ZodObject<{
418
+ memoryFree: z.ZodNumber;
419
+ uptime: z.ZodNumber;
420
+ }, "strip", z.ZodTypeAny, {
421
+ memoryFree: number;
422
+ uptime: number;
423
+ }, {
424
+ memoryFree: number;
425
+ uptime: number;
426
+ }>;
427
+ }, "strip", z.ZodTypeAny, {
428
+ stats: {
429
+ memoryFree: number;
430
+ uptime: number;
431
+ };
432
+ info: {
433
+ type: string;
434
+ version: string;
435
+ platform: string;
436
+ arch: string;
437
+ cpus: number;
438
+ cpuModel: string;
439
+ memoryTotal: number;
440
+ hostname: string;
441
+ release: string;
442
+ networkInterfaces: string[];
443
+ };
444
+ }, {
445
+ stats: {
446
+ memoryFree: number;
447
+ uptime: number;
448
+ };
449
+ info: {
450
+ type: string;
451
+ version: string;
452
+ platform: string;
453
+ arch: string;
454
+ cpus: number;
455
+ cpuModel: string;
456
+ memoryTotal: number;
457
+ hostname: string;
458
+ release: string;
459
+ networkInterfaces: string[];
460
+ };
461
+ }>>;
308
462
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
309
463
  uuid: string;
310
464
  countryCode: string;
@@ -1 +1 @@
1
- {"version":3,"file":"create-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/create-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;;;;;;;;;;;;MAWxB,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":"create-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/create-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;;;;;;;;;;;;MAWxB,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"}
@@ -59,9 +59,6 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
59
59
  countryCode: z.ZodString;
60
60
  consumptionMultiplier: z.ZodNumber;
61
61
  tags: z.ZodArray<z.ZodString, "many">;
62
- cpuCount: z.ZodNullable<z.ZodNumber>;
63
- cpuModel: z.ZodNullable<z.ZodString>;
64
- totalRam: z.ZodNullable<z.ZodString>;
65
62
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
66
63
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
67
64
  configProfile: z.ZodObject<{
@@ -143,6 +140,86 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
143
140
  loginUrl: string | null;
144
141
  }>>;
145
142
  activePluginUuid: z.ZodNullable<z.ZodString>;
143
+ system: z.ZodNullable<z.ZodObject<{
144
+ info: z.ZodObject<{
145
+ arch: z.ZodString;
146
+ cpus: z.ZodNumber;
147
+ cpuModel: z.ZodString;
148
+ memoryTotal: z.ZodNumber;
149
+ hostname: z.ZodString;
150
+ platform: z.ZodString;
151
+ release: z.ZodString;
152
+ type: z.ZodString;
153
+ version: z.ZodString;
154
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
155
+ }, "strip", z.ZodTypeAny, {
156
+ type: string;
157
+ version: string;
158
+ platform: string;
159
+ arch: string;
160
+ cpus: number;
161
+ cpuModel: string;
162
+ memoryTotal: number;
163
+ hostname: string;
164
+ release: string;
165
+ networkInterfaces: string[];
166
+ }, {
167
+ type: string;
168
+ version: string;
169
+ platform: string;
170
+ arch: string;
171
+ cpus: number;
172
+ cpuModel: string;
173
+ memoryTotal: number;
174
+ hostname: string;
175
+ release: string;
176
+ networkInterfaces: string[];
177
+ }>;
178
+ stats: z.ZodObject<{
179
+ memoryFree: z.ZodNumber;
180
+ uptime: z.ZodNumber;
181
+ }, "strip", z.ZodTypeAny, {
182
+ memoryFree: number;
183
+ uptime: number;
184
+ }, {
185
+ memoryFree: number;
186
+ uptime: number;
187
+ }>;
188
+ }, "strip", z.ZodTypeAny, {
189
+ stats: {
190
+ memoryFree: number;
191
+ uptime: number;
192
+ };
193
+ info: {
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
+ }, {
206
+ stats: {
207
+ memoryFree: number;
208
+ uptime: number;
209
+ };
210
+ info: {
211
+ type: string;
212
+ version: string;
213
+ platform: string;
214
+ arch: string;
215
+ cpus: number;
216
+ cpuModel: string;
217
+ memoryTotal: number;
218
+ hostname: string;
219
+ release: string;
220
+ networkInterfaces: string[];
221
+ };
222
+ }>>;
146
223
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
147
224
  uuid: string;
148
225
  countryCode: string;
@@ -215,9 +292,6 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
215
292
  countryCode: z.ZodString;
216
293
  consumptionMultiplier: z.ZodNumber;
217
294
  tags: z.ZodArray<z.ZodString, "many">;
218
- cpuCount: z.ZodNullable<z.ZodNumber>;
219
- cpuModel: z.ZodNullable<z.ZodString>;
220
- totalRam: z.ZodNullable<z.ZodString>;
221
295
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
222
296
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
223
297
  configProfile: z.ZodObject<{
@@ -299,6 +373,86 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
299
373
  loginUrl: string | null;
300
374
  }>>;
301
375
  activePluginUuid: z.ZodNullable<z.ZodString>;
376
+ system: z.ZodNullable<z.ZodObject<{
377
+ info: z.ZodObject<{
378
+ arch: z.ZodString;
379
+ cpus: z.ZodNumber;
380
+ cpuModel: z.ZodString;
381
+ memoryTotal: z.ZodNumber;
382
+ hostname: z.ZodString;
383
+ platform: z.ZodString;
384
+ release: z.ZodString;
385
+ type: z.ZodString;
386
+ version: z.ZodString;
387
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
388
+ }, "strip", z.ZodTypeAny, {
389
+ type: string;
390
+ version: string;
391
+ platform: string;
392
+ arch: string;
393
+ cpus: number;
394
+ cpuModel: string;
395
+ memoryTotal: number;
396
+ hostname: string;
397
+ release: string;
398
+ networkInterfaces: string[];
399
+ }, {
400
+ type: string;
401
+ version: string;
402
+ platform: string;
403
+ arch: string;
404
+ cpus: number;
405
+ cpuModel: string;
406
+ memoryTotal: number;
407
+ hostname: string;
408
+ release: string;
409
+ networkInterfaces: string[];
410
+ }>;
411
+ stats: z.ZodObject<{
412
+ memoryFree: z.ZodNumber;
413
+ uptime: z.ZodNumber;
414
+ }, "strip", z.ZodTypeAny, {
415
+ memoryFree: number;
416
+ uptime: number;
417
+ }, {
418
+ memoryFree: number;
419
+ uptime: number;
420
+ }>;
421
+ }, "strip", z.ZodTypeAny, {
422
+ stats: {
423
+ memoryFree: number;
424
+ uptime: number;
425
+ };
426
+ info: {
427
+ type: string;
428
+ version: string;
429
+ platform: string;
430
+ arch: string;
431
+ cpus: number;
432
+ cpuModel: string;
433
+ memoryTotal: number;
434
+ hostname: string;
435
+ release: string;
436
+ networkInterfaces: string[];
437
+ };
438
+ }, {
439
+ stats: {
440
+ memoryFree: number;
441
+ uptime: number;
442
+ };
443
+ info: {
444
+ type: string;
445
+ version: string;
446
+ platform: string;
447
+ arch: string;
448
+ cpus: number;
449
+ cpuModel: string;
450
+ memoryTotal: number;
451
+ hostname: string;
452
+ release: string;
453
+ networkInterfaces: string[];
454
+ };
455
+ }>>;
302
456
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
303
457
  uuid: string;
304
458
  countryCode: string;
@@ -1 +1 @@
1
- {"version":3,"file":"delete-billing-node-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/delete-billing-node-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mCAAmC,CAAC;IAC1C,MAAM,GAAG,0BAA6C,CAAC;IACvD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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":"delete-billing-node-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/delete-billing-node-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mCAAmC,CAAC;IAC1C,MAAM,GAAG,0BAA6C,CAAC;IACvD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,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"}
@@ -51,9 +51,6 @@ export declare namespace GetInfraBillingNodesCommand {
51
51
  countryCode: z.ZodString;
52
52
  consumptionMultiplier: z.ZodNumber;
53
53
  tags: z.ZodArray<z.ZodString, "many">;
54
- cpuCount: z.ZodNullable<z.ZodNumber>;
55
- cpuModel: z.ZodNullable<z.ZodString>;
56
- totalRam: z.ZodNullable<z.ZodString>;
57
54
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
58
55
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
59
56
  configProfile: z.ZodObject<{
@@ -135,6 +132,86 @@ export declare namespace GetInfraBillingNodesCommand {
135
132
  loginUrl: string | null;
136
133
  }>>;
137
134
  activePluginUuid: z.ZodNullable<z.ZodString>;
135
+ system: z.ZodNullable<z.ZodObject<{
136
+ info: z.ZodObject<{
137
+ arch: z.ZodString;
138
+ cpus: z.ZodNumber;
139
+ cpuModel: z.ZodString;
140
+ memoryTotal: z.ZodNumber;
141
+ hostname: z.ZodString;
142
+ platform: z.ZodString;
143
+ release: z.ZodString;
144
+ type: z.ZodString;
145
+ version: z.ZodString;
146
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
147
+ }, "strip", z.ZodTypeAny, {
148
+ type: string;
149
+ version: string;
150
+ platform: string;
151
+ arch: string;
152
+ cpus: number;
153
+ cpuModel: string;
154
+ memoryTotal: number;
155
+ hostname: string;
156
+ release: string;
157
+ networkInterfaces: string[];
158
+ }, {
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
+ stats: z.ZodObject<{
171
+ memoryFree: z.ZodNumber;
172
+ uptime: z.ZodNumber;
173
+ }, "strip", z.ZodTypeAny, {
174
+ memoryFree: number;
175
+ uptime: number;
176
+ }, {
177
+ memoryFree: number;
178
+ uptime: number;
179
+ }>;
180
+ }, "strip", z.ZodTypeAny, {
181
+ stats: {
182
+ memoryFree: number;
183
+ uptime: number;
184
+ };
185
+ info: {
186
+ type: string;
187
+ version: string;
188
+ platform: string;
189
+ arch: string;
190
+ cpus: number;
191
+ cpuModel: string;
192
+ memoryTotal: number;
193
+ hostname: string;
194
+ release: string;
195
+ networkInterfaces: string[];
196
+ };
197
+ }, {
198
+ stats: {
199
+ memoryFree: number;
200
+ uptime: number;
201
+ };
202
+ info: {
203
+ type: string;
204
+ version: string;
205
+ platform: string;
206
+ arch: string;
207
+ cpus: number;
208
+ cpuModel: string;
209
+ memoryTotal: number;
210
+ hostname: string;
211
+ release: string;
212
+ networkInterfaces: string[];
213
+ };
214
+ }>>;
138
215
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
139
216
  uuid: string;
140
217
  countryCode: string;
@@ -207,9 +284,6 @@ export declare namespace GetInfraBillingNodesCommand {
207
284
  countryCode: z.ZodString;
208
285
  consumptionMultiplier: z.ZodNumber;
209
286
  tags: z.ZodArray<z.ZodString, "many">;
210
- cpuCount: z.ZodNullable<z.ZodNumber>;
211
- cpuModel: z.ZodNullable<z.ZodString>;
212
- totalRam: z.ZodNullable<z.ZodString>;
213
287
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
214
288
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
215
289
  configProfile: z.ZodObject<{
@@ -291,6 +365,86 @@ export declare namespace GetInfraBillingNodesCommand {
291
365
  loginUrl: string | null;
292
366
  }>>;
293
367
  activePluginUuid: z.ZodNullable<z.ZodString>;
368
+ system: z.ZodNullable<z.ZodObject<{
369
+ info: z.ZodObject<{
370
+ arch: z.ZodString;
371
+ cpus: z.ZodNumber;
372
+ cpuModel: z.ZodString;
373
+ memoryTotal: z.ZodNumber;
374
+ hostname: z.ZodString;
375
+ platform: z.ZodString;
376
+ release: z.ZodString;
377
+ type: z.ZodString;
378
+ version: z.ZodString;
379
+ networkInterfaces: z.ZodArray<z.ZodString, "many">;
380
+ }, "strip", z.ZodTypeAny, {
381
+ type: string;
382
+ version: string;
383
+ platform: string;
384
+ arch: string;
385
+ cpus: number;
386
+ cpuModel: string;
387
+ memoryTotal: number;
388
+ hostname: string;
389
+ release: string;
390
+ networkInterfaces: string[];
391
+ }, {
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
+ stats: z.ZodObject<{
404
+ memoryFree: z.ZodNumber;
405
+ uptime: z.ZodNumber;
406
+ }, "strip", z.ZodTypeAny, {
407
+ memoryFree: number;
408
+ uptime: number;
409
+ }, {
410
+ memoryFree: number;
411
+ uptime: number;
412
+ }>;
413
+ }, "strip", z.ZodTypeAny, {
414
+ stats: {
415
+ memoryFree: number;
416
+ uptime: number;
417
+ };
418
+ info: {
419
+ type: string;
420
+ version: string;
421
+ platform: string;
422
+ arch: string;
423
+ cpus: number;
424
+ cpuModel: string;
425
+ memoryTotal: number;
426
+ hostname: string;
427
+ release: string;
428
+ networkInterfaces: string[];
429
+ };
430
+ }, {
431
+ stats: {
432
+ memoryFree: number;
433
+ uptime: number;
434
+ };
435
+ info: {
436
+ type: string;
437
+ version: string;
438
+ platform: string;
439
+ arch: string;
440
+ cpus: number;
441
+ cpuModel: string;
442
+ memoryTotal: number;
443
+ hostname: string;
444
+ release: string;
445
+ networkInterfaces: string[];
446
+ };
447
+ }>>;
294
448
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
295
449
  uuid: string;
296
450
  countryCode: string;
@@ -1 +1 @@
1
- {"version":3,"file":"get-billing-nodes.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-billing-nodes.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,2BAA2B,CAAC;IAClC,MAAM,GAAG,4BAA2C,CAAC;IACrD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-billing-nodes.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-billing-nodes.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,2BAA2B,CAAC;IAClC,MAAM,GAAG,4BAA2C,CAAC;IACrD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}