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