@remnawave/backend-contract 2.6.54 → 2.6.56

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 (60) hide show
  1. package/build/backend/api/controllers-info.d.ts +1 -1
  2. package/build/backend/api/controllers-info.js +1 -1
  3. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +24 -8
  4. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -1
  5. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +24 -8
  6. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
  7. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +24 -8
  8. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts.map +1 -1
  9. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +24 -8
  10. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
  11. package/build/backend/commands/keygen/get-pubkey.command.js +1 -1
  12. package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts +32 -24
  13. package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts.map +1 -1
  14. package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts +32 -24
  15. package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts.map +1 -1
  16. package/build/backend/commands/nodes/actions/disable.command.d.ts +36 -20
  17. package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
  18. package/build/backend/commands/nodes/actions/enable.command.d.ts +36 -20
  19. package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
  20. package/build/backend/commands/nodes/actions/reorder.command.d.ts +48 -24
  21. package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
  22. package/build/backend/commands/nodes/create.command.d.ts +36 -20
  23. package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
  24. package/build/backend/commands/nodes/get-all.command.d.ts +36 -20
  25. package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
  26. package/build/backend/commands/nodes/get-one.command.d.ts +36 -20
  27. package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
  28. package/build/backend/commands/nodes/update.command.d.ts +48 -24
  29. package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
  30. package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts +878 -348
  31. package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.d.ts.map +1 -1
  32. package/build/backend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js +2 -59
  33. package/build/backend/constants/cache-keys/cache-keys.constants.d.ts +5 -0
  34. package/build/backend/constants/cache-keys/cache-keys.constants.d.ts.map +1 -1
  35. package/build/backend/constants/cache-keys/cache-keys.constants.js +5 -0
  36. package/build/backend/models/index.d.ts +1 -0
  37. package/build/backend/models/index.d.ts.map +1 -1
  38. package/build/backend/models/index.js +1 -0
  39. package/build/backend/models/infra-billing-available-node.schema.d.ts +12 -4
  40. package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
  41. package/build/backend/models/infra-billing-node.schema.d.ts +12 -4
  42. package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
  43. package/build/backend/models/nodes.schema.d.ts +24 -12
  44. package/build/backend/models/nodes.schema.d.ts.map +1 -1
  45. package/build/backend/models/nodes.schema.js +6 -4
  46. package/build/backend/models/resolved-proxy-config.schema.d.ts +1422 -0
  47. package/build/backend/models/resolved-proxy-config.schema.d.ts.map +1 -0
  48. package/build/backend/models/resolved-proxy-config.schema.js +219 -0
  49. package/build/backend/models/torrent-blocker-report.schema.d.ts +24 -16
  50. package/build/backend/models/torrent-blocker-report.schema.d.ts.map +1 -1
  51. package/build/backend/models/webhook/webhook.schema.d.ts +200 -128
  52. package/build/backend/models/webhook/webhook.schema.d.ts.map +1 -1
  53. package/build/frontend/api/controllers-info.js +1 -1
  54. package/build/frontend/commands/keygen/get-pubkey.command.js +1 -1
  55. package/build/frontend/commands/subscriptions/get-by/get-raw-subscription-by-short-uuid.command.js +2 -59
  56. package/build/frontend/constants/cache-keys/cache-keys.constants.js +5 -0
  57. package/build/frontend/models/index.js +1 -0
  58. package/build/frontend/models/nodes.schema.js +6 -4
  59. package/build/frontend/models/resolved-proxy-config.schema.js +219 -0
  60. package/package.json +1 -1
@@ -85,7 +85,7 @@ export declare const CONTROLLERS_INFO: {
85
85
  };
86
86
  readonly KEYGEN: {
87
87
  readonly tag: "Keygen Controller";
88
- readonly description: "Generation of SSL_CERT for Remnawave Node.";
88
+ readonly description: "Generation of SECRET_KEY for Remnawave Node.";
89
89
  };
