@remnawave/backend-contract 2.6.37 → 2.6.38

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.
@@ -39,17 +39,20 @@ export declare namespace GetTorrentBlockerReportsStatsCommand {
39
39
  }>, "many">;
40
40
  topNodes: z.ZodArray<z.ZodObject<{
41
41
  uuid: z.ZodString;
42
+ countryCode: z.ZodString;
42
43
  color: z.ZodString;
43
44
  name: z.ZodString;
44
45
  total: z.ZodNumber;
45
46
  }, "strip", z.ZodTypeAny, {
46
47
  uuid: string;
47
48
  total: number;
49
+ countryCode: string;
48
50
  color: string;
49
51
  name: string;
50
52
  }, {
51
53
  uuid: string;
52
54
  total: number;
55
+ countryCode: string;
53
56
  color: string;
54
57
  name: string;
55
58
  }>, "many">;
@@ -69,6 +72,7 @@ export declare namespace GetTorrentBlockerReportsStatsCommand {
69
72
  topNodes: {
70
73
  uuid: string;
71
74
  total: number;
75
+ countryCode: string;
72
76
  color: string;
73
77
  name: string;
74
78
  }[];
@@ -88,6 +92,7 @@ export declare namespace GetTorrentBlockerReportsStatsCommand {
88
92
  topNodes: {
89
93
  uuid: string;
90
94
  total: number;
95
+ countryCode: string;
91
96
  color: string;
92
97
  name: string;
93
98
  }[];
@@ -109,6 +114,7 @@ export declare namespace GetTorrentBlockerReportsStatsCommand {
109
114
  topNodes: {
110
115
  uuid: string;
111
116
  total: number;
117
+ countryCode: string;
112
118
  color: string;
113
119
  name: string;
114
120
  }[];
@@ -130,6 +136,7 @@ export declare namespace GetTorrentBlockerReportsStatsCommand {
130
136
  topNodes: {
131
137
  uuid: string;
132
138
  total: number;
139
+ countryCode: string;
133
140
  color: string;
134
141
  name: string;
135
142
  }[];
@@ -1 +1 @@
1
- {"version":3,"file":"get-torrent-blocker-reports-stats.command.d.ts","sourceRoot":"","sources":["../../../../../commands/node-plugins/torrent-blocker/get-torrent-blocker-reports-stats.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,oCAAoC,CAAC;IAC3C,MAAM,GAAG,2CAA0D,CAAC;IACpE,MAAM,OAAO,2CAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyBzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-torrent-blocker-reports-stats.command.d.ts","sourceRoot":"","sources":["../../../../../commands/node-plugins/torrent-blocker/get-torrent-blocker-reports-stats.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,oCAAoC,CAAC;IAC3C,MAAM,GAAG,2CAA0D,CAAC;IACpE,MAAM,OAAO,2CAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA0BzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -25,6 +25,7 @@ var GetTorrentBlockerReportsStatsCommand;
25
25
  })),
26
26
  topNodes: zod_1.z.array(zod_1.z.object({
27
27
  uuid: zod_1.z.string().uuid(),
28
+ countryCode: zod_1.z.string(),
28
29
  color: zod_1.z.string(),
29
30
  name: zod_1.z.string(),
30
31
  total: zod_1.z.number(),
@@ -25,6 +25,7 @@ var GetTorrentBlockerReportsStatsCommand;
25
25
  })),
26
26
  topNodes: zod_1.z.array(zod_1.z.object({
27
27
  uuid: zod_1.z.string().uuid(),
28
+ countryCode: zod_1.z.string(),
28
29
  color: zod_1.z.string(),
29
30
  name: zod_1.z.string(),
30
31
  total: zod_1.z.number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnawave/backend-contract",
3
- "version": "2.6.37",
3
+ "version": "2.6.38",
4
4
  "public": true,
5
5
  "license": "AGPL-3.0-only",
6
6
  "description": "A contract library for Remnawave Backend. It can be used in backend and frontend.",