@revisium/core 0.9.4 → 0.9.5

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 (3017) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +2 -2
  3. package/dist/jest.setup.d.ts +1 -0
  4. package/dist/jest.setup.js +5 -0
  5. package/dist/jest.setup.js.map +1 -0
  6. package/dist/package.json +20 -13
  7. package/dist/prisma/migrations/20250102205030_upgrade_to_v6/migration.sql +17 -0
  8. package/dist/prisma/migrations/migration_lock.toml +1 -1
  9. package/dist/prisma/schema.prisma +1 -1
  10. package/dist/prisma/seed.js +2 -2
  11. package/dist/prisma/seed.js.map +1 -1
  12. package/dist/src/__tests__/create-models.d.ts +14 -0
  13. package/dist/src/__tests__/create-models.js +23 -0
  14. package/dist/src/__tests__/create-models.js.map +1 -0
  15. package/dist/src/__tests__/utils/createMocks.d.ts +5 -5
  16. package/dist/src/__tests__/utils/implementIdService.d.ts +1 -1
  17. package/dist/src/__tests__/utils/rowMocks.d.ts +1 -1
  18. package/dist/src/__tests__/utils/schema/schema.mocks.d.ts +2 -2
  19. package/dist/src/__tests__/utils/schema/schema.mocks.js +1 -1
  20. package/dist/src/__tests__/utils/schema/schema.mocks.js.map +1 -1
  21. package/dist/src/api/graphql-api/auth/auth.resolver.d.ts +13 -0
  22. package/dist/src/api/graphql-api/auth/auth.resolver.js +103 -0
  23. package/dist/src/api/graphql-api/auth/auth.resolver.js.map +1 -0
  24. package/dist/src/api/graphql-api/auth/inputs/confirm-email-code.input.js.map +1 -0
  25. package/dist/src/api/graphql-api/auth/inputs/create-user.input.d.ts +7 -0
  26. package/dist/src/api/graphql-api/auth/inputs/create-user.input.js +37 -0
  27. package/dist/src/api/graphql-api/auth/inputs/create-user.input.js.map +1 -0
  28. package/dist/src/api/graphql-api/auth/inputs/index.d.ts +6 -0
  29. package/dist/src/api/graphql-api/auth/inputs/index.js.map +1 -0
  30. package/dist/src/api/graphql-api/auth/inputs/login-github.input.js.map +1 -0
  31. package/dist/src/api/graphql-api/auth/inputs/login-google.input.js.map +1 -0
  32. package/dist/src/api/graphql-api/auth/inputs/login.input.js.map +1 -0
  33. package/dist/src/api/graphql-api/auth/inputs/sign-up.input.js.map +1 -0
  34. package/dist/src/api/graphql-api/auth/model/index.d.ts +1 -0
  35. package/dist/src/api/graphql-api/auth/model/index.js.map +1 -0
  36. package/dist/src/api/graphql-api/auth/model/login.model.js.map +1 -0
  37. package/dist/src/api/graphql-api/branch/branch.resolver.d.ts +23 -0
  38. package/dist/src/api/graphql-api/branch/branch.resolver.js +176 -0
  39. package/dist/src/api/graphql-api/branch/branch.resolver.js.map +1 -0
  40. package/dist/src/api/graphql-api/branch/inputs/create-branch-by-revision-id.input.js.map +1 -0
  41. package/dist/src/api/graphql-api/branch/inputs/create-branch.input.js.map +1 -0
  42. package/dist/src/api/graphql-api/branch/inputs/get-branch-revisions.input.js.map +1 -0
  43. package/dist/src/api/graphql-api/branch/inputs/get-branch.input.js.map +1 -0
  44. package/dist/src/api/graphql-api/branch/inputs/get-branches.input.js.map +1 -0
  45. package/dist/src/api/graphql-api/branch/inputs/index.d.ts +5 -0
  46. package/dist/src/api/graphql-api/branch/inputs/index.js.map +1 -0
  47. package/dist/src/api/graphql-api/branch/inputs/revert-changes.input.js.map +1 -0
  48. package/dist/src/api/graphql-api/branch/model/branch.model.d.ts +21 -0
  49. package/dist/src/api/graphql-api/branch/model/branch.model.js.map +1 -0
  50. package/dist/src/api/graphql-api/branch/model/parent-branch.model.d.ts +6 -0
  51. package/dist/src/api/graphql-api/branch/model/parent-branch.model.js.map +1 -0
  52. package/dist/src/api/graphql-api/branch/parent-branch.resolver.d.ts +8 -0
  53. package/dist/src/api/graphql-api/branch/parent-branch.resolver.js +51 -0
  54. package/dist/src/api/graphql-api/branch/parent-branch.resolver.js.map +1 -0
  55. package/dist/src/api/graphql-api/configuration/configuration.resolver.d.ts +7 -0
  56. package/dist/src/api/graphql-api/configuration/configuration.resolver.js +36 -0
  57. package/dist/src/api/graphql-api/configuration/configuration.resolver.js.map +1 -0
  58. package/dist/src/api/graphql-api/configuration/model/configuration.model.js.map +1 -0
  59. package/dist/src/api/graphql-api/configuration/model/index.d.ts +1 -0
  60. package/dist/src/api/graphql-api/configuration/model/index.js.map +1 -0
  61. package/dist/src/api/graphql-api/current-user.decorator.js.map +1 -0
  62. package/dist/src/api/graphql-api/draft/draft.resolver.d.ts +13 -0
  63. package/dist/src/api/graphql-api/draft/draft.resolver.js +140 -0
  64. package/dist/src/api/graphql-api/draft/draft.resolver.js.map +1 -0
  65. package/dist/src/api/graphql-api/draft/input/create-row.input.d.ts +5 -0
  66. package/dist/src/api/graphql-api/draft/input/create-row.input.js.map +1 -0
  67. package/dist/src/api/graphql-api/draft/input/create-table.input.js.map +1 -0
  68. package/dist/src/api/graphql-api/draft/input/index.d.ts +5 -0
  69. package/dist/src/api/graphql-api/draft/input/index.js.map +1 -0
  70. package/dist/src/api/graphql-api/draft/input/remove-row.input.d.ts +3 -0
  71. package/dist/src/api/graphql-api/draft/input/remove-row.input.js.map +1 -0
  72. package/dist/src/api/graphql-api/draft/input/remove-table.input.js.map +1 -0
  73. package/dist/src/api/graphql-api/draft/input/update-row.input.d.ts +5 -0
  74. package/dist/src/api/graphql-api/draft/input/update-row.input.js.map +1 -0
  75. package/dist/src/api/graphql-api/draft/input/update-table.input.d.ts +6 -0
  76. package/dist/src/api/graphql-api/draft/input/update-table.input.js.map +1 -0
  77. package/dist/src/api/graphql-api/draft/model/create-row-result.model.d.ts +7 -0
  78. package/dist/src/api/graphql-api/draft/model/create-row-result.model.js.map +1 -0
  79. package/dist/src/api/graphql-api/draft/model/create-table-result.model.d.ts +6 -0
  80. package/dist/src/api/graphql-api/draft/model/create-table-result.model.js.map +1 -0
  81. package/dist/src/api/graphql-api/draft/model/remove-row-result.model.d.ts +7 -0
  82. package/dist/src/api/graphql-api/draft/model/remove-row-result.model.js.map +1 -0
  83. package/dist/src/api/graphql-api/draft/model/remove-table-result.model.d.ts +4 -0
  84. package/dist/src/api/graphql-api/draft/model/remove-table-result.model.js.map +1 -0
  85. package/dist/src/api/graphql-api/draft/model/update-row-result.model.d.ts +8 -0
  86. package/dist/src/api/graphql-api/draft/model/update-row-result.model.js.map +1 -0
  87. package/dist/src/api/graphql-api/draft/model/update-table-result.model.d.ts +5 -0
  88. package/dist/src/api/graphql-api/draft/model/update-table-result.model.js.map +1 -0
  89. package/dist/src/api/graphql-api/endpoint/endpoint.resolver.d.ts +11 -0
  90. package/dist/src/api/graphql-api/endpoint/endpoint.resolver.js +83 -0
  91. package/dist/src/api/graphql-api/endpoint/endpoint.resolver.js.map +1 -0
  92. package/dist/src/api/graphql-api/endpoint/inputs/create-endpoint.input.d.ts +5 -0
  93. package/dist/src/api/graphql-api/endpoint/inputs/create-endpoint.input.js.map +1 -0
  94. package/dist/src/api/graphql-api/endpoint/inputs/delete-endpoint.input.js.map +1 -0
  95. package/dist/src/api/graphql-api/endpoint/inputs/get-endpoint.input.js.map +1 -0
  96. package/dist/src/api/graphql-api/endpoint/inputs/index.d.ts +3 -0
  97. package/dist/src/api/graphql-api/endpoint/inputs/index.js.map +1 -0
  98. package/dist/src/api/graphql-api/endpoint/model/endpoint.model.d.ts +11 -0
  99. package/dist/src/api/graphql-api/endpoint/model/endpoint.model.js.map +1 -0
  100. package/dist/src/api/graphql-api/endpoint/model/index.d.ts +1 -0
  101. package/dist/src/api/graphql-api/endpoint/model/index.js.map +1 -0
  102. package/dist/src/api/graphql-api/graphql-api.module.js +86 -0
  103. package/dist/src/api/graphql-api/graphql-api.module.js.map +1 -0
  104. package/dist/src/api/graphql-api/organization/inputs/add-user-to-organization.input.d.ts +6 -0
  105. package/dist/src/api/graphql-api/organization/inputs/add-user-to-organization.input.js +33 -0
  106. package/dist/src/api/graphql-api/organization/inputs/add-user-to-organization.input.js.map +1 -0
  107. package/dist/src/api/graphql-api/organization/inputs/get-users-organization.input.js.map +1 -0
  108. package/dist/src/api/graphql-api/organization/inputs/index.d.ts +3 -0
  109. package/dist/src/api/graphql-api/organization/inputs/index.js.map +1 -0
  110. package/dist/src/api/graphql-api/organization/inputs/remove-user-from-organization.input.js.map +1 -0
  111. package/dist/src/api/graphql-api/organization/model/users-organization.connection.d.ts +5 -0
  112. package/dist/src/api/graphql-api/organization/model/users-organization.connection.js.map +1 -0
  113. package/dist/src/api/graphql-api/organization/model/users-organization.model.d.ts +7 -0
  114. package/dist/src/api/graphql-api/organization/model/users-organization.model.js.map +1 -0
  115. package/dist/src/api/graphql-api/organization/organization.resolver.d.ts +15 -0
  116. package/dist/src/api/graphql-api/organization/organization.resolver.js +126 -0
  117. package/dist/src/api/graphql-api/organization/organization.resolver.js.map +1 -0
  118. package/dist/src/api/graphql-api/project/inputs/add-user-to-project.input.d.ts +7 -0
  119. package/dist/src/api/graphql-api/project/inputs/add-user-to-project.input.js +37 -0
  120. package/dist/src/api/graphql-api/project/inputs/add-user-to-project.input.js.map +1 -0
  121. package/dist/src/api/graphql-api/project/inputs/create-project.input.js.map +1 -0
  122. package/dist/src/api/graphql-api/project/inputs/delete-project.input.js.map +1 -0
  123. package/dist/src/api/graphql-api/project/inputs/get-project-branches.input.js.map +1 -0
  124. package/dist/src/api/graphql-api/project/inputs/get-project.input.js.map +1 -0
  125. package/dist/src/api/graphql-api/project/inputs/get-projects.input.js.map +1 -0
  126. package/dist/src/api/graphql-api/project/inputs/get-users-project.input.js.map +1 -0
  127. package/dist/src/api/graphql-api/project/inputs/index.d.ts +7 -0
  128. package/dist/src/api/graphql-api/project/inputs/index.js.map +1 -0
  129. package/dist/src/api/graphql-api/project/inputs/remove-user-from-project.input.js.map +1 -0
  130. package/dist/src/api/graphql-api/project/inputs/update-project.input.js.map +1 -0
  131. package/dist/src/api/graphql-api/project/model/index.d.ts +1 -0
  132. package/dist/src/api/graphql-api/project/model/index.js.map +1 -0
  133. package/dist/src/api/graphql-api/project/model/project.model.d.ts +10 -0
  134. package/dist/src/api/graphql-api/project/model/project.model.js.map +1 -0
  135. package/dist/src/api/graphql-api/project/model/projects.connection.d.ts +5 -0
  136. package/dist/src/api/graphql-api/project/model/projects.connection.js.map +1 -0
  137. package/dist/src/api/graphql-api/project/model/users-project.connection.d.ts +5 -0
  138. package/dist/src/api/graphql-api/project/model/users-project.connection.js.map +1 -0
  139. package/dist/src/api/graphql-api/project/model/users-project.model.d.ts +7 -0
  140. package/dist/src/api/graphql-api/project/model/users-project.model.js.map +1 -0
  141. package/dist/src/api/graphql-api/project/project.resolver.d.ts +17 -0
  142. package/dist/src/api/graphql-api/project/project.resolver.js +154 -0
  143. package/dist/src/api/graphql-api/project/project.resolver.js.map +1 -0
  144. package/dist/src/api/graphql-api/registerGraphqlEnums.js +14 -0
  145. package/dist/src/api/graphql-api/registerGraphqlEnums.js.map +1 -0
  146. package/dist/src/api/graphql-api/revision/child-branch.resolver.d.ts +8 -0
  147. package/dist/src/api/graphql-api/revision/child-branch.resolver.js +51 -0
  148. package/dist/src/api/graphql-api/revision/child-branch.resolver.js.map +1 -0
  149. package/dist/src/api/graphql-api/revision/inputs/create-revision.input.js.map +1 -0
  150. package/dist/src/api/graphql-api/revision/inputs/get-revision-tables.input.js.map +1 -0
  151. package/dist/src/api/graphql-api/revision/inputs/get-revision.input.js.map +1 -0
  152. package/dist/src/api/graphql-api/revision/model/child-branch.model.d.ts +6 -0
  153. package/dist/src/api/graphql-api/revision/model/child-branch.model.js.map +1 -0
  154. package/dist/src/api/graphql-api/revision/model/revision.model.d.ts +24 -0
  155. package/dist/src/api/graphql-api/revision/model/revision.model.js.map +1 -0
  156. package/dist/src/api/graphql-api/revision/revision.resolver.d.ts +19 -0
  157. package/dist/src/api/graphql-api/revision/revision.resolver.js +150 -0
  158. package/dist/src/api/graphql-api/revision/revision.resolver.js.map +1 -0
  159. package/dist/src/api/graphql-api/role/model/role.model.js.map +1 -0
  160. package/dist/src/api/graphql-api/row/inputs/get-row-count-references-by.input.js.map +1 -0
  161. package/dist/src/api/graphql-api/row/inputs/get-row-references.input.js.map +1 -0
  162. package/dist/src/api/graphql-api/row/inputs/get-row.input.js.map +1 -0
  163. package/dist/src/api/graphql-api/row/inputs/get-rows.input.js.map +1 -0
  164. package/dist/src/api/graphql-api/row/inputs/index.d.ts +3 -0
  165. package/dist/src/api/graphql-api/row/inputs/index.js.map +1 -0
  166. package/dist/src/api/graphql-api/row/model/row-reference.model.d.ts +6 -0
  167. package/dist/src/api/graphql-api/row/model/row-reference.model.js.map +1 -0
  168. package/dist/src/api/graphql-api/row/model/row-references-connection.model.d.ts +5 -0
  169. package/dist/src/api/graphql-api/row/model/row-references-connection.model.js.map +1 -0
  170. package/dist/src/api/graphql-api/row/model/row.model.d.ts +17 -0
  171. package/dist/src/api/graphql-api/row/model/row.model.js.map +1 -0
  172. package/dist/src/api/graphql-api/row/model/rows-connection.model.d.ts +5 -0
  173. package/dist/src/api/graphql-api/row/model/rows-connection.model.js.map +1 -0
  174. package/dist/src/api/graphql-api/row/row.resolver.d.ts +16 -0
  175. package/dist/src/api/graphql-api/row/row.resolver.js +128 -0
  176. package/dist/src/api/graphql-api/row/row.resolver.js.map +1 -0
  177. package/dist/src/api/graphql-api/share/model/paginated.model.d.ts +9 -0
  178. package/dist/src/api/graphql-api/share/model/paginated.model.js.map +1 -0
  179. package/dist/src/api/graphql-api/table/inputs/get-table-references.input.js.map +1 -0
  180. package/dist/src/api/graphql-api/table/inputs/get-table-rows.input.js.map +1 -0
  181. package/dist/src/api/graphql-api/table/inputs/get-table.input.js.map +1 -0
  182. package/dist/src/api/graphql-api/table/inputs/get-tables.input.js.map +1 -0
  183. package/dist/src/api/graphql-api/table/model/table-connection.model.d.ts +5 -0
  184. package/dist/src/api/graphql-api/table/model/table-connection.model.js.map +1 -0
  185. package/dist/src/api/graphql-api/table/model/table.model.d.ts +20 -0
  186. package/dist/src/api/graphql-api/table/model/table.model.js.map +1 -0
  187. package/dist/src/api/graphql-api/table/table.resolver.d.ts +20 -0
  188. package/dist/src/api/graphql-api/table/table.resolver.js +166 -0
  189. package/dist/src/api/graphql-api/table/table.resolver.js.map +1 -0
  190. package/dist/src/api/graphql-api/user/inputs/index.d.ts +3 -0
  191. package/dist/src/api/graphql-api/user/inputs/index.js.map +1 -0
  192. package/dist/src/api/graphql-api/user/inputs/me-projects.input.js.map +1 -0
  193. package/dist/src/api/graphql-api/user/inputs/set-username.input.js.map +1 -0
  194. package/dist/src/api/graphql-api/user/inputs/update-password.input.js.map +1 -0
  195. package/dist/src/api/graphql-api/user/model/user.model.js.map +1 -0
  196. package/dist/src/api/graphql-api/user/user.resolver.d.ts +15 -0
  197. package/dist/src/api/graphql-api/user/user.resolver.js +104 -0
  198. package/dist/src/api/graphql-api/user/user.resolver.js.map +1 -0
  199. package/dist/src/api/rest-api/auth/auth.controller.d.ts +13 -0
  200. package/dist/src/api/rest-api/auth/auth.controller.js +86 -0
  201. package/dist/src/api/rest-api/auth/auth.controller.js.map +1 -0
  202. package/dist/src/api/rest-api/auth/dto/create-user.dto.d.ts +7 -0
  203. package/dist/src/api/rest-api/auth/dto/create-user.dto.js +34 -0
  204. package/dist/src/api/rest-api/auth/dto/create-user.dto.js.map +1 -0
  205. package/dist/src/api/rest-api/auth/dto/index.d.ts +2 -0
  206. package/dist/src/api/rest-api/auth/dto/index.js.map +1 -0
  207. package/dist/src/api/rest-api/auth/dto/login.dto.js.map +1 -0
  208. package/dist/src/api/rest-api/auth/dto/update-password.dto.js.map +1 -0
  209. package/dist/src/api/rest-api/auth/model/index.d.ts +1 -0
  210. package/dist/src/api/rest-api/auth/model/index.js.map +1 -0
  211. package/dist/src/api/rest-api/auth/model/login.response.js.map +1 -0
  212. package/dist/src/api/rest-api/branch/branch-by-name.controller.d.ts +19 -0
  213. package/dist/src/api/rest-api/branch/branch-by-name.controller.js +225 -0
  214. package/dist/src/api/rest-api/branch/branch-by-name.controller.js.map +1 -0
  215. package/dist/src/api/rest-api/branch/dto/create-branch-by-revision.dto.js.map +1 -0
  216. package/dist/src/api/rest-api/branch/dto/create-revision.dto.js.map +1 -0
  217. package/dist/src/api/rest-api/branch/dto/get-branch-revisions.dto.js.map +1 -0
  218. package/dist/src/api/rest-api/branch/dto/index.d.ts +3 -0
  219. package/dist/src/api/rest-api/branch/dto/index.js.map +1 -0
  220. package/dist/src/api/rest-api/branch/model/branch.model.js.map +1 -0
  221. package/dist/src/api/rest-api/branch/model/index.d.ts +2 -0
  222. package/dist/src/api/rest-api/branch/model/index.js.map +1 -0
  223. package/dist/src/api/rest-api/branch/model/parent-branch.response.js.map +1 -0
  224. package/dist/src/api/rest-api/configuration/configuration.controller.d.ts +7 -0
  225. package/dist/src/api/rest-api/configuration/configuration.controller.js +42 -0
  226. package/dist/src/api/rest-api/configuration/configuration.controller.js.map +1 -0
  227. package/dist/src/api/rest-api/configuration/model/configuration.response.js.map +1 -0
  228. package/dist/src/api/rest-api/configuration/model/index.d.ts +1 -0
  229. package/dist/src/api/rest-api/configuration/model/index.js.map +1 -0
  230. package/dist/src/api/rest-api/endpoint/endpointByIdController.js +60 -0
  231. package/dist/src/api/rest-api/endpoint/endpointByIdController.js.map +1 -0
  232. package/dist/src/api/rest-api/endpoint/model/endpoint.model.js.map +1 -0
  233. package/dist/src/api/rest-api/endpoint/model/index.d.ts +1 -0
  234. package/dist/src/api/rest-api/endpoint/model/index.js.map +1 -0
  235. package/dist/src/api/rest-api/organization/dto/add-user-to-organization.dto.d.ts +5 -0
  236. package/dist/src/api/rest-api/organization/dto/add-user-to-organization.dto.js +26 -0
  237. package/dist/src/api/rest-api/organization/dto/add-user-to-organization.dto.js.map +1 -0
  238. package/dist/src/api/rest-api/organization/dto/create-project.dto.js.map +1 -0
  239. package/dist/src/api/rest-api/organization/dto/get-projects.dto.js.map +1 -0
  240. package/dist/src/api/rest-api/organization/dto/get-users-organization.dto.js.map +1 -0
  241. package/dist/src/api/rest-api/organization/dto/index.d.ts +5 -0
  242. package/dist/src/api/rest-api/organization/dto/index.js.map +1 -0
  243. package/dist/src/api/rest-api/organization/dto/remove-user-from-organization.dto.js.map +1 -0
  244. package/dist/src/api/rest-api/organization/model/index.d.ts +3 -0
  245. package/dist/src/api/rest-api/organization/model/index.js.map +1 -0
  246. package/dist/src/api/rest-api/organization/model/project.connection.js.map +1 -0
  247. package/dist/src/api/rest-api/organization/model/users-organization.connection.js.map +1 -0
  248. package/dist/src/api/rest-api/organization/model/users-organization.model.d.ts +7 -0
  249. package/dist/src/api/rest-api/organization/model/users-organization.model.js.map +1 -0
  250. package/dist/src/api/rest-api/organization/organization.controller.d.ts +16 -0
  251. package/dist/src/api/rest-api/organization/organization.controller.js +147 -0
  252. package/dist/src/api/rest-api/organization/organization.controller.js.map +1 -0
  253. package/dist/src/api/rest-api/project/dto/add-user-to-project.dto.d.ts +5 -0
  254. package/dist/src/api/rest-api/project/dto/add-user-to-project.dto.js +26 -0
  255. package/dist/src/api/rest-api/project/dto/add-user-to-project.dto.js.map +1 -0
  256. package/dist/src/api/rest-api/project/dto/get-project-branches.dto.js.map +1 -0
  257. package/dist/src/api/rest-api/project/dto/get-users-project.dto.js.map +1 -0
  258. package/dist/src/api/rest-api/project/dto/update-project.dto.js.map +1 -0
  259. package/dist/src/api/rest-api/project/model/index.d.ts +3 -0
  260. package/dist/src/api/rest-api/project/model/index.js.map +1 -0
  261. package/dist/src/api/rest-api/project/model/project.model.js.map +1 -0
  262. package/dist/src/api/rest-api/project/model/users-project.connection.js.map +1 -0
  263. package/dist/src/api/rest-api/project/model/users-project.model.d.ts +7 -0
  264. package/dist/src/api/rest-api/project/model/users-project.model.js.map +1 -0
  265. package/dist/src/api/rest-api/project/project.controller.d.ts +19 -0
  266. package/dist/src/api/rest-api/project/project.controller.js +206 -0
  267. package/dist/src/api/rest-api/project/project.controller.js.map +1 -0
  268. package/dist/src/api/rest-api/rest-api.module.js +44 -0
  269. package/dist/src/api/rest-api/rest-api.module.js.map +1 -0
  270. package/dist/src/api/rest-api/revision/dto/create-endpoint.dto.js.map +1 -0
  271. package/dist/src/api/rest-api/revision/dto/create-table.dto.js.map +1 -0
  272. package/dist/src/api/rest-api/revision/dto/get-revision-tables.dto.js.map +1 -0
  273. package/dist/src/api/rest-api/revision/dto/index.d.ts +3 -0
  274. package/dist/src/api/rest-api/revision/dto/index.js.map +1 -0
  275. package/dist/src/api/rest-api/revision/model/child-branches.response.js.map +1 -0
  276. package/dist/src/api/rest-api/revision/model/create-table.response.d.ts +6 -0
  277. package/dist/src/api/rest-api/revision/model/create-table.response.js.map +1 -0
  278. package/dist/src/api/rest-api/revision/model/index.d.ts +2 -0
  279. package/dist/src/api/rest-api/revision/model/index.js.map +1 -0
  280. package/dist/src/api/rest-api/revision/model/revision.model.js.map +1 -0
  281. package/dist/src/api/rest-api/revision/revision-by-id.controller.d.ts +21 -0
  282. package/dist/src/api/rest-api/revision/revision-by-id.controller.js +213 -0
  283. package/dist/src/api/rest-api/revision/revision-by-id.controller.js.map +1 -0
  284. package/dist/src/api/rest-api/role/model/index.d.ts +1 -0
  285. package/dist/src/api/rest-api/role/model/index.js.map +1 -0
  286. package/dist/src/api/rest-api/role/model/role.model.js.map +1 -0
  287. package/dist/src/api/rest-api/row/dto/get-row-references-by.dto.js.map +1 -0
  288. package/dist/src/api/rest-api/row/dto/get-row-references-to.dto.js.map +1 -0
  289. package/dist/src/api/rest-api/row/dto/index.d.ts +2 -0
  290. package/dist/src/api/rest-api/row/dto/index.js.map +1 -0
  291. package/dist/src/api/rest-api/row/dto/update-row.dto.js.map +1 -0
  292. package/dist/src/api/rest-api/row/model/index.d.ts +3 -0
  293. package/dist/src/api/rest-api/row/model/index.js.map +1 -0
  294. package/dist/src/api/rest-api/row/model/remove-row.response.d.ts +7 -0
  295. package/dist/src/api/rest-api/row/model/remove-row.response.js.map +1 -0
  296. package/dist/src/api/rest-api/row/model/row.model.js.map +1 -0
  297. package/dist/src/api/rest-api/row/model/update-row.response.d.ts +8 -0
  298. package/dist/src/api/rest-api/row/model/update-row.response.js.map +1 -0
  299. package/dist/src/api/rest-api/row/row-by-id.controller.d.ts +17 -0
  300. package/dist/src/api/rest-api/row/row-by-id.controller.js +217 -0
  301. package/dist/src/api/rest-api/row/row-by-id.controller.js.map +1 -0
  302. package/dist/src/api/rest-api/share/model/error.model.d.ts +5 -0
  303. package/dist/src/api/rest-api/share/model/error.model.js +29 -0
  304. package/dist/src/api/rest-api/share/model/error.model.js.map +1 -0
  305. package/dist/src/api/rest-api/share/model/paginated.model.js.map +1 -0
  306. package/dist/src/api/rest-api/share/utils/transformFromPrismaToBranchModel.d.ts +3 -0
  307. package/dist/src/api/rest-api/share/utils/transformFromPrismaToBranchModel.js.map +1 -0
  308. package/dist/src/api/rest-api/share/utils/transformFromPrismaToEndpointsModel.d.ts +4 -0
  309. package/dist/src/api/rest-api/share/utils/transformFromPrismaToEndpointsModel.js.map +1 -0
  310. package/dist/src/api/rest-api/share/utils/transformFromPrismaToRevisionModel.d.ts +5 -0
  311. package/dist/src/api/rest-api/share/utils/transformFromPrismaToRevisionModel.js.map +1 -0
  312. package/dist/src/api/rest-api/share/utils/transformFromPrismaToRowModel.d.ts +5 -0
  313. package/dist/src/api/rest-api/share/utils/transformFromPrismaToRowModel.js.map +1 -0
  314. package/dist/src/api/rest-api/share/utils/transformFromPrismaToTableModel.d.ts +5 -0
  315. package/dist/src/api/rest-api/share/utils/transformFromPrismaToTableModel.js.map +1 -0
  316. package/dist/src/api/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.d.ts +5 -0
  317. package/dist/src/api/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.js.map +1 -0
  318. package/dist/src/api/rest-api/share/utils/transformFromPrismaToUserProjectModel.d.ts +5 -0
  319. package/dist/src/api/rest-api/share/utils/transformFromPrismaToUserProjectModel.js.map +1 -0
  320. package/dist/src/api/rest-api/table/dto/create-row.dto.js.map +1 -0
  321. package/dist/src/api/rest-api/table/dto/get-table-references-by.dto.js.map +1 -0
  322. package/dist/src/api/rest-api/table/dto/get-table-references-to.dto.js.map +1 -0
  323. package/dist/src/api/rest-api/table/dto/get-table-rows.dto.js.map +1 -0
  324. package/dist/src/api/rest-api/table/dto/index.d.ts +5 -0
  325. package/dist/src/api/rest-api/table/dto/index.js.map +1 -0
  326. package/dist/src/api/rest-api/table/dto/update-table.dto.d.ts +4 -0
  327. package/dist/src/api/rest-api/table/dto/update-table.dto.js.map +1 -0
  328. package/dist/src/api/rest-api/table/model/create-row.response.d.ts +6 -0
  329. package/dist/src/api/rest-api/table/model/create-row.response.js.map +1 -0
  330. package/dist/src/api/rest-api/table/model/index.d.ts +1 -0
  331. package/dist/src/api/rest-api/table/model/index.js.map +1 -0
  332. package/dist/src/api/rest-api/table/model/table.model.js.map +1 -0
  333. package/dist/src/api/rest-api/table/model/update-table.response.d.ts +5 -0
  334. package/dist/src/api/rest-api/table/model/update-table.response.js.map +1 -0
  335. package/dist/src/api/rest-api/table/table-by-id.controller.d.ts +23 -0
  336. package/dist/src/api/rest-api/table/table-by-id.controller.js +264 -0
  337. package/dist/src/api/rest-api/table/table-by-id.controller.js.map +1 -0
  338. package/dist/src/api/rest-api/user/model/index.d.ts +1 -0
  339. package/dist/src/api/rest-api/user/model/index.js.map +1 -0
  340. package/dist/src/api/rest-api/user/model/user.model.js.map +1 -0
  341. package/dist/src/api/rest-api/user/user.controller.d.ts +10 -0
  342. package/dist/src/api/rest-api/user/user.controller.js +49 -0
  343. package/dist/src/api/rest-api/user/user.controller.js.map +1 -0
  344. package/dist/src/app.module.js +11 -2
  345. package/dist/src/app.module.js.map +1 -1
  346. package/dist/src/core/core.module.js +19 -19
  347. package/dist/src/core/core.module.js.map +1 -1
  348. package/dist/src/features/auth/auth.module.js +51 -0
  349. package/dist/src/features/auth/auth.module.js.map +1 -0
  350. package/dist/src/features/auth/auth.service.d.ts +15 -0
  351. package/dist/src/features/auth/auth.service.js.map +1 -0
  352. package/dist/src/features/auth/casl-ability.factory.d.ts +9 -0
  353. package/dist/src/features/auth/casl-ability.factory.js +44 -0
  354. package/dist/src/features/auth/casl-ability.factory.js.map +1 -0
  355. package/dist/src/features/auth/commands/handlers/check-organization-permission.handler.d.ts +12 -0
  356. package/dist/src/features/auth/commands/handlers/check-organization-permission.handler.js +67 -0
  357. package/dist/src/features/auth/commands/handlers/check-organization-permission.handler.js.map +1 -0
  358. package/dist/src/features/auth/commands/handlers/check-project-permission.handler.d.ts +17 -0
  359. package/dist/src/features/auth/commands/handlers/check-project-permission.handler.js +150 -0
  360. package/dist/src/features/auth/commands/handlers/check-project-permission.handler.js.map +1 -0
  361. package/dist/src/features/auth/commands/handlers/check-system-permission.handler.d.ts +11 -0
  362. package/dist/src/features/auth/commands/handlers/check-system-permission.handler.js +54 -0
  363. package/dist/src/features/auth/commands/handlers/check-system-permission.handler.js.map +1 -0
  364. package/dist/src/features/auth/commands/handlers/confirm-email-code.handler.d.ts +14 -0
  365. package/dist/src/features/auth/commands/handlers/confirm-email-code.handler.js +63 -0
  366. package/dist/src/features/auth/commands/handlers/confirm-email-code.handler.js.map +1 -0
  367. package/dist/src/features/auth/commands/handlers/create-user.handler.d.ts +15 -0
  368. package/dist/src/features/auth/commands/handlers/create-user.handler.js +103 -0
  369. package/dist/src/features/auth/commands/handlers/create-user.handler.js.map +1 -0
  370. package/dist/src/features/auth/commands/handlers/index.d.ts +9 -0
  371. package/dist/src/features/auth/commands/handlers/index.js.map +1 -0
  372. package/dist/src/features/auth/commands/handlers/login-github.handler.d.ts +17 -0
  373. package/dist/src/features/auth/commands/handlers/login-github.handler.js +68 -0
  374. package/dist/src/features/auth/commands/handlers/login-github.handler.js.map +1 -0
  375. package/dist/src/features/auth/commands/handlers/login-google.handler.d.ts +17 -0
  376. package/dist/src/features/auth/commands/handlers/login-google.handler.js +68 -0
  377. package/dist/src/features/auth/commands/handlers/login-google.handler.js.map +1 -0
  378. package/dist/src/features/auth/commands/handlers/login.handler.d.ts +11 -0
  379. package/dist/src/features/auth/commands/handlers/login.handler.js +56 -0
  380. package/dist/src/features/auth/commands/handlers/login.handler.js.map +1 -0
  381. package/dist/src/features/auth/commands/handlers/sign-up.handler.d.ts +12 -0
  382. package/dist/src/features/auth/commands/handlers/sign-up.handler.js +48 -0
  383. package/dist/src/features/auth/commands/handlers/sign-up.handler.js.map +1 -0
  384. package/dist/src/features/auth/commands/impl/check-organization-permission.command.d.ts +13 -0
  385. package/dist/src/features/auth/commands/impl/check-organization-permission.command.js.map +1 -0
  386. package/dist/src/features/auth/commands/impl/check-project-permission.command.d.ts +25 -0
  387. package/dist/src/features/auth/commands/impl/check-project-permission.command.js.map +1 -0
  388. package/dist/src/features/auth/commands/impl/check-system-permission.command.d.ts +12 -0
  389. package/dist/src/features/auth/commands/impl/check-system-permission.command.js.map +1 -0
  390. package/dist/src/features/auth/commands/impl/confirm-email-code.command.js.map +1 -0
  391. package/dist/src/features/auth/commands/impl/create-user.command.d.ts +20 -0
  392. package/dist/src/features/auth/commands/impl/create-user.command.js.map +1 -0
  393. package/dist/src/features/auth/commands/impl/index.d.ts +9 -0
  394. package/dist/src/features/auth/commands/impl/index.js.map +1 -0
  395. package/dist/src/features/auth/commands/impl/login-github.command.js.map +1 -0
  396. package/dist/src/features/auth/commands/impl/login-google.command.js.map +1 -0
  397. package/dist/src/features/auth/commands/impl/login.command.js.map +1 -0
  398. package/dist/src/features/auth/commands/impl/sign-up.command.js.map +1 -0
  399. package/dist/src/features/auth/commands/index.d.ts +2 -0
  400. package/dist/src/features/auth/commands/index.js.map +1 -0
  401. package/dist/src/features/auth/consts.js.map +1 -0
  402. package/dist/src/features/auth/github-oauth.service.js +86 -0
  403. package/dist/src/features/auth/github-oauth.service.js.map +1 -0
  404. package/dist/src/features/auth/google-oauth.service.js +57 -0
  405. package/dist/src/features/auth/google-oauth.service.js.map +1 -0
  406. package/dist/src/features/auth/guards/base-persmission.guard.d.ts +24 -0
  407. package/dist/src/features/auth/guards/base-persmission.guard.js.map +1 -0
  408. package/dist/src/features/auth/guards/jwt/gql-jwt-auth-guard.service.js.map +1 -0
  409. package/dist/src/features/auth/guards/jwt/http-jwt-auth-guard.service.js.map +1 -0
  410. package/dist/src/features/auth/guards/jwt/local-auth.guard.js.map +1 -0
  411. package/dist/src/features/auth/guards/jwt/optional-gql-jwt-auth-guard.service.js.map +1 -0
  412. package/dist/src/features/auth/guards/jwt/optional-http-jwt-auth-guard.service.js.map +1 -0
  413. package/dist/src/features/auth/guards/organization.guard.d.ts +25 -0
  414. package/dist/src/features/auth/guards/organization.guard.js.map +1 -0
  415. package/dist/src/features/auth/guards/permission-params.d.ts +7 -0
  416. package/dist/src/features/auth/guards/permission-params.js.map +1 -0
  417. package/dist/src/features/auth/guards/project.guard.d.ts +31 -0
  418. package/dist/src/features/auth/guards/project.guard.js.map +1 -0
  419. package/dist/src/features/auth/guards/system.guard.d.ts +20 -0
  420. package/dist/src/features/auth/guards/system.guard.js.map +1 -0
  421. package/dist/src/features/auth/jwt-secret.service.js.map +1 -0
  422. package/dist/src/features/auth/strategy/jwt.strategy.d.ts +9 -0
  423. package/dist/src/features/auth/strategy/jwt.strategy.js.map +1 -0
  424. package/dist/src/features/auth/types.js.map +1 -0
  425. package/dist/src/features/auth/utils.d.ts +2 -0
  426. package/dist/src/features/auth/utils.js.map +1 -0
  427. package/dist/src/features/branch/branch.module.js +26 -0
  428. package/dist/src/features/branch/branch.module.js.map +1 -0
  429. package/dist/src/features/branch/commands/handlers/api-create-branch-by-revision-id.handler.d.ts +8 -0
  430. package/dist/src/features/branch/commands/handlers/api-create-branch-by-revision-id.handler.js.map +1 -0
  431. package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.d.ts +32 -0
  432. package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.js +135 -0
  433. package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.js.map +1 -0
  434. package/dist/src/features/branch/commands/handlers/index.d.ts +3 -0
  435. package/dist/src/features/branch/commands/handlers/index.js.map +1 -0
  436. package/dist/src/features/branch/commands/impl/api-create-branch-by-revision-id.command.js.map +1 -0
  437. package/dist/src/features/branch/commands/impl/create-branch-by-revision-id.command.js.map +1 -0
  438. package/dist/src/features/branch/commands/impl/index.d.ts +2 -0
  439. package/dist/src/features/branch/commands/impl/index.js.map +1 -0
  440. package/dist/src/features/branch/quieries/handlers/get-branch-by-id.handler.d.ts +15 -0
  441. package/dist/src/features/branch/quieries/handlers/get-branch-by-id.handler.js +29 -0
  442. package/dist/src/features/branch/quieries/handlers/get-branch-by-id.handler.js.map +1 -0
  443. package/dist/src/features/branch/quieries/handlers/get-branch.handler.d.ts +14 -0
  444. package/dist/src/features/branch/quieries/handlers/get-branch.handler.js +49 -0
  445. package/dist/src/features/branch/quieries/handlers/get-branch.handler.js.map +1 -0
  446. package/dist/src/features/branch/quieries/handlers/get-branches.handler.d.ts +22 -0
  447. package/dist/src/features/branch/quieries/handlers/get-branches.handler.js +65 -0
  448. package/dist/src/features/branch/quieries/handlers/get-branches.handler.js.map +1 -0
  449. package/dist/src/features/branch/quieries/handlers/get-draft-revision.handler.d.ts +9 -0
  450. package/dist/src/features/branch/quieries/handlers/get-draft-revision.handler.js +31 -0
  451. package/dist/src/features/branch/quieries/handlers/get-draft-revision.handler.js.map +1 -0
  452. package/dist/src/features/branch/quieries/handlers/get-head-revision.handler.d.ts +9 -0
  453. package/dist/src/features/branch/quieries/handlers/get-head-revision.handler.js +31 -0
  454. package/dist/src/features/branch/quieries/handlers/get-head-revision.handler.js.map +1 -0
  455. package/dist/src/features/branch/quieries/handlers/get-project-by-branch.handler.d.ts +14 -0
  456. package/dist/src/features/branch/quieries/handlers/get-project-by-branch.handler.js +31 -0
  457. package/dist/src/features/branch/quieries/handlers/get-project-by-branch.handler.js.map +1 -0
  458. package/dist/src/features/branch/quieries/handlers/get-revisions-by-branch-id.handler.d.ts +22 -0
  459. package/dist/src/features/branch/quieries/handlers/get-revisions-by-branch-id.handler.js +66 -0
  460. package/dist/src/features/branch/quieries/handlers/get-revisions-by-branch-id.handler.js.map +1 -0
  461. package/dist/src/features/branch/quieries/handlers/get-start-revision.handler.d.ts +9 -0
  462. package/dist/src/features/branch/quieries/handlers/get-start-revision.handler.js +31 -0
  463. package/dist/src/features/branch/quieries/handlers/get-start-revision.handler.js.map +1 -0
  464. package/dist/src/features/branch/quieries/handlers/get-touched-by-branch-id.handler.d.ts +13 -0
  465. package/dist/src/features/branch/quieries/handlers/get-touched-by-branch-id.handler.js +50 -0
  466. package/dist/src/features/branch/quieries/handlers/get-touched-by-branch-id.handler.js.map +1 -0
  467. package/dist/src/features/branch/quieries/handlers/index.d.ts +11 -0
  468. package/dist/src/features/branch/quieries/handlers/index.js.map +1 -0
  469. package/dist/src/features/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.d.ts +16 -0
  470. package/dist/src/features/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.js +53 -0
  471. package/dist/src/features/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.js.map +1 -0
  472. package/dist/src/features/branch/quieries/impl/get-branch-by-id.query.js.map +1 -0
  473. package/dist/src/features/branch/quieries/impl/get-branch.query.js.map +1 -0
  474. package/dist/src/features/branch/quieries/impl/get-branches.query.js.map +1 -0
  475. package/dist/src/features/branch/quieries/impl/get-draft-revision.query.js.map +1 -0
  476. package/dist/src/features/branch/quieries/impl/get-head-revision.query.js.map +1 -0
  477. package/dist/src/features/branch/quieries/impl/get-project-by-branch.query.js.map +1 -0
  478. package/dist/src/features/branch/quieries/impl/get-revisions-by-branch-id.query.js.map +1 -0
  479. package/dist/src/features/branch/quieries/impl/get-start-revision.query.js.map +1 -0
  480. package/dist/src/features/branch/quieries/impl/get-touched-by-branch-id.query.js.map +1 -0
  481. package/dist/src/features/branch/quieries/impl/index.d.ts +10 -0
  482. package/dist/src/features/branch/quieries/impl/index.js.map +1 -0
  483. package/dist/src/features/branch/quieries/impl/resolve-parent-branch-by-branch.query.js.map +1 -0
  484. package/dist/src/features/branch/quieries/types/get-branch-by-id.types.js.map +1 -0
  485. package/dist/src/features/branch/quieries/types/get-branch.types.js.map +1 -0
  486. package/dist/src/features/branch/quieries/types/get-draft-revision.types.js.map +1 -0
  487. package/dist/src/features/branch/quieries/types/get-head-revision.types.js.map +1 -0
  488. package/dist/src/features/branch/quieries/types/get-start-revision.types.js.map +1 -0
  489. package/dist/src/features/branch/quieries/types/index.d.ts +4 -0
  490. package/dist/src/features/branch/quieries/types/index.js.map +1 -0
  491. package/dist/src/features/draft/commands/handlers/__tests__/utils.d.ts +42 -0
  492. package/dist/src/features/draft/commands/handlers/__tests__/utils.js +261 -0
  493. package/dist/src/features/draft/commands/handlers/__tests__/utils.js.map +1 -0
  494. package/dist/src/features/draft/commands/handlers/api-create-revision.handler.d.ts +13 -0
  495. package/dist/src/features/draft/commands/handlers/api-create-revision.handler.js +45 -0
  496. package/dist/src/features/draft/commands/handlers/api-create-revision.handler.js.map +1 -0
  497. package/dist/src/features/draft/commands/handlers/api-create-row.handler.d.ts +13 -0
  498. package/dist/src/features/draft/commands/handlers/api-create-row.handler.js +60 -0
  499. package/dist/src/features/draft/commands/handlers/api-create-row.handler.js.map +1 -0
  500. package/dist/src/features/draft/commands/handlers/api-create-table.handler.d.ts +13 -0
  501. package/dist/src/features/draft/commands/handlers/api-create-table.handler.js +45 -0
  502. package/dist/src/features/draft/commands/handlers/api-create-table.handler.js.map +1 -0
  503. package/dist/src/features/draft/commands/handlers/api-remove-row.handler.d.ts +13 -0
  504. package/dist/src/features/draft/commands/handlers/api-remove-row.handler.js +59 -0
  505. package/dist/src/features/draft/commands/handlers/api-remove-row.handler.js.map +1 -0
  506. package/dist/src/features/draft/commands/handlers/api-remove-table.handler.d.ts +13 -0
  507. package/dist/src/features/draft/commands/handlers/api-remove-table.handler.js +43 -0
  508. package/dist/src/features/draft/commands/handlers/api-remove-table.handler.js.map +1 -0
  509. package/dist/src/features/draft/commands/handlers/api-revert-changes.handler.d.ts +12 -0
  510. package/dist/src/features/draft/commands/handlers/api-revert-changes.handler.js +40 -0
  511. package/dist/src/features/draft/commands/handlers/api-revert-changes.handler.js.map +1 -0
  512. package/dist/src/features/draft/commands/handlers/api-update-row.handler.d.ts +13 -0
  513. package/dist/src/features/draft/commands/handlers/api-update-row.handler.js +57 -0
  514. package/dist/src/features/draft/commands/handlers/api-update-row.handler.js.map +1 -0
  515. package/dist/src/features/draft/commands/handlers/api-update-table.handler.d.ts +13 -0
  516. package/dist/src/features/draft/commands/handlers/api-update-table.handler.js +45 -0
  517. package/dist/src/features/draft/commands/handlers/api-update-table.handler.js.map +1 -0
  518. package/dist/src/features/draft/commands/handlers/create-revision.handler.d.ts +24 -0
  519. package/dist/src/features/draft/commands/handlers/create-revision.handler.js +141 -0
  520. package/dist/src/features/draft/commands/handlers/create-revision.handler.js.map +1 -0
  521. package/dist/src/features/draft/commands/handlers/create-row.handler.d.ts +29 -0
  522. package/dist/src/features/draft/commands/handlers/create-row.handler.js +133 -0
  523. package/dist/src/features/draft/commands/handlers/create-row.handler.js.map +1 -0
  524. package/dist/src/features/draft/commands/handlers/create-table.handler.d.ts +30 -0
  525. package/dist/src/features/draft/commands/handlers/create-table.handler.js +124 -0
  526. package/dist/src/features/draft/commands/handlers/create-table.handler.js.map +1 -0
  527. package/dist/src/features/draft/commands/handlers/index.d.ts +25 -0
  528. package/dist/src/features/draft/commands/handlers/index.js +54 -0
  529. package/dist/src/features/draft/commands/handlers/index.js.map +1 -0
  530. package/dist/src/features/draft/commands/handlers/remove-row.handler.d.ts +33 -0
  531. package/dist/src/features/draft/commands/handlers/remove-row.handler.js +233 -0
  532. package/dist/src/features/draft/commands/handlers/remove-row.handler.js.map +1 -0
  533. package/dist/src/features/draft/commands/handlers/remove-table.handler.d.ts +33 -0
  534. package/dist/src/features/draft/commands/handlers/remove-table.handler.js +179 -0
  535. package/dist/src/features/draft/commands/handlers/remove-table.handler.js.map +1 -0
  536. package/dist/src/features/draft/commands/handlers/revert-changes.handler.d.ts +17 -0
  537. package/dist/src/features/draft/commands/handlers/revert-changes.handler.js +97 -0
  538. package/dist/src/features/draft/commands/handlers/revert-changes.handler.js.map +1 -0
  539. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-row.handler.d.ts +26 -0
  540. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-row.handler.js +116 -0
  541. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-row.handler.js.map +1 -0
  542. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.d.ts +26 -0
  543. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.js +146 -0
  544. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.js.map +1 -0
  545. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-table.handler.d.ts +24 -0
  546. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-table.handler.js +114 -0
  547. package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-table.handler.js.map +1 -0
  548. package/dist/src/features/draft/commands/handlers/transactional/resolve-draft-revision.handler.d.ts +13 -0
  549. package/dist/src/features/draft/commands/handlers/transactional/resolve-draft-revision.handler.js +63 -0
  550. package/dist/src/features/draft/commands/handlers/transactional/resolve-draft-revision.handler.js.map +1 -0
  551. package/dist/src/features/draft/commands/handlers/transactional/update-rows.handler.d.ts +17 -0
  552. package/dist/src/features/draft/commands/handlers/transactional/update-rows.handler.js +75 -0
  553. package/dist/src/features/draft/commands/handlers/transactional/update-rows.handler.js.map +1 -0
  554. package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.d.ts +14 -0
  555. package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.js +67 -0
  556. package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.js.map +1 -0
  557. package/dist/src/features/draft/commands/handlers/transactional/validate-not-system-table.handler.d.ts +10 -0
  558. package/dist/src/features/draft/commands/handlers/transactional/validate-not-system-table.handler.js +36 -0
  559. package/dist/src/features/draft/commands/handlers/transactional/validate-not-system-table.handler.js.map +1 -0
  560. package/dist/src/features/draft/commands/handlers/transactional/validate-schema.handler.d.ts +14 -0
  561. package/dist/src/features/draft/commands/handlers/transactional/validate-schema.handler.js +51 -0
  562. package/dist/src/features/draft/commands/handlers/transactional/validate-schema.handler.js.map +1 -0
  563. package/dist/src/features/draft/commands/handlers/update-row.handler.d.ts +18 -0
  564. package/dist/src/features/draft/commands/handlers/update-row.handler.js +75 -0
  565. package/dist/src/features/draft/commands/handlers/update-row.handler.js.map +1 -0
  566. package/dist/src/features/draft/commands/handlers/update-table.handler.d.ts +29 -0
  567. package/dist/src/features/draft/commands/handlers/update-table.handler.js +166 -0
  568. package/dist/src/features/draft/commands/handlers/update-table.handler.js.map +1 -0
  569. package/dist/src/features/draft/commands/impl/api-create-revision.command.d.ts +16 -0
  570. package/dist/src/features/draft/commands/impl/api-create-revision.command.js.map +1 -0
  571. package/dist/src/features/draft/commands/impl/api-create-row.command.js.map +1 -0
  572. package/dist/src/features/draft/commands/impl/api-create-table.command.js.map +1 -0
  573. package/dist/src/features/draft/commands/impl/api-remove-row.command.js.map +1 -0
  574. package/dist/src/features/draft/commands/impl/api-remove-table.command.js.map +1 -0
  575. package/dist/src/features/draft/commands/impl/api-revert-changes.command.d.ts +14 -0
  576. package/dist/src/features/draft/commands/impl/api-revert-changes.command.js.map +1 -0
  577. package/dist/src/features/draft/commands/impl/api-update-row.command.js.map +1 -0
  578. package/dist/src/features/draft/commands/impl/api-update-table.command.d.ts +13 -0
  579. package/dist/src/features/draft/commands/impl/api-update-table.command.js.map +1 -0
  580. package/dist/src/features/draft/commands/impl/create-revision.command.js.map +1 -0
  581. package/dist/src/features/draft/commands/impl/create-row.command.js.map +1 -0
  582. package/dist/src/features/draft/commands/impl/create-table.command.js.map +1 -0
  583. package/dist/src/features/draft/commands/impl/remove-row.command.js.map +1 -0
  584. package/dist/src/features/draft/commands/impl/remove-table.command.js.map +1 -0
  585. package/dist/src/features/draft/commands/impl/revert-changes.command.js.map +1 -0
  586. package/dist/src/features/draft/commands/impl/transactional/get-or-create-draft-row.command.js.map +1 -0
  587. package/dist/src/features/draft/commands/impl/transactional/get-or-create-draft-rows.command.js.map +1 -0
  588. package/dist/src/features/draft/commands/impl/transactional/get-or-create-draft-table.command.js.map +1 -0
  589. package/dist/src/features/draft/commands/impl/transactional/resolve-draft-revision.command.js.map +1 -0
  590. package/dist/src/features/draft/commands/impl/transactional/update-rows.command.d.ts +22 -0
  591. package/dist/src/features/draft/commands/impl/transactional/update-rows.command.js.map +1 -0
  592. package/dist/src/features/draft/commands/impl/transactional/validate-data.command.d.ts +24 -0
  593. package/dist/src/features/draft/commands/impl/transactional/validate-data.command.js.map +1 -0
  594. package/dist/src/features/draft/commands/impl/transactional/validate-not-system-table.command.js.map +1 -0
  595. package/dist/src/features/draft/commands/impl/transactional/validate-schema.command.js.map +1 -0
  596. package/dist/src/features/draft/commands/impl/update-row.command.js.map +1 -0
  597. package/dist/src/features/draft/commands/impl/update-table.command.d.ts +13 -0
  598. package/dist/src/features/draft/commands/impl/update-table.command.js.map +1 -0
  599. package/dist/src/features/draft/commands/types/api-create-row.handler.types.d.ts +7 -0
  600. package/dist/src/features/draft/commands/types/api-create-row.handler.types.js.map +1 -0
  601. package/dist/src/features/draft/commands/types/api-create-table.handler.types.js.map +1 -0
  602. package/dist/src/features/draft/commands/types/api-remove-row.handler.types.d.ts +7 -0
  603. package/dist/src/features/draft/commands/types/api-remove-row.handler.types.js.map +1 -0
  604. package/dist/src/features/draft/commands/types/api-remove-table.handler.types.d.ts +4 -0
  605. package/dist/src/features/draft/commands/types/api-remove-table.handler.types.js.map +1 -0
  606. package/dist/src/features/draft/commands/types/api-update-row.handler.types.d.ts +8 -0
  607. package/dist/src/features/draft/commands/types/api-update-row.handler.types.js.map +1 -0
  608. package/dist/src/features/draft/commands/types/api-update-table.handler.types.d.ts +5 -0
  609. package/dist/src/features/draft/commands/types/api-update-table.handler.types.js.map +1 -0
  610. package/dist/src/features/draft/commands/types/create-revision.handler.types.js.map +1 -0
  611. package/dist/src/features/draft/commands/types/create-row.handler.types.js.map +1 -0
  612. package/dist/src/features/draft/commands/types/create-table.handler.types.js.map +1 -0
  613. package/dist/src/features/draft/commands/types/remove-row.handler.types.js.map +1 -0
  614. package/dist/src/features/draft/commands/types/remove-table.handler.types.js.map +1 -0
  615. package/dist/src/features/draft/commands/types/revert-changes.handler.types.js.map +1 -0
  616. package/dist/src/features/draft/commands/types/update-row.handler.types.js.map +1 -0
  617. package/dist/src/features/draft/commands/types/update-table.handler.types.js.map +1 -0
  618. package/dist/src/features/draft/draft-context.service.d.ts +25 -0
  619. package/dist/src/features/draft/draft-context.service.js +75 -0
  620. package/dist/src/features/draft/draft-context.service.js.map +1 -0
  621. package/dist/src/features/draft/draft-request-dto/draft-revision-request.dto.d.ts +14 -0
  622. package/dist/src/features/draft/draft-request-dto/draft-revision-request.dto.js.map +1 -0
  623. package/dist/src/features/draft/draft-request-dto/index.d.ts +5 -0
  624. package/dist/src/features/draft/draft-request-dto/index.js.map +1 -0
  625. package/dist/src/features/draft/draft-request-dto/row-request.dto.d.ts +11 -0
  626. package/dist/src/features/draft/draft-request-dto/row-request.dto.js.map +1 -0
  627. package/dist/src/features/draft/draft-request-dto/rows-request.dto.d.ts +13 -0
  628. package/dist/src/features/draft/draft-request-dto/rows-request.dto.js.map +1 -0
  629. package/dist/src/features/draft/draft-request-dto/table-request.dto.d.ts +11 -0
  630. package/dist/src/features/draft/draft-request-dto/table-request.dto.js.map +1 -0
  631. package/dist/src/features/draft/draft.handler.d.ts +13 -0
  632. package/dist/src/features/draft/draft.handler.js.map +1 -0
  633. package/dist/src/features/draft/draft.module.js +44 -0
  634. package/dist/src/features/draft/draft.module.js.map +1 -0
  635. package/dist/src/features/draft/draft.transactional.commands.d.ts +23 -0
  636. package/dist/src/features/draft/draft.transactional.commands.js.map +1 -0
  637. package/dist/src/features/draft/json-schema-validator.service.d.ts +24 -0
  638. package/dist/src/features/draft/json-schema-validator.service.js +76 -0
  639. package/dist/src/features/draft/json-schema-validator.service.js.map +1 -0
  640. package/dist/src/features/draft/session-changelog.service.d.ts +29 -0
  641. package/dist/src/features/draft/session-changelog.service.js +124 -0
  642. package/dist/src/features/draft/session-changelog.service.js.map +1 -0
  643. package/dist/src/features/endpoint/commands/handlers/api-create-endpoint.handler.d.ts +8 -0
  644. package/dist/src/features/endpoint/commands/handlers/api-create-endpoint.handler.js.map +1 -0
  645. package/dist/src/features/endpoint/commands/handlers/create-endpoint.handler.d.ts +13 -0
  646. package/dist/src/features/endpoint/commands/handlers/create-endpoint.handler.js +62 -0
  647. package/dist/src/features/endpoint/commands/handlers/create-endpoint.handler.js.map +1 -0
  648. package/dist/src/features/endpoint/commands/handlers/delete-endpoint.handler.d.ts +12 -0
  649. package/dist/src/features/endpoint/commands/handlers/delete-endpoint.handler.js +50 -0
  650. package/dist/src/features/endpoint/commands/handlers/delete-endpoint.handler.js.map +1 -0
  651. package/dist/src/features/endpoint/commands/handlers/index.d.ts +4 -0
  652. package/dist/src/features/endpoint/commands/handlers/index.js.map +1 -0
  653. package/dist/src/features/endpoint/commands/impl/api-create-endpoint.command.js.map +1 -0
  654. package/dist/src/features/endpoint/commands/impl/create-endpoint.command.js.map +1 -0
  655. package/dist/src/features/endpoint/commands/impl/delete-endpoint.command.js.map +1 -0
  656. package/dist/src/features/endpoint/commands/impl/index.d.ts +3 -0
  657. package/dist/src/features/endpoint/commands/impl/index.js.map +1 -0
  658. package/dist/src/features/endpoint/endpoint.module.js +25 -0
  659. package/dist/src/features/endpoint/endpoint.module.js.map +1 -0
  660. package/dist/src/features/endpoint/queries/handlers/get-created-endpoint.handler.d.ts +14 -0
  661. package/dist/src/features/endpoint/queries/handlers/get-created-endpoint.handler.js +29 -0
  662. package/dist/src/features/endpoint/queries/handlers/get-created-endpoint.handler.js.map +1 -0
  663. package/dist/src/features/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.d.ts +19 -0
  664. package/dist/src/features/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.js +33 -0
  665. package/dist/src/features/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.js.map +1 -0
  666. package/dist/src/features/endpoint/queries/handlers/index.d.ts +3 -0
  667. package/dist/src/features/endpoint/queries/handlers/index.js.map +1 -0
  668. package/dist/src/features/endpoint/queries/impl/get-created-endpoint.query.js.map +1 -0
  669. package/dist/src/features/endpoint/queries/impl/get-revision-by-endpoint-id.query.js.map +1 -0
  670. package/dist/src/features/endpoint/queries/impl/index.d.ts +2 -0
  671. package/dist/src/features/endpoint/queries/impl/index.js.map +1 -0
  672. package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.d.ts +12 -0
  673. package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.js +67 -0
  674. package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.js.map +1 -0
  675. package/dist/src/features/organization/commands/handlers/index.d.ts +2 -0
  676. package/dist/src/features/organization/commands/handlers/index.js.map +1 -0
  677. package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.d.ts +11 -0
  678. package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.js +68 -0
  679. package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.js.map +1 -0
  680. package/dist/src/features/organization/commands/impl/add-user-to-organization.command.d.ts +14 -0
  681. package/dist/src/features/organization/commands/impl/add-user-to-organization.command.js.map +1 -0
  682. package/dist/src/features/organization/commands/impl/index.d.ts +2 -0
  683. package/dist/src/features/organization/commands/impl/index.js.map +1 -0
  684. package/dist/src/features/organization/commands/impl/remove-user-from-organization.command.js.map +1 -0
  685. package/dist/src/features/organization/commands/index.d.ts +2 -0
  686. package/dist/src/features/organization/commands/index.js.map +1 -0
  687. package/dist/src/features/organization/organization.module.js +24 -0
  688. package/dist/src/features/organization/organization.module.js.map +1 -0
  689. package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.d.ts +17 -0
  690. package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.js +70 -0
  691. package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.js.map +1 -0
  692. package/dist/src/features/organization/queries/handlers/get-users-organization.handler.d.ts +30 -0
  693. package/dist/src/features/organization/queries/handlers/get-users-organization.handler.js +58 -0
  694. package/dist/src/features/organization/queries/handlers/get-users-organization.handler.js.map +1 -0
  695. package/dist/src/features/organization/queries/handlers/index.d.ts +1 -0
  696. package/dist/src/features/organization/queries/handlers/index.js.map +1 -0
  697. package/dist/src/features/organization/queries/impl/get-projects-by-organization-id.query.d.ts +17 -0
  698. package/dist/src/features/organization/queries/impl/get-projects-by-organization-id.query.js.map +1 -0
  699. package/dist/src/features/organization/queries/impl/get-users-organization.query.d.ts +19 -0
  700. package/dist/src/features/organization/queries/impl/get-users-organization.query.js.map +1 -0
  701. package/dist/src/features/organization/queries/impl/index.d.ts +2 -0
  702. package/dist/src/features/organization/queries/impl/index.js.map +1 -0
  703. package/dist/src/features/organization/queries/index.d.ts +3 -0
  704. package/dist/src/features/organization/queries/index.js.map +1 -0
  705. package/dist/src/features/project/commands/handlers/add-user-to-project.handler.d.ts +13 -0
  706. package/dist/src/features/project/commands/handlers/add-user-to-project.handler.js +87 -0
  707. package/dist/src/features/project/commands/handlers/add-user-to-project.handler.js.map +1 -0
  708. package/dist/src/features/project/commands/handlers/api-create-project.handler.d.ts +8 -0
  709. package/dist/src/features/project/commands/handlers/api-create-project.handler.js.map +1 -0
  710. package/dist/src/features/project/commands/handlers/create-project.handler.d.ts +38 -0
  711. package/dist/src/features/project/commands/handlers/create-project.handler.js +177 -0
  712. package/dist/src/features/project/commands/handlers/create-project.handler.js.map +1 -0
  713. package/dist/src/features/project/commands/handlers/delete-project.handler.d.ts +17 -0
  714. package/dist/src/features/project/commands/handlers/delete-project.handler.js +73 -0
  715. package/dist/src/features/project/commands/handlers/delete-project.handler.js.map +1 -0
  716. package/dist/src/features/project/commands/handlers/index.d.ts +7 -0
  717. package/dist/src/features/project/commands/handlers/index.js.map +1 -0
  718. package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.d.ts +11 -0
  719. package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.js +69 -0
  720. package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.js.map +1 -0
  721. package/dist/src/features/project/commands/handlers/update-project.handler.d.ts +13 -0
  722. package/dist/src/features/project/commands/handlers/update-project.handler.js +52 -0
  723. package/dist/src/features/project/commands/handlers/update-project.handler.js.map +1 -0
  724. package/dist/src/features/project/commands/impl/add-user-to-project.command.d.ts +16 -0
  725. package/dist/src/features/project/commands/impl/add-user-to-project.command.js.map +1 -0
  726. package/dist/src/features/project/commands/impl/api-create-project.command.js.map +1 -0
  727. package/dist/src/features/project/commands/impl/create-project.command.js.map +1 -0
  728. package/dist/src/features/project/commands/impl/delete-project.command.js.map +1 -0
  729. package/dist/src/features/project/commands/impl/index.d.ts +6 -0
  730. package/dist/src/features/project/commands/impl/index.js.map +1 -0
  731. package/dist/src/features/project/commands/impl/remove-user-from-project.command.js.map +1 -0
  732. package/dist/src/features/project/commands/impl/update-project.command.js.map +1 -0
  733. package/dist/src/features/project/project.module.js +34 -0
  734. package/dist/src/features/project/project.module.js.map +1 -0
  735. package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.d.ts +16 -0
  736. package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.js +47 -0
  737. package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.js.map +1 -0
  738. package/dist/src/features/project/queries/handlers/get-project-by-id.handler.d.ts +14 -0
  739. package/dist/src/features/project/queries/handlers/get-project-by-id.handler.js +31 -0
  740. package/dist/src/features/project/queries/handlers/get-project-by-id.handler.js.map +1 -0
  741. package/dist/src/features/project/queries/handlers/get-project.handler.d.ts +12 -0
  742. package/dist/src/features/project/queries/handlers/get-project.handler.js +44 -0
  743. package/dist/src/features/project/queries/handlers/get-project.handler.js.map +1 -0
  744. package/dist/src/features/project/queries/handlers/get-root-branch-by-project.handler.d.ts +14 -0
  745. package/dist/src/features/project/queries/handlers/get-root-branch-by-project.handler.js +31 -0
  746. package/dist/src/features/project/queries/handlers/get-root-branch-by-project.handler.js.map +1 -0
  747. package/dist/src/features/project/queries/handlers/get-users-project.handler.d.ts +30 -0
  748. package/dist/src/features/project/queries/handlers/get-users-project.handler.js +61 -0
  749. package/dist/src/features/project/queries/handlers/get-users-project.handler.js.map +1 -0
  750. package/dist/src/features/project/queries/handlers/index.d.ts +6 -0
  751. package/dist/src/features/project/queries/handlers/index.js.map +1 -0
  752. package/dist/src/features/project/queries/impl/get-all-branches-by-project.query.js.map +1 -0
  753. package/dist/src/features/project/queries/impl/get-project-by-id.query.js.map +1 -0
  754. package/dist/src/features/project/queries/impl/get-project.query.js.map +1 -0
  755. package/dist/src/features/project/queries/impl/get-root-branch-by-project.query.js.map +1 -0
  756. package/dist/src/features/project/queries/impl/get-users-project.query.d.ts +21 -0
  757. package/dist/src/features/project/queries/impl/get-users-project.query.js.map +1 -0
  758. package/dist/src/features/project/queries/impl/index.d.ts +5 -0
  759. package/dist/src/features/project/queries/impl/index.js.map +1 -0
  760. package/dist/src/features/revision/queries/commands/get-children-by-revision.handler.d.ts +19 -0
  761. package/dist/src/features/revision/queries/commands/get-children-by-revision.handler.js +31 -0
  762. package/dist/src/features/revision/queries/commands/get-children-by-revision.handler.js.map +1 -0
  763. package/dist/src/features/revision/queries/commands/get-endpoints-by-revision-id.handler.d.ts +9 -0
  764. package/dist/src/features/revision/queries/commands/get-endpoints-by-revision-id.handler.js +31 -0
  765. package/dist/src/features/revision/queries/commands/get-endpoints-by-revision-id.handler.js.map +1 -0
  766. package/dist/src/features/revision/queries/commands/get-revision.handler.d.ts +19 -0
  767. package/dist/src/features/revision/queries/commands/get-revision.handler.js +31 -0
  768. package/dist/src/features/revision/queries/commands/get-revision.handler.js.map +1 -0
  769. package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.d.ts +20 -0
  770. package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.js +65 -0
  771. package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.js.map +1 -0
  772. package/dist/src/features/revision/queries/commands/index.d.ts +9 -0
  773. package/dist/src/features/revision/queries/commands/index.js.map +1 -0
  774. package/dist/src/features/revision/queries/commands/resolve-branch-by-revision.handler.d.ts +14 -0
  775. package/dist/src/features/revision/queries/commands/resolve-branch-by-revision.handler.js +31 -0
  776. package/dist/src/features/revision/queries/commands/resolve-branch-by-revision.handler.js.map +1 -0
  777. package/dist/src/features/revision/queries/commands/resolve-child-branches-by-revision.handler.d.ts +17 -0
  778. package/dist/src/features/revision/queries/commands/resolve-child-branches-by-revision.handler.js +53 -0
  779. package/dist/src/features/revision/queries/commands/resolve-child-branches-by-revision.handler.js.map +1 -0
  780. package/dist/src/features/revision/queries/commands/resolve-child-by-revision.handler.d.ts +21 -0
  781. package/dist/src/features/revision/queries/commands/resolve-child-by-revision.handler.js +41 -0
  782. package/dist/src/features/revision/queries/commands/resolve-child-by-revision.handler.js.map +1 -0
  783. package/dist/src/features/revision/queries/commands/resolve-parent-by-revision.handler.d.ts +19 -0
  784. package/dist/src/features/revision/queries/commands/resolve-parent-by-revision.handler.js +31 -0
  785. package/dist/src/features/revision/queries/commands/resolve-parent-by-revision.handler.js.map +1 -0
  786. package/dist/src/features/revision/queries/impl/get-children-by-revision.query.js.map +1 -0
  787. package/dist/src/features/revision/queries/impl/get-endpoints-by-revision-id.query.js.map +1 -0
  788. package/dist/src/features/revision/queries/impl/get-revision.query.d.ts +10 -0
  789. package/dist/src/features/revision/queries/impl/get-revision.query.js.map +1 -0
  790. package/dist/src/features/revision/queries/impl/get-tables-by-revision-id.query.js.map +1 -0
  791. package/dist/src/features/revision/queries/impl/index.d.ts +7 -0
  792. package/dist/src/features/revision/queries/impl/index.js.map +1 -0
  793. package/dist/src/features/revision/queries/impl/resolve-branch-by-revision.query.js.map +1 -0
  794. package/dist/src/features/revision/queries/impl/resolve-child-branches-by-revision.query.js.map +1 -0
  795. package/dist/src/features/revision/queries/impl/resolve-child-by-revision.query.js.map +1 -0
  796. package/dist/src/features/revision/queries/impl/resolve-parent-by-revision.query.js.map +1 -0
  797. package/dist/src/features/revision/queries/types/get-endpoints-by-revision-id.js.map +1 -0
  798. package/dist/src/features/revision/queries/types/get-revision-tables.types.d.ts +3 -0
  799. package/dist/src/features/revision/queries/types/get-revision-tables.types.js.map +1 -0
  800. package/dist/src/features/revision/queries/types/get-tables-by-revision-id.js.map +1 -0
  801. package/dist/src/features/revision/queries/types/index.d.ts +4 -0
  802. package/dist/src/features/revision/queries/types/index.js.map +1 -0
  803. package/dist/src/features/revision/revision.module.js +25 -0
  804. package/dist/src/features/revision/revision.module.js.map +1 -0
  805. package/dist/src/features/row/queries/handlers/get-row-by-id.handler.d.ts +19 -0
  806. package/dist/src/features/row/queries/handlers/get-row-by-id.handler.js +43 -0
  807. package/dist/src/features/row/queries/handlers/get-row-by-id.handler.js.map +1 -0
  808. package/dist/src/features/row/queries/handlers/get-row.handler.d.ts +14 -0
  809. package/dist/src/features/row/queries/handlers/get-row.handler.js +59 -0
  810. package/dist/src/features/row/queries/handlers/get-row.handler.js.map +1 -0
  811. package/dist/src/features/row/queries/handlers/get-rows.handler.d.ts +15 -0
  812. package/dist/src/features/row/queries/handlers/get-rows.handler.js +71 -0
  813. package/dist/src/features/row/queries/handlers/get-rows.handler.js.map +1 -0
  814. package/dist/src/features/row/queries/handlers/index.d.ts +8 -0
  815. package/dist/src/features/row/queries/handlers/index.js.map +1 -0
  816. package/dist/src/features/row/queries/handlers/resolve-row-count-references-by.handler.d.ts +16 -0
  817. package/dist/src/features/row/queries/handlers/resolve-row-count-references-by.handler.js +67 -0
  818. package/dist/src/features/row/queries/handlers/resolve-row-count-references-by.handler.js.map +1 -0
  819. package/dist/src/features/row/queries/handlers/resolve-row-count-references-to.handler.d.ts +14 -0
  820. package/dist/src/features/row/queries/handlers/resolve-row-count-references-to.handler.js +59 -0
  821. package/dist/src/features/row/queries/handlers/resolve-row-count-references-to.handler.js.map +1 -0
  822. package/dist/src/features/row/queries/handlers/resolve-row-references-by.handler.d.ts +28 -0
  823. package/dist/src/features/row/queries/handlers/resolve-row-references-by.handler.js +78 -0
  824. package/dist/src/features/row/queries/handlers/resolve-row-references-by.handler.js.map +1 -0
  825. package/dist/src/features/row/queries/handlers/resolve-row-references-to.handler.d.ts +28 -0
  826. package/dist/src/features/row/queries/handlers/resolve-row-references-to.handler.js +91 -0
  827. package/dist/src/features/row/queries/handlers/resolve-row-references-to.handler.js.map +1 -0
  828. package/dist/src/features/row/queries/impl/get-row-by-id.query.js.map +1 -0
  829. package/dist/src/features/row/queries/impl/get-row.query.js.map +1 -0
  830. package/dist/src/features/row/queries/impl/get-rows.query.js.map +1 -0
  831. package/dist/src/features/row/queries/impl/index.d.ts +7 -0
  832. package/dist/src/features/row/queries/impl/index.js.map +1 -0
  833. package/dist/src/features/row/queries/impl/resolve-row-count-references-by.query.js.map +1 -0
  834. package/dist/src/features/row/queries/impl/resolve-row-count-references-to.query.js.map +1 -0
  835. package/dist/src/features/row/queries/impl/resolve-row-references-by.query.js.map +1 -0
  836. package/dist/src/features/row/queries/impl/resolve-row-references-to.query.js.map +1 -0
  837. package/dist/src/features/row/queries/types/get-row-by-id.types.d.ts +2 -0
  838. package/dist/src/features/row/queries/types/get-row-by-id.types.js.map +1 -0
  839. package/dist/src/features/row/queries/types/get-row.types.d.ts +2 -0
  840. package/dist/src/features/row/queries/types/get-row.types.js.map +1 -0
  841. package/dist/src/features/row/queries/types/get-rows.types.d.ts +3 -0
  842. package/dist/src/features/row/queries/types/get-rows.types.js.map +1 -0
  843. package/dist/src/features/row/queries/types/index.d.ts +5 -0
  844. package/dist/src/features/row/queries/types/index.js.map +1 -0
  845. package/dist/src/features/row/queries/types/resolve-row-references-by.types.d.ts +3 -0
  846. package/dist/src/features/row/queries/types/resolve-row-references-by.types.js.map +1 -0
  847. package/dist/src/features/row/queries/types/resolve-row-references-to.types.d.ts +3 -0
  848. package/dist/src/features/row/queries/types/resolve-row-references-to.types.js.map +1 -0
  849. package/dist/src/features/row/row.module.js +24 -0
  850. package/dist/src/features/row/row.module.js.map +1 -0
  851. package/dist/src/features/share/commands/handlers/index.d.ts +3 -0
  852. package/dist/src/features/share/commands/handlers/index.js.map +1 -0
  853. package/dist/src/features/share/commands/handlers/notify-endpoints.handler.d.ts +12 -0
  854. package/dist/src/features/share/commands/handlers/notify-endpoints.handler.js +46 -0
  855. package/dist/src/features/share/commands/handlers/notify-endpoints.handler.js.map +1 -0
  856. package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.d.ts +11 -0
  857. package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.js +57 -0
  858. package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.js.map +1 -0
  859. package/dist/src/features/share/commands/impl/index.d.ts +2 -0
  860. package/dist/src/features/share/commands/impl/index.js.map +1 -0
  861. package/dist/src/features/share/commands/impl/notify-endpoints.command.js.map +1 -0
  862. package/dist/src/features/share/commands/impl/transactional/move-endpoints.command.js.map +1 -0
  863. package/dist/src/features/share/commands/utils/getOffsetPagination.d.ts +18 -0
  864. package/dist/src/features/share/commands/utils/getOffsetPagination.js +37 -0
  865. package/dist/src/features/share/commands/utils/getOffsetPagination.js.map +1 -0
  866. package/dist/src/features/share/commands/utils/getRevisionCursorPagination.d.ts +29 -0
  867. package/dist/src/features/share/commands/utils/getRevisionCursorPagination.js +71 -0
  868. package/dist/src/features/share/commands/utils/getRevisionCursorPagination.js.map +1 -0
  869. package/dist/src/features/share/const.d.ts +2 -0
  870. package/dist/src/features/share/const.js.map +1 -0
  871. package/dist/src/features/share/pagination.interface.js.map +1 -0
  872. package/dist/src/features/share/queries/handlers/index.d.ts +9 -0
  873. package/dist/src/features/share/queries/handlers/index.js.map +1 -0
  874. package/dist/src/features/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.d.ts +10 -0
  875. package/dist/src/features/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js +45 -0
  876. package/dist/src/features/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js.map +1 -0
  877. package/dist/src/features/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.d.ts +10 -0
  878. package/dist/src/features/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.js +40 -0
  879. package/dist/src/features/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.js.map +1 -0
  880. package/dist/src/features/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.d.ts +10 -0
  881. package/dist/src/features/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.js +40 -0
  882. package/dist/src/features/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.js.map +1 -0
  883. package/dist/src/features/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.d.ts +10 -0
  884. package/dist/src/features/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.js +45 -0
  885. package/dist/src/features/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.js.map +1 -0
  886. package/dist/src/features/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.d.ts +10 -0
  887. package/dist/src/features/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.js +43 -0
  888. package/dist/src/features/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.js.map +1 -0
  889. package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.d.ts +10 -0
  890. package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.js +43 -0
  891. package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.js.map +1 -0
  892. package/dist/src/features/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.d.ts +10 -0
  893. package/dist/src/features/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.js +43 -0
  894. package/dist/src/features/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.js.map +1 -0
  895. package/dist/src/features/share/queries/handlers/transactional/get-table-schema.handler.d.ts +11 -0
  896. package/dist/src/features/share/queries/handlers/transactional/get-table-schema.handler.js +58 -0
  897. package/dist/src/features/share/queries/handlers/transactional/get-table-schema.handler.js.map +1 -0
  898. package/dist/src/features/share/queries/impl/index.d.ts +7 -0
  899. package/dist/src/features/share/queries/impl/index.js.map +1 -0
  900. package/dist/src/features/share/queries/impl/transactional/find-branch-in-project-or-throw.query.js.map +1 -0
  901. package/dist/src/features/share/queries/impl/transactional/find-draft-revision-in-branch-or-throw.query.js.map +1 -0
  902. package/dist/src/features/share/queries/impl/transactional/find-head-revision-in-branch-or-throw.query.js.map +1 -0
  903. package/dist/src/features/share/queries/impl/transactional/find-project-in-organization-or-throw.query.js.map +1 -0
  904. package/dist/src/features/share/queries/impl/transactional/find-row-in-table-or-throw.query.js.map +1 -0
  905. package/dist/src/features/share/queries/impl/transactional/find-rows-in-table-or-throw.query.js.map +1 -0
  906. package/dist/src/features/share/queries/impl/transactional/find-table-in-revision-or-throw.query.js.map +1 -0
  907. package/dist/src/features/share/queries/impl/transactional/get-table-schema.query.js.map +1 -0
  908. package/dist/src/features/share/queries/types/find-branch-in-project.types.js.map +1 -0
  909. package/dist/src/features/share/queries/types/find-draft-revision-in-branch.types.js.map +1 -0
  910. package/dist/src/features/share/queries/types/find-head-revision-in-branch.types.js.map +1 -0
  911. package/dist/src/features/share/queries/types/find-project-in-organization.types.js.map +1 -0
  912. package/dist/src/features/share/queries/types/find-row-in-table.types.js.map +1 -0
  913. package/dist/src/features/share/queries/types/find-rows-in-table.types.js.map +1 -0
  914. package/dist/src/features/share/queries/types/find-table-in-revision.types.js.map +1 -0
  915. package/dist/src/features/share/queries/types/index.d.ts +7 -0
  916. package/dist/src/features/share/queries/types/index.js.map +1 -0
  917. package/dist/src/features/share/references.service.d.ts +22 -0
  918. package/dist/src/features/share/references.service.js +94 -0
  919. package/dist/src/features/share/references.service.js.map +1 -0
  920. package/dist/src/features/share/schema/consts.js.map +1 -0
  921. package/dist/src/features/share/schema/json-patch-schema.js +78 -0
  922. package/dist/src/features/share/schema/json-patch-schema.js.map +1 -0
  923. package/dist/src/features/share/schema/meta-schema.js +144 -0
  924. package/dist/src/features/share/schema/meta-schema.js.map +1 -0
  925. package/dist/src/features/share/share.commands.d.ts +8 -0
  926. package/dist/src/features/share/share.commands.js.map +1 -0
  927. package/dist/src/features/share/share.module.js +42 -0
  928. package/dist/src/features/share/share.module.js.map +1 -0
  929. package/dist/src/features/share/share.transactional.commands.d.ts +9 -0
  930. package/dist/src/features/share/share.transactional.commands.js.map +1 -0
  931. package/dist/src/features/share/share.transactional.queries.d.ts +15 -0
  932. package/dist/src/features/share/share.transactional.queries.js.map +1 -0
  933. package/dist/src/features/share/system-organizations.consts.js.map +1 -0
  934. package/dist/src/features/share/system-tables.consts.js.map +1 -0
  935. package/dist/src/features/share/types/row-with-context.types.js.map +1 -0
  936. package/dist/src/features/share/types/table-with-context.types.js.map +1 -0
  937. package/dist/src/features/share/types.js.map +1 -0
  938. package/dist/src/features/share/utils/index.d.ts +1 -0
  939. package/dist/src/features/share/utils/index.js.map +1 -0
  940. package/dist/src/features/share/utils/schema/lib/applyPatches.d.ts +6 -0
  941. package/dist/src/features/share/utils/schema/lib/applyPatches.js.map +1 -0
  942. package/dist/src/features/share/utils/schema/lib/createJsonSchemaStore.d.ts +6 -0
  943. package/dist/src/features/share/utils/schema/lib/createJsonSchemaStore.js.map +1 -0
  944. package/dist/src/features/share/utils/schema/lib/createJsonValueStore.d.ts +11 -0
  945. package/dist/src/features/share/utils/schema/lib/createJsonValueStore.js.map +1 -0
  946. package/dist/src/features/share/utils/schema/lib/getJsonSchemaStoreByPath.d.ts +2 -0
  947. package/dist/src/features/share/utils/schema/lib/getJsonSchemaStoreByPath.js.map +1 -0
  948. package/dist/src/features/share/utils/schema/lib/getParentForPath.js.map +1 -0
  949. package/dist/src/features/share/utils/schema/lib/getPathByStore.d.ts +2 -0
  950. package/dist/src/features/share/utils/schema/lib/getPathByStore.js.map +1 -0
  951. package/dist/src/features/share/utils/schema/lib/getReferencesFromSchema.d.ts +2 -0
  952. package/dist/src/features/share/utils/schema/lib/getReferencesFromSchema.js +16 -0
  953. package/dist/src/features/share/utils/schema/lib/getReferencesFromSchema.js.map +1 -0
  954. package/dist/src/features/share/utils/schema/lib/getReferencesFromValue.d.ts +6 -0
  955. package/dist/src/features/share/utils/schema/lib/getReferencesFromValue.js +24 -0
  956. package/dist/src/features/share/utils/schema/lib/getReferencesFromValue.js.map +1 -0
  957. package/dist/src/features/share/utils/schema/lib/getValuePathByStore.d.ts +2 -0
  958. package/dist/src/features/share/utils/schema/lib/getValuePathByStore.js.map +1 -0
  959. package/dist/src/features/share/utils/schema/lib/schema-table.d.ts +17 -0
  960. package/dist/src/features/share/utils/schema/lib/schema-table.js +73 -0
  961. package/dist/src/features/share/utils/schema/lib/schema-table.js.map +1 -0
  962. package/dist/src/features/share/utils/schema/lib/traverseStore.d.ts +2 -0
  963. package/dist/src/features/share/utils/schema/lib/traverseStore.js.map +1 -0
  964. package/dist/src/features/share/utils/schema/lib/traverseValue.d.ts +2 -0
  965. package/dist/src/features/share/utils/schema/lib/traverseValue.js.map +1 -0
  966. package/dist/src/features/share/utils/schema/model/schema/json-array.store.d.ts +30 -0
  967. package/dist/src/features/share/utils/schema/model/schema/json-array.store.js.map +1 -0
  968. package/dist/src/features/share/utils/schema/model/schema/json-boolean.store.d.ts +17 -0
  969. package/dist/src/features/share/utils/schema/model/schema/json-boolean.store.js.map +1 -0
  970. package/dist/src/features/share/utils/schema/model/schema/json-number.store.d.ts +17 -0
  971. package/dist/src/features/share/utils/schema/model/schema/json-number.store.js.map +1 -0
  972. package/dist/src/features/share/utils/schema/model/schema/json-object.store.d.ts +45 -0
  973. package/dist/src/features/share/utils/schema/model/schema/json-object.store.js +142 -0
  974. package/dist/src/features/share/utils/schema/model/schema/json-object.store.js.map +1 -0
  975. package/dist/src/features/share/utils/schema/model/schema/json-schema.store.d.ts +7 -0
  976. package/dist/src/features/share/utils/schema/model/schema/json-schema.store.js.map +1 -0
  977. package/dist/src/features/share/utils/schema/model/schema/json-string.store.d.ts +18 -0
  978. package/dist/src/features/share/utils/schema/model/schema/json-string.store.js.map +1 -0
  979. package/dist/src/features/share/utils/schema/model/value/json-array-value.store.d.ts +16 -0
  980. package/dist/src/features/share/utils/schema/model/value/json-array-value.store.js.map +1 -0
  981. package/dist/src/features/share/utils/schema/model/value/json-boolean-value.store.d.ts +11 -0
  982. package/dist/src/features/share/utils/schema/model/value/json-boolean-value.store.js.map +1 -0
  983. package/dist/src/features/share/utils/schema/model/value/json-number-value.store.d.ts +11 -0
  984. package/dist/src/features/share/utils/schema/model/value/json-number-value.store.js.map +1 -0
  985. package/dist/src/features/share/utils/schema/model/value/json-object-value.store.d.ts +19 -0
  986. package/dist/src/features/share/utils/schema/model/value/json-object-value.store.js.map +1 -0
  987. package/dist/src/features/share/utils/schema/model/value/json-string-value.store.d.ts +12 -0
  988. package/dist/src/features/share/utils/schema/model/value/json-string-value.store.js.map +1 -0
  989. package/dist/src/features/share/utils/schema/model/value/json-value.store.d.ts +7 -0
  990. package/dist/src/features/share/utils/schema/model/value/json-value.store.js.map +1 -0
  991. package/dist/src/features/share/utils/schema/model/value/value-transformation.d.ts +13 -0
  992. package/dist/src/features/share/utils/schema/model/value/value-transformation.js +110 -0
  993. package/dist/src/features/share/utils/schema/model/value/value-transformation.js.map +1 -0
  994. package/dist/src/features/share/utils/schema/types/json-patch.types.d.ts +21 -0
  995. package/dist/src/features/share/utils/schema/types/json-patch.types.js.map +1 -0
  996. package/dist/src/features/share/utils/schema/types/json.types.js.map +1 -0
  997. package/dist/src/features/share/utils/schema/types/schema.types.js.map +1 -0
  998. package/dist/src/features/share/utils/sort-revisions/sort-revisions.js +37 -0
  999. package/dist/src/features/share/utils/sort-revisions/sort-revisions.js.map +1 -0
  1000. package/dist/src/features/table/queries/handlers/get-count-rows-in-table.handler.d.ts +8 -0
  1001. package/dist/src/features/table/queries/handlers/get-count-rows-in-table.handler.js +33 -0
  1002. package/dist/src/features/table/queries/handlers/get-count-rows-in-table.handler.js.map +1 -0
  1003. package/dist/src/features/table/queries/handlers/get-rows-by-table.handler.d.ts +22 -0
  1004. package/dist/src/features/table/queries/handlers/get-rows-by-table.handler.js +59 -0
  1005. package/dist/src/features/table/queries/handlers/get-rows-by-table.handler.js.map +1 -0
  1006. package/dist/src/features/table/queries/handlers/get-table-by-id.handler.d.ts +18 -0
  1007. package/dist/src/features/table/queries/handlers/get-table-by-id.handler.js +42 -0
  1008. package/dist/src/features/table/queries/handlers/get-table-by-id.handler.js.map +1 -0
  1009. package/dist/src/features/table/queries/handlers/get-table.handler.d.ts +14 -0
  1010. package/dist/src/features/table/queries/handlers/get-table.handler.js +58 -0
  1011. package/dist/src/features/table/queries/handlers/get-table.handler.js.map +1 -0
  1012. package/dist/src/features/table/queries/handlers/get-tables.handler.d.ts +11 -0
  1013. package/dist/src/features/table/queries/handlers/get-tables.handler.js +67 -0
  1014. package/dist/src/features/table/queries/handlers/get-tables.handler.js.map +1 -0
  1015. package/dist/src/features/table/queries/handlers/index.d.ts +11 -0
  1016. package/dist/src/features/table/queries/handlers/index.js.map +1 -0
  1017. package/dist/src/features/table/queries/handlers/resolve-table-count-references-by.handler.d.ts +15 -0
  1018. package/dist/src/features/table/queries/handlers/resolve-table-count-references-by.handler.js +54 -0
  1019. package/dist/src/features/table/queries/handlers/resolve-table-count-references-by.handler.js.map +1 -0
  1020. package/dist/src/features/table/queries/handlers/resolve-table-count-references-to.handler.d.ts +12 -0
  1021. package/dist/src/features/table/queries/handlers/resolve-table-count-references-to.handler.js +51 -0
  1022. package/dist/src/features/table/queries/handlers/resolve-table-count-references-to.handler.js.map +1 -0
  1023. package/dist/src/features/table/queries/handlers/resolve-table-references-by.handler.d.ts +17 -0
  1024. package/dist/src/features/table/queries/handlers/resolve-table-references-by.handler.js +80 -0
  1025. package/dist/src/features/table/queries/handlers/resolve-table-references-by.handler.js.map +1 -0
  1026. package/dist/src/features/table/queries/handlers/resolve-table-references-to.handler.d.ts +14 -0
  1027. package/dist/src/features/table/queries/handlers/resolve-table-references-to.handler.js +78 -0
  1028. package/dist/src/features/table/queries/handlers/resolve-table-references-to.handler.js.map +1 -0
  1029. package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.d.ts +13 -0
  1030. package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.js +46 -0
  1031. package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.js.map +1 -0
  1032. package/dist/src/features/table/queries/impl/get-count-rows-in-table.query.js.map +1 -0
  1033. package/dist/src/features/table/queries/impl/get-rows-by-table.query.js.map +1 -0
  1034. package/dist/src/features/table/queries/impl/get-table-by-id.query.js.map +1 -0
  1035. package/dist/src/features/table/queries/impl/get-table.query.js.map +1 -0
  1036. package/dist/src/features/table/queries/impl/get-tables.query.js.map +1 -0
  1037. package/dist/src/features/table/queries/impl/index.d.ts +6 -0
  1038. package/dist/src/features/table/queries/impl/index.js.map +1 -0
  1039. package/dist/src/features/table/queries/impl/resolve-table-count-references-by.query.js.map +1 -0
  1040. package/dist/src/features/table/queries/impl/resolve-table-count-references-to.query.js.map +1 -0
  1041. package/dist/src/features/table/queries/impl/resolve-table-references-by.query.js.map +1 -0
  1042. package/dist/src/features/table/queries/impl/resolve-table-references-to.query.js.map +1 -0
  1043. package/dist/src/features/table/queries/impl/resolve-table-schema.query.js.map +1 -0
  1044. package/dist/src/features/table/queries/types/get-table-by-id.types.d.ts +2 -0
  1045. package/dist/src/features/table/queries/types/get-table-by-id.types.js.map +1 -0
  1046. package/dist/src/features/table/queries/types/get-table-rows.types.d.ts +3 -0
  1047. package/dist/src/features/table/queries/types/get-table-rows.types.js.map +1 -0
  1048. package/dist/src/features/table/queries/types/get-table.types.d.ts +2 -0
  1049. package/dist/src/features/table/queries/types/get-table.types.js.map +1 -0
  1050. package/dist/src/features/table/queries/types/get-tables.types.d.ts +3 -0
  1051. package/dist/src/features/table/queries/types/get-tables.types.js.map +1 -0
  1052. package/dist/src/features/table/queries/types/index.d.ts +6 -0
  1053. package/dist/src/features/table/queries/types/index.js.map +1 -0
  1054. package/dist/src/features/table/queries/types/resolve-table-references-by.types.d.ts +3 -0
  1055. package/dist/src/features/table/queries/types/resolve-table-references-by.types.js.map +1 -0
  1056. package/dist/src/features/table/queries/types/resolve-table-references-to.types.d.ts +3 -0
  1057. package/dist/src/features/table/queries/types/resolve-table-references-to.types.js.map +1 -0
  1058. package/dist/src/features/table/table.module.js +31 -0
  1059. package/dist/src/features/table/table.module.js.map +1 -0
  1060. package/dist/src/features/user/commands/handlers/index.d.ts +2 -0
  1061. package/dist/src/features/user/commands/handlers/index.js.map +1 -0
  1062. package/dist/src/features/user/commands/handlers/set-username.handler.d.ts +14 -0
  1063. package/dist/src/features/user/commands/handlers/set-username.handler.js +102 -0
  1064. package/dist/src/features/user/commands/handlers/set-username.handler.js.map +1 -0
  1065. package/dist/src/features/user/commands/handlers/update-password.handler.d.ts +12 -0
  1066. package/dist/src/features/user/commands/handlers/update-password.handler.js +59 -0
  1067. package/dist/src/features/user/commands/handlers/update-password.handler.js.map +1 -0
  1068. package/dist/src/features/user/commands/impl/index.d.ts +2 -0
  1069. package/dist/src/features/user/commands/impl/index.js.map +1 -0
  1070. package/dist/src/features/user/commands/impl/set-username.command.js.map +1 -0
  1071. package/dist/src/features/user/commands/impl/update-password.command.js.map +1 -0
  1072. package/dist/src/features/user/commands/index.d.ts +2 -0
  1073. package/dist/src/features/user/commands/index.js.map +1 -0
  1074. package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.d.ts +17 -0
  1075. package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.js +67 -0
  1076. package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.js.map +1 -0
  1077. package/dist/src/features/user/queries/handlers/get-user-organization.handler.d.ts +8 -0
  1078. package/dist/src/features/user/queries/handlers/get-user-organization.handler.js +39 -0
  1079. package/dist/src/features/user/queries/handlers/get-user-organization.handler.js.map +1 -0
  1080. package/dist/src/features/user/queries/handlers/get-user.handler.d.ts +12 -0
  1081. package/dist/src/features/user/queries/handlers/get-user.handler.js +41 -0
  1082. package/dist/src/features/user/queries/handlers/get-user.handler.js.map +1 -0
  1083. package/dist/src/features/user/queries/handlers/index.d.ts +3 -0
  1084. package/dist/src/features/user/queries/handlers/index.js.map +1 -0
  1085. package/dist/src/features/user/queries/impl/get-projects-by-user-id.query.d.ts +15 -0
  1086. package/dist/src/features/user/queries/impl/get-projects-by-user-id.query.js.map +1 -0
  1087. package/dist/src/features/user/queries/impl/get-user-organization.query.js.map +1 -0
  1088. package/dist/src/features/user/queries/impl/get-user.query.js.map +1 -0
  1089. package/dist/src/features/user/queries/impl/index.d.ts +3 -0
  1090. package/dist/src/features/user/queries/impl/index.js.map +1 -0
  1091. package/dist/src/features/user/queries/index.d.ts +2 -0
  1092. package/dist/src/features/user/queries/index.js.map +1 -0
  1093. package/dist/src/features/user/user.module.js +25 -0
  1094. package/dist/src/features/user/user.module.js.map +1 -0
  1095. package/dist/src/index.d.ts +5 -4
  1096. package/dist/src/index.js +6 -4
  1097. package/dist/src/index.js.map +1 -1
  1098. package/dist/src/infrastructure/admin/admin-module.options.js.map +1 -0
  1099. package/dist/src/infrastructure/admin/admin.module.d.ts +6 -0
  1100. package/dist/src/infrastructure/admin/admin.module.js.map +1 -0
  1101. package/dist/src/infrastructure/admin/envjs.controller.d.ts +6 -0
  1102. package/dist/src/infrastructure/admin/envjs.controller.js.map +1 -0
  1103. package/dist/src/infrastructure/admin/index.js.map +1 -0
  1104. package/dist/src/infrastructure/clean/clean.module.js.map +1 -0
  1105. package/dist/src/infrastructure/clean/clean.service.d.ts +7 -0
  1106. package/dist/src/infrastructure/clean/clean.service.js.map +1 -0
  1107. package/dist/src/infrastructure/clean/commands/handlers/clean-rows.handler.d.ts +8 -0
  1108. package/dist/src/infrastructure/clean/commands/handlers/clean-rows.handler.js.map +1 -0
  1109. package/dist/src/infrastructure/clean/commands/handlers/clean-tables.handler.d.ts +8 -0
  1110. package/dist/src/infrastructure/clean/commands/handlers/clean-tables.handler.js.map +1 -0
  1111. package/dist/src/infrastructure/clean/commands/handlers/index.d.ts +3 -0
  1112. package/dist/src/infrastructure/clean/commands/handlers/index.js.map +1 -0
  1113. package/dist/src/infrastructure/clean/commands/impl/clean-rows.command.js.map +1 -0
  1114. package/dist/src/infrastructure/clean/commands/impl/clean-tables.command.js.map +1 -0
  1115. package/dist/src/infrastructure/common/interceptors/logging.interceptor.d.ts +6 -0
  1116. package/dist/src/infrastructure/common/interceptors/logging.interceptor.js +30 -0
  1117. package/dist/src/infrastructure/common/interceptors/logging.interceptor.js.map +1 -0
  1118. package/dist/src/infrastructure/configuration/configuration.module.js +24 -0
  1119. package/dist/src/infrastructure/configuration/configuration.module.js.map +1 -0
  1120. package/dist/src/infrastructure/configuration/queries/handlers/get-configuration.handler.d.ts +13 -0
  1121. package/dist/src/infrastructure/configuration/queries/handlers/get-configuration.handler.js +48 -0
  1122. package/dist/src/infrastructure/configuration/queries/handlers/get-configuration.handler.js.map +1 -0
  1123. package/dist/src/infrastructure/configuration/queries/handlers/index.d.ts +1 -0
  1124. package/dist/src/infrastructure/configuration/queries/handlers/index.js.map +1 -0
  1125. package/dist/src/infrastructure/configuration/queries/impl/get-configuration.query.d.ts +13 -0
  1126. package/dist/src/infrastructure/configuration/queries/impl/get-configuration.query.js +7 -0
  1127. package/dist/src/infrastructure/configuration/queries/impl/get-configuration.query.js.map +1 -0
  1128. package/dist/src/infrastructure/configuration/queries/impl/index.d.ts +1 -0
  1129. package/dist/src/infrastructure/configuration/queries/impl/index.js.map +1 -0
  1130. package/dist/src/infrastructure/configuration/queries/index.d.ts +2 -0
  1131. package/dist/src/infrastructure/configuration/queries/index.js.map +1 -0
  1132. package/dist/src/infrastructure/database/database.module.js.map +1 -0
  1133. package/dist/src/infrastructure/database/id.service.js.map +1 -0
  1134. package/dist/src/infrastructure/database/prisma.service.js.map +1 -0
  1135. package/dist/src/infrastructure/database/transaction-prisma.service.d.ts +14 -0
  1136. package/dist/src/infrastructure/database/transaction-prisma.service.js +39 -0
  1137. package/dist/src/infrastructure/database/transaction-prisma.service.js.map +1 -0
  1138. package/dist/src/infrastructure/email/email.module.js.map +1 -0
  1139. package/dist/src/infrastructure/email/email.service.d.ts +14 -0
  1140. package/dist/src/infrastructure/email/email.service.js +55 -0
  1141. package/dist/src/infrastructure/email/email.service.js.map +1 -0
  1142. package/dist/src/infrastructure/email/templates.service.d.ts +8 -0
  1143. package/dist/src/infrastructure/email/templates.service.js +53 -0
  1144. package/dist/src/infrastructure/email/templates.service.js.map +1 -0
  1145. package/dist/src/infrastructure/email/transporter.service.js +49 -0
  1146. package/dist/src/infrastructure/email/transporter.service.js.map +1 -0
  1147. package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.module.d.ts +2 -0
  1148. package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.module.js +22 -0
  1149. package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.module.js.map +1 -0
  1150. package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.service.d.ts +9 -0
  1151. package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.service.js +41 -0
  1152. package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.service.js.map +1 -0
  1153. package/dist/src/infrastructure/health/database.check.d.ts +9 -0
  1154. package/dist/src/infrastructure/health/database.check.js +33 -0
  1155. package/dist/src/infrastructure/health/database.check.js.map +1 -0
  1156. package/dist/src/infrastructure/health/health.controller.d.ts +11 -0
  1157. package/dist/src/infrastructure/health/health.controller.js +61 -0
  1158. package/dist/src/infrastructure/health/health.controller.js.map +1 -0
  1159. package/dist/src/infrastructure/health/health.module.js +27 -0
  1160. package/dist/src/infrastructure/health/health.module.js.map +1 -0
  1161. package/dist/src/infrastructure/health/notification.check.d.ts +9 -0
  1162. package/dist/src/infrastructure/health/notification.check.js +52 -0
  1163. package/dist/src/infrastructure/health/notification.check.js.map +1 -0
  1164. package/dist/src/infrastructure/metrics/graphql/constants.js.map +1 -0
  1165. package/dist/src/infrastructure/metrics/graphql/graphql-metrics.plugin.d.ts +7 -0
  1166. package/dist/src/infrastructure/metrics/graphql/graphql-metrics.plugin.js.map +1 -0
  1167. package/dist/src/infrastructure/metrics/graphql/graphql-metrics.service.js.map +1 -0
  1168. package/dist/src/infrastructure/metrics/metrics.module.js.map +1 -0
  1169. package/dist/src/infrastructure/metrics/rest/constants.js.map +1 -0
  1170. package/dist/src/infrastructure/metrics/rest/rest-metrics.interceptor.d.ts +9 -0
  1171. package/dist/src/infrastructure/metrics/rest/rest-metrics.interceptor.js.map +1 -0
  1172. package/dist/src/infrastructure/metrics/rest/rest-metrics.service.js.map +1 -0
  1173. package/dist/src/infrastructure/metrics/utils.js.map +1 -0
  1174. package/dist/src/infrastructure/metrics-api/metrics-api.module.js.map +1 -0
  1175. package/dist/src/infrastructure/metrics-api/metrics-enabled.guard.js.map +1 -0
  1176. package/dist/src/infrastructure/metrics-api/metrics.controller.d.ts +7 -0
  1177. package/dist/src/infrastructure/metrics-api/metrics.controller.js.map +1 -0
  1178. package/dist/src/infrastructure/notification/endpoint-notification.service.d.ts +10 -0
  1179. package/dist/src/infrastructure/notification/endpoint-notification.service.js.map +1 -0
  1180. package/dist/src/infrastructure/notification/in-memory-client.d.ts +10 -0
  1181. package/dist/src/infrastructure/notification/in-memory-client.js +24 -0
  1182. package/dist/src/infrastructure/notification/in-memory-client.js.map +1 -0
  1183. package/dist/src/infrastructure/notification/in-memory-server.js.map +1 -0
  1184. package/dist/src/infrastructure/notification/notification-event-emitter.js.map +1 -0
  1185. package/dist/src/infrastructure/notification/notification.module.js.map +1 -0
  1186. package/dist/src/main.js +1 -0
  1187. package/dist/src/main.js.map +1 -1
  1188. package/dist/tsconfig.build.tsbuildinfo +1 -1
  1189. package/package.json +20 -13
  1190. package/dist/src/admin/admin-module.options.js.map +0 -1
  1191. package/dist/src/admin/admin.module.d.ts +0 -6
  1192. package/dist/src/admin/admin.module.js.map +0 -1
  1193. package/dist/src/admin/envjs.controller.d.ts +0 -6
  1194. package/dist/src/admin/envjs.controller.js.map +0 -1
  1195. package/dist/src/admin/index.js.map +0 -1
  1196. package/dist/src/auth/auth.module.js +0 -51
  1197. package/dist/src/auth/auth.module.js.map +0 -1
  1198. package/dist/src/auth/auth.service.d.ts +0 -15
  1199. package/dist/src/auth/auth.service.js.map +0 -1
  1200. package/dist/src/auth/casl-ability.factory.d.ts +0 -25
  1201. package/dist/src/auth/casl-ability.factory.js +0 -45
  1202. package/dist/src/auth/casl-ability.factory.js.map +0 -1
  1203. package/dist/src/auth/commands/handlers/check-organization-permission.handler.d.ts +0 -12
  1204. package/dist/src/auth/commands/handlers/check-organization-permission.handler.js +0 -67
  1205. package/dist/src/auth/commands/handlers/check-organization-permission.handler.js.map +0 -1
  1206. package/dist/src/auth/commands/handlers/check-project-permission.handler.d.ts +0 -17
  1207. package/dist/src/auth/commands/handlers/check-project-permission.handler.js +0 -149
  1208. package/dist/src/auth/commands/handlers/check-project-permission.handler.js.map +0 -1
  1209. package/dist/src/auth/commands/handlers/check-system-permission.handler.d.ts +0 -11
  1210. package/dist/src/auth/commands/handlers/check-system-permission.handler.js +0 -54
  1211. package/dist/src/auth/commands/handlers/check-system-permission.handler.js.map +0 -1
  1212. package/dist/src/auth/commands/handlers/confirm-email-code.handler.d.ts +0 -14
  1213. package/dist/src/auth/commands/handlers/confirm-email-code.handler.js +0 -62
  1214. package/dist/src/auth/commands/handlers/confirm-email-code.handler.js.map +0 -1
  1215. package/dist/src/auth/commands/handlers/create-user.handler.d.ts +0 -15
  1216. package/dist/src/auth/commands/handlers/create-user.handler.js +0 -103
  1217. package/dist/src/auth/commands/handlers/create-user.handler.js.map +0 -1
  1218. package/dist/src/auth/commands/handlers/index.d.ts +0 -9
  1219. package/dist/src/auth/commands/handlers/index.js.map +0 -1
  1220. package/dist/src/auth/commands/handlers/login-github.handler.d.ts +0 -17
  1221. package/dist/src/auth/commands/handlers/login-github.handler.js +0 -67
  1222. package/dist/src/auth/commands/handlers/login-github.handler.js.map +0 -1
  1223. package/dist/src/auth/commands/handlers/login-google.handler.d.ts +0 -17
  1224. package/dist/src/auth/commands/handlers/login-google.handler.js +0 -67
  1225. package/dist/src/auth/commands/handlers/login-google.handler.js.map +0 -1
  1226. package/dist/src/auth/commands/handlers/login.handler.d.ts +0 -11
  1227. package/dist/src/auth/commands/handlers/login.handler.js +0 -56
  1228. package/dist/src/auth/commands/handlers/login.handler.js.map +0 -1
  1229. package/dist/src/auth/commands/handlers/sign-up.handler.d.ts +0 -12
  1230. package/dist/src/auth/commands/handlers/sign-up.handler.js +0 -48
  1231. package/dist/src/auth/commands/handlers/sign-up.handler.js.map +0 -1
  1232. package/dist/src/auth/commands/impl/check-organization-permission.command.d.ts +0 -13
  1233. package/dist/src/auth/commands/impl/check-organization-permission.command.js.map +0 -1
  1234. package/dist/src/auth/commands/impl/check-project-permission.command.d.ts +0 -25
  1235. package/dist/src/auth/commands/impl/check-project-permission.command.js.map +0 -1
  1236. package/dist/src/auth/commands/impl/check-system-permission.command.d.ts +0 -12
  1237. package/dist/src/auth/commands/impl/check-system-permission.command.js.map +0 -1
  1238. package/dist/src/auth/commands/impl/confirm-email-code.command.js.map +0 -1
  1239. package/dist/src/auth/commands/impl/create-user.command.d.ts +0 -20
  1240. package/dist/src/auth/commands/impl/create-user.command.js.map +0 -1
  1241. package/dist/src/auth/commands/impl/index.d.ts +0 -9
  1242. package/dist/src/auth/commands/impl/index.js.map +0 -1
  1243. package/dist/src/auth/commands/impl/login-github.command.js.map +0 -1
  1244. package/dist/src/auth/commands/impl/login-google.command.js.map +0 -1
  1245. package/dist/src/auth/commands/impl/login.command.js.map +0 -1
  1246. package/dist/src/auth/commands/impl/sign-up.command.js.map +0 -1
  1247. package/dist/src/auth/commands/index.d.ts +0 -2
  1248. package/dist/src/auth/commands/index.js.map +0 -1
  1249. package/dist/src/auth/consts.js.map +0 -1
  1250. package/dist/src/auth/github-oauth.service.js +0 -86
  1251. package/dist/src/auth/github-oauth.service.js.map +0 -1
  1252. package/dist/src/auth/google-oauth.service.js +0 -57
  1253. package/dist/src/auth/google-oauth.service.js.map +0 -1
  1254. package/dist/src/auth/guards/base-persmission.guard.d.ts +0 -24
  1255. package/dist/src/auth/guards/base-persmission.guard.js.map +0 -1
  1256. package/dist/src/auth/guards/jwt/gql-jwt-auth-guard.service.js.map +0 -1
  1257. package/dist/src/auth/guards/jwt/http-jwt-auth-guard.service.js.map +0 -1
  1258. package/dist/src/auth/guards/jwt/local-auth.guard.js.map +0 -1
  1259. package/dist/src/auth/guards/jwt/optional-gql-jwt-auth-guard.service.js.map +0 -1
  1260. package/dist/src/auth/guards/jwt/optional-http-jwt-auth-guard.service.js.map +0 -1
  1261. package/dist/src/auth/guards/organization.guard.d.ts +0 -25
  1262. package/dist/src/auth/guards/organization.guard.js.map +0 -1
  1263. package/dist/src/auth/guards/permission-params.d.ts +0 -7
  1264. package/dist/src/auth/guards/permission-params.js.map +0 -1
  1265. package/dist/src/auth/guards/project.guard.d.ts +0 -31
  1266. package/dist/src/auth/guards/project.guard.js.map +0 -1
  1267. package/dist/src/auth/guards/system.guard.d.ts +0 -20
  1268. package/dist/src/auth/guards/system.guard.js.map +0 -1
  1269. package/dist/src/auth/jwt-secret.service.js.map +0 -1
  1270. package/dist/src/auth/strategy/jwt.strategy.d.ts +0 -9
  1271. package/dist/src/auth/strategy/jwt.strategy.js.map +0 -1
  1272. package/dist/src/auth/types.js.map +0 -1
  1273. package/dist/src/auth/utils.d.ts +0 -2
  1274. package/dist/src/auth/utils.js.map +0 -1
  1275. package/dist/src/branch/branch.module.js +0 -26
  1276. package/dist/src/branch/branch.module.js.map +0 -1
  1277. package/dist/src/branch/commands/handlers/api-create-branch-by-revision-id.handler.d.ts +0 -8
  1278. package/dist/src/branch/commands/handlers/api-create-branch-by-revision-id.handler.js.map +0 -1
  1279. package/dist/src/branch/commands/handlers/create-branch-by-revision-id.handler.d.ts +0 -32
  1280. package/dist/src/branch/commands/handlers/create-branch-by-revision-id.handler.js +0 -134
  1281. package/dist/src/branch/commands/handlers/create-branch-by-revision-id.handler.js.map +0 -1
  1282. package/dist/src/branch/commands/handlers/index.d.ts +0 -3
  1283. package/dist/src/branch/commands/handlers/index.js.map +0 -1
  1284. package/dist/src/branch/commands/impl/api-create-branch-by-revision-id.command.js.map +0 -1
  1285. package/dist/src/branch/commands/impl/create-branch-by-revision-id.command.js.map +0 -1
  1286. package/dist/src/branch/commands/impl/index.d.ts +0 -2
  1287. package/dist/src/branch/commands/impl/index.js.map +0 -1
  1288. package/dist/src/branch/quieries/handlers/get-branch-by-id.handler.d.ts +0 -15
  1289. package/dist/src/branch/quieries/handlers/get-branch-by-id.handler.js +0 -29
  1290. package/dist/src/branch/quieries/handlers/get-branch-by-id.handler.js.map +0 -1
  1291. package/dist/src/branch/quieries/handlers/get-branch.handler.d.ts +0 -14
  1292. package/dist/src/branch/quieries/handlers/get-branch.handler.js +0 -49
  1293. package/dist/src/branch/quieries/handlers/get-branch.handler.js.map +0 -1
  1294. package/dist/src/branch/quieries/handlers/get-branches.handler.d.ts +0 -22
  1295. package/dist/src/branch/quieries/handlers/get-branches.handler.js +0 -65
  1296. package/dist/src/branch/quieries/handlers/get-branches.handler.js.map +0 -1
  1297. package/dist/src/branch/quieries/handlers/get-draft-revision.handler.d.ts +0 -9
  1298. package/dist/src/branch/quieries/handlers/get-draft-revision.handler.js +0 -31
  1299. package/dist/src/branch/quieries/handlers/get-draft-revision.handler.js.map +0 -1
  1300. package/dist/src/branch/quieries/handlers/get-head-revision.handler.d.ts +0 -9
  1301. package/dist/src/branch/quieries/handlers/get-head-revision.handler.js +0 -31
  1302. package/dist/src/branch/quieries/handlers/get-head-revision.handler.js.map +0 -1
  1303. package/dist/src/branch/quieries/handlers/get-project-by-branch.handler.d.ts +0 -14
  1304. package/dist/src/branch/quieries/handlers/get-project-by-branch.handler.js +0 -31
  1305. package/dist/src/branch/quieries/handlers/get-project-by-branch.handler.js.map +0 -1
  1306. package/dist/src/branch/quieries/handlers/get-revisions-by-branch-id.handler.d.ts +0 -22
  1307. package/dist/src/branch/quieries/handlers/get-revisions-by-branch-id.handler.js +0 -65
  1308. package/dist/src/branch/quieries/handlers/get-revisions-by-branch-id.handler.js.map +0 -1
  1309. package/dist/src/branch/quieries/handlers/get-start-revision.handler.d.ts +0 -9
  1310. package/dist/src/branch/quieries/handlers/get-start-revision.handler.js +0 -31
  1311. package/dist/src/branch/quieries/handlers/get-start-revision.handler.js.map +0 -1
  1312. package/dist/src/branch/quieries/handlers/get-touched-by-branch-id.handler.d.ts +0 -13
  1313. package/dist/src/branch/quieries/handlers/get-touched-by-branch-id.handler.js +0 -50
  1314. package/dist/src/branch/quieries/handlers/get-touched-by-branch-id.handler.js.map +0 -1
  1315. package/dist/src/branch/quieries/handlers/index.d.ts +0 -11
  1316. package/dist/src/branch/quieries/handlers/index.js.map +0 -1
  1317. package/dist/src/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.d.ts +0 -16
  1318. package/dist/src/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.js +0 -53
  1319. package/dist/src/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.js.map +0 -1
  1320. package/dist/src/branch/quieries/impl/get-branch-by-id.query.js.map +0 -1
  1321. package/dist/src/branch/quieries/impl/get-branch.query.js.map +0 -1
  1322. package/dist/src/branch/quieries/impl/get-branches.query.js.map +0 -1
  1323. package/dist/src/branch/quieries/impl/get-draft-revision.query.js.map +0 -1
  1324. package/dist/src/branch/quieries/impl/get-head-revision.query.js.map +0 -1
  1325. package/dist/src/branch/quieries/impl/get-project-by-branch.query.js.map +0 -1
  1326. package/dist/src/branch/quieries/impl/get-revisions-by-branch-id.query.js.map +0 -1
  1327. package/dist/src/branch/quieries/impl/get-start-revision.query.js.map +0 -1
  1328. package/dist/src/branch/quieries/impl/get-touched-by-branch-id.query.js.map +0 -1
  1329. package/dist/src/branch/quieries/impl/index.d.ts +0 -10
  1330. package/dist/src/branch/quieries/impl/index.js.map +0 -1
  1331. package/dist/src/branch/quieries/impl/resolve-parent-branch-by-branch.query.js.map +0 -1
  1332. package/dist/src/branch/quieries/types/get-branch-by-id.types.js.map +0 -1
  1333. package/dist/src/branch/quieries/types/get-branch.types.js.map +0 -1
  1334. package/dist/src/branch/quieries/types/get-draft-revision.types.js.map +0 -1
  1335. package/dist/src/branch/quieries/types/get-head-revision.types.js.map +0 -1
  1336. package/dist/src/branch/quieries/types/get-start-revision.types.js.map +0 -1
  1337. package/dist/src/branch/quieries/types/index.d.ts +0 -4
  1338. package/dist/src/branch/quieries/types/index.js.map +0 -1
  1339. package/dist/src/clean/clean.module.js.map +0 -1
  1340. package/dist/src/clean/clean.service.d.ts +0 -7
  1341. package/dist/src/clean/clean.service.js.map +0 -1
  1342. package/dist/src/clean/commands/handlers/clean-rows.handler.d.ts +0 -8
  1343. package/dist/src/clean/commands/handlers/clean-rows.handler.js.map +0 -1
  1344. package/dist/src/clean/commands/handlers/clean-tables.handler.d.ts +0 -8
  1345. package/dist/src/clean/commands/handlers/clean-tables.handler.js.map +0 -1
  1346. package/dist/src/clean/commands/handlers/index.d.ts +0 -3
  1347. package/dist/src/clean/commands/handlers/index.js.map +0 -1
  1348. package/dist/src/clean/commands/impl/clean-rows.command.js.map +0 -1
  1349. package/dist/src/clean/commands/impl/clean-tables.command.js.map +0 -1
  1350. package/dist/src/configuration/configuration.module.js +0 -24
  1351. package/dist/src/configuration/configuration.module.js.map +0 -1
  1352. package/dist/src/configuration/queries/handlers/get-configuration.handler.d.ts +0 -13
  1353. package/dist/src/configuration/queries/handlers/get-configuration.handler.js +0 -48
  1354. package/dist/src/configuration/queries/handlers/get-configuration.handler.js.map +0 -1
  1355. package/dist/src/configuration/queries/handlers/index.d.ts +0 -1
  1356. package/dist/src/configuration/queries/handlers/index.js.map +0 -1
  1357. package/dist/src/configuration/queries/impl/get-configuration.query.d.ts +0 -14
  1358. package/dist/src/configuration/queries/impl/get-configuration.query.js +0 -8
  1359. package/dist/src/configuration/queries/impl/get-configuration.query.js.map +0 -1
  1360. package/dist/src/configuration/queries/impl/index.d.ts +0 -1
  1361. package/dist/src/configuration/queries/impl/index.js.map +0 -1
  1362. package/dist/src/configuration/queries/index.d.ts +0 -2
  1363. package/dist/src/configuration/queries/index.js.map +0 -1
  1364. package/dist/src/database/database.module.js.map +0 -1
  1365. package/dist/src/database/id.service.js.map +0 -1
  1366. package/dist/src/database/prisma.service.js.map +0 -1
  1367. package/dist/src/database/transaction-prisma.service.d.ts +0 -14
  1368. package/dist/src/database/transaction-prisma.service.js +0 -39
  1369. package/dist/src/database/transaction-prisma.service.js.map +0 -1
  1370. package/dist/src/draft/commands/handlers/api-create-revision.handler.d.ts +0 -13
  1371. package/dist/src/draft/commands/handlers/api-create-revision.handler.js +0 -45
  1372. package/dist/src/draft/commands/handlers/api-create-revision.handler.js.map +0 -1
  1373. package/dist/src/draft/commands/handlers/api-create-row.handler.d.ts +0 -13
  1374. package/dist/src/draft/commands/handlers/api-create-row.handler.js +0 -59
  1375. package/dist/src/draft/commands/handlers/api-create-row.handler.js.map +0 -1
  1376. package/dist/src/draft/commands/handlers/api-create-table.handler.d.ts +0 -13
  1377. package/dist/src/draft/commands/handlers/api-create-table.handler.js +0 -45
  1378. package/dist/src/draft/commands/handlers/api-create-table.handler.js.map +0 -1
  1379. package/dist/src/draft/commands/handlers/api-remove-row.handler.d.ts +0 -13
  1380. package/dist/src/draft/commands/handlers/api-remove-row.handler.js +0 -59
  1381. package/dist/src/draft/commands/handlers/api-remove-row.handler.js.map +0 -1
  1382. package/dist/src/draft/commands/handlers/api-remove-table.handler.d.ts +0 -13
  1383. package/dist/src/draft/commands/handlers/api-remove-table.handler.js +0 -43
  1384. package/dist/src/draft/commands/handlers/api-remove-table.handler.js.map +0 -1
  1385. package/dist/src/draft/commands/handlers/api-revert-changes.handler.d.ts +0 -12
  1386. package/dist/src/draft/commands/handlers/api-revert-changes.handler.js +0 -40
  1387. package/dist/src/draft/commands/handlers/api-revert-changes.handler.js.map +0 -1
  1388. package/dist/src/draft/commands/handlers/api-update-row.handler.d.ts +0 -13
  1389. package/dist/src/draft/commands/handlers/api-update-row.handler.js +0 -57
  1390. package/dist/src/draft/commands/handlers/api-update-row.handler.js.map +0 -1
  1391. package/dist/src/draft/commands/handlers/api-update-table.handler.d.ts +0 -13
  1392. package/dist/src/draft/commands/handlers/api-update-table.handler.js +0 -45
  1393. package/dist/src/draft/commands/handlers/api-update-table.handler.js.map +0 -1
  1394. package/dist/src/draft/commands/handlers/create-revision.handler.d.ts +0 -24
  1395. package/dist/src/draft/commands/handlers/create-revision.handler.js +0 -140
  1396. package/dist/src/draft/commands/handlers/create-revision.handler.js.map +0 -1
  1397. package/dist/src/draft/commands/handlers/create-row.handler.d.ts +0 -29
  1398. package/dist/src/draft/commands/handlers/create-row.handler.js +0 -132
  1399. package/dist/src/draft/commands/handlers/create-row.handler.js.map +0 -1
  1400. package/dist/src/draft/commands/handlers/create-table.handler.d.ts +0 -30
  1401. package/dist/src/draft/commands/handlers/create-table.handler.js +0 -123
  1402. package/dist/src/draft/commands/handlers/create-table.handler.js.map +0 -1
  1403. package/dist/src/draft/commands/handlers/index.d.ts +0 -25
  1404. package/dist/src/draft/commands/handlers/index.js +0 -54
  1405. package/dist/src/draft/commands/handlers/index.js.map +0 -1
  1406. package/dist/src/draft/commands/handlers/remove-row.handler.d.ts +0 -33
  1407. package/dist/src/draft/commands/handlers/remove-row.handler.js +0 -232
  1408. package/dist/src/draft/commands/handlers/remove-row.handler.js.map +0 -1
  1409. package/dist/src/draft/commands/handlers/remove-table.handler.d.ts +0 -33
  1410. package/dist/src/draft/commands/handlers/remove-table.handler.js +0 -178
  1411. package/dist/src/draft/commands/handlers/remove-table.handler.js.map +0 -1
  1412. package/dist/src/draft/commands/handlers/revert-changes.handler.d.ts +0 -17
  1413. package/dist/src/draft/commands/handlers/revert-changes.handler.js +0 -96
  1414. package/dist/src/draft/commands/handlers/revert-changes.handler.js.map +0 -1
  1415. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-row.handler.d.ts +0 -26
  1416. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-row.handler.js +0 -115
  1417. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-row.handler.js.map +0 -1
  1418. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.d.ts +0 -26
  1419. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.js +0 -145
  1420. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.js.map +0 -1
  1421. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-table.handler.d.ts +0 -24
  1422. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-table.handler.js +0 -113
  1423. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-table.handler.js.map +0 -1
  1424. package/dist/src/draft/commands/handlers/transactional/resolve-draft-revision.handler.d.ts +0 -13
  1425. package/dist/src/draft/commands/handlers/transactional/resolve-draft-revision.handler.js +0 -62
  1426. package/dist/src/draft/commands/handlers/transactional/resolve-draft-revision.handler.js.map +0 -1
  1427. package/dist/src/draft/commands/handlers/transactional/validate-data.handler.d.ts +0 -14
  1428. package/dist/src/draft/commands/handlers/transactional/validate-data.handler.js +0 -67
  1429. package/dist/src/draft/commands/handlers/transactional/validate-data.handler.js.map +0 -1
  1430. package/dist/src/draft/commands/handlers/transactional/validate-not-system-table.handler.d.ts +0 -10
  1431. package/dist/src/draft/commands/handlers/transactional/validate-not-system-table.handler.js +0 -35
  1432. package/dist/src/draft/commands/handlers/transactional/validate-not-system-table.handler.js.map +0 -1
  1433. package/dist/src/draft/commands/handlers/transactional/validate-schema.handler.d.ts +0 -14
  1434. package/dist/src/draft/commands/handlers/transactional/validate-schema.handler.js +0 -51
  1435. package/dist/src/draft/commands/handlers/transactional/validate-schema.handler.js.map +0 -1
  1436. package/dist/src/draft/commands/handlers/update-row.handler.d.ts +0 -18
  1437. package/dist/src/draft/commands/handlers/update-row.handler.js +0 -75
  1438. package/dist/src/draft/commands/handlers/update-row.handler.js.map +0 -1
  1439. package/dist/src/draft/commands/handlers/update-rows.handler.d.ts +0 -17
  1440. package/dist/src/draft/commands/handlers/update-rows.handler.js +0 -74
  1441. package/dist/src/draft/commands/handlers/update-rows.handler.js.map +0 -1
  1442. package/dist/src/draft/commands/handlers/update-table.handler.d.ts +0 -29
  1443. package/dist/src/draft/commands/handlers/update-table.handler.js +0 -166
  1444. package/dist/src/draft/commands/handlers/update-table.handler.js.map +0 -1
  1445. package/dist/src/draft/commands/impl/api-create-revision.command.d.ts +0 -14
  1446. package/dist/src/draft/commands/impl/api-create-revision.command.js.map +0 -1
  1447. package/dist/src/draft/commands/impl/api-create-row.command.js.map +0 -1
  1448. package/dist/src/draft/commands/impl/api-create-table.command.js.map +0 -1
  1449. package/dist/src/draft/commands/impl/api-remove-row.command.js.map +0 -1
  1450. package/dist/src/draft/commands/impl/api-remove-table.command.js.map +0 -1
  1451. package/dist/src/draft/commands/impl/api-revert-changes.command.d.ts +0 -12
  1452. package/dist/src/draft/commands/impl/api-revert-changes.command.js.map +0 -1
  1453. package/dist/src/draft/commands/impl/api-update-row.command.js.map +0 -1
  1454. package/dist/src/draft/commands/impl/api-update-table.command.d.ts +0 -13
  1455. package/dist/src/draft/commands/impl/api-update-table.command.js.map +0 -1
  1456. package/dist/src/draft/commands/impl/create-revision.command.js.map +0 -1
  1457. package/dist/src/draft/commands/impl/create-row.command.js.map +0 -1
  1458. package/dist/src/draft/commands/impl/create-table.command.js.map +0 -1
  1459. package/dist/src/draft/commands/impl/remove-row.command.js.map +0 -1
  1460. package/dist/src/draft/commands/impl/remove-table.command.js.map +0 -1
  1461. package/dist/src/draft/commands/impl/revert-changes.command.js.map +0 -1
  1462. package/dist/src/draft/commands/impl/transactional/get-or-create-draft-row.command.js.map +0 -1
  1463. package/dist/src/draft/commands/impl/transactional/get-or-create-draft-rows.command.js.map +0 -1
  1464. package/dist/src/draft/commands/impl/transactional/get-or-create-draft-table.command.js.map +0 -1
  1465. package/dist/src/draft/commands/impl/transactional/resolve-draft-revision.command.js.map +0 -1
  1466. package/dist/src/draft/commands/impl/transactional/validate-data.command.d.ts +0 -24
  1467. package/dist/src/draft/commands/impl/transactional/validate-data.command.js.map +0 -1
  1468. package/dist/src/draft/commands/impl/transactional/validate-not-system-table.command.js.map +0 -1
  1469. package/dist/src/draft/commands/impl/transactional/validate-schema.command.js.map +0 -1
  1470. package/dist/src/draft/commands/impl/update-row.command.js.map +0 -1
  1471. package/dist/src/draft/commands/impl/update-rows.command.d.ts +0 -22
  1472. package/dist/src/draft/commands/impl/update-rows.command.js.map +0 -1
  1473. package/dist/src/draft/commands/impl/update-table.command.d.ts +0 -13
  1474. package/dist/src/draft/commands/impl/update-table.command.js.map +0 -1
  1475. package/dist/src/draft/commands/types/api-create-row.handler.types.d.ts +0 -7
  1476. package/dist/src/draft/commands/types/api-create-row.handler.types.js.map +0 -1
  1477. package/dist/src/draft/commands/types/api-create-table.handler.types.js.map +0 -1
  1478. package/dist/src/draft/commands/types/api-remove-row.handler.types.d.ts +0 -7
  1479. package/dist/src/draft/commands/types/api-remove-row.handler.types.js.map +0 -1
  1480. package/dist/src/draft/commands/types/api-remove-table.handler.types.d.ts +0 -4
  1481. package/dist/src/draft/commands/types/api-remove-table.handler.types.js.map +0 -1
  1482. package/dist/src/draft/commands/types/api-update-row.handler.types.d.ts +0 -8
  1483. package/dist/src/draft/commands/types/api-update-row.handler.types.js.map +0 -1
  1484. package/dist/src/draft/commands/types/api-update-table.handler.types.d.ts +0 -5
  1485. package/dist/src/draft/commands/types/api-update-table.handler.types.js.map +0 -1
  1486. package/dist/src/draft/commands/types/create-revision.handler.types.js.map +0 -1
  1487. package/dist/src/draft/commands/types/create-row.handler.types.js.map +0 -1
  1488. package/dist/src/draft/commands/types/create-table.handler.types.js.map +0 -1
  1489. package/dist/src/draft/commands/types/remove-row.handler.types.js.map +0 -1
  1490. package/dist/src/draft/commands/types/remove-table.handler.types.js.map +0 -1
  1491. package/dist/src/draft/commands/types/revert-changes.handler.types.js.map +0 -1
  1492. package/dist/src/draft/commands/types/update-row.handler.types.js.map +0 -1
  1493. package/dist/src/draft/commands/types/update-table.handler.types.js.map +0 -1
  1494. package/dist/src/draft/draft-context.service.d.ts +0 -25
  1495. package/dist/src/draft/draft-context.service.js +0 -75
  1496. package/dist/src/draft/draft-context.service.js.map +0 -1
  1497. package/dist/src/draft/draft-request-dto/draft-revision-request.dto.d.ts +0 -14
  1498. package/dist/src/draft/draft-request-dto/draft-revision-request.dto.js.map +0 -1
  1499. package/dist/src/draft/draft-request-dto/index.d.ts +0 -5
  1500. package/dist/src/draft/draft-request-dto/index.js.map +0 -1
  1501. package/dist/src/draft/draft-request-dto/row-request.dto.d.ts +0 -11
  1502. package/dist/src/draft/draft-request-dto/row-request.dto.js.map +0 -1
  1503. package/dist/src/draft/draft-request-dto/rows-request.dto.d.ts +0 -13
  1504. package/dist/src/draft/draft-request-dto/rows-request.dto.js.map +0 -1
  1505. package/dist/src/draft/draft-request-dto/table-request.dto.d.ts +0 -11
  1506. package/dist/src/draft/draft-request-dto/table-request.dto.js.map +0 -1
  1507. package/dist/src/draft/draft.handler.d.ts +0 -13
  1508. package/dist/src/draft/draft.handler.js.map +0 -1
  1509. package/dist/src/draft/draft.module.js +0 -44
  1510. package/dist/src/draft/draft.module.js.map +0 -1
  1511. package/dist/src/draft/draft.transactional.commands.d.ts +0 -23
  1512. package/dist/src/draft/draft.transactional.commands.js.map +0 -1
  1513. package/dist/src/draft/json-schema-validator.service.d.ts +0 -24
  1514. package/dist/src/draft/json-schema-validator.service.js +0 -76
  1515. package/dist/src/draft/json-schema-validator.service.js.map +0 -1
  1516. package/dist/src/draft/session-changelog.service.d.ts +0 -27
  1517. package/dist/src/draft/session-changelog.service.js +0 -124
  1518. package/dist/src/draft/session-changelog.service.js.map +0 -1
  1519. package/dist/src/email/email.module.js.map +0 -1
  1520. package/dist/src/email/email.service.d.ts +0 -14
  1521. package/dist/src/email/email.service.js +0 -55
  1522. package/dist/src/email/email.service.js.map +0 -1
  1523. package/dist/src/email/templates.service.d.ts +0 -8
  1524. package/dist/src/email/templates.service.js +0 -53
  1525. package/dist/src/email/templates.service.js.map +0 -1
  1526. package/dist/src/email/transporter.service.js +0 -49
  1527. package/dist/src/email/transporter.service.js.map +0 -1
  1528. package/dist/src/endpoint/commands/handlers/api-create-endpoint.handler.d.ts +0 -8
  1529. package/dist/src/endpoint/commands/handlers/api-create-endpoint.handler.js.map +0 -1
  1530. package/dist/src/endpoint/commands/handlers/create-endpoint.handler.d.ts +0 -13
  1531. package/dist/src/endpoint/commands/handlers/create-endpoint.handler.js +0 -61
  1532. package/dist/src/endpoint/commands/handlers/create-endpoint.handler.js.map +0 -1
  1533. package/dist/src/endpoint/commands/handlers/delete-endpoint.handler.d.ts +0 -12
  1534. package/dist/src/endpoint/commands/handlers/delete-endpoint.handler.js +0 -50
  1535. package/dist/src/endpoint/commands/handlers/delete-endpoint.handler.js.map +0 -1
  1536. package/dist/src/endpoint/commands/handlers/index.d.ts +0 -4
  1537. package/dist/src/endpoint/commands/handlers/index.js.map +0 -1
  1538. package/dist/src/endpoint/commands/impl/api-create-endpoint.command.js.map +0 -1
  1539. package/dist/src/endpoint/commands/impl/create-endpoint.command.js.map +0 -1
  1540. package/dist/src/endpoint/commands/impl/delete-endpoint.command.js.map +0 -1
  1541. package/dist/src/endpoint/commands/impl/index.d.ts +0 -3
  1542. package/dist/src/endpoint/commands/impl/index.js.map +0 -1
  1543. package/dist/src/endpoint/endpoint.module.js +0 -25
  1544. package/dist/src/endpoint/endpoint.module.js.map +0 -1
  1545. package/dist/src/endpoint/queries/handlers/get-created-endpoint.handler.d.ts +0 -14
  1546. package/dist/src/endpoint/queries/handlers/get-created-endpoint.handler.js +0 -29
  1547. package/dist/src/endpoint/queries/handlers/get-created-endpoint.handler.js.map +0 -1
  1548. package/dist/src/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.d.ts +0 -19
  1549. package/dist/src/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.js +0 -33
  1550. package/dist/src/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.js.map +0 -1
  1551. package/dist/src/endpoint/queries/handlers/index.d.ts +0 -3
  1552. package/dist/src/endpoint/queries/handlers/index.js.map +0 -1
  1553. package/dist/src/endpoint/queries/impl/get-created-endpoint.query.js.map +0 -1
  1554. package/dist/src/endpoint/queries/impl/get-revision-by-endpoint-id.query.js.map +0 -1
  1555. package/dist/src/endpoint/queries/impl/index.d.ts +0 -2
  1556. package/dist/src/endpoint/queries/impl/index.js.map +0 -1
  1557. package/dist/src/graphql-api/auth/auth.resolver.d.ts +0 -13
  1558. package/dist/src/graphql-api/auth/auth.resolver.js +0 -103
  1559. package/dist/src/graphql-api/auth/auth.resolver.js.map +0 -1
  1560. package/dist/src/graphql-api/auth/inputs/confirm-email-code.input.js.map +0 -1
  1561. package/dist/src/graphql-api/auth/inputs/create-user.input.d.ts +0 -7
  1562. package/dist/src/graphql-api/auth/inputs/create-user.input.js +0 -37
  1563. package/dist/src/graphql-api/auth/inputs/create-user.input.js.map +0 -1
  1564. package/dist/src/graphql-api/auth/inputs/index.d.ts +0 -6
  1565. package/dist/src/graphql-api/auth/inputs/index.js.map +0 -1
  1566. package/dist/src/graphql-api/auth/inputs/login-github.input.js.map +0 -1
  1567. package/dist/src/graphql-api/auth/inputs/login-google.input.js.map +0 -1
  1568. package/dist/src/graphql-api/auth/inputs/login.input.js.map +0 -1
  1569. package/dist/src/graphql-api/auth/inputs/sign-up.input.js.map +0 -1
  1570. package/dist/src/graphql-api/auth/model/index.d.ts +0 -1
  1571. package/dist/src/graphql-api/auth/model/index.js.map +0 -1
  1572. package/dist/src/graphql-api/auth/model/login.model.js.map +0 -1
  1573. package/dist/src/graphql-api/branch/branch.resolver.d.ts +0 -23
  1574. package/dist/src/graphql-api/branch/branch.resolver.js +0 -176
  1575. package/dist/src/graphql-api/branch/branch.resolver.js.map +0 -1
  1576. package/dist/src/graphql-api/branch/inputs/create-branch-by-revision-id.input.js.map +0 -1
  1577. package/dist/src/graphql-api/branch/inputs/create-branch.input.js.map +0 -1
  1578. package/dist/src/graphql-api/branch/inputs/get-branch-revisions.input.js.map +0 -1
  1579. package/dist/src/graphql-api/branch/inputs/get-branch.input.js.map +0 -1
  1580. package/dist/src/graphql-api/branch/inputs/get-branches.input.js.map +0 -1
  1581. package/dist/src/graphql-api/branch/inputs/index.d.ts +0 -5
  1582. package/dist/src/graphql-api/branch/inputs/index.js.map +0 -1
  1583. package/dist/src/graphql-api/branch/inputs/revert-changes.input.js.map +0 -1
  1584. package/dist/src/graphql-api/branch/model/branch.model.d.ts +0 -21
  1585. package/dist/src/graphql-api/branch/model/branch.model.js.map +0 -1
  1586. package/dist/src/graphql-api/branch/model/parent-branch.model.d.ts +0 -6
  1587. package/dist/src/graphql-api/branch/model/parent-branch.model.js.map +0 -1
  1588. package/dist/src/graphql-api/branch/parent-branch.resolver.d.ts +0 -8
  1589. package/dist/src/graphql-api/branch/parent-branch.resolver.js +0 -51
  1590. package/dist/src/graphql-api/branch/parent-branch.resolver.js.map +0 -1
  1591. package/dist/src/graphql-api/configuration/configuration.resolver.d.ts +0 -7
  1592. package/dist/src/graphql-api/configuration/configuration.resolver.js +0 -36
  1593. package/dist/src/graphql-api/configuration/configuration.resolver.js.map +0 -1
  1594. package/dist/src/graphql-api/configuration/model/configuration.model.js.map +0 -1
  1595. package/dist/src/graphql-api/configuration/model/index.d.ts +0 -1
  1596. package/dist/src/graphql-api/configuration/model/index.js.map +0 -1
  1597. package/dist/src/graphql-api/current-user.decorator.js.map +0 -1
  1598. package/dist/src/graphql-api/draft/draft.resolver.d.ts +0 -14
  1599. package/dist/src/graphql-api/draft/draft.resolver.js +0 -142
  1600. package/dist/src/graphql-api/draft/draft.resolver.js.map +0 -1
  1601. package/dist/src/graphql-api/draft/input/create-row.input.d.ts +0 -5
  1602. package/dist/src/graphql-api/draft/input/create-row.input.js.map +0 -1
  1603. package/dist/src/graphql-api/draft/input/create-table.input.js.map +0 -1
  1604. package/dist/src/graphql-api/draft/input/index.d.ts +0 -5
  1605. package/dist/src/graphql-api/draft/input/index.js.map +0 -1
  1606. package/dist/src/graphql-api/draft/input/remove-row.input.d.ts +0 -3
  1607. package/dist/src/graphql-api/draft/input/remove-row.input.js.map +0 -1
  1608. package/dist/src/graphql-api/draft/input/remove-table.input.js.map +0 -1
  1609. package/dist/src/graphql-api/draft/input/update-row.input.d.ts +0 -5
  1610. package/dist/src/graphql-api/draft/input/update-row.input.js.map +0 -1
  1611. package/dist/src/graphql-api/draft/input/update-table.input.d.ts +0 -6
  1612. package/dist/src/graphql-api/draft/input/update-table.input.js.map +0 -1
  1613. package/dist/src/graphql-api/draft/model/create-row-result.model.d.ts +0 -7
  1614. package/dist/src/graphql-api/draft/model/create-row-result.model.js.map +0 -1
  1615. package/dist/src/graphql-api/draft/model/create-table-result.model.d.ts +0 -6
  1616. package/dist/src/graphql-api/draft/model/create-table-result.model.js.map +0 -1
  1617. package/dist/src/graphql-api/draft/model/remove-row-result.model.d.ts +0 -7
  1618. package/dist/src/graphql-api/draft/model/remove-row-result.model.js.map +0 -1
  1619. package/dist/src/graphql-api/draft/model/remove-table-result.model.d.ts +0 -4
  1620. package/dist/src/graphql-api/draft/model/remove-table-result.model.js.map +0 -1
  1621. package/dist/src/graphql-api/draft/model/update-row-result.model.d.ts +0 -8
  1622. package/dist/src/graphql-api/draft/model/update-row-result.model.js.map +0 -1
  1623. package/dist/src/graphql-api/draft/model/update-table-result.model.d.ts +0 -5
  1624. package/dist/src/graphql-api/draft/model/update-table-result.model.js.map +0 -1
  1625. package/dist/src/graphql-api/endpoint/endpoint.resolver.d.ts +0 -11
  1626. package/dist/src/graphql-api/endpoint/endpoint.resolver.js +0 -83
  1627. package/dist/src/graphql-api/endpoint/endpoint.resolver.js.map +0 -1
  1628. package/dist/src/graphql-api/endpoint/inputs/create-endpoint.input.d.ts +0 -5
  1629. package/dist/src/graphql-api/endpoint/inputs/create-endpoint.input.js.map +0 -1
  1630. package/dist/src/graphql-api/endpoint/inputs/delete-endpoint.input.js.map +0 -1
  1631. package/dist/src/graphql-api/endpoint/inputs/get-endpoint.input.js.map +0 -1
  1632. package/dist/src/graphql-api/endpoint/inputs/index.d.ts +0 -3
  1633. package/dist/src/graphql-api/endpoint/inputs/index.js.map +0 -1
  1634. package/dist/src/graphql-api/endpoint/model/endpoint.model.d.ts +0 -11
  1635. package/dist/src/graphql-api/endpoint/model/endpoint.model.js.map +0 -1
  1636. package/dist/src/graphql-api/endpoint/model/index.d.ts +0 -1
  1637. package/dist/src/graphql-api/endpoint/model/index.js.map +0 -1
  1638. package/dist/src/graphql-api/graphql-api.module.js +0 -80
  1639. package/dist/src/graphql-api/graphql-api.module.js.map +0 -1
  1640. package/dist/src/graphql-api/organization/inputs/add-user-to-organization.input.d.ts +0 -6
  1641. package/dist/src/graphql-api/organization/inputs/add-user-to-organization.input.js +0 -33
  1642. package/dist/src/graphql-api/organization/inputs/add-user-to-organization.input.js.map +0 -1
  1643. package/dist/src/graphql-api/organization/inputs/get-users-organization.input.js.map +0 -1
  1644. package/dist/src/graphql-api/organization/inputs/index.d.ts +0 -3
  1645. package/dist/src/graphql-api/organization/inputs/index.js.map +0 -1
  1646. package/dist/src/graphql-api/organization/inputs/remove-user-from-organization.input.js.map +0 -1
  1647. package/dist/src/graphql-api/organization/model/users-organization.connection.d.ts +0 -5
  1648. package/dist/src/graphql-api/organization/model/users-organization.connection.js.map +0 -1
  1649. package/dist/src/graphql-api/organization/model/users-organization.model.d.ts +0 -7
  1650. package/dist/src/graphql-api/organization/model/users-organization.model.js.map +0 -1
  1651. package/dist/src/graphql-api/organization/organization.resolver.d.ts +0 -15
  1652. package/dist/src/graphql-api/organization/organization.resolver.js +0 -126
  1653. package/dist/src/graphql-api/organization/organization.resolver.js.map +0 -1
  1654. package/dist/src/graphql-api/project/inputs/add-user-to-project.input.d.ts +0 -7
  1655. package/dist/src/graphql-api/project/inputs/add-user-to-project.input.js +0 -37
  1656. package/dist/src/graphql-api/project/inputs/add-user-to-project.input.js.map +0 -1
  1657. package/dist/src/graphql-api/project/inputs/create-project.input.js.map +0 -1
  1658. package/dist/src/graphql-api/project/inputs/delete-project.input.js.map +0 -1
  1659. package/dist/src/graphql-api/project/inputs/get-project-branches.input.js.map +0 -1
  1660. package/dist/src/graphql-api/project/inputs/get-project.input.js.map +0 -1
  1661. package/dist/src/graphql-api/project/inputs/get-projects.input.js.map +0 -1
  1662. package/dist/src/graphql-api/project/inputs/get-users-project.input.js.map +0 -1
  1663. package/dist/src/graphql-api/project/inputs/index.d.ts +0 -7
  1664. package/dist/src/graphql-api/project/inputs/index.js.map +0 -1
  1665. package/dist/src/graphql-api/project/inputs/remove-user-from-project.input.js.map +0 -1
  1666. package/dist/src/graphql-api/project/inputs/update-project.input.js.map +0 -1
  1667. package/dist/src/graphql-api/project/model/index.d.ts +0 -1
  1668. package/dist/src/graphql-api/project/model/index.js.map +0 -1
  1669. package/dist/src/graphql-api/project/model/project.model.d.ts +0 -10
  1670. package/dist/src/graphql-api/project/model/project.model.js.map +0 -1
  1671. package/dist/src/graphql-api/project/model/projects.connection.d.ts +0 -5
  1672. package/dist/src/graphql-api/project/model/projects.connection.js.map +0 -1
  1673. package/dist/src/graphql-api/project/model/users-project.connection.d.ts +0 -5
  1674. package/dist/src/graphql-api/project/model/users-project.connection.js.map +0 -1
  1675. package/dist/src/graphql-api/project/model/users-project.model.d.ts +0 -7
  1676. package/dist/src/graphql-api/project/model/users-project.model.js.map +0 -1
  1677. package/dist/src/graphql-api/project/project.resolver.d.ts +0 -17
  1678. package/dist/src/graphql-api/project/project.resolver.js +0 -154
  1679. package/dist/src/graphql-api/project/project.resolver.js.map +0 -1
  1680. package/dist/src/graphql-api/registerGraphqlEnums.js +0 -14
  1681. package/dist/src/graphql-api/registerGraphqlEnums.js.map +0 -1
  1682. package/dist/src/graphql-api/revision/child-branch.resolver.d.ts +0 -8
  1683. package/dist/src/graphql-api/revision/child-branch.resolver.js +0 -51
  1684. package/dist/src/graphql-api/revision/child-branch.resolver.js.map +0 -1
  1685. package/dist/src/graphql-api/revision/inputs/create-revision.input.js.map +0 -1
  1686. package/dist/src/graphql-api/revision/inputs/get-revision-tables.input.js.map +0 -1
  1687. package/dist/src/graphql-api/revision/inputs/get-revision.input.js.map +0 -1
  1688. package/dist/src/graphql-api/revision/model/child-branch.model.d.ts +0 -6
  1689. package/dist/src/graphql-api/revision/model/child-branch.model.js.map +0 -1
  1690. package/dist/src/graphql-api/revision/model/revision.model.d.ts +0 -24
  1691. package/dist/src/graphql-api/revision/model/revision.model.js.map +0 -1
  1692. package/dist/src/graphql-api/revision/revision.resolver.d.ts +0 -19
  1693. package/dist/src/graphql-api/revision/revision.resolver.js +0 -150
  1694. package/dist/src/graphql-api/revision/revision.resolver.js.map +0 -1
  1695. package/dist/src/graphql-api/role/model/role.model.js.map +0 -1
  1696. package/dist/src/graphql-api/row/inputs/get-row-count-references-by.input.js.map +0 -1
  1697. package/dist/src/graphql-api/row/inputs/get-row-references.input.js.map +0 -1
  1698. package/dist/src/graphql-api/row/inputs/get-row.input.js.map +0 -1
  1699. package/dist/src/graphql-api/row/inputs/get-rows.input.js.map +0 -1
  1700. package/dist/src/graphql-api/row/inputs/index.d.ts +0 -3
  1701. package/dist/src/graphql-api/row/inputs/index.js.map +0 -1
  1702. package/dist/src/graphql-api/row/model/row-reference.model.d.ts +0 -6
  1703. package/dist/src/graphql-api/row/model/row-reference.model.js.map +0 -1
  1704. package/dist/src/graphql-api/row/model/row-references-connection.model.d.ts +0 -5
  1705. package/dist/src/graphql-api/row/model/row-references-connection.model.js.map +0 -1
  1706. package/dist/src/graphql-api/row/model/row.model.d.ts +0 -17
  1707. package/dist/src/graphql-api/row/model/row.model.js.map +0 -1
  1708. package/dist/src/graphql-api/row/model/rows-connection.model.d.ts +0 -5
  1709. package/dist/src/graphql-api/row/model/rows-connection.model.js.map +0 -1
  1710. package/dist/src/graphql-api/row/row.resolver.d.ts +0 -16
  1711. package/dist/src/graphql-api/row/row.resolver.js +0 -128
  1712. package/dist/src/graphql-api/row/row.resolver.js.map +0 -1
  1713. package/dist/src/graphql-api/share/model/paginated.model.d.ts +0 -9
  1714. package/dist/src/graphql-api/share/model/paginated.model.js.map +0 -1
  1715. package/dist/src/graphql-api/table/inputs/get-table-references.input.js.map +0 -1
  1716. package/dist/src/graphql-api/table/inputs/get-table-rows.input.js.map +0 -1
  1717. package/dist/src/graphql-api/table/inputs/get-table.input.js.map +0 -1
  1718. package/dist/src/graphql-api/table/inputs/get-tables.input.js.map +0 -1
  1719. package/dist/src/graphql-api/table/model/table-connection.model.d.ts +0 -5
  1720. package/dist/src/graphql-api/table/model/table-connection.model.js.map +0 -1
  1721. package/dist/src/graphql-api/table/model/table.model.d.ts +0 -20
  1722. package/dist/src/graphql-api/table/model/table.model.js.map +0 -1
  1723. package/dist/src/graphql-api/table/table.resolver.d.ts +0 -20
  1724. package/dist/src/graphql-api/table/table.resolver.js +0 -166
  1725. package/dist/src/graphql-api/table/table.resolver.js.map +0 -1
  1726. package/dist/src/graphql-api/user/inputs/index.d.ts +0 -3
  1727. package/dist/src/graphql-api/user/inputs/index.js.map +0 -1
  1728. package/dist/src/graphql-api/user/inputs/me-projects.input.js.map +0 -1
  1729. package/dist/src/graphql-api/user/inputs/set-username.input.js.map +0 -1
  1730. package/dist/src/graphql-api/user/inputs/update-password.input.js.map +0 -1
  1731. package/dist/src/graphql-api/user/model/user.model.js.map +0 -1
  1732. package/dist/src/graphql-api/user/user.resolver.d.ts +0 -15
  1733. package/dist/src/graphql-api/user/user.resolver.js +0 -104
  1734. package/dist/src/graphql-api/user/user.resolver.js.map +0 -1
  1735. package/dist/src/health/health.controller.d.ts +0 -3
  1736. package/dist/src/health/health.controller.js +0 -32
  1737. package/dist/src/health/health.controller.js.map +0 -1
  1738. package/dist/src/health/health.module.js +0 -18
  1739. package/dist/src/health/health.module.js.map +0 -1
  1740. package/dist/src/metrics/graphql/constants.js.map +0 -1
  1741. package/dist/src/metrics/graphql/graphql-metrics.plugin.d.ts +0 -7
  1742. package/dist/src/metrics/graphql/graphql-metrics.plugin.js.map +0 -1
  1743. package/dist/src/metrics/graphql/graphql-metrics.service.js.map +0 -1
  1744. package/dist/src/metrics/metrics.module.js.map +0 -1
  1745. package/dist/src/metrics/rest/constants.js.map +0 -1
  1746. package/dist/src/metrics/rest/rest-metrics.interceptor.d.ts +0 -9
  1747. package/dist/src/metrics/rest/rest-metrics.interceptor.js.map +0 -1
  1748. package/dist/src/metrics/rest/rest-metrics.service.js.map +0 -1
  1749. package/dist/src/metrics/utils.js.map +0 -1
  1750. package/dist/src/metrics-api/metrics-api.module.js.map +0 -1
  1751. package/dist/src/metrics-api/metrics-enabled.guard.js.map +0 -1
  1752. package/dist/src/metrics-api/metrics.controller.d.ts +0 -7
  1753. package/dist/src/metrics-api/metrics.controller.js.map +0 -1
  1754. package/dist/src/notification/endpoint-notification.service.d.ts +0 -10
  1755. package/dist/src/notification/endpoint-notification.service.js.map +0 -1
  1756. package/dist/src/notification/in-memory-client.d.ts +0 -10
  1757. package/dist/src/notification/in-memory-client.js +0 -23
  1758. package/dist/src/notification/in-memory-client.js.map +0 -1
  1759. package/dist/src/notification/in-memory-server.js.map +0 -1
  1760. package/dist/src/notification/notification-event-emitter.js.map +0 -1
  1761. package/dist/src/notification/notification.module.js.map +0 -1
  1762. package/dist/src/organization/commands/handlers/add-user-to-organization.handler.d.ts +0 -12
  1763. package/dist/src/organization/commands/handlers/add-user-to-organization.handler.js +0 -66
  1764. package/dist/src/organization/commands/handlers/add-user-to-organization.handler.js.map +0 -1
  1765. package/dist/src/organization/commands/handlers/index.d.ts +0 -2
  1766. package/dist/src/organization/commands/handlers/index.js.map +0 -1
  1767. package/dist/src/organization/commands/handlers/remove-user-from-organization.handler.d.ts +0 -11
  1768. package/dist/src/organization/commands/handlers/remove-user-from-organization.handler.js +0 -67
  1769. package/dist/src/organization/commands/handlers/remove-user-from-organization.handler.js.map +0 -1
  1770. package/dist/src/organization/commands/impl/add-user-to-organization.command.d.ts +0 -14
  1771. package/dist/src/organization/commands/impl/add-user-to-organization.command.js.map +0 -1
  1772. package/dist/src/organization/commands/impl/index.d.ts +0 -2
  1773. package/dist/src/organization/commands/impl/index.js.map +0 -1
  1774. package/dist/src/organization/commands/impl/remove-user-from-organization.command.js.map +0 -1
  1775. package/dist/src/organization/commands/index.d.ts +0 -2
  1776. package/dist/src/organization/commands/index.js.map +0 -1
  1777. package/dist/src/organization/organization.module.js +0 -24
  1778. package/dist/src/organization/organization.module.js.map +0 -1
  1779. package/dist/src/organization/queries/handlers/get-projects-by-organization-id.handler.d.ts +0 -17
  1780. package/dist/src/organization/queries/handlers/get-projects-by-organization-id.handler.js +0 -70
  1781. package/dist/src/organization/queries/handlers/get-projects-by-organization-id.handler.js.map +0 -1
  1782. package/dist/src/organization/queries/handlers/get-users-organization.handler.d.ts +0 -30
  1783. package/dist/src/organization/queries/handlers/get-users-organization.handler.js +0 -58
  1784. package/dist/src/organization/queries/handlers/get-users-organization.handler.js.map +0 -1
  1785. package/dist/src/organization/queries/handlers/index.d.ts +0 -1
  1786. package/dist/src/organization/queries/handlers/index.js.map +0 -1
  1787. package/dist/src/organization/queries/impl/get-projects-by-organization-id.query.d.ts +0 -17
  1788. package/dist/src/organization/queries/impl/get-projects-by-organization-id.query.js.map +0 -1
  1789. package/dist/src/organization/queries/impl/get-users-organization.query.d.ts +0 -19
  1790. package/dist/src/organization/queries/impl/get-users-organization.query.js.map +0 -1
  1791. package/dist/src/organization/queries/impl/index.d.ts +0 -2
  1792. package/dist/src/organization/queries/impl/index.js.map +0 -1
  1793. package/dist/src/organization/queries/index.d.ts +0 -3
  1794. package/dist/src/organization/queries/index.js.map +0 -1
  1795. package/dist/src/project/commands/handlers/add-user-to-project.handler.d.ts +0 -13
  1796. package/dist/src/project/commands/handlers/add-user-to-project.handler.js +0 -86
  1797. package/dist/src/project/commands/handlers/add-user-to-project.handler.js.map +0 -1
  1798. package/dist/src/project/commands/handlers/api-create-project.handler.d.ts +0 -8
  1799. package/dist/src/project/commands/handlers/api-create-project.handler.js.map +0 -1
  1800. package/dist/src/project/commands/handlers/create-project.handler.d.ts +0 -38
  1801. package/dist/src/project/commands/handlers/create-project.handler.js +0 -176
  1802. package/dist/src/project/commands/handlers/create-project.handler.js.map +0 -1
  1803. package/dist/src/project/commands/handlers/delete-project.handler.d.ts +0 -17
  1804. package/dist/src/project/commands/handlers/delete-project.handler.js +0 -73
  1805. package/dist/src/project/commands/handlers/delete-project.handler.js.map +0 -1
  1806. package/dist/src/project/commands/handlers/index.d.ts +0 -7
  1807. package/dist/src/project/commands/handlers/index.js.map +0 -1
  1808. package/dist/src/project/commands/handlers/remove-user-from-project.handler.d.ts +0 -11
  1809. package/dist/src/project/commands/handlers/remove-user-from-project.handler.js +0 -68
  1810. package/dist/src/project/commands/handlers/remove-user-from-project.handler.js.map +0 -1
  1811. package/dist/src/project/commands/handlers/update-project.handler.d.ts +0 -13
  1812. package/dist/src/project/commands/handlers/update-project.handler.js +0 -52
  1813. package/dist/src/project/commands/handlers/update-project.handler.js.map +0 -1
  1814. package/dist/src/project/commands/impl/add-user-to-project.command.d.ts +0 -16
  1815. package/dist/src/project/commands/impl/add-user-to-project.command.js.map +0 -1
  1816. package/dist/src/project/commands/impl/api-create-project.command.js.map +0 -1
  1817. package/dist/src/project/commands/impl/create-project.command.js.map +0 -1
  1818. package/dist/src/project/commands/impl/delete-project.command.js.map +0 -1
  1819. package/dist/src/project/commands/impl/index.d.ts +0 -6
  1820. package/dist/src/project/commands/impl/index.js.map +0 -1
  1821. package/dist/src/project/commands/impl/remove-user-from-project.command.js.map +0 -1
  1822. package/dist/src/project/commands/impl/update-project.command.js.map +0 -1
  1823. package/dist/src/project/project.module.js +0 -34
  1824. package/dist/src/project/project.module.js.map +0 -1
  1825. package/dist/src/project/queries/handlers/get-all-branches-by-project.handler.d.ts +0 -16
  1826. package/dist/src/project/queries/handlers/get-all-branches-by-project.handler.js +0 -47
  1827. package/dist/src/project/queries/handlers/get-all-branches-by-project.handler.js.map +0 -1
  1828. package/dist/src/project/queries/handlers/get-project-by-id.handler.d.ts +0 -14
  1829. package/dist/src/project/queries/handlers/get-project-by-id.handler.js +0 -31
  1830. package/dist/src/project/queries/handlers/get-project-by-id.handler.js.map +0 -1
  1831. package/dist/src/project/queries/handlers/get-project.handler.d.ts +0 -12
  1832. package/dist/src/project/queries/handlers/get-project.handler.js +0 -44
  1833. package/dist/src/project/queries/handlers/get-project.handler.js.map +0 -1
  1834. package/dist/src/project/queries/handlers/get-root-branch-by-project.handler.d.ts +0 -14
  1835. package/dist/src/project/queries/handlers/get-root-branch-by-project.handler.js +0 -31
  1836. package/dist/src/project/queries/handlers/get-root-branch-by-project.handler.js.map +0 -1
  1837. package/dist/src/project/queries/handlers/get-users-project.handler.d.ts +0 -30
  1838. package/dist/src/project/queries/handlers/get-users-project.handler.js +0 -61
  1839. package/dist/src/project/queries/handlers/get-users-project.handler.js.map +0 -1
  1840. package/dist/src/project/queries/handlers/index.d.ts +0 -6
  1841. package/dist/src/project/queries/handlers/index.js.map +0 -1
  1842. package/dist/src/project/queries/impl/get-all-branches-by-project.query.js.map +0 -1
  1843. package/dist/src/project/queries/impl/get-project-by-id.query.js.map +0 -1
  1844. package/dist/src/project/queries/impl/get-project.query.js.map +0 -1
  1845. package/dist/src/project/queries/impl/get-root-branch-by-project.query.js.map +0 -1
  1846. package/dist/src/project/queries/impl/get-users-project.query.d.ts +0 -21
  1847. package/dist/src/project/queries/impl/get-users-project.query.js.map +0 -1
  1848. package/dist/src/project/queries/impl/index.d.ts +0 -5
  1849. package/dist/src/project/queries/impl/index.js.map +0 -1
  1850. package/dist/src/rest-api/auth/auth.controller.d.ts +0 -13
  1851. package/dist/src/rest-api/auth/auth.controller.js +0 -86
  1852. package/dist/src/rest-api/auth/auth.controller.js.map +0 -1
  1853. package/dist/src/rest-api/auth/dto/create-user.dto.d.ts +0 -7
  1854. package/dist/src/rest-api/auth/dto/create-user.dto.js +0 -34
  1855. package/dist/src/rest-api/auth/dto/create-user.dto.js.map +0 -1
  1856. package/dist/src/rest-api/auth/dto/index.d.ts +0 -2
  1857. package/dist/src/rest-api/auth/dto/index.js.map +0 -1
  1858. package/dist/src/rest-api/auth/dto/login.dto.js.map +0 -1
  1859. package/dist/src/rest-api/auth/dto/update-password.dto.js.map +0 -1
  1860. package/dist/src/rest-api/auth/model/index.d.ts +0 -1
  1861. package/dist/src/rest-api/auth/model/index.js.map +0 -1
  1862. package/dist/src/rest-api/auth/model/login.response.js.map +0 -1
  1863. package/dist/src/rest-api/branch/branch-by-name.controller.d.ts +0 -19
  1864. package/dist/src/rest-api/branch/branch-by-name.controller.js +0 -225
  1865. package/dist/src/rest-api/branch/branch-by-name.controller.js.map +0 -1
  1866. package/dist/src/rest-api/branch/dto/create-branch-by-revision.dto.js.map +0 -1
  1867. package/dist/src/rest-api/branch/dto/create-revision.dto.js.map +0 -1
  1868. package/dist/src/rest-api/branch/dto/get-branch-revisions.dto.js.map +0 -1
  1869. package/dist/src/rest-api/branch/dto/index.d.ts +0 -3
  1870. package/dist/src/rest-api/branch/dto/index.js.map +0 -1
  1871. package/dist/src/rest-api/branch/model/branch.model.js.map +0 -1
  1872. package/dist/src/rest-api/branch/model/index.d.ts +0 -2
  1873. package/dist/src/rest-api/branch/model/index.js.map +0 -1
  1874. package/dist/src/rest-api/branch/model/parent-branch.response.js.map +0 -1
  1875. package/dist/src/rest-api/configuration/configuration.controller.d.ts +0 -7
  1876. package/dist/src/rest-api/configuration/configuration.controller.js +0 -42
  1877. package/dist/src/rest-api/configuration/configuration.controller.js.map +0 -1
  1878. package/dist/src/rest-api/configuration/model/configuration.response.js.map +0 -1
  1879. package/dist/src/rest-api/configuration/model/index.d.ts +0 -1
  1880. package/dist/src/rest-api/configuration/model/index.js.map +0 -1
  1881. package/dist/src/rest-api/endpoint/endpointByIdController.js +0 -60
  1882. package/dist/src/rest-api/endpoint/endpointByIdController.js.map +0 -1
  1883. package/dist/src/rest-api/endpoint/model/endpoint.model.js.map +0 -1
  1884. package/dist/src/rest-api/endpoint/model/index.d.ts +0 -1
  1885. package/dist/src/rest-api/endpoint/model/index.js.map +0 -1
  1886. package/dist/src/rest-api/organization/dto/add-user-to-organization.dto.d.ts +0 -5
  1887. package/dist/src/rest-api/organization/dto/add-user-to-organization.dto.js +0 -26
  1888. package/dist/src/rest-api/organization/dto/add-user-to-organization.dto.js.map +0 -1
  1889. package/dist/src/rest-api/organization/dto/create-project.dto.js.map +0 -1
  1890. package/dist/src/rest-api/organization/dto/get-projects.dto.js.map +0 -1
  1891. package/dist/src/rest-api/organization/dto/get-users-organization.dto.js.map +0 -1
  1892. package/dist/src/rest-api/organization/dto/index.d.ts +0 -5
  1893. package/dist/src/rest-api/organization/dto/index.js.map +0 -1
  1894. package/dist/src/rest-api/organization/dto/remove-user-from-organization.dto.js.map +0 -1
  1895. package/dist/src/rest-api/organization/model/index.d.ts +0 -3
  1896. package/dist/src/rest-api/organization/model/index.js.map +0 -1
  1897. package/dist/src/rest-api/organization/model/project.connection.js.map +0 -1
  1898. package/dist/src/rest-api/organization/model/users-organization.connection.js.map +0 -1
  1899. package/dist/src/rest-api/organization/model/users-organization.model.d.ts +0 -7
  1900. package/dist/src/rest-api/organization/model/users-organization.model.js.map +0 -1
  1901. package/dist/src/rest-api/organization/organization.controller.d.ts +0 -16
  1902. package/dist/src/rest-api/organization/organization.controller.js +0 -147
  1903. package/dist/src/rest-api/organization/organization.controller.js.map +0 -1
  1904. package/dist/src/rest-api/project/dto/add-user-to-project.dto.d.ts +0 -5
  1905. package/dist/src/rest-api/project/dto/add-user-to-project.dto.js +0 -26
  1906. package/dist/src/rest-api/project/dto/add-user-to-project.dto.js.map +0 -1
  1907. package/dist/src/rest-api/project/dto/get-project-branches.dto.js.map +0 -1
  1908. package/dist/src/rest-api/project/dto/get-users-project.dto.js.map +0 -1
  1909. package/dist/src/rest-api/project/dto/update-project.dto.js.map +0 -1
  1910. package/dist/src/rest-api/project/model/index.d.ts +0 -3
  1911. package/dist/src/rest-api/project/model/index.js.map +0 -1
  1912. package/dist/src/rest-api/project/model/project.model.js.map +0 -1
  1913. package/dist/src/rest-api/project/model/users-project.connection.js.map +0 -1
  1914. package/dist/src/rest-api/project/model/users-project.model.d.ts +0 -7
  1915. package/dist/src/rest-api/project/model/users-project.model.js.map +0 -1
  1916. package/dist/src/rest-api/project/project.controller.d.ts +0 -19
  1917. package/dist/src/rest-api/project/project.controller.js +0 -206
  1918. package/dist/src/rest-api/project/project.controller.js.map +0 -1
  1919. package/dist/src/rest-api/rest-api.module.js +0 -44
  1920. package/dist/src/rest-api/rest-api.module.js.map +0 -1
  1921. package/dist/src/rest-api/revision/dto/create-endpoint.dto.js.map +0 -1
  1922. package/dist/src/rest-api/revision/dto/create-table.dto.js.map +0 -1
  1923. package/dist/src/rest-api/revision/dto/get-revision-tables.dto.js.map +0 -1
  1924. package/dist/src/rest-api/revision/dto/index.d.ts +0 -3
  1925. package/dist/src/rest-api/revision/dto/index.js.map +0 -1
  1926. package/dist/src/rest-api/revision/model/child-branches.response.js.map +0 -1
  1927. package/dist/src/rest-api/revision/model/create-table.response.d.ts +0 -6
  1928. package/dist/src/rest-api/revision/model/create-table.response.js.map +0 -1
  1929. package/dist/src/rest-api/revision/model/index.d.ts +0 -2
  1930. package/dist/src/rest-api/revision/model/index.js.map +0 -1
  1931. package/dist/src/rest-api/revision/model/revision.model.js.map +0 -1
  1932. package/dist/src/rest-api/revision/revision-by-id.controller.d.ts +0 -21
  1933. package/dist/src/rest-api/revision/revision-by-id.controller.js +0 -213
  1934. package/dist/src/rest-api/revision/revision-by-id.controller.js.map +0 -1
  1935. package/dist/src/rest-api/role/model/index.d.ts +0 -1
  1936. package/dist/src/rest-api/role/model/index.js.map +0 -1
  1937. package/dist/src/rest-api/role/model/role.model.js.map +0 -1
  1938. package/dist/src/rest-api/row/dto/get-row-references-by.dto.js.map +0 -1
  1939. package/dist/src/rest-api/row/dto/get-row-references-to.dto.js.map +0 -1
  1940. package/dist/src/rest-api/row/dto/index.d.ts +0 -2
  1941. package/dist/src/rest-api/row/dto/index.js.map +0 -1
  1942. package/dist/src/rest-api/row/dto/update-row.dto.js.map +0 -1
  1943. package/dist/src/rest-api/row/model/index.d.ts +0 -3
  1944. package/dist/src/rest-api/row/model/index.js.map +0 -1
  1945. package/dist/src/rest-api/row/model/remove-row.response.d.ts +0 -7
  1946. package/dist/src/rest-api/row/model/remove-row.response.js.map +0 -1
  1947. package/dist/src/rest-api/row/model/row.model.js.map +0 -1
  1948. package/dist/src/rest-api/row/model/update-row.response.d.ts +0 -8
  1949. package/dist/src/rest-api/row/model/update-row.response.js.map +0 -1
  1950. package/dist/src/rest-api/row/row-by-id.controller.d.ts +0 -17
  1951. package/dist/src/rest-api/row/row-by-id.controller.js +0 -211
  1952. package/dist/src/rest-api/row/row-by-id.controller.js.map +0 -1
  1953. package/dist/src/rest-api/share/model/paginated.model.js.map +0 -1
  1954. package/dist/src/rest-api/share/utils/transformFromPrismaToBranchModel.d.ts +0 -3
  1955. package/dist/src/rest-api/share/utils/transformFromPrismaToBranchModel.js.map +0 -1
  1956. package/dist/src/rest-api/share/utils/transformFromPrismaToEndpointsModel.d.ts +0 -4
  1957. package/dist/src/rest-api/share/utils/transformFromPrismaToEndpointsModel.js.map +0 -1
  1958. package/dist/src/rest-api/share/utils/transformFromPrismaToRevisionModel.d.ts +0 -5
  1959. package/dist/src/rest-api/share/utils/transformFromPrismaToRevisionModel.js.map +0 -1
  1960. package/dist/src/rest-api/share/utils/transformFromPrismaToRowModel.d.ts +0 -5
  1961. package/dist/src/rest-api/share/utils/transformFromPrismaToRowModel.js.map +0 -1
  1962. package/dist/src/rest-api/share/utils/transformFromPrismaToTableModel.d.ts +0 -5
  1963. package/dist/src/rest-api/share/utils/transformFromPrismaToTableModel.js.map +0 -1
  1964. package/dist/src/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.d.ts +0 -5
  1965. package/dist/src/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.js.map +0 -1
  1966. package/dist/src/rest-api/share/utils/transformFromPrismaToUserProjectModel.d.ts +0 -5
  1967. package/dist/src/rest-api/share/utils/transformFromPrismaToUserProjectModel.js.map +0 -1
  1968. package/dist/src/rest-api/table/dto/create-row.dto.js.map +0 -1
  1969. package/dist/src/rest-api/table/dto/get-table-references-by.dto.js.map +0 -1
  1970. package/dist/src/rest-api/table/dto/get-table-references-to.dto.js.map +0 -1
  1971. package/dist/src/rest-api/table/dto/get-table-rows.dto.js.map +0 -1
  1972. package/dist/src/rest-api/table/dto/index.d.ts +0 -5
  1973. package/dist/src/rest-api/table/dto/index.js.map +0 -1
  1974. package/dist/src/rest-api/table/dto/update-table.dto.d.ts +0 -4
  1975. package/dist/src/rest-api/table/dto/update-table.dto.js.map +0 -1
  1976. package/dist/src/rest-api/table/model/create-row.response.d.ts +0 -6
  1977. package/dist/src/rest-api/table/model/create-row.response.js.map +0 -1
  1978. package/dist/src/rest-api/table/model/index.d.ts +0 -1
  1979. package/dist/src/rest-api/table/model/index.js.map +0 -1
  1980. package/dist/src/rest-api/table/model/table.model.js.map +0 -1
  1981. package/dist/src/rest-api/table/model/update-table.response.d.ts +0 -5
  1982. package/dist/src/rest-api/table/model/update-table.response.js.map +0 -1
  1983. package/dist/src/rest-api/table/table-by-id.controller.d.ts +0 -23
  1984. package/dist/src/rest-api/table/table-by-id.controller.js +0 -264
  1985. package/dist/src/rest-api/table/table-by-id.controller.js.map +0 -1
  1986. package/dist/src/rest-api/user/model/index.d.ts +0 -1
  1987. package/dist/src/rest-api/user/model/index.js.map +0 -1
  1988. package/dist/src/rest-api/user/model/user.model.js.map +0 -1
  1989. package/dist/src/rest-api/user/user.controller.d.ts +0 -10
  1990. package/dist/src/rest-api/user/user.controller.js +0 -49
  1991. package/dist/src/rest-api/user/user.controller.js.map +0 -1
  1992. package/dist/src/revision/queries/commands/get-children-by-revision.handler.d.ts +0 -19
  1993. package/dist/src/revision/queries/commands/get-children-by-revision.handler.js +0 -31
  1994. package/dist/src/revision/queries/commands/get-children-by-revision.handler.js.map +0 -1
  1995. package/dist/src/revision/queries/commands/get-endpoints-by-revision-id.handler.d.ts +0 -9
  1996. package/dist/src/revision/queries/commands/get-endpoints-by-revision-id.handler.js +0 -31
  1997. package/dist/src/revision/queries/commands/get-endpoints-by-revision-id.handler.js.map +0 -1
  1998. package/dist/src/revision/queries/commands/get-revision.handler.d.ts +0 -19
  1999. package/dist/src/revision/queries/commands/get-revision.handler.js +0 -31
  2000. package/dist/src/revision/queries/commands/get-revision.handler.js.map +0 -1
  2001. package/dist/src/revision/queries/commands/get-tables-by-revision-id.handler.d.ts +0 -20
  2002. package/dist/src/revision/queries/commands/get-tables-by-revision-id.handler.js +0 -65
  2003. package/dist/src/revision/queries/commands/get-tables-by-revision-id.handler.js.map +0 -1
  2004. package/dist/src/revision/queries/commands/index.d.ts +0 -9
  2005. package/dist/src/revision/queries/commands/index.js.map +0 -1
  2006. package/dist/src/revision/queries/commands/resolve-branch-by-revision.handler.d.ts +0 -14
  2007. package/dist/src/revision/queries/commands/resolve-branch-by-revision.handler.js +0 -31
  2008. package/dist/src/revision/queries/commands/resolve-branch-by-revision.handler.js.map +0 -1
  2009. package/dist/src/revision/queries/commands/resolve-child-branches-by-revision.handler.d.ts +0 -17
  2010. package/dist/src/revision/queries/commands/resolve-child-branches-by-revision.handler.js +0 -53
  2011. package/dist/src/revision/queries/commands/resolve-child-branches-by-revision.handler.js.map +0 -1
  2012. package/dist/src/revision/queries/commands/resolve-child-by-revision.handler.d.ts +0 -21
  2013. package/dist/src/revision/queries/commands/resolve-child-by-revision.handler.js +0 -41
  2014. package/dist/src/revision/queries/commands/resolve-child-by-revision.handler.js.map +0 -1
  2015. package/dist/src/revision/queries/commands/resolve-parent-by-revision.handler.d.ts +0 -19
  2016. package/dist/src/revision/queries/commands/resolve-parent-by-revision.handler.js +0 -31
  2017. package/dist/src/revision/queries/commands/resolve-parent-by-revision.handler.js.map +0 -1
  2018. package/dist/src/revision/queries/impl/get-children-by-revision.query.js.map +0 -1
  2019. package/dist/src/revision/queries/impl/get-endpoints-by-revision-id.query.js.map +0 -1
  2020. package/dist/src/revision/queries/impl/get-revision.query.d.ts +0 -8
  2021. package/dist/src/revision/queries/impl/get-revision.query.js.map +0 -1
  2022. package/dist/src/revision/queries/impl/get-tables-by-revision-id.query.js.map +0 -1
  2023. package/dist/src/revision/queries/impl/index.d.ts +0 -7
  2024. package/dist/src/revision/queries/impl/index.js.map +0 -1
  2025. package/dist/src/revision/queries/impl/resolve-branch-by-revision.query.js.map +0 -1
  2026. package/dist/src/revision/queries/impl/resolve-child-branches-by-revision.query.js.map +0 -1
  2027. package/dist/src/revision/queries/impl/resolve-child-by-revision.query.js.map +0 -1
  2028. package/dist/src/revision/queries/impl/resolve-parent-by-revision.query.js.map +0 -1
  2029. package/dist/src/revision/queries/types/get-endpoints-by-revision-id.js.map +0 -1
  2030. package/dist/src/revision/queries/types/get-revision-tables.types.d.ts +0 -3
  2031. package/dist/src/revision/queries/types/get-revision-tables.types.js.map +0 -1
  2032. package/dist/src/revision/queries/types/get-tables-by-revision-id.js.map +0 -1
  2033. package/dist/src/revision/queries/types/index.d.ts +0 -4
  2034. package/dist/src/revision/queries/types/index.js.map +0 -1
  2035. package/dist/src/revision/revision.module.js +0 -25
  2036. package/dist/src/revision/revision.module.js.map +0 -1
  2037. package/dist/src/row/queries/handlers/get-row-by-id.handler.d.ts +0 -19
  2038. package/dist/src/row/queries/handlers/get-row-by-id.handler.js +0 -43
  2039. package/dist/src/row/queries/handlers/get-row-by-id.handler.js.map +0 -1
  2040. package/dist/src/row/queries/handlers/get-row.handler.d.ts +0 -14
  2041. package/dist/src/row/queries/handlers/get-row.handler.js +0 -59
  2042. package/dist/src/row/queries/handlers/get-row.handler.js.map +0 -1
  2043. package/dist/src/row/queries/handlers/get-rows.handler.d.ts +0 -15
  2044. package/dist/src/row/queries/handlers/get-rows.handler.js +0 -71
  2045. package/dist/src/row/queries/handlers/get-rows.handler.js.map +0 -1
  2046. package/dist/src/row/queries/handlers/index.d.ts +0 -8
  2047. package/dist/src/row/queries/handlers/index.js.map +0 -1
  2048. package/dist/src/row/queries/handlers/resolve-row-count-references-by.handler.d.ts +0 -16
  2049. package/dist/src/row/queries/handlers/resolve-row-count-references-by.handler.js +0 -67
  2050. package/dist/src/row/queries/handlers/resolve-row-count-references-by.handler.js.map +0 -1
  2051. package/dist/src/row/queries/handlers/resolve-row-count-references-to.handler.d.ts +0 -14
  2052. package/dist/src/row/queries/handlers/resolve-row-count-references-to.handler.js +0 -59
  2053. package/dist/src/row/queries/handlers/resolve-row-count-references-to.handler.js.map +0 -1
  2054. package/dist/src/row/queries/handlers/resolve-row-references-by.handler.d.ts +0 -28
  2055. package/dist/src/row/queries/handlers/resolve-row-references-by.handler.js +0 -78
  2056. package/dist/src/row/queries/handlers/resolve-row-references-by.handler.js.map +0 -1
  2057. package/dist/src/row/queries/handlers/resolve-row-references-to.handler.d.ts +0 -28
  2058. package/dist/src/row/queries/handlers/resolve-row-references-to.handler.js +0 -91
  2059. package/dist/src/row/queries/handlers/resolve-row-references-to.handler.js.map +0 -1
  2060. package/dist/src/row/queries/impl/get-row-by-id.query.js.map +0 -1
  2061. package/dist/src/row/queries/impl/get-row.query.js.map +0 -1
  2062. package/dist/src/row/queries/impl/get-rows.query.js.map +0 -1
  2063. package/dist/src/row/queries/impl/index.d.ts +0 -7
  2064. package/dist/src/row/queries/impl/index.js.map +0 -1
  2065. package/dist/src/row/queries/impl/resolve-row-count-references-by.query.js.map +0 -1
  2066. package/dist/src/row/queries/impl/resolve-row-count-references-to.query.js.map +0 -1
  2067. package/dist/src/row/queries/impl/resolve-row-references-by.query.js.map +0 -1
  2068. package/dist/src/row/queries/impl/resolve-row-references-to.query.js.map +0 -1
  2069. package/dist/src/row/queries/types/get-row-by-id.types.d.ts +0 -2
  2070. package/dist/src/row/queries/types/get-row-by-id.types.js.map +0 -1
  2071. package/dist/src/row/queries/types/get-row.types.d.ts +0 -2
  2072. package/dist/src/row/queries/types/get-row.types.js.map +0 -1
  2073. package/dist/src/row/queries/types/get-rows.types.d.ts +0 -3
  2074. package/dist/src/row/queries/types/get-rows.types.js.map +0 -1
  2075. package/dist/src/row/queries/types/index.d.ts +0 -5
  2076. package/dist/src/row/queries/types/index.js.map +0 -1
  2077. package/dist/src/row/queries/types/resolve-row-references-by.types.d.ts +0 -3
  2078. package/dist/src/row/queries/types/resolve-row-references-by.types.js.map +0 -1
  2079. package/dist/src/row/queries/types/resolve-row-references-to.types.d.ts +0 -3
  2080. package/dist/src/row/queries/types/resolve-row-references-to.types.js.map +0 -1
  2081. package/dist/src/row/row.module.js +0 -24
  2082. package/dist/src/row/row.module.js.map +0 -1
  2083. package/dist/src/share/commands/handlers/index.d.ts +0 -3
  2084. package/dist/src/share/commands/handlers/index.js.map +0 -1
  2085. package/dist/src/share/commands/handlers/notify-endpoints.handler.d.ts +0 -12
  2086. package/dist/src/share/commands/handlers/notify-endpoints.handler.js +0 -46
  2087. package/dist/src/share/commands/handlers/notify-endpoints.handler.js.map +0 -1
  2088. package/dist/src/share/commands/handlers/transactional/move-endpoints.handler.d.ts +0 -11
  2089. package/dist/src/share/commands/handlers/transactional/move-endpoints.handler.js +0 -56
  2090. package/dist/src/share/commands/handlers/transactional/move-endpoints.handler.js.map +0 -1
  2091. package/dist/src/share/commands/impl/index.d.ts +0 -2
  2092. package/dist/src/share/commands/impl/index.js.map +0 -1
  2093. package/dist/src/share/commands/impl/notify-endpoints.command.js.map +0 -1
  2094. package/dist/src/share/commands/impl/transactional/move-endpoints.command.js.map +0 -1
  2095. package/dist/src/share/commands/utils/getOffsetPagination.d.ts +0 -18
  2096. package/dist/src/share/commands/utils/getOffsetPagination.js +0 -37
  2097. package/dist/src/share/commands/utils/getOffsetPagination.js.map +0 -1
  2098. package/dist/src/share/commands/utils/getRevisionCursorPagination.d.ts +0 -29
  2099. package/dist/src/share/commands/utils/getRevisionCursorPagination.js +0 -70
  2100. package/dist/src/share/commands/utils/getRevisionCursorPagination.js.map +0 -1
  2101. package/dist/src/share/const.d.ts +0 -2
  2102. package/dist/src/share/const.js.map +0 -1
  2103. package/dist/src/share/pagination.interface.js.map +0 -1
  2104. package/dist/src/share/queries/handlers/index.d.ts +0 -9
  2105. package/dist/src/share/queries/handlers/index.js.map +0 -1
  2106. package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.d.ts +0 -10
  2107. package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js +0 -44
  2108. package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js.map +0 -1
  2109. package/dist/src/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.d.ts +0 -10
  2110. package/dist/src/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.js +0 -39
  2111. package/dist/src/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.js.map +0 -1
  2112. package/dist/src/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.d.ts +0 -10
  2113. package/dist/src/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.js +0 -39
  2114. package/dist/src/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.js.map +0 -1
  2115. package/dist/src/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.d.ts +0 -10
  2116. package/dist/src/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.js +0 -44
  2117. package/dist/src/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.js.map +0 -1
  2118. package/dist/src/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.d.ts +0 -10
  2119. package/dist/src/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.js +0 -42
  2120. package/dist/src/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.js.map +0 -1
  2121. package/dist/src/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.d.ts +0 -10
  2122. package/dist/src/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.js +0 -42
  2123. package/dist/src/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.js.map +0 -1
  2124. package/dist/src/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.d.ts +0 -10
  2125. package/dist/src/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.js +0 -42
  2126. package/dist/src/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.js.map +0 -1
  2127. package/dist/src/share/queries/handlers/transactional/get-table-schema.handler.d.ts +0 -11
  2128. package/dist/src/share/queries/handlers/transactional/get-table-schema.handler.js +0 -57
  2129. package/dist/src/share/queries/handlers/transactional/get-table-schema.handler.js.map +0 -1
  2130. package/dist/src/share/queries/impl/index.d.ts +0 -7
  2131. package/dist/src/share/queries/impl/index.js.map +0 -1
  2132. package/dist/src/share/queries/impl/transactional/find-branch-in-project-or-throw.query.js.map +0 -1
  2133. package/dist/src/share/queries/impl/transactional/find-draft-revision-in-branch-or-throw.query.js.map +0 -1
  2134. package/dist/src/share/queries/impl/transactional/find-head-revision-in-branch-or-throw.query.js.map +0 -1
  2135. package/dist/src/share/queries/impl/transactional/find-project-in-organization-or-throw.query.js.map +0 -1
  2136. package/dist/src/share/queries/impl/transactional/find-row-in-table-or-throw.query.js.map +0 -1
  2137. package/dist/src/share/queries/impl/transactional/find-rows-in-table-or-throw.query.js.map +0 -1
  2138. package/dist/src/share/queries/impl/transactional/find-table-in-revision-or-throw.query.js.map +0 -1
  2139. package/dist/src/share/queries/impl/transactional/get-table-schema.query.js.map +0 -1
  2140. package/dist/src/share/queries/types/find-branch-in-project.types.js.map +0 -1
  2141. package/dist/src/share/queries/types/find-draft-revision-in-branch.types.js.map +0 -1
  2142. package/dist/src/share/queries/types/find-head-revision-in-branch.types.js.map +0 -1
  2143. package/dist/src/share/queries/types/find-project-in-organization.types.js.map +0 -1
  2144. package/dist/src/share/queries/types/find-row-in-table.types.js.map +0 -1
  2145. package/dist/src/share/queries/types/find-rows-in-table.types.js.map +0 -1
  2146. package/dist/src/share/queries/types/find-table-in-revision.types.js.map +0 -1
  2147. package/dist/src/share/queries/types/index.d.ts +0 -7
  2148. package/dist/src/share/queries/types/index.js.map +0 -1
  2149. package/dist/src/share/references.service.d.ts +0 -22
  2150. package/dist/src/share/references.service.js +0 -94
  2151. package/dist/src/share/references.service.js.map +0 -1
  2152. package/dist/src/share/schema/consts.js.map +0 -1
  2153. package/dist/src/share/schema/json-patch-schema.js +0 -71
  2154. package/dist/src/share/schema/json-patch-schema.js.map +0 -1
  2155. package/dist/src/share/schema/meta-schema.js +0 -143
  2156. package/dist/src/share/schema/meta-schema.js.map +0 -1
  2157. package/dist/src/share/share.commands.d.ts +0 -8
  2158. package/dist/src/share/share.commands.js.map +0 -1
  2159. package/dist/src/share/share.module.js +0 -42
  2160. package/dist/src/share/share.module.js.map +0 -1
  2161. package/dist/src/share/share.transactional.commands.d.ts +0 -9
  2162. package/dist/src/share/share.transactional.commands.js.map +0 -1
  2163. package/dist/src/share/share.transactional.queries.d.ts +0 -15
  2164. package/dist/src/share/share.transactional.queries.js.map +0 -1
  2165. package/dist/src/share/system-organizations.consts.js.map +0 -1
  2166. package/dist/src/share/system-tables.consts.js.map +0 -1
  2167. package/dist/src/share/types/row-with-context.types.js.map +0 -1
  2168. package/dist/src/share/types/table-with-context.types.js.map +0 -1
  2169. package/dist/src/share/types.js.map +0 -1
  2170. package/dist/src/share/utils/index.d.ts +0 -1
  2171. package/dist/src/share/utils/index.js.map +0 -1
  2172. package/dist/src/share/utils/schema/lib/applyPatches.d.ts +0 -6
  2173. package/dist/src/share/utils/schema/lib/applyPatches.js.map +0 -1
  2174. package/dist/src/share/utils/schema/lib/createJsonSchemaStore.d.ts +0 -6
  2175. package/dist/src/share/utils/schema/lib/createJsonSchemaStore.js.map +0 -1
  2176. package/dist/src/share/utils/schema/lib/createJsonValueStore.d.ts +0 -11
  2177. package/dist/src/share/utils/schema/lib/createJsonValueStore.js.map +0 -1
  2178. package/dist/src/share/utils/schema/lib/getJsonSchemaStoreByPath.d.ts +0 -2
  2179. package/dist/src/share/utils/schema/lib/getJsonSchemaStoreByPath.js.map +0 -1
  2180. package/dist/src/share/utils/schema/lib/getParentForPath.js.map +0 -1
  2181. package/dist/src/share/utils/schema/lib/getPathByStore.d.ts +0 -2
  2182. package/dist/src/share/utils/schema/lib/getPathByStore.js.map +0 -1
  2183. package/dist/src/share/utils/schema/lib/getReferencesFromSchema.d.ts +0 -2
  2184. package/dist/src/share/utils/schema/lib/getReferencesFromSchema.js +0 -16
  2185. package/dist/src/share/utils/schema/lib/getReferencesFromSchema.js.map +0 -1
  2186. package/dist/src/share/utils/schema/lib/getReferencesFromValue.d.ts +0 -6
  2187. package/dist/src/share/utils/schema/lib/getReferencesFromValue.js +0 -24
  2188. package/dist/src/share/utils/schema/lib/getReferencesFromValue.js.map +0 -1
  2189. package/dist/src/share/utils/schema/lib/getValuePathByStore.d.ts +0 -2
  2190. package/dist/src/share/utils/schema/lib/getValuePathByStore.js.map +0 -1
  2191. package/dist/src/share/utils/schema/lib/schema-table.d.ts +0 -17
  2192. package/dist/src/share/utils/schema/lib/schema-table.js +0 -69
  2193. package/dist/src/share/utils/schema/lib/schema-table.js.map +0 -1
  2194. package/dist/src/share/utils/schema/lib/traverseStore.d.ts +0 -2
  2195. package/dist/src/share/utils/schema/lib/traverseStore.js.map +0 -1
  2196. package/dist/src/share/utils/schema/lib/traverseValue.d.ts +0 -2
  2197. package/dist/src/share/utils/schema/lib/traverseValue.js.map +0 -1
  2198. package/dist/src/share/utils/schema/model/schema/json-array.store.d.ts +0 -30
  2199. package/dist/src/share/utils/schema/model/schema/json-array.store.js.map +0 -1
  2200. package/dist/src/share/utils/schema/model/schema/json-boolean.store.d.ts +0 -17
  2201. package/dist/src/share/utils/schema/model/schema/json-boolean.store.js.map +0 -1
  2202. package/dist/src/share/utils/schema/model/schema/json-number.store.d.ts +0 -17
  2203. package/dist/src/share/utils/schema/model/schema/json-number.store.js.map +0 -1
  2204. package/dist/src/share/utils/schema/model/schema/json-object.store.d.ts +0 -45
  2205. package/dist/src/share/utils/schema/model/schema/json-object.store.js +0 -142
  2206. package/dist/src/share/utils/schema/model/schema/json-object.store.js.map +0 -1
  2207. package/dist/src/share/utils/schema/model/schema/json-schema.store.d.ts +0 -7
  2208. package/dist/src/share/utils/schema/model/schema/json-schema.store.js.map +0 -1
  2209. package/dist/src/share/utils/schema/model/schema/json-string.store.d.ts +0 -18
  2210. package/dist/src/share/utils/schema/model/schema/json-string.store.js.map +0 -1
  2211. package/dist/src/share/utils/schema/model/value/json-array-value.store.d.ts +0 -16
  2212. package/dist/src/share/utils/schema/model/value/json-array-value.store.js.map +0 -1
  2213. package/dist/src/share/utils/schema/model/value/json-boolean-value.store.d.ts +0 -11
  2214. package/dist/src/share/utils/schema/model/value/json-boolean-value.store.js.map +0 -1
  2215. package/dist/src/share/utils/schema/model/value/json-number-value.store.d.ts +0 -11
  2216. package/dist/src/share/utils/schema/model/value/json-number-value.store.js.map +0 -1
  2217. package/dist/src/share/utils/schema/model/value/json-object-value.store.d.ts +0 -19
  2218. package/dist/src/share/utils/schema/model/value/json-object-value.store.js.map +0 -1
  2219. package/dist/src/share/utils/schema/model/value/json-string-value.store.d.ts +0 -12
  2220. package/dist/src/share/utils/schema/model/value/json-string-value.store.js.map +0 -1
  2221. package/dist/src/share/utils/schema/model/value/json-value.store.d.ts +0 -7
  2222. package/dist/src/share/utils/schema/model/value/json-value.store.js.map +0 -1
  2223. package/dist/src/share/utils/schema/model/value/value-transformation.d.ts +0 -13
  2224. package/dist/src/share/utils/schema/model/value/value-transformation.js +0 -110
  2225. package/dist/src/share/utils/schema/model/value/value-transformation.js.map +0 -1
  2226. package/dist/src/share/utils/schema/types/json-patch.types.d.ts +0 -21
  2227. package/dist/src/share/utils/schema/types/json-patch.types.js.map +0 -1
  2228. package/dist/src/share/utils/schema/types/json.types.js.map +0 -1
  2229. package/dist/src/share/utils/schema/types/schema.types.js.map +0 -1
  2230. package/dist/src/share/utils/sort-revisions/sort-revisions.js +0 -36
  2231. package/dist/src/share/utils/sort-revisions/sort-revisions.js.map +0 -1
  2232. package/dist/src/table/queries/handlers/get-count-rows-in-table.handler.d.ts +0 -8
  2233. package/dist/src/table/queries/handlers/get-count-rows-in-table.handler.js +0 -33
  2234. package/dist/src/table/queries/handlers/get-count-rows-in-table.handler.js.map +0 -1
  2235. package/dist/src/table/queries/handlers/get-rows-by-table.handler.d.ts +0 -22
  2236. package/dist/src/table/queries/handlers/get-rows-by-table.handler.js +0 -59
  2237. package/dist/src/table/queries/handlers/get-rows-by-table.handler.js.map +0 -1
  2238. package/dist/src/table/queries/handlers/get-table-by-id.handler.d.ts +0 -18
  2239. package/dist/src/table/queries/handlers/get-table-by-id.handler.js +0 -42
  2240. package/dist/src/table/queries/handlers/get-table-by-id.handler.js.map +0 -1
  2241. package/dist/src/table/queries/handlers/get-table.handler.d.ts +0 -14
  2242. package/dist/src/table/queries/handlers/get-table.handler.js +0 -58
  2243. package/dist/src/table/queries/handlers/get-table.handler.js.map +0 -1
  2244. package/dist/src/table/queries/handlers/get-tables.handler.d.ts +0 -11
  2245. package/dist/src/table/queries/handlers/get-tables.handler.js +0 -67
  2246. package/dist/src/table/queries/handlers/get-tables.handler.js.map +0 -1
  2247. package/dist/src/table/queries/handlers/index.d.ts +0 -11
  2248. package/dist/src/table/queries/handlers/index.js.map +0 -1
  2249. package/dist/src/table/queries/handlers/resolve-table-count-references-by.handler.d.ts +0 -15
  2250. package/dist/src/table/queries/handlers/resolve-table-count-references-by.handler.js +0 -54
  2251. package/dist/src/table/queries/handlers/resolve-table-count-references-by.handler.js.map +0 -1
  2252. package/dist/src/table/queries/handlers/resolve-table-count-references-to.handler.d.ts +0 -12
  2253. package/dist/src/table/queries/handlers/resolve-table-count-references-to.handler.js +0 -51
  2254. package/dist/src/table/queries/handlers/resolve-table-count-references-to.handler.js.map +0 -1
  2255. package/dist/src/table/queries/handlers/resolve-table-references-by.handler.d.ts +0 -17
  2256. package/dist/src/table/queries/handlers/resolve-table-references-by.handler.js +0 -80
  2257. package/dist/src/table/queries/handlers/resolve-table-references-by.handler.js.map +0 -1
  2258. package/dist/src/table/queries/handlers/resolve-table-references-to.handler.d.ts +0 -14
  2259. package/dist/src/table/queries/handlers/resolve-table-references-to.handler.js +0 -78
  2260. package/dist/src/table/queries/handlers/resolve-table-references-to.handler.js.map +0 -1
  2261. package/dist/src/table/queries/handlers/resolve-table-schema.handler.d.ts +0 -13
  2262. package/dist/src/table/queries/handlers/resolve-table-schema.handler.js +0 -46
  2263. package/dist/src/table/queries/handlers/resolve-table-schema.handler.js.map +0 -1
  2264. package/dist/src/table/queries/impl/get-count-rows-in-table.query.js.map +0 -1
  2265. package/dist/src/table/queries/impl/get-rows-by-table.query.js.map +0 -1
  2266. package/dist/src/table/queries/impl/get-table-by-id.query.js.map +0 -1
  2267. package/dist/src/table/queries/impl/get-table.query.js.map +0 -1
  2268. package/dist/src/table/queries/impl/get-tables.query.js.map +0 -1
  2269. package/dist/src/table/queries/impl/index.d.ts +0 -6
  2270. package/dist/src/table/queries/impl/index.js.map +0 -1
  2271. package/dist/src/table/queries/impl/resolve-table-count-references-by.query.js.map +0 -1
  2272. package/dist/src/table/queries/impl/resolve-table-count-references-to.query.js.map +0 -1
  2273. package/dist/src/table/queries/impl/resolve-table-references-by.query.js.map +0 -1
  2274. package/dist/src/table/queries/impl/resolve-table-references-to.query.js.map +0 -1
  2275. package/dist/src/table/queries/impl/resolve-table-schema.query.js.map +0 -1
  2276. package/dist/src/table/queries/types/get-table-by-id.types.d.ts +0 -2
  2277. package/dist/src/table/queries/types/get-table-by-id.types.js.map +0 -1
  2278. package/dist/src/table/queries/types/get-table-rows.types.d.ts +0 -3
  2279. package/dist/src/table/queries/types/get-table-rows.types.js.map +0 -1
  2280. package/dist/src/table/queries/types/get-table.types.d.ts +0 -2
  2281. package/dist/src/table/queries/types/get-table.types.js.map +0 -1
  2282. package/dist/src/table/queries/types/get-tables.types.d.ts +0 -3
  2283. package/dist/src/table/queries/types/get-tables.types.js.map +0 -1
  2284. package/dist/src/table/queries/types/index.d.ts +0 -6
  2285. package/dist/src/table/queries/types/index.js.map +0 -1
  2286. package/dist/src/table/queries/types/resolve-table-references-by.types.d.ts +0 -3
  2287. package/dist/src/table/queries/types/resolve-table-references-by.types.js.map +0 -1
  2288. package/dist/src/table/queries/types/resolve-table-references-to.types.d.ts +0 -3
  2289. package/dist/src/table/queries/types/resolve-table-references-to.types.js.map +0 -1
  2290. package/dist/src/table/table.module.js +0 -31
  2291. package/dist/src/table/table.module.js.map +0 -1
  2292. package/dist/src/user/commands/handlers/index.d.ts +0 -2
  2293. package/dist/src/user/commands/handlers/index.js.map +0 -1
  2294. package/dist/src/user/commands/handlers/set-username.handler.d.ts +0 -14
  2295. package/dist/src/user/commands/handlers/set-username.handler.js +0 -101
  2296. package/dist/src/user/commands/handlers/set-username.handler.js.map +0 -1
  2297. package/dist/src/user/commands/handlers/update-password.handler.d.ts +0 -12
  2298. package/dist/src/user/commands/handlers/update-password.handler.js +0 -59
  2299. package/dist/src/user/commands/handlers/update-password.handler.js.map +0 -1
  2300. package/dist/src/user/commands/impl/index.d.ts +0 -2
  2301. package/dist/src/user/commands/impl/index.js.map +0 -1
  2302. package/dist/src/user/commands/impl/set-username.command.js.map +0 -1
  2303. package/dist/src/user/commands/impl/update-password.command.js.map +0 -1
  2304. package/dist/src/user/commands/index.d.ts +0 -2
  2305. package/dist/src/user/commands/index.js.map +0 -1
  2306. package/dist/src/user/queries/handlers/get-projects-by-user-id.handler.d.ts +0 -19
  2307. package/dist/src/user/queries/handlers/get-projects-by-user-id.handler.js +0 -78
  2308. package/dist/src/user/queries/handlers/get-projects-by-user-id.handler.js.map +0 -1
  2309. package/dist/src/user/queries/handlers/get-user-organization.handler.d.ts +0 -8
  2310. package/dist/src/user/queries/handlers/get-user-organization.handler.js +0 -39
  2311. package/dist/src/user/queries/handlers/get-user-organization.handler.js.map +0 -1
  2312. package/dist/src/user/queries/handlers/get-user.handler.d.ts +0 -12
  2313. package/dist/src/user/queries/handlers/get-user.handler.js +0 -36
  2314. package/dist/src/user/queries/handlers/get-user.handler.js.map +0 -1
  2315. package/dist/src/user/queries/handlers/index.d.ts +0 -3
  2316. package/dist/src/user/queries/handlers/index.js.map +0 -1
  2317. package/dist/src/user/queries/impl/get-projects-by-user-id.query.d.ts +0 -15
  2318. package/dist/src/user/queries/impl/get-projects-by-user-id.query.js.map +0 -1
  2319. package/dist/src/user/queries/impl/get-user-organization.query.js.map +0 -1
  2320. package/dist/src/user/queries/impl/get-user.query.js.map +0 -1
  2321. package/dist/src/user/queries/impl/index.d.ts +0 -3
  2322. package/dist/src/user/queries/impl/index.js.map +0 -1
  2323. package/dist/src/user/queries/index.d.ts +0 -2
  2324. package/dist/src/user/queries/index.js.map +0 -1
  2325. package/dist/src/user/user.module.js +0 -25
  2326. package/dist/src/user/user.module.js.map +0 -1
  2327. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/confirm-email-code.input.d.ts +0 -0
  2328. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/confirm-email-code.input.js +0 -0
  2329. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/index.js +0 -0
  2330. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login-github.input.d.ts +0 -0
  2331. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login-github.input.js +0 -0
  2332. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login-google.input.d.ts +0 -0
  2333. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login-google.input.js +0 -0
  2334. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login.input.d.ts +0 -0
  2335. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login.input.js +0 -0
  2336. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/sign-up.input.d.ts +0 -0
  2337. /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/sign-up.input.js +0 -0
  2338. /package/dist/src/{graphql-api → api/graphql-api}/auth/model/index.js +0 -0
  2339. /package/dist/src/{graphql-api → api/graphql-api}/auth/model/login.model.d.ts +0 -0
  2340. /package/dist/src/{graphql-api → api/graphql-api}/auth/model/login.model.js +0 -0
  2341. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/create-branch-by-revision-id.input.d.ts +0 -0
  2342. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/create-branch-by-revision-id.input.js +0 -0
  2343. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/create-branch.input.d.ts +0 -0
  2344. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/create-branch.input.js +0 -0
  2345. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branch-revisions.input.d.ts +0 -0
  2346. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branch-revisions.input.js +0 -0
  2347. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branch.input.d.ts +0 -0
  2348. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branch.input.js +0 -0
  2349. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branches.input.d.ts +0 -0
  2350. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branches.input.js +0 -0
  2351. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/index.js +0 -0
  2352. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/revert-changes.input.d.ts +0 -0
  2353. /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/revert-changes.input.js +0 -0
  2354. /package/dist/src/{graphql-api → api/graphql-api}/branch/model/branch.model.js +0 -0
  2355. /package/dist/src/{graphql-api → api/graphql-api}/branch/model/parent-branch.model.js +0 -0
  2356. /package/dist/src/{graphql-api → api/graphql-api}/configuration/model/configuration.model.d.ts +0 -0
  2357. /package/dist/src/{graphql-api → api/graphql-api}/configuration/model/configuration.model.js +0 -0
  2358. /package/dist/src/{graphql-api → api/graphql-api}/configuration/model/index.js +0 -0
  2359. /package/dist/src/{graphql-api → api/graphql-api}/current-user.decorator.d.ts +0 -0
  2360. /package/dist/src/{graphql-api → api/graphql-api}/current-user.decorator.js +0 -0
  2361. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/create-row.input.js +0 -0
  2362. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/create-table.input.d.ts +0 -0
  2363. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/create-table.input.js +0 -0
  2364. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/index.js +0 -0
  2365. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/remove-row.input.js +0 -0
  2366. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/remove-table.input.d.ts +0 -0
  2367. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/remove-table.input.js +0 -0
  2368. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/update-row.input.js +0 -0
  2369. /package/dist/src/{graphql-api → api/graphql-api}/draft/input/update-table.input.js +0 -0
  2370. /package/dist/src/{graphql-api → api/graphql-api}/draft/model/create-row-result.model.js +0 -0
  2371. /package/dist/src/{graphql-api → api/graphql-api}/draft/model/create-table-result.model.js +0 -0
  2372. /package/dist/src/{graphql-api → api/graphql-api}/draft/model/remove-row-result.model.js +0 -0
  2373. /package/dist/src/{graphql-api → api/graphql-api}/draft/model/remove-table-result.model.js +0 -0
  2374. /package/dist/src/{graphql-api → api/graphql-api}/draft/model/update-row-result.model.js +0 -0
  2375. /package/dist/src/{graphql-api → api/graphql-api}/draft/model/update-table-result.model.js +0 -0
  2376. /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/create-endpoint.input.js +0 -0
  2377. /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/delete-endpoint.input.d.ts +0 -0
  2378. /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/delete-endpoint.input.js +0 -0
  2379. /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/get-endpoint.input.d.ts +0 -0
  2380. /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/get-endpoint.input.js +0 -0
  2381. /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/index.js +0 -0
  2382. /package/dist/src/{graphql-api → api/graphql-api}/endpoint/model/endpoint.model.js +0 -0
  2383. /package/dist/src/{graphql-api → api/graphql-api}/endpoint/model/index.js +0 -0
  2384. /package/dist/src/{graphql-api → api/graphql-api}/graphql-api.module.d.ts +0 -0
  2385. /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/get-users-organization.input.d.ts +0 -0
  2386. /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/get-users-organization.input.js +0 -0
  2387. /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/index.js +0 -0
  2388. /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/remove-user-from-organization.input.d.ts +0 -0
  2389. /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/remove-user-from-organization.input.js +0 -0
  2390. /package/dist/src/{graphql-api → api/graphql-api}/organization/model/users-organization.connection.js +0 -0
  2391. /package/dist/src/{graphql-api → api/graphql-api}/organization/model/users-organization.model.js +0 -0
  2392. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/create-project.input.d.ts +0 -0
  2393. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/create-project.input.js +0 -0
  2394. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/delete-project.input.d.ts +0 -0
  2395. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/delete-project.input.js +0 -0
  2396. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-project-branches.input.d.ts +0 -0
  2397. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-project-branches.input.js +0 -0
  2398. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-project.input.d.ts +0 -0
  2399. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-project.input.js +0 -0
  2400. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-projects.input.d.ts +0 -0
  2401. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-projects.input.js +0 -0
  2402. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-users-project.input.d.ts +0 -0
  2403. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-users-project.input.js +0 -0
  2404. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/index.js +0 -0
  2405. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/remove-user-from-project.input.d.ts +0 -0
  2406. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/remove-user-from-project.input.js +0 -0
  2407. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/update-project.input.d.ts +0 -0
  2408. /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/update-project.input.js +0 -0
  2409. /package/dist/src/{graphql-api → api/graphql-api}/project/model/index.js +0 -0
  2410. /package/dist/src/{graphql-api → api/graphql-api}/project/model/project.model.js +0 -0
  2411. /package/dist/src/{graphql-api → api/graphql-api}/project/model/projects.connection.js +0 -0
  2412. /package/dist/src/{graphql-api → api/graphql-api}/project/model/users-project.connection.js +0 -0
  2413. /package/dist/src/{graphql-api → api/graphql-api}/project/model/users-project.model.js +0 -0
  2414. /package/dist/src/{graphql-api → api/graphql-api}/registerGraphqlEnums.d.ts +0 -0
  2415. /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/create-revision.input.d.ts +0 -0
  2416. /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/create-revision.input.js +0 -0
  2417. /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/get-revision-tables.input.d.ts +0 -0
  2418. /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/get-revision-tables.input.js +0 -0
  2419. /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/get-revision.input.d.ts +0 -0
  2420. /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/get-revision.input.js +0 -0
  2421. /package/dist/src/{graphql-api → api/graphql-api}/revision/model/child-branch.model.js +0 -0
  2422. /package/dist/src/{graphql-api → api/graphql-api}/revision/model/revision.model.js +0 -0
  2423. /package/dist/src/{graphql-api → api/graphql-api}/role/model/role.model.d.ts +0 -0
  2424. /package/dist/src/{graphql-api → api/graphql-api}/role/model/role.model.js +0 -0
  2425. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row-count-references-by.input.d.ts +0 -0
  2426. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row-count-references-by.input.js +0 -0
  2427. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row-references.input.d.ts +0 -0
  2428. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row-references.input.js +0 -0
  2429. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row.input.d.ts +0 -0
  2430. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row.input.js +0 -0
  2431. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-rows.input.d.ts +0 -0
  2432. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-rows.input.js +0 -0
  2433. /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/index.js +0 -0
  2434. /package/dist/src/{graphql-api → api/graphql-api}/row/model/row-reference.model.js +0 -0
  2435. /package/dist/src/{graphql-api → api/graphql-api}/row/model/row-references-connection.model.js +0 -0
  2436. /package/dist/src/{graphql-api → api/graphql-api}/row/model/row.model.js +0 -0
  2437. /package/dist/src/{graphql-api → api/graphql-api}/row/model/rows-connection.model.js +0 -0
  2438. /package/dist/src/{graphql-api → api/graphql-api}/share/model/paginated.model.js +0 -0
  2439. /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table-references.input.d.ts +0 -0
  2440. /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table-references.input.js +0 -0
  2441. /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table-rows.input.d.ts +0 -0
  2442. /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table-rows.input.js +0 -0
  2443. /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table.input.d.ts +0 -0
  2444. /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table.input.js +0 -0
  2445. /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-tables.input.d.ts +0 -0
  2446. /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-tables.input.js +0 -0
  2447. /package/dist/src/{graphql-api → api/graphql-api}/table/model/table-connection.model.js +0 -0
  2448. /package/dist/src/{graphql-api → api/graphql-api}/table/model/table.model.js +0 -0
  2449. /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/index.js +0 -0
  2450. /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/me-projects.input.d.ts +0 -0
  2451. /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/me-projects.input.js +0 -0
  2452. /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/set-username.input.d.ts +0 -0
  2453. /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/set-username.input.js +0 -0
  2454. /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/update-password.input.d.ts +0 -0
  2455. /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/update-password.input.js +0 -0
  2456. /package/dist/src/{graphql-api → api/graphql-api}/user/model/user.model.d.ts +0 -0
  2457. /package/dist/src/{graphql-api → api/graphql-api}/user/model/user.model.js +0 -0
  2458. /package/dist/src/{rest-api → api/rest-api}/auth/dto/index.js +0 -0
  2459. /package/dist/src/{rest-api → api/rest-api}/auth/dto/login.dto.d.ts +0 -0
  2460. /package/dist/src/{rest-api → api/rest-api}/auth/dto/login.dto.js +0 -0
  2461. /package/dist/src/{rest-api → api/rest-api}/auth/dto/update-password.dto.d.ts +0 -0
  2462. /package/dist/src/{rest-api → api/rest-api}/auth/dto/update-password.dto.js +0 -0
  2463. /package/dist/src/{rest-api → api/rest-api}/auth/model/index.js +0 -0
  2464. /package/dist/src/{rest-api → api/rest-api}/auth/model/login.response.d.ts +0 -0
  2465. /package/dist/src/{rest-api → api/rest-api}/auth/model/login.response.js +0 -0
  2466. /package/dist/src/{rest-api → api/rest-api}/branch/dto/create-branch-by-revision.dto.d.ts +0 -0
  2467. /package/dist/src/{rest-api → api/rest-api}/branch/dto/create-branch-by-revision.dto.js +0 -0
  2468. /package/dist/src/{rest-api → api/rest-api}/branch/dto/create-revision.dto.d.ts +0 -0
  2469. /package/dist/src/{rest-api → api/rest-api}/branch/dto/create-revision.dto.js +0 -0
  2470. /package/dist/src/{rest-api → api/rest-api}/branch/dto/get-branch-revisions.dto.d.ts +0 -0
  2471. /package/dist/src/{rest-api → api/rest-api}/branch/dto/get-branch-revisions.dto.js +0 -0
  2472. /package/dist/src/{rest-api → api/rest-api}/branch/dto/index.js +0 -0
  2473. /package/dist/src/{rest-api → api/rest-api}/branch/model/branch.model.d.ts +0 -0
  2474. /package/dist/src/{rest-api → api/rest-api}/branch/model/branch.model.js +0 -0
  2475. /package/dist/src/{rest-api → api/rest-api}/branch/model/index.js +0 -0
  2476. /package/dist/src/{rest-api → api/rest-api}/branch/model/parent-branch.response.d.ts +0 -0
  2477. /package/dist/src/{rest-api → api/rest-api}/branch/model/parent-branch.response.js +0 -0
  2478. /package/dist/src/{rest-api → api/rest-api}/configuration/model/configuration.response.d.ts +0 -0
  2479. /package/dist/src/{rest-api → api/rest-api}/configuration/model/configuration.response.js +0 -0
  2480. /package/dist/src/{rest-api → api/rest-api}/configuration/model/index.js +0 -0
  2481. /package/dist/src/{rest-api → api/rest-api}/endpoint/endpointByIdController.d.ts +0 -0
  2482. /package/dist/src/{rest-api → api/rest-api}/endpoint/model/endpoint.model.d.ts +0 -0
  2483. /package/dist/src/{rest-api → api/rest-api}/endpoint/model/endpoint.model.js +0 -0
  2484. /package/dist/src/{rest-api → api/rest-api}/endpoint/model/index.js +0 -0
  2485. /package/dist/src/{rest-api → api/rest-api}/organization/dto/create-project.dto.d.ts +0 -0
  2486. /package/dist/src/{rest-api → api/rest-api}/organization/dto/create-project.dto.js +0 -0
  2487. /package/dist/src/{rest-api → api/rest-api}/organization/dto/get-projects.dto.d.ts +0 -0
  2488. /package/dist/src/{rest-api → api/rest-api}/organization/dto/get-projects.dto.js +0 -0
  2489. /package/dist/src/{rest-api → api/rest-api}/organization/dto/get-users-organization.dto.d.ts +0 -0
  2490. /package/dist/src/{rest-api → api/rest-api}/organization/dto/get-users-organization.dto.js +0 -0
  2491. /package/dist/src/{rest-api → api/rest-api}/organization/dto/index.js +0 -0
  2492. /package/dist/src/{rest-api → api/rest-api}/organization/dto/remove-user-from-organization.dto.d.ts +0 -0
  2493. /package/dist/src/{rest-api → api/rest-api}/organization/dto/remove-user-from-organization.dto.js +0 -0
  2494. /package/dist/src/{rest-api → api/rest-api}/organization/model/index.js +0 -0
  2495. /package/dist/src/{rest-api → api/rest-api}/organization/model/project.connection.d.ts +0 -0
  2496. /package/dist/src/{rest-api → api/rest-api}/organization/model/project.connection.js +0 -0
  2497. /package/dist/src/{rest-api → api/rest-api}/organization/model/users-organization.connection.d.ts +0 -0
  2498. /package/dist/src/{rest-api → api/rest-api}/organization/model/users-organization.connection.js +0 -0
  2499. /package/dist/src/{rest-api → api/rest-api}/organization/model/users-organization.model.js +0 -0
  2500. /package/dist/src/{rest-api → api/rest-api}/project/dto/get-project-branches.dto.d.ts +0 -0
  2501. /package/dist/src/{rest-api → api/rest-api}/project/dto/get-project-branches.dto.js +0 -0
  2502. /package/dist/src/{rest-api → api/rest-api}/project/dto/get-users-project.dto.d.ts +0 -0
  2503. /package/dist/src/{rest-api → api/rest-api}/project/dto/get-users-project.dto.js +0 -0
  2504. /package/dist/src/{rest-api → api/rest-api}/project/dto/update-project.dto.d.ts +0 -0
  2505. /package/dist/src/{rest-api → api/rest-api}/project/dto/update-project.dto.js +0 -0
  2506. /package/dist/src/{rest-api → api/rest-api}/project/model/index.js +0 -0
  2507. /package/dist/src/{rest-api → api/rest-api}/project/model/project.model.d.ts +0 -0
  2508. /package/dist/src/{rest-api → api/rest-api}/project/model/project.model.js +0 -0
  2509. /package/dist/src/{rest-api → api/rest-api}/project/model/users-project.connection.d.ts +0 -0
  2510. /package/dist/src/{rest-api → api/rest-api}/project/model/users-project.connection.js +0 -0
  2511. /package/dist/src/{rest-api → api/rest-api}/project/model/users-project.model.js +0 -0
  2512. /package/dist/src/{rest-api → api/rest-api}/rest-api.module.d.ts +0 -0
  2513. /package/dist/src/{rest-api → api/rest-api}/revision/dto/create-endpoint.dto.d.ts +0 -0
  2514. /package/dist/src/{rest-api → api/rest-api}/revision/dto/create-endpoint.dto.js +0 -0
  2515. /package/dist/src/{rest-api → api/rest-api}/revision/dto/create-table.dto.d.ts +0 -0
  2516. /package/dist/src/{rest-api → api/rest-api}/revision/dto/create-table.dto.js +0 -0
  2517. /package/dist/src/{rest-api → api/rest-api}/revision/dto/get-revision-tables.dto.d.ts +0 -0
  2518. /package/dist/src/{rest-api → api/rest-api}/revision/dto/get-revision-tables.dto.js +0 -0
  2519. /package/dist/src/{rest-api → api/rest-api}/revision/dto/index.js +0 -0
  2520. /package/dist/src/{rest-api → api/rest-api}/revision/model/child-branches.response.d.ts +0 -0
  2521. /package/dist/src/{rest-api → api/rest-api}/revision/model/child-branches.response.js +0 -0
  2522. /package/dist/src/{rest-api → api/rest-api}/revision/model/create-table.response.js +0 -0
  2523. /package/dist/src/{rest-api → api/rest-api}/revision/model/index.js +0 -0
  2524. /package/dist/src/{rest-api → api/rest-api}/revision/model/revision.model.d.ts +0 -0
  2525. /package/dist/src/{rest-api → api/rest-api}/revision/model/revision.model.js +0 -0
  2526. /package/dist/src/{rest-api → api/rest-api}/role/model/index.js +0 -0
  2527. /package/dist/src/{rest-api → api/rest-api}/role/model/role.model.d.ts +0 -0
  2528. /package/dist/src/{rest-api → api/rest-api}/role/model/role.model.js +0 -0
  2529. /package/dist/src/{rest-api → api/rest-api}/row/dto/get-row-references-by.dto.d.ts +0 -0
  2530. /package/dist/src/{rest-api → api/rest-api}/row/dto/get-row-references-by.dto.js +0 -0
  2531. /package/dist/src/{rest-api → api/rest-api}/row/dto/get-row-references-to.dto.d.ts +0 -0
  2532. /package/dist/src/{rest-api → api/rest-api}/row/dto/get-row-references-to.dto.js +0 -0
  2533. /package/dist/src/{rest-api → api/rest-api}/row/dto/index.js +0 -0
  2534. /package/dist/src/{rest-api → api/rest-api}/row/dto/update-row.dto.d.ts +0 -0
  2535. /package/dist/src/{rest-api → api/rest-api}/row/dto/update-row.dto.js +0 -0
  2536. /package/dist/src/{rest-api → api/rest-api}/row/model/index.js +0 -0
  2537. /package/dist/src/{rest-api → api/rest-api}/row/model/remove-row.response.js +0 -0
  2538. /package/dist/src/{rest-api → api/rest-api}/row/model/row.model.d.ts +0 -0
  2539. /package/dist/src/{rest-api → api/rest-api}/row/model/row.model.js +0 -0
  2540. /package/dist/src/{rest-api → api/rest-api}/row/model/update-row.response.js +0 -0
  2541. /package/dist/src/{rest-api → api/rest-api}/share/model/paginated.model.d.ts +0 -0
  2542. /package/dist/src/{rest-api → api/rest-api}/share/model/paginated.model.js +0 -0
  2543. /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToBranchModel.js +0 -0
  2544. /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToEndpointsModel.js +0 -0
  2545. /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToRevisionModel.js +0 -0
  2546. /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToRowModel.js +0 -0
  2547. /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToTableModel.js +0 -0
  2548. /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToUserOrganizationModel.js +0 -0
  2549. /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToUserProjectModel.js +0 -0
  2550. /package/dist/src/{rest-api → api/rest-api}/table/dto/create-row.dto.d.ts +0 -0
  2551. /package/dist/src/{rest-api → api/rest-api}/table/dto/create-row.dto.js +0 -0
  2552. /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-references-by.dto.d.ts +0 -0
  2553. /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-references-by.dto.js +0 -0
  2554. /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-references-to.dto.d.ts +0 -0
  2555. /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-references-to.dto.js +0 -0
  2556. /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-rows.dto.d.ts +0 -0
  2557. /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-rows.dto.js +0 -0
  2558. /package/dist/src/{rest-api → api/rest-api}/table/dto/index.js +0 -0
  2559. /package/dist/src/{rest-api → api/rest-api}/table/dto/update-table.dto.js +0 -0
  2560. /package/dist/src/{rest-api → api/rest-api}/table/model/create-row.response.js +0 -0
  2561. /package/dist/src/{rest-api → api/rest-api}/table/model/index.js +0 -0
  2562. /package/dist/src/{rest-api → api/rest-api}/table/model/table.model.d.ts +0 -0
  2563. /package/dist/src/{rest-api → api/rest-api}/table/model/table.model.js +0 -0
  2564. /package/dist/src/{rest-api → api/rest-api}/table/model/update-table.response.js +0 -0
  2565. /package/dist/src/{rest-api → api/rest-api}/user/model/index.js +0 -0
  2566. /package/dist/src/{rest-api → api/rest-api}/user/model/user.model.d.ts +0 -0
  2567. /package/dist/src/{rest-api → api/rest-api}/user/model/user.model.js +0 -0
  2568. /package/dist/src/{auth → features/auth}/auth.module.d.ts +0 -0
  2569. /package/dist/src/{auth → features/auth}/auth.service.js +0 -0
  2570. /package/dist/src/{auth → features/auth}/commands/handlers/index.js +0 -0
  2571. /package/dist/src/{auth → features/auth}/commands/impl/check-organization-permission.command.js +0 -0
  2572. /package/dist/src/{auth → features/auth}/commands/impl/check-project-permission.command.js +0 -0
  2573. /package/dist/src/{auth → features/auth}/commands/impl/check-system-permission.command.js +0 -0
  2574. /package/dist/src/{auth → features/auth}/commands/impl/confirm-email-code.command.d.ts +0 -0
  2575. /package/dist/src/{auth → features/auth}/commands/impl/confirm-email-code.command.js +0 -0
  2576. /package/dist/src/{auth → features/auth}/commands/impl/create-user.command.js +0 -0
  2577. /package/dist/src/{auth → features/auth}/commands/impl/index.js +0 -0
  2578. /package/dist/src/{auth → features/auth}/commands/impl/login-github.command.d.ts +0 -0
  2579. /package/dist/src/{auth → features/auth}/commands/impl/login-github.command.js +0 -0
  2580. /package/dist/src/{auth → features/auth}/commands/impl/login-google.command.d.ts +0 -0
  2581. /package/dist/src/{auth → features/auth}/commands/impl/login-google.command.js +0 -0
  2582. /package/dist/src/{auth → features/auth}/commands/impl/login.command.d.ts +0 -0
  2583. /package/dist/src/{auth → features/auth}/commands/impl/login.command.js +0 -0
  2584. /package/dist/src/{auth → features/auth}/commands/impl/sign-up.command.d.ts +0 -0
  2585. /package/dist/src/{auth → features/auth}/commands/impl/sign-up.command.js +0 -0
  2586. /package/dist/src/{auth → features/auth}/commands/index.js +0 -0
  2587. /package/dist/src/{auth → features/auth}/consts.d.ts +0 -0
  2588. /package/dist/src/{auth → features/auth}/consts.js +0 -0
  2589. /package/dist/src/{auth → features/auth}/github-oauth.service.d.ts +0 -0
  2590. /package/dist/src/{auth → features/auth}/google-oauth.service.d.ts +0 -0
  2591. /package/dist/src/{auth → features/auth}/guards/base-persmission.guard.js +0 -0
  2592. /package/dist/src/{auth → features/auth}/guards/jwt/gql-jwt-auth-guard.service.d.ts +0 -0
  2593. /package/dist/src/{auth → features/auth}/guards/jwt/gql-jwt-auth-guard.service.js +0 -0
  2594. /package/dist/src/{auth → features/auth}/guards/jwt/http-jwt-auth-guard.service.d.ts +0 -0
  2595. /package/dist/src/{auth → features/auth}/guards/jwt/http-jwt-auth-guard.service.js +0 -0
  2596. /package/dist/src/{auth → features/auth}/guards/jwt/local-auth.guard.d.ts +0 -0
  2597. /package/dist/src/{auth → features/auth}/guards/jwt/local-auth.guard.js +0 -0
  2598. /package/dist/src/{auth → features/auth}/guards/jwt/optional-gql-jwt-auth-guard.service.d.ts +0 -0
  2599. /package/dist/src/{auth → features/auth}/guards/jwt/optional-gql-jwt-auth-guard.service.js +0 -0
  2600. /package/dist/src/{auth → features/auth}/guards/jwt/optional-http-jwt-auth-guard.service.d.ts +0 -0
  2601. /package/dist/src/{auth → features/auth}/guards/jwt/optional-http-jwt-auth-guard.service.js +0 -0
  2602. /package/dist/src/{auth → features/auth}/guards/organization.guard.js +0 -0
  2603. /package/dist/src/{auth → features/auth}/guards/permission-params.js +0 -0
  2604. /package/dist/src/{auth → features/auth}/guards/project.guard.js +0 -0
  2605. /package/dist/src/{auth → features/auth}/guards/system.guard.js +0 -0
  2606. /package/dist/src/{auth → features/auth}/jwt-secret.service.d.ts +0 -0
  2607. /package/dist/src/{auth → features/auth}/jwt-secret.service.js +0 -0
  2608. /package/dist/src/{auth → features/auth}/strategy/jwt.strategy.js +0 -0
  2609. /package/dist/src/{auth → features/auth}/types.d.ts +0 -0
  2610. /package/dist/src/{auth → features/auth}/types.js +0 -0
  2611. /package/dist/src/{auth → features/auth}/utils.js +0 -0
  2612. /package/dist/src/{branch → features/branch}/branch.module.d.ts +0 -0
  2613. /package/dist/src/{branch → features/branch}/commands/handlers/api-create-branch-by-revision-id.handler.js +0 -0
  2614. /package/dist/src/{branch → features/branch}/commands/handlers/index.js +0 -0
  2615. /package/dist/src/{branch → features/branch}/commands/impl/api-create-branch-by-revision-id.command.d.ts +0 -0
  2616. /package/dist/src/{branch → features/branch}/commands/impl/api-create-branch-by-revision-id.command.js +0 -0
  2617. /package/dist/src/{branch → features/branch}/commands/impl/create-branch-by-revision-id.command.d.ts +0 -0
  2618. /package/dist/src/{branch → features/branch}/commands/impl/create-branch-by-revision-id.command.js +0 -0
  2619. /package/dist/src/{branch → features/branch}/commands/impl/index.js +0 -0
  2620. /package/dist/src/{branch → features/branch}/quieries/handlers/index.js +0 -0
  2621. /package/dist/src/{branch → features/branch}/quieries/impl/get-branch-by-id.query.d.ts +0 -0
  2622. /package/dist/src/{branch → features/branch}/quieries/impl/get-branch-by-id.query.js +0 -0
  2623. /package/dist/src/{branch → features/branch}/quieries/impl/get-branch.query.d.ts +0 -0
  2624. /package/dist/src/{branch → features/branch}/quieries/impl/get-branch.query.js +0 -0
  2625. /package/dist/src/{branch → features/branch}/quieries/impl/get-branches.query.d.ts +0 -0
  2626. /package/dist/src/{branch → features/branch}/quieries/impl/get-branches.query.js +0 -0
  2627. /package/dist/src/{branch → features/branch}/quieries/impl/get-draft-revision.query.d.ts +0 -0
  2628. /package/dist/src/{branch → features/branch}/quieries/impl/get-draft-revision.query.js +0 -0
  2629. /package/dist/src/{branch → features/branch}/quieries/impl/get-head-revision.query.d.ts +0 -0
  2630. /package/dist/src/{branch → features/branch}/quieries/impl/get-head-revision.query.js +0 -0
  2631. /package/dist/src/{branch → features/branch}/quieries/impl/get-project-by-branch.query.d.ts +0 -0
  2632. /package/dist/src/{branch → features/branch}/quieries/impl/get-project-by-branch.query.js +0 -0
  2633. /package/dist/src/{branch → features/branch}/quieries/impl/get-revisions-by-branch-id.query.d.ts +0 -0
  2634. /package/dist/src/{branch → features/branch}/quieries/impl/get-revisions-by-branch-id.query.js +0 -0
  2635. /package/dist/src/{branch → features/branch}/quieries/impl/get-start-revision.query.d.ts +0 -0
  2636. /package/dist/src/{branch → features/branch}/quieries/impl/get-start-revision.query.js +0 -0
  2637. /package/dist/src/{branch → features/branch}/quieries/impl/get-touched-by-branch-id.query.d.ts +0 -0
  2638. /package/dist/src/{branch → features/branch}/quieries/impl/get-touched-by-branch-id.query.js +0 -0
  2639. /package/dist/src/{branch → features/branch}/quieries/impl/index.js +0 -0
  2640. /package/dist/src/{branch → features/branch}/quieries/impl/resolve-parent-branch-by-branch.query.d.ts +0 -0
  2641. /package/dist/src/{branch → features/branch}/quieries/impl/resolve-parent-branch-by-branch.query.js +0 -0
  2642. /package/dist/src/{branch → features/branch}/quieries/types/get-branch-by-id.types.d.ts +0 -0
  2643. /package/dist/src/{branch → features/branch}/quieries/types/get-branch-by-id.types.js +0 -0
  2644. /package/dist/src/{branch → features/branch}/quieries/types/get-branch.types.d.ts +0 -0
  2645. /package/dist/src/{branch → features/branch}/quieries/types/get-branch.types.js +0 -0
  2646. /package/dist/src/{branch → features/branch}/quieries/types/get-draft-revision.types.d.ts +0 -0
  2647. /package/dist/src/{branch → features/branch}/quieries/types/get-draft-revision.types.js +0 -0
  2648. /package/dist/src/{branch → features/branch}/quieries/types/get-head-revision.types.d.ts +0 -0
  2649. /package/dist/src/{branch → features/branch}/quieries/types/get-head-revision.types.js +0 -0
  2650. /package/dist/src/{branch → features/branch}/quieries/types/get-start-revision.types.d.ts +0 -0
  2651. /package/dist/src/{branch → features/branch}/quieries/types/get-start-revision.types.js +0 -0
  2652. /package/dist/src/{branch → features/branch}/quieries/types/index.js +0 -0
  2653. /package/dist/src/{draft → features/draft}/commands/impl/api-create-revision.command.js +0 -0
  2654. /package/dist/src/{draft → features/draft}/commands/impl/api-create-row.command.d.ts +0 -0
  2655. /package/dist/src/{draft → features/draft}/commands/impl/api-create-row.command.js +0 -0
  2656. /package/dist/src/{draft → features/draft}/commands/impl/api-create-table.command.d.ts +0 -0
  2657. /package/dist/src/{draft → features/draft}/commands/impl/api-create-table.command.js +0 -0
  2658. /package/dist/src/{draft → features/draft}/commands/impl/api-remove-row.command.d.ts +0 -0
  2659. /package/dist/src/{draft → features/draft}/commands/impl/api-remove-row.command.js +0 -0
  2660. /package/dist/src/{draft → features/draft}/commands/impl/api-remove-table.command.d.ts +0 -0
  2661. /package/dist/src/{draft → features/draft}/commands/impl/api-remove-table.command.js +0 -0
  2662. /package/dist/src/{draft → features/draft}/commands/impl/api-revert-changes.command.js +0 -0
  2663. /package/dist/src/{draft → features/draft}/commands/impl/api-update-row.command.d.ts +0 -0
  2664. /package/dist/src/{draft → features/draft}/commands/impl/api-update-row.command.js +0 -0
  2665. /package/dist/src/{draft → features/draft}/commands/impl/api-update-table.command.js +0 -0
  2666. /package/dist/src/{draft → features/draft}/commands/impl/create-revision.command.d.ts +0 -0
  2667. /package/dist/src/{draft → features/draft}/commands/impl/create-revision.command.js +0 -0
  2668. /package/dist/src/{draft → features/draft}/commands/impl/create-row.command.d.ts +0 -0
  2669. /package/dist/src/{draft → features/draft}/commands/impl/create-row.command.js +0 -0
  2670. /package/dist/src/{draft → features/draft}/commands/impl/create-table.command.d.ts +0 -0
  2671. /package/dist/src/{draft → features/draft}/commands/impl/create-table.command.js +0 -0
  2672. /package/dist/src/{draft → features/draft}/commands/impl/remove-row.command.d.ts +0 -0
  2673. /package/dist/src/{draft → features/draft}/commands/impl/remove-row.command.js +0 -0
  2674. /package/dist/src/{draft → features/draft}/commands/impl/remove-table.command.d.ts +0 -0
  2675. /package/dist/src/{draft → features/draft}/commands/impl/remove-table.command.js +0 -0
  2676. /package/dist/src/{draft → features/draft}/commands/impl/revert-changes.command.d.ts +0 -0
  2677. /package/dist/src/{draft → features/draft}/commands/impl/revert-changes.command.js +0 -0
  2678. /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-row.command.d.ts +0 -0
  2679. /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-row.command.js +0 -0
  2680. /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-rows.command.d.ts +0 -0
  2681. /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-rows.command.js +0 -0
  2682. /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-table.command.d.ts +0 -0
  2683. /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-table.command.js +0 -0
  2684. /package/dist/src/{draft → features/draft}/commands/impl/transactional/resolve-draft-revision.command.d.ts +0 -0
  2685. /package/dist/src/{draft → features/draft}/commands/impl/transactional/resolve-draft-revision.command.js +0 -0
  2686. /package/dist/src/{draft/commands/impl → features/draft/commands/impl/transactional}/update-rows.command.js +0 -0
  2687. /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-data.command.js +0 -0
  2688. /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-not-system-table.command.d.ts +0 -0
  2689. /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-not-system-table.command.js +0 -0
  2690. /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-schema.command.d.ts +0 -0
  2691. /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-schema.command.js +0 -0
  2692. /package/dist/src/{draft → features/draft}/commands/impl/update-row.command.d.ts +0 -0
  2693. /package/dist/src/{draft → features/draft}/commands/impl/update-row.command.js +0 -0
  2694. /package/dist/src/{draft → features/draft}/commands/impl/update-table.command.js +0 -0
  2695. /package/dist/src/{draft → features/draft}/commands/types/api-create-row.handler.types.js +0 -0
  2696. /package/dist/src/{draft → features/draft}/commands/types/api-create-table.handler.types.d.ts +0 -0
  2697. /package/dist/src/{draft → features/draft}/commands/types/api-create-table.handler.types.js +0 -0
  2698. /package/dist/src/{draft → features/draft}/commands/types/api-remove-row.handler.types.js +0 -0
  2699. /package/dist/src/{draft → features/draft}/commands/types/api-remove-table.handler.types.js +0 -0
  2700. /package/dist/src/{draft → features/draft}/commands/types/api-update-row.handler.types.js +0 -0
  2701. /package/dist/src/{draft → features/draft}/commands/types/api-update-table.handler.types.js +0 -0
  2702. /package/dist/src/{draft → features/draft}/commands/types/create-revision.handler.types.d.ts +0 -0
  2703. /package/dist/src/{draft → features/draft}/commands/types/create-revision.handler.types.js +0 -0
  2704. /package/dist/src/{draft → features/draft}/commands/types/create-row.handler.types.d.ts +0 -0
  2705. /package/dist/src/{draft → features/draft}/commands/types/create-row.handler.types.js +0 -0
  2706. /package/dist/src/{draft → features/draft}/commands/types/create-table.handler.types.d.ts +0 -0
  2707. /package/dist/src/{draft → features/draft}/commands/types/create-table.handler.types.js +0 -0
  2708. /package/dist/src/{draft → features/draft}/commands/types/remove-row.handler.types.d.ts +0 -0
  2709. /package/dist/src/{draft → features/draft}/commands/types/remove-row.handler.types.js +0 -0
  2710. /package/dist/src/{draft → features/draft}/commands/types/remove-table.handler.types.d.ts +0 -0
  2711. /package/dist/src/{draft → features/draft}/commands/types/remove-table.handler.types.js +0 -0
  2712. /package/dist/src/{draft → features/draft}/commands/types/revert-changes.handler.types.d.ts +0 -0
  2713. /package/dist/src/{draft → features/draft}/commands/types/revert-changes.handler.types.js +0 -0
  2714. /package/dist/src/{draft → features/draft}/commands/types/update-row.handler.types.d.ts +0 -0
  2715. /package/dist/src/{draft → features/draft}/commands/types/update-row.handler.types.js +0 -0
  2716. /package/dist/src/{draft → features/draft}/commands/types/update-table.handler.types.d.ts +0 -0
  2717. /package/dist/src/{draft → features/draft}/commands/types/update-table.handler.types.js +0 -0
  2718. /package/dist/src/{draft → features/draft}/draft-request-dto/draft-revision-request.dto.js +0 -0
  2719. /package/dist/src/{draft → features/draft}/draft-request-dto/index.js +0 -0
  2720. /package/dist/src/{draft → features/draft}/draft-request-dto/row-request.dto.js +0 -0
  2721. /package/dist/src/{draft → features/draft}/draft-request-dto/rows-request.dto.js +0 -0
  2722. /package/dist/src/{draft → features/draft}/draft-request-dto/table-request.dto.js +0 -0
  2723. /package/dist/src/{draft → features/draft}/draft.handler.js +0 -0
  2724. /package/dist/src/{draft → features/draft}/draft.module.d.ts +0 -0
  2725. /package/dist/src/{draft → features/draft}/draft.transactional.commands.js +0 -0
  2726. /package/dist/src/{endpoint → features/endpoint}/commands/handlers/api-create-endpoint.handler.js +0 -0
  2727. /package/dist/src/{endpoint → features/endpoint}/commands/handlers/index.js +0 -0
  2728. /package/dist/src/{endpoint → features/endpoint}/commands/impl/api-create-endpoint.command.d.ts +0 -0
  2729. /package/dist/src/{endpoint → features/endpoint}/commands/impl/api-create-endpoint.command.js +0 -0
  2730. /package/dist/src/{endpoint → features/endpoint}/commands/impl/create-endpoint.command.d.ts +0 -0
  2731. /package/dist/src/{endpoint → features/endpoint}/commands/impl/create-endpoint.command.js +0 -0
  2732. /package/dist/src/{endpoint → features/endpoint}/commands/impl/delete-endpoint.command.d.ts +0 -0
  2733. /package/dist/src/{endpoint → features/endpoint}/commands/impl/delete-endpoint.command.js +0 -0
  2734. /package/dist/src/{endpoint → features/endpoint}/commands/impl/index.js +0 -0
  2735. /package/dist/src/{endpoint → features/endpoint}/endpoint.module.d.ts +0 -0
  2736. /package/dist/src/{endpoint → features/endpoint}/queries/handlers/index.js +0 -0
  2737. /package/dist/src/{endpoint → features/endpoint}/queries/impl/get-created-endpoint.query.d.ts +0 -0
  2738. /package/dist/src/{endpoint → features/endpoint}/queries/impl/get-created-endpoint.query.js +0 -0
  2739. /package/dist/src/{endpoint → features/endpoint}/queries/impl/get-revision-by-endpoint-id.query.d.ts +0 -0
  2740. /package/dist/src/{endpoint → features/endpoint}/queries/impl/get-revision-by-endpoint-id.query.js +0 -0
  2741. /package/dist/src/{endpoint → features/endpoint}/queries/impl/index.js +0 -0
  2742. /package/dist/src/{organization → features/organization}/commands/handlers/index.js +0 -0
  2743. /package/dist/src/{organization → features/organization}/commands/impl/add-user-to-organization.command.js +0 -0
  2744. /package/dist/src/{organization → features/organization}/commands/impl/index.js +0 -0
  2745. /package/dist/src/{organization → features/organization}/commands/impl/remove-user-from-organization.command.d.ts +0 -0
  2746. /package/dist/src/{organization → features/organization}/commands/impl/remove-user-from-organization.command.js +0 -0
  2747. /package/dist/src/{organization → features/organization}/commands/index.js +0 -0
  2748. /package/dist/src/{organization → features/organization}/organization.module.d.ts +0 -0
  2749. /package/dist/src/{organization → features/organization}/queries/handlers/index.js +0 -0
  2750. /package/dist/src/{organization → features/organization}/queries/impl/get-projects-by-organization-id.query.js +0 -0
  2751. /package/dist/src/{organization → features/organization}/queries/impl/get-users-organization.query.js +0 -0
  2752. /package/dist/src/{organization → features/organization}/queries/impl/index.js +0 -0
  2753. /package/dist/src/{organization → features/organization}/queries/index.js +0 -0
  2754. /package/dist/src/{project → features/project}/commands/handlers/api-create-project.handler.js +0 -0
  2755. /package/dist/src/{project → features/project}/commands/handlers/index.js +0 -0
  2756. /package/dist/src/{project → features/project}/commands/impl/add-user-to-project.command.js +0 -0
  2757. /package/dist/src/{project → features/project}/commands/impl/api-create-project.command.d.ts +0 -0
  2758. /package/dist/src/{project → features/project}/commands/impl/api-create-project.command.js +0 -0
  2759. /package/dist/src/{project → features/project}/commands/impl/create-project.command.d.ts +0 -0
  2760. /package/dist/src/{project → features/project}/commands/impl/create-project.command.js +0 -0
  2761. /package/dist/src/{project → features/project}/commands/impl/delete-project.command.d.ts +0 -0
  2762. /package/dist/src/{project → features/project}/commands/impl/delete-project.command.js +0 -0
  2763. /package/dist/src/{project → features/project}/commands/impl/index.js +0 -0
  2764. /package/dist/src/{project → features/project}/commands/impl/remove-user-from-project.command.d.ts +0 -0
  2765. /package/dist/src/{project → features/project}/commands/impl/remove-user-from-project.command.js +0 -0
  2766. /package/dist/src/{project → features/project}/commands/impl/update-project.command.d.ts +0 -0
  2767. /package/dist/src/{project → features/project}/commands/impl/update-project.command.js +0 -0
  2768. /package/dist/src/{project → features/project}/project.module.d.ts +0 -0
  2769. /package/dist/src/{project → features/project}/queries/handlers/index.js +0 -0
  2770. /package/dist/src/{project → features/project}/queries/impl/get-all-branches-by-project.query.d.ts +0 -0
  2771. /package/dist/src/{project → features/project}/queries/impl/get-all-branches-by-project.query.js +0 -0
  2772. /package/dist/src/{project → features/project}/queries/impl/get-project-by-id.query.d.ts +0 -0
  2773. /package/dist/src/{project → features/project}/queries/impl/get-project-by-id.query.js +0 -0
  2774. /package/dist/src/{project → features/project}/queries/impl/get-project.query.d.ts +0 -0
  2775. /package/dist/src/{project → features/project}/queries/impl/get-project.query.js +0 -0
  2776. /package/dist/src/{project → features/project}/queries/impl/get-root-branch-by-project.query.d.ts +0 -0
  2777. /package/dist/src/{project → features/project}/queries/impl/get-root-branch-by-project.query.js +0 -0
  2778. /package/dist/src/{project → features/project}/queries/impl/get-users-project.query.js +0 -0
  2779. /package/dist/src/{project → features/project}/queries/impl/index.js +0 -0
  2780. /package/dist/src/{revision → features/revision}/queries/commands/index.js +0 -0
  2781. /package/dist/src/{revision → features/revision}/queries/impl/get-children-by-revision.query.d.ts +0 -0
  2782. /package/dist/src/{revision → features/revision}/queries/impl/get-children-by-revision.query.js +0 -0
  2783. /package/dist/src/{revision → features/revision}/queries/impl/get-endpoints-by-revision-id.query.d.ts +0 -0
  2784. /package/dist/src/{revision → features/revision}/queries/impl/get-endpoints-by-revision-id.query.js +0 -0
  2785. /package/dist/src/{revision → features/revision}/queries/impl/get-revision.query.js +0 -0
  2786. /package/dist/src/{revision → features/revision}/queries/impl/get-tables-by-revision-id.query.d.ts +0 -0
  2787. /package/dist/src/{revision → features/revision}/queries/impl/get-tables-by-revision-id.query.js +0 -0
  2788. /package/dist/src/{revision → features/revision}/queries/impl/index.js +0 -0
  2789. /package/dist/src/{revision → features/revision}/queries/impl/resolve-branch-by-revision.query.d.ts +0 -0
  2790. /package/dist/src/{revision → features/revision}/queries/impl/resolve-branch-by-revision.query.js +0 -0
  2791. /package/dist/src/{revision → features/revision}/queries/impl/resolve-child-branches-by-revision.query.d.ts +0 -0
  2792. /package/dist/src/{revision → features/revision}/queries/impl/resolve-child-branches-by-revision.query.js +0 -0
  2793. /package/dist/src/{revision → features/revision}/queries/impl/resolve-child-by-revision.query.d.ts +0 -0
  2794. /package/dist/src/{revision → features/revision}/queries/impl/resolve-child-by-revision.query.js +0 -0
  2795. /package/dist/src/{revision → features/revision}/queries/impl/resolve-parent-by-revision.query.d.ts +0 -0
  2796. /package/dist/src/{revision → features/revision}/queries/impl/resolve-parent-by-revision.query.js +0 -0
  2797. /package/dist/src/{revision → features/revision}/queries/types/get-endpoints-by-revision-id.d.ts +0 -0
  2798. /package/dist/src/{revision → features/revision}/queries/types/get-endpoints-by-revision-id.js +0 -0
  2799. /package/dist/src/{revision → features/revision}/queries/types/get-revision-tables.types.js +0 -0
  2800. /package/dist/src/{revision → features/revision}/queries/types/get-tables-by-revision-id.d.ts +0 -0
  2801. /package/dist/src/{revision → features/revision}/queries/types/get-tables-by-revision-id.js +0 -0
  2802. /package/dist/src/{revision → features/revision}/queries/types/index.js +0 -0
  2803. /package/dist/src/{revision → features/revision}/revision.module.d.ts +0 -0
  2804. /package/dist/src/{row → features/row}/queries/handlers/index.js +0 -0
  2805. /package/dist/src/{row → features/row}/queries/impl/get-row-by-id.query.d.ts +0 -0
  2806. /package/dist/src/{row → features/row}/queries/impl/get-row-by-id.query.js +0 -0
  2807. /package/dist/src/{row → features/row}/queries/impl/get-row.query.d.ts +0 -0
  2808. /package/dist/src/{row → features/row}/queries/impl/get-row.query.js +0 -0
  2809. /package/dist/src/{row → features/row}/queries/impl/get-rows.query.d.ts +0 -0
  2810. /package/dist/src/{row → features/row}/queries/impl/get-rows.query.js +0 -0
  2811. /package/dist/src/{row → features/row}/queries/impl/index.js +0 -0
  2812. /package/dist/src/{row → features/row}/queries/impl/resolve-row-count-references-by.query.d.ts +0 -0
  2813. /package/dist/src/{row → features/row}/queries/impl/resolve-row-count-references-by.query.js +0 -0
  2814. /package/dist/src/{row → features/row}/queries/impl/resolve-row-count-references-to.query.d.ts +0 -0
  2815. /package/dist/src/{row → features/row}/queries/impl/resolve-row-count-references-to.query.js +0 -0
  2816. /package/dist/src/{row → features/row}/queries/impl/resolve-row-references-by.query.d.ts +0 -0
  2817. /package/dist/src/{row → features/row}/queries/impl/resolve-row-references-by.query.js +0 -0
  2818. /package/dist/src/{row → features/row}/queries/impl/resolve-row-references-to.query.d.ts +0 -0
  2819. /package/dist/src/{row → features/row}/queries/impl/resolve-row-references-to.query.js +0 -0
  2820. /package/dist/src/{row → features/row}/queries/types/get-row-by-id.types.js +0 -0
  2821. /package/dist/src/{row → features/row}/queries/types/get-row.types.js +0 -0
  2822. /package/dist/src/{row → features/row}/queries/types/get-rows.types.js +0 -0
  2823. /package/dist/src/{row → features/row}/queries/types/index.js +0 -0
  2824. /package/dist/src/{row → features/row}/queries/types/resolve-row-references-by.types.js +0 -0
  2825. /package/dist/src/{row → features/row}/queries/types/resolve-row-references-to.types.js +0 -0
  2826. /package/dist/src/{row → features/row}/row.module.d.ts +0 -0
  2827. /package/dist/src/{share → features/share}/commands/handlers/index.js +0 -0
  2828. /package/dist/src/{share → features/share}/commands/impl/index.js +0 -0
  2829. /package/dist/src/{share → features/share}/commands/impl/notify-endpoints.command.d.ts +0 -0
  2830. /package/dist/src/{share → features/share}/commands/impl/notify-endpoints.command.js +0 -0
  2831. /package/dist/src/{share → features/share}/commands/impl/transactional/move-endpoints.command.d.ts +0 -0
  2832. /package/dist/src/{share → features/share}/commands/impl/transactional/move-endpoints.command.js +0 -0
  2833. /package/dist/src/{share → features/share}/const.js +0 -0
  2834. /package/dist/src/{share → features/share}/pagination.interface.d.ts +0 -0
  2835. /package/dist/src/{share → features/share}/pagination.interface.js +0 -0
  2836. /package/dist/src/{share → features/share}/queries/handlers/index.js +0 -0
  2837. /package/dist/src/{share → features/share}/queries/impl/index.js +0 -0
  2838. /package/dist/src/{share → features/share}/queries/impl/transactional/find-branch-in-project-or-throw.query.d.ts +0 -0
  2839. /package/dist/src/{share → features/share}/queries/impl/transactional/find-branch-in-project-or-throw.query.js +0 -0
  2840. /package/dist/src/{share → features/share}/queries/impl/transactional/find-draft-revision-in-branch-or-throw.query.d.ts +0 -0
  2841. /package/dist/src/{share → features/share}/queries/impl/transactional/find-draft-revision-in-branch-or-throw.query.js +0 -0
  2842. /package/dist/src/{share → features/share}/queries/impl/transactional/find-head-revision-in-branch-or-throw.query.d.ts +0 -0
  2843. /package/dist/src/{share → features/share}/queries/impl/transactional/find-head-revision-in-branch-or-throw.query.js +0 -0
  2844. /package/dist/src/{share → features/share}/queries/impl/transactional/find-project-in-organization-or-throw.query.d.ts +0 -0
  2845. /package/dist/src/{share → features/share}/queries/impl/transactional/find-project-in-organization-or-throw.query.js +0 -0
  2846. /package/dist/src/{share → features/share}/queries/impl/transactional/find-row-in-table-or-throw.query.d.ts +0 -0
  2847. /package/dist/src/{share → features/share}/queries/impl/transactional/find-row-in-table-or-throw.query.js +0 -0
  2848. /package/dist/src/{share → features/share}/queries/impl/transactional/find-rows-in-table-or-throw.query.d.ts +0 -0
  2849. /package/dist/src/{share → features/share}/queries/impl/transactional/find-rows-in-table-or-throw.query.js +0 -0
  2850. /package/dist/src/{share → features/share}/queries/impl/transactional/find-table-in-revision-or-throw.query.d.ts +0 -0
  2851. /package/dist/src/{share → features/share}/queries/impl/transactional/find-table-in-revision-or-throw.query.js +0 -0
  2852. /package/dist/src/{share → features/share}/queries/impl/transactional/get-table-schema.query.d.ts +0 -0
  2853. /package/dist/src/{share → features/share}/queries/impl/transactional/get-table-schema.query.js +0 -0
  2854. /package/dist/src/{share → features/share}/queries/types/find-branch-in-project.types.d.ts +0 -0
  2855. /package/dist/src/{share → features/share}/queries/types/find-branch-in-project.types.js +0 -0
  2856. /package/dist/src/{share → features/share}/queries/types/find-draft-revision-in-branch.types.d.ts +0 -0
  2857. /package/dist/src/{share → features/share}/queries/types/find-draft-revision-in-branch.types.js +0 -0
  2858. /package/dist/src/{share → features/share}/queries/types/find-head-revision-in-branch.types.d.ts +0 -0
  2859. /package/dist/src/{share → features/share}/queries/types/find-head-revision-in-branch.types.js +0 -0
  2860. /package/dist/src/{share → features/share}/queries/types/find-project-in-organization.types.d.ts +0 -0
  2861. /package/dist/src/{share → features/share}/queries/types/find-project-in-organization.types.js +0 -0
  2862. /package/dist/src/{share → features/share}/queries/types/find-row-in-table.types.d.ts +0 -0
  2863. /package/dist/src/{share → features/share}/queries/types/find-row-in-table.types.js +0 -0
  2864. /package/dist/src/{share → features/share}/queries/types/find-rows-in-table.types.d.ts +0 -0
  2865. /package/dist/src/{share → features/share}/queries/types/find-rows-in-table.types.js +0 -0
  2866. /package/dist/src/{share → features/share}/queries/types/find-table-in-revision.types.d.ts +0 -0
  2867. /package/dist/src/{share → features/share}/queries/types/find-table-in-revision.types.js +0 -0
  2868. /package/dist/src/{share → features/share}/queries/types/index.js +0 -0
  2869. /package/dist/src/{share → features/share}/schema/consts.d.ts +0 -0
  2870. /package/dist/src/{share → features/share}/schema/consts.js +0 -0
  2871. /package/dist/src/{share → features/share}/schema/json-patch-schema.d.ts +0 -0
  2872. /package/dist/src/{share → features/share}/schema/meta-schema.d.ts +0 -0
  2873. /package/dist/src/{share → features/share}/share.commands.js +0 -0
  2874. /package/dist/src/{share → features/share}/share.module.d.ts +0 -0
  2875. /package/dist/src/{share → features/share}/share.transactional.commands.js +0 -0
  2876. /package/dist/src/{share → features/share}/share.transactional.queries.js +0 -0
  2877. /package/dist/src/{share → features/share}/system-organizations.consts.d.ts +0 -0
  2878. /package/dist/src/{share → features/share}/system-organizations.consts.js +0 -0
  2879. /package/dist/src/{share → features/share}/system-tables.consts.d.ts +0 -0
  2880. /package/dist/src/{share → features/share}/system-tables.consts.js +0 -0
  2881. /package/dist/src/{share → features/share}/types/row-with-context.types.d.ts +0 -0
  2882. /package/dist/src/{share → features/share}/types/row-with-context.types.js +0 -0
  2883. /package/dist/src/{share → features/share}/types/table-with-context.types.d.ts +0 -0
  2884. /package/dist/src/{share → features/share}/types/table-with-context.types.js +0 -0
  2885. /package/dist/src/{share → features/share}/types.d.ts +0 -0
  2886. /package/dist/src/{share → features/share}/types.js +0 -0
  2887. /package/dist/src/{share → features/share}/utils/index.js +0 -0
  2888. /package/dist/src/{share → features/share}/utils/schema/lib/applyPatches.js +0 -0
  2889. /package/dist/src/{share → features/share}/utils/schema/lib/createJsonSchemaStore.js +0 -0
  2890. /package/dist/src/{share → features/share}/utils/schema/lib/createJsonValueStore.js +0 -0
  2891. /package/dist/src/{share → features/share}/utils/schema/lib/getJsonSchemaStoreByPath.js +0 -0
  2892. /package/dist/src/{share → features/share}/utils/schema/lib/getParentForPath.d.ts +0 -0
  2893. /package/dist/src/{share → features/share}/utils/schema/lib/getParentForPath.js +0 -0
  2894. /package/dist/src/{share → features/share}/utils/schema/lib/getPathByStore.js +0 -0
  2895. /package/dist/src/{share → features/share}/utils/schema/lib/getValuePathByStore.js +0 -0
  2896. /package/dist/src/{share → features/share}/utils/schema/lib/traverseStore.js +0 -0
  2897. /package/dist/src/{share → features/share}/utils/schema/lib/traverseValue.js +0 -0
  2898. /package/dist/src/{share → features/share}/utils/schema/model/schema/json-array.store.js +0 -0
  2899. /package/dist/src/{share → features/share}/utils/schema/model/schema/json-boolean.store.js +0 -0
  2900. /package/dist/src/{share → features/share}/utils/schema/model/schema/json-number.store.js +0 -0
  2901. /package/dist/src/{share → features/share}/utils/schema/model/schema/json-schema.store.js +0 -0
  2902. /package/dist/src/{share → features/share}/utils/schema/model/schema/json-string.store.js +0 -0
  2903. /package/dist/src/{share → features/share}/utils/schema/model/value/json-array-value.store.js +0 -0
  2904. /package/dist/src/{share → features/share}/utils/schema/model/value/json-boolean-value.store.js +0 -0
  2905. /package/dist/src/{share → features/share}/utils/schema/model/value/json-number-value.store.js +0 -0
  2906. /package/dist/src/{share → features/share}/utils/schema/model/value/json-object-value.store.js +0 -0
  2907. /package/dist/src/{share → features/share}/utils/schema/model/value/json-string-value.store.js +0 -0
  2908. /package/dist/src/{share → features/share}/utils/schema/model/value/json-value.store.js +0 -0
  2909. /package/dist/src/{share → features/share}/utils/schema/types/json-patch.types.js +0 -0
  2910. /package/dist/src/{share → features/share}/utils/schema/types/json.types.d.ts +0 -0
  2911. /package/dist/src/{share → features/share}/utils/schema/types/json.types.js +0 -0
  2912. /package/dist/src/{share → features/share}/utils/schema/types/schema.types.d.ts +0 -0
  2913. /package/dist/src/{share → features/share}/utils/schema/types/schema.types.js +0 -0
  2914. /package/dist/src/{share → features/share}/utils/sort-revisions/sort-revisions.d.ts +0 -0
  2915. /package/dist/src/{table → features/table}/queries/handlers/index.js +0 -0
  2916. /package/dist/src/{table → features/table}/queries/impl/get-count-rows-in-table.query.d.ts +0 -0
  2917. /package/dist/src/{table → features/table}/queries/impl/get-count-rows-in-table.query.js +0 -0
  2918. /package/dist/src/{table → features/table}/queries/impl/get-rows-by-table.query.d.ts +0 -0
  2919. /package/dist/src/{table → features/table}/queries/impl/get-rows-by-table.query.js +0 -0
  2920. /package/dist/src/{table → features/table}/queries/impl/get-table-by-id.query.d.ts +0 -0
  2921. /package/dist/src/{table → features/table}/queries/impl/get-table-by-id.query.js +0 -0
  2922. /package/dist/src/{table → features/table}/queries/impl/get-table.query.d.ts +0 -0
  2923. /package/dist/src/{table → features/table}/queries/impl/get-table.query.js +0 -0
  2924. /package/dist/src/{table → features/table}/queries/impl/get-tables.query.d.ts +0 -0
  2925. /package/dist/src/{table → features/table}/queries/impl/get-tables.query.js +0 -0
  2926. /package/dist/src/{table → features/table}/queries/impl/index.js +0 -0
  2927. /package/dist/src/{table → features/table}/queries/impl/resolve-table-count-references-by.query.d.ts +0 -0
  2928. /package/dist/src/{table → features/table}/queries/impl/resolve-table-count-references-by.query.js +0 -0
  2929. /package/dist/src/{table → features/table}/queries/impl/resolve-table-count-references-to.query.d.ts +0 -0
  2930. /package/dist/src/{table → features/table}/queries/impl/resolve-table-count-references-to.query.js +0 -0
  2931. /package/dist/src/{table → features/table}/queries/impl/resolve-table-references-by.query.d.ts +0 -0
  2932. /package/dist/src/{table → features/table}/queries/impl/resolve-table-references-by.query.js +0 -0
  2933. /package/dist/src/{table → features/table}/queries/impl/resolve-table-references-to.query.d.ts +0 -0
  2934. /package/dist/src/{table → features/table}/queries/impl/resolve-table-references-to.query.js +0 -0
  2935. /package/dist/src/{table → features/table}/queries/impl/resolve-table-schema.query.d.ts +0 -0
  2936. /package/dist/src/{table → features/table}/queries/impl/resolve-table-schema.query.js +0 -0
  2937. /package/dist/src/{table → features/table}/queries/types/get-table-by-id.types.js +0 -0
  2938. /package/dist/src/{table → features/table}/queries/types/get-table-rows.types.js +0 -0
  2939. /package/dist/src/{table → features/table}/queries/types/get-table.types.js +0 -0
  2940. /package/dist/src/{table → features/table}/queries/types/get-tables.types.js +0 -0
  2941. /package/dist/src/{table → features/table}/queries/types/index.js +0 -0
  2942. /package/dist/src/{table → features/table}/queries/types/resolve-table-references-by.types.js +0 -0
  2943. /package/dist/src/{table → features/table}/queries/types/resolve-table-references-to.types.js +0 -0
  2944. /package/dist/src/{table → features/table}/table.module.d.ts +0 -0
  2945. /package/dist/src/{user → features/user}/commands/handlers/index.js +0 -0
  2946. /package/dist/src/{user → features/user}/commands/impl/index.js +0 -0
  2947. /package/dist/src/{user → features/user}/commands/impl/set-username.command.d.ts +0 -0
  2948. /package/dist/src/{user → features/user}/commands/impl/set-username.command.js +0 -0
  2949. /package/dist/src/{user → features/user}/commands/impl/update-password.command.d.ts +0 -0
  2950. /package/dist/src/{user → features/user}/commands/impl/update-password.command.js +0 -0
  2951. /package/dist/src/{user → features/user}/commands/index.js +0 -0
  2952. /package/dist/src/{user → features/user}/queries/handlers/index.js +0 -0
  2953. /package/dist/src/{user → features/user}/queries/impl/get-projects-by-user-id.query.js +0 -0
  2954. /package/dist/src/{user → features/user}/queries/impl/get-user-organization.query.d.ts +0 -0
  2955. /package/dist/src/{user → features/user}/queries/impl/get-user-organization.query.js +0 -0
  2956. /package/dist/src/{user → features/user}/queries/impl/get-user.query.d.ts +0 -0
  2957. /package/dist/src/{user → features/user}/queries/impl/get-user.query.js +0 -0
  2958. /package/dist/src/{user → features/user}/queries/impl/index.js +0 -0
  2959. /package/dist/src/{user → features/user}/queries/index.js +0 -0
  2960. /package/dist/src/{user → features/user}/user.module.d.ts +0 -0
  2961. /package/dist/src/{admin → infrastructure/admin}/admin-module.options.d.ts +0 -0
  2962. /package/dist/src/{admin → infrastructure/admin}/admin-module.options.js +0 -0
  2963. /package/dist/src/{admin → infrastructure/admin}/admin.module.js +0 -0
  2964. /package/dist/src/{admin → infrastructure/admin}/envjs.controller.js +0 -0
  2965. /package/dist/src/{admin → infrastructure/admin}/index.d.ts +0 -0
  2966. /package/dist/src/{admin → infrastructure/admin}/index.js +0 -0
  2967. /package/dist/src/{clean → infrastructure/clean}/clean.module.d.ts +0 -0
  2968. /package/dist/src/{clean → infrastructure/clean}/clean.module.js +0 -0
  2969. /package/dist/src/{clean → infrastructure/clean}/clean.service.js +0 -0
  2970. /package/dist/src/{clean → infrastructure/clean}/commands/handlers/clean-rows.handler.js +0 -0
  2971. /package/dist/src/{clean → infrastructure/clean}/commands/handlers/clean-tables.handler.js +0 -0
  2972. /package/dist/src/{clean → infrastructure/clean}/commands/handlers/index.js +0 -0
  2973. /package/dist/src/{clean → infrastructure/clean}/commands/impl/clean-rows.command.d.ts +0 -0
  2974. /package/dist/src/{clean → infrastructure/clean}/commands/impl/clean-rows.command.js +0 -0
  2975. /package/dist/src/{clean → infrastructure/clean}/commands/impl/clean-tables.command.d.ts +0 -0
  2976. /package/dist/src/{clean → infrastructure/clean}/commands/impl/clean-tables.command.js +0 -0
  2977. /package/dist/src/{configuration → infrastructure/configuration}/configuration.module.d.ts +0 -0
  2978. /package/dist/src/{configuration → infrastructure/configuration}/queries/handlers/index.js +0 -0
  2979. /package/dist/src/{configuration → infrastructure/configuration}/queries/impl/index.js +0 -0
  2980. /package/dist/src/{configuration → infrastructure/configuration}/queries/index.js +0 -0
  2981. /package/dist/src/{database → infrastructure/database}/database.module.d.ts +0 -0
  2982. /package/dist/src/{database → infrastructure/database}/database.module.js +0 -0
  2983. /package/dist/src/{database → infrastructure/database}/id.service.d.ts +0 -0
  2984. /package/dist/src/{database → infrastructure/database}/id.service.js +0 -0
  2985. /package/dist/src/{database → infrastructure/database}/prisma.service.d.ts +0 -0
  2986. /package/dist/src/{database → infrastructure/database}/prisma.service.js +0 -0
  2987. /package/dist/src/{email → infrastructure/email}/email.module.d.ts +0 -0
  2988. /package/dist/src/{email → infrastructure/email}/email.module.js +0 -0
  2989. /package/dist/src/{email → infrastructure/email}/templates/registration.hbs +0 -0
  2990. /package/dist/src/{email → infrastructure/email}/transporter.service.d.ts +0 -0
  2991. /package/dist/src/{health → infrastructure/health}/health.module.d.ts +0 -0
  2992. /package/dist/src/{metrics → infrastructure/metrics}/graphql/constants.d.ts +0 -0
  2993. /package/dist/src/{metrics → infrastructure/metrics}/graphql/constants.js +0 -0
  2994. /package/dist/src/{metrics → infrastructure/metrics}/graphql/graphql-metrics.plugin.js +0 -0
  2995. /package/dist/src/{metrics → infrastructure/metrics}/graphql/graphql-metrics.service.d.ts +0 -0
  2996. /package/dist/src/{metrics → infrastructure/metrics}/graphql/graphql-metrics.service.js +0 -0
  2997. /package/dist/src/{metrics → infrastructure/metrics}/metrics.module.d.ts +0 -0
  2998. /package/dist/src/{metrics → infrastructure/metrics}/metrics.module.js +0 -0
  2999. /package/dist/src/{metrics → infrastructure/metrics}/rest/constants.d.ts +0 -0
  3000. /package/dist/src/{metrics → infrastructure/metrics}/rest/constants.js +0 -0
  3001. /package/dist/src/{metrics → infrastructure/metrics}/rest/rest-metrics.interceptor.js +0 -0
  3002. /package/dist/src/{metrics → infrastructure/metrics}/rest/rest-metrics.service.d.ts +0 -0
  3003. /package/dist/src/{metrics → infrastructure/metrics}/rest/rest-metrics.service.js +0 -0
  3004. /package/dist/src/{metrics → infrastructure/metrics}/utils.d.ts +0 -0
  3005. /package/dist/src/{metrics → infrastructure/metrics}/utils.js +0 -0
  3006. /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics-api.module.d.ts +0 -0
  3007. /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics-api.module.js +0 -0
  3008. /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics-enabled.guard.d.ts +0 -0
  3009. /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics-enabled.guard.js +0 -0
  3010. /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics.controller.js +0 -0
  3011. /package/dist/src/{notification → infrastructure/notification}/endpoint-notification.service.js +0 -0
  3012. /package/dist/src/{notification → infrastructure/notification}/in-memory-server.d.ts +0 -0
  3013. /package/dist/src/{notification → infrastructure/notification}/in-memory-server.js +0 -0
  3014. /package/dist/src/{notification → infrastructure/notification}/notification-event-emitter.d.ts +0 -0
  3015. /package/dist/src/{notification → infrastructure/notification}/notification-event-emitter.js +0 -0
  3016. /package/dist/src/{notification → infrastructure/notification}/notification.module.d.ts +0 -0
  3017. /package/dist/src/{notification → infrastructure/notification}/notification.module.js +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-row-count-references-by.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/inputs/get-row-count-references-by.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmD;AAG5C,IAAM,4BAA4B,GAAlC,MAAM,4BAA4B;CASxC,CAAA;AATY,oEAA4B;AAEvC;IADC,IAAA,eAAK,GAAE;;gEACW;AAGnB;IADC,IAAA,eAAK,GAAE;;6DACQ;AAGhB;IADC,IAAA,eAAK,GAAE;;2DACM;uCARH,4BAA4B;IADxC,IAAA,mBAAS,GAAE;GACC,4BAA4B,CASxC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-row-references.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/inputs/get-row-references.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAwD;AAGjD,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;CASjC,CAAA;AATY,sDAAqB;AAEhC;IADC,IAAA,eAAK,GAAE;;+DACiB;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;oDACH;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACX;gCARJ,qBAAqB;IADjC,IAAA,mBAAS,GAAE;GACC,qBAAqB,CASjC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-row.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/inputs/get-row.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmD;AAG5C,IAAM,WAAW,GAAjB,MAAM,WAAW;CASvB,CAAA;AATY,kCAAW;AAEtB;IADC,IAAA,eAAK,GAAE;;+CACW;AAGnB;IADC,IAAA,eAAK,GAAE;;4CACQ;AAGhB;IADC,IAAA,eAAK,GAAE;;0CACM;sBARH,WAAW;IADvB,IAAA,mBAAS,GAAE;GACC,WAAW,CASvB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-rows.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/inputs/get-rows.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAwD;AAGjD,IAAM,YAAY,GAAlB,MAAM,YAAY;CAYxB,CAAA;AAZY,oCAAY;AAEvB;IADC,IAAA,eAAK,GAAE;;gDACW;AAGnB;IADC,IAAA,eAAK,GAAE;;6CACQ;AAGhB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;2CACH;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACX;uBAXJ,YAAY;IADxB,IAAA,mBAAS,GAAE;GACC,YAAY,CAYxB"}
