@remnawave/backend-contract 2.0.0-alpha.1 → 2.0.0-alpha.11
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/api/controllers/index.d.ts +1 -0
- package/build/backend/api/controllers/index.d.ts.map +1 -1
- package/build/backend/api/controllers/index.js +1 -0
- package/build/backend/api/controllers/infra-billing.d.ts +16 -0
- package/build/backend/api/controllers/infra-billing.d.ts.map +1 -0
- package/build/backend/api/controllers/infra-billing.js +22 -0
- package/build/backend/api/controllers/users.d.ts +1 -0
- package/build/backend/api/controllers/users.d.ts.map +1 -1
- package/build/backend/api/controllers/users.js +1 -0
- package/build/backend/api/routes.d.ts +15 -0
- package/build/backend/api/routes.d.ts.map +1 -1
- package/build/backend/api/routes.js +15 -0
- package/build/backend/commands/config-profiles/create-config-profile.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/create-config-profile.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/create-config-profile.command.js +2 -2
- package/build/backend/commands/config-profiles/get-all-inbounds.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/get-all-inbounds.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts +9 -0
- package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/config-profiles/update-config-profile.command.d.ts +7 -0
- package/build/backend/commands/config-profiles/update-config-profile.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.d.ts +6 -6
- package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.js +4 -2
- package/build/backend/commands/index.d.ts +1 -0
- package/build/backend/commands/index.d.ts.map +1 -1
- package/build/backend/commands/index.js +1 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts +123 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.js +24 -0
- package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts +33 -0
- package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts +117 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts +156 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.js +19 -0
- package/build/backend/commands/infra-billing/index.d.ts +6 -0
- package/build/backend/commands/infra-billing/index.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/index.js +21 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts +126 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.js +26 -0
- package/build/backend/commands/internal-squads/create-internal-squad.command.d.ts +7 -0
- package/build/backend/commands/internal-squads/create-internal-squad.command.d.ts.map +1 -1
- package/build/backend/commands/internal-squads/create-internal-squad.command.js +2 -2
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts +7 -0
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts.map +1 -1
- package/build/backend/commands/internal-squads/get-internal-squads.command.d.ts +9 -0
- package/build/backend/commands/internal-squads/get-internal-squads.command.d.ts.map +1 -1
- package/build/backend/commands/internal-squads/update-internal-squad.command.d.ts +7 -0
- package/build/backend/commands/internal-squads/update-internal-squad.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/disable.command.d.ts +66 -0
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +66 -0
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +92 -0
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +69 -0
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.js +1 -0
- package/build/backend/commands/nodes/get-all.command.d.ts +66 -0
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +66 -0
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/stats/get-node-user-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/nodes/stats/get-nodes-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/nodes/update.command.d.ts +95 -0
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.js +1 -0
- package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts +114 -0
- package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts.map +1 -0
- package/build/backend/commands/users/get-user-accessible-nodes.command.js +31 -0
- package/build/backend/commands/users/get-user-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/users/index.d.ts +1 -0
- package/build/backend/commands/users/index.d.ts.map +1 -1
- package/build/backend/commands/users/index.js +1 -0
- package/build/backend/constants/errors/errors.d.ts +35 -0
- package/build/backend/constants/errors/errors.d.ts.map +1 -1
- package/build/backend/constants/errors/errors.js +35 -0
- package/build/backend/models/config-profile-inbounds.schema.d.ts +3 -0
- package/build/backend/models/config-profile-inbounds.schema.d.ts.map +1 -1
- package/build/backend/models/config-profile-inbounds.schema.js +1 -0
- package/build/backend/models/config-profile.schema.d.ts +5 -0
- package/build/backend/models/config-profile.schema.d.ts.map +1 -1
- 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-provider.schema.d.ts +87 -0
- package/build/backend/models/infra-provider.schema.d.ts.map +1 -0
- package/build/backend/models/infra-provider.schema.js +41 -0
- package/build/backend/models/internal-squad.schema.d.ts +5 -0
- package/build/backend/models/internal-squad.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.d.ts +46 -0
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +3 -0
- package/build/frontend/api/controllers/index.js +1 -0
- package/build/frontend/api/controllers/infra-billing.js +22 -0
- package/build/frontend/api/controllers/users.js +1 -0
- package/build/frontend/api/routes.js +15 -0
- package/build/frontend/commands/config-profiles/create-config-profile.command.js +2 -2
- package/build/frontend/commands/hosts/create.command.js +4 -2
- package/build/frontend/commands/index.js +1 -0
- package/build/frontend/commands/infra-billing/create-infra-provider.command.js +24 -0
- package/build/frontend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -0
- package/build/frontend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
- package/build/frontend/commands/infra-billing/get-infra-providers.command.js +19 -0
- package/build/frontend/commands/infra-billing/index.js +21 -0
- package/build/frontend/commands/infra-billing/update-infra-provider.command.js +26 -0
- package/build/frontend/commands/internal-squads/create-internal-squad.command.js +2 -2
- package/build/frontend/commands/nodes/create.command.js +1 -0
- package/build/frontend/commands/nodes/update.command.js +1 -0
- package/build/frontend/commands/users/get-user-accessible-nodes.command.js +31 -0
- package/build/frontend/commands/users/index.js +1 -0
- package/build/frontend/constants/errors/errors.js +35 -0
- package/build/frontend/models/config-profile-inbounds.schema.js +1 -0
- package/build/frontend/models/index.js +1 -0
- package/build/frontend/models/infra-provider.schema.js +41 -0
- package/build/frontend/models/nodes.schema.js +3 -0
- package/package.json +1 -1
@@ -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"}
|
@@ -41,6 +41,7 @@ export declare namespace ReorderNodeCommand {
|
|
41
41
|
network: z.ZodNullable<z.ZodString>;
|
42
42
|
security: z.ZodNullable<z.ZodString>;
|
43
43
|
port: z.ZodNullable<z.ZodNumber>;
|
44
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
44
45
|
}, "strip", z.ZodTypeAny, {
|
45
46
|
type: string;
|
46
47
|
uuid: string;
|
@@ -49,6 +50,7 @@ export declare namespace ReorderNodeCommand {
|
|
49
50
|
network: string | null;
|
50
51
|
security: string | null;
|
51
52
|
port: number | null;
|
53
|
+
rawInbound?: unknown;
|
52
54
|
}, {
|
53
55
|
type: string;
|
54
56
|
uuid: string;
|
@@ -57,7 +59,31 @@ export declare namespace ReorderNodeCommand {
|
|
57
59
|
network: string | null;
|
58
60
|
security: string | null;
|
59
61
|
port: number | null;
|
62
|
+
rawInbound?: unknown;
|
60
63
|
}>, "many">>;
|
64
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
65
|
+
provider: z.ZodNullable<z.ZodObject<{
|
66
|
+
uuid: z.ZodString;
|
67
|
+
name: z.ZodString;
|
68
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
69
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
70
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
71
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
72
|
+
}, "strip", z.ZodTypeAny, {
|
73
|
+
uuid: string;
|
74
|
+
createdAt: Date;
|
75
|
+
updatedAt: Date;
|
76
|
+
name: string;
|
77
|
+
faviconLink: string | null;
|
78
|
+
loginUrl: string | null;
|
79
|
+
}, {
|
80
|
+
uuid: string;
|
81
|
+
createdAt: string;
|
82
|
+
updatedAt: string;
|
83
|
+
name: string;
|
84
|
+
faviconLink: string | null;
|
85
|
+
loginUrl: string | null;
|
86
|
+
}>>;
|
61
87
|
}, "uuid" | "viewPosition">, "strip", z.ZodTypeAny, {
|
62
88
|
uuid: string;
|
63
89
|
viewPosition: number;
|
@@ -115,6 +141,7 @@ export declare namespace ReorderNodeCommand {
|
|
115
141
|
network: z.ZodNullable<z.ZodString>;
|
116
142
|
security: z.ZodNullable<z.ZodString>;
|
117
143
|
port: z.ZodNullable<z.ZodNumber>;
|
144
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
118
145
|
}, "strip", z.ZodTypeAny, {
|
119
146
|
type: string;
|
120
147
|
uuid: string;
|
@@ -123,6 +150,7 @@ export declare namespace ReorderNodeCommand {
|
|
123
150
|
network: string | null;
|
124
151
|
security: string | null;
|
125
152
|
port: number | null;
|
153
|
+
rawInbound?: unknown;
|
126
154
|
}, {
|
127
155
|
type: string;
|
128
156
|
uuid: string;
|
@@ -131,7 +159,31 @@ export declare namespace ReorderNodeCommand {
|
|
131
159
|
network: string | null;
|
132
160
|
security: string | null;
|
133
161
|
port: number | null;
|
162
|
+
rawInbound?: unknown;
|
134
163
|
}>, "many">>;
|
164
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
165
|
+
provider: z.ZodNullable<z.ZodObject<{
|
166
|
+
uuid: z.ZodString;
|
167
|
+
name: z.ZodString;
|
168
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
169
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
170
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
171
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
172
|
+
}, "strip", z.ZodTypeAny, {
|
173
|
+
uuid: string;
|
174
|
+
createdAt: Date;
|
175
|
+
updatedAt: Date;
|
176
|
+
name: string;
|
177
|
+
faviconLink: string | null;
|
178
|
+
loginUrl: string | null;
|
179
|
+
}, {
|
180
|
+
uuid: string;
|
181
|
+
createdAt: string;
|
182
|
+
updatedAt: string;
|
183
|
+
name: string;
|
184
|
+
faviconLink: string | null;
|
185
|
+
loginUrl: string | null;
|
186
|
+
}>>;
|
135
187
|
}, "strip", z.ZodTypeAny, {
|
136
188
|
uuid: string;
|
137
189
|
createdAt: Date;
|
@@ -169,7 +221,17 @@ export declare namespace ReorderNodeCommand {
|
|
169
221
|
network: string | null;
|
170
222
|
security: string | null;
|
171
223
|
port: number | null;
|
224
|
+
rawInbound?: unknown;
|
172
225
|
}[] | null;
|
226
|
+
providerUuid: string | null;
|
227
|
+
provider: {
|
228
|
+
uuid: string;
|
229
|
+
createdAt: Date;
|
230
|
+
updatedAt: Date;
|
231
|
+
name: string;
|
232
|
+
faviconLink: string | null;
|
233
|
+
loginUrl: string | null;
|
234
|
+
} | null;
|
173
235
|
}, {
|
174
236
|
uuid: string;
|
175
237
|
createdAt: string;
|
@@ -207,7 +269,17 @@ export declare namespace ReorderNodeCommand {
|
|
207
269
|
network: string | null;
|
208
270
|
security: string | null;
|
209
271
|
port: number | null;
|
272
|
+
rawInbound?: unknown;
|
210
273
|
}[] | null;
|
274
|
+
providerUuid: string | null;
|
275
|
+
provider: {
|
276
|
+
uuid: string;
|
277
|
+
createdAt: string;
|
278
|
+
updatedAt: string;
|
279
|
+
name: string;
|
280
|
+
faviconLink: string | null;
|
281
|
+
loginUrl: string | null;
|
282
|
+
} | null;
|
211
283
|
}>, "many">;
|
212
284
|
}, "strip", z.ZodTypeAny, {
|
213
285
|
response: {
|
@@ -247,7 +319,17 @@ export declare namespace ReorderNodeCommand {
|
|
247
319
|
network: string | null;
|
248
320
|
security: string | null;
|
249
321
|
port: number | null;
|
322
|
+
rawInbound?: unknown;
|
250
323
|
}[] | null;
|
324
|
+
providerUuid: string | null;
|
325
|
+
provider: {
|
326
|
+
uuid: string;
|
327
|
+
createdAt: Date;
|
328
|
+
updatedAt: Date;
|
329
|
+
name: string;
|
330
|
+
faviconLink: string | null;
|
331
|
+
loginUrl: string | null;
|
332
|
+
} | null;
|
251
333
|
}[];
|
252
334
|
}, {
|
253
335
|
response: {
|
@@ -287,7 +369,17 @@ export declare namespace ReorderNodeCommand {
|
|
287
369
|
network: string | null;
|
288
370
|
security: string | null;
|
289
371
|
port: number | null;
|
372
|
+
rawInbound?: unknown;
|
290
373
|
}[] | null;
|
374
|
+
providerUuid: string | null;
|
375
|
+
provider: {
|
376
|
+
uuid: string;
|
377
|
+
createdAt: string;
|
378
|
+
updatedAt: string;
|
379
|
+
name: string;
|
380
|
+
faviconLink: string | null;
|
381
|
+
loginUrl: string | null;
|
382
|
+
} | null;
|
291
383
|
}[];
|
292
384
|
}>;
|
293
385
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -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"}
|
@@ -15,6 +15,7 @@ export declare namespace CreateNodeCommand {
|
|
15
15
|
consumptionMultiplier: z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>;
|
16
16
|
activeConfigProfileUuid: z.ZodOptional<z.ZodString>;
|
17
17
|
activeInbounds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
18
|
+
providerUuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
18
19
|
}, "strip", z.ZodTypeAny, {
|
19
20
|
name: string;
|
20
21
|
countryCode: string;
|
@@ -27,6 +28,7 @@ export declare namespace CreateNodeCommand {
|
|
27
28
|
consumptionMultiplier?: number | undefined;
|
28
29
|
activeConfigProfileUuid?: string | undefined;
|
29
30
|
activeInbounds?: string[] | undefined;
|
31
|
+
providerUuid?: string | null | undefined;
|
30
32
|
}, {
|
31
33
|
name: string;
|
32
34
|
address: string;
|
@@ -39,6 +41,7 @@ export declare namespace CreateNodeCommand {
|
|
39
41
|
consumptionMultiplier?: number | undefined;
|
40
42
|
activeConfigProfileUuid?: string | undefined;
|
41
43
|
activeInbounds?: string[] | undefined;
|
44
|
+
providerUuid?: string | null | undefined;
|
42
45
|
}>;
|
43
46
|
type Request = z.infer<typeof RequestSchema>;
|
44
47
|
const ResponseSchema: z.ZodObject<{
|
@@ -79,6 +82,7 @@ export declare namespace CreateNodeCommand {
|
|
79
82
|
network: z.ZodNullable<z.ZodString>;
|
80
83
|
security: z.ZodNullable<z.ZodString>;
|
81
84
|
port: z.ZodNullable<z.ZodNumber>;
|
85
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
82
86
|
}, "strip", z.ZodTypeAny, {
|
83
87
|
type: string;
|
84
88
|
uuid: string;
|
@@ -87,6 +91,7 @@ export declare namespace CreateNodeCommand {
|
|
87
91
|
network: string | null;
|
88
92
|
security: string | null;
|
89
93
|
port: number | null;
|
94
|
+
rawInbound?: unknown;
|
90
95
|
}, {
|
91
96
|
type: string;
|
92
97
|
uuid: string;
|
@@ -95,7 +100,31 @@ export declare namespace CreateNodeCommand {
|
|
95
100
|
network: string | null;
|
96
101
|
security: string | null;
|
97
102
|
port: number | null;
|
103
|
+
rawInbound?: unknown;
|
98
104
|
}>, "many">>;
|
105
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
106
|
+
provider: z.ZodNullable<z.ZodObject<{
|
107
|
+
uuid: z.ZodString;
|
108
|
+
name: z.ZodString;
|
109
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
110
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
111
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
112
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
113
|
+
}, "strip", z.ZodTypeAny, {
|
114
|
+
uuid: string;
|
115
|
+
createdAt: Date;
|
116
|
+
updatedAt: Date;
|
117
|
+
name: string;
|
118
|
+
faviconLink: string | null;
|
119
|
+
loginUrl: string | null;
|
120
|
+
}, {
|
121
|
+
uuid: string;
|
122
|
+
createdAt: string;
|
123
|
+
updatedAt: string;
|
124
|
+
name: string;
|
125
|
+
faviconLink: string | null;
|
126
|
+
loginUrl: string | null;
|
127
|
+
}>>;
|
99
128
|
}, "strip", z.ZodTypeAny, {
|
100
129
|
uuid: string;
|
101
130
|
createdAt: Date;
|
@@ -133,7 +162,17 @@ export declare namespace CreateNodeCommand {
|
|
133
162
|
network: string | null;
|
134
163
|
security: string | null;
|
135
164
|
port: number | null;
|
165
|
+
rawInbound?: unknown;
|
136
166
|
}[] | null;
|
167
|
+
providerUuid: string | null;
|
168
|
+
provider: {
|
169
|
+
uuid: string;
|
170
|
+
createdAt: Date;
|
171
|
+
updatedAt: Date;
|
172
|
+
name: string;
|
173
|
+
faviconLink: string | null;
|
174
|
+
loginUrl: string | null;
|
175
|
+
} | null;
|
137
176
|
}, {
|
138
177
|
uuid: string;
|
139
178
|
createdAt: string;
|
@@ -171,7 +210,17 @@ export declare namespace CreateNodeCommand {
|
|
171
210
|
network: string | null;
|
172
211
|
security: string | null;
|
173
212
|
port: number | null;
|
213
|
+
rawInbound?: unknown;
|
174
214
|
}[] | null;
|
215
|
+
providerUuid: string | null;
|
216
|
+
provider: {
|
217
|
+
uuid: string;
|
218
|
+
createdAt: string;
|
219
|
+
updatedAt: string;
|
220
|
+
name: string;
|
221
|
+
faviconLink: string | null;
|
222
|
+
loginUrl: string | null;
|
223
|
+
} | null;
|
175
224
|
}>;
|
176
225
|
}, "strip", z.ZodTypeAny, {
|
177
226
|
response: {
|
@@ -211,7 +260,17 @@ export declare namespace CreateNodeCommand {
|
|
211
260
|
network: string | null;
|
212
261
|
security: string | null;
|
213
262
|
port: number | null;
|
263
|
+
rawInbound?: unknown;
|
214
264
|
}[] | null;
|
265
|
+
providerUuid: string | null;
|
266
|
+
provider: {
|
267
|
+
uuid: string;
|
268
|
+
createdAt: Date;
|
269
|
+
updatedAt: Date;
|
270
|
+
name: string;
|
271
|
+
faviconLink: string | null;
|
272
|
+
loginUrl: string | null;
|
273
|
+
} | null;
|
215
274
|
};
|
216
275
|
}, {
|
217
276
|
response: {
|
@@ -251,7 +310,17 @@ export declare namespace CreateNodeCommand {
|
|
251
310
|
network: string | null;
|
252
311
|
security: string | null;
|
253
312
|
port: number | null;
|
313
|
+
rawInbound?: unknown;
|
254
314
|
}[] | null;
|
315
|
+
providerUuid: string | null;
|
316
|
+
provider: {
|
317
|
+
uuid: string;
|
318
|
+
createdAt: string;
|
319
|
+
updatedAt: string;
|
320
|
+
name: string;
|
321
|
+
faviconLink: string | null;
|
322
|
+
loginUrl: string | null;
|
323
|
+
} | null;
|
255
324
|
};
|
256
325
|
}>;
|
257
326
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa
|
1
|
+
{"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAwCxB,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"}
|
@@ -39,6 +39,7 @@ var CreateNodeCommand;
|
|
39
39
|
activeInbounds: zod_1.z.optional(zod_1.z.array(zod_1.z.string().uuid(), {
|
40
40
|
invalid_type_error: 'Active inbounds must be an array of UUIDs',
|
41
41
|
})),
|
42
|
+
providerUuid: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string().uuid())),
|
42
43
|
});
|
43
44
|
CreateNodeCommand.ResponseSchema = zod_1.z.object({
|
44
45
|
response: models_1.NodesSchema,
|
@@ -41,6 +41,7 @@ export declare namespace GetAllNodesCommand {
|
|
41
41
|
network: z.ZodNullable<z.ZodString>;
|
42
42
|
security: z.ZodNullable<z.ZodString>;
|
43
43
|
port: z.ZodNullable<z.ZodNumber>;
|
44
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
44
45
|
}, "strip", z.ZodTypeAny, {
|
45
46
|
type: string;
|
46
47
|
uuid: string;
|
@@ -49,6 +50,7 @@ export declare namespace GetAllNodesCommand {
|
|
49
50
|
network: string | null;
|
50
51
|
security: string | null;
|
51
52
|
port: number | null;
|
53
|
+
rawInbound?: unknown;
|
52
54
|
}, {
|
53
55
|
type: string;
|
54
56
|
uuid: string;
|
@@ -57,7 +59,31 @@ export declare namespace GetAllNodesCommand {
|
|
57
59
|
network: string | null;
|
58
60
|
security: string | null;
|
59
61
|
port: number | null;
|
62
|
+
rawInbound?: unknown;
|
60
63
|
}>, "many">>;
|
64
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
65
|
+
provider: z.ZodNullable<z.ZodObject<{
|
66
|
+
uuid: z.ZodString;
|
67
|
+
name: z.ZodString;
|
68
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
69
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
70
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
71
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
72
|
+
}, "strip", z.ZodTypeAny, {
|
73
|
+
uuid: string;
|
74
|
+
createdAt: Date;
|
75
|
+
updatedAt: Date;
|
76
|
+
name: string;
|
77
|
+
faviconLink: string | null;
|
78
|
+
loginUrl: string | null;
|
79
|
+
}, {
|
80
|
+
uuid: string;
|
81
|
+
createdAt: string;
|
82
|
+
updatedAt: string;
|
83
|
+
name: string;
|
84
|
+
faviconLink: string | null;
|
85
|
+
loginUrl: string | null;
|
86
|
+
}>>;
|
61
87
|
}, "strip", z.ZodTypeAny, {
|
62
88
|
uuid: string;
|
63
89
|
createdAt: Date;
|
@@ -95,7 +121,17 @@ export declare namespace GetAllNodesCommand {
|
|
95
121
|
network: string | null;
|
96
122
|
security: string | null;
|
97
123
|
port: number | null;
|
124
|
+
rawInbound?: unknown;
|
98
125
|
}[] | null;
|
126
|
+
providerUuid: string | null;
|
127
|
+
provider: {
|
128
|
+
uuid: string;
|
129
|
+
createdAt: Date;
|
130
|
+
updatedAt: Date;
|
131
|
+
name: string;
|
132
|
+
faviconLink: string | null;
|
133
|
+
loginUrl: string | null;
|
134
|
+
} | null;
|
99
135
|
}, {
|
100
136
|
uuid: string;
|
101
137
|
createdAt: string;
|
@@ -133,7 +169,17 @@ export declare namespace GetAllNodesCommand {
|
|
133
169
|
network: string | null;
|
134
170
|
security: string | null;
|
135
171
|
port: number | null;
|
172
|
+
rawInbound?: unknown;
|
136
173
|
}[] | null;
|
174
|
+
providerUuid: string | null;
|
175
|
+
provider: {
|
176
|
+
uuid: string;
|
177
|
+
createdAt: string;
|
178
|
+
updatedAt: string;
|
179
|
+
name: string;
|
180
|
+
faviconLink: string | null;
|
181
|
+
loginUrl: string | null;
|
182
|
+
} | null;
|
137
183
|
}>, "many">;
|
138
184
|
}, "strip", z.ZodTypeAny, {
|
139
185
|
response: {
|
@@ -173,7 +219,17 @@ export declare namespace GetAllNodesCommand {
|
|
173
219
|
network: string | null;
|
174
220
|
security: string | null;
|
175
221
|
port: number | null;
|
222
|
+
rawInbound?: unknown;
|
176
223
|
}[] | null;
|
224
|
+
providerUuid: string | null;
|
225
|
+
provider: {
|
226
|
+
uuid: string;
|
227
|
+
createdAt: Date;
|
228
|
+
updatedAt: Date;
|
229
|
+
name: string;
|
230
|
+
faviconLink: string | null;
|
231
|
+
loginUrl: string | null;
|
232
|
+
} | null;
|
177
233
|
}[];
|
178
234
|
}, {
|
179
235
|
response: {
|
@@ -213,7 +269,17 @@ export declare namespace GetAllNodesCommand {
|
|
213
269
|
network: string | null;
|
214
270
|
security: string | null;
|
215
271
|
port: number | null;
|
272
|
+
rawInbound?: unknown;
|
216
273
|
}[] | null;
|
274
|
+
providerUuid: string | null;
|
275
|
+
provider: {
|
276
|
+
uuid: string;
|
277
|
+
createdAt: string;
|
278
|
+
updatedAt: string;
|
279
|
+
name: string;
|
280
|
+
faviconLink: string | null;
|
281
|
+
loginUrl: string | null;
|
282
|
+
} | null;
|
217
283
|
}[];
|
218
284
|
}>;
|
219
285
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -49,6 +49,7 @@ export declare namespace GetOneNodeCommand {
|
|
49
49
|
network: z.ZodNullable<z.ZodString>;
|
50
50
|
security: z.ZodNullable<z.ZodString>;
|
51
51
|
port: z.ZodNullable<z.ZodNumber>;
|
52
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
52
53
|
}, "strip", z.ZodTypeAny, {
|
53
54
|
type: string;
|
54
55
|
uuid: string;
|
@@ -57,6 +58,7 @@ export declare namespace GetOneNodeCommand {
|
|
57
58
|
network: string | null;
|
58
59
|
security: string | null;
|
59
60
|
port: number | null;
|
61
|
+
rawInbound?: unknown;
|
60
62
|
}, {
|
61
63
|
type: string;
|
62
64
|
uuid: string;
|
@@ -65,7 +67,31 @@ export declare namespace GetOneNodeCommand {
|
|
65
67
|
network: string | null;
|
66
68
|
security: string | null;
|
67
69
|
port: number | null;
|
70
|
+
rawInbound?: unknown;
|
68
71
|
}>, "many">>;
|
72
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
73
|
+
provider: z.ZodNullable<z.ZodObject<{
|
74
|
+
uuid: z.ZodString;
|
75
|
+
name: z.ZodString;
|
76
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
77
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
78
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
79
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
80
|
+
}, "strip", z.ZodTypeAny, {
|
81
|
+
uuid: string;
|
82
|
+
createdAt: Date;
|
83
|
+
updatedAt: Date;
|
84
|
+
name: string;
|
85
|
+
faviconLink: string | null;
|
86
|
+
loginUrl: string | null;
|
87
|
+
}, {
|
88
|
+
uuid: string;
|
89
|
+
createdAt: string;
|
90
|
+
updatedAt: string;
|
91
|
+
name: string;
|
92
|
+
faviconLink: string | null;
|
93
|
+
loginUrl: string | null;
|
94
|
+
}>>;
|
69
95
|
}, "strip", z.ZodTypeAny, {
|
70
96
|
uuid: string;
|
71
97
|
createdAt: Date;
|
@@ -103,7 +129,17 @@ export declare namespace GetOneNodeCommand {
|
|
103
129
|
network: string | null;
|
104
130
|
security: string | null;
|
105
131
|
port: number | null;
|
132
|
+
rawInbound?: unknown;
|
106
133
|
}[] | null;
|
134
|
+
providerUuid: string | null;
|
135
|
+
provider: {
|
136
|
+
uuid: string;
|
137
|
+
createdAt: Date;
|
138
|
+
updatedAt: Date;
|
139
|
+
name: string;
|
140
|
+
faviconLink: string | null;
|
141
|
+
loginUrl: string | null;
|
142
|
+
} | null;
|
107
143
|
}, {
|
108
144
|
uuid: string;
|
109
145
|
createdAt: string;
|
@@ -141,7 +177,17 @@ export declare namespace GetOneNodeCommand {
|
|
141
177
|
network: string | null;
|
142
178
|
security: string | null;
|
143
179
|
port: number | null;
|
180
|
+
rawInbound?: unknown;
|
144
181
|
}[] | null;
|
182
|
+
providerUuid: string | null;
|
183
|
+
provider: {
|
184
|
+
uuid: string;
|
185
|
+
createdAt: string;
|
186
|
+
updatedAt: string;
|
187
|
+
name: string;
|
188
|
+
faviconLink: string | null;
|
189
|
+
loginUrl: string | null;
|
190
|
+
} | null;
|
145
191
|
}>;
|
146
192
|
}, "strip", z.ZodTypeAny, {
|
147
193
|
response: {
|
@@ -181,7 +227,17 @@ export declare namespace GetOneNodeCommand {
|
|
181
227
|
network: string | null;
|
182
228
|
security: string | null;
|
183
229
|
port: number | null;
|
230
|
+
rawInbound?: unknown;
|
184
231
|
}[] | null;
|
232
|
+
providerUuid: string | null;
|
233
|
+
provider: {
|
234
|
+
uuid: string;
|
235
|
+
createdAt: Date;
|
236
|
+
updatedAt: Date;
|
237
|
+
name: string;
|
238
|
+
faviconLink: string | null;
|
239
|
+
loginUrl: string | null;
|
240
|
+
} | null;
|
185
241
|
};
|
186
242
|
}, {
|
187
243
|
response: {
|
@@ -221,7 +277,17 @@ export declare namespace GetOneNodeCommand {
|
|
221
277
|
network: string | null;
|
222
278
|
security: string | null;
|
223
279
|
port: number | null;
|
280
|
+
rawInbound?: unknown;
|
224
281
|
}[] | null;
|
282
|
+
providerUuid: string | null;
|
283
|
+
provider: {
|
284
|
+
uuid: string;
|
285
|
+
createdAt: string;
|
286
|
+
updatedAt: string;
|
287
|
+
name: string;
|
288
|
+
faviconLink: string | null;
|
289
|
+
loginUrl: string | null;
|
290
|
+
} | null;
|
225
291
|
};
|
226
292
|
}>;
|
227
293
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-one.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-one.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAA6B,CAAC;IACvC,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
|
1
|
+
{"version":3,"file":"get-one.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-one.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAA6B,CAAC;IACvC,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -33,30 +33,30 @@ export declare namespace GetNodeUserUsageByRangeCommand {
|
|
33
33
|
date: Date;
|
34
34
|
username: string;
|
35
35
|
userUuid: string;
|
36
|
-
total: number;
|
37
36
|
nodeUuid: string;
|
37
|
+
total: number;
|
38
38
|
}, {
|
39
39
|
date: string;
|
40
40
|
username: string;
|
41
41
|
userUuid: string;
|
42
|
-
total: number;
|
43
42
|
nodeUuid: string;
|
43
|
+
total: number;
|
44
44
|
}>, "many">;
|
45
45
|
}, "strip", z.ZodTypeAny, {
|
46
46
|
response: {
|
47
47
|
date: Date;
|
48
48
|
username: string;
|
49
49
|
userUuid: string;
|
50
|
-
total: number;
|
51
50
|
nodeUuid: string;
|
51
|
+
total: number;
|
52
52
|
}[];
|
53
53
|
}, {
|
54
54
|
response: {
|
55
55
|
date: string;
|
56
56
|
username: string;
|
57
57
|
userUuid: string;
|
58
|
-
total: number;
|
59
58
|
nodeUuid: string;
|
59
|
+
total: number;
|
60
60
|
}[];
|
61
61
|
}>;
|
62
62
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -28,8 +28,8 @@ export declare namespace GetNodesUsageByRangeCommand {
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
29
29
|
date: Date;
|
30
30
|
nodeName: string;
|
31
|
-
total: number;
|
32
31
|
nodeUuid: string;
|
32
|
+
total: number;
|
33
33
|
totalDownload: number;
|
34
34
|
totalUpload: number;
|
35
35
|
humanReadableTotal: string;
|
@@ -38,8 +38,8 @@ export declare namespace GetNodesUsageByRangeCommand {
|
|
38
38
|
}, {
|
39
39
|
date: string;
|
40
40
|
nodeName: string;
|
41
|
-
total: number;
|
42
41
|
nodeUuid: string;
|
42
|
+
total: number;
|
43
43
|
totalDownload: number;
|
44
44
|
totalUpload: number;
|
45
45
|
humanReadableTotal: string;
|
@@ -50,8 +50,8 @@ export declare namespace GetNodesUsageByRangeCommand {
|
|
50
50
|
response: {
|
51
51
|
date: Date;
|
52
52
|
nodeName: string;
|
53
|
-
total: number;
|
54
53
|
nodeUuid: string;
|
54
|
+
total: number;
|
55
55
|
totalDownload: number;
|
56
56
|
totalUpload: number;
|
57
57
|
humanReadableTotal: string;
|
@@ -62,8 +62,8 @@ export declare namespace GetNodesUsageByRangeCommand {
|
|
62
62
|
response: {
|
63
63
|
date: string;
|
64
64
|
nodeName: string;
|
65
|
-
total: number;
|
66
65
|
nodeUuid: string;
|
66
|
+
total: number;
|
67
67
|
totalDownload: number;
|
68
68
|
totalUpload: number;
|
69
69
|
humanReadableTotal: string;
|