@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.
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +160 -6
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +160 -6
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +160 -6
- package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +160 -6
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts +80 -3
- package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts.map +1 -1
- package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts +80 -3
- package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/disable.command.d.ts +152 -15
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +152 -15
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +232 -18
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +152 -15
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-all.command.d.ts +152 -15
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +152 -15
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.d.ts +232 -18
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/system/get-remnawave-health.command.d.ts +6 -6
- package/build/backend/commands/system/get-stats.command.d.ts +4 -25
- package/build/backend/commands/system/get-stats.command.d.ts.map +1 -1
- package/build/backend/commands/system/get-stats.command.js +0 -3
- package/build/backend/constants/cache-keys/cache-keys.constants.d.ts +6 -5
- package/build/backend/constants/cache-keys/cache-keys.constants.d.ts.map +1 -1
- package/build/backend/constants/cache-keys/cache-keys.constants.js +6 -5
- package/build/backend/models/index.d.ts +1 -0
- package/build/backend/models/index.d.ts.map +1 -1
- package/build/backend/models/index.js +1 -0
- package/build/backend/models/infra-billing-available-node.schema.d.ts +80 -3
- package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
- package/build/backend/models/infra-billing-node.schema.d.ts +80 -3
- package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
- package/build/backend/models/node-system.schema.d.ts +129 -0
- package/build/backend/models/node-system.schema.d.ts.map +1 -0
- package/build/backend/models/node-system.schema.js +24 -0
- package/build/backend/models/nodes.schema.d.ts +116 -9
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +2 -3
- package/build/backend/models/torrent-blocker-report.schema.d.ts +80 -3
- package/build/backend/models/torrent-blocker-report.schema.d.ts.map +1 -1
- package/build/backend/models/webhook/webhook.schema.d.ts +680 -72
- package/build/backend/models/webhook/webhook.schema.d.ts.map +1 -1
- package/build/frontend/commands/system/get-stats.command.js +0 -3
- package/build/frontend/constants/cache-keys/cache-keys.constants.js +6 -5
- package/build/frontend/models/index.js +1 -0
- package/build/frontend/models/node-system.schema.js +24 -0
- package/build/frontend/models/nodes.schema.js +2 -3
- package/package.json +1 -1
|
@@ -35,9 +35,6 @@ export declare namespace EnableNodeCommand {
|
|
|
35
35
|
countryCode: z.ZodString;
|
|
36
36
|
consumptionMultiplier: z.ZodNumber;
|
|
37
37
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
38
|
-
cpuCount: z.ZodNullable<z.ZodNumber>;
|
|
39
|
-
cpuModel: z.ZodNullable<z.ZodString>;
|
|
40
|
-
totalRam: z.ZodNullable<z.ZodString>;
|
|
41
38
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
42
39
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
43
40
|
configProfile: z.ZodObject<{
|
|
@@ -119,8 +116,106 @@ export declare namespace EnableNodeCommand {
|
|
|
119
116
|
loginUrl: string | null;
|
|
120
117
|
}>>;
|
|
121
118
|
activePluginUuid: z.ZodNullable<z.ZodString>;
|
|
119
|
+
system: z.ZodNullable<z.ZodObject<{
|
|
120
|
+
info: z.ZodObject<{
|
|
121
|
+
arch: z.ZodString;
|
|
122
|
+
cpus: z.ZodNumber;
|
|
123
|
+
cpuModel: z.ZodString;
|
|
124
|
+
memoryTotal: z.ZodNumber;
|
|
125
|
+
hostname: z.ZodString;
|
|
126
|
+
platform: z.ZodString;
|
|
127
|
+
release: z.ZodString;
|
|
128
|
+
type: z.ZodString;
|
|
129
|
+
version: z.ZodString;
|
|
130
|
+
networkInterfaces: z.ZodArray<z.ZodString, "many">;
|
|
131
|
+
}, "strip", z.ZodTypeAny, {
|
|
132
|
+
type: string;
|
|
133
|
+
version: string;
|
|
134
|
+
platform: string;
|
|
135
|
+
arch: string;
|
|
136
|
+
cpus: number;
|
|
137
|
+
cpuModel: string;
|
|
138
|
+
memoryTotal: number;
|
|
139
|
+
hostname: string;
|
|
140
|
+
release: string;
|
|
141
|
+
networkInterfaces: string[];
|
|
142
|
+
}, {
|
|
143
|
+
type: string;
|
|
144
|
+
version: string;
|
|
145
|
+
platform: string;
|
|
146
|
+
arch: string;
|
|
147
|
+
cpus: number;
|
|
148
|
+
cpuModel: string;
|
|
149
|
+
memoryTotal: number;
|
|
150
|
+
hostname: string;
|
|
151
|
+
release: string;
|
|
152
|
+
networkInterfaces: string[];
|
|
153
|
+
}>;
|
|
154
|
+
stats: z.ZodObject<{
|
|
155
|
+
memoryFree: z.ZodNumber;
|
|
156
|
+
uptime: z.ZodNumber;
|
|
157
|
+
}, "strip", z.ZodTypeAny, {
|
|
158
|
+
memoryFree: number;
|
|
159
|
+
uptime: number;
|
|
160
|
+
}, {
|
|
161
|
+
memoryFree: number;
|
|
162
|
+
uptime: number;
|
|
163
|
+
}>;
|
|
164
|
+
}, "strip", z.ZodTypeAny, {
|
|
165
|
+
stats: {
|
|
166
|
+
memoryFree: number;
|
|
167
|
+
uptime: number;
|
|
168
|
+
};
|
|
169
|
+
info: {
|
|
170
|
+
type: string;
|
|
171
|
+
version: string;
|
|
172
|
+
platform: string;
|
|
173
|
+
arch: string;
|
|
174
|
+
cpus: number;
|
|
175
|
+
cpuModel: string;
|
|
176
|
+
memoryTotal: number;
|
|
177
|
+
hostname: string;
|
|
178
|
+
release: string;
|
|
179
|
+
networkInterfaces: string[];
|
|
180
|
+
};
|
|
181
|
+
}, {
|
|
182
|
+
stats: {
|
|
183
|
+
memoryFree: number;
|
|
184
|
+
uptime: number;
|
|
185
|
+
};
|
|
186
|
+
info: {
|
|
187
|
+
type: string;
|
|
188
|
+
version: string;
|
|
189
|
+
platform: string;
|
|
190
|
+
arch: string;
|
|
191
|
+
cpus: number;
|
|
192
|
+
cpuModel: string;
|
|
193
|
+
memoryTotal: number;
|
|
194
|
+
hostname: string;
|
|
195
|
+
release: string;
|
|
196
|
+
networkInterfaces: string[];
|
|
197
|
+
};
|
|
198
|
+
}>>;
|
|
122
199
|
}, "strip", z.ZodTypeAny, {
|
|
123
200
|
tags: string[];
|
|
201
|
+
system: {
|
|
202
|
+
stats: {
|
|
203
|
+
memoryFree: number;
|
|
204
|
+
uptime: number;
|
|
205
|
+
};
|
|
206
|
+
info: {
|
|
207
|
+
type: string;
|
|
208
|
+
version: string;
|
|
209
|
+
platform: string;
|
|
210
|
+
arch: string;
|
|
211
|
+
cpus: number;
|
|
212
|
+
cpuModel: string;
|
|
213
|
+
memoryTotal: number;
|
|
214
|
+
hostname: string;
|
|
215
|
+
release: string;
|
|
216
|
+
networkInterfaces: string[];
|
|
217
|
+
};
|
|
218
|
+
} | null;
|
|
124
219
|
uuid: string;
|
|
125
220
|
createdAt: Date;
|
|
126
221
|
updatedAt: Date;
|
|
@@ -152,9 +247,6 @@ export declare namespace EnableNodeCommand {
|
|
|
152
247
|
notifyPercent: number | null;
|
|
153
248
|
usersOnline: number | null;
|
|
154
249
|
consumptionMultiplier: number;
|
|
155
|
-
cpuCount: number | null;
|
|
156
|
-
cpuModel: string | null;
|
|
157
|
-
totalRam: string | null;
|
|
158
250
|
configProfile: {
|
|
159
251
|
activeConfigProfileUuid: string | null;
|
|
160
252
|
activeInbounds: {
|
|
@@ -172,6 +264,24 @@ export declare namespace EnableNodeCommand {
|
|
|
172
264
|
activePluginUuid: string | null;
|
|
173
265
|
}, {
|
|
174
266
|
tags: string[];
|
|
267
|
+
system: {
|
|
268
|
+
stats: {
|
|
269
|
+
memoryFree: number;
|
|
270
|
+
uptime: number;
|
|
271
|
+
};
|
|
272
|
+
info: {
|
|
273
|
+
type: string;
|
|
274
|
+
version: string;
|
|
275
|
+
platform: string;
|
|
276
|
+
arch: string;
|
|
277
|
+
cpus: number;
|
|
278
|
+
cpuModel: string;
|
|
279
|
+
memoryTotal: number;
|
|
280
|
+
hostname: string;
|
|
281
|
+
release: string;
|
|
282
|
+
networkInterfaces: string[];
|
|
283
|
+
};
|
|
284
|
+
} | null;
|
|
175
285
|
uuid: string;
|
|
176
286
|
createdAt: string;
|
|
177
287
|
updatedAt: string;
|
|
@@ -203,9 +313,6 @@ export declare namespace EnableNodeCommand {
|
|
|
203
313
|
notifyPercent: number | null;
|
|
204
314
|
usersOnline: number | null;
|
|
205
315
|
consumptionMultiplier: number;
|
|
206
|
-
cpuCount: number | null;
|
|
207
|
-
cpuModel: string | null;
|
|
208
|
-
totalRam: string | null;
|
|
209
316
|
configProfile: {
|
|
210
317
|
activeConfigProfileUuid: string | null;
|
|
211
318
|
activeInbounds: {
|
|
@@ -225,6 +332,24 @@ export declare namespace EnableNodeCommand {
|
|
|
225
332
|
}, "strip", z.ZodTypeAny, {
|
|
226
333
|
response: {
|
|
227
334
|
tags: string[];
|
|
335
|
+
system: {
|
|
336
|
+
stats: {
|
|
337
|
+
memoryFree: number;
|
|
338
|
+
uptime: number;
|
|
339
|
+
};
|
|
340
|
+
info: {
|
|
341
|
+
type: string;
|
|
342
|
+
version: string;
|
|
343
|
+
platform: string;
|
|
344
|
+
arch: string;
|
|
345
|
+
cpus: number;
|
|
346
|
+
cpuModel: string;
|
|
347
|
+
memoryTotal: number;
|
|
348
|
+
hostname: string;
|
|
349
|
+
release: string;
|
|
350
|
+
networkInterfaces: string[];
|
|
351
|
+
};
|
|
352
|
+
} | null;
|
|
228
353
|
uuid: string;
|
|
229
354
|
createdAt: Date;
|
|
230
355
|
updatedAt: Date;
|
|
@@ -256,9 +381,6 @@ export declare namespace EnableNodeCommand {
|
|
|
256
381
|
notifyPercent: number | null;
|
|
257
382
|
usersOnline: number | null;
|
|
258
383
|
consumptionMultiplier: number;
|
|
259
|
-
cpuCount: number | null;
|
|
260
|
-
cpuModel: string | null;
|
|
261
|
-
totalRam: string | null;
|
|
262
384
|
configProfile: {
|
|
263
385
|
activeConfigProfileUuid: string | null;
|
|
264
386
|
activeInbounds: {
|
|
@@ -278,6 +400,24 @@ export declare namespace EnableNodeCommand {
|
|
|
278
400
|
}, {
|
|
279
401
|
response: {
|
|
280
402
|
tags: string[];
|
|
403
|
+
system: {
|
|
404
|
+
stats: {
|
|
405
|
+
memoryFree: number;
|
|
406
|
+
uptime: number;
|
|
407
|
+
};
|
|
408
|
+
info: {
|
|
409
|
+
type: string;
|
|
410
|
+
version: string;
|
|
411
|
+
platform: string;
|
|
412
|
+
arch: string;
|
|
413
|
+
cpus: number;
|
|
414
|
+
cpuModel: string;
|
|
415
|
+
memoryTotal: number;
|
|
416
|
+
hostname: string;
|
|
417
|
+
release: string;
|
|
418
|
+
networkInterfaces: string[];
|
|
419
|
+
};
|
|
420
|
+
} | null;
|
|
281
421
|
uuid: string;
|
|
282
422
|
createdAt: string;
|
|
283
423
|
updatedAt: string;
|
|
@@ -309,9 +449,6 @@ export declare namespace EnableNodeCommand {
|
|
|
309
449
|
notifyPercent: number | null;
|
|
310
450
|
usersOnline: number | null;
|
|
311
451
|
consumptionMultiplier: number;
|
|
312
|
-
cpuCount: number | null;
|
|
313
|
-
cpuModel: string | null;
|
|
314
|
-
totalRam: string | null;
|
|
315
452
|
configProfile: {
|
|
316
453
|
activeConfigProfileUuid: string | null;
|
|
317
454
|
activeInbounds: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAgC,CAAC;IAC1C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAgC,CAAC;IAC1C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -27,9 +27,6 @@ export declare namespace ReorderNodeCommand {
|
|
|
27
27
|
countryCode: z.ZodString;
|
|
28
28
|
consumptionMultiplier: z.ZodNumber;
|
|
29
29
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
30
|
-
cpuCount: z.ZodNullable<z.ZodNumber>;
|
|
31
|
-
cpuModel: z.ZodNullable<z.ZodString>;
|
|
32
|
-
totalRam: z.ZodNullable<z.ZodString>;
|
|
33
30
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
34
31
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
35
32
|
configProfile: z.ZodObject<{
|
|
@@ -111,6 +108,86 @@ export declare namespace ReorderNodeCommand {
|
|
|
111
108
|
loginUrl: string | null;
|
|
112
109
|
}>>;
|
|
113
110
|
activePluginUuid: z.ZodNullable<z.ZodString>;
|
|
111
|
+
system: z.ZodNullable<z.ZodObject<{
|
|
112
|
+
info: z.ZodObject<{
|
|
113
|
+
arch: z.ZodString;
|
|
114
|
+
cpus: z.ZodNumber;
|
|
115
|
+
cpuModel: z.ZodString;
|
|
116
|
+
memoryTotal: z.ZodNumber;
|
|
117
|
+
hostname: z.ZodString;
|
|
118
|
+
platform: z.ZodString;
|
|
119
|
+
release: z.ZodString;
|
|
120
|
+
type: z.ZodString;
|
|
121
|
+
version: z.ZodString;
|
|
122
|
+
networkInterfaces: z.ZodArray<z.ZodString, "many">;
|
|
123
|
+
}, "strip", z.ZodTypeAny, {
|
|
124
|
+
type: string;
|
|
125
|
+
version: string;
|
|
126
|
+
platform: string;
|
|
127
|
+
arch: string;
|
|
128
|
+
cpus: number;
|
|
129
|
+
cpuModel: string;
|
|
130
|
+
memoryTotal: number;
|
|
131
|
+
hostname: string;
|
|
132
|
+
release: string;
|
|
133
|
+
networkInterfaces: string[];
|
|
134
|
+
}, {
|
|
135
|
+
type: string;
|
|
136
|
+
version: string;
|
|
137
|
+
platform: string;
|
|
138
|
+
arch: string;
|
|
139
|
+
cpus: number;
|
|
140
|
+
cpuModel: string;
|
|
141
|
+
memoryTotal: number;
|
|
142
|
+
hostname: string;
|
|
143
|
+
release: string;
|
|
144
|
+
networkInterfaces: string[];
|
|
145
|
+
}>;
|
|
146
|
+
stats: z.ZodObject<{
|
|
147
|
+
memoryFree: z.ZodNumber;
|
|
148
|
+
uptime: z.ZodNumber;
|
|
149
|
+
}, "strip", z.ZodTypeAny, {
|
|
150
|
+
memoryFree: number;
|
|
151
|
+
uptime: number;
|
|
152
|
+
}, {
|
|
153
|
+
memoryFree: number;
|
|
154
|
+
uptime: number;
|
|
155
|
+
}>;
|
|
156
|
+
}, "strip", z.ZodTypeAny, {
|
|
157
|
+
stats: {
|
|
158
|
+
memoryFree: number;
|
|
159
|
+
uptime: number;
|
|
160
|
+
};
|
|
161
|
+
info: {
|
|
162
|
+
type: string;
|
|
163
|
+
version: string;
|
|
164
|
+
platform: string;
|
|
165
|
+
arch: string;
|
|
166
|
+
cpus: number;
|
|
167
|
+
cpuModel: string;
|
|
168
|
+
memoryTotal: number;
|
|
169
|
+
hostname: string;
|
|
170
|
+
release: string;
|
|
171
|
+
networkInterfaces: string[];
|
|
172
|
+
};
|
|
173
|
+
}, {
|
|
174
|
+
stats: {
|
|
175
|
+
memoryFree: number;
|
|
176
|
+
uptime: number;
|
|
177
|
+
};
|
|
178
|
+
info: {
|
|
179
|
+
type: string;
|
|
180
|
+
version: string;
|
|
181
|
+
platform: string;
|
|
182
|
+
arch: string;
|
|
183
|
+
cpus: number;
|
|
184
|
+
cpuModel: string;
|
|
185
|
+
memoryTotal: number;
|
|
186
|
+
hostname: string;
|
|
187
|
+
release: string;
|
|
188
|
+
networkInterfaces: string[];
|
|
189
|
+
};
|
|
190
|
+
}>>;
|
|
114
191
|
}, "uuid" | "viewPosition">, "strip", z.ZodTypeAny, {
|
|
115
192
|
uuid: string;
|
|
116
193
|
viewPosition: number;
|
|
@@ -154,9 +231,6 @@ export declare namespace ReorderNodeCommand {
|
|
|
154
231
|
countryCode: z.ZodString;
|
|
155
232
|
consumptionMultiplier: z.ZodNumber;
|
|
156
233
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
157
|
-
cpuCount: z.ZodNullable<z.ZodNumber>;
|
|
158
|
-
cpuModel: z.ZodNullable<z.ZodString>;
|
|
159
|
-
totalRam: z.ZodNullable<z.ZodString>;
|
|
160
234
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
161
235
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
162
236
|
configProfile: z.ZodObject<{
|
|
@@ -238,8 +312,106 @@ export declare namespace ReorderNodeCommand {
|
|
|
238
312
|
loginUrl: string | null;
|
|
239
313
|
}>>;
|
|
240
314
|
activePluginUuid: z.ZodNullable<z.ZodString>;
|
|
315
|
+
system: z.ZodNullable<z.ZodObject<{
|
|
316
|
+
info: z.ZodObject<{
|
|
317
|
+
arch: z.ZodString;
|
|
318
|
+
cpus: z.ZodNumber;
|
|
319
|
+
cpuModel: z.ZodString;
|
|
320
|
+
memoryTotal: z.ZodNumber;
|
|
321
|
+
hostname: z.ZodString;
|
|
322
|
+
platform: z.ZodString;
|
|
323
|
+
release: z.ZodString;
|
|
324
|
+
type: z.ZodString;
|
|
325
|
+
version: z.ZodString;
|
|
326
|
+
networkInterfaces: z.ZodArray<z.ZodString, "many">;
|
|
327
|
+
}, "strip", z.ZodTypeAny, {
|
|
328
|
+
type: string;
|
|
329
|
+
version: string;
|
|
330
|
+
platform: string;
|
|
331
|
+
arch: string;
|
|
332
|
+
cpus: number;
|
|
333
|
+
cpuModel: string;
|
|
334
|
+
memoryTotal: number;
|
|
335
|
+
hostname: string;
|
|
336
|
+
release: string;
|
|
337
|
+
networkInterfaces: string[];
|
|
338
|
+
}, {
|
|
339
|
+
type: string;
|
|
340
|
+
version: string;
|
|
341
|
+
platform: string;
|
|
342
|
+
arch: string;
|
|
343
|
+
cpus: number;
|
|
344
|
+
cpuModel: string;
|
|
345
|
+
memoryTotal: number;
|
|
346
|
+
hostname: string;
|
|
347
|
+
release: string;
|
|
348
|
+
networkInterfaces: string[];
|
|
349
|
+
}>;
|
|
350
|
+
stats: z.ZodObject<{
|
|
351
|
+
memoryFree: z.ZodNumber;
|
|
352
|
+
uptime: z.ZodNumber;
|
|
353
|
+
}, "strip", z.ZodTypeAny, {
|
|
354
|
+
memoryFree: number;
|
|
355
|
+
uptime: number;
|
|
356
|
+
}, {
|
|
357
|
+
memoryFree: number;
|
|
358
|
+
uptime: number;
|
|
359
|
+
}>;
|
|
360
|
+
}, "strip", z.ZodTypeAny, {
|
|
361
|
+
stats: {
|
|
362
|
+
memoryFree: number;
|
|
363
|
+
uptime: number;
|
|
364
|
+
};
|
|
365
|
+
info: {
|
|
366
|
+
type: string;
|
|
367
|
+
version: string;
|
|
368
|
+
platform: string;
|
|
369
|
+
arch: string;
|
|
370
|
+
cpus: number;
|
|
371
|
+
cpuModel: string;
|
|
372
|
+
memoryTotal: number;
|
|
373
|
+
hostname: string;
|
|
374
|
+
release: string;
|
|
375
|
+
networkInterfaces: string[];
|
|
376
|
+
};
|
|
377
|
+
}, {
|
|
378
|
+
stats: {
|
|
379
|
+
memoryFree: number;
|
|
380
|
+
uptime: number;
|
|
381
|
+
};
|
|
382
|
+
info: {
|
|
383
|
+
type: string;
|
|
384
|
+
version: string;
|
|
385
|
+
platform: string;
|
|
386
|
+
arch: string;
|
|
387
|
+
cpus: number;
|
|
388
|
+
cpuModel: string;
|
|
389
|
+
memoryTotal: number;
|
|
390
|
+
hostname: string;
|
|
391
|
+
release: string;
|
|
392
|
+
networkInterfaces: string[];
|
|
393
|
+
};
|
|
394
|
+
}>>;
|
|
241
395
|
}, "strip", z.ZodTypeAny, {
|
|
242
396
|
tags: string[];
|
|
397
|
+
system: {
|
|
398
|
+
stats: {
|
|
399
|
+
memoryFree: number;
|
|
400
|
+
uptime: number;
|
|
401
|
+
};
|
|
402
|
+
info: {
|
|
403
|
+
type: string;
|
|
404
|
+
version: string;
|
|
405
|
+
platform: string;
|
|
406
|
+
arch: string;
|
|
407
|
+
cpus: number;
|
|
408
|
+
cpuModel: string;
|
|
409
|
+
memoryTotal: number;
|
|
410
|
+
hostname: string;
|
|
411
|
+
release: string;
|
|
412
|
+
networkInterfaces: string[];
|
|
413
|
+
};
|
|
414
|
+
} | null;
|
|
243
415
|
uuid: string;
|
|
244
416
|
createdAt: Date;
|
|
245
417
|
updatedAt: Date;
|
|
@@ -271,9 +443,6 @@ export declare namespace ReorderNodeCommand {
|
|
|
271
443
|
notifyPercent: number | null;
|
|
272
444
|
usersOnline: number | null;
|
|
273
445
|
consumptionMultiplier: number;
|
|
274
|
-
cpuCount: number | null;
|
|
275
|
-
cpuModel: string | null;
|
|
276
|
-
totalRam: string | null;
|
|
277
446
|
configProfile: {
|
|
278
447
|
activeConfigProfileUuid: string | null;
|
|
279
448
|
activeInbounds: {
|
|
@@ -291,6 +460,24 @@ export declare namespace ReorderNodeCommand {
|
|
|
291
460
|
activePluginUuid: string | null;
|
|
292
461
|
}, {
|
|
293
462
|
tags: string[];
|
|
463
|
+
system: {
|
|
464
|
+
stats: {
|
|
465
|
+
memoryFree: number;
|
|
466
|
+
uptime: number;
|
|
467
|
+
};
|
|
468
|
+
info: {
|
|
469
|
+
type: string;
|
|
470
|
+
version: string;
|
|
471
|
+
platform: string;
|
|
472
|
+
arch: string;
|
|
473
|
+
cpus: number;
|
|
474
|
+
cpuModel: string;
|
|
475
|
+
memoryTotal: number;
|
|
476
|
+
hostname: string;
|
|
477
|
+
release: string;
|
|
478
|
+
networkInterfaces: string[];
|
|
479
|
+
};
|
|
480
|
+
} | null;
|
|
294
481
|
uuid: string;
|
|
295
482
|
createdAt: string;
|
|
296
483
|
updatedAt: string;
|
|
@@ -322,9 +509,6 @@ export declare namespace ReorderNodeCommand {
|
|
|
322
509
|
notifyPercent: number | null;
|
|
323
510
|
usersOnline: number | null;
|
|
324
511
|
consumptionMultiplier: number;
|
|
325
|
-
cpuCount: number | null;
|
|
326
|
-
cpuModel: string | null;
|
|
327
|
-
totalRam: string | null;
|
|
328
512
|
configProfile: {
|
|
329
513
|
activeConfigProfileUuid: string | null;
|
|
330
514
|
activeInbounds: {
|
|
@@ -344,6 +528,24 @@ export declare namespace ReorderNodeCommand {
|
|
|
344
528
|
}, "strip", z.ZodTypeAny, {
|
|
345
529
|
response: {
|
|
346
530
|
tags: string[];
|
|
531
|
+
system: {
|
|
532
|
+
stats: {
|
|
533
|
+
memoryFree: number;
|
|
534
|
+
uptime: number;
|
|
535
|
+
};
|
|
536
|
+
info: {
|
|
537
|
+
type: string;
|
|
538
|
+
version: string;
|
|
539
|
+
platform: string;
|
|
540
|
+
arch: string;
|
|
541
|
+
cpus: number;
|
|
542
|
+
cpuModel: string;
|
|
543
|
+
memoryTotal: number;
|
|
544
|
+
hostname: string;
|
|
545
|
+
release: string;
|
|
546
|
+
networkInterfaces: string[];
|
|
547
|
+
};
|
|
548
|
+
} | null;
|
|
347
549
|
uuid: string;
|
|
348
550
|
createdAt: Date;
|
|
349
551
|
updatedAt: Date;
|
|
@@ -375,9 +577,6 @@ export declare namespace ReorderNodeCommand {
|
|
|
375
577
|
notifyPercent: number | null;
|
|
376
578
|
usersOnline: number | null;
|
|
377
579
|
consumptionMultiplier: number;
|
|
378
|
-
cpuCount: number | null;
|
|
379
|
-
cpuModel: string | null;
|
|
380
|
-
totalRam: string | null;
|
|
381
580
|
configProfile: {
|
|
382
581
|
activeConfigProfileUuid: string | null;
|
|
383
582
|
activeInbounds: {
|
|
@@ -397,6 +596,24 @@ export declare namespace ReorderNodeCommand {
|
|
|
397
596
|
}, {
|
|
398
597
|
response: {
|
|
399
598
|
tags: string[];
|
|
599
|
+
system: {
|
|
600
|
+
stats: {
|
|
601
|
+
memoryFree: number;
|
|
602
|
+
uptime: number;
|
|
603
|
+
};
|
|
604
|
+
info: {
|
|
605
|
+
type: string;
|
|
606
|
+
version: string;
|
|
607
|
+
platform: string;
|
|
608
|
+
arch: string;
|
|
609
|
+
cpus: number;
|
|
610
|
+
cpuModel: string;
|
|
611
|
+
memoryTotal: number;
|
|
612
|
+
hostname: string;
|
|
613
|
+
release: string;
|
|
614
|
+
networkInterfaces: string[];
|
|
615
|
+
};
|
|
616
|
+
} | null;
|
|
400
617
|
uuid: string;
|
|
401
618
|
createdAt: string;
|
|
402
619
|
updatedAt: string;
|
|
@@ -428,9 +645,6 @@ export declare namespace ReorderNodeCommand {
|
|
|
428
645
|
notifyPercent: number | null;
|
|
429
646
|
usersOnline: number | null;
|
|
430
647
|
consumptionMultiplier: number;
|
|
431
|
-
cpuCount: number | null;
|
|
432
|
-
cpuModel: string | null;
|
|
433
|
-
totalRam: string | null;
|
|
434
648
|
configProfile: {
|
|
435
649
|
activeConfigProfileUuid: string | null;
|
|
436
650
|
activeInbounds: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,8BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,8BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOxB,CAAC;IACH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|