90
90
  readonly SUBSCRIPTION_REQUEST_HISTORY: {
91
91
  readonly tag: "Subscription Request History Controller";
@@ -88,7 +88,7 @@ exports.CONTROLLERS_INFO = {
88
88
  },
89
89
  KEYGEN: {
90
90
  tag: 'Keygen Controller',
91
- description: 'Generation of SSL_CERT for Remnawave Node.',
91
+ description: 'Generation of SECRET_KEY for Remnawave Node.',
92
92
  },
93
93
  SUBSCRIPTION_REQUEST_HISTORY: {
94
94
  tag: 'Subscription Request History Controller',
@@ -52,15 +52,11 @@ export declare namespace CreateInfraBillingNodeCommand {
52
52
  isConnecting: z.ZodBoolean;
53
53
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
54
54
  lastStatusMessage: z.ZodNullable<z.ZodString>;
55
- xrayVersion: z.ZodNullable<z.ZodString>;
56
- nodeVersion: z.ZodNullable<z.ZodString>;
57
- xrayUptime: z.ZodString;
58
55
  isTrafficTrackingActive: z.ZodBoolean;
59
56
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
60
57
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
61
58
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
62
59
  notifyPercent: z.ZodNullable<z.ZodNumber>;
63
- usersOnline: z.ZodNullable<z.ZodNumber>;
64
60
  viewPosition: z.ZodNumber;
65
61
  countryCode: z.ZodString;
66
62
  consumptionMultiplier: z.ZodNumber;
@@ -283,6 +279,18 @@ export declare namespace CreateInfraBillingNodeCommand {
283
279
  networkInterfaces: string[];
284
280
  };
285
281
  }>>;
282
+ versions: z.ZodNullable<z.ZodObject<{
283
+ xray: z.ZodString;
284
+ node: z.ZodString;
285
+ }, "strip", z.ZodTypeAny, {
286
+ node: string;
287
+ xray: string;
288
+ }, {
289
+ node: string;
290
+ xray: string;
291
+ }>>;
292
+ xrayUptime: z.ZodNumber;
293
+ usersOnline: z.ZodNumber;
286
294
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
287
295
  uuid: string;
288
296
  countryCode: string;
@@ -342,15 +350,11 @@ export declare namespace CreateInfraBillingNodeCommand {
342
350
  isConnecting: z.ZodBoolean;
343
351
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
344
352
  lastStatusMessage: z.ZodNullable<z.ZodString>;
345
- xrayVersion: z.ZodNullable<z.ZodString>;
346
- nodeVersion: z.ZodNullable<z.ZodString>;
347
- xrayUptime: z.ZodString;
348
353
  isTrafficTrackingActive: z.ZodBoolean;
349
354
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
350
355
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
351
356
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
352
357
  notifyPercent: z.ZodNullable<z.ZodNumber>;
353
- usersOnline: z.ZodNullable<z.ZodNumber>;
354
358
  viewPosition: z.ZodNumber;
355
359
  countryCode: z.ZodString;
356
360
  consumptionMultiplier: z.ZodNumber;
@@ -573,6 +577,18 @@ export declare namespace CreateInfraBillingNodeCommand {
573
577
  networkInterfaces: string[];
574
578
  };
575
579
  }>>;
580
+ versions: z.ZodNullable<z.ZodObject<{
581
+ xray: z.ZodString;
582
+ node: z.ZodString;
583
+ }, "strip", z.ZodTypeAny, {
584
+ node: string;
585
+ xray: string;
586
+ }, {
587
+ node: string;
588
+ xray: string;
589
+ }>>;
590
+ xrayUptime: z.ZodNumber;
591
+ usersOnline: z.ZodNumber;
576
592
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
577
593
  uuid: string;
578
594
  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"}
@@ -46,15 +46,11 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
46
46
  isConnecting: z.ZodBoolean;
47
47
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
48
48
  lastStatusMessage: z.ZodNullable<z.ZodString>;
49
- xrayVersion: z.ZodNullable<z.ZodString>;
50
- nodeVersion: z.ZodNullable<z.ZodString>;
51
- xrayUptime: z.ZodString;
52
49
  isTrafficTrackingActive: z.ZodBoolean;
53
50
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
54
51
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
55
52
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
56
53
  notifyPercent: z.ZodNullable<z.ZodNumber>;
57
- usersOnline: z.ZodNullable<z.ZodNumber>;
58
54
  viewPosition: z.ZodNumber;
59
55
  countryCode: z.ZodString;
60
56
  consumptionMultiplier: z.ZodNumber;
@@ -277,6 +273,18 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
277
273
  networkInterfaces: string[];
278
274
  };
279
275
  }>>;
