@remnawave/backend-contract 2.3.67 → 2.3.69

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 (117) hide show
  1. package/build/backend/api/controllers/bandwidth-stats.d.ts +24 -0
  2. package/build/backend/api/controllers/bandwidth-stats.d.ts.map +1 -0
  3. package/build/backend/api/controllers/bandwidth-stats.js +36 -0
  4. package/build/backend/api/controllers/index.d.ts +1 -0
  5. package/build/backend/api/controllers/index.d.ts.map +1 -1
  6. package/build/backend/api/controllers/index.js +1 -0
  7. package/build/backend/api/controllers/nodes.d.ts +0 -5
  8. package/build/backend/api/controllers/nodes.d.ts.map +1 -1
  9. package/build/backend/api/controllers/nodes.js +0 -5
  10. package/build/backend/api/controllers/users.d.ts +0 -3
  11. package/build/backend/api/controllers/users.d.ts.map +1 -1
  12. package/build/backend/api/controllers/users.js +0 -3
  13. package/build/backend/api/controllers-info.d.ts +8 -12
  14. package/build/backend/api/controllers-info.d.ts.map +1 -1
  15. package/build/backend/api/controllers-info.js +8 -12
  16. package/build/backend/api/routes.d.ts +18 -8
  17. package/build/backend/api/routes.d.ts.map +1 -1
  18. package/build/backend/api/routes.js +18 -8
  19. package/build/backend/commands/bandwidth-stats/index.d.ts +4 -0
  20. package/build/backend/commands/bandwidth-stats/index.d.ts.map +1 -0
  21. package/build/{frontend/commands/nodes/stats → backend/commands/bandwidth-stats}/index.js +3 -3
  22. package/build/backend/commands/{nodes/stats/get-node-user-usage-by-range.command.d.ts → bandwidth-stats/legacy/get-legacy-stats-node-user-usage.command.d.ts} +2 -2
  23. package/build/backend/commands/bandwidth-stats/legacy/get-legacy-stats-node-user-usage.command.d.ts.map +1 -0
  24. package/build/backend/commands/bandwidth-stats/legacy/get-legacy-stats-node-user-usage.command.js +28 -0
  25. package/build/backend/commands/{users/get-user-usage-by-range.command.d.ts → bandwidth-stats/legacy/get-legacy-user-usage.command.d.ts} +11 -11
  26. package/build/backend/commands/bandwidth-stats/legacy/get-legacy-user-usage.command.d.ts.map +1 -0
  27. package/build/backend/commands/bandwidth-stats/legacy/get-legacy-user-usage.command.js +29 -0
  28. package/build/backend/commands/bandwidth-stats/legacy/index.d.ts +3 -0
  29. package/build/backend/commands/bandwidth-stats/legacy/index.d.ts.map +1 -0
  30. package/build/backend/commands/{nodes/stats → bandwidth-stats/legacy}/index.js +2 -3
  31. package/build/backend/commands/{nodes/stats/get-realtime-usage.command.d.ts → bandwidth-stats/nodes/get-stats-nodes-realtime-usage.command.d.ts} +8 -8
  32. package/build/backend/commands/bandwidth-stats/nodes/get-stats-nodes-realtime-usage.command.d.ts.map +1 -0
  33. package/build/backend/commands/bandwidth-stats/nodes/get-stats-nodes-realtime-usage.command.js +25 -0
  34. package/build/backend/commands/{nodes/stats/get-nodes-usage-by-range.command.d.ts → bandwidth-stats/nodes/get-stats-nodes-usage.command.d.ts} +28 -28
  35. package/build/backend/commands/bandwidth-stats/nodes/get-stats-nodes-usage.command.d.ts.map +1 -0
  36. package/build/backend/commands/{nodes/stats/get-nodes-usage-by-range.command.js → bandwidth-stats/nodes/get-stats-nodes-usage.command.js} +10 -10
  37. package/build/backend/commands/bandwidth-stats/nodes/index.d.ts +3 -0
  38. package/build/backend/commands/bandwidth-stats/nodes/index.d.ts.map +1 -0
  39. package/build/backend/commands/bandwidth-stats/nodes/index.js +18 -0
  40. package/build/backend/commands/bandwidth-stats/users/get-stats-user-usage.command.d.ts +150 -0
  41. package/build/backend/commands/bandwidth-stats/users/get-stats-user-usage.command.d.ts.map +1 -0
  42. package/build/backend/commands/bandwidth-stats/users/get-stats-user-usage.command.js +40 -0
  43. package/build/backend/commands/bandwidth-stats/users/index.d.ts +2 -0
  44. package/build/backend/commands/bandwidth-stats/users/index.d.ts.map +1 -0
  45. package/build/backend/commands/bandwidth-stats/users/index.js +17 -0
  46. package/build/backend/commands/config-profiles/actions/reorder.command.d.ts +34 -34
  47. package/build/backend/commands/config-profiles/create-config-profile.command.d.ts +22 -22
  48. package/build/backend/commands/config-profiles/get-computed-config-profile-by-uuid.command.d.ts +22 -22
  49. package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts +22 -22
  50. package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts +32 -32
  51. package/build/backend/commands/config-profiles/update-config-profile.command.d.ts +22 -22
  52. package/build/backend/commands/index.d.ts +1 -0
  53. package/build/backend/commands/index.d.ts.map +1 -1
  54. package/build/backend/commands/index.js +1 -0
  55. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +16 -16
  56. package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts +12 -12
  57. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +16 -16
  58. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +16 -16
  59. package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts +12 -12
  60. package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts +16 -16
  61. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +16 -16
  62. package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts +12 -12
  63. package/build/backend/commands/internal-squads/get-internal-squad-accessible-nodes.command.d.ts +6 -6
  64. package/build/backend/commands/nodes/actions/disable.command.d.ts +4 -4
  65. package/build/backend/commands/nodes/actions/enable.command.d.ts +4 -4
  66. package/build/backend/commands/nodes/actions/reorder.command.d.ts +4 -4
  67. package/build/backend/commands/nodes/create.command.d.ts +6 -6
  68. package/build/backend/commands/nodes/get-all.command.d.ts +4 -4
  69. package/build/backend/commands/nodes/get-one.command.d.ts +4 -4
  70. package/build/backend/commands/nodes/index.d.ts +0 -1
  71. package/build/backend/commands/nodes/index.d.ts.map +1 -1
  72. package/build/backend/commands/nodes/index.js +0 -1
  73. package/build/backend/commands/nodes/update.command.d.ts +6 -6
  74. package/build/backend/commands/subscription-template/actions/reorder.command.d.ts +4 -4
  75. package/build/backend/commands/subscription-template/get-templates.command.d.ts +4 -4
  76. package/build/backend/commands/system/get-nodes-metrics.command.d.ts +6 -6
  77. package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts +6 -6
  78. package/build/backend/commands/users/index.d.ts +0 -1
  79. package/build/backend/commands/users/index.d.ts.map +1 -1
  80. package/build/backend/commands/users/index.js +0 -1
  81. package/build/backend/models/config-profile.schema.d.ts +12 -12
  82. package/build/backend/models/infra-billing-available-node.schema.d.ts +3 -3
  83. package/build/backend/models/infra-billing-node.schema.d.ts +5 -5
  84. package/build/backend/models/infra-provider.schema.d.ts +8 -8
  85. package/build/backend/models/last-connected-node.schema.d.ts +2 -2
  86. package/build/backend/models/nodes.schema.d.ts +2 -2
  87. package/build/frontend/api/controllers/bandwidth-stats.js +36 -0
  88. package/build/frontend/api/controllers/index.js +1 -0
  89. package/build/frontend/api/controllers/nodes.js +0 -5
  90. package/build/frontend/api/controllers/users.js +0 -3
  91. package/build/frontend/api/controllers-info.js +8 -12
  92. package/build/frontend/api/routes.js +18 -8
  93. package/build/frontend/commands/bandwidth-stats/index.js +19 -0
  94. package/build/frontend/commands/bandwidth-stats/legacy/get-legacy-stats-node-user-usage.command.js +28 -0
  95. package/build/frontend/commands/bandwidth-stats/legacy/get-legacy-user-usage.command.js +29 -0
  96. package/build/frontend/commands/bandwidth-stats/legacy/index.js +18 -0
  97. package/build/frontend/commands/bandwidth-stats/nodes/get-stats-nodes-realtime-usage.command.js +25 -0
  98. package/build/frontend/commands/{nodes/stats/get-nodes-usage-by-range.command.js → bandwidth-stats/nodes/get-stats-nodes-usage.command.js} +10 -10
  99. package/build/frontend/commands/bandwidth-stats/nodes/index.js +18 -0
  100. package/build/frontend/commands/bandwidth-stats/users/get-stats-user-usage.command.js +40 -0
  101. package/build/frontend/commands/bandwidth-stats/users/index.js +17 -0
  102. package/build/frontend/commands/index.js +1 -0
  103. package/build/frontend/commands/nodes/index.js +0 -1
  104. package/build/frontend/commands/users/index.js +0 -1
  105. package/package.json +1 -1
  106. package/build/backend/commands/nodes/stats/get-node-user-usage-by-range.command.d.ts.map +0 -1
  107. package/build/backend/commands/nodes/stats/get-node-user-usage-by-range.command.js +0 -28
  108. package/build/backend/commands/nodes/stats/get-nodes-usage-by-range.command.d.ts.map +0 -1
  109. package/build/backend/commands/nodes/stats/get-realtime-usage.command.d.ts.map +0 -1
  110. package/build/backend/commands/nodes/stats/get-realtime-usage.command.js +0 -25
  111. package/build/backend/commands/nodes/stats/index.d.ts +0 -4
  112. package/build/backend/commands/nodes/stats/index.d.ts.map +0 -1
  113. package/build/backend/commands/users/get-user-usage-by-range.command.d.ts.map +0 -1
  114. package/build/backend/commands/users/get-user-usage-by-range.command.js +0 -29
  115. package/build/frontend/commands/nodes/stats/get-node-user-usage-by-range.command.js +0 -28
  116. package/build/frontend/commands/nodes/stats/get-realtime-usage.command.js +0 -25
  117. package/build/frontend/commands/users/get-user-usage-by-range.command.js +0 -29
