@revisium/core 0.9.3 → 0.9.4

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 (324) hide show
  1. package/dist/package.json +4 -2
  2. package/dist/src/__tests__/utils/createMocks.d.ts +5 -5
  3. package/dist/src/__tests__/utils/implementIdService.d.ts +1 -1
  4. package/dist/src/__tests__/utils/rowMocks.d.ts +1 -1
  5. package/dist/src/__tests__/utils/schema/schema.mocks.d.ts +2 -2
  6. package/dist/src/admin/admin-module.options.d.ts +3 -0
  7. package/dist/src/admin/admin-module.options.js +3 -0
  8. package/dist/src/admin/admin-module.options.js.map +1 -0
  9. package/dist/src/admin/admin.module.d.ts +6 -0
  10. package/dist/src/admin/admin.module.js +46 -0
  11. package/dist/src/admin/admin.module.js.map +1 -0
  12. package/dist/src/admin/envjs.controller.d.ts +6 -0
  13. package/dist/src/admin/envjs.controller.js +40 -0
  14. package/dist/src/admin/envjs.controller.js.map +1 -0
  15. package/dist/src/admin/index.d.ts +0 -0
  16. package/dist/src/admin/index.js +1 -0
  17. package/dist/src/admin/index.js.map +1 -0
  18. package/dist/src/auth/auth.service.d.ts +1 -1
  19. package/dist/src/auth/casl-ability.factory.d.ts +2 -2
  20. package/dist/src/auth/commands/handlers/check-organization-permission.handler.d.ts +3 -3
  21. package/dist/src/auth/commands/handlers/check-project-permission.handler.d.ts +3 -3
  22. package/dist/src/auth/commands/handlers/check-system-permission.handler.d.ts +3 -3
  23. package/dist/src/auth/commands/handlers/confirm-email-code.handler.d.ts +1 -1
  24. package/dist/src/auth/commands/handlers/create-user.handler.d.ts +4 -4
  25. package/dist/src/auth/commands/handlers/login-github.handler.d.ts +4 -4
  26. package/dist/src/auth/commands/handlers/login-google.handler.d.ts +4 -4
  27. package/dist/src/auth/commands/handlers/login.handler.d.ts +3 -3
  28. package/dist/src/auth/commands/handlers/sign-up.handler.d.ts +1 -1
  29. package/dist/src/auth/commands/impl/check-organization-permission.command.d.ts +1 -1
  30. package/dist/src/auth/commands/impl/check-project-permission.command.d.ts +1 -1
  31. package/dist/src/auth/commands/impl/check-system-permission.command.d.ts +1 -1
  32. package/dist/src/auth/commands/impl/create-user.command.d.ts +1 -1
  33. package/dist/src/auth/commands/index.d.ts +1 -1
  34. package/dist/src/auth/guards/base-persmission.guard.d.ts +2 -2
  35. package/dist/src/auth/guards/organization.guard.d.ts +3 -3
  36. package/dist/src/auth/guards/permission-params.d.ts +1 -1
  37. package/dist/src/auth/guards/project.guard.d.ts +3 -3
  38. package/dist/src/auth/guards/system.guard.d.ts +3 -3
  39. package/dist/src/auth/strategy/jwt.strategy.d.ts +2 -2
  40. package/dist/src/auth/utils.d.ts +1 -1
  41. package/dist/src/branch/commands/handlers/api-create-branch-by-revision-id.handler.d.ts +1 -1
  42. package/dist/src/branch/commands/handlers/create-branch-by-revision-id.handler.d.ts +3 -3
  43. package/dist/src/branch/commands/handlers/index.d.ts +2 -2
  44. package/dist/src/branch/quieries/handlers/get-branch-by-id.handler.d.ts +3 -3
  45. package/dist/src/branch/quieries/handlers/get-branch.handler.d.ts +4 -4
  46. package/dist/src/branch/quieries/handlers/get-branches.handler.d.ts +3 -3
  47. package/dist/src/branch/quieries/handlers/get-draft-revision.handler.d.ts +3 -3
  48. package/dist/src/branch/quieries/handlers/get-head-revision.handler.d.ts +3 -3
  49. package/dist/src/branch/quieries/handlers/get-project-by-branch.handler.d.ts +2 -2
  50. package/dist/src/branch/quieries/handlers/get-revisions-by-branch-id.handler.d.ts +2 -2
  51. package/dist/src/branch/quieries/handlers/get-start-revision.handler.d.ts +3 -3
  52. package/dist/src/branch/quieries/handlers/get-touched-by-branch-id.handler.d.ts +3 -3
  53. package/dist/src/branch/quieries/handlers/index.d.ts +10 -10
  54. package/dist/src/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.d.ts +2 -2
  55. package/dist/src/clean/commands/handlers/clean-rows.handler.d.ts +2 -2
  56. package/dist/src/clean/commands/handlers/clean-tables.handler.d.ts +2 -2
  57. package/dist/src/clean/commands/handlers/index.d.ts +2 -2
  58. package/dist/src/configuration/queries/handlers/get-configuration.handler.d.ts +4 -4
  59. package/dist/src/configuration/queries/index.d.ts +1 -1
  60. package/dist/src/database/transaction-prisma.service.d.ts +2 -2
  61. package/dist/src/draft/commands/handlers/api-create-revision.handler.d.ts +3 -3
  62. package/dist/src/draft/commands/handlers/api-create-row.handler.d.ts +4 -4
  63. package/dist/src/draft/commands/handlers/api-create-table.handler.d.ts +4 -4
  64. package/dist/src/draft/commands/handlers/api-remove-row.handler.d.ts +4 -4
  65. package/dist/src/draft/commands/handlers/api-remove-table.handler.d.ts +4 -4
  66. package/dist/src/draft/commands/handlers/api-revert-changes.handler.d.ts +3 -3
  67. package/dist/src/draft/commands/handlers/api-update-row.handler.d.ts +4 -4
  68. package/dist/src/draft/commands/handlers/api-update-table.handler.d.ts +4 -4
  69. package/dist/src/draft/commands/handlers/create-revision.handler.d.ts +8 -8
  70. package/dist/src/draft/commands/handlers/create-row.handler.d.ts +12 -12
  71. package/dist/src/draft/commands/handlers/create-table.handler.d.ts +11 -11
  72. package/dist/src/draft/commands/handlers/index.d.ts +24 -24
  73. package/dist/src/draft/commands/handlers/remove-row.handler.d.ts +12 -12
  74. package/dist/src/draft/commands/handlers/remove-table.handler.d.ts +11 -11
  75. package/dist/src/draft/commands/handlers/revert-changes.handler.d.ts +6 -6
  76. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-row.handler.d.ts +8 -8
  77. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.d.ts +8 -8
  78. package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-table.handler.d.ts +7 -7
  79. package/dist/src/draft/commands/handlers/transactional/resolve-draft-revision.handler.d.ts +3 -3
  80. package/dist/src/draft/commands/handlers/transactional/validate-data.handler.d.ts +4 -4
  81. package/dist/src/draft/commands/handlers/transactional/validate-not-system-table.handler.d.ts +3 -3
  82. package/dist/src/draft/commands/handlers/transactional/validate-schema.handler.d.ts +4 -4
  83. package/dist/src/draft/commands/handlers/update-row.handler.d.ts +8 -8
  84. package/dist/src/draft/commands/handlers/update-rows.handler.d.ts +7 -7
  85. package/dist/src/draft/commands/handlers/update-table.handler.d.ts +9 -9
  86. package/dist/src/draft/commands/impl/api-update-table.command.d.ts +1 -1
  87. package/dist/src/draft/commands/impl/transactional/validate-data.command.d.ts +1 -1
  88. package/dist/src/draft/commands/impl/update-rows.command.d.ts +1 -1
  89. package/dist/src/draft/commands/impl/update-table.command.d.ts +1 -1
  90. package/dist/src/draft/commands/types/api-create-row.handler.types.d.ts +2 -2
  91. package/dist/src/draft/commands/types/api-remove-row.handler.types.d.ts +2 -2
  92. package/dist/src/draft/commands/types/api-remove-table.handler.types.d.ts +1 -1
  93. package/dist/src/draft/commands/types/api-update-row.handler.types.d.ts +2 -2
  94. package/dist/src/draft/commands/types/api-update-table.handler.types.d.ts +1 -1
  95. package/dist/src/draft/draft-request-dto/draft-revision-request.dto.d.ts +1 -1
  96. package/dist/src/draft/draft-request-dto/index.d.ts +4 -4
  97. package/dist/src/draft/draft-request-dto/row-request.dto.d.ts +1 -1
  98. package/dist/src/draft/draft-request-dto/rows-request.dto.d.ts +1 -1
  99. package/dist/src/draft/draft-request-dto/table-request.dto.d.ts +1 -1
  100. package/dist/src/draft/draft.handler.d.ts +2 -2
  101. package/dist/src/draft/draft.transactional.commands.d.ts +1 -1
  102. package/dist/src/draft/session-changelog.service.d.ts +4 -4
  103. package/dist/src/email/email.service.d.ts +2 -2
  104. package/dist/src/endpoint/commands/handlers/api-create-endpoint.handler.d.ts +1 -1
  105. package/dist/src/endpoint/commands/handlers/create-endpoint.handler.d.ts +3 -3
  106. package/dist/src/endpoint/commands/handlers/delete-endpoint.handler.d.ts +3 -3
  107. package/dist/src/endpoint/commands/handlers/index.d.ts +3 -3
  108. package/dist/src/endpoint/queries/handlers/get-created-endpoint.handler.d.ts +2 -2
  109. package/dist/src/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.d.ts +2 -2
  110. package/dist/src/endpoint/queries/handlers/index.d.ts +2 -2
  111. package/dist/src/endpoint/queries/impl/index.d.ts +1 -1
  112. package/dist/src/graphql-api/auth/auth.resolver.d.ts +2 -2
  113. package/dist/src/graphql-api/auth/inputs/create-user.input.d.ts +1 -1
  114. package/dist/src/graphql-api/branch/branch.resolver.d.ts +6 -6
  115. package/dist/src/graphql-api/branch/inputs/index.d.ts +5 -5
  116. package/dist/src/graphql-api/branch/model/branch.model.d.ts +3 -3
  117. package/dist/src/graphql-api/branch/model/parent-branch.model.d.ts +2 -2
  118. package/dist/src/graphql-api/branch/parent-branch.resolver.d.ts +1 -1
  119. package/dist/src/graphql-api/configuration/configuration.resolver.d.ts +1 -1
  120. package/dist/src/graphql-api/draft/draft.resolver.d.ts +2 -2
  121. package/dist/src/graphql-api/draft/input/create-row.input.d.ts +1 -1
  122. package/dist/src/graphql-api/draft/input/index.d.ts +5 -5
  123. package/dist/src/graphql-api/draft/input/remove-row.input.d.ts +1 -1
  124. package/dist/src/graphql-api/draft/input/update-row.input.d.ts +1 -1
  125. package/dist/src/graphql-api/draft/input/update-table.input.d.ts +1 -1
  126. package/dist/src/graphql-api/draft/model/create-row-result.model.d.ts +2 -2
  127. package/dist/src/graphql-api/draft/model/create-table-result.model.d.ts +2 -2
  128. package/dist/src/graphql-api/draft/model/remove-row-result.model.d.ts +2 -2
  129. package/dist/src/graphql-api/draft/model/remove-table-result.model.d.ts +1 -1
  130. package/dist/src/graphql-api/draft/model/update-row-result.model.d.ts +2 -2
  131. package/dist/src/graphql-api/draft/model/update-table-result.model.d.ts +1 -1
  132. package/dist/src/graphql-api/endpoint/endpoint.resolver.d.ts +2 -2
  133. package/dist/src/graphql-api/endpoint/inputs/create-endpoint.input.d.ts +1 -1
  134. package/dist/src/graphql-api/endpoint/inputs/index.d.ts +3 -3
  135. package/dist/src/graphql-api/endpoint/model/endpoint.model.d.ts +1 -1
  136. package/dist/src/graphql-api/endpoint/model/index.d.ts +1 -1
  137. package/dist/src/graphql-api/organization/inputs/add-user-to-organization.input.d.ts +1 -1
  138. package/dist/src/graphql-api/organization/model/users-organization.connection.d.ts +1 -1
  139. package/dist/src/graphql-api/organization/model/users-organization.model.d.ts +2 -2
  140. package/dist/src/graphql-api/organization/organization.resolver.d.ts +4 -4
  141. package/dist/src/graphql-api/project/inputs/add-user-to-project.input.d.ts +1 -1
  142. package/dist/src/graphql-api/project/inputs/index.d.ts +7 -7
  143. package/dist/src/graphql-api/project/model/index.d.ts +1 -1
  144. package/dist/src/graphql-api/project/model/project.model.d.ts +1 -1
  145. package/dist/src/graphql-api/project/model/projects.connection.d.ts +1 -1
  146. package/dist/src/graphql-api/project/model/users-project.connection.d.ts +1 -1
  147. package/dist/src/graphql-api/project/model/users-project.model.d.ts +2 -2
  148. package/dist/src/graphql-api/project/project.resolver.d.ts +3 -3
  149. package/dist/src/graphql-api/revision/child-branch.resolver.d.ts +1 -1
  150. package/dist/src/graphql-api/revision/model/child-branch.model.d.ts +2 -2
  151. package/dist/src/graphql-api/revision/model/revision.model.d.ts +4 -4
  152. package/dist/src/graphql-api/revision/revision.resolver.d.ts +4 -4
  153. package/dist/src/graphql-api/row/inputs/index.d.ts +3 -3
  154. package/dist/src/graphql-api/row/model/row-reference.model.d.ts +2 -2
  155. package/dist/src/graphql-api/row/model/row-references-connection.model.d.ts +1 -1
  156. package/dist/src/graphql-api/row/model/row.model.d.ts +1 -1
  157. package/dist/src/graphql-api/row/model/rows-connection.model.d.ts +1 -1
  158. package/dist/src/graphql-api/row/row.resolver.d.ts +5 -5
  159. package/dist/src/graphql-api/share/model/paginated.model.d.ts +1 -1
  160. package/dist/src/graphql-api/table/model/table-connection.model.d.ts +1 -1
  161. package/dist/src/graphql-api/table/model/table.model.d.ts +2 -2
  162. package/dist/src/graphql-api/table/table.resolver.d.ts +6 -6
  163. package/dist/src/graphql-api/user/user.resolver.d.ts +4 -4
  164. package/dist/src/index.d.ts +5 -4
  165. package/dist/src/index.js +7 -7
  166. package/dist/src/index.js.map +1 -1
  167. package/dist/src/metrics/graphql/graphql-metrics.plugin.d.ts +1 -1
  168. package/dist/src/metrics/rest/rest-metrics.interceptor.d.ts +1 -1
  169. package/dist/src/metrics-api/metrics.controller.d.ts +1 -1
  170. package/dist/src/notification/in-memory-server.d.ts +6 -0
  171. package/dist/src/notification/in-memory-server.js +19 -0
  172. package/dist/src/notification/in-memory-server.js.map +1 -0
  173. package/dist/src/organization/commands/handlers/add-user-to-organization.handler.d.ts +3 -3
  174. package/dist/src/organization/commands/handlers/remove-user-from-organization.handler.d.ts +2 -2
  175. package/dist/src/organization/commands/impl/add-user-to-organization.command.d.ts +1 -1
  176. package/dist/src/organization/commands/index.d.ts +1 -1
  177. package/dist/src/organization/queries/handlers/get-projects-by-organization-id.handler.d.ts +2 -2
  178. package/dist/src/organization/queries/handlers/get-users-organization.handler.d.ts +2 -2
  179. package/dist/src/organization/queries/handlers/index.d.ts +1 -1
  180. package/dist/src/organization/queries/impl/get-projects-by-organization-id.query.d.ts +1 -1
  181. package/dist/src/organization/queries/impl/get-users-organization.query.d.ts +1 -1
  182. package/dist/src/organization/queries/impl/index.d.ts +1 -1
  183. package/dist/src/organization/queries/index.d.ts +2 -2
  184. package/dist/src/project/commands/handlers/add-user-to-project.handler.d.ts +3 -3
  185. package/dist/src/project/commands/handlers/api-create-project.handler.d.ts +1 -1
  186. package/dist/src/project/commands/handlers/create-project.handler.d.ts +3 -3
  187. package/dist/src/project/commands/handlers/delete-project.handler.d.ts +4 -4
  188. package/dist/src/project/commands/handlers/index.d.ts +6 -6
  189. package/dist/src/project/commands/handlers/remove-user-from-project.handler.d.ts +2 -2
  190. package/dist/src/project/commands/handlers/update-project.handler.d.ts +3 -3
  191. package/dist/src/project/commands/impl/add-user-to-project.command.d.ts +1 -1
  192. package/dist/src/project/queries/handlers/get-all-branches-by-project.handler.d.ts +2 -2
  193. package/dist/src/project/queries/handlers/get-project-by-id.handler.d.ts +2 -2
  194. package/dist/src/project/queries/handlers/get-project.handler.d.ts +3 -3
  195. package/dist/src/project/queries/handlers/get-root-branch-by-project.handler.d.ts +2 -2
  196. package/dist/src/project/queries/handlers/get-users-project.handler.d.ts +2 -2
  197. package/dist/src/project/queries/handlers/index.d.ts +5 -5
  198. package/dist/src/project/queries/impl/get-users-project.query.d.ts +1 -1
  199. package/dist/src/rest-api/auth/auth.controller.d.ts +3 -3
  200. package/dist/src/rest-api/auth/dto/create-user.dto.d.ts +1 -1
  201. package/dist/src/rest-api/branch/branch-by-name.controller.d.ts +3 -3
  202. package/dist/src/rest-api/configuration/configuration.controller.d.ts +1 -1
  203. package/dist/src/rest-api/organization/dto/add-user-to-organization.dto.d.ts +1 -1
  204. package/dist/src/rest-api/organization/dto/index.d.ts +5 -5
  205. package/dist/src/rest-api/organization/model/users-organization.model.d.ts +2 -2
  206. package/dist/src/rest-api/organization/organization.controller.d.ts +4 -4
  207. package/dist/src/rest-api/project/dto/add-user-to-project.dto.d.ts +1 -1
  208. package/dist/src/rest-api/project/model/users-project.model.d.ts +2 -2
  209. package/dist/src/rest-api/project/project.controller.d.ts +6 -6
  210. package/dist/src/rest-api/revision/dto/index.d.ts +3 -3
  211. package/dist/src/rest-api/revision/model/create-table.response.d.ts +2 -2
  212. package/dist/src/rest-api/revision/revision-by-id.controller.d.ts +7 -7
  213. package/dist/src/rest-api/row/model/remove-row.response.d.ts +2 -2
  214. package/dist/src/rest-api/row/model/update-row.response.d.ts +2 -2
  215. package/dist/src/rest-api/row/row-by-id.controller.d.ts +3 -3
  216. package/dist/src/rest-api/share/utils/transformFromPrismaToBranchModel.d.ts +1 -1
  217. package/dist/src/rest-api/share/utils/transformFromPrismaToEndpointsModel.d.ts +1 -1
  218. package/dist/src/rest-api/share/utils/transformFromPrismaToRevisionModel.d.ts +2 -2
  219. package/dist/src/rest-api/share/utils/transformFromPrismaToRowModel.d.ts +2 -2
  220. package/dist/src/rest-api/share/utils/transformFromPrismaToTableModel.d.ts +2 -2
  221. package/dist/src/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.d.ts +3 -3
  222. package/dist/src/rest-api/share/utils/transformFromPrismaToUserProjectModel.d.ts +3 -3
  223. package/dist/src/rest-api/table/dto/update-table.dto.d.ts +1 -1
  224. package/dist/src/rest-api/table/model/create-row.response.d.ts +1 -1
  225. package/dist/src/rest-api/table/model/update-table.response.d.ts +1 -1
  226. package/dist/src/rest-api/table/table-by-id.controller.d.ts +6 -6
  227. package/dist/src/rest-api/user/user.controller.d.ts +2 -2
  228. package/dist/src/revision/queries/commands/get-children-by-revision.handler.d.ts +2 -2
  229. package/dist/src/revision/queries/commands/get-endpoints-by-revision-id.handler.d.ts +3 -3
  230. package/dist/src/revision/queries/commands/get-revision.handler.d.ts +2 -2
  231. package/dist/src/revision/queries/commands/get-tables-by-revision-id.handler.d.ts +3 -3
  232. package/dist/src/revision/queries/commands/index.d.ts +8 -8
  233. package/dist/src/revision/queries/commands/resolve-branch-by-revision.handler.d.ts +2 -2
  234. package/dist/src/revision/queries/commands/resolve-child-branches-by-revision.handler.d.ts +2 -2
  235. package/dist/src/revision/queries/commands/resolve-child-by-revision.handler.d.ts +2 -2
  236. package/dist/src/revision/queries/commands/resolve-parent-by-revision.handler.d.ts +2 -2
  237. package/dist/src/revision/queries/types/get-revision-tables.types.d.ts +2 -2
  238. package/dist/src/revision/queries/types/index.d.ts +1 -1
  239. package/dist/src/row/queries/handlers/get-row-by-id.handler.d.ts +3 -3
  240. package/dist/src/row/queries/handlers/get-row.handler.d.ts +4 -4
  241. package/dist/src/row/queries/handlers/get-rows.handler.d.ts +4 -4
  242. package/dist/src/row/queries/handlers/index.d.ts +7 -7
  243. package/dist/src/row/queries/handlers/resolve-row-count-references-by.handler.d.ts +5 -5
  244. package/dist/src/row/queries/handlers/resolve-row-count-references-to.handler.d.ts +3 -3
  245. package/dist/src/row/queries/handlers/resolve-row-references-by.handler.d.ts +5 -5
  246. package/dist/src/row/queries/handlers/resolve-row-references-to.handler.d.ts +5 -5
  247. package/dist/src/row/queries/impl/index.d.ts +4 -4
  248. package/dist/src/row/queries/types/get-row-by-id.types.d.ts +1 -1
  249. package/dist/src/row/queries/types/get-row.types.d.ts +1 -1
  250. package/dist/src/row/queries/types/get-rows.types.d.ts +2 -2
  251. package/dist/src/row/queries/types/resolve-row-references-by.types.d.ts +2 -2
  252. package/dist/src/row/queries/types/resolve-row-references-to.types.d.ts +2 -2
  253. package/dist/src/share/commands/handlers/index.d.ts +1 -1
  254. package/dist/src/share/commands/handlers/notify-endpoints.handler.d.ts +3 -3
  255. package/dist/src/share/commands/handlers/transactional/move-endpoints.handler.d.ts +2 -2
  256. package/dist/src/share/commands/utils/getOffsetPagination.d.ts +1 -1
  257. package/dist/src/share/commands/utils/getRevisionCursorPagination.d.ts +1 -1
  258. package/dist/src/share/const.d.ts +1 -1
  259. package/dist/src/share/queries/handlers/index.d.ts +3 -3
  260. package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.d.ts +3 -3
  261. package/dist/src/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.d.ts +3 -3
  262. package/dist/src/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.d.ts +3 -3
  263. package/dist/src/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.d.ts +3 -3
  264. package/dist/src/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.d.ts +3 -3
  265. package/dist/src/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.d.ts +3 -3
  266. package/dist/src/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.d.ts +3 -3
  267. package/dist/src/share/queries/handlers/transactional/get-table-schema.handler.d.ts +3 -3
  268. package/dist/src/share/queries/types/index.d.ts +7 -7
  269. package/dist/src/share/references.service.d.ts +1 -1
  270. package/dist/src/share/share.transactional.queries.d.ts +2 -2
  271. package/dist/src/share/utils/schema/lib/applyPatches.d.ts +2 -2
  272. package/dist/src/share/utils/schema/lib/createJsonSchemaStore.d.ts +3 -3
  273. package/dist/src/share/utils/schema/lib/createJsonValueStore.d.ts +7 -7
  274. package/dist/src/share/utils/schema/lib/getJsonSchemaStoreByPath.d.ts +1 -1
  275. package/dist/src/share/utils/schema/lib/getPathByStore.d.ts +1 -1
  276. package/dist/src/share/utils/schema/lib/getReferencesFromSchema.d.ts +1 -1
  277. package/dist/src/share/utils/schema/lib/getReferencesFromValue.d.ts +1 -1
  278. package/dist/src/share/utils/schema/lib/getValuePathByStore.d.ts +1 -1
  279. package/dist/src/share/utils/schema/lib/schema-table.d.ts +3 -3
  280. package/dist/src/share/utils/schema/lib/traverseStore.d.ts +1 -1
  281. package/dist/src/share/utils/schema/lib/traverseValue.d.ts +1 -1
  282. package/dist/src/share/utils/schema/model/schema/json-array.store.d.ts +4 -4
  283. package/dist/src/share/utils/schema/model/schema/json-boolean.store.d.ts +3 -3
  284. package/dist/src/share/utils/schema/model/schema/json-number.store.d.ts +3 -3
  285. package/dist/src/share/utils/schema/model/schema/json-object.store.d.ts +4 -4
  286. package/dist/src/share/utils/schema/model/schema/json-schema.store.d.ts +5 -5
  287. package/dist/src/share/utils/schema/model/schema/json-string.store.d.ts +3 -3
  288. package/dist/src/share/utils/schema/model/value/json-array-value.store.d.ts +4 -4
  289. package/dist/src/share/utils/schema/model/value/json-boolean-value.store.d.ts +2 -2
  290. package/dist/src/share/utils/schema/model/value/json-number-value.store.d.ts +2 -2
  291. package/dist/src/share/utils/schema/model/value/json-object-value.store.d.ts +4 -4
  292. package/dist/src/share/utils/schema/model/value/json-string-value.store.d.ts +2 -2
  293. package/dist/src/share/utils/schema/model/value/json-value.store.d.ts +5 -5
  294. package/dist/src/share/utils/schema/model/value/value-transformation.d.ts +1 -1
  295. package/dist/src/share/utils/schema/types/json-patch.types.d.ts +1 -1
  296. package/dist/src/table/queries/handlers/get-count-rows-in-table.handler.d.ts +2 -2
  297. package/dist/src/table/queries/handlers/get-rows-by-table.handler.d.ts +3 -3
  298. package/dist/src/table/queries/handlers/get-table-by-id.handler.d.ts +3 -3
  299. package/dist/src/table/queries/handlers/get-table.handler.d.ts +4 -4
  300. package/dist/src/table/queries/handlers/get-tables.handler.d.ts +3 -3
  301. package/dist/src/table/queries/handlers/index.d.ts +10 -10
  302. package/dist/src/table/queries/handlers/resolve-table-count-references-by.handler.d.ts +4 -4
  303. package/dist/src/table/queries/handlers/resolve-table-count-references-to.handler.d.ts +3 -3
  304. package/dist/src/table/queries/handlers/resolve-table-references-by.handler.d.ts +5 -5
  305. package/dist/src/table/queries/handlers/resolve-table-references-to.handler.d.ts +4 -4
  306. package/dist/src/table/queries/handlers/resolve-table-schema.handler.d.ts +3 -3
  307. package/dist/src/table/queries/types/get-table-by-id.types.d.ts +1 -1
  308. package/dist/src/table/queries/types/get-table-rows.types.d.ts +2 -2
  309. package/dist/src/table/queries/types/get-table.types.d.ts +1 -1
  310. package/dist/src/table/queries/types/get-tables.types.d.ts +2 -2
  311. package/dist/src/table/queries/types/index.d.ts +6 -6
  312. package/dist/src/table/queries/types/resolve-table-references-by.types.d.ts +2 -2
  313. package/dist/src/table/queries/types/resolve-table-references-to.types.d.ts +2 -2
  314. package/dist/src/user/commands/handlers/set-username.handler.d.ts +3 -3
  315. package/dist/src/user/commands/handlers/update-password.handler.d.ts +3 -3
  316. package/dist/src/user/commands/index.d.ts +1 -1
  317. package/dist/src/user/queries/handlers/get-projects-by-user-id.handler.d.ts +2 -2
  318. package/dist/src/user/queries/handlers/get-user-organization.handler.d.ts +2 -2
  319. package/dist/src/user/queries/handlers/get-user.handler.d.ts +2 -2
  320. package/dist/src/user/queries/impl/get-projects-by-user-id.query.d.ts +1 -1
  321. package/dist/src/user/queries/impl/index.d.ts +1 -1
  322. package/dist/src/user/queries/index.d.ts +1 -1
  323. package/dist/tsconfig.build.tsbuildinfo +1 -1
  324. package/package.json +4 -2