276
+ versions: z.ZodNullable<z.ZodObject<{
277
+ xray: z.ZodString;
278
+ node: z.ZodString;
279
+ }, "strip", z.ZodTypeAny, {
280
+ node: string;
281
+ xray: string;
282
+ }, {
283
+ node: string;
284
+ xray: string;
285
+ }>>;
286
+ xrayUptime: z.ZodNumber;
287
+ usersOnline: z.ZodNumber;
280
288
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
281
289
  uuid: string;
282
290
  countryCode: string;
@@ -336,15 +344,11 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
336
344
  isConnecting: z.ZodBoolean;
337
345
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
338
346
  lastStatusMessage: z.ZodNullable<z.ZodString>;
339
- xrayVersion: z.ZodNullable<z.ZodString>;
340
- nodeVersion: z.ZodNullable<z.ZodString>;
341
- xrayUptime: z.ZodString;
342
347
  isTrafficTrackingActive: z.ZodBoolean;
343
348
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
344
349
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
345
350
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
346
351
  notifyPercent: z.ZodNullable<z.ZodNumber>;
347
- usersOnline: z.ZodNullable<z.ZodNumber>;
348
352
  viewPosition: z.ZodNumber;
349
353
  countryCode: z.ZodString;
350
354
  consumptionMultiplier: z.ZodNumber;
@@ -567,6 +571,18 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
567
571
  networkInterfaces: string[];
568
572
  };
569
573
  }>>;
574
+ versions: z.ZodNullable<z.ZodObject<{
575
+ xray: z.ZodString;
576
+ node: z.ZodString;
577
+ }, "strip", z.ZodTypeAny, {
578
+ node: string;
579
+ xray: string;
580
+ }, {
581
+ node: string;
582
+ xray: string;
583
+ }>>;
584
+ xrayUptime: z.ZodNumber;
585
+ usersOnline: z.ZodNumber;
570
586
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
571
587
  uuid: string;
572
588
  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"}
@@ -38,15 +38,11 @@ export declare namespace GetInfraBillingNodesCommand {
38
38
  isConnecting: z.ZodBoolean;
39
39
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
40
40
  lastStatusMessage: z.ZodNullable<z.ZodString>;
41
- xrayVersion: z.ZodNullable<z.ZodString>;
42
- nodeVersion: z.ZodNullable<z.ZodString>;
43
- xrayUptime: z.ZodString;
44
41
  isTrafficTrackingActive: z.ZodBoolean;
45
42
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
46
43
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
47
44
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
48
45
  notifyPercent: z.ZodNullable<z.ZodNumber>;
49
- usersOnline: z.ZodNullable<z.ZodNumber>;
50
46
  viewPosition: z.ZodNumber;
51
47
  countryCode: z.ZodString;
52
48
  consumptionMultiplier: z.ZodNumber;
@@ -269,6 +265,18 @@ export declare namespace GetInfraBillingNodesCommand {
269
265
  networkInterfaces: string[];
270
266
  };
271
267
  }>>;
268
+ versions: z.ZodNullable<z.ZodObject<{
269
+ xray: z.ZodString;
270
+ node: z.ZodString;
271
+ }, "strip", z.ZodTypeAny, {
272
+ node: string;
273
+ xray: string;
274
+ }, {
275
+ node: string;
276
+ xray: string;
277
+ }>>;
278
+ xrayUptime: z.ZodNumber;
279
+ usersOnline: z.ZodNumber;
272
280
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
273
281
  uuid: string;
274
282
  countryCode: string;