@@ -145,14 +145,14 @@ export declare namespace UpdateInfraBillingNodeCommand {
145
145
  faviconLink: string | null;
146
146
  loginUrl: string | null;
147
147
  }>>;
148
- }, "uuid" | "name" | "countryCode">, "strip", z.ZodTypeAny, {
148
+ }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
149
149
  uuid: string;
150
- name: string;
151
150
  countryCode: string;
151
+ name: string;
152
152
  }, {
153
153
  uuid: string;
154
- name: string;
155
154
  countryCode: string;
155
+ name: string;
156
156
  }>;
157
157
  nextBillingAt: z.ZodEffects<z.ZodString, Date, string>;
158
158
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
@@ -171,8 +171,8 @@ export declare namespace UpdateInfraBillingNodeCommand {
171
171
  providerUuid: string;
172
172
  node: {
173
173
  uuid: string;
174
- name: string;
175
174
  countryCode: string;
175
+ name: string;
176
176
  };
177
177
  nextBillingAt: Date;
178
178
  }, {
@@ -189,8 +189,8 @@ export declare namespace UpdateInfraBillingNodeCommand {
189
189
  providerUuid: string;
190
190
  node: {
191
191
  uuid: string;
192
- name: string;
193
192
  countryCode: string;
193
+ name: string;
194
194
  };
195
195
  nextBillingAt: string;
196
196
  }>, "many">;
@@ -300,14 +300,14 @@ export declare namespace UpdateInfraBillingNodeCommand {
300
300
  faviconLink: string | null;
301
301
  loginUrl: string | null;
302
302
  }>>;
303
- }, "uuid" | "name" | "countryCode">, "strip", z.ZodTypeAny, {
303
+ }, "uuid" | "countryCode" | "name">, "strip", z.ZodTypeAny, {
304
304
  uuid: string;
305
- name: string;
306
305
  countryCode: string;
306
+ name: string;
307
307
  }, {
308
308
  uuid: string;
309
- name: string;
310
309
  countryCode: string;
310
+ name: string;
311
311
  }>, "many">;
