@remnawave/backend-contract 0.7.26 → 2.0.0-alpha.10

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 (310) hide show
  1. package/build/backend/api/controllers/config-profiles.d.ts +11 -0
  2. package/build/backend/api/controllers/config-profiles.d.ts.map +1 -0
  3. package/build/backend/api/controllers/config-profiles.js +13 -0
  4. package/build/backend/api/controllers/index.d.ts +3 -2
  5. package/build/backend/api/controllers/index.d.ts.map +1 -1
  6. package/build/backend/api/controllers/index.js +3 -2
  7. package/build/backend/api/controllers/infra-billing.d.ts +16 -0
  8. package/build/backend/api/controllers/infra-billing.d.ts.map +1 -0
  9. package/build/backend/api/controllers/infra-billing.js +22 -0
  10. package/build/backend/api/controllers/internal-squads.d.ts +9 -0
  11. package/build/backend/api/controllers/internal-squads.d.ts.map +1 -0
  12. package/build/backend/api/controllers/internal-squads.js +11 -0
  13. package/build/backend/api/controllers/users.d.ts +2 -2
  14. package/build/backend/api/controllers/users.d.ts.map +1 -1
  15. package/build/backend/api/controllers/users.js +2 -2
  16. package/build/backend/api/routes.d.ts +32 -16
  17. package/build/backend/api/routes.d.ts.map +1 -1
  18. package/build/backend/api/routes.js +32 -16
  19. package/build/backend/commands/config-profiles/create-config-profile.command.d.ts +161 -0
  20. package/build/backend/commands/config-profiles/create-config-profile.command.d.ts.map +1 -0
  21. package/build/backend/commands/config-profiles/create-config-profile.command.js +24 -0
  22. package/build/backend/commands/config-profiles/delete-config-profile.command.d.ts +33 -0
  23. package/build/backend/commands/config-profiles/delete-config-profile.command.d.ts.map +1 -0
  24. package/build/backend/commands/config-profiles/delete-config-profile.command.js +20 -0
  25. package/build/backend/commands/config-profiles/get-all-inbounds.command.d.ts +93 -0
  26. package/build/backend/commands/config-profiles/get-all-inbounds.command.d.ts.map +1 -0
  27. package/build/backend/commands/config-profiles/get-all-inbounds.command.js +19 -0
  28. package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts +154 -0
  29. package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts.map +1 -0
  30. package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.js +19 -0
  31. package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts +203 -0
  32. package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts.map +1 -0
  33. package/build/backend/commands/config-profiles/get-config-profiles.command.js +19 -0
  34. package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.d.ts +101 -0
  35. package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.d.ts.map +1 -0
  36. package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.js +22 -0
  37. package/build/backend/commands/config-profiles/index.d.ts +8 -0
  38. package/build/backend/commands/config-profiles/index.d.ts.map +1 -0
  39. package/build/backend/commands/config-profiles/index.js +23 -0
  40. package/build/backend/commands/config-profiles/update-config-profile.command.d.ts +161 -0
  41. package/build/backend/commands/config-profiles/update-config-profile.command.d.ts.map +1 -0
  42. package/build/backend/commands/config-profiles/update-config-profile.command.js +20 -0
  43. package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts +10 -10
  44. package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts +10 -10
  45. package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts +10 -10
  46. package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts +16 -13
  47. package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts.map +1 -1
  48. package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.js +2 -1
  49. package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts +10 -10
  50. package/build/backend/commands/hosts/create.command.d.ts +18 -15
  51. package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
  52. package/build/backend/commands/hosts/create.command.js +9 -2
  53. package/build/backend/commands/hosts/get-all.command.d.ts +10 -10
  54. package/build/backend/commands/hosts/get-one.command.d.ts +10 -10
  55. package/build/backend/commands/hosts/reorder.command.d.ts +2 -2
  56. package/build/backend/commands/hosts/update.command.d.ts +20 -17
  57. package/build/backend/commands/hosts/update.command.d.ts.map +1 -1
  58. package/build/backend/commands/hosts/update.command.js +7 -1
  59. package/build/backend/commands/index.d.ts +3 -2
  60. package/build/backend/commands/index.d.ts.map +1 -1
  61. package/build/backend/commands/index.js +3 -2
  62. package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts +123 -0
  63. package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts.map +1 -0
  64. package/build/backend/commands/infra-billing/create-infra-provider.command.js +24 -0
  65. package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts +33 -0
  66. package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts.map +1 -0
  67. package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -0
  68. package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts +117 -0
  69. package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts.map +1 -0
  70. package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
  71. package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts +156 -0
  72. package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts.map +1 -0
  73. package/build/backend/commands/infra-billing/get-infra-providers.command.js +19 -0
  74. package/build/backend/commands/infra-billing/index.d.ts +6 -0
  75. package/build/backend/commands/infra-billing/index.d.ts.map +1 -0
  76. package/build/backend/commands/{inbounds/bulk → infra-billing}/index.js +5 -4
  77. package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts +126 -0
  78. package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts.map +1 -0
  79. package/build/backend/commands/infra-billing/update-infra-provider.command.js +26 -0
  80. package/build/backend/commands/internal-squads/create-internal-squad.command.d.ts +145 -0
  81. package/build/backend/commands/internal-squads/create-internal-squad.command.d.ts.map +1 -0
  82. package/build/backend/commands/internal-squads/create-internal-squad.command.js +24 -0
  83. package/build/backend/commands/internal-squads/delete-internal-squad.command.d.ts +33 -0
  84. package/build/backend/commands/internal-squads/delete-internal-squad.command.d.ts.map +1 -0
  85. package/build/backend/commands/internal-squads/delete-internal-squad.command.js +20 -0
  86. package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts +142 -0
  87. package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts.map +1 -0
  88. package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..js +19 -0
  89. package/build/backend/commands/internal-squads/get-internal-squads.command.d.ts +187 -0
  90. package/build/backend/commands/internal-squads/get-internal-squads.command.d.ts.map +1 -0
  91. package/build/backend/commands/internal-squads/get-internal-squads.command.js +19 -0
  92. package/build/backend/commands/internal-squads/index.d.ts +6 -0
  93. package/build/backend/commands/internal-squads/index.d.ts.map +1 -0
  94. package/build/backend/commands/{xray → internal-squads}/index.js +5 -2
  95. package/build/backend/commands/internal-squads/update-internal-squad.command.d.ts +145 -0
  96. package/build/backend/commands/internal-squads/update-internal-squad.command.d.ts.map +1 -0
  97. package/build/backend/commands/internal-squads/update-internal-squad.command.js +20 -0
  98. package/build/backend/commands/nodes/actions/disable.command.d.ts +184 -22
  99. package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
  100. package/build/backend/commands/nodes/actions/enable.command.d.ts +184 -22
  101. package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
  102. package/build/backend/commands/nodes/actions/reorder.command.d.ts +260 -24
  103. package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
  104. package/build/backend/commands/nodes/create.command.d.ts +199 -31
  105. package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
  106. package/build/backend/commands/nodes/create.command.js +5 -3
  107. package/build/backend/commands/nodes/get-all.command.d.ts +184 -22
  108. package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
  109. package/build/backend/commands/nodes/get-one.command.d.ts +184 -22
  110. package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
  111. package/build/backend/commands/nodes/stats/get-node-user-usage-by-range.command.d.ts +4 -4
  112. package/build/backend/commands/nodes/stats/get-nodes-usage-by-range.command.d.ts +4 -4
  113. package/build/backend/commands/nodes/stats/get-realtime-usage.command.d.ts +4 -4
  114. package/build/backend/commands/nodes/update.command.d.ts +275 -33
  115. package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
  116. package/build/backend/commands/nodes/update.command.js +5 -3
  117. package/build/backend/commands/users/actions/disable-user.command.d.ts +12 -38
  118. package/build/backend/commands/users/actions/disable-user.command.d.ts.map +1 -1
  119. package/build/backend/commands/users/actions/enable-user.command.d.ts +12 -38
  120. package/build/backend/commands/users/actions/enable-user.command.d.ts.map +1 -1
  121. package/build/backend/commands/users/actions/index.d.ts +0 -1
  122. package/build/backend/commands/users/actions/index.d.ts.map +1 -1
  123. package/build/backend/commands/users/actions/index.js +0 -1
  124. package/build/backend/commands/users/actions/reset-user-traffic.command.d.ts +12 -38
  125. package/build/backend/commands/users/actions/reset-user-traffic.command.d.ts.map +1 -1
  126. package/build/backend/commands/users/actions/revoke-user-subscription.command.d.ts +12 -38
  127. package/build/backend/commands/users/actions/revoke-user-subscription.command.d.ts.map +1 -1
  128. package/build/backend/commands/users/bulk/{bulk-update-users-inbounds.command.d.ts → bulk-update-users-squads.command.d.ts} +7 -7
  129. package/build/backend/commands/users/bulk/bulk-update-users-squads.command.d.ts.map +1 -0
  130. package/build/backend/commands/users/bulk/bulk-update-users-squads.command.js +23 -0
  131. package/build/backend/commands/users/bulk/index.d.ts +1 -1
  132. package/build/backend/commands/users/bulk/index.d.ts.map +1 -1
  133. package/build/backend/commands/users/bulk/index.js +1 -1
  134. package/build/backend/commands/users/create-user.command.d.ts +15 -47
  135. package/build/backend/commands/users/create-user.command.d.ts.map +1 -1
  136. package/build/backend/commands/users/create-user.command.js +5 -16
  137. package/build/backend/commands/users/get-all-users.command.d.ts +16 -50
  138. package/build/backend/commands/users/get-all-users.command.d.ts.map +1 -1
  139. package/build/backend/commands/users/get-by/get-user-by-email.command.d.ts +12 -38
  140. package/build/backend/commands/users/get-by/get-user-by-email.command.d.ts.map +1 -1
  141. package/build/backend/commands/users/get-by/get-user-by-short-uuid.command.d.ts +12 -38
  142. package/build/backend/commands/users/get-by/get-user-by-short-uuid.command.d.ts.map +1 -1
  143. package/build/backend/commands/users/get-by/get-user-by-tag.command.d.ts +12 -38
  144. package/build/backend/commands/users/get-by/get-user-by-tag.command.d.ts.map +1 -1
  145. package/build/backend/commands/users/get-by/get-user-by-telegram-id.command.d.ts +12 -38
  146. package/build/backend/commands/users/get-by/get-user-by-telegram-id.command.d.ts.map +1 -1
  147. package/build/backend/commands/users/get-by/get-user-by-username.command.d.ts +12 -38
  148. package/build/backend/commands/users/get-by/get-user-by-username.command.d.ts.map +1 -1
  149. package/build/backend/commands/users/get-by/index.d.ts +0 -1
  150. package/build/backend/commands/users/get-by/index.d.ts.map +1 -1
  151. package/build/backend/commands/users/get-by/index.js +0 -1
  152. package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts +114 -0
  153. package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts.map +1 -0
  154. package/build/backend/commands/users/get-user-accessible-nodes.command.js +31 -0
  155. package/build/backend/commands/users/get-user-by-uuid.command.d.ts +12 -38
  156. package/build/backend/commands/users/get-user-by-uuid.command.d.ts.map +1 -1
  157. package/build/backend/commands/users/get-user-usage-by-range.command.d.ts +4 -4
  158. package/build/backend/commands/users/index.d.ts +1 -0
  159. package/build/backend/commands/users/index.d.ts.map +1 -1
  160. package/build/backend/commands/users/index.js +1 -0
  161. package/build/backend/commands/users/update-user.command.d.ts +19 -55
  162. package/build/backend/commands/users/update-user.command.d.ts.map +1 -1
  163. package/build/backend/commands/users/update-user.command.js +5 -5
  164. package/build/backend/constants/errors/errors.d.ts +115 -0
  165. package/build/backend/constants/errors/errors.d.ts.map +1 -1
  166. package/build/backend/constants/errors/errors.js +115 -0
  167. package/build/backend/models/base-internal-squad.schema.d.ts +12 -0
  168. package/build/backend/models/base-internal-squad.schema.d.ts.map +1 -0
  169. package/build/backend/models/base-internal-squad.schema.js +8 -0
  170. package/build/backend/models/{inbounds.schema.d.ts → config-profile-inbounds.schema.d.ts} +11 -2
  171. package/build/backend/models/config-profile-inbounds.schema.d.ts.map +1 -0
  172. package/build/{frontend/models/inbounds.schema.js → backend/models/config-profile-inbounds.schema.js} +5 -2
  173. package/build/backend/models/config-profile.schema.d.ts +92 -0
  174. package/build/backend/models/config-profile.schema.d.ts.map +1 -0
  175. package/build/backend/models/config-profile.schema.js +24 -0
  176. package/build/backend/models/extented-users.schema.d.ts +8 -26
  177. package/build/backend/models/extented-users.schema.d.ts.map +1 -1
  178. package/build/backend/models/hosts.schema.d.ts +6 -6
  179. package/build/backend/models/hosts.schema.d.ts.map +1 -1
  180. package/build/backend/models/hosts.schema.js +2 -2
  181. package/build/backend/models/index.d.ts +5 -2
  182. package/build/backend/models/index.d.ts.map +1 -1
  183. package/build/backend/models/index.js +5 -2
  184. package/build/backend/models/infra-provider.schema.d.ts +65 -0
  185. package/build/backend/models/infra-provider.schema.d.ts.map +1 -0
  186. package/build/backend/models/infra-provider.schema.js +27 -0
  187. package/build/backend/models/internal-squad.schema.d.ts +84 -0
  188. package/build/backend/models/internal-squad.schema.d.ts.map +1 -0
  189. package/build/backend/models/internal-squad.schema.js +22 -0
  190. package/build/backend/models/nodes.schema.d.ts +130 -12
  191. package/build/backend/models/nodes.schema.d.ts.map +1 -1
  192. package/build/backend/models/nodes.schema.js +6 -2
  193. package/build/backend/models/users.schema.d.ts +8 -26
  194. package/build/backend/models/users.schema.d.ts.map +1 -1
  195. package/build/backend/models/users.schema.js +2 -3
  196. package/build/frontend/api/controllers/config-profiles.js +13 -0
  197. package/build/frontend/api/controllers/index.js +3 -2
  198. package/build/frontend/api/controllers/infra-billing.js +22 -0
  199. package/build/frontend/api/controllers/internal-squads.js +11 -0
  200. package/build/frontend/api/controllers/users.js +2 -2
  201. package/build/frontend/api/routes.js +32 -16
  202. package/build/frontend/commands/config-profiles/create-config-profile.command.js +24 -0
  203. package/build/frontend/commands/config-profiles/delete-config-profile.command.js +20 -0
  204. package/build/frontend/commands/config-profiles/get-all-inbounds.command.js +19 -0
  205. package/build/frontend/commands/config-profiles/get-config-profile-by-uuid.command.js +19 -0
  206. package/build/frontend/commands/config-profiles/get-config-profiles.command.js +19 -0
  207. package/build/frontend/commands/config-profiles/get-inbounds-by-profile-uuid.command.js +22 -0
  208. package/build/frontend/commands/config-profiles/index.js +23 -0
  209. package/build/frontend/commands/config-profiles/update-config-profile.command.js +20 -0
  210. package/build/frontend/commands/hosts/bulk/set-inbound-to-many-hosts.command.js +2 -1
  211. package/build/frontend/commands/hosts/create.command.js +9 -2
  212. package/build/frontend/commands/hosts/update.command.js +7 -1
  213. package/build/frontend/commands/index.js +3 -2
  214. package/build/frontend/commands/infra-billing/create-infra-provider.command.js +24 -0
  215. package/build/frontend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -0
  216. package/build/frontend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
  217. package/build/frontend/commands/infra-billing/get-infra-providers.command.js +19 -0
  218. package/build/frontend/commands/{inbounds/bulk → infra-billing}/index.js +5 -4
  219. package/build/frontend/commands/infra-billing/update-infra-provider.command.js +26 -0
  220. package/build/frontend/commands/internal-squads/create-internal-squad.command.js +24 -0
  221. package/build/frontend/commands/internal-squads/delete-internal-squad.command.js +20 -0
  222. package/build/frontend/commands/internal-squads/get-internal-squad-by-uuid..js +19 -0
  223. package/build/frontend/commands/internal-squads/get-internal-squads.command.js +19 -0
  224. package/build/{backend/commands/inbounds → frontend/commands/internal-squads}/index.js +5 -3
  225. package/build/frontend/commands/internal-squads/update-internal-squad.command.js +20 -0
  226. package/build/frontend/commands/nodes/create.command.js +5 -3
  227. package/build/frontend/commands/nodes/update.command.js +5 -3
  228. package/build/frontend/commands/users/actions/index.js +0 -1
  229. package/build/frontend/commands/users/bulk/bulk-update-users-squads.command.js +23 -0
  230. package/build/frontend/commands/users/bulk/index.js +1 -1
  231. package/build/frontend/commands/users/create-user.command.js +5 -16
  232. package/build/frontend/commands/users/get-by/index.js +0 -1
  233. package/build/frontend/commands/users/get-user-accessible-nodes.command.js +31 -0
  234. package/build/frontend/commands/users/index.js +1 -0
  235. package/build/frontend/commands/users/update-user.command.js +5 -5
  236. package/build/frontend/constants/errors/errors.js +115 -0
  237. package/build/frontend/models/base-internal-squad.schema.js +8 -0
  238. package/build/{backend/models/inbounds.schema.js → frontend/models/config-profile-inbounds.schema.js} +5 -2
  239. package/build/frontend/models/config-profile.schema.js +24 -0
  240. package/build/frontend/models/hosts.schema.js +2 -2
  241. package/build/frontend/models/index.js +5 -2
  242. package/build/frontend/models/infra-provider.schema.js +27 -0
  243. package/build/frontend/models/internal-squad.schema.js +22 -0
  244. package/build/frontend/models/nodes.schema.js +6 -2
  245. package/build/frontend/models/users.schema.js +2 -3
  246. package/package.json +1 -1
  247. package/build/backend/api/controllers/inbounds.d.ts +0 -12
  248. package/build/backend/api/controllers/inbounds.d.ts.map +0 -1
  249. package/build/backend/api/controllers/inbounds.js +0 -14
  250. package/build/backend/api/controllers/xray.d.ts +0 -6
  251. package/build/backend/api/controllers/xray.d.ts.map +0 -1
  252. package/build/backend/api/controllers/xray.js +0 -8
  253. package/build/backend/commands/inbounds/bulk/add-inbound-to-nodes.command.d.ts +0 -33
  254. package/build/backend/commands/inbounds/bulk/add-inbound-to-nodes.command.d.ts.map +0 -1
  255. package/build/backend/commands/inbounds/bulk/add-inbound-to-nodes.command.js +0 -24
  256. package/build/backend/commands/inbounds/bulk/add-inbound-to-users.command.d.ts +0 -33
  257. package/build/backend/commands/inbounds/bulk/add-inbound-to-users.command.d.ts.map +0 -1
  258. package/build/backend/commands/inbounds/bulk/add-inbound-to-users.command.js +0 -24
  259. package/build/backend/commands/inbounds/bulk/index.d.ts +0 -5
  260. package/build/backend/commands/inbounds/bulk/index.d.ts.map +0 -1
  261. package/build/backend/commands/inbounds/bulk/remove-inbound-from-nodes.command.d.ts +0 -33
  262. package/build/backend/commands/inbounds/bulk/remove-inbound-from-nodes.command.d.ts.map +0 -1
  263. package/build/backend/commands/inbounds/bulk/remove-inbound-from-nodes.command.js +0 -24
  264. package/build/backend/commands/inbounds/bulk/remove-inbound-from-users.command.d.ts +0 -33
  265. package/build/backend/commands/inbounds/bulk/remove-inbound-from-users.command.d.ts.map +0 -1
  266. package/build/backend/commands/inbounds/bulk/remove-inbound-from-users.command.js +0 -24
  267. package/build/backend/commands/inbounds/get-full-inbounds.command.d.ts +0 -115
  268. package/build/backend/commands/inbounds/get-full-inbounds.command.d.ts.map +0 -1
  269. package/build/backend/commands/inbounds/get-full-inbounds.command.js +0 -16
  270. package/build/backend/commands/inbounds/get-inbounds.command.d.ts +0 -50
  271. package/build/backend/commands/inbounds/get-inbounds.command.d.ts.map +0 -1
  272. package/build/backend/commands/inbounds/get-inbounds.command.js +0 -22
  273. package/build/backend/commands/inbounds/index.d.ts +0 -4
  274. package/build/backend/commands/inbounds/index.d.ts.map +0 -1
  275. package/build/backend/commands/users/actions/activate-all-inbounds.command.d.ts +0 -271
  276. package/build/backend/commands/users/actions/activate-all-inbounds.command.d.ts.map +0 -1
  277. package/build/backend/commands/users/actions/activate-all-inbounds.command.js +0 -19
  278. package/build/backend/commands/users/bulk/bulk-update-users-inbounds.command.d.ts.map +0 -1
  279. package/build/backend/commands/users/bulk/bulk-update-users-inbounds.command.js +0 -23
  280. package/build/backend/commands/users/get-by/get-user-by-subscription-uuid.command.d.ts +0 -271
  281. package/build/backend/commands/users/get-by/get-user-by-subscription-uuid.command.d.ts.map +0 -1
  282. package/build/backend/commands/users/get-by/get-user-by-subscription-uuid.command.js +0 -19
  283. package/build/backend/commands/xray/get-config.command.d.ts +0 -25
  284. package/build/backend/commands/xray/get-config.command.d.ts.map +0 -1
  285. package/build/backend/commands/xray/get-config.command.js +0 -17
  286. package/build/backend/commands/xray/index.d.ts +0 -3
  287. package/build/backend/commands/xray/index.d.ts.map +0 -1
  288. package/build/backend/commands/xray/update-config.command.d.ts +0 -27
  289. package/build/backend/commands/xray/update-config.command.d.ts.map +0 -1
  290. package/build/backend/commands/xray/update-config.command.js +0 -18
  291. package/build/backend/models/full-inbounds.schema.d.ts +0 -67
  292. package/build/backend/models/full-inbounds.schema.d.ts.map +0 -1
  293. package/build/backend/models/full-inbounds.schema.js +0 -21
  294. package/build/backend/models/inbounds.schema.d.ts.map +0 -1
  295. package/build/frontend/api/controllers/inbounds.js +0 -14
  296. package/build/frontend/api/controllers/xray.js +0 -8
  297. package/build/frontend/commands/inbounds/bulk/add-inbound-to-nodes.command.js +0 -24
  298. package/build/frontend/commands/inbounds/bulk/add-inbound-to-users.command.js +0 -24
  299. package/build/frontend/commands/inbounds/bulk/remove-inbound-from-nodes.command.js +0 -24
  300. package/build/frontend/commands/inbounds/bulk/remove-inbound-from-users.command.js +0 -24
  301. package/build/frontend/commands/inbounds/get-full-inbounds.command.js +0 -16
  302. package/build/frontend/commands/inbounds/get-inbounds.command.js +0 -22
  303. package/build/frontend/commands/inbounds/index.js +0 -19
  304. package/build/frontend/commands/users/actions/activate-all-inbounds.command.js +0 -19
  305. package/build/frontend/commands/users/bulk/bulk-update-users-inbounds.command.js +0 -23
  306. package/build/frontend/commands/users/get-by/get-user-by-subscription-uuid.command.js +0 -19
  307. package/build/frontend/commands/xray/get-config.command.js +0 -17
  308. package/build/frontend/commands/xray/index.js +0 -18
  309. package/build/frontend/commands/xray/update-config.command.js +0 -18
  310. package/build/frontend/models/full-inbounds.schema.js +0 -21