@@ -1,10 +1,10 @@
1
- import { TransactionPrismaService } from 'src/database/transaction-prisma.service';
2
- import { UpdateRowsCommand } from 'src/draft/commands/impl/update-rows.command';
3
- import { DraftContextService } from 'src/draft/draft-context.service';
4
- import { DraftRowsRequestDto } from 'src/draft/draft-request-dto/rows-request.dto';
5
- import { DraftTableRequestDto } from 'src/draft/draft-request-dto/table-request.dto';
6
- import { DraftHandler } from 'src/draft/draft.handler';
7
- import { DraftTransactionalCommands } from 'src/draft/draft.transactional.commands';
1
+ import { TransactionPrismaService } from '../../../database/transaction-prisma.service';
2
+ import { UpdateRowsCommand } from '../../../draft/commands/impl/update-rows.command';
3
+ import { DraftContextService } from '../../../draft/draft-context.service';
4
+ import { DraftRowsRequestDto } from '../../../draft/draft-request-dto/rows-request.dto';
5
+ import { DraftTableRequestDto } from '../../../draft/draft-request-dto/table-request.dto';
6
+ import { DraftHandler } from '../../../draft/draft.handler';
7
+ import { DraftTransactionalCommands } from '../../../draft/draft.transactional.commands';
8
8
  export declare class UpdateRowsHandler extends DraftHandler<UpdateRowsCommand, void> {
9
9
  protected transactionService: TransactionPrismaService;
10
10
  protected draftContext: DraftContextService;
@@ -1,13 +1,13 @@
1
1
  import { CommandBus } from '@nestjs/cqrs';
2
- import { TransactionPrismaService } from 'src/database/transaction-prisma.service';
3
- import { UpdateTableCommand } from 'src/draft/commands/impl/update-table.command';
4
- import { UpdateTableHandlerReturnType } from 'src/draft/commands/types/update-table.handler.types';
5
- import { DraftContextService } from 'src/draft/draft-context.service';
6
- import { DraftTableRequestDto } from 'src/draft/draft-request-dto/table-request.dto';
7
- import { DraftHandler } from 'src/draft/draft.handler';
8
- import { DraftTransactionalCommands } from 'src/draft/draft.transactional.commands';
9
- import { JsonSchemaValidatorService } from 'src/draft/json-schema-validator.service';
10
- import { ShareTransactionalQueries } from 'src/share/share.transactional.queries';
2
+ import { TransactionPrismaService } from '../../../database/transaction-prisma.service';
3
+ import { UpdateTableCommand } from '../../../draft/commands/impl/update-table.command';
4
+ import { UpdateTableHandlerReturnType } from '../../../draft/commands/types/update-table.handler.types';
5
+ import { DraftContextService } from '../../../draft/draft-context.service';
6
+ import { DraftTableRequestDto } from '../../../draft/draft-request-dto/table-request.dto';
7
+ import { DraftHandler } from '../../../draft/draft.handler';
8
+ import { DraftTransactionalCommands } from '../../../draft/draft.transactional.commands';
9
+ import { JsonSchemaValidatorService } from '../../../draft/json-schema-validator.service';
10
+ import { ShareTransactionalQueries } from '../../../share/share.transactional.queries';
11
11
  export declare class UpdateTableHandler extends DraftHandler<UpdateTableCommand, UpdateTableHandlerReturnType> {
12
12
  protected readonly transactionService: TransactionPrismaService;
13
13
  protected readonly draftContext: DraftContextService;
@@ -1,4 +1,4 @@
1
- import { JsonPatch } from 'src/share/utils/schema/types/json-patch.types';
1
+ import { JsonPatch } from '../../../share/utils/schema/types/json-patch.types';
2
2
  export declare class ApiUpdateTableCommand {
3
3
  data: {
4
4
  revisionId: string;
@@ -1,5 +1,5 @@
1
1
  import { Prisma } from '@prisma/client';
2
- import { JsonSchema } from 'src/share/utils/schema/types/schema.types';
2
+ import { JsonSchema } from '../../../../share/utils/schema/types/schema.types';
3
3
  export declare class ValidateDataCommand {
4
4
  readonly data: {
5
5
  readonly revisionId: string;
@@ -1,5 +1,5 @@
1
1
  import { Prisma } from '@prisma/client';
2
- import { JsonSchema } from 'src/share/utils/schema/types/schema.types';
2
+ import { JsonSchema } from '../../../share/utils/schema/types/schema.types';
3
3
  export declare class UpdateRowsCommand {
4
4
  readonly data: {
5
5
  revisionId: string;
@@ -1,4 +1,4 @@
1
- import { JsonPatch } from 'src/share/utils/schema/types/json-patch.types';
1
+ import { JsonPatch } from '../../../share/utils/schema/types/json-patch.types';
2
2
  export declare class UpdateTableCommand {
3
3
  data: {
4
4
  revisionId: string;
@@ -1,5 +1,5 @@
1
- import { GetRowByIdReturnType } from 'src/row/queries/types';
2
- import { GetTableByIdReturnType } from 'src/table/queries/types';
1
+ import { GetRowByIdReturnType } from '../../../row/queries/types';
2
+ import { GetTableByIdReturnType } from '../../../table/queries/types';
3
3
  export type ApiCreateRowHandlerReturnType = {
4
4
  table: NonNullable<GetTableByIdReturnType>;
5
5
  previousVersionTableId: string;
@@ -1,5 +1,5 @@
1
- import { GetBranchByIdReturnType } from 'src/branch/quieries/types/get-branch-by-id.types';
2
- import { GetTableByIdReturnType } from 'src/table/queries/types';
1
+ import { GetBranchByIdReturnType } from '../../../branch/quieries/types/get-branch-by-id.types';
2
+ import { GetTableByIdReturnType } from '../../../table/queries/types';
3
3
  export type ApiRemoveRowHandlerReturnType = {
4
4
  branch: GetBranchByIdReturnType;
5
5
  table: GetTableByIdReturnType;
@@ -1,4 +1,4 @@
1
- import { GetBranchByIdReturnType } from 'src/branch/quieries/types/get-branch-by-id.types';
1
+ import { GetBranchByIdReturnType } from '../../../branch/quieries/types/get-branch-by-id.types';
2
2
  export type ApiRemoveTableHandlerReturnType = {
3
3
  branch: GetBranchByIdReturnType;
4
4
  };
@@ -1,5 +1,5 @@
1
- import { GetRowByIdReturnType } from 'src/row/queries/types';
2
- import { GetTableByIdReturnType } from 'src/table/queries/types';
1
+ import { GetRowByIdReturnType } from '../../../row/queries/types';
2
+ import { GetTableByIdReturnType } from '../../../table/queries/types';
3
3
  export type ApiUpdateRowHandlerReturnType = {
4
4
  table: GetTableByIdReturnType;
5
5
  previousVersionTableId: string;
@@ -1,4 +1,4 @@
1
- import { GetTableByIdReturnType } from 'src/table/queries/types';
1
+ import { GetTableByIdReturnType } from '../../../table/queries/types';
2
2
  export type ApiUpdateTableHandlerReturnType = {
3
3
  table: GetTableByIdReturnType;
4
4
  previousVersionTableId: string;
@@ -1,4 +1,4 @@
1
- import { DraftContextService } from 'src/draft/draft-context.service';
1
+ import { DraftContextService } from '../../draft/draft-context.service';
2
2
  export declare class DraftRevisionRequestDto {
3
3
  private draftContext;
4
4
  constructor(draftContext: DraftContextService);
@@ -1,5 +1,5 @@
1
- import { DraftRevisionRequestDto } from 'src/draft/draft-request-dto/draft-revision-request.dto';
2
- import { DraftRowRequestDto } from 'src/draft/draft-request-dto/row-request.dto';
3
- import { DraftRowsRequestDto } from 'src/draft/draft-request-dto/rows-request.dto';
4
- import { DraftTableRequestDto } from 'src/draft/draft-request-dto/table-request.dto';
1
+ import { DraftRevisionRequestDto } from '../../draft/draft-request-dto/draft-revision-request.dto';
2
+ import { DraftRowRequestDto } from '../../draft/draft-request-dto/row-request.dto';
3
+ import { DraftRowsRequestDto } from '../../draft/draft-request-dto/rows-request.dto';
4
+ import { DraftTableRequestDto } from '../../draft/draft-request-dto/table-request.dto';
5
5
  export declare const DRAFT_REQUEST_DTO: (typeof DraftRevisionRequestDto | typeof DraftRowRequestDto | typeof DraftTableRequestDto | typeof DraftRowsRequestDto)[];
@@ -1,4 +1,4 @@
1
- import { DraftContextService } from 'src/draft/draft-context.service';
1
+ import { DraftContextService } from '../../draft/draft-context.service';
2
2
  export declare class DraftRowRequestDto {
3
3
  private draftContext;
4
4
  constructor(draftContext: DraftContextService);
@@ -1,4 +1,4 @@
1
- import { DraftContextService } from 'src/draft/draft-context.service';
1
+ import { DraftContextService } from '../../draft/draft-context.service';
2
2
  interface RowDto {
3
3
  id: string;
4
4
  versionId: string;
@@ -1,4 +1,4 @@
1
- import { DraftContextService } from 'src/draft/draft-context.service';
1
+ import { DraftContextService } from '../../draft/draft-context.service';
2
2
  export declare class DraftTableRequestDto {
3
3
  private draftContext;
4
4
  constructor(draftContext: DraftContextService);
@@ -1,7 +1,7 @@
1
1
  import { ICommandHandler } from '@nestjs/cqrs';
2
2
  import { ICommand } from '@nestjs/cqrs/dist/interfaces/commands/command.interface';
3
- import { TransactionPrismaService } from 'src/database/transaction-prisma.service';
4
- import { DraftContextService } from 'src/draft/draft-context.service';
3
+ import { TransactionPrismaService } from '../database/transaction-prisma.service';
4
+ import { DraftContextService } from '../draft/draft-context.service';
5
5
  export declare abstract class DraftHandler<T extends ICommand, Result = unknown> implements ICommandHandler<T> {
6
6
  protected transactionService: TransactionPrismaService;
7
7
  protected draftContext: DraftContextService;
@@ -1,6 +1,6 @@
1
1
  import { CommandBus } from '@nestjs/cqrs';
2
2
  import { Prisma } from '@prisma/client';
3
- import { JsonSchema } from 'src/share/utils/schema/types/schema.types';
3
+ import { JsonSchema } from '../share/utils/schema/types/schema.types';
4
4
  export declare class DraftTransactionalCommands {
5
5
  private commandBus;
6
6
  constructor(commandBus: CommandBus);
@@ -1,7 +1,7 @@
1
- import { TransactionPrismaService } from 'src/database/transaction-prisma.service';
2
- import { DraftRevisionRequestDto } from 'src/draft/draft-request-dto/draft-revision-request.dto';
3
- import { DraftRowRequestDto } from 'src/draft/draft-request-dto/row-request.dto';
4
- import { DraftTableRequestDto } from 'src/draft/draft-request-dto/table-request.dto';
1
+ import { TransactionPrismaService } from '../database/transaction-prisma.service';
2
+ import { DraftRevisionRequestDto } from '../draft/draft-request-dto/draft-revision-request.dto';
3
+ import { DraftRowRequestDto } from '../draft/draft-request-dto/row-request.dto';
4
+ import { DraftTableRequestDto } from '../draft/draft-request-dto/table-request.dto';
5
5
  export declare class SessionChangelogService {
6
6
  private transactionService;
7
7
  private revisionRequestDto;
@@ -1,6 +1,6 @@
1
1
  import { ConfigService } from '@nestjs/config';
2
- import { TemplateService } from 'src/email/templates.service';
3
- import { TransporterService } from 'src/email/transporter.service';
2
+ import { TemplateService } from '../email/templates.service';
3
+ import { TransporterService } from '../email/transporter.service';
4
4
  export declare class EmailService {
5
5
  private readonly configService;
6
6
  private readonly transporterService;
@@ -1,5 +1,5 @@
1
1
  import { CommandBus, ICommandHandler, QueryBus } from '@nestjs/cqrs';
2
- import { ApiCreateEndpointCommand } from 'src/endpoint/commands/impl';
2
+ import { ApiCreateEndpointCommand } from '../../../endpoint/commands/impl';
3
3
  export declare class ApiCreateEndpointHandler implements ICommandHandler<ApiCreateEndpointCommand> {
4
4
  private readonly commandBus;
5
5
  private readonly queryBus;
@@ -1,7 +1,7 @@
1
1
  import { ICommandHandler } from '@nestjs/cqrs';
2
- import { PrismaService } from 'src/database/prisma.service';
3
- import { CreateEndpointCommand } from 'src/endpoint/commands/impl';
4
- import { EndpointNotificationService } from 'src/notification/endpoint-notification.service';
2
+ import { PrismaService } from '../../../database/prisma.service';
3
+ import { CreateEndpointCommand } from '../../../endpoint/commands/impl';
4
+ import { EndpointNotificationService } from '../../../notification/endpoint-notification.service';
5
5
  export declare class CreateEndpointHandler implements ICommandHandler<CreateEndpointCommand> {
6
6
  private prisma;
7
7
  private endpointNotification;
@@ -1,7 +1,7 @@
1
1
  import { ICommandHandler } from '@nestjs/cqrs';
2
- import { PrismaService } from 'src/database/prisma.service';
3
- import { DeleteEndpointCommand } from 'src/endpoint/commands/impl/delete-endpoint.command';
4
- import { EndpointNotificationService } from 'src/notification/endpoint-notification.service';
2
+ import { PrismaService } from '../../../database/prisma.service';
3
+ import { DeleteEndpointCommand } from '../../../endpoint/commands/impl/delete-endpoint.command';
4
+ import { EndpointNotificationService } from '../../../notification/endpoint-notification.service';
5
5
  export declare class DeleteEndpointHandler implements ICommandHandler<DeleteEndpointCommand> {
6
6
  private prisma;
7
7
  private endpointNotification;
@@ -1,4 +1,4 @@
1
- import { ApiCreateEndpointHandler } from 'src/endpoint/commands/handlers/api-create-endpoint.handler';
2
- import { CreateEndpointHandler } from 'src/endpoint/commands/handlers/create-endpoint.handler';
3
- import { DeleteEndpointHandler } from 'src/endpoint/commands/handlers/delete-endpoint.handler';
1
+ import { ApiCreateEndpointHandler } from '../../../endpoint/commands/handlers/api-create-endpoint.handler';
2
+ import { CreateEndpointHandler } from '../../../endpoint/commands/handlers/create-endpoint.handler';
3
+ import { DeleteEndpointHandler } from '../../../endpoint/commands/handlers/delete-endpoint.handler';
4
4
  export declare const ENDPOINT_COMMANDS: (typeof ApiCreateEndpointHandler | typeof CreateEndpointHandler | typeof DeleteEndpointHandler)[];
@@ -1,6 +1,6 @@
1
1
  import { IQueryHandler } from '@nestjs/cqrs';
2
- import { GetCreatedEndpointQuery } from 'src/endpoint/queries/impl';
3
- import { PrismaService } from 'src/database/prisma.service';
2
+ import { GetCreatedEndpointQuery } from '../../../endpoint/queries/impl';
3
+ import { PrismaService } from '../../../database/prisma.service';
4
4
  export declare class GetCreatedEndpointHandler implements IQueryHandler<GetCreatedEndpointQuery> {
5
5
  private prisma;
6
6
  constructor(prisma: PrismaService);
@@ -1,6 +1,6 @@
1
1
  import { IQueryHandler } from '@nestjs/cqrs';
2
- import { GetRevisionByEndpointIdQuery } from 'src/endpoint/queries/impl';
3
- import { PrismaService } from 'src/database/prisma.service';
2
+ import { GetRevisionByEndpointIdQuery } from '../../../endpoint/queries/impl';
3
+ import { PrismaService } from '../../../database/prisma.service';
4
4
  export declare class GetRevisionByEndpointIdHandler implements IQueryHandler<GetRevisionByEndpointIdQuery> {
5
5
  private prisma;
6
6
  constructor(prisma: PrismaService);
@@ -1,3 +1,3 @@
1
- import { GetCreatedEndpointHandler } from 'src/endpoint/queries/handlers/get-created-endpoint.handler';
2
- import { GetRevisionByEndpointIdHandler } from 'src/endpoint/queries/handlers/get-revision-by-endpoint-id.handler';
1
+ import { GetCreatedEndpointHandler } from '../../../endpoint/queries/handlers/get-created-endpoint.handler';
2
+ import { GetRevisionByEndpointIdHandler } from '../../../endpoint/queries/handlers/get-revision-by-endpoint-id.handler';
3
3
  export declare const ENDPOINT_QUERIES: (typeof GetCreatedEndpointHandler | typeof GetRevisionByEndpointIdHandler)[];
@@ -1,2 +1,2 @@
1
- export * from 'src/endpoint/queries/impl/get-created-endpoint.query';
1
+ export * from '../../../endpoint/queries/impl/get-created-endpoint.query';
2
2
  export * from './get-revision-by-endpoint-id.query';
@@ -1,6 +1,6 @@
1
1
  import { CommandBus } from '@nestjs/cqrs';
2
- import { ConfirmEmailCodeInput, CreateUserInput, LoginGithubInput, LoginGoogleInput, LoginInput, SignUpInput } from 'src/graphql-api/auth/inputs';
3
- import { LoginModel } from 'src/graphql-api/auth/model';
2
+ import { ConfirmEmailCodeInput, CreateUserInput, LoginGithubInput, LoginGoogleInput, LoginInput, SignUpInput } from '../../graphql-api/auth/inputs';
3
+ import { LoginModel } from '../../graphql-api/auth/model';
4
4
  export declare class AuthResolver {
5
5
  private readonly commandBus;
6
6
  constructor(commandBus: CommandBus);
@@ -1,4 +1,4 @@
1
- import { UserSystemRoles } from 'src/auth/consts';
1
+ import { UserSystemRoles } from '../../../auth/consts';
2
2
  export declare class CreateUserInput {
3
3
  username: string;
4
4
  roleId: UserSystemRoles;
@@ -1,10 +1,10 @@
1
1
  import { CommandBus, QueryBus } from '@nestjs/cqrs';
2
- import { GetBranchesInput } from 'src/graphql-api/branch/inputs';
3
- import { CreateBranchByRevisionIdInput } from 'src/graphql-api/branch/inputs/create-branch-by-revision-id.input';
4
- import { GetBranchRevisionsInput } from 'src/graphql-api/branch/inputs/get-branch-revisions.input';
5
- import { GetBranchInput } from 'src/graphql-api/branch/inputs/get-branch.input';
6
- import { RevertChangesInput } from 'src/graphql-api/branch/inputs/revert-changes.input';
7
- import { BranchModel } from 'src/graphql-api/branch/model/branch.model';
2
+ import { GetBranchesInput } from '../../graphql-api/branch/inputs';
3
+ import { CreateBranchByRevisionIdInput } from '../../graphql-api/branch/inputs/create-branch-by-revision-id.input';
4
+ import { GetBranchRevisionsInput } from '../../graphql-api/branch/inputs/get-branch-revisions.input';
5
+ import { GetBranchInput } from '../../graphql-api/branch/inputs/get-branch.input';
6
+ import { RevertChangesInput } from '../../graphql-api/branch/inputs/revert-changes.input';
7
+ import { BranchModel } from '../../graphql-api/branch/model/branch.model';
8
8
  export declare class BranchResolver {
9
9
  private queryBus;
10
10
  private commandBus;
@@ -1,5 +1,5 @@
1
- export * from 'src/graphql-api/branch/inputs/create-branch-by-revision-id.input';
2
- export * from 'src/graphql-api/branch/inputs/create-branch.input';
3
- export * from 'src/graphql-api/branch/inputs/get-branch.input';
4
- export * from 'src/graphql-api/branch/inputs/revert-changes.input';
5
- export * from 'src/graphql-api/branch/inputs/get-branches.input';
1
+ export * from '../../../graphql-api/branch/inputs/create-branch-by-revision-id.input';
2
+ export * from '../../../graphql-api/branch/inputs/create-branch.input';
3
+ export * from '../../../graphql-api/branch/inputs/get-branch.input';
4
+ export * from '../../../graphql-api/branch/inputs/revert-changes.input';
5
+ export * from '../../../graphql-api/branch/inputs/get-branches.input';
@@ -1,6 +1,6 @@
1
- import { ParentBranchModel } from 'src/graphql-api/branch/model/parent-branch.model';
2
- import { ProjectModel } from 'src/graphql-api/project/model';
3
- import { RevisionConnection, RevisionModel } from 'src/graphql-api/revision/model/revision.model';
1
+ import { ParentBranchModel } from '../../../graphql-api/branch/model/parent-branch.model';
2
+ import { ProjectModel } from '../../../graphql-api/project/model';
3
+ import { RevisionConnection, RevisionModel } from '../../../graphql-api/revision/model/revision.model';
4
4
  export declare class BranchModel {
5
5
  id: string;
6
6
  projectId: string;
@@ -1,5 +1,5 @@
1
- import { BranchModel } from 'src/graphql-api/branch/model/branch.model';
2
- import { RevisionModel } from 'src/graphql-api/revision/model/revision.model';
1
+ import { BranchModel } from '../../../graphql-api/branch/model/branch.model';
2
+ import { RevisionModel } from '../../../graphql-api/revision/model/revision.model';
3
3
  export declare class ParentBranchModel {
4
4
  branch: BranchModel;
5
5
  revision: RevisionModel;
@@ -1,5 +1,5 @@
1
1
  import { QueryBus } from '@nestjs/cqrs';
2
- import { ParentBranchModel } from 'src/graphql-api/branch/model/parent-branch.model';
2
+ import { ParentBranchModel } from '../../graphql-api/branch/model/parent-branch.model';
3
3
  export declare class ParentBranchResolver {
4
4
  private readonly queryBus;
5
5
  constructor(queryBus: QueryBus);
@@ -1,5 +1,5 @@
1
1
  import { QueryBus } from '@nestjs/cqrs';
2
- import { ConfigurationModel } from 'src/graphql-api/configuration/model';
2
+ import { ConfigurationModel } from '../../graphql-api/configuration/model';
3
3
  export declare class ConfigurationResolver {
4
4
  private readonly queryBus;
5
5
  constructor(queryBus: QueryBus);
@@ -1,6 +1,6 @@
1
1
  import { CommandBus, QueryBus } from '@nestjs/cqrs';
2
- import { CreateRowInput, CreateTableInput, RemoveRowInput, RemoveTableInput, UpdateRowInput } from 'src/graphql-api/draft/input';
3
- import { UpdateTableInput } from 'src/graphql-api/draft/input/update-table.input';
2
+ import { CreateRowInput, CreateTableInput, RemoveRowInput, RemoveTableInput, UpdateRowInput } from '../../graphql-api/draft/input';
3
+ import { UpdateTableInput } from '../../graphql-api/draft/input/update-table.input';
4
4
  export declare class DraftResolver {
5
5
  private queryBus;
6
6
  private commandBus;
@@ -1,5 +1,5 @@
1
1
  import { Prisma } from '@prisma/client';
2
- import { GetRowInput } from 'src/graphql-api/row/inputs/get-row.input';
2
+ import { GetRowInput } from '../../../graphql-api/row/inputs/get-row.input';
3
3
  export declare class CreateRowInput extends GetRowInput {
4
4
  data: Prisma.InputJsonValue;
5
5
  }
@@ -1,5 +1,5 @@
1
- export * from 'src/graphql-api/draft/input/create-table.input';
2
- export * from 'src/graphql-api/draft/input/remove-table.input';
3
- export * from 'src/graphql-api/draft/input/create-row.input';
4
- export * from 'src/graphql-api/draft/input/remove-row.input';
5
- export * from 'src/graphql-api/draft/input/update-row.input';
1
+ export * from '../../../graphql-api/draft/input/create-table.input';
2
+ export * from '../../../graphql-api/draft/input/remove-table.input';
3
+ export * from '../../../graphql-api/draft/input/create-row.input';
4
+ export * from '../../../graphql-api/draft/input/remove-row.input';
5
+ export * from '../../../graphql-api/draft/input/update-row.input';
@@ -1,3 +1,3 @@
1
- import { GetRowInput } from 'src/graphql-api/row/inputs/get-row.input';
1
+ import { GetRowInput } from '../../../graphql-api/row/inputs/get-row.input';
2
2
  export declare class RemoveRowInput extends GetRowInput {
3
3
  }
@@ -1,5 +1,5 @@
1
1
  import { Prisma } from '@prisma/client';
2
- import { GetRowInput } from 'src/graphql-api/row/inputs/get-row.input';
2
+ import { GetRowInput } from '../../../graphql-api/row/inputs/get-row.input';
3
3
  export declare class UpdateRowInput extends GetRowInput {
4
4
  data: Prisma.InputJsonValue;
5
5
  }
@@ -1,4 +1,4 @@
1
- import { JsonPatch } from 'src/share/utils/schema/types/json-patch.types';
1
+ import { JsonPatch } from '../../../share/utils/schema/types/json-patch.types';
2
2
  export declare class UpdateTableInput {
3
3
  revisionId: string;
4
4
  tableId: string;
@@ -1,5 +1,5 @@
1
- import { RowModel } from 'src/graphql-api/row/model/row.model';
2
- import { TableModel } from 'src/graphql-api/table/model/table.model';
1
+ import { RowModel } from '../../../graphql-api/row/model/row.model';
2
+ import { TableModel } from '../../../graphql-api/table/model/table.model';
3
3
  export declare class CreateRowResultModel {
4
4
  table: TableModel;
5
5
  previousVersionTableId: string;
@@ -1,5 +1,5 @@
1
- import { BranchModel } from 'src/graphql-api/branch/model/branch.model';
2
- import { TableModel } from 'src/graphql-api/table/model/table.model';
1
+ import { BranchModel } from '../../../graphql-api/branch/model/branch.model';
2
+ import { TableModel } from '../../../graphql-api/table/model/table.model';
3
3
  export declare class CreateTableResultModel {
4
4
  branch: BranchModel;
5
5
  table: TableModel;
@@ -1,5 +1,5 @@
1
- import { BranchModel } from 'src/graphql-api/branch/model/branch.model';
2
- import { TableModel } from 'src/graphql-api/table/model/table.model';
1
+ import { BranchModel } from '../../../graphql-api/branch/model/branch.model';
2
+ import { TableModel } from '../../../graphql-api/table/model/table.model';
3
3
  export declare class RemoveRowResultModel {
4
4
  branch: BranchModel;
5
5
  table?: TableModel;
@@ -1,4 +1,4 @@
1
- import { BranchModel } from 'src/graphql-api/branch/model/branch.model';
1
+ import { BranchModel } from '../../../graphql-api/branch/model/branch.model';
2
2
  export declare class RemoveTableResultModel {
3
3
  branch: BranchModel;
4
4
  }
@@ -1,5 +1,5 @@
1
- import { RowModel } from 'src/graphql-api/row/model/row.model';
2
- import { TableModel } from 'src/graphql-api/table/model/table.model';
1
+ import { RowModel } from '../../../graphql-api/row/model/row.model';
2
+ import { TableModel } from '../../../graphql-api/table/model/table.model';
3
3
  export declare class UpdateRowResultModel {
4
4
  table: TableModel;
5
5
  previousVersionTableId: string;
@@ -1,4 +1,4 @@
1
- import { TableModel } from 'src/graphql-api/table/model/table.model';
1
+ import { TableModel } from '../../../graphql-api/table/model/table.model';
2
2
  export declare class UpdateTableResultModel {
3
3
  table: TableModel;
4
4
  previousTable: TableModel;
@@ -1,6 +1,6 @@
1
1
  import { CommandBus, QueryBus } from '@nestjs/cqrs';
2
- import { CreateEndpointInput, DeleteEndpointInput } from 'src/graphql-api/endpoint/inputs';
3
- import { EndpointModel } from 'src/graphql-api/endpoint/model';
2
+ import { CreateEndpointInput, DeleteEndpointInput } from '../../graphql-api/endpoint/inputs';
3
+ import { EndpointModel } from '../../graphql-api/endpoint/model';
4
4
  export declare class EndpointResolver {
5
5
  private queryBus;
6
6
  private commandBus;
@@ -1,4 +1,4 @@
1
- import { EndpointType } from 'src/graphql-api/endpoint/model';
1
+ import { EndpointType } from '../../../graphql-api/endpoint/model';
2
2
  export declare class CreateEndpointInput {
3
3
  revisionId: string;
4
4
  type: EndpointType;
@@ -1,3 +1,3 @@
1
- export * from 'src/graphql-api/endpoint/inputs/get-endpoint.input';
2
- export * from 'src/graphql-api/endpoint/inputs/create-endpoint.input';
3
- export * from 'src/graphql-api/endpoint/inputs/delete-endpoint.input';
1
+ export * from '../../../graphql-api/endpoint/inputs/get-endpoint.input';
2
+ export * from '../../../graphql-api/endpoint/inputs/create-endpoint.input';
3
+ export * from '../../../graphql-api/endpoint/inputs/delete-endpoint.input';
@@ -1,4 +1,4 @@
1
- import { RevisionModel } from 'src/graphql-api/revision/model/revision.model';
1
+ import { RevisionModel } from '../../../graphql-api/revision/model/revision.model';
2
2
  export declare enum EndpointType {
3
3
  GRAPHQL = "GRAPHQL",
4
4
  REST_API = "REST_API"
@@ -1 +1 @@
1
- export * from 'src/graphql-api/endpoint/model/endpoint.model';
1
+ export * from '../../../graphql-api/endpoint/model/endpoint.model';
@@ -1,4 +1,4 @@
1
- import { UserOrganizationRoles } from 'src/auth/consts';
1
+ import { UserOrganizationRoles } from '../../../auth/consts';
2
2
  export declare class AddUserToOrganizationInput {
3
3
  organizationId: string;
4
4
  userId: string;
@@ -1,4 +1,4 @@
1
- import { UsersOrganizationModel } from 'src/graphql-api/organization/model/users-organization.model';
1
+ import { UsersOrganizationModel } from '../../../graphql-api/organization/model/users-organization.model';
2
2
  declare const UsersOrganizationConnection_base: import("@nestjs/common").Type<import("../../../share/pagination.interface").IPaginatedType<UsersOrganizationModel>>;
3
3
  export declare class UsersOrganizationConnection extends UsersOrganizationConnection_base {
4
4
  }
@@ -1,5 +1,5 @@
1
- import { RoleModel } from 'src/graphql-api/role/model/role.model';
2
- import { UserModel } from 'src/graphql-api/user/model/user.model';
1
+ import { RoleModel } from '../../../graphql-api/role/model/role.model';
2
+ import { UserModel } from '../../../graphql-api/user/model/user.model';
3
3
  export declare class UsersOrganizationModel {
4
4
  id: string;
5
5
  user: UserModel;
@@ -1,8 +1,8 @@
1
1
  import { CommandBus, QueryBus } from '@nestjs/cqrs';
2
- import { IOptionalAuthUser } from 'src/auth/types';
3
- import { AddUserToOrganizationInput, GetUsersOrganizationInput, RemoveUserFromOrganizationInput } from 'src/graphql-api/organization/inputs';
4
- import { CreateProjectInput } from 'src/graphql-api/project/inputs';
5
- import { GetProjectsInput } from 'src/graphql-api/project/inputs/get-projects.input';
2
+ import { IOptionalAuthUser } from '../../auth/types';
3
+ import { AddUserToOrganizationInput, GetUsersOrganizationInput, RemoveUserFromOrganizationInput } from '../../graphql-api/organization/inputs';
4
+ import { CreateProjectInput } from '../../graphql-api/project/inputs';
5
+ import { GetProjectsInput } from '../../graphql-api/project/inputs/get-projects.input';
6
6
  export declare class OrganizationResolver {
7
7
  private queryBus;
8
8
  private commandBus;
@@ -1,4 +1,4 @@
1
- import { UserProjectRoles } from 'src/auth/consts';
1
+ import { UserProjectRoles } from '../../../auth/consts';
2
2
  export declare class AddUserToProjectInput {
3
3
  organizationId: string;
4
4
  projectName: string;
@@ -1,7 +1,7 @@
1
- export * from 'src/graphql-api/project/inputs/create-project.input';
2
- export * from 'src/graphql-api/project/inputs/get-project.input';
3
- export * from 'src/graphql-api/project/inputs/delete-project.input';
4
- export * from 'src/graphql-api/project/inputs/add-user-to-project.input';
5
- export * from 'src/graphql-api/project/inputs/remove-user-from-project.input';
6
- export * from 'src/graphql-api/project/inputs/get-users-project.input';
7
- export * from 'src/graphql-api/project/inputs/update-project.input';
1
+ export * from '../../../graphql-api/project/inputs/create-project.input';
2
+ export * from '../../../graphql-api/project/inputs/get-project.input';
3
+ export * from '../../../graphql-api/project/inputs/delete-project.input';
4
+ export * from '../../../graphql-api/project/inputs/add-user-to-project.input';
5
+ export * from '../../../graphql-api/project/inputs/remove-user-from-project.input';
6
+ export * from '../../../graphql-api/project/inputs/get-users-project.input';
7
+ export * from '../../../graphql-api/project/inputs/update-project.input';
@@ -1 +1 @@
1
- export * from 'src/graphql-api/project/model/project.model';
1
+ export * from '../../../graphql-api/project/model/project.model';
@@ -1,4 +1,4 @@
1
- import { BranchesConnection, BranchModel } from 'src/graphql-api/branch/model/branch.model';
1
+ import { BranchesConnection, BranchModel } from '../../../graphql-api/branch/model/branch.model';
2
2
  export declare class ProjectModel {
3
3
  id: string;
4
4
  organizationId: string;