312
312
  totalAvailableBillingNodes: z.ZodNumber;
313
313
  stats: z.ZodObject<{
@@ -343,16 +343,16 @@ export declare namespace UpdateInfraBillingNodeCommand {
343
343
  providerUuid: string;
344
344
  node: {
345
345
  uuid: string;
346
- name: string;
347
346
  countryCode: string;
347
+ name: string;
348
348
  };
349
349
  nextBillingAt: Date;
350
350
  }[];
351
351
  totalBillingNodes: number;
352
352
  availableBillingNodes: {
353
353
  uuid: string;
354
- name: string;
355
354
  countryCode: string;
355
+ name: string;
356
356
  }[];
357
357
  totalAvailableBillingNodes: number;
358
358
  }, {
@@ -375,16 +375,16 @@ export declare namespace UpdateInfraBillingNodeCommand {
375
375
  providerUuid: string;
376
376
  node: {
377
377
  uuid: string;
378
- name: string;
379
378
  countryCode: string;
379
+ name: string;
380
380
  };
381
381
  nextBillingAt: string;
382
382
  }[];
383
383
  totalBillingNodes: number;
384
384
  availableBillingNodes: {
385
385
  uuid: string;
386
- name: string;
387
386
  countryCode: string;
387
+ name: string;
388
388
  }[];
389
389
  totalAvailableBillingNodes: number;
390
390
  }>;
