@remnawave/backend-contract 2.0.0-alpha.21 → 2.0.0-alpha.22

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 (35) hide show
  1. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +106 -54
  2. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -1
  3. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +106 -54
  4. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
  5. package/build/backend/commands/infra-billing/get-blling-nodes.command.d.ts +106 -54
  6. package/build/backend/commands/infra-billing/get-blling-nodes.command.d.ts.map +1 -1
  7. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +106 -54
  8. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
  9. package/build/backend/commands/nodes/actions/disable.command.d.ts +105 -71
  10. package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
  11. package/build/backend/commands/nodes/actions/enable.command.d.ts +105 -71
  12. package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
  13. package/build/backend/commands/nodes/actions/reorder.command.d.ts +158 -98
  14. package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
  15. package/build/backend/commands/nodes/create.command.d.ts +123 -77
  16. package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
  17. package/build/backend/commands/nodes/create.command.js +6 -4
  18. package/build/backend/commands/nodes/get-all.command.d.ts +105 -71
  19. package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
  20. package/build/backend/commands/nodes/get-one.command.d.ts +105 -71
  21. package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
  22. package/build/backend/commands/nodes/update.command.d.ts +176 -104
  23. package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
  24. package/build/backend/commands/nodes/update.command.js +8 -4
  25. package/build/backend/models/infra-billing-available-node.schema.d.ts +53 -27
  26. package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
  27. package/build/backend/models/infra-billing-node.schema.d.ts +53 -27
  28. package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
  29. package/build/backend/models/nodes.schema.d.ts +79 -49
  30. package/build/backend/models/nodes.schema.d.ts.map +1 -1
  31. package/build/backend/models/nodes.schema.js +4 -2
  32. package/build/frontend/commands/nodes/create.command.js +6 -4
  33. package/build/frontend/commands/nodes/update.command.js +8 -4
  34. package/build/frontend/models/nodes.schema.js +4 -2
  35. package/package.json +1 -1
@@ -31,35 +31,61 @@ export declare namespace UpdateNodeCommand {
31
31
  totalRam: z.ZodNullable<z.ZodString>;
32
32
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
33
33
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
34
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
35
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
36
- uuid: z.ZodString;
37
- profileUuid: z.ZodString;
38
- tag: z.ZodString;
39
- type: z.ZodString;
40
- network: z.ZodNullable<z.ZodString>;
41
- security: z.ZodNullable<z.ZodString>;
42
- port: z.ZodNullable<z.ZodNumber>;
43
- rawInbound: z.ZodNullable<z.ZodUnknown>;
34
+ configProfile: z.ZodObject<{
35
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
36
+ activeInbounds: z.ZodArray<z.ZodObject<{
37
+ uuid: z.ZodString;
38
+ profileUuid: z.ZodString;
39
+ tag: z.ZodString;
40
+ type: z.ZodString;
41
+ network: z.ZodNullable<z.ZodString>;
42
+ security: z.ZodNullable<z.ZodString>;
43
+ port: z.ZodNullable<z.ZodNumber>;
44
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
45
+ }, "strip", z.ZodTypeAny, {
46
+ type: string;
47
+ uuid: string;
48
+ profileUuid: string;
49
+ tag: string;
50
+ network: string | null;
51
+ security: string | null;
52
+ port: number | null;
53
+ rawInbound?: unknown;
54
+ }, {
55
+ type: string;
56
+ uuid: string;
57
+ profileUuid: string;
58
+ tag: string;
59
+ network: string | null;
60
+ security: string | null;
61
+ port: number | null;
62
+ rawInbound?: unknown;
63
+ }>, "many">;
44
64
  }, "strip", z.ZodTypeAny, {
45
- type: string;
46
- uuid: string;
47
- profileUuid: string;
48
- tag: string;
49
- network: string | null;
50
- security: string | null;
51
- port: number | null;
52
- rawInbound?: unknown;
65
+ activeConfigProfileUuid: string | null;
66
+ activeInbounds: {
67
+ type: string;
68
+ uuid: string;
69
+ profileUuid: string;
70
+ tag: string;
71
+ network: string | null;
72
+ security: string | null;
73
+ port: number | null;
74
+ rawInbound?: unknown;
75
+ }[];
53
76
  }, {
54
- type: string;
55
- uuid: string;
56
- profileUuid: string;
57
- tag: string;
58
- network: string | null;
59
- security: string | null;
60
- port: number | null;
61
- rawInbound?: unknown;
62
- }>, "many">>;
77
+ activeConfigProfileUuid: string | null;
78
+ activeInbounds: {
79
+ type: string;
80
+ uuid: string;
81
+ profileUuid: string;
82
+ tag: string;
83
+ network: string | null;
84
+ security: string | null;
85
+ port: number | null;
86
+ rawInbound?: unknown;
87
+ }[];
88
+ }>;
63
89
  providerUuid: z.ZodNullable<z.ZodString>;
