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

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
@@ -70,35 +70,61 @@ export declare namespace CreateInfraBillingNodeCommand {
70
70
  totalRam: z.ZodNullable<z.ZodString>;
71
71
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
72
72
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
73
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
74
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
75
- uuid: z.ZodString;
76
- profileUuid: z.ZodString;
77
- tag: z.ZodString;
78
- type: z.ZodString;
79
- network: z.ZodNullable<z.ZodString>;
80
- security: z.ZodNullable<z.ZodString>;
81
- port: z.ZodNullable<z.ZodNumber>;
82
- rawInbound: z.ZodNullable<z.ZodUnknown>;
73
+ configProfile: z.ZodObject<{
74
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
75
+ activeInbounds: z.ZodArray<z.ZodObject<{
76
+ uuid: z.ZodString;
77
+ profileUuid: z.ZodString;
78
+ tag: z.ZodString;
79
+ type: z.ZodString;
80
+ network: z.ZodNullable<z.ZodString>;
81
+ security: z.ZodNullable<z.ZodString>;
82
+ port: z.ZodNullable<z.ZodNumber>;
83
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
84
+ }, "strip", z.ZodTypeAny, {
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
+ }, {
94
+ type: string;
95
+ uuid: string;
96
+ profileUuid: string;
97
+ tag: string;
98
+ network: string | null;
99
+ security: string | null;
100
+ port: number | null;
101
+ rawInbound?: unknown;
102
+ }>, "many">;
83
103
  }, "strip", z.ZodTypeAny, {
84
- type: string;
85
- uuid: string;
86
- profileUuid: string;
87
- tag: string;
88
- network: string | null;
89
- security: string | null;
90
- port: number | null;
91
- rawInbound?: unknown;
104
+ activeConfigProfileUuid: string | null;
105
+ activeInbounds: {
106
+ type: string;
107
+ uuid: string;
108
+ profileUuid: string;
109
+ tag: string;
110
+ network: string | null;
111
+ security: string | null;
112
+ port: number | null;
113
+ rawInbound?: unknown;
114
+ }[];
92
115
  }, {
93
- type: string;
94
- uuid: string;
95
- profileUuid: string;
96
- tag: string;
97
- network: string | null;
98
- security: string | null;
99
- port: number | null;
100
- rawInbound?: unknown;
101
- }>, "many">>;
116
+ activeConfigProfileUuid: string | null;
117
+ activeInbounds: {
118
+ type: string;
119
+ uuid: string;
120
+ profileUuid: string;
121
+ tag: string;
122
+ network: string | null;
123
+ security: string | null;
124
+ port: number | null;
125
+ rawInbound?: unknown;
126
+ }[];
127
+ }>;
102
128
  providerUuid: z.ZodNullable<z.ZodString>;
