@remnawave/backend-contract 2.6.53 → 2.6.55

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 (57) hide show
  1. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +20 -0
  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 +20 -0
  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 +20 -0
  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 +20 -0
  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 +30 -20
  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 +30 -20
  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 +18 -0
  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 +18 -0
  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 +28 -0
  18. package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
  19. package/build/backend/commands/nodes/create.command.d.ts +18 -0
  20. package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
  21. package/build/backend/commands/nodes/get-all.command.d.ts +18 -0
  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 +18 -0
  24. package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
  25. package/build/backend/commands/nodes/update.command.d.ts +28 -0
  26. package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
  27. package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts +878 -348
  28. package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts.map +1 -1
  29. package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js +2 -59
  30. package/build/backend/constants/metrics/metric-names.constant.d.ts +10 -0
  31. package/build/backend/constants/metrics/metric-names.constant.d.ts.map +1 -1
  32. package/build/backend/constants/metrics/metric-names.constant.js +11 -0
  33. package/build/backend/models/index.d.ts +1 -0
  34. package/build/backend/models/index.d.ts.map +1 -1
  35. package/build/backend/models/index.js +1 -0
  36. package/build/backend/models/infra-billing-available-node.schema.d.ts +10 -0
  37. package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
  38. package/build/backend/models/infra-billing-node.schema.d.ts +10 -0
  39. package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
  40. package/build/backend/models/node-system.schema.d.ts +16 -0
  41. package/build/backend/models/node-system.schema.d.ts.map +1 -1
  42. package/build/backend/models/node-system.schema.js +2 -0
  43. package/build/backend/models/nodes.schema.d.ts +14 -0
  44. package/build/backend/models/nodes.schema.d.ts.map +1 -1
  45. package/build/backend/models/resolved-proxy-config.schema.d.ts +1422 -0
  46. package/build/backend/models/resolved-proxy-config.schema.d.ts.map +1 -0
  47. package/build/backend/models/resolved-proxy-config.schema.js +219 -0
  48. package/build/backend/models/torrent-blocker-report.schema.d.ts +22 -12
  49. package/build/backend/models/torrent-blocker-report.schema.d.ts.map +1 -1
  50. package/build/backend/models/webhook/webhook.schema.d.ts +112 -32
  51. package/build/backend/models/webhook/webhook.schema.d.ts.map +1 -1
  52. package/build/frontend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js +2 -59
  53. package/build/frontend/constants/metrics/metric-names.constant.js +11 -0
  54. package/build/frontend/models/index.js +1 -0
  55. package/build/frontend/models/node-system.schema.js +2 -0
  56. package/build/frontend/models/resolved-proxy-config.schema.js +219 -0
  57. package/package.json +1 -1
@@ -183,7 +183,9 @@ export declare namespace CreateInfraBillingNodeCommand {
183
183
  }>;
