@remnawave/backend-contract 2.0.0-alpha.12 → 2.0.0-alpha.15

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 (52) hide show
  1. package/build/backend/commands/infra-billing/create-bill-record.command.d.ts +15 -15
  2. package/build/backend/commands/infra-billing/create-bill-record.command.d.ts.map +1 -1
  3. package/build/backend/commands/infra-billing/create-bill-record.command.js +0 -1
  4. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +364 -0
  5. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -0
  6. package/build/backend/commands/infra-billing/create-billing-node.command.js +33 -0
  7. package/build/backend/commands/infra-billing/delete-bill-record-by-uuid.command.d.ts +12 -12
  8. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +358 -0
  9. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -0
  10. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.js +24 -0
  11. package/build/backend/commands/infra-billing/get-bill-records.command.d.ts +12 -12
  12. package/build/backend/commands/infra-billing/get-blling-nodes.command.d.ts +350 -0
  13. package/build/backend/commands/infra-billing/get-blling-nodes.command.d.ts.map +1 -0
  14. package/build/backend/commands/infra-billing/get-blling-nodes.command.js +21 -0
  15. package/build/backend/commands/infra-billing/index.d.ts +4 -0
  16. package/build/backend/commands/infra-billing/index.d.ts.map +1 -1
  17. package/build/backend/commands/infra-billing/index.js +4 -0
  18. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +361 -0
  19. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -0
  20. package/build/backend/commands/infra-billing/update-billing-node.command.js +31 -0
  21. package/build/backend/commands/nodes/actions/disable.command.d.ts +36 -36
  22. package/build/backend/commands/nodes/actions/enable.command.d.ts +36 -36
  23. package/build/backend/commands/nodes/actions/reorder.command.d.ts +36 -36
  24. package/build/backend/commands/nodes/create.command.d.ts +38 -38
  25. package/build/backend/commands/nodes/get-all.command.d.ts +36 -36
  26. package/build/backend/commands/nodes/get-one.command.d.ts +36 -36
  27. package/build/backend/commands/nodes/update.command.d.ts +38 -38
  28. package/build/backend/constants/errors/errors.d.ts +20 -0
  29. package/build/backend/constants/errors/errors.d.ts.map +1 -1
  30. package/build/backend/constants/errors/errors.js +20 -0
  31. package/build/backend/models/index.d.ts +2 -0
  32. package/build/backend/models/index.d.ts.map +1 -1
  33. package/build/backend/models/index.js +2 -0
  34. package/build/backend/models/infra-billing-available-node.schema.d.ts +90 -0
  35. package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -0
  36. package/build/backend/models/infra-billing-available-node.schema.js +9 -0
  37. package/build/backend/models/infra-billing-history-record.schema.d.ts +4 -4
  38. package/build/backend/models/infra-billing-node.schema.d.ts +145 -0
  39. package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -0
  40. package/build/backend/models/infra-billing-node.schema.js +34 -0
  41. package/build/backend/models/nodes.schema.d.ts +18 -18
  42. package/build/frontend/commands/infra-billing/create-bill-record.command.js +0 -1
  43. package/build/frontend/commands/infra-billing/create-billing-node.command.js +33 -0
  44. package/build/frontend/commands/infra-billing/delete-billing-node-by-uuid.command.js +24 -0
  45. package/build/frontend/commands/infra-billing/get-blling-nodes.command.js +21 -0
  46. package/build/frontend/commands/infra-billing/index.js +4 -0
  47. package/build/frontend/commands/infra-billing/update-billing-node.command.js +31 -0
  48. package/build/frontend/constants/errors/errors.js +20 -0
  49. package/build/frontend/models/index.js +2 -0
  50. package/build/frontend/models/infra-billing-available-node.schema.js +9 -0
  51. package/build/frontend/models/infra-billing-node.schema.js +34 -0
  52. package/package.json +1 -1