103
129
  provider: z.ZodNullable<z.ZodObject<{
104
130
  uuid: z.ZodString;
@@ -199,35 +225,61 @@ export declare namespace CreateInfraBillingNodeCommand {
199
225
  totalRam: z.ZodNullable<z.ZodString>;
200
226
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
201
227
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
202
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
203
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
204
- uuid: z.ZodString;
205
- profileUuid: z.ZodString;
206
- tag: z.ZodString;
207
- type: z.ZodString;
208
- network: z.ZodNullable<z.ZodString>;
209
- security: z.ZodNullable<z.ZodString>;
210
- port: z.ZodNullable<z.ZodNumber>;
211
- rawInbound: z.ZodNullable<z.ZodUnknown>;
228
+ configProfile: z.ZodObject<{
229
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
230
+ activeInbounds: z.ZodArray<z.ZodObject<{
231
+ uuid: z.ZodString;
232
+ profileUuid: z.ZodString;
233
+ tag: z.ZodString;
234
+ type: z.ZodString;
235
+ network: z.ZodNullable<z.ZodString>;
236
+ security: z.ZodNullable<z.ZodString>;
237
+ port: z.ZodNullable<z.ZodNumber>;
238
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
239
+ }, "strip", z.ZodTypeAny, {
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
+ }, {
249
+ type: string;
250
+ uuid: string;
251
+ profileUuid: string;
252
+ tag: string;
253
+ network: string | null;
254
+ security: string | null;
255
+ port: number | null;
256
+ rawInbound?: unknown;
257
+ }>, "many">;
212
258
  }, "strip", z.ZodTypeAny, {
213
- type: string;
214
- uuid: string;
215
- profileUuid: string;
216
- tag: string;
217
- network: string | null;
218
- security: string | null;
219
- port: number | null;
220
- rawInbound?: unknown;
259
+ activeConfigProfileUuid: string | null;
260
+ activeInbounds: {
261
+ type: string;
262
+ uuid: string;
263
+ profileUuid: string;
264
+ tag: string;
265
+ network: string | null;
266
+ security: string | null;
267
+ port: number | null;
268
+ rawInbound?: unknown;
269
+ }[];
221
270
  }, {
222
- type: string;
223
- uuid: string;
224
- profileUuid: string;
225
- tag: string;
226
- network: string | null;
227
- security: string | null;
228
- port: number | null;
229
- rawInbound?: unknown;
230
- }>, "many">>;
271
+ activeConfigProfileUuid: string | null;
272
+ activeInbounds: {
273
+ type: string;
274
+ uuid: string;
275
+ profileUuid: string;
276
+ tag: string;
277
+ network: string | null;
278
+ security: string | null;
279
+ port: number | null;
280
+ rawInbound?: unknown;
281
+ }[];
282
+ }>;
231
283
  providerUuid: z.ZodNullable<z.ZodString>;
232
284
  provider: z.ZodNullable<z.ZodObject<{
233
285
  uuid: z.ZodString;
@@ -1 +1 @@
1
- {"version":3,"file":"create-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/create-billing-node.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,4BAA6C,CAAC;IACvD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;MAWxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"create-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/create-billing-node.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,4BAA6C,CAAC;IACvD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;MAWxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -64,35 +64,61 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
64
64
  totalRam: z.ZodNullable<z.ZodString>;
65
65
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
66
66
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
67
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
68
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
69
- uuid: z.ZodString;
70
- profileUuid: z.ZodString;
71
- tag: z.ZodString;
72
- type: z.ZodString;
73
- network: z.ZodNullable<z.ZodString>;
74
- security: z.ZodNullable<z.ZodString>;
75
- port: z.ZodNullable<z.ZodNumber>;
76
- rawInbound: z.ZodNullable<z.ZodUnknown>;
67
+ configProfile: z.ZodObject<{
68
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
69
+ activeInbounds: z.ZodArray<z.ZodObject<{
70
+ uuid: z.ZodString;
71
+ profileUuid: z.ZodString;
72
+ tag: z.ZodString;
73
+ type: z.ZodString;
74
+ network: z.ZodNullable<z.ZodString>;
75
+ security: z.ZodNullable<z.ZodString>;
76
+ port: z.ZodNullable<z.ZodNumber>;
77
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
78
+ }, "strip", z.ZodTypeAny, {
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
+ type: string;
89
+ uuid: string;
90
+ profileUuid: string;
91
+ tag: string;
92
+ network: string | null;
93
+ security: string | null;
94
+ port: number | null;
95
+ rawInbound?: unknown;
96
+ }>, "many">;
77
97
  }, "strip", z.ZodTypeAny, {
78
- type: string;
79
- uuid: string;
80
- profileUuid: string;
81
- tag: string;
82
- network: string | null;
83
- security: string | null;
84
- port: number | null;
85
- rawInbound?: unknown;
98
+ activeConfigProfileUuid: string | null;
99
+ activeInbounds: {
100
+ type: string;
101
+ uuid: string;
102
+ profileUuid: string;
103
+ tag: string;
104
+ network: string | null;
105
+ security: string | null;
106
+ port: number | null;
107
+ rawInbound?: unknown;
108
+ }[];
86
109
  }, {
87
- type: string;
88
- uuid: string;
89
- profileUuid: string;
90
- tag: string;
91
- network: string | null;
92
- security: string | null;
93
- port: number | null;
94
- rawInbound?: unknown;
95
- }>, "many">>;
110
+ activeConfigProfileUuid: string | null;
111
+ activeInbounds: {
112
+ type: string;
113
+ uuid: string;
114
+ profileUuid: string;
115
+ tag: string;
116
+ network: string | null;
117
+ security: string | null;
118
+ port: number | null;
119
+ rawInbound?: unknown;
120
+ }[];
121
+ }>;
96
122
  providerUuid: z.ZodNullable<z.ZodString>;
97
123
  provider: z.ZodNullable<z.ZodObject<{
98
124
  uuid: z.ZodString;
@@ -193,35 +219,61 @@ export declare namespace DeleteInfraBillingNodeByUuidCommand {
193
219
  totalRam: z.ZodNullable<z.ZodString>;
194
220
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
195
221
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
196
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
197
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
198
- uuid: z.ZodString;
199
- profileUuid: z.ZodString;
200
- tag: z.ZodString;
201
- type: z.ZodString;
202
- network: z.ZodNullable<z.ZodString>;
203
- security: z.ZodNullable<z.ZodString>;
204
- port: z.ZodNullable<z.ZodNumber>;
205
- rawInbound: z.ZodNullable<z.ZodUnknown>;
222
+ configProfile: z.ZodObject<{
223
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
224
+ activeInbounds: z.ZodArray<z.ZodObject<{
225
+ uuid: z.ZodString;
226
+ profileUuid: z.ZodString;
227
+ tag: z.ZodString;
228
+ type: z.ZodString;
229
+ network: z.ZodNullable<z.ZodString>;
230
+ security: z.ZodNullable<z.ZodString>;
231
+ port: z.ZodNullable<z.ZodNumber>;
232
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
233
+ }, "strip", z.ZodTypeAny, {
234
+ type: string;
235
+ uuid: string;
236
+ profileUuid: string;
237
+ tag: string;
238
+ network: string | null;
239
+ security: string | null;
240
+ port: number | null;
241
+ rawInbound?: unknown;
242
+ }, {
243
+ type: string;
244
+ uuid: string;
245
+ profileUuid: string;
246
+ tag: string;
247
+ network: string | null;
248
+ security: string | null;
249
+ port: number | null;
250
+ rawInbound?: unknown;
251
+ }>, "many">;
206
252
  }, "strip", z.ZodTypeAny, {
207
- type: string;
208
- uuid: string;
209
- profileUuid: string;
210
- tag: string;
211
- network: string | null;
212
- security: string | null;
213
- port: number | null;
214
- rawInbound?: unknown;
253
+ activeConfigProfileUuid: string | null;
254
+ activeInbounds: {
255
+ type: string;
256
+ uuid: string;
257
+ profileUuid: string;
258
+ tag: string;
259
+ network: string | null;
260
+ security: string | null;
261
+ port: number | null;
262
+ rawInbound?: unknown;
263
+ }[];
215
264
  }, {
216
- type: string;
217
- uuid: string;
218
- profileUuid: string;
219
- tag: string;
220
- network: string | null;
221
- security: string | null;
222
- port: number | null;
223
- rawInbound?: unknown;
224
- }>, "many">>;
265
+ activeConfigProfileUuid: string | null;
266
+ activeInbounds: {
267
+ type: string;
268
+ uuid: string;
269
+ profileUuid: string;
270
+ tag: string;
271
+ network: string | null;
272
+ security: string | null;
273
+ port: number | null;
274
+ rawInbound?: unknown;
275
+ }[];
276
+ }>;
225
277
  providerUuid: z.ZodNullable<z.ZodString>;
226
278
  provider: z.ZodNullable<z.ZodObject<{
227
279
  uuid: z.ZodString;
@@ -1 +1 @@
1
- {"version":3,"file":"delete-billing-node-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/delete-billing-node-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mCAAmC,CAAC;IAC1C,MAAM,GAAG,QAAsD,CAAC;IAChE,MAAM,OAAO,QAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"delete-billing-node-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/delete-billing-node-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mCAAmC,CAAC;IAC1C,MAAM,GAAG,QAAsD,CAAC;IAChE,MAAM,OAAO,QAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -56,35 +56,61 @@ export declare namespace GetInfraBillingNodesCommand {
56
56
  totalRam: z.ZodNullable<z.ZodString>;
57
57
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
58
58
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
59
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
60
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
61
- uuid: z.ZodString;
62
- profileUuid: z.ZodString;
63
- tag: z.ZodString;
64
- type: z.ZodString;
65
- network: z.ZodNullable<z.ZodString>;
66
- security: z.ZodNullable<z.ZodString>;
67
- port: z.ZodNullable<z.ZodNumber>;
68
- rawInbound: z.ZodNullable<z.ZodUnknown>;
59
+ configProfile: z.ZodObject<{
60
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
61
+ activeInbounds: z.ZodArray<z.ZodObject<{
62
+ uuid: z.ZodString;
63
+ profileUuid: z.ZodString;
64
+ tag: z.ZodString;
65
+ type: z.ZodString;
66
+ network: z.ZodNullable<z.ZodString>;
67
+ security: z.ZodNullable<z.ZodString>;
68
+ port: z.ZodNullable<z.ZodNumber>;
69
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
70
+ }, "strip", z.ZodTypeAny, {
71
+ type: string;
72
+ uuid: string;
73
+ profileUuid: string;
74
+ tag: string;
75
+ network: string | null;
76
+ security: string | null;
77
+ port: number | null;
78
+ rawInbound?: unknown;
79
+ }, {
80
+ type: string;
81
+ uuid: string;
82
+ profileUuid: string;
83
+ tag: string;
84
+ network: string | null;
85
+ security: string | null;
86
+ port: number | null;
87
+ rawInbound?: unknown;
88
+ }>, "many">;
69
89
  }, "strip", z.ZodTypeAny, {
70
- type: string;
71
- uuid: string;
72
- profileUuid: string;
73
- tag: string;
74
- network: string | null;
75
- security: string | null;
76
- port: number | null;
77
- rawInbound?: unknown;
90
+ activeConfigProfileUuid: string | null;
91
+ activeInbounds: {
92
+ type: string;
93
+ uuid: string;
94
+ profileUuid: string;
95
+ tag: string;
96
+ network: string | null;
97
+ security: string | null;
98
+ port: number | null;
99
+ rawInbound?: unknown;
100
+ }[];
78
101
  }, {
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
- }>, "many">>;
102
+ activeConfigProfileUuid: string | null;
103
+ activeInbounds: {
104
+ type: string;
105
+ uuid: string;
106
+ profileUuid: string;
107
+ tag: string;
108
+ network: string | null;
109
+ security: string | null;
110
+ port: number | null;
111
+ rawInbound?: unknown;
112
+ }[];
113
+ }>;
88
114
  providerUuid: z.ZodNullable<z.ZodString>;
89
115
  provider: z.ZodNullable<z.ZodObject<{
90
116
  uuid: z.ZodString;
@@ -185,35 +211,61 @@ export declare namespace GetInfraBillingNodesCommand {
185
211
  totalRam: z.ZodNullable<z.ZodString>;
186
212
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
187
213
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
188
- activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
189
- activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
190
- uuid: z.ZodString;
191
- profileUuid: z.ZodString;
192
- tag: z.ZodString;
193
- type: z.ZodString;
194
- network: z.ZodNullable<z.ZodString>;
195
- security: z.ZodNullable<z.ZodString>;
196
- port: z.ZodNullable<z.ZodNumber>;
197
- rawInbound: z.ZodNullable<z.ZodUnknown>;
214
+ configProfile: z.ZodObject<{
215
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
216
+ activeInbounds: z.ZodArray<z.ZodObject<{
217
+ uuid: z.ZodString;
218
+ profileUuid: z.ZodString;
219
+ tag: z.ZodString;
220
+ type: z.ZodString;
221
+ network: z.ZodNullable<z.ZodString>;
222
+ security: z.ZodNullable<z.ZodString>;
223
+ port: z.ZodNullable<z.ZodNumber>;
224
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
225
+ }, "strip", z.ZodTypeAny, {
226
+ type: string;
227
+ uuid: string;
228
+ profileUuid: string;
229
+ tag: string;
230
+ network: string | null;
231
+ security: string | null;
232
+ port: number | null;
233
+ rawInbound?: unknown;
234
+ }, {
235
+ type: string;
236
+ uuid: string;
237
+ profileUuid: string;
238
+ tag: string;
239
+ network: string | null;
240
+ security: string | null;
241
+ port: number | null;
242
+ rawInbound?: unknown;
243
+ }>, "many">;
198
244
  }, "strip", z.ZodTypeAny, {
199
- type: string;
200
- uuid: string;
201
- profileUuid: string;
202
- tag: string;
203
- network: string | null;
204
- security: string | null;
205
- port: number | null;
206
- rawInbound?: unknown;
245
+ activeConfigProfileUuid: string | null;
246
+ activeInbounds: {
247
+ type: string;
248
+ uuid: string;
249
+ profileUuid: string;
250
+ tag: string;
251
+ network: string | null;
252
+ security: string | null;
253
+ port: number | null;
254
+ rawInbound?: unknown;
255
+ }[];
207
256
  }, {
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
- }>, "many">>;
257
+ activeConfigProfileUuid: string | null;
258
+ activeInbounds: {
259
+ type: string;
260
+ uuid: string;
261
+ profileUuid: string;
262
+ tag: string;
263
+ network: string | null;
264
+ security: string | null;
265
+ port: number | null;
266
+ rawInbound?: unknown;
267
+ }[];
268
+ }>;
217
269
  providerUuid: z.ZodNullable<z.ZodString>;
218
270
  provider: z.ZodNullable<z.ZodObject<{
219
271
  uuid: z.ZodString;
@@ -1 +1 @@
1
- {"version":3,"file":"get-blling-nodes.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-blling-nodes.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,2BAA2B,CAAC;IAClC,MAAM,GAAG,4BAA2C,CAAC;IACrD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-blling-nodes.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-blling-nodes.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,2BAA2B,CAAC;IAClC,MAAM,GAAG,4BAA2C,CAAC;IACrD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}