@remnawave/backend-contract 2.0.0-alpha.3 → 2.0.0-alpha.31

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 (223) hide show
  1. package/build/backend/api/controllers/index.d.ts +1 -0
  2. package/build/backend/api/controllers/index.d.ts.map +1 -1
  3. package/build/backend/api/controllers/index.js +1 -0
  4. package/build/backend/api/controllers/infra-billing.d.ts +16 -0
  5. package/build/backend/api/controllers/infra-billing.d.ts.map +1 -0
  6. package/build/backend/api/controllers/infra-billing.js +18 -0
  7. package/build/backend/api/controllers/internal-squads.d.ts +4 -0
  8. package/build/backend/api/controllers/internal-squads.d.ts.map +1 -1
  9. package/build/backend/api/controllers/internal-squads.js +5 -0
  10. package/build/backend/api/controllers/users.d.ts +1 -0
  11. package/build/backend/api/controllers/users.d.ts.map +1 -1
  12. package/build/backend/api/controllers/users.js +1 -0
  13. package/build/backend/api/routes.d.ts +19 -0
  14. package/build/backend/api/routes.d.ts.map +1 -1
  15. package/build/backend/api/routes.js +19 -0
  16. package/build/backend/commands/config-profiles/create-config-profile.command.js +2 -2
  17. package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts +31 -10
  18. package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts.map +1 -1
  19. package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts +31 -10
  20. package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts.map +1 -1
  21. package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts +31 -10
  22. package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts.map +1 -1
  23. package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts +31 -10
  24. package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts.map +1 -1
  25. package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts +31 -10
  26. package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts.map +1 -1
  27. package/build/backend/commands/hosts/create.command.d.ts +52 -19
  28. package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
  29. package/build/backend/commands/hosts/create.command.js +13 -13
  30. package/build/backend/commands/hosts/get-all.command.d.ts +31 -10
  31. package/build/backend/commands/hosts/get-all.command.d.ts.map +1 -1
  32. package/build/backend/commands/hosts/get-one.command.d.ts +31 -10
  33. package/build/backend/commands/hosts/get-one.command.d.ts.map +1 -1
  34. package/build/backend/commands/hosts/reorder.command.d.ts +11 -2
  35. package/build/backend/commands/hosts/reorder.command.d.ts.map +1 -1
  36. package/build/backend/commands/hosts/update.command.d.ts +63 -21
  37. package/build/backend/commands/hosts/update.command.d.ts.map +1 -1
  38. package/build/backend/commands/hosts/update.command.js +10 -11
  39. package/build/backend/commands/index.d.ts +1 -0
  40. package/build/backend/commands/index.d.ts.map +1 -1
  41. package/build/backend/commands/index.js +1 -0
  42. package/build/backend/commands/infra-billing/create-bill-record.command.d.ts +125 -0
  43. package/build/backend/commands/infra-billing/create-bill-record.command.d.ts.map +1 -0
  44. package/build/backend/commands/infra-billing/create-bill-record.command.js +30 -0
  45. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +467 -0
  46. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -0
  47. package/build/backend/commands/infra-billing/create-billing-node.command.js +38 -0
  48. package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts +123 -0
  49. package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts.map +1 -0
  50. package/build/backend/commands/infra-billing/create-infra-provider.command.js +24 -0
  51. package/build/backend/commands/infra-billing/delete-bill-record-by-uuid.command.d.ts +119 -0
  52. package/build/backend/commands/infra-billing/delete-bill-record-by-uuid.command.d.ts.map +1 -0
  53. package/build/backend/commands/infra-billing/delete-bill-record-by-uuid.command.js +22 -0
  54. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +461 -0
  55. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -0
  56. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.js +29 -0
  57. package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts +33 -0
  58. package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts.map +1 -0
  59. package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -0
  60. package/build/backend/commands/infra-billing/get-bill-records.command.d.ts +122 -0
  61. package/build/backend/commands/infra-billing/get-bill-records.command.d.ts.map +1 -0
  62. package/build/backend/commands/infra-billing/get-bill-records.command.js +31 -0
  63. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +453 -0
  64. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts.map +1 -0
  65. package/build/backend/commands/infra-billing/get-billing-nodes.command.js +26 -0
  66. package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts +117 -0
  67. package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts.map +1 -0
  68. package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
  69. package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts +156 -0
  70. package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts.map +1 -0
  71. package/build/backend/commands/infra-billing/get-infra-providers.command.js +19 -0
  72. package/build/backend/commands/infra-billing/index.d.ts +13 -0
  73. package/build/backend/commands/infra-billing/index.d.ts.map +1 -0
  74. package/build/backend/commands/infra-billing/index.js +28 -0
  75. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +464 -0
  76. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -0
  77. package/build/backend/commands/infra-billing/update-billing-node.command.js +35 -0
  78. package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts +126 -0
  79. package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts.map +1 -0
  80. package/build/backend/commands/infra-billing/update-infra-provider.command.js +26 -0
  81. package/build/backend/commands/internal-squads/bulk-actions/add-users-to-internal-squad.command.d.ts +33 -0
  82. package/build/backend/commands/internal-squads/bulk-actions/add-users-to-internal-squad.command.d.ts.map +1 -0
  83. package/build/backend/commands/internal-squads/bulk-actions/add-users-to-internal-squad.command.js +20 -0
  84. package/build/backend/commands/internal-squads/bulk-actions/delete-users-from-internal-squad.command.d.ts +33 -0
  85. package/build/backend/commands/internal-squads/bulk-actions/delete-users-from-internal-squad.command.d.ts.map +1 -0
  86. package/build/backend/commands/internal-squads/bulk-actions/delete-users-from-internal-squad.command.js +20 -0
  87. package/build/backend/commands/internal-squads/bulk-actions/index.d.ts +3 -0
  88. package/build/backend/commands/internal-squads/bulk-actions/index.d.ts.map +1 -0
  89. package/build/backend/commands/internal-squads/bulk-actions/index.js +18 -0
  90. package/build/backend/commands/internal-squads/create-internal-squad.command.js +2 -2
  91. package/build/backend/commands/internal-squads/{get-internal-squad-by-uuid..d.ts → get-internal-squad-by-uuid.d.ts} +1 -1
  92. package/build/backend/commands/internal-squads/get-internal-squad-by-uuid.d.ts.map +1 -0
  93. package/build/backend/commands/internal-squads/index.d.ts +2 -1
  94. package/build/backend/commands/internal-squads/index.d.ts.map +1 -1
  95. package/build/backend/commands/internal-squads/index.js +2 -1
  96. package/build/backend/commands/nodes/actions/disable.command.d.ts +162 -64
  97. package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
  98. package/build/backend/commands/nodes/actions/enable.command.d.ts +162 -64
  99. package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
  100. package/build/backend/commands/nodes/actions/reorder.command.d.ts +236 -88
  101. package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
  102. package/build/backend/commands/nodes/create.command.d.ts +183 -70
  103. package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
  104. package/build/backend/commands/nodes/create.command.js +7 -4
  105. package/build/backend/commands/nodes/get-all.command.d.ts +162 -64
  106. package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
  107. package/build/backend/commands/nodes/get-one.command.d.ts +162 -64
  108. package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
  109. package/build/backend/commands/nodes/stats/get-node-user-usage-by-range.command.d.ts +4 -4
  110. package/build/backend/commands/nodes/stats/get-nodes-usage-by-range.command.d.ts +4 -4
  111. package/build/backend/commands/nodes/update.command.d.ts +257 -94
  112. package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
  113. package/build/backend/commands/nodes/update.command.js +9 -4
  114. package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts +114 -0
  115. package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts.map +1 -0
  116. package/build/backend/commands/users/get-user-accessible-nodes.command.js +31 -0
  117. package/build/backend/commands/users/get-user-usage-by-range.command.d.ts +4 -4
  118. package/build/backend/commands/users/index.d.ts +1 -0
  119. package/build/backend/commands/users/index.d.ts.map +1 -1
  120. package/build/backend/commands/users/index.js +1 -0
  121. package/build/backend/constants/errors/errors.d.ts +105 -0
  122. package/build/backend/constants/errors/errors.d.ts.map +1 -1
  123. package/build/backend/constants/errors/errors.js +105 -0
  124. package/build/backend/constants/events/events.d.ts +11 -0
  125. package/build/backend/constants/events/events.d.ts.map +1 -1
  126. package/build/backend/constants/events/events.js +10 -0
  127. package/build/backend/constants/headers/headers.contants.d.ts +3 -0
  128. package/build/backend/constants/headers/headers.contants.d.ts.map +1 -0
  129. package/build/backend/constants/headers/headers.contants.js +5 -0
  130. package/build/backend/constants/headers/index.d.ts +2 -0
  131. package/build/backend/constants/headers/index.d.ts.map +1 -0
  132. package/build/backend/constants/headers/index.js +17 -0
  133. package/build/backend/constants/index.d.ts +2 -0
  134. package/build/backend/constants/index.d.ts.map +1 -1
  135. package/build/backend/constants/index.js +2 -0
  136. package/build/backend/constants/messaging/index.d.ts +2 -0
  137. package/build/backend/constants/messaging/index.d.ts.map +1 -0
  138. package/build/backend/constants/messaging/index.js +17 -0
  139. package/build/backend/constants/messaging/messaging.constants.d.ts +13 -0
  140. package/build/backend/constants/messaging/messaging.constants.d.ts.map +1 -0
  141. package/build/backend/constants/messaging/messaging.constants.js +19 -0
  142. package/build/backend/constants/metrics/metric-names.constant.d.ts +16 -0
  143. package/build/backend/constants/metrics/metric-names.constant.d.ts.map +1 -1
  144. package/build/backend/constants/metrics/metric-names.constant.js +16 -0
  145. package/build/backend/constants/templates/template-keys.d.ts +1 -1
  146. package/build/backend/constants/templates/template-keys.d.ts.map +1 -1
  147. package/build/backend/constants/templates/template-keys.js +1 -0
  148. package/build/backend/models/{extented-users.schema.d.ts → extended-users.schema.d.ts} +1 -1
  149. package/build/backend/models/{extented-users.schema.d.ts.map → extended-users.schema.d.ts.map} +1 -1
  150. package/build/backend/models/hosts.schema.d.ts +21 -6
  151. package/build/backend/models/hosts.schema.d.ts.map +1 -1
  152. package/build/backend/models/hosts.schema.js +5 -2
  153. package/build/backend/models/index.d.ts +5 -1
  154. package/build/backend/models/index.d.ts.map +1 -1
  155. package/build/backend/models/index.js +5 -1
  156. package/build/backend/models/infra-billing-available-node.schema.d.ts +117 -0
  157. package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -0
  158. package/build/backend/models/infra-billing-available-node.schema.js +9 -0
  159. package/build/backend/models/infra-billing-history-record.schema.d.ts +44 -0
  160. package/build/backend/models/infra-billing-history-record.schema.d.ts.map +1 -0
  161. package/build/backend/models/infra-billing-history-record.schema.js +19 -0
  162. package/build/backend/models/infra-billing-node.schema.d.ts +180 -0
  163. package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -0
  164. package/build/backend/models/infra-billing-node.schema.js +34 -0
  165. package/build/backend/models/infra-provider.schema.d.ts +87 -0
  166. package/build/backend/models/infra-provider.schema.d.ts.map +1 -0
  167. package/build/backend/models/infra-provider.schema.js +41 -0
  168. package/build/backend/models/nodes.schema.d.ts +118 -44
  169. package/build/backend/models/nodes.schema.d.ts.map +1 -1
  170. package/build/backend/models/nodes.schema.js +8 -2
  171. package/build/frontend/api/controllers/index.js +1 -0
  172. package/build/frontend/api/controllers/infra-billing.js +18 -0
  173. package/build/frontend/api/controllers/internal-squads.js +5 -0
  174. package/build/frontend/api/controllers/users.js +1 -0
  175. package/build/frontend/api/routes.js +19 -0
  176. package/build/frontend/commands/config-profiles/create-config-profile.command.js +2 -2
  177. package/build/frontend/commands/hosts/create.command.js +13 -13
  178. package/build/frontend/commands/hosts/update.command.js +10 -11
  179. package/build/frontend/commands/index.js +1 -0
  180. package/build/frontend/commands/infra-billing/create-bill-record.command.js +30 -0
  181. package/build/frontend/commands/infra-billing/create-billing-node.command.js +38 -0
  182. package/build/frontend/commands/infra-billing/create-infra-provider.command.js +24 -0
  183. package/build/frontend/commands/infra-billing/delete-bill-record-by-uuid.command.js +22 -0
  184. package/build/frontend/commands/infra-billing/delete-billing-node-by-uuid.command.js +29 -0
  185. package/build/frontend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -0
  186. package/build/frontend/commands/infra-billing/get-bill-records.command.js +31 -0
  187. package/build/frontend/commands/infra-billing/get-billing-nodes.command.js +26 -0
  188. package/build/frontend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
  189. package/build/frontend/commands/infra-billing/get-infra-providers.command.js +19 -0
  190. package/build/frontend/commands/infra-billing/index.js +28 -0
  191. package/build/frontend/commands/infra-billing/update-billing-node.command.js +35 -0
  192. package/build/frontend/commands/infra-billing/update-infra-provider.command.js +26 -0
  193. package/build/frontend/commands/internal-squads/bulk-actions/add-users-to-internal-squad.command.js +20 -0
  194. package/build/frontend/commands/internal-squads/bulk-actions/delete-users-from-internal-squad.command.js +20 -0
  195. package/build/frontend/commands/internal-squads/bulk-actions/index.js +18 -0
  196. package/build/frontend/commands/internal-squads/create-internal-squad.command.js +2 -2
  197. package/build/frontend/commands/internal-squads/index.js +2 -1
  198. package/build/frontend/commands/nodes/create.command.js +7 -4
  199. package/build/frontend/commands/nodes/update.command.js +9 -4
  200. package/build/frontend/commands/users/get-user-accessible-nodes.command.js +31 -0
  201. package/build/frontend/commands/users/index.js +1 -0
  202. package/build/frontend/constants/errors/errors.js +105 -0
  203. package/build/frontend/constants/events/events.js +10 -0
  204. package/build/frontend/constants/headers/headers.contants.js +5 -0
  205. package/build/frontend/constants/headers/index.js +17 -0
  206. package/build/frontend/constants/index.js +2 -0
  207. package/build/frontend/constants/messaging/index.js +17 -0
  208. package/build/frontend/constants/messaging/messaging.constants.js +19 -0
  209. package/build/frontend/constants/metrics/metric-names.constant.js +16 -0
  210. package/build/frontend/constants/templates/template-keys.js +1 -0
  211. package/build/frontend/models/hosts.schema.js +5 -2
  212. package/build/frontend/models/index.js +5 -1
  213. package/build/frontend/models/infra-billing-available-node.schema.js +9 -0
  214. package/build/frontend/models/infra-billing-history-record.schema.js +19 -0
  215. package/build/frontend/models/infra-billing-node.schema.js +34 -0
  216. package/build/frontend/models/infra-provider.schema.js +41 -0
  217. package/build/frontend/models/nodes.schema.js +8 -2
  218. package/package.json +2 -2
  219. package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts.map +0 -1
  220. /package/build/backend/commands/internal-squads/{get-internal-squad-by-uuid..js → get-internal-squad-by-uuid.js} +0 -0
  221. /package/build/backend/models/{extented-users.schema.js → extended-users.schema.js} +0 -0
  222. /package/build/frontend/commands/internal-squads/{get-internal-squad-by-uuid..js → get-internal-squad-by-uuid.js} +0 -0
  223. /package/build/frontend/models/{extented-users.schema.js → extended-users.schema.js} +0 -0