@@ -409,16 +409,16 @@ export declare namespace UpdateInfraBillingNodeCommand {
409
409
  providerUuid: string;
410
410
  node: {
411
411
  uuid: string;
412
- name: string;
413
412
  countryCode: string;
413
+ name: string;
414
414
  };
415
415
  nextBillingAt: Date;
416
416
  }[];
417
417
  totalBillingNodes: number;
418
418
  availableBillingNodes: {
419
419
  uuid: string;
420
- name: string;
421
420
  countryCode: string;
421
+ name: string;
422
422
  }[];
423
423
  totalAvailableBillingNodes: number;
424
424
  };
@@ -443,16 +443,16 @@ export declare namespace UpdateInfraBillingNodeCommand {
443
443
  providerUuid: string;
444
444
  node: {
445
445
  uuid: string;
446
- name: string;
447
446
  countryCode: string;
447
+ name: string;
448
448
  };
449
449
  nextBillingAt: string;
450
450
  }[];
451
451
  totalBillingNodes: number;
452
452
  availableBillingNodes: {
453
453
  uuid: string;
454
- name: string;
455
454
  countryCode: string;
455
+ name: string;
456
456
  }[];
457
457
  totalAvailableBillingNodes: number;
458
458
  };
@@ -43,13 +43,13 @@ export declare namespace UpdateInfraProviderCommand {
43
43
  name: z.ZodString;
44
44
  countryCode: z.ZodString;
45
45
  }, "strip", z.ZodTypeAny, {
46
- name: string;
47
- countryCode: string;
48
46
  nodeUuid: string;
49
- }, {
50
- name: string;
51
47
  countryCode: string;
48
+ name: string;
49
+ }, {
52
50
  nodeUuid: string;
51
+ countryCode: string;
52
+ name: string;
53
53
  }>, "many">;
54
54
  }, "strip", z.ZodTypeAny, {
55
55
  uuid: string;
@@ -63,9 +63,9 @@ export declare namespace UpdateInfraProviderCommand {
63
63
  totalBills: number;
64
64
  };
65
65
  billingNodes: {
66
- name: string;
67
- countryCode: string;
68
66
  nodeUuid: string;
67
+ countryCode: string;
68
+ name: string;
69
69
  }[];
70
70
  }, {
71
71
  uuid: string;
@@ -79,9 +79,9 @@ export declare namespace UpdateInfraProviderCommand {
79
79
  totalBills: number;
80
80
  };
81
81
  billingNodes: {
82
- name: string;
83
- countryCode: string;
84
82
  nodeUuid: string;
83
+ countryCode: string;
84
+ name: string;
85
85
  }[];
86
86
  }>;
87
87
  }, "strip", z.ZodTypeAny, {
@@ -97,9 +97,9 @@ export declare namespace UpdateInfraProviderCommand {
97
97
  totalBills: number;
98
98
  };
99
99
  billingNodes: {
100
- name: string;
101
- countryCode: string;
102
100
  nodeUuid: string;
101
+ countryCode: string;
102
+ name: string;
103
103
  }[];
104
104
  };
105
105
  }, {
@@ -115,9 +115,9 @@ export declare namespace UpdateInfraProviderCommand {
115
115
  totalBills: number;
116
116
  };
117
117
  billingNodes: {
118
- name: string;
119
- countryCode: string;
120
118
  nodeUuid: string;
119
+ countryCode: string;
120
+ name: string;
121
121
  }[];
122
122
  };
123
123
  }>;