@@ -0,0 +1,350 @@
1
+ import { z } from 'zod';
2
+ export declare namespace GetInfraBillingNodesCommand {
3
+ const url: "/api/infra-billing/nodes";
4
+ const TSQ_url: "/api/infra-billing/nodes";
5
+ const endpointDetails: import("../../constants").EndpointDetails;
6
+ const ResponseSchema: z.ZodObject<{
7
+ response: z.ZodObject<{
8
+ totalBillingNodes: z.ZodNumber;
9
+ billingNodes: z.ZodArray<z.ZodObject<{
10
+ uuid: z.ZodString;
11
+ nodeUuid: z.ZodString;
12
+ providerUuid: z.ZodString;
13
+ provider: z.ZodObject<Omit<{
14
+ uuid: z.ZodString;
15
+ name: z.ZodString;
16
+ faviconLink: z.ZodNullable<z.ZodString>;
17
+ loginUrl: z.ZodNullable<z.ZodString>;
18
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
19
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
20
+ }, "createdAt" | "updatedAt" | "faviconLink" | "loginUrl">, "strip", z.ZodTypeAny, {
21
+ uuid: string;
22
+ name: string;
23
+ }, {
24
+ uuid: string;
25
+ name: string;
26
+ }>;
27
+ node: z.ZodObject<Pick<{
28
+ uuid: z.ZodString;
29
+ name: z.ZodString;
30
+ address: z.ZodString;
31
+ port: z.ZodNullable<z.ZodNumber>;
32
+ isConnected: z.ZodBoolean;
33
+ isDisabled: z.ZodBoolean;
34
+ isConnecting: z.ZodBoolean;
35
+ isNodeOnline: z.ZodBoolean;
36
+ isXrayRunning: z.ZodBoolean;
37
+ lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
38
+ lastStatusMessage: z.ZodNullable<z.ZodString>;
39
+ xrayVersion: z.ZodNullable<z.ZodString>;
40
+ xrayUptime: z.ZodString;
41
+ isTrafficTrackingActive: z.ZodBoolean;
42
+ trafficResetDay: z.ZodNullable<z.ZodNumber>;
43
+ trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
44
+ trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
45
+ notifyPercent: z.ZodNullable<z.ZodNumber>;
46
+ usersOnline: z.ZodNullable<z.ZodNumber>;
47
+ viewPosition: z.ZodNumber;
48
+ countryCode: z.ZodString;
49
+ consumptionMultiplier: z.ZodNumber;
50
+ cpuCount: z.ZodNullable<z.ZodNumber>;
51
+ cpuModel: z.ZodNullable<z.ZodString>;
52
+ totalRam: z.ZodNullable<z.ZodString>;
53
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
54
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
55
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
56
+ activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
57
+ uuid: z.ZodString;
58
+ profileUuid: z.ZodString;
59
+ tag: z.ZodString;
60
+ type: z.ZodString;
61
+ network: z.ZodNullable<z.ZodString>;
62
+ security: z.ZodNullable<z.ZodString>;
63
+ port: z.ZodNullable<z.ZodNumber>;
64
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
65
+ }, "strip", z.ZodTypeAny, {
66
+ type: string;
67
+ uuid: string;
68
+ profileUuid: string;
69
+ tag: string;
70
+ network: string | null;
71
+ security: string | null;
72
+ port: number | null;
73
+ rawInbound?: unknown;
74
+ }, {
75
+ type: string;
76
+ uuid: string;
77
+ profileUuid: string;
78
+ tag: string;
79
+ network: string | null;
80
+ security: string | null;
81
+ port: number | null;
82
+ rawInbound?: unknown;
83
+ }>, "many">>;
84
+ providerUuid: z.ZodNullable<z.ZodString>;
85
+ provider: z.ZodNullable<z.ZodObject<{
86
+ uuid: z.ZodString;
87
+ name: z.ZodString;
88
+ faviconLink: z.ZodNullable<z.ZodString>;
89
+ loginUrl: z.ZodNullable<z.ZodString>;
90
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
91
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
92
+ }, "strip", z.ZodTypeAny, {
93
+ uuid: string;
94
+ createdAt: Date;
95
+ updatedAt: Date;
96
+ name: string;
97
+ faviconLink: string | null;
98
+ loginUrl: string | null;
99
+ }, {
100
+ uuid: string;
101
+ createdAt: string;
102
+ updatedAt: string;
103
+ name: string;
104
+ faviconLink: string | null;
105
+ loginUrl: string | null;
106
+ }>>;
107
+ }, "uuid" | "name" | "countryCode">, "strip", z.ZodTypeAny, {
108
+ uuid: string;
109
+ name: string;
110
+ countryCode: string;
111
+ }, {
112
+ uuid: string;
113
+ name: string;
114
+ countryCode: string;
115
+ }>;
116
+ nextBillingAt: z.ZodEffects<z.ZodString, Date, string>;
117
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
118
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
119
+ }, "strip", z.ZodTypeAny, {
120
+ uuid: string;
121
+ createdAt: Date;
122
+ updatedAt: Date;
123
+ nodeUuid: string;
124
+ providerUuid: string;
125
+ provider: {
126
+ uuid: string;
127
+ name: string;
128
+ };
129
+ node: {
130
+ uuid: string;
131
+ name: string;
132
+ countryCode: string;
133
+ };
134
+ nextBillingAt: Date;
135
+ }, {
136
+ uuid: string;
137
+ createdAt: string;
138
+ updatedAt: string;
139
+ nodeUuid: string;
140
+ providerUuid: string;
141
+ provider: {
142
+ uuid: string;
143
+ name: string;
144
+ };
145
+ node: {
146
+ uuid: string;
147
+ name: string;
148
+ countryCode: string;
149
+ };
150
+ nextBillingAt: string;
151
+ }>, "many">;
152
+ availableBillingNodes: z.ZodArray<z.ZodObject<Pick<{
153
+ uuid: z.ZodString;
154
+ name: z.ZodString;
155
+ address: z.ZodString;
156
+ port: z.ZodNullable<z.ZodNumber>;
157
+ isConnected: z.ZodBoolean;
158
+ isDisabled: z.ZodBoolean;
159
+ isConnecting: z.ZodBoolean;
160
+ isNodeOnline: z.ZodBoolean;
161
+ isXrayRunning: z.ZodBoolean;
162
+ lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
163
+ lastStatusMessage: z.ZodNullable<z.ZodString>;
164
+ xrayVersion: z.ZodNullable<z.ZodString>;
165
+ xrayUptime: z.ZodString;
166
+ isTrafficTrackingActive: z.ZodBoolean;
167
+ trafficResetDay: z.ZodNullable<z.ZodNumber>;
168
+ trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
169
+ trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
170
+ notifyPercent: z.ZodNullable<z.ZodNumber>;
171
+ usersOnline: z.ZodNullable<z.ZodNumber>;
172
+ viewPosition: z.ZodNumber;
173
+ countryCode: z.ZodString;
174
+ consumptionMultiplier: z.ZodNumber;
175
+ cpuCount: z.ZodNullable<z.ZodNumber>;
176
+ cpuModel: z.ZodNullable<z.ZodString>;
177
+ totalRam: z.ZodNullable<z.ZodString>;
178
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
179
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
180
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
181
+ activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
182
+ uuid: z.ZodString;
183
+ profileUuid: z.ZodString;
184
+ tag: z.ZodString;
185
+ type: z.ZodString;
186
+ network: z.ZodNullable<z.ZodString>;
187
+ security: z.ZodNullable<z.ZodString>;
188
+ port: z.ZodNullable<z.ZodNumber>;
189
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
190
+ }, "strip", z.ZodTypeAny, {
191
+ type: string;
192
+ uuid: string;
193
+ profileUuid: string;
194
+ tag: string;
195
+ network: string | null;
196
+ security: string | null;
197
+ port: number | null;
198
+ rawInbound?: unknown;
199
+ }, {
200
+ type: string;
201
+ uuid: string;
202
+ profileUuid: string;
203
+ tag: string;
204
+ network: string | null;
205
+ security: string | null;
206
+ port: number | null;
207
+ rawInbound?: unknown;
208
+ }>, "many">>;
209
+ providerUuid: z.ZodNullable<z.ZodString>;
210
+ provider: z.ZodNullable<z.ZodObject<{
211
+ uuid: z.ZodString;
212
+ name: z.ZodString;
213
+ faviconLink: z.ZodNullable<z.ZodString>;
214
+ loginUrl: z.ZodNullable<z.ZodString>;
215
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
216
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
217
+ }, "strip", z.ZodTypeAny, {
218
+ uuid: string;
219
+ createdAt: Date;
220
+ updatedAt: Date;
221
+ name: string;
222
+ faviconLink: string | null;
223
+ loginUrl: string | null;
224
+ }, {
225
+ uuid: string;
226
+ createdAt: string;
227
+ updatedAt: string;
228
+ name: string;
229
+ faviconLink: string | null;
230
+ loginUrl: string | null;
231
+ }>>;
232
+ }, "uuid" | "name" | "countryCode">, "strip", z.ZodTypeAny, {
233
+ uuid: string;
234
+ name: string;
235
+ countryCode: string;
236
+ }, {
237
+ uuid: string;
238
+ name: string;
239
+ countryCode: string;
240
+ }>, "many">;
241
+ totalAvailableBillingNodes: z.ZodNumber;
242
+ }, "strip", z.ZodTypeAny, {
243
+ billingNodes: {
244
+ uuid: string;
245
+ createdAt: Date;
246
+ updatedAt: Date;
247
+ nodeUuid: string;
248
+ providerUuid: string;
249
+ provider: {
250
+ uuid: string;
251
+ name: string;
252
+ };
253
+ node: {
254
+ uuid: string;
255
+ name: string;
256
+ countryCode: string;
257
+ };
258
+ nextBillingAt: Date;
259
+ }[];
260
+ totalBillingNodes: number;
261
+ availableBillingNodes: {
262
+ uuid: string;
263
+ name: string;
264
+ countryCode: string;
265
+ }[];
266
+ totalAvailableBillingNodes: number;
267
+ }, {
268
+ billingNodes: {
269
+ uuid: string;
270
+ createdAt: string;
271
+ updatedAt: string;
272
+ nodeUuid: string;
273
+ providerUuid: string;
274
+ provider: {
275
+ uuid: string;
276
+ name: string;
277
+ };
278
+ node: {
279
+ uuid: string;
280
+ name: string;
281
+ countryCode: string;
282
+ };
283
+ nextBillingAt: string;
284
+ }[];
285
+ totalBillingNodes: number;
286
+ availableBillingNodes: {
287
+ uuid: string;
288
+ name: string;
289
+ countryCode: string;
290
+ }[];
291
+ totalAvailableBillingNodes: number;
292
+ }>;
293
+ }, "strip", z.ZodTypeAny, {
294
+ response: {
295
+ billingNodes: {
296
+ uuid: string;
297
+ createdAt: Date;
298
+ updatedAt: Date;
299
+ nodeUuid: string;
300
+ providerUuid: string;
301
+ provider: {
302
+ uuid: string;
303
+ name: string;
304
+ };
305
+ node: {
306
+ uuid: string;
307
+ name: string;
308
+ countryCode: string;
309
+ };
310
+ nextBillingAt: Date;
311
+ }[];
312
+ totalBillingNodes: number;
313
+ availableBillingNodes: {
314
+ uuid: string;
315
+ name: string;
316
+ countryCode: string;
317
+ }[];
318
+ totalAvailableBillingNodes: number;
319
+ };
320
+ }, {
321
+ response: {
322
+ billingNodes: {
323
+ uuid: string;
324
+ createdAt: string;
325
+ updatedAt: string;
326
+ nodeUuid: string;
327
+ providerUuid: string;
328
+ provider: {
329
+ uuid: string;
330
+ name: string;
331
+ };
332
+ node: {
333
+ uuid: string;
334
+ name: string;
335
+ countryCode: string;
336
+ };
337
+ nextBillingAt: string;
338
+ }[];
339
+ totalBillingNodes: number;
340
+ availableBillingNodes: {
341
+ uuid: string;
342
+ name: string;
343
+ countryCode: string;
344
+ }[];
345
+ totalAvailableBillingNodes: number;
346
+ };
347
+ }>;
348
+ type Response = z.infer<typeof ResponseSchema>;
349
+ }
350
+ //# sourceMappingURL=get-blling-nodes.command.d.ts.map
@@ -0,0 +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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetInfraBillingNodesCommand = void 0;
4
+ const zod_1 = require("zod");
5
+ const models_1 = require("../../models");
6
+ const api_1 = require("../../api");
7
+ const constants_1 = require("../../constants");
8
+ var GetInfraBillingNodesCommand;
9
+ (function (GetInfraBillingNodesCommand) {
10
+ GetInfraBillingNodesCommand.url = api_1.REST_API.INFRA_BILLING.GET_BILLING_NODES;
11
+ GetInfraBillingNodesCommand.TSQ_url = GetInfraBillingNodesCommand.url;
12
+ GetInfraBillingNodesCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.INFRA_BILLING_ROUTES.GET_BILLING_NODES, 'get', 'Get infra billing nodes');
13
+ GetInfraBillingNodesCommand.ResponseSchema = zod_1.z.object({
14
+ response: zod_1.z.object({
15
+ totalBillingNodes: zod_1.z.number(),
16
+ billingNodes: zod_1.z.array(models_1.InfraBillingNodeSchema),
17
+ availableBillingNodes: zod_1.z.array(models_1.InfraBillingAvailableNodeSchema),
18
+ totalAvailableBillingNodes: zod_1.z.number(),
19
+ }),
20
+ });
21
+ })(GetInfraBillingNodesCommand || (exports.GetInfraBillingNodesCommand = GetInfraBillingNodesCommand = {}));
@@ -1,9 +1,13 @@
1
1
  export * from './create-bill-record.command';