@@ -0,0 +1,461 @@
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<Pick<{
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
+ }, "uuid" | "name" | "faviconLink" | "loginUrl">, "strip", z.ZodTypeAny, {
29
+ uuid: string;
30
+ name: string;
31
+ faviconLink: string | null;
32
+ loginUrl: string | null;
33
+ }, {
34
+ uuid: string;
35
+ name: string;
36
+ faviconLink: string | null;
37
+ loginUrl: string | null;
38
+ }>;
39
+ node: z.ZodObject<Pick<{
40
+ uuid: z.ZodString;
41
+ name: z.ZodString;
42
+ address: z.ZodString;
43
+ port: z.ZodNullable<z.ZodNumber>;
44
+ isConnected: z.ZodBoolean;
45
+ isDisabled: z.ZodBoolean;
46
+ isConnecting: z.ZodBoolean;
47
+ isNodeOnline: z.ZodBoolean;
48
+ isXrayRunning: z.ZodBoolean;
49
+ lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
50
+ lastStatusMessage: z.ZodNullable<z.ZodString>;
51
+ xrayVersion: z.ZodNullable<z.ZodString>;
52
+ nodeVersion: z.ZodNullable<z.ZodString>;
53
+ xrayUptime: z.ZodString;
54
+ isTrafficTrackingActive: z.ZodBoolean;
55
+ trafficResetDay: z.ZodNullable<z.ZodNumber>;
56
+ trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
57
+ trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
58
+ notifyPercent: z.ZodNullable<z.ZodNumber>;
59
+ usersOnline: z.ZodNullable<z.ZodNumber>;
60
+ viewPosition: z.ZodNumber;
61
+ countryCode: z.ZodString;
62
+ consumptionMultiplier: z.ZodNumber;
63
+ cpuCount: z.ZodNullable<z.ZodNumber>;
64
+ cpuModel: z.ZodNullable<z.ZodString>;
65
+ totalRam: z.ZodNullable<z.ZodString>;
66
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
67
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
68
+ configProfile: z.ZodObject<{
69
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
70
+ activeInbounds: z.ZodArray<z.ZodObject<{
71
+ uuid: z.ZodString;
72
+ profileUuid: z.ZodString;
73
+ tag: z.ZodString;
74
+ type: z.ZodString;
75
+ network: z.ZodNullable<z.ZodString>;
76
+ security: z.ZodNullable<z.ZodString>;
77
+ port: z.ZodNullable<z.ZodNumber>;
78
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
79
+ }, "strip", z.ZodTypeAny, {
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
+ }, {
89
+ type: string;
90
+ uuid: string;
91
+ profileUuid: string;
92
+ tag: string;
93
+ network: string | null;
94
+ security: string | null;
95
+ port: number | null;
96
+ rawInbound?: unknown;
97
+ }>, "many">;
98
+ }, "strip", z.ZodTypeAny, {
99
+ activeConfigProfileUuid: string | null;
100
+ activeInbounds: {
101
+ type: string;
102
+ uuid: string;
103
+ profileUuid: string;
104
+ tag: string;
105
+ network: string | null;
106
+ security: string | null;
107
+ port: number | null;
108
+ rawInbound?: unknown;
109
+ }[];
110
+ }, {
111
+ activeConfigProfileUuid: string | null;
112
+ activeInbounds: {
113
+ type: string;
114
+ uuid: string;
115
+ profileUuid: string;
116
+ tag: string;
117
+ network: string | null;
118
+ security: string | null;
119
+ port: number | null;
120
+ rawInbound?: unknown;
121
+ }[];
122
+ }>;
123
+ providerUuid: z.ZodNullable<z.ZodString>;
124
+ provider: z.ZodNullable<z.ZodObject<{
125
+ uuid: z.ZodString;
126
+ name: z.ZodString;
127
+ faviconLink: z.ZodNullable<z.ZodString>;
128
+ loginUrl: z.ZodNullable<z.ZodString>;
129
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
130
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
131
+ }, "strip", z.ZodTypeAny, {
132
+ uuid: string;
133
+ createdAt: Date;
134
+ updatedAt: Date;
135
+ name: string;
136
+ faviconLink: string | null;
137
+ loginUrl: string | null;
138
+ }, {
139
+ uuid: string;
140
+ createdAt: string;
141
+ updatedAt: string;
142
+ name: string;
143
+ faviconLink: string | null;
144
+ loginUrl: string | null;
145
+ }>>;
146
+ }, "uuid" | "name" | "countryCode">, "strip", z.ZodTypeAny, {
147
+ uuid: string;
148
+ name: string;
149
+ countryCode: string;
150
+ }, {
151
+ uuid: string;
152
+ name: string;
153
+ countryCode: string;
154
+ }>;
155
+ nextBillingAt: z.ZodEffects<z.ZodString, Date, string>;
156
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
157
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
158
+ }, "strip", z.ZodTypeAny, {
159
+ uuid: string;
160
+ createdAt: Date;
161
+ updatedAt: Date;
162
+ nodeUuid: string;
163
+ providerUuid: string;
164
+ provider: {
165
+ uuid: string;
166
+ name: string;
167
+ faviconLink: string | null;
168
+ loginUrl: string | null;
169
+ };
170
+ node: {
171
+ uuid: string;
172
+ name: string;
173
+ countryCode: string;
174
+ };
175
+ nextBillingAt: Date;
176
+ }, {
177
+ uuid: string;
178
+ createdAt: string;
179
+ updatedAt: string;
180
+ nodeUuid: string;
181
+ providerUuid: string;
182
+ provider: {
183
+ uuid: string;
184
+ name: string;
185
+ faviconLink: string | null;
186
+ loginUrl: string | null;
187
+ };
188
+ node: {
189
+ uuid: string;
190
+ name: string;
191
+ countryCode: string;
192
+ };
193
+ nextBillingAt: string;
194
+ }>, "many">;
195
+ availableBillingNodes: z.ZodArray<z.ZodObject<Pick<{
196
+ uuid: z.ZodString;
197
+ name: z.ZodString;
198
+ address: z.ZodString;
199
+ port: z.ZodNullable<z.ZodNumber>;
200
+ isConnected: z.ZodBoolean;
201
+ isDisabled: z.ZodBoolean;
202
+ isConnecting: z.ZodBoolean;
203
+ isNodeOnline: z.ZodBoolean;
204
+ isXrayRunning: z.ZodBoolean;
205
+ lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
206
+ lastStatusMessage: z.ZodNullable<z.ZodString>;
207
+ xrayVersion: z.ZodNullable<z.ZodString>;
208
+ nodeVersion: z.ZodNullable<z.ZodString>;
209
+ xrayUptime: z.ZodString;
210
+ isTrafficTrackingActive: z.ZodBoolean;
211
+ trafficResetDay: z.ZodNullable<z.ZodNumber>;
212
+ trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
213
+ trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
214
+ notifyPercent: z.ZodNullable<z.ZodNumber>;
215
+ usersOnline: z.ZodNullable<z.ZodNumber>;
216
+ viewPosition: z.ZodNumber;
217
+ countryCode: z.ZodString;
218
+ consumptionMultiplier: z.ZodNumber;
219
+ cpuCount: z.ZodNullable<z.ZodNumber>;
220
+ cpuModel: z.ZodNullable<z.ZodString>;
221
+ totalRam: z.ZodNullable<z.ZodString>;
222
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
223
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
224
+ configProfile: z.ZodObject<{
225
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
226
+ activeInbounds: z.ZodArray<z.ZodObject<{
227
+ uuid: z.ZodString;
228
+ profileUuid: z.ZodString;
229
+ tag: z.ZodString;
230
+ type: z.ZodString;
231
+ network: z.ZodNullable<z.ZodString>;
232
+ security: z.ZodNullable<z.ZodString>;
233
+ port: z.ZodNullable<z.ZodNumber>;
234
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
235
+ }, "strip", z.ZodTypeAny, {
236
+ type: string;
237
+ uuid: string;
238
+ profileUuid: string;
239
+ tag: string;
240
+ network: string | null;
241
+ security: string | null;
242
+ port: number | null;
243
+ rawInbound?: unknown;
244
+ }, {
245
+ type: string;
246
+ uuid: string;
247
+ profileUuid: string;
248
+ tag: string;
249
+ network: string | null;
250
+ security: string | null;
251
+ port: number | null;
252
+ rawInbound?: unknown;
253
+ }>, "many">;
254
+ }, "strip", z.ZodTypeAny, {
255
+ activeConfigProfileUuid: string | null;
256
+ activeInbounds: {
257
+ type: string;
258
+ uuid: string;
259
+ profileUuid: string;
260
+ tag: string;
261
+ network: string | null;
262
+ security: string | null;
263
+ port: number | null;
264
+ rawInbound?: unknown;
265
+ }[];
266
+ }, {
267
+ activeConfigProfileUuid: string | null;
268
+ activeInbounds: {
269
+ type: string;
270
+ uuid: string;
271
+ profileUuid: string;
272
+ tag: string;
273
+ network: string | null;
274
+ security: string | null;
275
+ port: number | null;
276
+ rawInbound?: unknown;
277
+ }[];
278
+ }>;
279
+ providerUuid: z.ZodNullable<z.ZodString>;
280
+ provider: z.ZodNullable<z.ZodObject<{
281
+ uuid: z.ZodString;
282
+ name: z.ZodString;
283
+ faviconLink: z.ZodNullable<z.ZodString>;
284
+ loginUrl: z.ZodNullable<z.ZodString>;
285
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
286
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ uuid: string;
289
+ createdAt: Date;
290
+ updatedAt: Date;
291
+ name: string;
292
+ faviconLink: string | null;
293
+ loginUrl: string | null;
294
+ }, {
295
+ uuid: string;
296
+ createdAt: string;
297
+ updatedAt: string;
298
+ name: string;
299
+ faviconLink: string | null;
300
+ loginUrl: string | null;
301
+ }>>;
302
+ }, "uuid" | "name" | "countryCode">, "strip", z.ZodTypeAny, {
303
+ uuid: string;
304
+ name: string;
305
+ countryCode: string;
306
+ }, {
307
+ uuid: string;
308
+ name: string;
309
+ countryCode: string;
310
+ }>, "many">;
311
+ totalAvailableBillingNodes: z.ZodNumber;
312
+ stats: z.ZodObject<{
313
+ upcomingNodesCount: z.ZodNumber;
314
+ currentMonthPayments: z.ZodNumber;
315
+ totalSpent: z.ZodNumber;
316
+ }, "strip", z.ZodTypeAny, {
317
+ upcomingNodesCount: number;
318
+ currentMonthPayments: number;
319
+ totalSpent: number;
320
+ }, {
321
+ upcomingNodesCount: number;
322
+ currentMonthPayments: number;
323
+ totalSpent: number;
324
+ }>;
325
+ }, "strip", z.ZodTypeAny, {
326
+ stats: {
327
+ upcomingNodesCount: number;
328
+ currentMonthPayments: number;
329
+ totalSpent: number;
330
+ };
331
+ billingNodes: {
332
+ uuid: string;
333
+ createdAt: Date;
334
+ updatedAt: Date;
335
+ nodeUuid: string;
336
+ providerUuid: string;
337
+ provider: {
338
+ uuid: string;
339
+ name: string;
340
+ faviconLink: string | null;
341
+ loginUrl: string | null;
342
+ };
343
+ node: {
344
+ uuid: string;
345
+ name: string;
346
+ countryCode: string;
347
+ };
348
+ nextBillingAt: Date;
349
+ }[];
350
+ totalBillingNodes: number;
351
+ availableBillingNodes: {
352
+ uuid: string;
353
+ name: string;
354
+ countryCode: string;
355
+ }[];
356
+ totalAvailableBillingNodes: number;
357
+ }, {
358
+ stats: {
359
+ upcomingNodesCount: number;
360
+ currentMonthPayments: number;
361
+ totalSpent: number;
362
+ };
363
+ billingNodes: {
364
+ uuid: string;
365
+ createdAt: string;
366
+ updatedAt: string;
367
+ nodeUuid: string;
368
+ providerUuid: string;
369
+ provider: {
370
+ uuid: string;
371
+ name: string;
372
+ faviconLink: string | null;
373
+ loginUrl: string | null;
374
+ };
375
+ node: {
376
+ uuid: string;
377
+ name: string;
378
+ countryCode: string;
379
+ };
380
+ nextBillingAt: string;
381
+ }[];
382
+ totalBillingNodes: number;
383
+ availableBillingNodes: {
384
+ uuid: string;
385
+ name: string;
386
+ countryCode: string;
387
+ }[];
388
+ totalAvailableBillingNodes: number;
389
+ }>;
390
+ }, "strip", z.ZodTypeAny, {
391
+ response: {
392
+ stats: {
393
+ upcomingNodesCount: number;
394
+ currentMonthPayments: number;
395
+ totalSpent: number;
396
+ };
397
+ billingNodes: {
398
+ uuid: string;
399
+ createdAt: Date;
400
+ updatedAt: Date;
401
+ nodeUuid: string;
402
+ providerUuid: string;
403
+ provider: {
404
+ uuid: string;
405
+ name: string;
406
+ faviconLink: string | null;
407
+ loginUrl: string | null;
408
+ };
409
+ node: {
410
+ uuid: string;
411
+ name: string;
412
+ countryCode: string;
413
+ };
414
+ nextBillingAt: Date;
415
+ }[];
416
+ totalBillingNodes: number;
417
+ availableBillingNodes: {
418
+ uuid: string;
419
+ name: string;
420
+ countryCode: string;
421
+ }[];
422
+ totalAvailableBillingNodes: number;
423
+ };
424
+ }, {
425
+ response: {
426
+ stats: {
427
+ upcomingNodesCount: number;
428
+ currentMonthPayments: number;
429
+ totalSpent: number;
430
+ };
431
+ billingNodes: {
432
+ uuid: string;
433
+ createdAt: string;
434
+ updatedAt: string;
435
+ nodeUuid: string;
436
+ providerUuid: string;
437
+ provider: {
438
+ uuid: string;
439
+ name: string;
440
+ faviconLink: string | null;
441
+ loginUrl: string | null;
442
+ };
443
+ node: {
444
+ uuid: string;
445
+ name: string;
446
+ countryCode: string;
447
+ };
448
+ nextBillingAt: string;
449
+ }[];
450
+ totalBillingNodes: number;
451
+ availableBillingNodes: {
452
+ uuid: string;
453
+ name: string;
454
+ countryCode: string;
455
+ }[];
456
+ totalAvailableBillingNodes: number;
457
+ };
458
+ }>;
459
+ type Response = z.infer<typeof ResponseSchema>;
460
+ }
461
+ //# 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -0,0 +1,29 @@
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
+ stats: zod_1.z.object({
23
+ upcomingNodesCount: zod_1.z.number(),
24
+ currentMonthPayments: zod_1.z.number(),
25
+ totalSpent: zod_1.z.number(),
26
+ }),
27
+ }),
28
+ });
29
+ })(DeleteInfraBillingNodeByUuidCommand || (exports.DeleteInfraBillingNodeByUuidCommand = DeleteInfraBillingNodeByUuidCommand = {}));
@@ -0,0 +1,33 @@
1
+ import { z } from 'zod';
2
+ export declare namespace DeleteInfraProviderByUuidCommand {
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
+ isDeleted: z.ZodBoolean;
17
+ }, "strip", z.ZodTypeAny, {
18
+ isDeleted: boolean;
19
+ }, {
20
+ isDeleted: boolean;
21
+ }>;
22
+ }, "strip", z.ZodTypeAny, {
23
+ response: {
24
+ isDeleted: boolean;
25
+ };
26
+ }, {
27
+ response: {
28
+ isDeleted: boolean;
29
+ };
30
+ }>;
31
+ type Response = z.infer<typeof ResponseSchema>;
32
+ }
33
+ //# sourceMappingURL=delete-infra-provider-by-uuid.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-infra-provider-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/delete-infra-provider-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,gCAAgC,CAAC;IACvC,MAAM,GAAG,QAAkD,CAAC;IAC5D,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;;;;;;;;;;;;;;;;MAIzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteInfraProviderByUuidCommand = void 0;
4
+ const zod_1 = require("zod");
5
+ const api_1 = require("../../api");
6
+ const constants_1 = require("../../constants");
7
+ var DeleteInfraProviderByUuidCommand;
8
+ (function (DeleteInfraProviderByUuidCommand) {
9
+ DeleteInfraProviderByUuidCommand.url = api_1.REST_API.INFRA_BILLING.DELETE_PROVIDER(':uuid');
10
+ DeleteInfraProviderByUuidCommand.TSQ_url = DeleteInfraProviderByUuidCommand.url;
11
+ DeleteInfraProviderByUuidCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.INFRA_BILLING_ROUTES.DELETE_PROVIDER(':uuid'), 'delete', 'Delete infra provider by uuid');
12
+ DeleteInfraProviderByUuidCommand.RequestSchema = zod_1.z.object({
13
+ uuid: zod_1.z.string().uuid(),
14
+ });
15
+ DeleteInfraProviderByUuidCommand.ResponseSchema = zod_1.z.object({
16
+ response: zod_1.z.object({
17
+ isDeleted: zod_1.z.boolean(),
18
+ }),
19
+ });
20
+ })(DeleteInfraProviderByUuidCommand || (exports.DeleteInfraProviderByUuidCommand = DeleteInfraProviderByUuidCommand = {}));
@@ -0,0 +1,122 @@
1
+ import { z } from 'zod';
2
+ export declare namespace GetInfraBillingHistoryRecordsCommand {
3
+ const url: "/api/infra-billing/history";
4
+ const TSQ_url: "/api/infra-billing/history";
5
+ const endpointDetails: import("../../constants").EndpointDetails;
6
+ const RequestQuerySchema: z.ZodObject<{
7
+ start: z.ZodDefault<z.ZodNumber>;
8
+ size: z.ZodDefault<z.ZodNumber>;
9
+ }, "strip", z.ZodTypeAny, {
10
+ start: number;
11
+ size: number;
12
+ }, {
13
+ start?: number | undefined;
14
+ size?: number | undefined;
15
+ }>;
16
+ type RequestQuery = z.infer<typeof RequestQuerySchema>;
17
+ const ResponseSchema: z.ZodObject<{
18
+ response: z.ZodObject<{
19
+ records: z.ZodArray<z.ZodObject<{
20
+ uuid: z.ZodString;
21
+ providerUuid: z.ZodString;
22
+ amount: z.ZodNumber;
23
+ billedAt: z.ZodEffects<z.ZodString, Date, string>;
24
+ provider: z.ZodObject<Omit<{
25
+ uuid: z.ZodString;
26
+ name: z.ZodString;
27
+ faviconLink: z.ZodNullable<z.ZodString>;
28
+ loginUrl: z.ZodNullable<z.ZodString>;
29
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
30
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
31
+ }, "createdAt" | "updatedAt" | "loginUrl">, "strip", z.ZodTypeAny, {
32
+ uuid: string;
33
+ name: string;
34
+ faviconLink: string | null;
35
+ }, {
36
+ uuid: string;
37
+ name: string;
38
+ faviconLink: string | null;
39
+ }>;
40
+ }, "strip", z.ZodTypeAny, {
41
+ uuid: string;
42
+ providerUuid: string;
43
+ provider: {
44
+ uuid: string;
45
+ name: string;
46
+ faviconLink: string | null;
47
+ };
48
+ amount: number;
49
+ billedAt: Date;
50
+ }, {
51
+ uuid: string;
52
+ providerUuid: string;
53
+ provider: {
54
+ uuid: string;
55
+ name: string;
56
+ faviconLink: string | null;
57
+ };
58
+ amount: number;
59
+ billedAt: string;
60
+ }>, "many">;
61
+ total: z.ZodNumber;
62
+ }, "strip", z.ZodTypeAny, {
63
+ total: number;
64
+ records: {
65
+ uuid: string;
66
+ providerUuid: string;
67
+ provider: {
68
+ uuid: string;
69
+ name: string;
70
+ faviconLink: string | null;
71
+ };
72
+ amount: number;
73
+ billedAt: Date;
74
+ }[];
75
+ }, {
76
+ total: number;
77
+ records: {
78
+ uuid: string;
79
+ providerUuid: string;
80
+ provider: {
81
+ uuid: string;
82
+ name: string;
83
+ faviconLink: string | null;
84
+ };
85
+ amount: number;
86
+ billedAt: string;
87
+ }[];
88
+ }>;
89
+ }, "strip", z.ZodTypeAny, {
90
+ response: {
91
+ total: number;
92
+ records: {
93
+ uuid: string;
94
+ providerUuid: string;
95
+ provider: {
96
+ uuid: string;
97
+ name: string;
98
+ faviconLink: string | null;
99
+ };
100
+ amount: number;
101
+ billedAt: Date;
102
+ }[];
103
+ };
104
+ }, {
105
+ response: {
106
+ total: number;
107
+ records: {
108
+ uuid: string;
109
+ providerUuid: string;
110
+ provider: {
111
+ uuid: string;
112
+ name: string;
113
+ faviconLink: string | null;
114
+ };
115
+ amount: number;
116
+ billedAt: string;
117
+ }[];
118
+ };
119
+ }>;
120
+ type Response = z.infer<typeof ResponseSchema>;
121
+ }
122
+ //# sourceMappingURL=get-bill-records.command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-bill-records.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-bill-records.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,oCAAoC,CAAC;IAC3C,MAAM,GAAG,8BAA6C,CAAC;IACvD,MAAM,OAAO,8BAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,kBAAkB;;;;;;;;;MAa7B,CAAC;IAEH,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}