@@ -23,37 +23,37 @@ export declare namespace GetInternalSquadAccessibleNodesCommand {
23
23
  activeInbounds: z.ZodArray<z.ZodString, "many">;
24
24
  }, "strip", z.ZodTypeAny, {
25
25
  uuid: string;
26
+ nodeName: string;
26
27
  countryCode: string;
27
28
  configProfileUuid: string;
28
29
  activeInbounds: string[];
29
- nodeName: string;
30
30
  configProfileName: string;
31
31
  }, {
32
32
  uuid: string;
33
+ nodeName: string;
33
34
  countryCode: string;
34
35
  configProfileUuid: string;
35
36
  activeInbounds: string[];
36
- nodeName: string;
37
37
  configProfileName: string;
38
38
  }>, "many">;
39
39
  }, "strip", z.ZodTypeAny, {
40
40
  squadUuid: string;
41
41
  accessibleNodes: {
42
42
  uuid: string;
43
+ nodeName: string;
43
44
  countryCode: string;
44
45
  configProfileUuid: string;
45
46
  activeInbounds: string[];
46
- nodeName: string;
47
47
  configProfileName: string;
48
48
  }[];
49
49
  }, {
50
50
  squadUuid: string;
51
51
  accessibleNodes: {
52
52
  uuid: string;
53
+ nodeName: string;
53
54
  countryCode: string;
54
55
  configProfileUuid: string;
55
56
  activeInbounds: string[];
56
- nodeName: string;
57
57
  configProfileName: string;
58
58
  }[];
59
59
  }>;
@@ -62,10 +62,10 @@ export declare namespace GetInternalSquadAccessibleNodesCommand {
62
62
  squadUuid: string;
63
63
  accessibleNodes: {
64
64
  uuid: string;
65
+ nodeName: string;
65
66
  countryCode: string;
66
67
  configProfileUuid: string;
67
68
  activeInbounds: string[];
68
- nodeName: string;
69
69
  configProfileName: string;
70
70
  }[];
71
71
  };
@@ -74,10 +74,10 @@ export declare namespace GetInternalSquadAccessibleNodesCommand {
74
74
  squadUuid: string;
75
75
  accessibleNodes: {
76
76
  uuid: string;
77
+ nodeName: string;
77
78
  countryCode: string;
78
79
  configProfileUuid: string;
79
80
  activeInbounds: string[];
80
- nodeName: string;
81
81
  configProfileName: string;
82
82
  }[];
83
83
  };
@@ -131,10 +131,10 @@ export declare namespace DisableNodeCommand {
131
131
  faviconLink: string | null;
132
132
  loginUrl: string | null;
133
133
  } | null;
134
+ countryCode: string;
134
135
  name: string;
135
136
  port: number | null;
136
137
  viewPosition: number;
137
- countryCode: string;
138
138
  trafficLimitBytes: number | null;
139
139
  address: string;
140
140
  isDisabled: boolean;
@@ -181,10 +181,10 @@ export declare namespace DisableNodeCommand {
181
181
  faviconLink: string | null;
182
182
  loginUrl: string | null;
183
183
  } | null;
184
+ countryCode: string;
184
185
  name: string;
185
186
  port: number | null;
186
187
  viewPosition: number;
187
- countryCode: string;
188
188
  trafficLimitBytes: number | null;
189
189
  address: string;
190
190
  isDisabled: boolean;
@@ -233,10 +233,10 @@ export declare namespace DisableNodeCommand {
233
233
  faviconLink: string | null;
234
234
  loginUrl: string | null;
235
235
  } | null;
236
+ countryCode: string;
236
237
  name: string;
237
238
  port: number | null;
238
239
  viewPosition: number;
239
- countryCode: string;
240
240
  trafficLimitBytes: number | null;
241
241
  address: string;
242
242
  isDisabled: boolean;
@@ -285,10 +285,10 @@ export declare namespace DisableNodeCommand {
285
285
  faviconLink: string | null;
286
286
  loginUrl: string | null;
287
287
  } | null;
288
+ countryCode: string;
288
289
  name: string;
289
290
  port: number | null;
290
291
  viewPosition: number;
291
- countryCode: string;
292
292
  trafficLimitBytes: number | null;
293
293
  address: string;
294
294
  isDisabled: boolean;
@@ -131,10 +131,10 @@ export declare namespace EnableNodeCommand {
131
131
  faviconLink: string | null;
132
132
  loginUrl: string | null;
133
133
  } | null;
134
+ countryCode: string;
134
135
  name: string;
135
136
  port: number | null;
136
137
  viewPosition: number;
137
- countryCode: string;
138
138
  trafficLimitBytes: number | null;