64
90
  provider: z.ZodNullable<z.ZodObject<{
65
91
  uuid: z.ZodString;
@@ -93,8 +119,16 @@ export declare namespace UpdateNodeCommand {
93
119
  trafficResetDay: z.ZodOptional<z.ZodNumber>;
94
120
  countryCode: z.ZodOptional<z.ZodString>;
95
121
  consumptionMultiplier: z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>;
96
- activeConfigProfileUuid: z.ZodOptional<z.ZodString>;
97
- activeInbounds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
122
+ configProfile: z.ZodOptional<z.ZodObject<{
123
+ activeConfigProfileUuid: z.ZodString;
124
+ activeInbounds: z.ZodArray<z.ZodString, "many">;
125
+ }, "strip", z.ZodTypeAny, {
126
+ activeConfigProfileUuid: string;
127
+ activeInbounds: string[];
128
+ }, {
129
+ activeConfigProfileUuid: string;
130
+ activeInbounds: string[];
131
+ }>>;
98
132
  providerUuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
99
133
  }, "strip", z.ZodTypeAny, {
100
134
  uuid: string;
@@ -107,8 +141,10 @@ export declare namespace UpdateNodeCommand {
107
141
  trafficResetDay?: number | undefined;
108
142
  notifyPercent?: number | undefined;
109
143
  consumptionMultiplier?: number | undefined;
110
- activeConfigProfileUuid?: string | undefined;
111
- activeInbounds?: string[] | undefined;
144
+ configProfile?: {
145
+ activeConfigProfileUuid: string;
146
+ activeInbounds: string[];
147
+ } | undefined;
112
148
  providerUuid?: string | null | undefined;
113
149
  }, {
114
150
  uuid: string;
@@ -121,8 +157,10 @@ export declare namespace UpdateNodeCommand {
121
157
  trafficResetDay?: number | undefined;
122
158
  notifyPercent?: number | undefined;
123
159
  consumptionMultiplier?: number | undefined;
124
- activeConfigProfileUuid?: string | undefined;
125
- activeInbounds?: string[] | undefined;
160
+ configProfile?: {
161
+ activeConfigProfileUuid: string;
162
+ activeInbounds: string[];
163
+ } | undefined;
126
164
  providerUuid?: string | null | undefined;
127
165
  }>;
128
166
  type Request = z.infer<typeof RequestSchema>;
@@ -155,35 +193,61 @@ export declare namespace UpdateNodeCommand {
155
193
  totalRam: z.ZodNullable<z.ZodString>;
156
194
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
157
195
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
158
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
159
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
160
- uuid: z.ZodString;
161
- profileUuid: z.ZodString;
162
- tag: z.ZodString;
163
- type: z.ZodString;
164
- network: z.ZodNullable<z.ZodString>;
165
- security: z.ZodNullable<z.ZodString>;
166
- port: z.ZodNullable<z.ZodNumber>;
167
- rawInbound: z.ZodNullable<z.ZodUnknown>;
196
+ configProfile: z.ZodObject<{
197
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
198
+ activeInbounds: z.ZodArray<z.ZodObject<{
199
+ uuid: z.ZodString;
200
+ profileUuid: z.ZodString;
201
+ tag: z.ZodString;
202
+ type: z.ZodString;
203
+ network: z.ZodNullable<z.ZodString>;
204
+ security: z.ZodNullable<z.ZodString>;
205
+ port: z.ZodNullable<z.ZodNumber>;
206
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
207
+ }, "strip", z.ZodTypeAny, {
208
+ type: string;
209
+ uuid: string;
210
+ profileUuid: string;
211
+ tag: string;
212
+ network: string | null;
213
+ security: string | null;
214
+ port: number | null;
215
+ rawInbound?: unknown;
216
+ }, {
217
+ type: string;
218
+ uuid: string;
219
+ profileUuid: string;
220
+ tag: string;
221
+ network: string | null;
222
+ security: string | null;
223
+ port: number | null;
224
+ rawInbound?: unknown;
225
+ }>, "many">;
168
226
  }, "strip", z.ZodTypeAny, {
169
- type: string;
170
- uuid: string;
171
- profileUuid: string;
172
- tag: string;
173
- network: string | null;
174
- security: string | null;
175
- port: number | null;
176
- rawInbound?: unknown;
227
+ activeConfigProfileUuid: string | null;
228
+ activeInbounds: {
229
+ type: string;
230
+ uuid: string;
231
+ profileUuid: string;
232
+ tag: string;
233
+ network: string | null;
234
+ security: string | null;
235
+ port: number | null;
236
+ rawInbound?: unknown;
237
+ }[];
177
238
  }, {
178
- type: string;
179
- uuid: string;
180
- profileUuid: string;
181
- tag: string;
182
- network: string | null;
183
- security: string | null;
184
- port: number | null;
185
- rawInbound?: unknown;
186
- }>, "many">>;
239
+ activeConfigProfileUuid: string | null;
240
+ activeInbounds: {
241
+ type: string;
242
+ uuid: string;
243
+ profileUuid: string;
244
+ tag: string;
245
+ network: string | null;
246
+ security: string | null;
247
+ port: number | null;
248
+ rawInbound?: unknown;
249
+ }[];
250
+ }>;
187
251
  providerUuid: z.ZodNullable<z.ZodString>;
188
252
  provider: z.ZodNullable<z.ZodObject<{
189
253
  uuid: z.ZodString;
@@ -235,17 +299,19 @@ export declare namespace UpdateNodeCommand {
235
299
  cpuCount: number | null;
236
300
  cpuModel: string | null;
237
301
  totalRam: string | null;
238
- activeConfigProfileUuid: string | null;
239
- activeInbounds: {
240
- type: string;
241
- uuid: string;
242
- profileUuid: string;
243
- tag: string;
244
- network: string | null;
245
- security: string | null;
246
- port: number | null;
247
- rawInbound?: unknown;
248
- }[] | null;
302
+ configProfile: {
303
+ activeConfigProfileUuid: string | null;
304
+ activeInbounds: {
305
+ type: string;
306
+ uuid: string;
307
+ profileUuid: string;
308
+ tag: string;
309
+ network: string | null;
310
+ security: string | null;
311
+ port: number | null;
312
+ rawInbound?: unknown;
313
+ }[];
314
+ };
249
315
  providerUuid: string | null;
250
316
  provider: {
251
317
  uuid: string;
@@ -283,17 +349,19 @@ export declare namespace UpdateNodeCommand {
283
349
  cpuCount: number | null;
284
350
  cpuModel: string | null;
285
351
  totalRam: string | null;
286
- activeConfigProfileUuid: string | null;
287
- activeInbounds: {
288
- type: string;
289
- uuid: string;
290
- profileUuid: string;
291
- tag: string;
292
- network: string | null;
293
- security: string | null;
294
- port: number | null;
295
- rawInbound?: unknown;
296
- }[] | null;
352
+ configProfile: {
353
+ activeConfigProfileUuid: string | null;
354
+ activeInbounds: {
355
+ type: string;
356
+ uuid: string;
357
+ profileUuid: string;
358
+ tag: string;
359
+ network: string | null;
360
+ security: string | null;
361
+ port: number | null;
362
+ rawInbound?: unknown;
363
+ }[];
364
+ };
297
365
  providerUuid: string | null;
298
366
  provider: {
299
367
  uuid: string;
@@ -333,17 +401,19 @@ export declare namespace UpdateNodeCommand {
333
401
  cpuCount: number | null;
334
402
  cpuModel: string | null;
335
403
  totalRam: string | null;
336
- activeConfigProfileUuid: string | null;
337
- activeInbounds: {
338
- type: string;
339
- uuid: string;
340
- profileUuid: string;
341
- tag: string;
342
- network: string | null;
343
- security: string | null;
344
- port: number | null;
345
- rawInbound?: unknown;
346
- }[] | null;
404
+ configProfile: {
405
+ activeConfigProfileUuid: string | null;
406
+ activeInbounds: {
407
+ type: string;
408
+ uuid: string;
409
+ profileUuid: string;
410
+ tag: string;
411
+ network: string | null;
412
+ security: string | null;
413
+ port: number | null;
414
+ rawInbound?: unknown;
415
+ }[];
416
+ };
347
417
  providerUuid: string | null;
348
418
  provider: {
349
419
  uuid: string;
@@ -383,17 +453,19 @@ export declare namespace UpdateNodeCommand {
383
453
  cpuCount: number | null;
384
454
  cpuModel: string | null;
385
455
  totalRam: string | null;
386
- activeConfigProfileUuid: string | null;
387
- activeInbounds: {
388
- type: string;
389
- uuid: string;
390
- profileUuid: string;
391
- tag: string;
392
- network: string | null;
393
- security: string | null;
394
- port: number | null;
395
- rawInbound?: unknown;
396
- }[] | null;
456
+ configProfile: {
457
+ activeConfigProfileUuid: string | null;
458
+ activeInbounds: {
459
+ type: string;
460
+ uuid: string;
461
+ profileUuid: string;
462
+ tag: string;
463
+ network: string | null;
464
+ security: string | null;
465
+ port: number | null;
466
+ rawInbound?: unknown;
467
+ }[];
468
+ };
397
469
  providerUuid: string | null;
398
470
  provider: {
399
471
  uuid: string;
@@ -1 +1 @@
1
- {"version":3,"file":"update.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/update.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAAkE,CAAC;IAExF,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAoCxB,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"}
1
+ {"version":3,"file":"update.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/update.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAAkE,CAAC;IAExF,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAuCxB,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"}
@@ -31,10 +31,14 @@ var UpdateNodeCommand;
31
31
  .number()
32
32
  .min(0.1, 'Consumption multiplier must be greater than 0')
33
33
  .transform((n) => Number(n.toFixed(1)))),
34
- activeConfigProfileUuid: zod_1.z.optional(zod_1.z.string().uuid()),
35
- activeInbounds: zod_1.z.optional(zod_1.z.array(zod_1.z.string().uuid(), {
36
- invalid_type_error: 'Active inbounds must be an array of UUIDs',
37
- })),
34
+ configProfile: zod_1.z
35
+ .object({
36
+ activeConfigProfileUuid: zod_1.z.string().uuid(),
37
+ activeInbounds: zod_1.z.array(zod_1.z.string().uuid(), {
38
+ invalid_type_error: 'Must be an array of UUIDs',
39
+ }),
40
+ })
41
+ .optional(),
38
42
  providerUuid: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string().uuid())),
39
43
  });
40
44
  UpdateNodeCommand.ResponseSchema = zod_1.z.object({
@@ -26,35 +26,61 @@ export declare const InfraBillingAvailableNodeSchema: import("zod").ZodObject<Pi
26
26
  totalRam: import("zod").ZodNullable<import("zod").ZodString>;
27
27
  createdAt: import("zod").ZodEffects<import("zod").ZodString, Date, string>;
28
28
  updatedAt: import("zod").ZodEffects<import("zod").ZodString, Date, string>;
29
- activeConfigProfileUuid: import("zod").ZodNullable<import("zod").ZodString>;
30
- activeInbounds: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
31
- uuid: import("zod").ZodString;
32
- profileUuid: import("zod").ZodString;
33
- tag: import("zod").ZodString;
34
- type: import("zod").ZodString;
35
- network: import("zod").ZodNullable<import("zod").ZodString>;
36
- security: import("zod").ZodNullable<import("zod").ZodString>;
37
- port: import("zod").ZodNullable<import("zod").ZodNumber>;
38
- rawInbound: import("zod").ZodNullable<import("zod").ZodUnknown>;
29
+ configProfile: import("zod").ZodObject<{
30
+ activeConfigProfileUuid: import("zod").ZodNullable<import("zod").ZodString>;
31
+ activeInbounds: import("zod").ZodArray<import("zod").ZodObject<{
32
+ uuid: import("zod").ZodString;
33
+ profileUuid: import("zod").ZodString;
34
+ tag: import("zod").ZodString;
35
+ type: import("zod").ZodString;
36
+ network: import("zod").ZodNullable<import("zod").ZodString>;
37
+ security: import("zod").ZodNullable<import("zod").ZodString>;
38
+ port: import("zod").ZodNullable<import("zod").ZodNumber>;
39
+ rawInbound: import("zod").ZodNullable<import("zod").ZodUnknown>;
40
+ }, "strip", import("zod").ZodTypeAny, {
41
+ type: string;
42
+ uuid: string;
43
+ profileUuid: string;
44
+ tag: string;
45
+ network: string | null;
46
+ security: string | null;
47
+ port: number | null;
48
+ rawInbound?: unknown;
49
+ }, {
50
+ type: string;
51
+ uuid: string;
52
+ profileUuid: string;
53
+ tag: string;
54
+ network: string | null;
55
+ security: string | null;
56
+ port: number | null;
57
+ rawInbound?: unknown;
58
+ }>, "many">;
39
59
  }, "strip", import("zod").ZodTypeAny, {
40
- type: string;
41
- uuid: string;
42
- profileUuid: string;
43
- tag: string;
44
- network: string | null;
45
- security: string | null;
46
- port: number | null;
47
- rawInbound?: unknown;
60
+ activeConfigProfileUuid: string | null;
61
+ activeInbounds: {
62
+ type: string;
63
+ uuid: string;
64
+ profileUuid: string;
65
+ tag: string;
66
+ network: string | null;
67
+ security: string | null;
68
+ port: number | null;
69
+ rawInbound?: unknown;
70
+ }[];
48
71
  }, {
49
- type: string;
50
- uuid: string;
51
- profileUuid: string;
52
- tag: string;
53
- network: string | null;
54
- security: string | null;
55
- port: number | null;
56
- rawInbound?: unknown;
57
- }>, "many">>;
72
+ activeConfigProfileUuid: string | null;
73
+ activeInbounds: {
74
+ type: string;
75
+ uuid: string;
76
+ profileUuid: string;
77
+ tag: string;
78
+ network: string | null;
79
+ security: string | null;
80
+ port: number | null;
81
+ rawInbound?: unknown;
82
+ }[];
83
+ }>;
58
84
  providerUuid: import("zod").ZodNullable<import("zod").ZodString>;
59
85
  provider: import("zod").ZodNullable<import("zod").ZodObject<{
60
86
  uuid: import("zod").ZodString;
@@ -1 +1 @@
1
- {"version":3,"file":"infra-billing-available-node.schema.d.ts","sourceRoot":"","sources":["../../../models/infra-billing-available-node.schema.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI1C,CAAC"}
1
+ {"version":3,"file":"infra-billing-available-node.schema.d.ts","sourceRoot":"","sources":["../../../models/infra-billing-available-node.schema.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI1C,CAAC"}
@@ -49,35 +49,61 @@ export declare const InfraBillingNodeSchema: z.ZodObject<{
49
49
  totalRam: z.ZodNullable<z.ZodString>;
50
50
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
51
51
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
52
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
53
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
54
- uuid: z.ZodString;
55
- profileUuid: z.ZodString;
56
- tag: z.ZodString;
57
- type: z.ZodString;
58
- network: z.ZodNullable<z.ZodString>;
59
- security: z.ZodNullable<z.ZodString>;
60
- port: z.ZodNullable<z.ZodNumber>;
61
- rawInbound: z.ZodNullable<z.ZodUnknown>;
52
+ configProfile: z.ZodObject<{
53
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
54
+ activeInbounds: z.ZodArray<z.ZodObject<{
55
+ uuid: z.ZodString;
56
+ profileUuid: z.ZodString;
57
+ tag: z.ZodString;
58
+ type: z.ZodString;
59
+ network: z.ZodNullable<z.ZodString>;
60
+ security: z.ZodNullable<z.ZodString>;
61
+ port: z.ZodNullable<z.ZodNumber>;
62
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
63
+ }, "strip", z.ZodTypeAny, {
64
+ type: string;
65
+ uuid: string;
66
+ profileUuid: string;
67
+ tag: string;
68
+ network: string | null;
69
+ security: string | null;
70
+ port: number | null;
71
+ rawInbound?: unknown;
72
+ }, {
73
+ type: string;
74
+ uuid: string;
75
+ profileUuid: string;
76
+ tag: string;
77
+ network: string | null;
78
+ security: string | null;
79
+ port: number | null;
80
+ rawInbound?: unknown;
81
+ }>, "many">;
62
82
  }, "strip", z.ZodTypeAny, {
63
- type: string;
64
- uuid: string;
65
- profileUuid: string;
66
- tag: string;
67
- network: string | null;
68
- security: string | null;
69
- port: number | null;
70
- rawInbound?: unknown;
83
+ activeConfigProfileUuid: string | null;
84
+ activeInbounds: {
85
+ type: string;
86
+ uuid: string;
87
+ profileUuid: string;
88
+ tag: string;
89
+ network: string | null;
90
+ security: string | null;
91
+ port: number | null;
92
+ rawInbound?: unknown;
93
+ }[];
71
94
  }, {
72
- type: string;
73
- uuid: string;
74
- profileUuid: string;
75
- tag: string;
76
- network: string | null;
77
- security: string | null;
78
- port: number | null;
79
- rawInbound?: unknown;
80
- }>, "many">>;
95
+ activeConfigProfileUuid: string | null;
96
+ activeInbounds: {
97
+ type: string;
98
+ uuid: string;
99
+ profileUuid: string;
100
+ tag: string;
101
+ network: string | null;
102
+ security: string | null;
103
+ port: number | null;
104
+ rawInbound?: unknown;
105
+ }[];
106
+ }>;
81
107
  providerUuid: z.ZodNullable<z.ZodString>;
82
108
  provider: z.ZodNullable<z.ZodObject<{
83
109
  uuid: z.ZodString;
@@ -1 +1 @@
1
- {"version":3,"file":"infra-billing-node.schema.d.ts","sourceRoot":"","sources":["../../../models/infra-billing-node.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6BjC,CAAC"}
1
+ {"version":3,"file":"infra-billing-node.schema.d.ts","sourceRoot":"","sources":["../../../models/infra-billing-node.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6BjC,CAAC"}