@@ -0,0 +1,3 @@
1
+ export * from '../../../../api/graphql-api/row/inputs/get-row.input';
2
+ export * from '../../../../api/graphql-api/row/inputs/get-rows.input';
3
+ export * from '../../../../api/graphql-api/row/inputs/get-row-count-references-by.input';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA6D;AAC7D,mDAA8D;AAC9D,sEAAiF"}
@@ -0,0 +1,6 @@
1
+ import { RowModel } from '../../../../api/graphql-api/row/model/row.model';
2
+ import { TableModel } from '../../../../api/graphql-api/table/model/table.model';
3
+ export declare class RowReferenceModel {
4
+ table: TableModel;
5
+ row: RowModel;
6
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"row-reference.model.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/model/row-reference.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAoD;AACpD,2CAAmE;AACnE,+DAAyE;AAGlE,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAM7B,CAAA;AANY,8CAAiB;AAE5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;8BACjB,wBAAU;gDAAC;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oBAAQ,CAAC;8BACjB,oBAAQ;8CAAC;4BALH,iBAAiB;IAD7B,IAAA,oBAAU,GAAE;GACA,iBAAiB,CAM7B"}
@@ -0,0 +1,5 @@
1
+ import { RowReferenceModel } from '../../../../api/graphql-api/row/model/row-reference.model';
2
+ declare const RowReferencesConnectionModel_base: import("@nestjs/common").Type<import("../../../../features/share/pagination.interface").IPaginatedType<RowReferenceModel>>;
3
+ export declare class RowReferencesConnectionModel extends RowReferencesConnectionModel_base {
4
+ }
5
+ export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"row-references-connection.model.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/model/row-references-connection.model.ts"],"names":[],"mappings":";;;;;;;;;AAAA,6CAA6C;AAC7C,+DAAsF;AACtF,uEAA4E;AAGrE,IAAM,4BAA4B,GAAlC,MAAM,4BAA6B,SAAQ,IAAA,2BAAS,EACzD,uCAAiB,CAClB;CAAG,CAAA;AAFS,oEAA4B;uCAA5B,4BAA4B;IADxC,IAAA,oBAAU,GAAE;GACA,4BAA4B,CAErC"}
@@ -0,0 +1,17 @@
1
+ import { Prisma } from '@prisma/client';
2
+ import { RowsConnection } from '../../../../api/graphql-api/row/model/rows-connection.model';
3
+ export type RowModelContext = {
4
+ revisionId: string;
5
+ tableId: string;
6
+ };
7
+ export declare class RowModel {
8
+ versionId: string;
9
+ createdAt: Date;
10
+ readonly: boolean;
11
+ id: string;
12
+ data: Prisma.JsonValue;
13
+ rowReferencesTo: RowsConnection;
14
+ countReferencesTo: number;
15
+ rowReferencesBy: RowsConnection;
16
+ context: RowModelContext;
17
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"row.model.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/model/row.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAyD;AACzD,2CAAwC;AACxC,yDAA4C;AAC5C,mEAAqF;AAQ9E,IAAM,QAAQ,GAAd,MAAM,QAAQ;CA0BpB,CAAA;AA1BY,4BAAQ;AAEnB;IADC,IAAA,eAAK,GAAE;;2CACU;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;8BACP,IAAI;2CAAC;AAGhB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,CAAC;;0CACH;AAGlB;IADC,IAAA,eAAK,GAAE;;oCACG;AAGX;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,2BAAW,CAAC;;sCACF;AAGvB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,sCAAc,CAAC;8BACX,sCAAc;iDAAC;AAGhC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;mDACS;AAG1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,sCAAc,CAAC;8BACX,sCAAc;iDAAC;mBAvBrB,QAAQ;IADpB,IAAA,oBAAU,GAAE;GACA,QAAQ,CA0BpB"}
@@ -0,0 +1,5 @@
1
+ import { RowModel } from '../../../../api/graphql-api/row/model/row.model';
2
+ declare const RowsConnection_base: import("@nestjs/common").Type<import("../../../../features/share/pagination.interface").IPaginatedType<RowModel>>;
3
+ export declare class RowsConnection extends RowsConnection_base {
4
+ }
5
+ export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rows-connection.model.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/row/model/rows-connection.model.ts"],"names":[],"mappings":";;;;;;;;;AAAA,6CAA6C;AAC7C,2CAAmE;AACnE,uEAA4E;AAGrE,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,IAAA,2BAAS,EAAC,oBAAQ,CAAC;CAAG,CAAA;AAA7C,wCAAc;yBAAd,cAAc;IAD1B,IAAA,oBAAU,GAAE;GACA,cAAc,CAA+B"}
@@ -0,0 +1,16 @@
1
+ import { QueryBus } from '@nestjs/cqrs';
2
+ import { GetRowCountReferencesByInput, GetRowInput, GetRowsInput } from '../../../api/graphql-api/row/inputs';
3
+ import { GetRowReferencesInput } from '../../../api/graphql-api/row/inputs/get-row-references.input';
4
+ import { RowModel } from '../../../api/graphql-api/row/model/row.model';
5
+ import { GetRowReturnType } from '../../../features/row/queries/types';
6
+ import { GetRowsReturnType } from '../../../features/row/queries/types/get-rows.types';
7
+ export declare class RowResolver {
8
+ private readonly queryBus;
9
+ constructor(queryBus: QueryBus);
10
+ row(data: GetRowInput): Promise<GetRowReturnType>;
11
+ getRowCountReferencesTo(data: GetRowCountReferencesByInput): Promise<any>;
12
+ rows(data: GetRowsInput): Promise<GetRowsReturnType>;
13
+ rowReferencesBy(row: RowModel, data: GetRowReferencesInput): Promise<any>;
14
+ countReferencesTo(row: RowModel): Promise<any>;
15
+ rowReferencesTo(row: RowModel, data: GetRowReferencesInput): Promise<any>;
16
+ }
@@ -0,0 +1,128 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.RowResolver = void 0;
16
+ const common_1 = require("@nestjs/common");
17
+ const cqrs_1 = require("@nestjs/cqrs");
18
+ const graphql_1 = require("@nestjs/graphql");
19
+ const consts_1 = require("../../../features/auth/consts");
20
+ const optional_gql_jwt_auth_guard_service_1 = require("../../../features/auth/guards/jwt/optional-gql-jwt-auth-guard.service");
21
+ const permission_params_1 = require("../../../features/auth/guards/permission-params");
22
+ const project_guard_1 = require("../../../features/auth/guards/project.guard");
23
+ const inputs_1 = require("./inputs");
24
+ const get_row_references_input_1 = require("./inputs/get-row-references.input");
25
+ const row_model_1 = require("./model/row.model");
26
+ const rows_connection_model_1 = require("./model/rows-connection.model");
27
+ const impl_1 = require("../../../features/row/queries/impl");
28
+ const resolve_row_count_references_by_query_1 = require("../../../features/row/queries/impl/resolve-row-count-references-by.query");
29
+ let RowResolver = class RowResolver {
30
+ constructor(queryBus) {
31
+ this.queryBus = queryBus;
32
+ }
33
+ row(data) {
34
+ return this.queryBus.execute(new impl_1.GetRowQuery(data));
35
+ }
36
+ getRowCountReferencesTo(data) {
37
+ return this.queryBus.execute(new resolve_row_count_references_by_query_1.ResolveRowCountReferencesByQuery(data));
38
+ }
39
+ rows(data) {
40
+ return this.queryBus.execute(new impl_1.GetRowsQuery(data));
41
+ }
42
+ rowReferencesBy(row, data) {
43
+ return this.queryBus.execute(new impl_1.ResolveRowReferencesByQuery({
44
+ revisionId: row.context.revisionId,
45
+ tableId: row.context.tableId,
46
+ rowId: row.id,
47
+ referenceByTableId: data.referenceTableId,
48
+ first: data.first,
49
+ after: data.after,
50
+ }));
51
+ }
52
+ countReferencesTo(row) {
53
+ return this.queryBus.execute(new impl_1.ResolveRowCountReferencesToQuery({
54
+ revisionId: row.context.revisionId,
55
+ tableId: row.context.tableId,
56
+ rowId: row.id,
57
+ }));
58
+ }
59
+ rowReferencesTo(row, data) {
60
+ return this.queryBus.execute(new impl_1.ResolveRowReferencesToQuery({
61
+ revisionId: row.context.revisionId,
62
+ tableId: row.context.tableId,
63
+ rowId: row.id,
64
+ referenceByTableId: data.referenceTableId,
65
+ first: data.first,
66
+ after: data.after,
67
+ }));
68
+ }
69
+ };
70
+ exports.RowResolver = RowResolver;
71
+ __decorate([
72
+ (0, common_1.UseGuards)(optional_gql_jwt_auth_guard_service_1.OptionalGqlJwtAuthGuard, project_guard_1.GQLProjectGuard),
73
+ (0, graphql_1.Query)(() => row_model_1.RowModel, { nullable: true }),
74
+ __param(0, (0, graphql_1.Args)('data')),
75
+ __metadata("design:type", Function),
76
+ __metadata("design:paramtypes", [inputs_1.GetRowInput]),
77
+ __metadata("design:returntype", void 0)
78
+ ], RowResolver.prototype, "row", null);
79
+ __decorate([
80
+ (0, common_1.UseGuards)(optional_gql_jwt_auth_guard_service_1.OptionalGqlJwtAuthGuard, project_guard_1.GQLProjectGuard),
81
+ (0, graphql_1.Query)(() => graphql_1.Int),
82
+ __param(0, (0, graphql_1.Args)('data')),
83
+ __metadata("design:type", Function),
84
+ __metadata("design:paramtypes", [inputs_1.GetRowCountReferencesByInput]),
85
+ __metadata("design:returntype", void 0)
86
+ ], RowResolver.prototype, "getRowCountReferencesTo", null);
87
+ __decorate([
88
+ (0, common_1.UseGuards)(optional_gql_jwt_auth_guard_service_1.OptionalGqlJwtAuthGuard, project_guard_1.GQLProjectGuard),
89
+ (0, graphql_1.Query)(() => rows_connection_model_1.RowsConnection),
90
+ __param(0, (0, graphql_1.Args)('data')),
91
+ __metadata("design:type", Function),
92
+ __metadata("design:paramtypes", [inputs_1.GetRowsInput]),
93
+ __metadata("design:returntype", void 0)
94
+ ], RowResolver.prototype, "rows", null);
95
+ __decorate([
96
+ (0, graphql_1.ResolveField)(() => rows_connection_model_1.RowsConnection),
97
+ __param(0, (0, graphql_1.Parent)()),
98
+ __param(1, (0, graphql_1.Args)('data')),
99
+ __metadata("design:type", Function),
100
+ __metadata("design:paramtypes", [row_model_1.RowModel,
101
+ get_row_references_input_1.GetRowReferencesInput]),
102
+ __metadata("design:returntype", void 0)
103
+ ], RowResolver.prototype, "rowReferencesBy", null);
104
+ __decorate([
105
+ (0, graphql_1.ResolveField)(() => graphql_1.Int),
106
+ __param(0, (0, graphql_1.Parent)()),
107
+ __metadata("design:type", Function),
108
+ __metadata("design:paramtypes", [row_model_1.RowModel]),
109
+ __metadata("design:returntype", void 0)
110
+ ], RowResolver.prototype, "countReferencesTo", null);
111
+ __decorate([
112
+ (0, graphql_1.ResolveField)(() => rows_connection_model_1.RowsConnection),
113
+ __param(0, (0, graphql_1.Parent)()),
114
+ __param(1, (0, graphql_1.Args)('data')),
115
+ __metadata("design:type", Function),
116
+ __metadata("design:paramtypes", [row_model_1.RowModel,
117
+ get_row_references_input_1.GetRowReferencesInput]),
118
+ __metadata("design:returntype", void 0)
119
+ ], RowResolver.prototype, "rowReferencesTo", null);
120
+ exports.RowResolver = RowResolver = __decorate([
121
+ (0, permission_params_1.PermissionParams)({
122
+ action: consts_1.PermissionAction.read,
123
+ subject: consts_1.PermissionSubject.Project,
124
+ }),
125
+ (0, graphql_1.Resolver)(() => row_model_1.RowModel),
126
+ __metadata("design:paramtypes", [cqrs_1.QueryBus])
127
+ ], RowResolver);
128
+ //# sourceMappingURL=row.resolver.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"row.resolver.js","sourceRoot":"","sources":["../../../../../src/api/graphql-api/row/row.resolver.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA2C;AAC3C,uCAAwC;AACxC,6CAOyB;AACzB,0DAA+E;AAC/E,+HAA2G;AAC3G,uFAA8E;AAC9E,+EAAyE;AACzE,qCAIwC;AACxC,gFAAgG;AAChG,iDAAmE;AACnE,yEAAqF;AACrF,6DAMuC;AACvC,oIAAuH;AAShH,IAAM,WAAW,GAAjB,MAAM,WAAW;IACtB,YAA6B,QAAkB;QAAlB,aAAQ,GAAR,QAAQ,CAAU;IAAG,CAAC;IAI5C,GAAG,CAAe,IAAiB;QACxC,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,kBAAW,CAAC,IAAI,CAAC,CACtB,CAAC;IACJ,CAAC;IAID,uBAAuB,CAAe,IAAkC;QACtE,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,wEAAgC,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3E,CAAC;IAID,IAAI,CAAe,IAAkB;QACnC,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,mBAAY,CAAC,IAAI,CAAC,CACvB,CAAC;IACJ,CAAC;IAGD,eAAe,CACH,GAAa,EACT,IAA2B;QAEzC,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,kCAA2B,CAAC;YAC9B,UAAU,EAAE,GAAG,CAAC,OAAO,CAAC,UAAU;YAClC,OAAO,EAAE,GAAG,CAAC,OAAO,CAAC,OAAO;YAC5B,KAAK,EAAE,GAAG,CAAC,EAAE;YACb,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;YACzC,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,KAAK,EAAE,IAAI,CAAC,KAAK;SAClB,CAAC,CACH,CAAC;IACJ,CAAC;IAGD,iBAAiB,CAAW,GAAa;QACvC,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,uCAAgC,CAAC;YACnC,UAAU,EAAE,GAAG,CAAC,OAAO,CAAC,UAAU;YAClC,OAAO,EAAE,GAAG,CAAC,OAAO,CAAC,OAAO;YAC5B,KAAK,EAAE,GAAG,CAAC,EAAE;SACd,CAAC,CACH,CAAC;IACJ,CAAC;IAGD,eAAe,CACH,GAAa,EACT,IAA2B;QAEzC,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,kCAA2B,CAAC;YAC9B,UAAU,EAAE,GAAG,CAAC,OAAO,CAAC,UAAU;YAClC,OAAO,EAAE,GAAG,CAAC,OAAO,CAAC,OAAO;YAC5B,KAAK,EAAE,GAAG,CAAC,EAAE;YACb,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;YACzC,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,KAAK,EAAE,IAAI,CAAC,KAAK;SAClB,CAAC,CACH,CAAC;IACJ,CAAC;CACF,CAAA;AArEY,kCAAW;AAKf;IAFN,IAAA,kBAAS,EAAC,6DAAuB,EAAE,+BAAe,CAAC;IACnD,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,oBAAQ,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9B,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCAAO,oBAAW;;sCAIzC;AAID;IAFC,IAAA,kBAAS,EAAC,6DAAuB,EAAE,+BAAe,CAAC;IACnD,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;IACQ,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCAAO,qCAA4B;;0DAEvE;AAID;IAFC,IAAA,kBAAS,EAAC,6DAAuB,EAAE,+BAAe,CAAC;IACnD,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,sCAAc,CAAC;IACtB,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCAAO,qBAAY;;uCAIpC;AAGD;IADC,IAAA,sBAAY,EAAC,GAAG,EAAE,CAAC,sCAAc,CAAC;IAEhC,WAAA,IAAA,gBAAM,GAAE,CAAA;IACR,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCADE,oBAAQ;QACH,gDAAqB;;kDAY1C;AAGD;IADC,IAAA,sBAAY,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;IACL,WAAA,IAAA,gBAAM,GAAE,CAAA;;qCAAM,oBAAQ;;oDAQxC;AAGD;IADC,IAAA,sBAAY,EAAC,GAAG,EAAE,CAAC,sCAAc,CAAC;IAEhC,WAAA,IAAA,gBAAM,GAAE,CAAA;IACR,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCADE,oBAAQ;QACH,gDAAqB;;kDAY1C;sBApEU,WAAW;IALvB,IAAA,oCAAgB,EAAC;QAChB,MAAM,EAAE,yBAAgB,CAAC,IAAI;QAC7B,OAAO,EAAE,0BAAiB,CAAC,OAAO;KACnC,CAAC;IACD,IAAA,kBAAQ,EAAC,GAAG,EAAE,CAAC,oBAAQ,CAAC;qCAEgB,eAAQ;GADpC,WAAW,CAqEvB"}
@@ -0,0 +1,9 @@
1
+ import { Type } from '@nestjs/common';
2
+ import { IPageInfo, IPaginatedType } from '../../../../features/share/pagination.interface';
3
+ export declare class PageInfo implements IPageInfo {
4
+ endCursor?: string;
5
+ hasNextPage: boolean;
6
+ hasPreviousPage: boolean;
7
+ startCursor?: string;
8
+ }
9
+ export declare function Paginated<T>(classRef: Type<T>): Type<IPaginatedType<T>>;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"paginated.model.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/share/model/paginated.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAsBA,8BAsBC;AA5CD,6CAAyD;AAQlD,IAAM,QAAQ,GAAd,MAAM,QAAQ;CAYpB,CAAA;AAZY,4BAAQ;AAEnB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACP;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,CAAC;;6CACA;AAGrB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,CAAC;;iDACI;AAGzB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACL;mBAXV,QAAQ;IADpB,IAAA,oBAAU,GAAE;GACA,QAAQ,CAYpB;AAED,SAAgB,SAAS,CAAI,QAAiB;IAE5C,IAAe,QAAQ,GAAvB,MAAe,QAAQ;KAMtB,CAAA;IAJC;QADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;4CACL;IAGf;QADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;;0CACd;IALK,QAAQ;QADtB,IAAA,oBAAU,EAAC,GAAG,QAAQ,CAAC,IAAI,MAAM,CAAC;OACpB,QAAQ,CAMtB;IAGD,IAAe,aAAa,GAA5B,MAAe,aAAa;KAS3B,CAAA;IAPC;QADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC;;gDACN;IAGlB;QADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;qDACE;IAGnB;QADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;kCACZ,QAAQ;mDAAC;IARN,aAAa;QAD3B,IAAA,oBAAU,EAAC,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC;OAClB,aAAa,CAS3B;IACD,OAAO,aAAwC,CAAC;AAClD,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-table-references.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/table/inputs/get-table-references.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAwD;AAGjD,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;CAMnC,CAAA;AANY,0DAAuB;AAElC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;sDACH;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACX;kCALJ,uBAAuB;IADnC,IAAA,mBAAS,GAAE;GACC,uBAAuB,CAMnC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-table-rows.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/table/inputs/get-table-rows.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAwD;AAGjD,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAM7B,CAAA;AANY,8CAAiB;AAE5B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;gDACH;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACX;4BALJ,iBAAiB;IAD7B,IAAA,mBAAS,GAAE;GACC,iBAAiB,CAM7B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-table.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/table/inputs/get-table.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmD;AAG5C,IAAM,aAAa,GAAnB,MAAM,aAAa;CAMzB,CAAA;AANY,sCAAa;AAExB;IADC,IAAA,eAAK,GAAE;;iDACW;AAGnB;IADC,IAAA,eAAK,GAAE;;8CACQ;wBALL,aAAa;IADzB,IAAA,mBAAS,GAAE;GACC,aAAa,CAMzB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-tables.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/table/inputs/get-tables.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAwD;AAGjD,IAAM,cAAc,GAApB,MAAM,cAAc;CAS1B,CAAA;AATY,wCAAc;AAEzB;IADC,IAAA,eAAK,GAAE;;kDACW;AAGnB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;6CACH;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACX;yBARJ,cAAc;IAD1B,IAAA,mBAAS,GAAE;GACC,cAAc,CAS1B"}
@@ -0,0 +1,5 @@
1
+ import { TableModel } from '../../../../api/graphql-api/table/model/table.model';
2
+ declare const TablesConnection_base: import("@nestjs/common").Type<import("../../../../features/share/pagination.interface").IPaginatedType<TableModel>>;
3
+ export declare class TablesConnection extends TablesConnection_base {
4
+ }
5
+ export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"table-connection.model.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/table/model/table-connection.model.ts"],"names":[],"mappings":";;;;;;;;;AAAA,6CAA6C;AAC7C,uEAA4E;AAC5E,+CAAyE;AAGlE,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,IAAA,2BAAS,EAAC,wBAAU,CAAC;CAAG,CAAA;AAAjD,4CAAgB;2BAAhB,gBAAgB;IAD5B,IAAA,oBAAU,GAAE;GACA,gBAAgB,CAAiC"}
@@ -0,0 +1,20 @@
1
+ import { Prisma } from '@prisma/client';
2
+ import { RowsConnection } from '../../../../api/graphql-api/row/model/rows-connection.model';
3
+ import { TablesConnection } from '../../../../api/graphql-api/table/model/table-connection.model';
4
+ export type TableModelContext = {
5
+ revisionId: string;
6
+ };
7
+ export declare class TableModel {
8
+ versionId: string;
9
+ createdAt: Date;
10
+ readonly: boolean;
11
+ id: string;
12
+ rows: RowsConnection;
13
+ count: number;
14
+ schema: Prisma.JsonValue;
15
+ referencesTo: TablesConnection;
16
+ countReferencesTo: number;
17
+ referencesBy: TablesConnection;
18
+ countReferencesBy: number;
19
+ context: TableModelContext;
20
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"table.model.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/table/model/table.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAyD;AACzD,2CAAwC;AACxC,yDAA4C;AAE5C,iFAAqF;AACrF,qEAA0F;AAOnF,IAAM,UAAU,GAAhB,MAAM,UAAU;CAmCtB,CAAA;AAnCY,gCAAU;AAErB;IADC,IAAA,eAAK,GAAE;;6CACU;AAGlB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;8BACP,IAAI;6CAAC;AAGhB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,CAAC;;4CACH;AAGlB;IADC,IAAA,eAAK,GAAE;;sCACG;AAGX;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,sCAAc,CAAC;8BACtB,sCAAc;wCAAC;AAGrB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;yCACH;AAGd;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,2BAAW,CAAC;;0CACA;AAGzB;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,yCAAgB,CAAC;8BAChB,yCAAgB;gDAAC;AAG/B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;qDACS;AAG1B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,yCAAgB,CAAC;8BAChB,yCAAgB;gDAAC;AAG/B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;qDACS;qBAhCf,UAAU;IADtB,IAAA,oBAAU,GAAE;GACA,UAAU,CAmCtB"}
@@ -0,0 +1,20 @@
1
+ import { QueryBus } from '@nestjs/cqrs';
2
+ import { GetTableReferencesInput } from '../../../api/graphql-api/table/inputs/get-table-references.input';
3
+ import { GetTableRowsInput } from '../../../api/graphql-api/table/inputs/get-table-rows.input';
4
+ import { GetTableInput } from '../../../api/graphql-api/table/inputs/get-table.input';
5
+ import { GetTablesInput } from '../../../api/graphql-api/table/inputs/get-tables.input';
6
+ import { TableModel } from '../../../api/graphql-api/table/model/table.model';
7
+ import { GetTableReturnType, GetTableRowsReturnType, GetTablesReturnType } from '../../../features/table/queries/types';
8
+ export declare class TableResolver {
9
+ private readonly queryBus;
10
+ constructor(queryBus: QueryBus);
11
+ table(data: GetTableInput): Promise<GetTableReturnType>;
12
+ tables(data: GetTablesInput): Promise<GetTablesReturnType>;
13
+ rows(table: TableModel, data: GetTableRowsInput): Promise<GetTableRowsReturnType>;
14
+ count(table: TableModel): Promise<any>;
15
+ schema(table: TableModel): Promise<any>;
16
+ countReferencesBy(table: TableModel): Promise<any>;
17
+ referencesBy(table: TableModel, data: GetTableReferencesInput): Promise<any>;
18
+ countReferencesTo(table: TableModel): Promise<any>;
19
+ referencesTo(table: TableModel, data: GetTableReferencesInput): Promise<any>;
20
+ }
@@ -0,0 +1,166 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.TableResolver = void 0;
16
+ const common_1 = require("@nestjs/common");
17
+ const cqrs_1 = require("@nestjs/cqrs");
18
+ const graphql_1 = require("@nestjs/graphql");
19
+ const consts_1 = require("../../../features/auth/consts");
20
+ const optional_gql_jwt_auth_guard_service_1 = require("../../../features/auth/guards/jwt/optional-gql-jwt-auth-guard.service");
21
+ const permission_params_1 = require("../../../features/auth/guards/permission-params");
22
+ const project_guard_1 = require("../../../features/auth/guards/project.guard");
23
+ const get_table_references_input_1 = require("./inputs/get-table-references.input");
24
+ const get_table_rows_input_1 = require("./inputs/get-table-rows.input");
25
+ const get_table_input_1 = require("./inputs/get-table.input");
26
+ const get_tables_input_1 = require("./inputs/get-tables.input");
27
+ const table_connection_model_1 = require("./model/table-connection.model");
28
+ const table_model_1 = require("./model/table.model");
29
+ const impl_1 = require("../../../features/table/queries/impl");
30
+ const get_rows_by_table_query_1 = require("../../../features/table/queries/impl/get-rows-by-table.query");
31
+ const get_table_query_1 = require("../../../features/table/queries/impl/get-table.query");
32
+ const get_tables_query_1 = require("../../../features/table/queries/impl/get-tables.query");
33
+ let TableResolver = class TableResolver {
34
+ constructor(queryBus) {
35
+ this.queryBus = queryBus;
36
+ }
37
+ table(data) {
38
+ return this.queryBus.execute(new get_table_query_1.GetTableQuery(data));
39
+ }
40
+ tables(data) {
41
+ return this.queryBus.execute(new get_tables_query_1.GetTablesQuery(data));
42
+ }
43
+ rows(table, data) {
44
+ return this.queryBus.execute(new get_rows_by_table_query_1.GetRowsByTableQuery({
45
+ revisionId: table.context.revisionId,
46
+ tableId: table.id,
47
+ tableVersionId: table.versionId,
48
+ ...data,
49
+ }));
50
+ }
51
+ count(table) {
52
+ return this.queryBus.execute(new impl_1.GetCountRowsInTableQuery({ tableVersionId: table.versionId }));
53
+ }
54
+ schema(table) {
55
+ return this.queryBus.execute(new impl_1.ResolveTableSchemaQuery({
56
+ revisionId: table.context.revisionId,
57
+ tableId: table.id,
58
+ }));
59
+ }
60
+ countReferencesBy(table) {
61
+ return this.queryBus.execute(new impl_1.ResolveTableCountReferencesByQuery({
62
+ revisionId: table.context.revisionId,
63
+ tableId: table.id,
64
+ }));
65
+ }
66
+ referencesBy(table, data) {
67
+ return this.queryBus.execute(new impl_1.ResolveTableReferencesByQuery({
68
+ revisionId: table.context.revisionId,
69
+ tableId: table.id,
70
+ ...data,
71
+ }));
72
+ }
73
+ countReferencesTo(table) {
74
+ return this.queryBus.execute(new impl_1.ResolveTableCountReferencesToQuery({
75
+ revisionId: table.context.revisionId,
76
+ tableId: table.id,
77
+ }));
78
+ }
79
+ referencesTo(table, data) {
80
+ return this.queryBus.execute(new impl_1.ResolveTableReferencesToQuery({
81
+ revisionId: table.context.revisionId,
82
+ tableId: table.id,
83
+ ...data,
84
+ }));
85
+ }
86
+ };
87
+ exports.TableResolver = TableResolver;
88
+ __decorate([
89
+ (0, common_1.UseGuards)(optional_gql_jwt_auth_guard_service_1.OptionalGqlJwtAuthGuard, project_guard_1.GQLProjectGuard),
90
+ (0, graphql_1.Query)(() => table_model_1.TableModel, { nullable: true }),
91
+ __param(0, (0, graphql_1.Args)('data')),
92
+ __metadata("design:type", Function),
93
+ __metadata("design:paramtypes", [get_table_input_1.GetTableInput]),
94
+ __metadata("design:returntype", void 0)
95
+ ], TableResolver.prototype, "table", null);
96
+ __decorate([
97
+ (0, common_1.UseGuards)(optional_gql_jwt_auth_guard_service_1.OptionalGqlJwtAuthGuard, project_guard_1.GQLProjectGuard),
98
+ (0, graphql_1.Query)(() => table_connection_model_1.TablesConnection),
99
+ __param(0, (0, graphql_1.Args)('data')),
100
+ __metadata("design:type", Function),
101
+ __metadata("design:paramtypes", [get_tables_input_1.GetTablesInput]),
102
+ __metadata("design:returntype", void 0)
103
+ ], TableResolver.prototype, "tables", null);
104
+ __decorate([
105
+ (0, graphql_1.ResolveField)(),
106
+ __param(0, (0, graphql_1.Parent)()),
107
+ __param(1, (0, graphql_1.Args)('data')),
108
+ __metadata("design:type", Function),
109
+ __metadata("design:paramtypes", [table_model_1.TableModel, get_table_rows_input_1.GetTableRowsInput]),
110
+ __metadata("design:returntype", void 0)
111
+ ], TableResolver.prototype, "rows", null);
112
+ __decorate([
113
+ (0, graphql_1.ResolveField)(),
114
+ __param(0, (0, graphql_1.Parent)()),
115
+ __metadata("design:type", Function),
116
+ __metadata("design:paramtypes", [table_model_1.TableModel]),
117
+ __metadata("design:returntype", void 0)
118
+ ], TableResolver.prototype, "count", null);
119
+ __decorate([
120
+ (0, graphql_1.ResolveField)(),
121
+ __param(0, (0, graphql_1.Parent)()),
122
+ __metadata("design:type", Function),
123
+ __metadata("design:paramtypes", [table_model_1.TableModel]),
124
+ __metadata("design:returntype", void 0)
125
+ ], TableResolver.prototype, "schema", null);
126
+ __decorate([
127
+ (0, graphql_1.ResolveField)(),
128
+ __param(0, (0, graphql_1.Parent)()),
129
+ __metadata("design:type", Function),
130
+ __metadata("design:paramtypes", [table_model_1.TableModel]),
131
+ __metadata("design:returntype", void 0)
132
+ ], TableResolver.prototype, "countReferencesBy", null);
133
+ __decorate([
134
+ (0, graphql_1.ResolveField)(),
135
+ __param(0, (0, graphql_1.Parent)()),
136
+ __param(1, (0, graphql_1.Args)('data')),
137
+ __metadata("design:type", Function),
138
+ __metadata("design:paramtypes", [table_model_1.TableModel,
139
+ get_table_references_input_1.GetTableReferencesInput]),
140
+ __metadata("design:returntype", void 0)
141
+ ], TableResolver.prototype, "referencesBy", null);
142
+ __decorate([
143
+ (0, graphql_1.ResolveField)(),
144
+ __param(0, (0, graphql_1.Parent)()),
145
+ __metadata("design:type", Function),
146
+ __metadata("design:paramtypes", [table_model_1.TableModel]),
147
+ __metadata("design:returntype", void 0)
148
+ ], TableResolver.prototype, "countReferencesTo", null);
149
+ __decorate([
150
+ (0, graphql_1.ResolveField)(),
151
+ __param(0, (0, graphql_1.Parent)()),
152
+ __param(1, (0, graphql_1.Args)('data')),
153
+ __metadata("design:type", Function),
154
+ __metadata("design:paramtypes", [table_model_1.TableModel,
155
+ get_table_references_input_1.GetTableReferencesInput]),
156
+ __metadata("design:returntype", void 0)
157
+ ], TableResolver.prototype, "referencesTo", null);
158
+ exports.TableResolver = TableResolver = __decorate([
159
+ (0, permission_params_1.PermissionParams)({
160
+ action: consts_1.PermissionAction.read,
161
+ subject: consts_1.PermissionSubject.Project,
162
+ }),
163
+ (0, graphql_1.Resolver)(() => table_model_1.TableModel),
164
+ __metadata("design:paramtypes", [cqrs_1.QueryBus])
165
+ ], TableResolver);
166
+ //# sourceMappingURL=table.resolver.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"table.resolver.js","sourceRoot":"","sources":["../../../../../src/api/graphql-api/table/table.resolver.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA2C;AAC3C,uCAAwC;AACxC,6CAA8E;AAC9E,0DAA+E;AAC/E,+HAA2G;AAC3G,uFAA8E;AAC9E,+EAAyE;AACzE,oFAAsG;AACtG,wEAA0F;AAC1F,8DAAiF;AACjF,gEAAmF;AACnF,2EAA0F;AAC1F,qDAAyE;AACzE,+DAOyC;AACzC,0GAA8F;AAC9F,0FAAgF;AAChF,4FAAkF;AAY3E,IAAM,aAAa,GAAnB,MAAM,aAAa;IACxB,YAA6B,QAAkB;QAAlB,aAAQ,GAAR,QAAQ,CAAU;IAAG,CAAC;IAInD,KAAK,CAAe,IAAmB;QACrC,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,+BAAa,CAAC,IAAI,CAAC,CACxB,CAAC;IACJ,CAAC;IAID,MAAM,CAAe,IAAoB;QACvC,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,iCAAc,CAAC,IAAI,CAAC,CACzB,CAAC;IACJ,CAAC;IAGD,IAAI,CAAW,KAAiB,EAAgB,IAAuB;QACrE,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,6CAAmB,CAAC;YACtB,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,UAAU;YACpC,OAAO,EAAE,KAAK,CAAC,EAAE;YACjB,cAAc,EAAE,KAAK,CAAC,SAAS;YAC/B,GAAG,IAAI;SACR,CAAC,CACH,CAAC;IACJ,CAAC;IAGD,KAAK,CAAW,KAAiB;QAC/B,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,+BAAwB,CAAC,EAAE,cAAc,EAAE,KAAK,CAAC,SAAS,EAAE,CAAC,CAClE,CAAC;IACJ,CAAC;IAGD,MAAM,CAAW,KAAiB;QAChC,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,8BAAuB,CAAC;YAC1B,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,UAAU;YACpC,OAAO,EAAE,KAAK,CAAC,EAAE;SAClB,CAAC,CACH,CAAC;IACJ,CAAC;IAGD,iBAAiB,CAAW,KAAiB;QAC3C,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,yCAAkC,CAAC;YACrC,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,UAAU;YACpC,OAAO,EAAE,KAAK,CAAC,EAAE;SAClB,CAAC,CACH,CAAC;IACJ,CAAC;IAGD,YAAY,CACA,KAAiB,EACb,IAA6B;QAE3C,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,oCAA6B,CAAC;YAChC,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,UAAU;YACpC,OAAO,EAAE,KAAK,CAAC,EAAE;YACjB,GAAG,IAAI;SACR,CAAC,CACH,CAAC;IACJ,CAAC;IAGD,iBAAiB,CAAW,KAAiB;QAC3C,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,yCAAkC,CAAC;YACrC,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,UAAU;YACpC,OAAO,EAAE,KAAK,CAAC,EAAE;SAClB,CAAC,CACH,CAAC;IACJ,CAAC;IAGD,YAAY,CACA,KAAiB,EACb,IAA6B;QAE3C,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAC1B,IAAI,oCAA6B,CAAC;YAChC,UAAU,EAAE,KAAK,CAAC,OAAO,CAAC,UAAU;YACpC,OAAO,EAAE,KAAK,CAAC,EAAE;YACjB,GAAG,IAAI;SACR,CAAC,CACH,CAAC;IACJ,CAAC;CACF,CAAA;AA/FY,sCAAa;AAKxB;IAFC,IAAA,kBAAS,EAAC,6DAAuB,EAAE,+BAAe,CAAC;IACnD,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,wBAAU,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACrC,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCAAO,+BAAa;;0CAItC;AAID;IAFC,IAAA,kBAAS,EAAC,6DAAuB,EAAE,+BAAe,CAAC;IACnD,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,yCAAgB,CAAC;IACtB,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCAAO,iCAAc;;2CAIxC;AAGD;IADC,IAAA,sBAAY,GAAE;IACT,WAAA,IAAA,gBAAM,GAAE,CAAA;IAAqB,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCAAzB,wBAAU,EAAsB,wCAAiB;;yCAStE;AAGD;IADC,IAAA,sBAAY,GAAE;IACR,WAAA,IAAA,gBAAM,GAAE,CAAA;;qCAAQ,wBAAU;;0CAIhC;AAGD;IADC,IAAA,sBAAY,GAAE;IACP,WAAA,IAAA,gBAAM,GAAE,CAAA;;qCAAQ,wBAAU;;2CAOjC;AAGD;IADC,IAAA,sBAAY,GAAE;IACI,WAAA,IAAA,gBAAM,GAAE,CAAA;;qCAAQ,wBAAU;;sDAO5C;AAGD;IADC,IAAA,sBAAY,GAAE;IAEZ,WAAA,IAAA,gBAAM,GAAE,CAAA;IACR,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCADI,wBAAU;QACP,oDAAuB;;iDAS5C;AAGD;IADC,IAAA,sBAAY,GAAE;IACI,WAAA,IAAA,gBAAM,GAAE,CAAA;;qCAAQ,wBAAU;;sDAO5C;AAGD;IADC,IAAA,sBAAY,GAAE;IAEZ,WAAA,IAAA,gBAAM,GAAE,CAAA;IACR,WAAA,IAAA,cAAI,EAAC,MAAM,CAAC,CAAA;;qCADI,wBAAU;QACP,oDAAuB;;iDAS5C;wBA9FU,aAAa;IALzB,IAAA,oCAAgB,EAAC;QAChB,MAAM,EAAE,yBAAgB,CAAC,IAAI;QAC7B,OAAO,EAAE,0BAAiB,CAAC,OAAO;KACnC,CAAC;IACD,IAAA,kBAAQ,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC;qCAEc,eAAQ;GADpC,aAAa,CA+FzB"}
@@ -0,0 +1,3 @@
1
+ export * from '../../../../api/graphql-api/user/inputs/update-password.input';
2
+ export * from '../../../../api/graphql-api/user/inputs/me-projects.input';
3
+ export * from '../../../../api/graphql-api/user/inputs/set-username.input';
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/user/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAsE;AACtE,sDAAkE;AAClE,uDAAmE"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"me-projects.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/user/inputs/me-projects.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAwD;AAGjD,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;CAM9B,CAAA;AANY,gDAAkB;AAE7B;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,aAAG,CAAC;;iDACH;AAGd;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACX;6BALJ,kBAAkB;IAD9B,IAAA,mBAAS,GAAE;GACC,kBAAkB,CAM9B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"set-username.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/user/inputs/set-username.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmD;AAG5C,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAG5B,CAAA;AAHY,4CAAgB;AAE3B;IADC,IAAA,eAAK,GAAE;;kDACS;2BAFN,gBAAgB;IAD5B,IAAA,mBAAS,GAAE;GACC,gBAAgB,CAG5B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-password.input.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/user/inputs/update-password.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmD;AAG5C,IAAM,mBAAmB,GAAzB,MAAM,mBAAmB;CAI/B,CAAA;AAJY,kDAAmB;AACrB;IAAR,IAAA,eAAK,GAAE;;wDAAqB;AAEpB;IAAR,IAAA,eAAK,GAAE;;wDAAqB;8BAHlB,mBAAmB;IAD/B,IAAA,mBAAS,GAAE;GACC,mBAAmB,CAI/B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user.model.js","sourceRoot":"","sources":["../../../../../../src/api/graphql-api/user/model/user.model.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAoD;AAG7C,IAAM,SAAS,GAAf,MAAM,SAAS;CAYrB,CAAA;AAZY,8BAAS;AAEpB;IADC,IAAA,eAAK,GAAE;;qCACG;AAGX;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACF;AAGxB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACR;AAGlB;IADC,IAAA,eAAK,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCACX;oBAXJ,SAAS;IADrB,IAAA,oBAAU,GAAE;GACA,SAAS,CAYrB"}
@@ -0,0 +1,15 @@
1
+ import { CommandBus, QueryBus } from '@nestjs/cqrs';
2
+ import { IAuthUser } from '../../../features/auth/types';
3
+ import { GetMeProjectsInput, SetUsernameInput, UpdatePasswordInput } from '../../../api/graphql-api/user/inputs';
4
+ import { UserModel } from '../../../api/graphql-api/user/model/user.model';
5
+ import { GetProjectsByUserIdQueryReturnType, GetUserOrganizationQueryReturnType, GetUserQueryReturnType } from '../../../features/user/queries/impl';
6
+ export declare class UserResolver {
7
+ private readonly queryBus;
8
+ private readonly commandBus;
9
+ constructor(queryBus: QueryBus, commandBus: CommandBus);
10
+ me(user: IAuthUser): Promise<GetUserQueryReturnType>;
11
+ meProjects(data: GetMeProjectsInput, user: IAuthUser): Promise<GetProjectsByUserIdQueryReturnType>;
12
+ updatePassword(data: UpdatePasswordInput, user: IAuthUser): Promise<boolean>;
13
+ setUsername(data: SetUsernameInput, user: IAuthUser): Promise<boolean>;
14
+ organizationId(parent: UserModel): Promise<GetUserOrganizationQueryReturnType>;
15
+ }