139
139
  address: string;
140
140
  isDisabled: boolean;
@@ -181,10 +181,10 @@ export declare namespace EnableNodeCommand {
181
181
  faviconLink: string | null;
182
182
  loginUrl: string | null;
183
183
  } | null;
184
+ countryCode: string;
184
185
  name: string;
185
186
  port: number | null;
186
187
  viewPosition: number;
187
- countryCode: string;
188
188
  trafficLimitBytes: number | null;
189
189
  address: string;
190
190
  isDisabled: boolean;
@@ -233,10 +233,10 @@ export declare namespace EnableNodeCommand {
233
233
  faviconLink: string | null;
234
234
  loginUrl: string | null;
235
235
  } | null;
236
+ countryCode: string;
236
237
  name: string;
237
238
  port: number | null;
238
239
  viewPosition: number;
239
- countryCode: string;
240
240
  trafficLimitBytes: number | null;
241
241
  address: string;
242
242
  isDisabled: boolean;
@@ -285,10 +285,10 @@ export declare namespace EnableNodeCommand {
285
285
  faviconLink: string | null;
286
286
  loginUrl: string | null;
287
287
  } | null;
288
+ countryCode: string;
288
289
  name: string;
289
290
  port: number | null;
290
291
  viewPosition: number;
291
- countryCode: string;
292
292
  trafficLimitBytes: number | null;
293
293
  address: string;
294
294
  isDisabled: boolean;
@@ -249,10 +249,10 @@ export declare namespace ReorderNodeCommand {
249
249
  faviconLink: string | null;
250
250
  loginUrl: string | null;
251
251
  } | null;
252
+ countryCode: string;
252
253
  name: string;
253
254
  port: number | null;
254
255
  viewPosition: number;
255
- countryCode: string;
256
256
  trafficLimitBytes: number | null;
257
257
  address: string;
258
258
  isDisabled: boolean;
@@ -299,10 +299,10 @@ export declare namespace ReorderNodeCommand {
299
299
  faviconLink: string | null;
300
300
  loginUrl: string | null;
301
301
  } | null;
302
+ countryCode: string;
302
303
  name: string;
303
304
  port: number | null;
304
305
  viewPosition: number;
305
- countryCode: string;
306
306
  trafficLimitBytes: number | null;
307
307
  address: string;
308
308
  isDisabled: boolean;
@@ -351,10 +351,10 @@ export declare namespace ReorderNodeCommand {
351
351
  faviconLink: string | null;
352
352
  loginUrl: string | null;
353
353
  } | null;
354
+ countryCode: string;
354
355
  name: string;
355
356
  port: number | null;
356
357
  viewPosition: number;
357
- countryCode: string;
358
358
  trafficLimitBytes: number | null;
359
359
  address: string;
360
360
  isDisabled: boolean;
@@ -403,10 +403,10 @@ export declare namespace ReorderNodeCommand {
403
403
  faviconLink: string | null;
404
404
  loginUrl: string | null;
405
405
  } | null;
406
+ countryCode: string;
406
407
  name: string;
407
408
  port: number | null;
408
409
  viewPosition: number;
409
- countryCode: string;
410
410
  trafficLimitBytes: number | null;
411
411
  address: string;
412
412
  isDisabled: boolean;