@@ -32,35 +32,110 @@ export declare namespace GetAllNodesCommand {
32
32
  totalRam: z.ZodNullable<z.ZodString>;
33
33
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
34
34
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
35
- excludedInbounds: z.ZodArray<z.ZodObject<{
35
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
36
+ activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
36
37
  uuid: z.ZodString;
38
+ profileUuid: z.ZodString;
37
39
  tag: z.ZodString;
38
40
  type: z.ZodString;
39
41
  network: z.ZodNullable<z.ZodString>;
40
42
  security: z.ZodNullable<z.ZodString>;
43
+ port: z.ZodNullable<z.ZodNumber>;
44
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
41
45
  }, "strip", z.ZodTypeAny, {
42
46
  type: string;
43
47
  uuid: string;
48
+ profileUuid: string;
44
49
  tag: string;
45
50
  network: string | null;
46
51
  security: string | null;
52
+ port: number | null;
53
+ rawInbound?: unknown;
47
54
  }, {
48
55
  type: string;
49
56
  uuid: string;
57
+ profileUuid: string;
50
58
  tag: string;
51
59
  network: string | null;
52
60
  security: string | null;
53
- }>, "many">;
61
+ port: number | null;
62
+ rawInbound?: unknown;
63
+ }>, "many">>;
64
+ providerUuid: z.ZodNullable<z.ZodString>;
65
+ provider: z.ZodNullable<z.ZodObject<{
66
+ uuid: z.ZodString;
67
+ name: z.ZodString;
68
+ faviconLink: z.ZodNullable<z.ZodString>;
69
+ loginUrl: z.ZodNullable<z.ZodString>;
70
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
71
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
72
+ billingHistory: z.ZodObject<{
73
+ totalAmount: z.ZodNumber;
74
+ totalBills: z.ZodNumber;
75
+ }, "strip", z.ZodTypeAny, {
76
+ totalAmount: number;
77
+ totalBills: number;
78
+ }, {
79
+ totalAmount: number;
80
+ totalBills: number;
81
+ }>;
82
+ billingNodes: z.ZodArray<z.ZodObject<{
83
+ nodeUuid: z.ZodString;
84
+ name: z.ZodString;
85
+ countryCode: z.ZodString;
86
+ }, "strip", z.ZodTypeAny, {
87
+ name: string;
88
+ countryCode: string;
89
+ nodeUuid: string;
90
+ }, {
91
+ name: string;
92
+ countryCode: string;
93
+ nodeUuid: string;
94
+ }>, "many">;
95
+ }, "strip", z.ZodTypeAny, {
96
+ uuid: string;
97
+ createdAt: Date;
98
+ updatedAt: Date;
99
+ name: string;
100
+ faviconLink: string | null;
101
+ loginUrl: string | null;
102
+ billingHistory: {
103
+ totalAmount: number;
104
+ totalBills: number;
105
+ };
106
+ billingNodes: {
107
+ name: string;
108
+ countryCode: string;
109
+ nodeUuid: string;
110
+ }[];
111
+ }, {
112
+ uuid: string;
113
+ createdAt: string;
114
+ updatedAt: string;
115
+ name: string;
116
+ faviconLink: string | null;
117
+ loginUrl: string | null;
118
+ billingHistory: {
119
+ totalAmount: number;
120
+ totalBills: number;
121
+ };
122
+ billingNodes: {
123
+ name: string;
124
+ countryCode: string;
125
+ nodeUuid: string;
126
+ }[];
127
+ }>>;
54
128
  }, "strip", z.ZodTypeAny, {
55
129
  uuid: string;
56
130
  createdAt: Date;
57
131
  updatedAt: Date;
58
- trafficLimitBytes: number | null;
132
+ name: string;
59
133
  port: number | null;
134
+ countryCode: string;
135
+ trafficLimitBytes: number | null;
60
136
  viewPosition: number;
61
137
  address: string;
62
138
  isDisabled: boolean;
63
- name: string;
64
139
  isConnected: boolean;
65
140
  isConnecting: boolean;
66
141
  isNodeOnline: boolean;
@@ -74,28 +149,50 @@ export declare namespace GetAllNodesCommand {
74
149
  trafficUsedBytes: number | null;
75
150
  notifyPercent: number | null;
76
151
  usersOnline: number | null;
77
- countryCode: string;
78
152
  consumptionMultiplier: number;
79
153
  cpuCount: number | null;
80
154
  cpuModel: string | null;
81
155
  totalRam: string | null;
82
- excludedInbounds: {
156
+ activeConfigProfileUuid: string | null;
157
+ activeInbounds: {
83
158
  type: string;
84
159
  uuid: string;
160
+ profileUuid: string;
85
161
  tag: string;
86
162
  network: string | null;
87
163
  security: string | null;
88
- }[];
164
+ port: number | null;
165
+ rawInbound?: unknown;
166
+ }[] | null;
167
+ providerUuid: string | null;
168
+ provider: {
169
+ uuid: string;
170
+ createdAt: Date;
171
+ updatedAt: Date;
172
+ name: string;
173
+ faviconLink: string | null;
174
+ loginUrl: string | null;
175
+ billingHistory: {
176
+ totalAmount: number;
177
+ totalBills: number;
178
+ };
179
+ billingNodes: {
180
+ name: string;
181
+ countryCode: string;
182
+ nodeUuid: string;
183
+ }[];
184
+ } | null;
89
185
  }, {
90
186
  uuid: string;
91
187
  createdAt: string;
92
188
  updatedAt: string;
93
- trafficLimitBytes: number | null;
189
+ name: string;
94
190
  port: number | null;
191
+ countryCode: string;
192
+ trafficLimitBytes: number | null;
95
193
  viewPosition: number;
96
194
  address: string;
97
195
  isDisabled: boolean;
98
- name: string;
99
196
  isConnected: boolean;
100
197
  isConnecting: boolean;
101
198
  isNodeOnline: boolean;
@@ -109,30 +206,52 @@ export declare namespace GetAllNodesCommand {
109
206
  trafficUsedBytes: number | null;
110
207
  notifyPercent: number | null;
111
208
  usersOnline: number | null;
112
- countryCode: string;
113
209
  consumptionMultiplier: number;
114
210
  cpuCount: number | null;
115
211
  cpuModel: string | null;
116
212
  totalRam: string | null;
117
- excludedInbounds: {
213
+ activeConfigProfileUuid: string | null;
214
+ activeInbounds: {
118
215
  type: string;
119
216
  uuid: string;
217
+ profileUuid: string;
120
218
  tag: string;
121
219
  network: string | null;
122
220
  security: string | null;
123
- }[];
221
+ port: number | null;
222
+ rawInbound?: unknown;
223
+ }[] | null;
224
+ providerUuid: string | null;
225
+ provider: {
226
+ uuid: string;
227
+ createdAt: string;
228
+ updatedAt: string;
229
+ name: string;
230
+ faviconLink: string | null;
231
+ loginUrl: string | null;
232
+ billingHistory: {
233
+ totalAmount: number;
234
+ totalBills: number;
235
+ };
236
+ billingNodes: {
237
+ name: string;
238
+ countryCode: string;
239
+ nodeUuid: string;
240
+ }[];
241
+ } | null;
124
242
  }>, "many">;
125
243
  }, "strip", z.ZodTypeAny, {
126
244
  response: {
127
245
  uuid: string;
128
246
  createdAt: Date;
129
247
  updatedAt: Date;
130
- trafficLimitBytes: number | null;
248
+ name: string;
131
249
  port: number | null;
250
+ countryCode: string;
251
+ trafficLimitBytes: number | null;
132
252
  viewPosition: number;
133
253
  address: string;
134
254
  isDisabled: boolean;
135
- name: string;
136
255
  isConnected: boolean;
137
256
  isConnecting: boolean;
138
257
  isNodeOnline: boolean;
@@ -146,30 +265,52 @@ export declare namespace GetAllNodesCommand {
146
265
  trafficUsedBytes: number | null;
147
266
  notifyPercent: number | null;
148
267
  usersOnline: number | null;
149
- countryCode: string;
150
268
  consumptionMultiplier: number;
151
269
  cpuCount: number | null;
152
270
  cpuModel: string | null;
153
271
  totalRam: string | null;
154
- excludedInbounds: {
272
+ activeConfigProfileUuid: string | null;
273
+ activeInbounds: {
155
274
  type: string;
156
275
  uuid: string;
276
+ profileUuid: string;
157
277
  tag: string;
158
278
  network: string | null;
159
279
  security: string | null;
160
- }[];
280
+ port: number | null;
281
+ rawInbound?: unknown;
282
+ }[] | null;
283
+ providerUuid: string | null;
284
+ provider: {
285
+ uuid: string;
286
+ createdAt: Date;
287
+ updatedAt: Date;
288
+ name: string;
289
+ faviconLink: string | null;
290
+ loginUrl: string | null;
291
+ billingHistory: {
292
+ totalAmount: number;
293
+ totalBills: number;
294
+ };
295
+ billingNodes: {
296
+ name: string;
297
+ countryCode: string;
298
+ nodeUuid: string;
299
+ }[];
300
+ } | null;
161
301
  }[];
162
302
  }, {
163
303
  response: {
164
304
  uuid: string;
165
305
  createdAt: string;
166
306
  updatedAt: string;
167
- trafficLimitBytes: number | null;
307
+ name: string;
168
308
  port: number | null;
309
+ countryCode: string;
310
+ trafficLimitBytes: number | null;
169
311
  viewPosition: number;
170
312
  address: string;
171
313
  isDisabled: boolean;
172
- name: string;
173
314
  isConnected: boolean;
174
315
  isConnecting: boolean;
175
316
  isNodeOnline: boolean;
@@ -183,18 +324,39 @@ export declare namespace GetAllNodesCommand {
183
324
  trafficUsedBytes: number | null;
184
325
  notifyPercent: number | null;
185
326
  usersOnline: number | null;
186
- countryCode: string;
187
327
  consumptionMultiplier: number;
188
328
  cpuCount: number | null;
189
329
  cpuModel: string | null;
190
330
  totalRam: string | null;
191
- excludedInbounds: {
331
+ activeConfigProfileUuid: string | null;
332
+ activeInbounds: {
192
333
  type: string;
193
334
  uuid: string;
335
+ profileUuid: string;
194
336
  tag: string;
195
337
  network: string | null;
196
338
  security: string | null;
197
- }[];
339
+ port: number | null;
340
+ rawInbound?: unknown;
341
+ }[] | null;
342
+ providerUuid: string | null;
343
+ provider: {
344
+ uuid: string;
345
+ createdAt: string;
346
+ updatedAt: string;
347
+ name: string;
348
+ faviconLink: string | null;
349
+ loginUrl: string | null;
350
+ billingHistory: {
351
+ totalAmount: number;
352
+ totalBills: number;
353
+ };
354
+ billingNodes: {
355
+ name: string;
356
+ countryCode: string;
357
+ nodeUuid: string;
358
+ }[];
359
+ } | null;
198
360
  }[];
199
361
  }>;
200
362
  type Response = z.infer<typeof ResponseSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
@@ -40,35 +40,110 @@ export declare namespace GetOneNodeCommand {
40
40
  totalRam: z.ZodNullable<z.ZodString>;
41
41
  createdAt: z.ZodEffects<z.ZodString, Date, string>;
42
42
  updatedAt: z.ZodEffects<z.ZodString, Date, string>;
43
- excludedInbounds: z.ZodArray<z.ZodObject<{
43
+ activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
44
+ activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
44
45
  uuid: z.ZodString;
46
+ profileUuid: z.ZodString;
45
47
  tag: z.ZodString;
46
48
  type: z.ZodString;
47
49
  network: z.ZodNullable<z.ZodString>;
48
50
  security: z.ZodNullable<z.ZodString>;
51
+ port: z.ZodNullable<z.ZodNumber>;
52
+ rawInbound: z.ZodNullable<z.ZodUnknown>;
49
53
  }, "strip", z.ZodTypeAny, {
50
54
  type: string;
51
55
  uuid: string;
56
+ profileUuid: string;
52
57
  tag: string;
53
58
  network: string | null;
54
59
  security: string | null;
60
+ port: number | null;
61
+ rawInbound?: unknown;
55
62
  }, {
56
63
  type: string;
57
64
  uuid: string;
65
+ profileUuid: string;
58
66
  tag: string;
59
67
  network: string | null;
60
68
  security: string | null;
61
- }>, "many">;
69
+ port: number | null;
70
+ rawInbound?: unknown;
71
+ }>, "many">>;
72
+ providerUuid: z.ZodNullable<z.ZodString>;
73
+ provider: z.ZodNullable<z.ZodObject<{
74
+ uuid: z.ZodString;
75
+ name: z.ZodString;
76
+ faviconLink: z.ZodNullable<z.ZodString>;
77
+ loginUrl: z.ZodNullable<z.ZodString>;
78
+ createdAt: z.ZodEffects<z.ZodString, Date, string>;
79
+ updatedAt: z.ZodEffects<z.ZodString, Date, string>;
80
+ billingHistory: z.ZodObject<{
81
+ totalAmount: z.ZodNumber;
82
+ totalBills: z.ZodNumber;
83
+ }, "strip", z.ZodTypeAny, {
84
+ totalAmount: number;
85
+ totalBills: number;
86
+ }, {
87
+ totalAmount: number;
88
+ totalBills: number;
89
+ }>;
90
+ billingNodes: z.ZodArray<z.ZodObject<{
91
+ nodeUuid: z.ZodString;
92
+ name: z.ZodString;
93
+ countryCode: z.ZodString;
94
+ }, "strip", z.ZodTypeAny, {
95
+ name: string;
96
+ countryCode: string;
97
+ nodeUuid: string;
98
+ }, {
99
+ name: string;
100
+ countryCode: string;
101
+ nodeUuid: string;
102
+ }>, "many">;
103
+ }, "strip", z.ZodTypeAny, {
104
+ uuid: string;
105
+ createdAt: Date;
106
+ updatedAt: Date;
107
+ name: string;
108
+ faviconLink: string | null;
109
+ loginUrl: string | null;
110
+ billingHistory: {
111
+ totalAmount: number;
112
+ totalBills: number;
113
+ };
114
+ billingNodes: {
115
+ name: string;
116
+ countryCode: string;
117
+ nodeUuid: string;
118
+ }[];
119
+ }, {
120
+ uuid: string;
121
+ createdAt: string;
122
+ updatedAt: string;
123
+ name: string;
124
+ faviconLink: string | null;
125
+ loginUrl: string | null;
126
+ billingHistory: {
127
+ totalAmount: number;
128
+ totalBills: number;
129
+ };
130
+ billingNodes: {
131
+ name: string;
132
+ countryCode: string;
133
+ nodeUuid: string;
134
+ }[];
135
+ }>>;
62
136
  }, "strip", z.ZodTypeAny, {
63
137
  uuid: string;
64
138
  createdAt: Date;
65
139
  updatedAt: Date;
66
- trafficLimitBytes: number | null;
140
+ name: string;
67
141
  port: number | null;
142
+ countryCode: string;
143
+ trafficLimitBytes: number | null;
68
144
  viewPosition: number;
69
145
  address: string;
70
146
  isDisabled: boolean;
71
- name: string;
72
147
  isConnected: boolean;
73
148
  isConnecting: boolean;
74
149
  isNodeOnline: boolean;
@@ -82,28 +157,50 @@ export declare namespace GetOneNodeCommand {
82
157
  trafficUsedBytes: number | null;
83
158
  notifyPercent: number | null;
84
159
  usersOnline: number | null;
85
- countryCode: string;
86
160
  consumptionMultiplier: number;
87
161
  cpuCount: number | null;
88
162
  cpuModel: string | null;
89
163
  totalRam: string | null;
90
- excludedInbounds: {
164
+ activeConfigProfileUuid: string | null;
165
+ activeInbounds: {
91
166
  type: string;
92
167
  uuid: string;
168
+ profileUuid: string;
93
169
  tag: string;
94
170
  network: string | null;
95
171
  security: string | null;
96
- }[];
172
+ port: number | null;
173
+ rawInbound?: unknown;
174
+ }[] | null;
175
+ providerUuid: string | null;
176
+ provider: {
177
+ uuid: string;
178
+ createdAt: Date;
179
+ updatedAt: Date;
180
+ name: string;
181
+ faviconLink: string | null;
182
+ loginUrl: string | null;
183
+ billingHistory: {
184
+ totalAmount: number;
185
+ totalBills: number;
186
+ };
187
+ billingNodes: {
188
+ name: string;
189
+ countryCode: string;
190
+ nodeUuid: string;
191
+ }[];
192
+ } | null;
97
193
  }, {
98
194
  uuid: string;
99
195
  createdAt: string;
100
196
  updatedAt: string;
101
- trafficLimitBytes: number | null;
197
+ name: string;
102
198
  port: number | null;
199
+ countryCode: string;
200
+ trafficLimitBytes: number | null;
103
201
  viewPosition: number;
104
202
  address: string;
105
203
  isDisabled: boolean;
106
- name: string;
107
204
  isConnected: boolean;
108
205
  isConnecting: boolean;
109
206
  isNodeOnline: boolean;
@@ -117,30 +214,52 @@ export declare namespace GetOneNodeCommand {
117
214
  trafficUsedBytes: number | null;
118
215
  notifyPercent: number | null;
119
216
  usersOnline: number | null;
120
- countryCode: string;
121
217
  consumptionMultiplier: number;
122
218
  cpuCount: number | null;
123
219
  cpuModel: string | null;
124
220
  totalRam: string | null;
125
- excludedInbounds: {
221
+ activeConfigProfileUuid: string | null;
222
+ activeInbounds: {
126
223
  type: string;
127
224
  uuid: string;
225
+ profileUuid: string;
128
226
  tag: string;
129
227
  network: string | null;
130
228
  security: string | null;
131
- }[];
229
+ port: number | null;
230
+ rawInbound?: unknown;
231
+ }[] | null;
232
+ providerUuid: string | null;
233
+ provider: {
234
+ uuid: string;
235
+ createdAt: string;
236
+ updatedAt: string;
237
+ name: string;
238
+ faviconLink: string | null;
239
+ loginUrl: string | null;
240
+ billingHistory: {
241
+ totalAmount: number;
242
+ totalBills: number;
243
+ };
244
+ billingNodes: {
245
+ name: string;
246
+ countryCode: string;
247
+ nodeUuid: string;
248
+ }[];
249
+ } | null;
132
250
  }>;
133
251
  }, "strip", z.ZodTypeAny, {
134
252
  response: {
135
253
  uuid: string;
136
254
  createdAt: Date;
137
255
  updatedAt: Date;
138
- trafficLimitBytes: number | null;
256
+ name: string;
139
257
  port: number | null;
258
+ countryCode: string;
259
+ trafficLimitBytes: number | null;
140
260
  viewPosition: number;
141
261
  address: string;
142
262
  isDisabled: boolean;
143
- name: string;
144
263
  isConnected: boolean;
145
264
  isConnecting: boolean;
146
265
  isNodeOnline: boolean;
@@ -154,30 +273,52 @@ export declare namespace GetOneNodeCommand {
154
273
  trafficUsedBytes: number | null;
155
274
  notifyPercent: number | null;
156
275
  usersOnline: number | null;
157
- countryCode: string;
158
276
  consumptionMultiplier: number;
159
277
  cpuCount: number | null;
160
278
  cpuModel: string | null;
161
279
  totalRam: string | null;
162
- excludedInbounds: {
280
+ activeConfigProfileUuid: string | null;
281
+ activeInbounds: {
163
282
  type: string;
164
283
  uuid: string;
284
+ profileUuid: string;
165
285
  tag: string;
166
286
  network: string | null;
167
287
  security: string | null;
168
- }[];
288
+ port: number | null;
289
+ rawInbound?: unknown;
290
+ }[] | null;
291
+ providerUuid: string | null;
292
+ provider: {
293
+ uuid: string;
294
+ createdAt: Date;
295
+ updatedAt: Date;
296
+ name: string;
297
+ faviconLink: string | null;
298
+ loginUrl: string | null;
299
+ billingHistory: {
300
+ totalAmount: number;
301
+ totalBills: number;
302
+ };
303
+ billingNodes: {
304
+ name: string;
305
+ countryCode: string;
306
+ nodeUuid: string;
307
+ }[];
308
+ } | null;
169
309
  };
170
310
  }, {
171
311
  response: {
172
312
  uuid: string;
173
313
  createdAt: string;
174
314
  updatedAt: string;
175
- trafficLimitBytes: number | null;
315
+ name: string;
176
316
  port: number | null;
317
+ countryCode: string;
318
+ trafficLimitBytes: number | null;
177
319
  viewPosition: number;
178
320
  address: string;
179
321
  isDisabled: boolean;
180
- name: string;
181
322
  isConnected: boolean;
182
323
  isConnecting: boolean;
183
324
  isNodeOnline: boolean;
@@ -191,18 +332,39 @@ export declare namespace GetOneNodeCommand {
191
332
  trafficUsedBytes: number | null;
192
333
  notifyPercent: number | null;
193
334
  usersOnline: number | null;
194
- countryCode: string;
195
335
  consumptionMultiplier: number;
196
336
  cpuCount: number | null;
197
337
  cpuModel: string | null;
198
338
  totalRam: string | null;
199
- excludedInbounds: {
339
+ activeConfigProfileUuid: string | null;
340
+ activeInbounds: {
200
341
  type: string;
201
342
  uuid: string;
343
+ profileUuid: string;
202
344
  tag: string;
203
345
  network: string | null;
204
346
  security: string | null;
205
- }[];
347
+ port: number | null;
348
+ rawInbound?: unknown;
349
+ }[] | null;
350
+ providerUuid: string | null;
351
+ provider: {
352
+ uuid: string;
353
+ createdAt: string;
354
+ updatedAt: string;
355
+ name: string;
356
+ faviconLink: string | null;
357
+ loginUrl: string | null;
358
+ billingHistory: {
359
+ totalAmount: number;
360
+ totalBills: number;
361
+ };
362
+ billingNodes: {
363
+ name: string;
364
+ countryCode: string;
365
+ nodeUuid: string;
366
+ }[];
367
+ } | null;
206
368
  };
207
369
  }>;
208
370
  type Response = z.infer<typeof ResponseSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"get-one.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-one.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
1
+ {"version":3,"file":"get-one.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-one.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAA6B,CAAC;IACvC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}