184
184
  stats: z.ZodObject<{
185
185
  memoryFree: z.ZodNumber;
186
+ memoryUsed: z.ZodNumber;
186
187
  uptime: z.ZodNumber;
188
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
187
189
  interface: z.ZodNullable<z.ZodObject<{
188
190
  interface: z.ZodString;
189
191
  rxBytesPerSec: z.ZodNumber;
@@ -212,7 +214,9 @@ export declare namespace CreateInfraBillingNodeCommand {
212
214
  txTotal: number;
213
215
  } | null;
214
216
  memoryFree: number;
217
+ memoryUsed: number;
215
218
  uptime: number;
219
+ loadAvg: number[];
216
220
  }, {
217
221
  interface: {
218
222
  interface: string;
@@ -222,7 +226,9 @@ export declare namespace CreateInfraBillingNodeCommand {
222
226
  txTotal: number;
223
227
  } | null;
224
228
  memoryFree: number;
229
+ memoryUsed: number;
225
230
  uptime: number;
231
+ loadAvg: number[];
226
232
  }>;
227
233
  }, "strip", z.ZodTypeAny, {
228
234
  stats: {
@@ -234,7 +240,9 @@ export declare namespace CreateInfraBillingNodeCommand {
234
240
  txTotal: number;
235
241
  } | null;
236
242
  memoryFree: number;
243
+ memoryUsed: number;
237
244
  uptime: number;
245
+ loadAvg: number[];
238
246
  };
239
247
  info: {
240
248
  type: string;
@@ -258,7 +266,9 @@ export declare namespace CreateInfraBillingNodeCommand {
258
266
  txTotal: number;
259
267
  } | null;
260
268
  memoryFree: number;
269
+ memoryUsed: number;
261
270
  uptime: number;
271
+ loadAvg: number[];
262
272
  };
263
273
  info: {
264
274
  type: string;
@@ -463,7 +473,9 @@ export declare namespace CreateInfraBillingNodeCommand {
463
473
  }>;
464
474
  stats: z.ZodObject<{
465
475
  memoryFree: z.ZodNumber;
476
+ memoryUsed: z.ZodNumber;
466
477
  uptime: z.ZodNumber;
478
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
467
479
  interface: z.ZodNullable<z.ZodObject<{
468
480
  interface: z.ZodString;
469
481
  rxBytesPerSec: z.ZodNumber;
@@ -492,7 +504,9 @@ export declare namespace CreateInfraBillingNodeCommand {
492
504
  txTotal: number;
493
505
  } | null;
494
506
  memoryFree: number;
507
+ memoryUsed: number;
495
508
  uptime: number;
509
+ loadAvg: number[];
496
510
  }, {
497
511
  interface: {
498
512
  interface: string;
@@ -502,7 +516,9 @@ export declare namespace CreateInfraBillingNodeCommand {
502
516
  txTotal: number;
503
517
  } | null;
504
518
  memoryFree: number;
519
+ memoryUsed: number;
505
520
  uptime: number;
521
+ loadAvg: number[];
506
522
  }>;
507
523
  }, "strip", z.ZodTypeAny, {
508
524
  stats: {
@@ -514,7 +530,9 @@ export declare namespace CreateInfraBillingNodeCommand {
514
530
  txTotal: number;
515
531
  } | null;
516
532
  memoryFree: number;
533
+ memoryUsed: number;
517
534
  uptime: number;
535
+ loadAvg: number[];
518
536
  };
519
537
  info: {
520
538
  type: string;
@@ -538,7 +556,9 @@ export declare namespace CreateInfraBillingNodeCommand {
538
556
  txTotal: number;
539
557
  } | null;
540
558
  memoryFree: number;
559
+ memoryUsed: number;
541
560
  uptime: number;
561
+ loadAvg: number[];
542
562
  };
543
563
  info: {
544
564
  type: 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"}
@@ -177,7 +177,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
177
177
  }>;
178
178
  stats: z.ZodObject<{
179
179
  memoryFree: z.ZodNumber;
180
+ memoryUsed: z.ZodNumber;
180
181
  uptime: z.ZodNumber;
182
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
181
183
  interface: z.ZodNullable<z.ZodObject<{
182
184
  interface: z.ZodString;
183
185
  rxBytesPerSec: z.ZodNumber;
@@ -206,7 +208,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
206
208
  txTotal: number;
207
209
  } | null;
208
210
  memoryFree: number;
211
+ memoryUsed: number;
209
212
  uptime: number;
213
+ loadAvg: number[];
210
214
  }, {
211
215
  interface: {
212
216
  interface: string;
@@ -216,7 +220,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
216
220
  txTotal: number;
217
221
  } | null;
218
222
  memoryFree: number;
223
+ memoryUsed: number;
219
224
  uptime: number;
225
+ loadAvg: number[];
220
226
  }>;
221
227
  }, "strip", z.ZodTypeAny, {
222
228
  stats: {
@@ -228,7 +234,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
228
234
  txTotal: number;
229
235
  } | null;
230
236
  memoryFree: number;
237
+ memoryUsed: number;
231
238
  uptime: number;
239
+ loadAvg: number[];
232
240
  };
233
241
  info: {
234
242
  type: string;
@@ -252,7 +260,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
252
260
  txTotal: number;
253
261
  } | null;
254
262
  memoryFree: number;
263
+ memoryUsed: number;
255
264
  uptime: number;
265
+ loadAvg: number[];
256
266
  };
257
267
  info: {
258
268
  type: string;
@@ -457,7 +467,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
457
467
  }>;
458
468
  stats: z.ZodObject<{
459
469
  memoryFree: z.ZodNumber;
470
+ memoryUsed: z.ZodNumber;
460
471
  uptime: z.ZodNumber;
472
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
461
473
  interface: z.ZodNullable<z.ZodObject<{
462
474
  interface: z.ZodString;
463
475
  rxBytesPerSec: z.ZodNumber;
@@ -486,7 +498,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
486
498
  txTotal: number;
487
499
  } | null;
488
500
  memoryFree: number;
501
+ memoryUsed: number;
489
502
  uptime: number;
503
+ loadAvg: number[];
490
504
  }, {
491
505
  interface: {
492
506
  interface: string;
@@ -496,7 +510,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
496
510
  txTotal: number;
497
511
  } | null;
498
512
  memoryFree: number;
513
+ memoryUsed: number;
499
514
  uptime: number;
515
+ loadAvg: number[];
500
516
  }>;
501
517
  }, "strip", z.ZodTypeAny, {
502
518
  stats: {
@@ -508,7 +524,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
508
524
  txTotal: number;
509
525
  } | null;
510
526
  memoryFree: number;
527
+ memoryUsed: number;
511
528
  uptime: number;
529
+ loadAvg: number[];
512
530
  };
513
531
  info: {
514
532
  type: string;
@@ -532,7 +550,9 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
532
550
  txTotal: number;
533
551
  } | null;
534
552
  memoryFree: number;
553
+ memoryUsed: number;
535
554
  uptime: number;
555
+ loadAvg: number[];
536
556
  };
537
557
  info: {
538
558
  type: 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"}
@@ -169,7 +169,9 @@ export declare namespace GetInfraBillingNodesCommand {
169
169
  }>;
170
170
  stats: z.ZodObject<{
171
171
  memoryFree: z.ZodNumber;
172
+ memoryUsed: z.ZodNumber;
172
173
  uptime: z.ZodNumber;
174
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
173
175
  interface: z.ZodNullable<z.ZodObject<{
174
176
  interface: z.ZodString;
175
177
  rxBytesPerSec: z.ZodNumber;
@@ -198,7 +200,9 @@ export declare namespace GetInfraBillingNodesCommand {
198
200
  txTotal: number;
199
201
  } | null;
200
202
  memoryFree: number;
203
+ memoryUsed: number;
201
204
  uptime: number;
205
+ loadAvg: number[];
202
206
  }, {
203
207
  interface: {
204
208
  interface: string;
@@ -208,7 +212,9 @@ export declare namespace GetInfraBillingNodesCommand {
208
212
  txTotal: number;
209
213
  } | null;
210
214
  memoryFree: number;
215
+ memoryUsed: number;
211
216
  uptime: number;
217
+ loadAvg: number[];
212
218
  }>;
213
219
  }, "strip", z.ZodTypeAny, {
214
220
  stats: {
@@ -220,7 +226,9 @@ export declare namespace GetInfraBillingNodesCommand {
220
226
  txTotal: number;
221
227
  } | null;
222
228
  memoryFree: number;
229
+ memoryUsed: number;
223
230
  uptime: number;
231
+ loadAvg: number[];
224
232
  };
225
233
  info: {
226
234
  type: string;
@@ -244,7 +252,9 @@ export declare namespace GetInfraBillingNodesCommand {
244
252
  txTotal: number;
245
253
  } | null;
246
254
  memoryFree: number;
255
+ memoryUsed: number;
247
256
  uptime: number;
257
+ loadAvg: number[];
248
258
  };
249
259
  info: {
250
260
  type: string;
@@ -449,7 +459,9 @@ export declare namespace GetInfraBillingNodesCommand {
449
459
  }>;
450
460
  stats: z.ZodObject<{
451
461
  memoryFree: z.ZodNumber;
462
+ memoryUsed: z.ZodNumber;
452
463
  uptime: z.ZodNumber;
464
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
453
465
  interface: z.ZodNullable<z.ZodObject<{
454
466
  interface: z.ZodString;
455
467
  rxBytesPerSec: z.ZodNumber;
@@ -478,7 +490,9 @@ export declare namespace GetInfraBillingNodesCommand {
478
490
  txTotal: number;
479
491
  } | null;
480
492
  memoryFree: number;
493
+ memoryUsed: number;
481
494
  uptime: number;
495
+ loadAvg: number[];
482
496
  }, {
483
497
  interface: {
484
498
  interface: string;
@@ -488,7 +502,9 @@ export declare namespace GetInfraBillingNodesCommand {
488
502
  txTotal: number;
489
503
  } | null;
490
504
  memoryFree: number;
505
+ memoryUsed: number;
491
506
  uptime: number;
507
+ loadAvg: number[];
492
508
  }>;
493
509
  }, "strip", z.ZodTypeAny, {
494
510
  stats: {
@@ -500,7 +516,9 @@ export declare namespace GetInfraBillingNodesCommand {
500
516
  txTotal: number;
501
517
  } | null;
502
518
  memoryFree: number;
519
+ memoryUsed: number;
503
520
  uptime: number;
521
+ loadAvg: number[];
504
522
  };
505
523
  info: {
506
524
  type: string;
@@ -524,7 +542,9 @@ export declare namespace GetInfraBillingNodesCommand {
524
542
  txTotal: number;
525
543
  } | null;
526
544
  memoryFree: number;
545
+ memoryUsed: number;
527
546
  uptime: number;
547
+ loadAvg: number[];
528
548
  };
529
549
  info: {
530
550
  type: 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"}
@@ -180,7 +180,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
180
180
  }>;
181
181
  stats: z.ZodObject<{
182
182
  memoryFree: z.ZodNumber;
183
+ memoryUsed: z.ZodNumber;
183
184
  uptime: z.ZodNumber;
185
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
184
186
  interface: z.ZodNullable<z.ZodObject<{
185
187
  interface: z.ZodString;
186
188
  rxBytesPerSec: z.ZodNumber;
@@ -209,7 +211,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
209
211
  txTotal: number;
210
212
  } | null;
211
213
  memoryFree: number;
214
+ memoryUsed: number;
212
215
  uptime: number;
216
+ loadAvg: number[];
213
217
  }, {
214
218
  interface: {
215
219
  interface: string;
@@ -219,7 +223,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
219
223
  txTotal: number;
220
224
  } | null;
221
225
  memoryFree: number;
226
+ memoryUsed: number;
222
227
  uptime: number;
228
+ loadAvg: number[];
223
229
  }>;
224
230
  }, "strip", z.ZodTypeAny, {
225
231
  stats: {
@@ -231,7 +237,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
231
237
  txTotal: number;
232
238
  } | null;
233
239
  memoryFree: number;
240
+ memoryUsed: number;
234
241
  uptime: number;
242
+ loadAvg: number[];
235
243
  };
236
244
  info: {
237
245
  type: string;
@@ -255,7 +263,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
255
263
  txTotal: number;
256
264
  } | null;
257
265
  memoryFree: number;
266
+ memoryUsed: number;
258
267
  uptime: number;
268
+ loadAvg: number[];
259
269
  };
260
270
  info: {
261
271
  type: string;
@@ -460,7 +470,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
460
470
  }>;
461
471
  stats: z.ZodObject<{
462
472
  memoryFree: z.ZodNumber;
473
+ memoryUsed: z.ZodNumber;
463
474
  uptime: z.ZodNumber;
475
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
464
476
  interface: z.ZodNullable<z.ZodObject<{
465
477
  interface: z.ZodString;
466
478
  rxBytesPerSec: z.ZodNumber;
@@ -489,7 +501,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
489
501
  txTotal: number;
490
502
  } | null;
491
503
  memoryFree: number;
504
+ memoryUsed: number;
492
505
  uptime: number;
506
+ loadAvg: number[];
493
507
  }, {
494
508
  interface: {
495
509
  interface: string;
@@ -499,7 +513,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
499
513
  txTotal: number;
500
514
  } | null;
501
515
  memoryFree: number;
516
+ memoryUsed: number;
502
517
  uptime: number;
518
+ loadAvg: number[];
503
519
  }>;
504
520
  }, "strip", z.ZodTypeAny, {
505
521
  stats: {
@@ -511,7 +527,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
511
527
  txTotal: number;
512
528
  } | null;
513
529
  memoryFree: number;
530
+ memoryUsed: number;
514
531
  uptime: number;
532
+ loadAvg: number[];
515
533
  };
516
534
  info: {
517
535
  type: string;
@@ -535,7 +553,9 @@ export declare namespace UpdateInfraBillingNodeCommand {
535
553
  txTotal: number;
536
554
  } | null;
537
555
  memoryFree: number;
556
+ memoryUsed: number;
538
557
  uptime: number;
558
+ loadAvg: number[];
539
559
  };
540
560
  info: {
541
561
  type: 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"}
@@ -275,7 +275,9 @@ export declare namespace GetTorrentBlockerReportsCommand {
275
275
  }>;
276
276
  stats: z.ZodObject<{
277
277
  memoryFree: z.ZodNumber;
278
+ memoryUsed: z.ZodNumber;
278
279
  uptime: z.ZodNumber;
280
+ loadAvg: z.ZodArray<z.ZodNumber, "many">;
279
281
  interface: z.ZodNullable<z.ZodObject<{
280
282
  interface: z.ZodString;
281
283
  rxBytesPerSec: z.ZodNumber;
@@ -304,7 +306,9 @@ export declare namespace GetTorrentBlockerReportsCommand {
304
306
  txTotal: number;
305
307
  } | null;
306
308
  memoryFree: number;
309
+ memoryUsed: number;
307
310
  uptime: number;
311
+ loadAvg: number[];
308
312
  }, {
309
313
  interface: {
310
314
  interface: string;
@@ -314,7 +318,9 @@ export declare namespace GetTorrentBlockerReportsCommand {
314
318
  txTotal: number;
315
319
  } | null;
316
320
  memoryFree: number;
321
+ memoryUsed: number;
317
322
  uptime: number;
323
+ loadAvg: number[];
318
324
  }>;
319
325
  }, "strip", z.ZodTypeAny, {
320
326
  stats: {
@@ -326,7 +332,9 @@ export declare namespace GetTorrentBlockerReportsCommand {
326
332
  txTotal: number;
327
333
  } | null;
328
334
  memoryFree: number;
335
+ memoryUsed: number;
329
336
  uptime: number;
337
+ loadAvg: number[];
330
338
  };
331
339
  info: {
332
340
  type: string;
@@ -350,7 +358,9 @@ export declare namespace GetTorrentBlockerReportsCommand {
350
358
  txTotal: number;
351
359
  } | null;
352
360
  memoryFree: number;
361
+ memoryUsed: number;
353
362
  uptime: number;
363
+ loadAvg: number[];
354
364
  };
355
365
  info: {
356
366
  type: string;
@@ -414,13 +424,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
414
424
  }, "strip", z.ZodTypeAny, {
415
425
  network: string;
416
426
  email: string | null;
417
- level: number | null;
418
427
  protocol: string | null;
428
+ inboundTag: string | null;
429
+ level: number | null;
419
430
  source: string | null;
420
431
  destination: string;
421
432
  routeTarget: string | null;
422
433
  originalTarget: string | null;
423
- inboundTag: string | null;
424
434
  inboundName: string | null;
425
435
  inboundLocal: string | null;
426
436
  outboundTag: string | null;
@@ -428,13 +438,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
428
438
  }, {
429
439
  network: string;
430
440
  email: string | null;
431
- level: number | null;
432
441
  protocol: string | null;
442
+ inboundTag: string | null;
443
+ level: number | null;
433
444
  source: string | null;
434
445
  destination: string;
435
446
  routeTarget: string | null;
436
447
  originalTarget: string | null;
437
- inboundTag: string | null;
438
448
  inboundName: string | null;
439
449
  inboundLocal: string | null;
440
450
  outboundTag: string | null;
@@ -452,13 +462,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
452
462
  xrayReport: {
453
463
  network: string;
454
464
  email: string | null;
455
- level: number | null;
456
465
  protocol: string | null;
466
+ inboundTag: string | null;
467
+ level: number | null;
457
468
  source: string | null;
458
469
  destination: string;
459
470
  routeTarget: string | null;
460
471
  originalTarget: string | null;
461
- inboundTag: string | null;
462
472
  inboundName: string | null;
463
473
  inboundLocal: string | null;
464
474
  outboundTag: string | null;
@@ -476,13 +486,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
476
486
  xrayReport: {
477
487
  network: string;
478
488
  email: string | null;
479
- level: number | null;
480
489
  protocol: string | null;
490
+ inboundTag: string | null;
491
+ level: number | null;
481
492
  source: string | null;
482
493
  destination: string;
483
494
  routeTarget: string | null;
484
495
  originalTarget: string | null;
485
- inboundTag: string | null;
486
496
  inboundName: string | null;
487
497
  inboundLocal: string | null;
488
498
  outboundTag: string | null;
@@ -516,13 +526,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
516
526
  xrayReport: {
517
527
  network: string;
518
528
  email: string | null;
519
- level: number | null;
520
529
  protocol: string | null;
530
+ inboundTag: string | null;
531
+ level: number | null;
521
532
  source: string | null;
522
533
  destination: string;
523
534
  routeTarget: string | null;
524
535
  originalTarget: string | null;
525
- inboundTag: string | null;
526
536
  inboundName: string | null;
527
537
  inboundLocal: string | null;
528
538
  outboundTag: string | null;
@@ -555,13 +565,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
555
565
  xrayReport: {
556
566
  network: string;
557
567
  email: string | null;
558
- level: number | null;
559
568
  protocol: string | null;
569
+ inboundTag: string | null;
570
+ level: number | null;
560
571
  source: string | null;
561
572
  destination: string;
562
573
  routeTarget: string | null;
563
574
  originalTarget: string | null;
564
- inboundTag: string | null;
565
575
  inboundName: string | null;
566
576
  inboundLocal: string | null;
567
577
  outboundTag: string | null;
@@ -598,13 +608,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
598
608
  xrayReport: {
599
609
  network: string;
600
610
  email: string | null;
601
- level: number | null;
602
611
  protocol: string | null;
612
+ inboundTag: string | null;
613
+ level: number | null;
603
614
  source: string | null;
604
615
  destination: string;
605
616
  routeTarget: string | null;
606
617
  originalTarget: string | null;
607
- inboundTag: string | null;
608
618
  inboundName: string | null;
609
619
  inboundLocal: string | null;
610
620
  outboundTag: string | null;
@@ -640,13 +650,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
640
650
  xrayReport: {
641
651
  network: string;
642
652
  email: string | null;
643
- level: number | null;
644
653
  protocol: string | null;
654
+ inboundTag: string | null;
655
+ level: number | null;
645
656
  source: string | null;
646
657
  destination: string;
647
658
  routeTarget: string | null;
648
659
  originalTarget: string | null;
649
- inboundTag: string | null;
650
660
  inboundName: string | null;
651
661
  inboundLocal: string | null;
652
662
  outboundTag: string | null;
@@ -684,13 +694,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
684
694
  xrayReport: {
685
695
  network: string;
686
696
  email: string | null;
687
- level: number | null;
688
697
  protocol: string | null;
698
+ inboundTag: string | null;
699
+ level: number | null;
689
700
  source: string | null;
690
701
  destination: string;
691
702
  routeTarget: string | null;
692
703
  originalTarget: string | null;
693
- inboundTag: string | null;
694
704
  inboundName: string | null;
695
705
  inboundLocal: string | null;
696
706
  outboundTag: string | null;
@@ -728,13 +738,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
728
738
  xrayReport: {
729
739
  network: string;
730
740
  email: string | null;
731
- level: number | null;
732
741
  protocol: string | null;
742
+ inboundTag: string | null;
743
+ level: number | null;
733
744
  source: string | null;
734
745
  destination: string;
735
746
  routeTarget: string | null;
736
747
  originalTarget: string | null;
737
- inboundTag: string | null;
738
748
  inboundName: string | null;
739
749
  inboundLocal: string | null;
740
750
  outboundTag: string | null;
@@ -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"}