@@ -328,15 +336,11 @@ export declare namespace GetInfraBillingNodesCommand {
328
336
  isConnecting: z.ZodBoolean;
329
337
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
330
338
  lastStatusMessage: z.ZodNullable<z.ZodString>;
331
- xrayVersion: z.ZodNullable<z.ZodString>;
332
- nodeVersion: z.ZodNullable<z.ZodString>;
333
- xrayUptime: z.ZodString;
334
339
  isTrafficTrackingActive: z.ZodBoolean;
335
340
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
336
341
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
337
342
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
338
343
  notifyPercent: z.ZodNullable<z.ZodNumber>;
339
- usersOnline: z.ZodNullable<z.ZodNumber>;
340
344
  viewPosition: z.ZodNumber;
341
345
  countryCode: z.ZodString;
342
346
  consumptionMultiplier: z.ZodNumber;
@@ -559,6 +563,18 @@ export declare namespace GetInfraBillingNodesCommand {
559
563
  networkInterfaces: string[];
560
564
  };
561
565
  }>>;
566
+ versions: z.ZodNullable<z.ZodObject<{
567
+ xray: z.ZodString;
568
+ node: z.ZodString;
569
+ }, "strip", z.ZodTypeAny, {
570
+ node: string;
571
+ xray: string;
572
+ }, {
573
+ node: string;
574
+ xray: string;
575
+ }>>;
576
+ xrayUptime: z.ZodNumber;
577
+ usersOnline: z.ZodNumber;
562
578
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
563
579
  uuid: string;
564
580
  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"}
@@ -49,15 +49,11 @@ export declare namespace UpdateInfraBillingNodeCommand {
49
49
  isConnecting: z.ZodBoolean;
50
50
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
51
51
  lastStatusMessage: z.ZodNullable<z.ZodString>;
52
- xrayVersion: z.ZodNullable<z.ZodString>;
53
- nodeVersion: z.ZodNullable<z.ZodString>;
54
- xrayUptime: z.ZodString;
55
52
  isTrafficTrackingActive: z.ZodBoolean;
56
53
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
57
54
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
58
55
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
59
56
  notifyPercent: z.ZodNullable<z.ZodNumber>;
60
- usersOnline: z.ZodNullable<z.ZodNumber>;
61
57
  viewPosition: z.ZodNumber;
62
58
  countryCode: z.ZodString;
63
59
  consumptionMultiplier: z.ZodNumber;
@@ -280,6 +276,18 @@ export declare namespace UpdateInfraBillingNodeCommand {
280
276
  networkInterfaces: string[];
281
277
  };
282
278
  }>>;
279
+ versions: z.ZodNullable<z.ZodObject<{
280
+ xray: z.ZodString;
281
+ node: z.ZodString;
282
+ }, "strip", z.ZodTypeAny, {
283
+ node: string;
284
+ xray: string;
285
+ }, {
286
+ node: string;
287
+ xray: string;
288
+ }>>;
289
+ xrayUptime: z.ZodNumber;
290
+ usersOnline: z.ZodNumber;
283
291
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
284
292
  uuid: string;
285
293
  countryCode: string;
@@ -339,15 +347,11 @@ export declare namespace UpdateInfraBillingNodeCommand {
339
347
  isConnecting: z.ZodBoolean;
340
348
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
341
349
  lastStatusMessage: z.ZodNullable<z.ZodString>;
342
- xrayVersion: z.ZodNullable<z.ZodString>;
343
- nodeVersion: z.ZodNullable<z.ZodString>;
344
- xrayUptime: z.ZodString;
345
350
  isTrafficTrackingActive: z.ZodBoolean;
346
351
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
347
352
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
348
353
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
349
354
  notifyPercent: z.ZodNullable<z.ZodNumber>;
350
- usersOnline: z.ZodNullable<z.ZodNumber>;
351
355
  viewPosition: z.ZodNumber;
352
356
  countryCode: z.ZodString;
353
357
  consumptionMultiplier: z.ZodNumber;
@@ -570,6 +574,18 @@ export declare namespace UpdateInfraBillingNodeCommand {
570
574
  networkInterfaces: string[];
571
575
  };
572
576
  }>>;