@@ -26,8 +26,8 @@ export declare namespace CreateNodeCommand {
26
26
  providerUuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
27
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28
28
  }, "strip", z.ZodTypeAny, {
29
- name: string;
30
29
  countryCode: string;
30
+ name: string;
31
31
  address: string;
32
32
  isTrafficTrackingActive: boolean;
33
33
  configProfile: {
@@ -49,8 +49,8 @@ export declare namespace CreateNodeCommand {
49
49
  activeInbounds: string[];
50
50
  };
51
51
  tags?: string[] | undefined;
52
- port?: number | undefined;
53
52
  countryCode?: string | undefined;
53
+ port?: number | undefined;
54
54
  trafficLimitBytes?: number | undefined;
55
55
  isTrafficTrackingActive?: boolean | undefined;
56
56
  trafficResetDay?: number | undefined;
@@ -179,10 +179,10 @@ export declare namespace CreateNodeCommand {
179
179
  faviconLink: string | null;
180
180
  loginUrl: string | null;
181
181
  } | null;
182
+ countryCode: string;
182
183
  name: string;
183
184
  port: number | null;
184
185
  viewPosition: number;
185
- countryCode: string;
186
186
  trafficLimitBytes: number | null;
187
187
  address: string;
188
188
  isDisabled: boolean;
@@ -229,10 +229,10 @@ export declare namespace CreateNodeCommand {
229
229
  faviconLink: string | null;
230
230
  loginUrl: string | null;
231
231
  } | null;
232
+ countryCode: string;
232
233
  name: string;
233
234
  port: number | null;
234
235
  viewPosition: number;
235
- countryCode: string;
236
236
  trafficLimitBytes: number | null;
237
237
  address: string;
238
238
  isDisabled: boolean;
@@ -281,10 +281,10 @@ export declare namespace CreateNodeCommand {
281
281
  faviconLink: string | null;
282
282
  loginUrl: string | null;
283
283
  } | null;
284
+ countryCode: string;
284
285
  name: string;
285
286
  port: number | null;
286
287
  viewPosition: number;
287
- countryCode: string;
288
288
  trafficLimitBytes: number | null;
289
289
  address: string;
290
290
  isDisabled: boolean;
@@ -333,10 +333,10 @@ export declare namespace CreateNodeCommand {
333
333
  faviconLink: string | null;
334
334
  loginUrl: string | null;
335
335
  } | null;
336
+ countryCode: string;
336
337
  name: string;
337
338
  port: number | null;
338
339
  viewPosition: number;
339
- countryCode: string;
340
340
  trafficLimitBytes: number | null;
341
341
  address: string;
342
342
  isDisabled: boolean;
@@ -123,10 +123,10 @@ export declare namespace GetAllNodesCommand {
123
123
  faviconLink: string | null;
124
124
  loginUrl: string | null;
125
125
  } | null;
126
+ countryCode: string;
126
127
  name: string;
127
128
  port: number | null;
128
129
  viewPosition: number;
129
- countryCode: string;
130
130
  trafficLimitBytes: number | null;
131
131
  address: string;
132
132
  isDisabled: boolean;
@@ -173,10 +173,10 @@ export declare namespace GetAllNodesCommand {
173
173
  faviconLink: string | null;
174
174
  loginUrl: string | null;
175
175
  } | null;
176
+ countryCode: string;
176
177
  name: string;
177
178
  port: number | null;
178
179
  viewPosition: number;
179
- countryCode: string;
180
180
  trafficLimitBytes: number | null;
181
181
  address: string;
182
182
  isDisabled: boolean;
@@ -225,10 +225,10 @@ export declare namespace GetAllNodesCommand {
225
225
  faviconLink: string | null;
226
226
  loginUrl: string | null;
227
227
  } | null;
228
+ countryCode: string;
228
229
  name: string;
229
230
  port: number | null;
230
231
  viewPosition: number;
231
- countryCode: string;
232
232
  trafficLimitBytes: number | null;
233
233
  address: string;
234
234
  isDisabled: boolean;
@@ -277,10 +277,10 @@ export declare namespace GetAllNodesCommand {
277
277
  faviconLink: string | null;
278
278
  loginUrl: string | null;
279
279
  } | null;
280
+ countryCode: string;
280
281
  name: string;
281
282
  port: number | null;
282
283
  viewPosition: number;
283
- countryCode: string;
284
284
  trafficLimitBytes: number | null;
285
285
  address: string;
286
286
  isDisabled: boolean;
@@ -131,10 +131,10 @@ export declare namespace GetOneNodeCommand {
131
131
  faviconLink: string | null;
132
132
  loginUrl: string | null;
133
133
  } | null;
134
+ countryCode: string;
134
135
  name: string;
135
136
  port: number | null;
136
137
  viewPosition: number;
137
- countryCode: string;
138
138
  trafficLimitBytes: number | null;
139
139
  address: string;
140
140
  isDisabled: boolean;
@@ -181,10 +181,10 @@ export declare namespace GetOneNodeCommand {
181
181
  faviconLink: string | null;
182
182
  loginUrl: string | null;
183
183
  } | null;
184
+ countryCode: string;
184
185
  name: string;
185
186
  port: number | null;
186
187
  viewPosition: number;
187
- countryCode: string;
188
188
  trafficLimitBytes: number | null;
189
189
  address: string;
190
190
  isDisabled: boolean;
@@ -233,10 +233,10 @@ export declare namespace GetOneNodeCommand {
233
233
  faviconLink: string | null;
234
234
  loginUrl: string | null;
235
235
  } | null;
236
+ countryCode: string;
236
237
  name: string;
237
238
  port: number | null;
238
239
  viewPosition: number;
239
- countryCode: string;
240
240
  trafficLimitBytes: number | null;
241
241
  address: string;
242
242
  isDisabled: boolean;
@@ -285,10 +285,10 @@ export declare namespace GetOneNodeCommand {
285
285
  faviconLink: string | null;
286
286
  loginUrl: string | null;
287
287
  } | null;
288
+ countryCode: string;
288
289
  name: string;
289
290
  port: number | null;
290
291
  viewPosition: number;
291
- countryCode: string;
292
292
  trafficLimitBytes: number | null;
293
293
  address: string;
294
294
  isDisabled: boolean;
@@ -4,7 +4,6 @@ export * from './create.command';
4
4
  export * from './delete.command';
5
5
  export * from './get-all.command';
6
6
  export * from './get-one.command';
7
- export * from './stats';
8
7
  export * from './tags';
9
8
  export * from './update.command';
10
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC"}
@@ -20,6 +20,5 @@ __exportStar(require("./create.command"), exports);
20
20
  __exportStar(require("./delete.command"), exports);
21
21
  __exportStar(require("./get-all.command"), exports);
22
22
  __exportStar(require("./get-one.command"), exports);
23
- __exportStar(require("./stats"), exports);
24
23
  __exportStar(require("./tags"), exports);
25
24
  __exportStar(require("./update.command"), exports);
@@ -134,9 +134,9 @@ export declare namespace UpdateNodeCommand {
134
134
  }, "strip", z.ZodTypeAny, {
135
135
  uuid: string;
136
136
  tags?: string[] | undefined;
137
+ countryCode?: string | undefined;
137
138
  name?: string | undefined;
138
139
  port?: number | undefined;
139
- countryCode?: string | undefined;
140
140
  trafficLimitBytes?: number | undefined;
141
141
  address?: string | undefined;
142
142
  isTrafficTrackingActive?: boolean | undefined;
@@ -151,9 +151,9 @@ export declare namespace UpdateNodeCommand {
151
151
  }, {
152
152
  uuid: string;
153
153
  tags?: string[] | undefined;
154
+ countryCode?: string | undefined;
154
155
  name?: string | undefined;
155
156
  port?: number | undefined;
156
- countryCode?: string | undefined;
157
157
  trafficLimitBytes?: number | undefined;
158
158
  address?: string | undefined;
159
159
  isTrafficTrackingActive?: boolean | undefined;
@@ -287,10 +287,10 @@ export declare namespace UpdateNodeCommand {
287
287
  faviconLink: string | null;
288
288
  loginUrl: string | null;
289
289
  } | null;
290
+ countryCode: string;
290
291
  name: string;
291
292
  port: number | null;
292
293
  viewPosition: number;
293
- countryCode: string;
294
294
  trafficLimitBytes: number | null;
295
295
  address: string;
296
296
  isDisabled: boolean;
@@ -337,10 +337,10 @@ export declare namespace UpdateNodeCommand {
337
337
  faviconLink: string | null;
338
338
  loginUrl: string | null;
339
339
  } | null;
340
+ countryCode: string;
340
341
  name: string;
341
342
  port: number | null;
342
343
  viewPosition: number;
343
- countryCode: string;
344
344
  trafficLimitBytes: number | null;
345
345
  address: string;
346
346
  isDisabled: boolean;
@@ -389,10 +389,10 @@ export declare namespace UpdateNodeCommand {
389
389
  faviconLink: string | null;
390
390
  loginUrl: string | null;
391
391
  } | null;
392
+ countryCode: string;
392
393
  name: string;
393
394
  port: number | null;
394
395
  viewPosition: number;
395
- countryCode: string;
396
396
  trafficLimitBytes: number | null;
397
397
  address: string;
398
398
  isDisabled: boolean;
@@ -441,10 +441,10 @@ export declare namespace UpdateNodeCommand {
441
441
  faviconLink: string | null;
442
442
  loginUrl: string | null;
443
443
  } | null;
444
+ countryCode: string;
444
445
  name: string;
445
446
  port: number | null;
446
447
  viewPosition: number;
447
- countryCode: string;
448
448
  trafficLimitBytes: number | null;
449
449
  address: string;
450
450
  isDisabled: boolean;