2
+ export * from './create-billing-node.command';
2
3
  export * from './create-infra-provider.command';
3
4
  export * from './delete-bill-record-by-uuid.command';
5
+ export * from './delete-billing-node-by-uuid.command';
4
6
  export * from './delete-infra-provider-by-uuid.command';
5
7
  export * from './get-bill-records.command';
8
+ export * from './get-blling-nodes.command';
6
9
  export * from './get-infra-provider-by-uuid.command';
7
10
  export * from './get-infra-providers.command';
11
+ export * from './update-billing-node.command';
8
12
  export * from './update-infra-provider.command';
9
13
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,sCAAsC,CAAC;AACrD,cAAc,yCAAyC,CAAC;AACxD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sCAAsC,CAAC;AACrD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iCAAiC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iCAAiC,CAAC;AAChD,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,yCAAyC,CAAC;AACxD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sCAAsC,CAAC;AACrD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iCAAiC,CAAC"}
@@ -15,10 +15,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./create-bill-record.command"), exports);
18
+ __exportStar(require("./create-billing-node.command"), exports);
18
19
  __exportStar(require("./create-infra-provider.command"), exports);
19
20
  __exportStar(require("./delete-bill-record-by-uuid.command"), exports);
21
+ __exportStar(require("./delete-billing-node-by-uuid.command"), exports);
20
22
  __exportStar(require("./delete-infra-provider-by-uuid.command"), exports);
21
23
  __exportStar(require("./get-bill-records.command"), exports);
24
+ __exportStar(require("./get-blling-nodes.command"), exports);
22
25
  __exportStar(require("./get-infra-provider-by-uuid.command"), exports);
23
26
  __exportStar(require("./get-infra-providers.command"), exports);
27
+ __exportStar(require("./update-billing-node.command"), exports);
24
28
  __exportStar(require("./update-infra-provider.command"), exports);