577
+ versions: z.ZodNullable<z.ZodObject<{
578
+ xray: z.ZodString;
579
+ node: z.ZodString;
580
+ }, "strip", z.ZodTypeAny, {
581
+ node: string;
582
+ xray: string;
583
+ }, {
584
+ node: string;
585
+ xray: string;
586
+ }>>;
587
+ xrayUptime: z.ZodNumber;
588
+ usersOnline: z.ZodNumber;
573
589
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
574
590
  uuid: string;
575
591
  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"}
@@ -8,7 +8,7 @@ var GetPubKeyCommand;
8
8
  (function (GetPubKeyCommand) {
9
9
  GetPubKeyCommand.url = api_1.REST_API.KEYGEN.GET;
10
10
  GetPubKeyCommand.TSQ_url = GetPubKeyCommand.url;
11
- GetPubKeyCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.KEYGEN_ROUTES.GET, 'get', 'Get SSL_CERT for Remnawave Node');
11
+ GetPubKeyCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.KEYGEN_ROUTES.GET, 'get', 'Get SECRET_KEY for Remnawave Node');
12
12
  GetPubKeyCommand.ResponseSchema = zod_1.z.object({
13
13
  response: zod_1.z.object({
14
14
  pubKey: zod_1.z.string(),
@@ -144,15 +144,11 @@ export declare namespace GetTorrentBlockerReportsCommand {
144
144
  isConnecting: z.ZodBoolean;
145
145
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
146
146
  lastStatusMessage: z.ZodNullable<z.ZodString>;
147
- xrayVersion: z.ZodNullable<z.ZodString>;
148
- nodeVersion: z.ZodNullable<z.ZodString>;
149
- xrayUptime: z.ZodString;
150
147
  isTrafficTrackingActive: z.ZodBoolean;
151
148
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
152
149
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
153
150
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
154
151
  notifyPercent: z.ZodNullable<z.ZodNumber>;
155
- usersOnline: z.ZodNullable<z.ZodNumber>;
156
152
  viewPosition: z.ZodNumber;
157
153
  countryCode: z.ZodString;
158
154
  consumptionMultiplier: z.ZodNumber;
@@ -375,6 +371,18 @@ export declare namespace GetTorrentBlockerReportsCommand {
375
371
  networkInterfaces: string[];
376
372
  };
377
373
  }>>;
374
+ versions: z.ZodNullable<z.ZodObject<{
375
+ xray: z.ZodString;
376
+ node: z.ZodString;
377
+ }, "strip", z.ZodTypeAny, {
378
+ node: string;
379
+ xray: string;
380
+ }, {
381
+ node: string;
382
+ xray: string;
383
+ }>>;
384
+ xrayUptime: z.ZodNumber;
385
+ usersOnline: z.ZodNumber;
378
386
  }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
379
387
  uuid: string;
380
388
  countryCode: string;
@@ -424,13 +432,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
424
432
  }, "strip", z.ZodTypeAny, {
425
433
  network: string;
426
434
  email: string | null;
427
- level: number | null;
428
435
  protocol: string | null;
436
+ inboundTag: string | null;
437
+ level: number | null;
429
438
  source: string | null;
430
439
  destination: string;
431
440
  routeTarget: string | null;
432
441
  originalTarget: string | null;
433
- inboundTag: string | null;
434
442
  inboundName: string | null;
435
443
  inboundLocal: string | null;
436
444
  outboundTag: string | null;
@@ -438,13 +446,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
438
446
  }, {
439
447
  network: string;
440
448
  email: string | null;
441
- level: number | null;
442
449
  protocol: string | null;
450
+ inboundTag: string | null;
451
+ level: number | null;
443
452
  source: string | null;
444
453
  destination: string;
445
454
  routeTarget: string | null;
446
455
  originalTarget: string | null;
447
- inboundTag: string | null;
448
456
  inboundName: string | null;
449
457
  inboundLocal: string | null;
450
458
  outboundTag: string | null;
@@ -462,13 +470,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
462
470
  xrayReport: {
463
471
  network: string;
464
472
  email: string | null;
465
- level: number | null;
466
473
  protocol: string | null;
474
+ inboundTag: string | null;
475
+ level: number | null;
467
476
  source: string | null;
468
477
  destination: string;
469
478
  routeTarget: string | null;
470
479
  originalTarget: string | null;
471
- inboundTag: string | null;
472
480
  inboundName: string | null;
473
481
  inboundLocal: string | null;
474
482
  outboundTag: string | null;
@@ -486,13 +494,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
486
494
  xrayReport: {
487
495
  network: string;
488
496
  email: string | null;
489
- level: number | null;
490
497
  protocol: string | null;
498
+ inboundTag: string | null;
499
+ level: number | null;
491
500
  source: string | null;
492
501
  destination: string;
493
502
  routeTarget: string | null;
494
503
  originalTarget: string | null;
495
- inboundTag: string | null;
496
504
  inboundName: string | null;
497
505
  inboundLocal: string | null;
498
506
  outboundTag: string | null;
@@ -526,13 +534,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
526
534
  xrayReport: {
527
535
  network: string;
528
536
  email: string | null;
529
- level: number | null;
530
537
  protocol: string | null;
538
+ inboundTag: string | null;
539
+ level: number | null;
531
540
  source: string | null;
532
541
  destination: string;
533
542
  routeTarget: string | null;
534
543
  originalTarget: string | null;
535
- inboundTag: string | null;
536
544
  inboundName: string | null;
537
545
  inboundLocal: string | null;
538
546
  outboundTag: string | null;
@@ -565,13 +573,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
565
573
  xrayReport: {
566
574
  network: string;
567
575
  email: string | null;
568
- level: number | null;
569
576
  protocol: string | null;
577
+ inboundTag: string | null;
578
+ level: number | null;
570
579
  source: string | null;
571
580
  destination: string;
572
581
  routeTarget: string | null;
573
582
  originalTarget: string | null;
574
- inboundTag: string | null;
575
583
  inboundName: string | null;
576
584
  inboundLocal: string | null;
577
585
  outboundTag: string | null;
@@ -608,13 +616,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
608
616
  xrayReport: {
609
617
  network: string;
610
618
  email: string | null;
611
- level: number | null;
612
619
  protocol: string | null;
620
+ inboundTag: string | null;
621
+ level: number | null;
613
622
  source: string | null;
614
623
  destination: string;
615
624
  routeTarget: string | null;
616
625
  originalTarget: string | null;
617
- inboundTag: string | null;
618
626
  inboundName: string | null;
619
627
  inboundLocal: string | null;
620
628
  outboundTag: string | null;
@@ -650,13 +658,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
650
658
  xrayReport: {
651
659
  network: string;
652
660
  email: string | null;
653
- level: number | null;
654
661
  protocol: string | null;
662
+ inboundTag: string | null;
663
+ level: number | null;
655
664
  source: string | null;
656
665
  destination: string;
657
666
  routeTarget: string | null;
658
667
  originalTarget: string | null;
659
- inboundTag: string | null;
660
668
  inboundName: string | null;
661
669
  inboundLocal: string | null;
662
670
  outboundTag: string | null;
@@ -694,13 +702,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
694
702
  xrayReport: {
695
703
  network: string;
696
704
  email: string | null;
697
- level: number | null;
698
705
  protocol: string | null;
706
+ inboundTag: string | null;
707
+ level: number | null;
699
708
  source: string | null;
700
709
  destination: string;
701
710
  routeTarget: string | null;
702
711
  originalTarget: string | null;
703
- inboundTag: string | null;
704
712
  inboundName: string | null;
705
713
  inboundLocal: string | null;
706
714
  outboundTag: string | null;
@@ -738,13 +746,13 @@ export declare namespace GetTorrentBlockerReportsCommand {
738
746
  xrayReport: {
739
747
  network: string;
740
748
  email: string | null;
741
- level: number | null;
742
749
  protocol: string | null;
750
+ inboundTag: string | null;
751
+ level: number | null;
743
752
  source: string | null;
744
753
  destination: string;
745
754
  routeTarget: string | null;
746
755
  originalTarget: string | null;
747
- inboundTag: string | null;
748
756
  inboundName: string | null;
749
757
  inboundLocal: string | null;
750
758
  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"}