@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.
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/dist/jest.setup.d.ts +1 -0
- package/dist/jest.setup.js +5 -0
- package/dist/jest.setup.js.map +1 -0
- package/dist/package.json +20 -13
- package/dist/prisma/migrations/20250102205030_upgrade_to_v6/migration.sql +17 -0
- package/dist/prisma/migrations/migration_lock.toml +1 -1
- package/dist/prisma/schema.prisma +1 -1
- package/dist/prisma/seed.js +2 -2
- package/dist/prisma/seed.js.map +1 -1
- package/dist/src/__tests__/create-models.d.ts +14 -0
- package/dist/src/__tests__/create-models.js +23 -0
- package/dist/src/__tests__/create-models.js.map +1 -0
- package/dist/src/__tests__/utils/createMocks.d.ts +5 -5
- package/dist/src/__tests__/utils/implementIdService.d.ts +1 -1
- package/dist/src/__tests__/utils/rowMocks.d.ts +1 -1
- package/dist/src/__tests__/utils/schema/schema.mocks.d.ts +2 -2
- package/dist/src/__tests__/utils/schema/schema.mocks.js +1 -1
- package/dist/src/__tests__/utils/schema/schema.mocks.js.map +1 -1
- package/dist/src/api/graphql-api/auth/auth.resolver.d.ts +13 -0
- package/dist/src/api/graphql-api/auth/auth.resolver.js +103 -0
- package/dist/src/api/graphql-api/auth/auth.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/auth/inputs/confirm-email-code.input.js.map +1 -0
- package/dist/src/api/graphql-api/auth/inputs/create-user.input.d.ts +7 -0
- package/dist/src/api/graphql-api/auth/inputs/create-user.input.js +37 -0
- package/dist/src/api/graphql-api/auth/inputs/create-user.input.js.map +1 -0
- package/dist/src/api/graphql-api/auth/inputs/index.d.ts +6 -0
- package/dist/src/api/graphql-api/auth/inputs/index.js.map +1 -0
- package/dist/src/api/graphql-api/auth/inputs/login-github.input.js.map +1 -0
- package/dist/src/api/graphql-api/auth/inputs/login-google.input.js.map +1 -0
- package/dist/src/api/graphql-api/auth/inputs/login.input.js.map +1 -0
- package/dist/src/api/graphql-api/auth/inputs/sign-up.input.js.map +1 -0
- package/dist/src/api/graphql-api/auth/model/index.d.ts +1 -0
- package/dist/src/api/graphql-api/auth/model/index.js.map +1 -0
- package/dist/src/api/graphql-api/auth/model/login.model.js.map +1 -0
- package/dist/src/api/graphql-api/branch/branch.resolver.d.ts +23 -0
- package/dist/src/api/graphql-api/branch/branch.resolver.js +176 -0
- package/dist/src/api/graphql-api/branch/branch.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/branch/inputs/create-branch-by-revision-id.input.js.map +1 -0
- package/dist/src/api/graphql-api/branch/inputs/create-branch.input.js.map +1 -0
- package/dist/src/api/graphql-api/branch/inputs/get-branch-revisions.input.js.map +1 -0
- package/dist/src/api/graphql-api/branch/inputs/get-branch.input.js.map +1 -0
- package/dist/src/api/graphql-api/branch/inputs/get-branches.input.js.map +1 -0
- package/dist/src/api/graphql-api/branch/inputs/index.d.ts +5 -0
- package/dist/src/api/graphql-api/branch/inputs/index.js.map +1 -0
- package/dist/src/api/graphql-api/branch/inputs/revert-changes.input.js.map +1 -0
- package/dist/src/api/graphql-api/branch/model/branch.model.d.ts +21 -0
- package/dist/src/api/graphql-api/branch/model/branch.model.js.map +1 -0
- package/dist/src/api/graphql-api/branch/model/parent-branch.model.d.ts +6 -0
- package/dist/src/api/graphql-api/branch/model/parent-branch.model.js.map +1 -0
- package/dist/src/api/graphql-api/branch/parent-branch.resolver.d.ts +8 -0
- package/dist/src/api/graphql-api/branch/parent-branch.resolver.js +51 -0
- package/dist/src/api/graphql-api/branch/parent-branch.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/configuration/configuration.resolver.d.ts +7 -0
- package/dist/src/api/graphql-api/configuration/configuration.resolver.js +36 -0
- package/dist/src/api/graphql-api/configuration/configuration.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/configuration/model/configuration.model.js.map +1 -0
- package/dist/src/api/graphql-api/configuration/model/index.d.ts +1 -0
- package/dist/src/api/graphql-api/configuration/model/index.js.map +1 -0
- package/dist/src/api/graphql-api/current-user.decorator.js.map +1 -0
- package/dist/src/api/graphql-api/draft/draft.resolver.d.ts +13 -0
- package/dist/src/api/graphql-api/draft/draft.resolver.js +140 -0
- package/dist/src/api/graphql-api/draft/draft.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/draft/input/create-row.input.d.ts +5 -0
- package/dist/src/api/graphql-api/draft/input/create-row.input.js.map +1 -0
- package/dist/src/api/graphql-api/draft/input/create-table.input.js.map +1 -0
- package/dist/src/api/graphql-api/draft/input/index.d.ts +5 -0
- package/dist/src/api/graphql-api/draft/input/index.js.map +1 -0
- package/dist/src/api/graphql-api/draft/input/remove-row.input.d.ts +3 -0
- package/dist/src/api/graphql-api/draft/input/remove-row.input.js.map +1 -0
- package/dist/src/api/graphql-api/draft/input/remove-table.input.js.map +1 -0
- package/dist/src/api/graphql-api/draft/input/update-row.input.d.ts +5 -0
- package/dist/src/api/graphql-api/draft/input/update-row.input.js.map +1 -0
- package/dist/src/api/graphql-api/draft/input/update-table.input.d.ts +6 -0
- package/dist/src/api/graphql-api/draft/input/update-table.input.js.map +1 -0
- package/dist/src/api/graphql-api/draft/model/create-row-result.model.d.ts +7 -0
- package/dist/src/api/graphql-api/draft/model/create-row-result.model.js.map +1 -0
- package/dist/src/api/graphql-api/draft/model/create-table-result.model.d.ts +6 -0
- package/dist/src/api/graphql-api/draft/model/create-table-result.model.js.map +1 -0
- package/dist/src/api/graphql-api/draft/model/remove-row-result.model.d.ts +7 -0
- package/dist/src/api/graphql-api/draft/model/remove-row-result.model.js.map +1 -0
- package/dist/src/api/graphql-api/draft/model/remove-table-result.model.d.ts +4 -0
- package/dist/src/api/graphql-api/draft/model/remove-table-result.model.js.map +1 -0
- package/dist/src/api/graphql-api/draft/model/update-row-result.model.d.ts +8 -0
- package/dist/src/api/graphql-api/draft/model/update-row-result.model.js.map +1 -0
- package/dist/src/api/graphql-api/draft/model/update-table-result.model.d.ts +5 -0
- package/dist/src/api/graphql-api/draft/model/update-table-result.model.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/endpoint.resolver.d.ts +11 -0
- package/dist/src/api/graphql-api/endpoint/endpoint.resolver.js +83 -0
- package/dist/src/api/graphql-api/endpoint/endpoint.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/inputs/create-endpoint.input.d.ts +5 -0
- package/dist/src/api/graphql-api/endpoint/inputs/create-endpoint.input.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/inputs/delete-endpoint.input.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/inputs/get-endpoint.input.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/inputs/index.d.ts +3 -0
- package/dist/src/api/graphql-api/endpoint/inputs/index.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/model/endpoint.model.d.ts +11 -0
- package/dist/src/api/graphql-api/endpoint/model/endpoint.model.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/model/index.d.ts +1 -0
- package/dist/src/api/graphql-api/endpoint/model/index.js.map +1 -0
- package/dist/src/api/graphql-api/graphql-api.module.js +86 -0
- package/dist/src/api/graphql-api/graphql-api.module.js.map +1 -0
- package/dist/src/api/graphql-api/organization/inputs/add-user-to-organization.input.d.ts +6 -0
- package/dist/src/api/graphql-api/organization/inputs/add-user-to-organization.input.js +33 -0
- package/dist/src/api/graphql-api/organization/inputs/add-user-to-organization.input.js.map +1 -0
- package/dist/src/api/graphql-api/organization/inputs/get-users-organization.input.js.map +1 -0
- package/dist/src/api/graphql-api/organization/inputs/index.d.ts +3 -0
- package/dist/src/api/graphql-api/organization/inputs/index.js.map +1 -0
- package/dist/src/api/graphql-api/organization/inputs/remove-user-from-organization.input.js.map +1 -0
- package/dist/src/api/graphql-api/organization/model/users-organization.connection.d.ts +5 -0
- package/dist/src/api/graphql-api/organization/model/users-organization.connection.js.map +1 -0
- package/dist/src/api/graphql-api/organization/model/users-organization.model.d.ts +7 -0
- package/dist/src/api/graphql-api/organization/model/users-organization.model.js.map +1 -0
- package/dist/src/api/graphql-api/organization/organization.resolver.d.ts +15 -0
- package/dist/src/api/graphql-api/organization/organization.resolver.js +126 -0
- package/dist/src/api/graphql-api/organization/organization.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/add-user-to-project.input.d.ts +7 -0
- package/dist/src/api/graphql-api/project/inputs/add-user-to-project.input.js +37 -0
- package/dist/src/api/graphql-api/project/inputs/add-user-to-project.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/create-project.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/delete-project.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/get-project-branches.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/get-project.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/get-projects.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/get-users-project.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/index.d.ts +7 -0
- package/dist/src/api/graphql-api/project/inputs/index.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/remove-user-from-project.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/update-project.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/model/index.d.ts +1 -0
- package/dist/src/api/graphql-api/project/model/index.js.map +1 -0
- package/dist/src/api/graphql-api/project/model/project.model.d.ts +10 -0
- package/dist/src/api/graphql-api/project/model/project.model.js.map +1 -0
- package/dist/src/api/graphql-api/project/model/projects.connection.d.ts +5 -0
- package/dist/src/api/graphql-api/project/model/projects.connection.js.map +1 -0
- package/dist/src/api/graphql-api/project/model/users-project.connection.d.ts +5 -0
- package/dist/src/api/graphql-api/project/model/users-project.connection.js.map +1 -0
- package/dist/src/api/graphql-api/project/model/users-project.model.d.ts +7 -0
- package/dist/src/api/graphql-api/project/model/users-project.model.js.map +1 -0
- package/dist/src/api/graphql-api/project/project.resolver.d.ts +17 -0
- package/dist/src/api/graphql-api/project/project.resolver.js +154 -0
- package/dist/src/api/graphql-api/project/project.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/registerGraphqlEnums.js +14 -0
- package/dist/src/api/graphql-api/registerGraphqlEnums.js.map +1 -0
- package/dist/src/api/graphql-api/revision/child-branch.resolver.d.ts +8 -0
- package/dist/src/api/graphql-api/revision/child-branch.resolver.js +51 -0
- package/dist/src/api/graphql-api/revision/child-branch.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/revision/inputs/create-revision.input.js.map +1 -0
- package/dist/src/api/graphql-api/revision/inputs/get-revision-tables.input.js.map +1 -0
- package/dist/src/api/graphql-api/revision/inputs/get-revision.input.js.map +1 -0
- package/dist/src/api/graphql-api/revision/model/child-branch.model.d.ts +6 -0
- package/dist/src/api/graphql-api/revision/model/child-branch.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision/model/revision.model.d.ts +24 -0
- package/dist/src/api/graphql-api/revision/model/revision.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision/revision.resolver.d.ts +19 -0
- package/dist/src/api/graphql-api/revision/revision.resolver.js +150 -0
- package/dist/src/api/graphql-api/revision/revision.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/role/model/role.model.js.map +1 -0
- package/dist/src/api/graphql-api/row/inputs/get-row-count-references-by.input.js.map +1 -0
- package/dist/src/api/graphql-api/row/inputs/get-row-references.input.js.map +1 -0
- package/dist/src/api/graphql-api/row/inputs/get-row.input.js.map +1 -0
- package/dist/src/api/graphql-api/row/inputs/get-rows.input.js.map +1 -0
- package/dist/src/api/graphql-api/row/inputs/index.d.ts +3 -0
- package/dist/src/api/graphql-api/row/inputs/index.js.map +1 -0
- package/dist/src/api/graphql-api/row/model/row-reference.model.d.ts +6 -0
- package/dist/src/api/graphql-api/row/model/row-reference.model.js.map +1 -0
- package/dist/src/api/graphql-api/row/model/row-references-connection.model.d.ts +5 -0
- package/dist/src/api/graphql-api/row/model/row-references-connection.model.js.map +1 -0
- package/dist/src/api/graphql-api/row/model/row.model.d.ts +17 -0
- package/dist/src/api/graphql-api/row/model/row.model.js.map +1 -0
- package/dist/src/api/graphql-api/row/model/rows-connection.model.d.ts +5 -0
- package/dist/src/api/graphql-api/row/model/rows-connection.model.js.map +1 -0
- package/dist/src/api/graphql-api/row/row.resolver.d.ts +16 -0
- package/dist/src/api/graphql-api/row/row.resolver.js +128 -0
- package/dist/src/api/graphql-api/row/row.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/share/model/paginated.model.d.ts +9 -0
- package/dist/src/api/graphql-api/share/model/paginated.model.js.map +1 -0
- package/dist/src/api/graphql-api/table/inputs/get-table-references.input.js.map +1 -0
- package/dist/src/api/graphql-api/table/inputs/get-table-rows.input.js.map +1 -0
- package/dist/src/api/graphql-api/table/inputs/get-table.input.js.map +1 -0
- package/dist/src/api/graphql-api/table/inputs/get-tables.input.js.map +1 -0
- package/dist/src/api/graphql-api/table/model/table-connection.model.d.ts +5 -0
- package/dist/src/api/graphql-api/table/model/table-connection.model.js.map +1 -0
- package/dist/src/api/graphql-api/table/model/table.model.d.ts +20 -0
- package/dist/src/api/graphql-api/table/model/table.model.js.map +1 -0
- package/dist/src/api/graphql-api/table/table.resolver.d.ts +20 -0
- package/dist/src/api/graphql-api/table/table.resolver.js +166 -0
- package/dist/src/api/graphql-api/table/table.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/user/inputs/index.d.ts +3 -0
- package/dist/src/api/graphql-api/user/inputs/index.js.map +1 -0
- package/dist/src/api/graphql-api/user/inputs/me-projects.input.js.map +1 -0
- package/dist/src/api/graphql-api/user/inputs/set-username.input.js.map +1 -0
- package/dist/src/api/graphql-api/user/inputs/update-password.input.js.map +1 -0
- package/dist/src/api/graphql-api/user/model/user.model.js.map +1 -0
- package/dist/src/api/graphql-api/user/user.resolver.d.ts +15 -0
- package/dist/src/api/graphql-api/user/user.resolver.js +104 -0
- package/dist/src/api/graphql-api/user/user.resolver.js.map +1 -0
- package/dist/src/api/rest-api/auth/auth.controller.d.ts +13 -0
- package/dist/src/api/rest-api/auth/auth.controller.js +86 -0
- package/dist/src/api/rest-api/auth/auth.controller.js.map +1 -0
- package/dist/src/api/rest-api/auth/dto/create-user.dto.d.ts +7 -0
- package/dist/src/api/rest-api/auth/dto/create-user.dto.js +34 -0
- package/dist/src/api/rest-api/auth/dto/create-user.dto.js.map +1 -0
- package/dist/src/api/rest-api/auth/dto/index.d.ts +2 -0
- package/dist/src/api/rest-api/auth/dto/index.js.map +1 -0
- package/dist/src/api/rest-api/auth/dto/login.dto.js.map +1 -0
- package/dist/src/api/rest-api/auth/dto/update-password.dto.js.map +1 -0
- package/dist/src/api/rest-api/auth/model/index.d.ts +1 -0
- package/dist/src/api/rest-api/auth/model/index.js.map +1 -0
- package/dist/src/api/rest-api/auth/model/login.response.js.map +1 -0
- package/dist/src/api/rest-api/branch/branch-by-name.controller.d.ts +19 -0
- package/dist/src/api/rest-api/branch/branch-by-name.controller.js +225 -0
- package/dist/src/api/rest-api/branch/branch-by-name.controller.js.map +1 -0
- package/dist/src/api/rest-api/branch/dto/create-branch-by-revision.dto.js.map +1 -0
- package/dist/src/api/rest-api/branch/dto/create-revision.dto.js.map +1 -0
- package/dist/src/api/rest-api/branch/dto/get-branch-revisions.dto.js.map +1 -0
- package/dist/src/api/rest-api/branch/dto/index.d.ts +3 -0
- package/dist/src/api/rest-api/branch/dto/index.js.map +1 -0
- package/dist/src/api/rest-api/branch/model/branch.model.js.map +1 -0
- package/dist/src/api/rest-api/branch/model/index.d.ts +2 -0
- package/dist/src/api/rest-api/branch/model/index.js.map +1 -0
- package/dist/src/api/rest-api/branch/model/parent-branch.response.js.map +1 -0
- package/dist/src/api/rest-api/configuration/configuration.controller.d.ts +7 -0
- package/dist/src/api/rest-api/configuration/configuration.controller.js +42 -0
- package/dist/src/api/rest-api/configuration/configuration.controller.js.map +1 -0
- package/dist/src/api/rest-api/configuration/model/configuration.response.js.map +1 -0
- package/dist/src/api/rest-api/configuration/model/index.d.ts +1 -0
- package/dist/src/api/rest-api/configuration/model/index.js.map +1 -0
- package/dist/src/api/rest-api/endpoint/endpointByIdController.js +60 -0
- package/dist/src/api/rest-api/endpoint/endpointByIdController.js.map +1 -0
- package/dist/src/api/rest-api/endpoint/model/endpoint.model.js.map +1 -0
- package/dist/src/api/rest-api/endpoint/model/index.d.ts +1 -0
- package/dist/src/api/rest-api/endpoint/model/index.js.map +1 -0
- package/dist/src/api/rest-api/organization/dto/add-user-to-organization.dto.d.ts +5 -0
- package/dist/src/api/rest-api/organization/dto/add-user-to-organization.dto.js +26 -0
- package/dist/src/api/rest-api/organization/dto/add-user-to-organization.dto.js.map +1 -0
- package/dist/src/api/rest-api/organization/dto/create-project.dto.js.map +1 -0
- package/dist/src/api/rest-api/organization/dto/get-projects.dto.js.map +1 -0
- package/dist/src/api/rest-api/organization/dto/get-users-organization.dto.js.map +1 -0
- package/dist/src/api/rest-api/organization/dto/index.d.ts +5 -0
- package/dist/src/api/rest-api/organization/dto/index.js.map +1 -0
- package/dist/src/api/rest-api/organization/dto/remove-user-from-organization.dto.js.map +1 -0
- package/dist/src/api/rest-api/organization/model/index.d.ts +3 -0
- package/dist/src/api/rest-api/organization/model/index.js.map +1 -0
- package/dist/src/api/rest-api/organization/model/project.connection.js.map +1 -0
- package/dist/src/api/rest-api/organization/model/users-organization.connection.js.map +1 -0
- package/dist/src/api/rest-api/organization/model/users-organization.model.d.ts +7 -0
- package/dist/src/api/rest-api/organization/model/users-organization.model.js.map +1 -0
- package/dist/src/api/rest-api/organization/organization.controller.d.ts +16 -0
- package/dist/src/api/rest-api/organization/organization.controller.js +147 -0
- package/dist/src/api/rest-api/organization/organization.controller.js.map +1 -0
- package/dist/src/api/rest-api/project/dto/add-user-to-project.dto.d.ts +5 -0
- package/dist/src/api/rest-api/project/dto/add-user-to-project.dto.js +26 -0
- package/dist/src/api/rest-api/project/dto/add-user-to-project.dto.js.map +1 -0
- package/dist/src/api/rest-api/project/dto/get-project-branches.dto.js.map +1 -0
- package/dist/src/api/rest-api/project/dto/get-users-project.dto.js.map +1 -0
- package/dist/src/api/rest-api/project/dto/update-project.dto.js.map +1 -0
- package/dist/src/api/rest-api/project/model/index.d.ts +3 -0
- package/dist/src/api/rest-api/project/model/index.js.map +1 -0
- package/dist/src/api/rest-api/project/model/project.model.js.map +1 -0
- package/dist/src/api/rest-api/project/model/users-project.connection.js.map +1 -0
- package/dist/src/api/rest-api/project/model/users-project.model.d.ts +7 -0
- package/dist/src/api/rest-api/project/model/users-project.model.js.map +1 -0
- package/dist/src/api/rest-api/project/project.controller.d.ts +19 -0
- package/dist/src/api/rest-api/project/project.controller.js +206 -0
- package/dist/src/api/rest-api/project/project.controller.js.map +1 -0
- package/dist/src/api/rest-api/rest-api.module.js +44 -0
- package/dist/src/api/rest-api/rest-api.module.js.map +1 -0
- package/dist/src/api/rest-api/revision/dto/create-endpoint.dto.js.map +1 -0
- package/dist/src/api/rest-api/revision/dto/create-table.dto.js.map +1 -0
- package/dist/src/api/rest-api/revision/dto/get-revision-tables.dto.js.map +1 -0
- package/dist/src/api/rest-api/revision/dto/index.d.ts +3 -0
- package/dist/src/api/rest-api/revision/dto/index.js.map +1 -0
- package/dist/src/api/rest-api/revision/model/child-branches.response.js.map +1 -0
- package/dist/src/api/rest-api/revision/model/create-table.response.d.ts +6 -0
- package/dist/src/api/rest-api/revision/model/create-table.response.js.map +1 -0
- package/dist/src/api/rest-api/revision/model/index.d.ts +2 -0
- package/dist/src/api/rest-api/revision/model/index.js.map +1 -0
- package/dist/src/api/rest-api/revision/model/revision.model.js.map +1 -0
- package/dist/src/api/rest-api/revision/revision-by-id.controller.d.ts +21 -0
- package/dist/src/api/rest-api/revision/revision-by-id.controller.js +213 -0
- package/dist/src/api/rest-api/revision/revision-by-id.controller.js.map +1 -0
- package/dist/src/api/rest-api/role/model/index.d.ts +1 -0
- package/dist/src/api/rest-api/role/model/index.js.map +1 -0
- package/dist/src/api/rest-api/role/model/role.model.js.map +1 -0
- package/dist/src/api/rest-api/row/dto/get-row-references-by.dto.js.map +1 -0
- package/dist/src/api/rest-api/row/dto/get-row-references-to.dto.js.map +1 -0
- package/dist/src/api/rest-api/row/dto/index.d.ts +2 -0
- package/dist/src/api/rest-api/row/dto/index.js.map +1 -0
- package/dist/src/api/rest-api/row/dto/update-row.dto.js.map +1 -0
- package/dist/src/api/rest-api/row/model/index.d.ts +3 -0
- package/dist/src/api/rest-api/row/model/index.js.map +1 -0
- package/dist/src/api/rest-api/row/model/remove-row.response.d.ts +7 -0
- package/dist/src/api/rest-api/row/model/remove-row.response.js.map +1 -0
- package/dist/src/api/rest-api/row/model/row.model.js.map +1 -0
- package/dist/src/api/rest-api/row/model/update-row.response.d.ts +8 -0
- package/dist/src/api/rest-api/row/model/update-row.response.js.map +1 -0
- package/dist/src/api/rest-api/row/row-by-id.controller.d.ts +17 -0
- package/dist/src/api/rest-api/row/row-by-id.controller.js +217 -0
- package/dist/src/api/rest-api/row/row-by-id.controller.js.map +1 -0
- package/dist/src/api/rest-api/share/model/error.model.d.ts +5 -0
- package/dist/src/api/rest-api/share/model/error.model.js +29 -0
- package/dist/src/api/rest-api/share/model/error.model.js.map +1 -0
- package/dist/src/api/rest-api/share/model/paginated.model.js.map +1 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToBranchModel.d.ts +3 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToBranchModel.js.map +1 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToEndpointsModel.d.ts +4 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToEndpointsModel.js.map +1 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToRevisionModel.d.ts +5 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToRevisionModel.js.map +1 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToRowModel.d.ts +5 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToRowModel.js.map +1 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToTableModel.d.ts +5 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToTableModel.js.map +1 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.d.ts +5 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.js.map +1 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToUserProjectModel.d.ts +5 -0
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToUserProjectModel.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/create-row.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/get-table-references-by.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/get-table-references-to.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/get-table-rows.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/index.d.ts +5 -0
- package/dist/src/api/rest-api/table/dto/index.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/update-table.dto.d.ts +4 -0
- package/dist/src/api/rest-api/table/dto/update-table.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/model/create-row.response.d.ts +6 -0
- package/dist/src/api/rest-api/table/model/create-row.response.js.map +1 -0
- package/dist/src/api/rest-api/table/model/index.d.ts +1 -0
- package/dist/src/api/rest-api/table/model/index.js.map +1 -0
- package/dist/src/api/rest-api/table/model/table.model.js.map +1 -0
- package/dist/src/api/rest-api/table/model/update-table.response.d.ts +5 -0
- package/dist/src/api/rest-api/table/model/update-table.response.js.map +1 -0
- package/dist/src/api/rest-api/table/table-by-id.controller.d.ts +23 -0
- package/dist/src/api/rest-api/table/table-by-id.controller.js +264 -0
- package/dist/src/api/rest-api/table/table-by-id.controller.js.map +1 -0
- package/dist/src/api/rest-api/user/model/index.d.ts +1 -0
- package/dist/src/api/rest-api/user/model/index.js.map +1 -0
- package/dist/src/api/rest-api/user/model/user.model.js.map +1 -0
- package/dist/src/api/rest-api/user/user.controller.d.ts +10 -0
- package/dist/src/api/rest-api/user/user.controller.js +49 -0
- package/dist/src/api/rest-api/user/user.controller.js.map +1 -0
- package/dist/src/app.module.js +11 -2
- package/dist/src/app.module.js.map +1 -1
- package/dist/src/core/core.module.js +19 -19
- package/dist/src/core/core.module.js.map +1 -1
- package/dist/src/features/auth/auth.module.js +51 -0
- package/dist/src/features/auth/auth.module.js.map +1 -0
- package/dist/src/features/auth/auth.service.d.ts +15 -0
- package/dist/src/features/auth/auth.service.js.map +1 -0
- package/dist/src/features/auth/casl-ability.factory.d.ts +9 -0
- package/dist/src/features/auth/casl-ability.factory.js +44 -0
- package/dist/src/features/auth/casl-ability.factory.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/check-organization-permission.handler.d.ts +12 -0
- package/dist/src/features/auth/commands/handlers/check-organization-permission.handler.js +67 -0
- package/dist/src/features/auth/commands/handlers/check-organization-permission.handler.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/check-project-permission.handler.d.ts +17 -0
- package/dist/src/features/auth/commands/handlers/check-project-permission.handler.js +150 -0
- package/dist/src/features/auth/commands/handlers/check-project-permission.handler.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/check-system-permission.handler.d.ts +11 -0
- package/dist/src/features/auth/commands/handlers/check-system-permission.handler.js +54 -0
- package/dist/src/features/auth/commands/handlers/check-system-permission.handler.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/confirm-email-code.handler.d.ts +14 -0
- package/dist/src/features/auth/commands/handlers/confirm-email-code.handler.js +63 -0
- package/dist/src/features/auth/commands/handlers/confirm-email-code.handler.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/create-user.handler.d.ts +15 -0
- package/dist/src/features/auth/commands/handlers/create-user.handler.js +103 -0
- package/dist/src/features/auth/commands/handlers/create-user.handler.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/index.d.ts +9 -0
- package/dist/src/features/auth/commands/handlers/index.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/login-github.handler.d.ts +17 -0
- package/dist/src/features/auth/commands/handlers/login-github.handler.js +68 -0
- package/dist/src/features/auth/commands/handlers/login-github.handler.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/login-google.handler.d.ts +17 -0
- package/dist/src/features/auth/commands/handlers/login-google.handler.js +68 -0
- package/dist/src/features/auth/commands/handlers/login-google.handler.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/login.handler.d.ts +11 -0
- package/dist/src/features/auth/commands/handlers/login.handler.js +56 -0
- package/dist/src/features/auth/commands/handlers/login.handler.js.map +1 -0
- package/dist/src/features/auth/commands/handlers/sign-up.handler.d.ts +12 -0
- package/dist/src/features/auth/commands/handlers/sign-up.handler.js +48 -0
- package/dist/src/features/auth/commands/handlers/sign-up.handler.js.map +1 -0
- package/dist/src/features/auth/commands/impl/check-organization-permission.command.d.ts +13 -0
- package/dist/src/features/auth/commands/impl/check-organization-permission.command.js.map +1 -0
- package/dist/src/features/auth/commands/impl/check-project-permission.command.d.ts +25 -0
- package/dist/src/features/auth/commands/impl/check-project-permission.command.js.map +1 -0
- package/dist/src/features/auth/commands/impl/check-system-permission.command.d.ts +12 -0
- package/dist/src/features/auth/commands/impl/check-system-permission.command.js.map +1 -0
- package/dist/src/features/auth/commands/impl/confirm-email-code.command.js.map +1 -0
- package/dist/src/features/auth/commands/impl/create-user.command.d.ts +20 -0
- package/dist/src/features/auth/commands/impl/create-user.command.js.map +1 -0
- package/dist/src/features/auth/commands/impl/index.d.ts +9 -0
- package/dist/src/features/auth/commands/impl/index.js.map +1 -0
- package/dist/src/features/auth/commands/impl/login-github.command.js.map +1 -0
- package/dist/src/features/auth/commands/impl/login-google.command.js.map +1 -0
- package/dist/src/features/auth/commands/impl/login.command.js.map +1 -0
- package/dist/src/features/auth/commands/impl/sign-up.command.js.map +1 -0
- package/dist/src/features/auth/commands/index.d.ts +2 -0
- package/dist/src/features/auth/commands/index.js.map +1 -0
- package/dist/src/features/auth/consts.js.map +1 -0
- package/dist/src/features/auth/github-oauth.service.js +86 -0
- package/dist/src/features/auth/github-oauth.service.js.map +1 -0
- package/dist/src/features/auth/google-oauth.service.js +57 -0
- package/dist/src/features/auth/google-oauth.service.js.map +1 -0
- package/dist/src/features/auth/guards/base-persmission.guard.d.ts +24 -0
- package/dist/src/features/auth/guards/base-persmission.guard.js.map +1 -0
- package/dist/src/features/auth/guards/jwt/gql-jwt-auth-guard.service.js.map +1 -0
- package/dist/src/features/auth/guards/jwt/http-jwt-auth-guard.service.js.map +1 -0
- package/dist/src/features/auth/guards/jwt/local-auth.guard.js.map +1 -0
- package/dist/src/features/auth/guards/jwt/optional-gql-jwt-auth-guard.service.js.map +1 -0
- package/dist/src/features/auth/guards/jwt/optional-http-jwt-auth-guard.service.js.map +1 -0
- package/dist/src/features/auth/guards/organization.guard.d.ts +25 -0
- package/dist/src/features/auth/guards/organization.guard.js.map +1 -0
- package/dist/src/features/auth/guards/permission-params.d.ts +7 -0
- package/dist/src/features/auth/guards/permission-params.js.map +1 -0
- package/dist/src/features/auth/guards/project.guard.d.ts +31 -0
- package/dist/src/features/auth/guards/project.guard.js.map +1 -0
- package/dist/src/features/auth/guards/system.guard.d.ts +20 -0
- package/dist/src/features/auth/guards/system.guard.js.map +1 -0
- package/dist/src/features/auth/jwt-secret.service.js.map +1 -0
- package/dist/src/features/auth/strategy/jwt.strategy.d.ts +9 -0
- package/dist/src/features/auth/strategy/jwt.strategy.js.map +1 -0
- package/dist/src/features/auth/types.js.map +1 -0
- package/dist/src/features/auth/utils.d.ts +2 -0
- package/dist/src/features/auth/utils.js.map +1 -0
- package/dist/src/features/branch/branch.module.js +26 -0
- package/dist/src/features/branch/branch.module.js.map +1 -0
- package/dist/src/features/branch/commands/handlers/api-create-branch-by-revision-id.handler.d.ts +8 -0
- package/dist/src/features/branch/commands/handlers/api-create-branch-by-revision-id.handler.js.map +1 -0
- package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.d.ts +32 -0
- package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.js +135 -0
- package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.js.map +1 -0
- package/dist/src/features/branch/commands/handlers/index.d.ts +3 -0
- package/dist/src/features/branch/commands/handlers/index.js.map +1 -0
- package/dist/src/features/branch/commands/impl/api-create-branch-by-revision-id.command.js.map +1 -0
- package/dist/src/features/branch/commands/impl/create-branch-by-revision-id.command.js.map +1 -0
- package/dist/src/features/branch/commands/impl/index.d.ts +2 -0
- package/dist/src/features/branch/commands/impl/index.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-branch-by-id.handler.d.ts +15 -0
- package/dist/src/features/branch/quieries/handlers/get-branch-by-id.handler.js +29 -0
- package/dist/src/features/branch/quieries/handlers/get-branch-by-id.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-branch.handler.d.ts +14 -0
- package/dist/src/features/branch/quieries/handlers/get-branch.handler.js +49 -0
- package/dist/src/features/branch/quieries/handlers/get-branch.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-branches.handler.d.ts +22 -0
- package/dist/src/features/branch/quieries/handlers/get-branches.handler.js +65 -0
- package/dist/src/features/branch/quieries/handlers/get-branches.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-draft-revision.handler.d.ts +9 -0
- package/dist/src/features/branch/quieries/handlers/get-draft-revision.handler.js +31 -0
- package/dist/src/features/branch/quieries/handlers/get-draft-revision.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-head-revision.handler.d.ts +9 -0
- package/dist/src/features/branch/quieries/handlers/get-head-revision.handler.js +31 -0
- package/dist/src/features/branch/quieries/handlers/get-head-revision.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-project-by-branch.handler.d.ts +14 -0
- package/dist/src/features/branch/quieries/handlers/get-project-by-branch.handler.js +31 -0
- package/dist/src/features/branch/quieries/handlers/get-project-by-branch.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-revisions-by-branch-id.handler.d.ts +22 -0
- package/dist/src/features/branch/quieries/handlers/get-revisions-by-branch-id.handler.js +66 -0
- package/dist/src/features/branch/quieries/handlers/get-revisions-by-branch-id.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-start-revision.handler.d.ts +9 -0
- package/dist/src/features/branch/quieries/handlers/get-start-revision.handler.js +31 -0
- package/dist/src/features/branch/quieries/handlers/get-start-revision.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/get-touched-by-branch-id.handler.d.ts +13 -0
- package/dist/src/features/branch/quieries/handlers/get-touched-by-branch-id.handler.js +50 -0
- package/dist/src/features/branch/quieries/handlers/get-touched-by-branch-id.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/index.d.ts +11 -0
- package/dist/src/features/branch/quieries/handlers/index.js.map +1 -0
- package/dist/src/features/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.d.ts +16 -0
- package/dist/src/features/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.js +53 -0
- package/dist/src/features/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-branch-by-id.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-branch.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-branches.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-draft-revision.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-head-revision.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-project-by-branch.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-revisions-by-branch-id.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-start-revision.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/get-touched-by-branch-id.query.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/index.d.ts +10 -0
- package/dist/src/features/branch/quieries/impl/index.js.map +1 -0
- package/dist/src/features/branch/quieries/impl/resolve-parent-branch-by-branch.query.js.map +1 -0
- package/dist/src/features/branch/quieries/types/get-branch-by-id.types.js.map +1 -0
- package/dist/src/features/branch/quieries/types/get-branch.types.js.map +1 -0
- package/dist/src/features/branch/quieries/types/get-draft-revision.types.js.map +1 -0
- package/dist/src/features/branch/quieries/types/get-head-revision.types.js.map +1 -0
- package/dist/src/features/branch/quieries/types/get-start-revision.types.js.map +1 -0
- package/dist/src/features/branch/quieries/types/index.d.ts +4 -0
- package/dist/src/features/branch/quieries/types/index.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/__tests__/utils.d.ts +42 -0
- package/dist/src/features/draft/commands/handlers/__tests__/utils.js +261 -0
- package/dist/src/features/draft/commands/handlers/__tests__/utils.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-create-revision.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/api-create-revision.handler.js +45 -0
- package/dist/src/features/draft/commands/handlers/api-create-revision.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-create-row.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/api-create-row.handler.js +60 -0
- package/dist/src/features/draft/commands/handlers/api-create-row.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-create-table.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/api-create-table.handler.js +45 -0
- package/dist/src/features/draft/commands/handlers/api-create-table.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-remove-row.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/api-remove-row.handler.js +59 -0
- package/dist/src/features/draft/commands/handlers/api-remove-row.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-remove-table.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/api-remove-table.handler.js +43 -0
- package/dist/src/features/draft/commands/handlers/api-remove-table.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-revert-changes.handler.d.ts +12 -0
- package/dist/src/features/draft/commands/handlers/api-revert-changes.handler.js +40 -0
- package/dist/src/features/draft/commands/handlers/api-revert-changes.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-update-row.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/api-update-row.handler.js +57 -0
- package/dist/src/features/draft/commands/handlers/api-update-row.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-update-table.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/api-update-table.handler.js +45 -0
- package/dist/src/features/draft/commands/handlers/api-update-table.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/create-revision.handler.d.ts +24 -0
- package/dist/src/features/draft/commands/handlers/create-revision.handler.js +141 -0
- package/dist/src/features/draft/commands/handlers/create-revision.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/create-row.handler.d.ts +29 -0
- package/dist/src/features/draft/commands/handlers/create-row.handler.js +133 -0
- package/dist/src/features/draft/commands/handlers/create-row.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/create-table.handler.d.ts +30 -0
- package/dist/src/features/draft/commands/handlers/create-table.handler.js +124 -0
- package/dist/src/features/draft/commands/handlers/create-table.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/index.d.ts +25 -0
- package/dist/src/features/draft/commands/handlers/index.js +54 -0
- package/dist/src/features/draft/commands/handlers/index.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/remove-row.handler.d.ts +33 -0
- package/dist/src/features/draft/commands/handlers/remove-row.handler.js +233 -0
- package/dist/src/features/draft/commands/handlers/remove-row.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/remove-table.handler.d.ts +33 -0
- package/dist/src/features/draft/commands/handlers/remove-table.handler.js +179 -0
- package/dist/src/features/draft/commands/handlers/remove-table.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/revert-changes.handler.d.ts +17 -0
- package/dist/src/features/draft/commands/handlers/revert-changes.handler.js +97 -0
- package/dist/src/features/draft/commands/handlers/revert-changes.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-row.handler.d.ts +26 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-row.handler.js +116 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-row.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.d.ts +26 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.js +146 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-table.handler.d.ts +24 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-table.handler.js +114 -0
- package/dist/src/features/draft/commands/handlers/transactional/get-or-create-draft-table.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/resolve-draft-revision.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/transactional/resolve-draft-revision.handler.js +63 -0
- package/dist/src/features/draft/commands/handlers/transactional/resolve-draft-revision.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/update-rows.handler.d.ts +17 -0
- package/dist/src/features/draft/commands/handlers/transactional/update-rows.handler.js +75 -0
- package/dist/src/features/draft/commands/handlers/transactional/update-rows.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.d.ts +14 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.js +67 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-not-system-table.handler.d.ts +10 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-not-system-table.handler.js +36 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-not-system-table.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-schema.handler.d.ts +14 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-schema.handler.js +51 -0
- package/dist/src/features/draft/commands/handlers/transactional/validate-schema.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/update-row.handler.d.ts +18 -0
- package/dist/src/features/draft/commands/handlers/update-row.handler.js +75 -0
- package/dist/src/features/draft/commands/handlers/update-row.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/update-table.handler.d.ts +29 -0
- package/dist/src/features/draft/commands/handlers/update-table.handler.js +166 -0
- package/dist/src/features/draft/commands/handlers/update-table.handler.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-create-revision.command.d.ts +16 -0
- package/dist/src/features/draft/commands/impl/api-create-revision.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-create-row.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-create-table.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-remove-row.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-remove-table.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-revert-changes.command.d.ts +14 -0
- package/dist/src/features/draft/commands/impl/api-revert-changes.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-update-row.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-update-table.command.d.ts +13 -0
- package/dist/src/features/draft/commands/impl/api-update-table.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/create-revision.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/create-row.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/create-table.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/remove-row.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/remove-table.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/revert-changes.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/get-or-create-draft-row.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/get-or-create-draft-rows.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/get-or-create-draft-table.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/resolve-draft-revision.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/update-rows.command.d.ts +22 -0
- package/dist/src/features/draft/commands/impl/transactional/update-rows.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/validate-data.command.d.ts +24 -0
- package/dist/src/features/draft/commands/impl/transactional/validate-data.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/validate-not-system-table.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/validate-schema.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/update-row.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/update-table.command.d.ts +13 -0
- package/dist/src/features/draft/commands/impl/update-table.command.js.map +1 -0
- package/dist/src/features/draft/commands/types/api-create-row.handler.types.d.ts +7 -0
- package/dist/src/features/draft/commands/types/api-create-row.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/api-create-table.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/api-remove-row.handler.types.d.ts +7 -0
- package/dist/src/features/draft/commands/types/api-remove-row.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/api-remove-table.handler.types.d.ts +4 -0
- package/dist/src/features/draft/commands/types/api-remove-table.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/api-update-row.handler.types.d.ts +8 -0
- package/dist/src/features/draft/commands/types/api-update-row.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/api-update-table.handler.types.d.ts +5 -0
- package/dist/src/features/draft/commands/types/api-update-table.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/create-revision.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/create-row.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/create-table.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/remove-row.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/remove-table.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/revert-changes.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/update-row.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/update-table.handler.types.js.map +1 -0
- package/dist/src/features/draft/draft-context.service.d.ts +25 -0
- package/dist/src/features/draft/draft-context.service.js +75 -0
- package/dist/src/features/draft/draft-context.service.js.map +1 -0
- package/dist/src/features/draft/draft-request-dto/draft-revision-request.dto.d.ts +14 -0
- package/dist/src/features/draft/draft-request-dto/draft-revision-request.dto.js.map +1 -0
- package/dist/src/features/draft/draft-request-dto/index.d.ts +5 -0
- package/dist/src/features/draft/draft-request-dto/index.js.map +1 -0
- package/dist/src/features/draft/draft-request-dto/row-request.dto.d.ts +11 -0
- package/dist/src/features/draft/draft-request-dto/row-request.dto.js.map +1 -0
- package/dist/src/features/draft/draft-request-dto/rows-request.dto.d.ts +13 -0
- package/dist/src/features/draft/draft-request-dto/rows-request.dto.js.map +1 -0
- package/dist/src/features/draft/draft-request-dto/table-request.dto.d.ts +11 -0
- package/dist/src/features/draft/draft-request-dto/table-request.dto.js.map +1 -0
- package/dist/src/features/draft/draft.handler.d.ts +13 -0
- package/dist/src/features/draft/draft.handler.js.map +1 -0
- package/dist/src/features/draft/draft.module.js +44 -0
- package/dist/src/features/draft/draft.module.js.map +1 -0
- package/dist/src/features/draft/draft.transactional.commands.d.ts +23 -0
- package/dist/src/features/draft/draft.transactional.commands.js.map +1 -0
- package/dist/src/features/draft/json-schema-validator.service.d.ts +24 -0
- package/dist/src/features/draft/json-schema-validator.service.js +76 -0
- package/dist/src/features/draft/json-schema-validator.service.js.map +1 -0
- package/dist/src/features/draft/session-changelog.service.d.ts +29 -0
- package/dist/src/features/draft/session-changelog.service.js +124 -0
- package/dist/src/features/draft/session-changelog.service.js.map +1 -0
- package/dist/src/features/endpoint/commands/handlers/api-create-endpoint.handler.d.ts +8 -0
- package/dist/src/features/endpoint/commands/handlers/api-create-endpoint.handler.js.map +1 -0
- package/dist/src/features/endpoint/commands/handlers/create-endpoint.handler.d.ts +13 -0
- package/dist/src/features/endpoint/commands/handlers/create-endpoint.handler.js +62 -0
- package/dist/src/features/endpoint/commands/handlers/create-endpoint.handler.js.map +1 -0
- package/dist/src/features/endpoint/commands/handlers/delete-endpoint.handler.d.ts +12 -0
- package/dist/src/features/endpoint/commands/handlers/delete-endpoint.handler.js +50 -0
- package/dist/src/features/endpoint/commands/handlers/delete-endpoint.handler.js.map +1 -0
- package/dist/src/features/endpoint/commands/handlers/index.d.ts +4 -0
- package/dist/src/features/endpoint/commands/handlers/index.js.map +1 -0
- package/dist/src/features/endpoint/commands/impl/api-create-endpoint.command.js.map +1 -0
- package/dist/src/features/endpoint/commands/impl/create-endpoint.command.js.map +1 -0
- package/dist/src/features/endpoint/commands/impl/delete-endpoint.command.js.map +1 -0
- package/dist/src/features/endpoint/commands/impl/index.d.ts +3 -0
- package/dist/src/features/endpoint/commands/impl/index.js.map +1 -0
- package/dist/src/features/endpoint/endpoint.module.js +25 -0
- package/dist/src/features/endpoint/endpoint.module.js.map +1 -0
- package/dist/src/features/endpoint/queries/handlers/get-created-endpoint.handler.d.ts +14 -0
- package/dist/src/features/endpoint/queries/handlers/get-created-endpoint.handler.js +29 -0
- package/dist/src/features/endpoint/queries/handlers/get-created-endpoint.handler.js.map +1 -0
- package/dist/src/features/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.d.ts +19 -0
- package/dist/src/features/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.js +33 -0
- package/dist/src/features/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.js.map +1 -0
- package/dist/src/features/endpoint/queries/handlers/index.d.ts +3 -0
- package/dist/src/features/endpoint/queries/handlers/index.js.map +1 -0
- package/dist/src/features/endpoint/queries/impl/get-created-endpoint.query.js.map +1 -0
- package/dist/src/features/endpoint/queries/impl/get-revision-by-endpoint-id.query.js.map +1 -0
- package/dist/src/features/endpoint/queries/impl/index.d.ts +2 -0
- package/dist/src/features/endpoint/queries/impl/index.js.map +1 -0
- package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.d.ts +12 -0
- package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.js +67 -0
- package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.js.map +1 -0
- package/dist/src/features/organization/commands/handlers/index.d.ts +2 -0
- package/dist/src/features/organization/commands/handlers/index.js.map +1 -0
- package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.d.ts +11 -0
- package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.js +68 -0
- package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.js.map +1 -0
- package/dist/src/features/organization/commands/impl/add-user-to-organization.command.d.ts +14 -0
- package/dist/src/features/organization/commands/impl/add-user-to-organization.command.js.map +1 -0
- package/dist/src/features/organization/commands/impl/index.d.ts +2 -0
- package/dist/src/features/organization/commands/impl/index.js.map +1 -0
- package/dist/src/features/organization/commands/impl/remove-user-from-organization.command.js.map +1 -0
- package/dist/src/features/organization/commands/index.d.ts +2 -0
- package/dist/src/features/organization/commands/index.js.map +1 -0
- package/dist/src/features/organization/organization.module.js +24 -0
- package/dist/src/features/organization/organization.module.js.map +1 -0
- package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.d.ts +17 -0
- package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.js +70 -0
- package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.js.map +1 -0
- package/dist/src/features/organization/queries/handlers/get-users-organization.handler.d.ts +30 -0
- package/dist/src/features/organization/queries/handlers/get-users-organization.handler.js +58 -0
- package/dist/src/features/organization/queries/handlers/get-users-organization.handler.js.map +1 -0
- package/dist/src/features/organization/queries/handlers/index.d.ts +1 -0
- package/dist/src/features/organization/queries/handlers/index.js.map +1 -0
- package/dist/src/features/organization/queries/impl/get-projects-by-organization-id.query.d.ts +17 -0
- package/dist/src/features/organization/queries/impl/get-projects-by-organization-id.query.js.map +1 -0
- package/dist/src/features/organization/queries/impl/get-users-organization.query.d.ts +19 -0
- package/dist/src/features/organization/queries/impl/get-users-organization.query.js.map +1 -0
- package/dist/src/features/organization/queries/impl/index.d.ts +2 -0
- package/dist/src/features/organization/queries/impl/index.js.map +1 -0
- package/dist/src/features/organization/queries/index.d.ts +3 -0
- package/dist/src/features/organization/queries/index.js.map +1 -0
- package/dist/src/features/project/commands/handlers/add-user-to-project.handler.d.ts +13 -0
- package/dist/src/features/project/commands/handlers/add-user-to-project.handler.js +87 -0
- package/dist/src/features/project/commands/handlers/add-user-to-project.handler.js.map +1 -0
- package/dist/src/features/project/commands/handlers/api-create-project.handler.d.ts +8 -0
- package/dist/src/features/project/commands/handlers/api-create-project.handler.js.map +1 -0
- package/dist/src/features/project/commands/handlers/create-project.handler.d.ts +38 -0
- package/dist/src/features/project/commands/handlers/create-project.handler.js +177 -0
- package/dist/src/features/project/commands/handlers/create-project.handler.js.map +1 -0
- package/dist/src/features/project/commands/handlers/delete-project.handler.d.ts +17 -0
- package/dist/src/features/project/commands/handlers/delete-project.handler.js +73 -0
- package/dist/src/features/project/commands/handlers/delete-project.handler.js.map +1 -0
- package/dist/src/features/project/commands/handlers/index.d.ts +7 -0
- package/dist/src/features/project/commands/handlers/index.js.map +1 -0
- package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.d.ts +11 -0
- package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.js +69 -0
- package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.js.map +1 -0
- package/dist/src/features/project/commands/handlers/update-project.handler.d.ts +13 -0
- package/dist/src/features/project/commands/handlers/update-project.handler.js +52 -0
- package/dist/src/features/project/commands/handlers/update-project.handler.js.map +1 -0
- package/dist/src/features/project/commands/impl/add-user-to-project.command.d.ts +16 -0
- package/dist/src/features/project/commands/impl/add-user-to-project.command.js.map +1 -0
- package/dist/src/features/project/commands/impl/api-create-project.command.js.map +1 -0
- package/dist/src/features/project/commands/impl/create-project.command.js.map +1 -0
- package/dist/src/features/project/commands/impl/delete-project.command.js.map +1 -0
- package/dist/src/features/project/commands/impl/index.d.ts +6 -0
- package/dist/src/features/project/commands/impl/index.js.map +1 -0
- package/dist/src/features/project/commands/impl/remove-user-from-project.command.js.map +1 -0
- package/dist/src/features/project/commands/impl/update-project.command.js.map +1 -0
- package/dist/src/features/project/project.module.js +34 -0
- package/dist/src/features/project/project.module.js.map +1 -0
- package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.d.ts +16 -0
- package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.js +47 -0
- package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.js.map +1 -0
- package/dist/src/features/project/queries/handlers/get-project-by-id.handler.d.ts +14 -0
- package/dist/src/features/project/queries/handlers/get-project-by-id.handler.js +31 -0
- package/dist/src/features/project/queries/handlers/get-project-by-id.handler.js.map +1 -0
- package/dist/src/features/project/queries/handlers/get-project.handler.d.ts +12 -0
- package/dist/src/features/project/queries/handlers/get-project.handler.js +44 -0
- package/dist/src/features/project/queries/handlers/get-project.handler.js.map +1 -0
- package/dist/src/features/project/queries/handlers/get-root-branch-by-project.handler.d.ts +14 -0
- package/dist/src/features/project/queries/handlers/get-root-branch-by-project.handler.js +31 -0
- package/dist/src/features/project/queries/handlers/get-root-branch-by-project.handler.js.map +1 -0
- package/dist/src/features/project/queries/handlers/get-users-project.handler.d.ts +30 -0
- package/dist/src/features/project/queries/handlers/get-users-project.handler.js +61 -0
- package/dist/src/features/project/queries/handlers/get-users-project.handler.js.map +1 -0
- package/dist/src/features/project/queries/handlers/index.d.ts +6 -0
- package/dist/src/features/project/queries/handlers/index.js.map +1 -0
- package/dist/src/features/project/queries/impl/get-all-branches-by-project.query.js.map +1 -0
- package/dist/src/features/project/queries/impl/get-project-by-id.query.js.map +1 -0
- package/dist/src/features/project/queries/impl/get-project.query.js.map +1 -0
- package/dist/src/features/project/queries/impl/get-root-branch-by-project.query.js.map +1 -0
- package/dist/src/features/project/queries/impl/get-users-project.query.d.ts +21 -0
- package/dist/src/features/project/queries/impl/get-users-project.query.js.map +1 -0
- package/dist/src/features/project/queries/impl/index.d.ts +5 -0
- package/dist/src/features/project/queries/impl/index.js.map +1 -0
- package/dist/src/features/revision/queries/commands/get-children-by-revision.handler.d.ts +19 -0
- package/dist/src/features/revision/queries/commands/get-children-by-revision.handler.js +31 -0
- package/dist/src/features/revision/queries/commands/get-children-by-revision.handler.js.map +1 -0
- package/dist/src/features/revision/queries/commands/get-endpoints-by-revision-id.handler.d.ts +9 -0
- package/dist/src/features/revision/queries/commands/get-endpoints-by-revision-id.handler.js +31 -0
- package/dist/src/features/revision/queries/commands/get-endpoints-by-revision-id.handler.js.map +1 -0
- package/dist/src/features/revision/queries/commands/get-revision.handler.d.ts +19 -0
- package/dist/src/features/revision/queries/commands/get-revision.handler.js +31 -0
- package/dist/src/features/revision/queries/commands/get-revision.handler.js.map +1 -0
- package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.d.ts +20 -0
- package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.js +65 -0
- package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.js.map +1 -0
- package/dist/src/features/revision/queries/commands/index.d.ts +9 -0
- package/dist/src/features/revision/queries/commands/index.js.map +1 -0
- package/dist/src/features/revision/queries/commands/resolve-branch-by-revision.handler.d.ts +14 -0
- package/dist/src/features/revision/queries/commands/resolve-branch-by-revision.handler.js +31 -0
- package/dist/src/features/revision/queries/commands/resolve-branch-by-revision.handler.js.map +1 -0
- package/dist/src/features/revision/queries/commands/resolve-child-branches-by-revision.handler.d.ts +17 -0
- package/dist/src/features/revision/queries/commands/resolve-child-branches-by-revision.handler.js +53 -0
- package/dist/src/features/revision/queries/commands/resolve-child-branches-by-revision.handler.js.map +1 -0
- package/dist/src/features/revision/queries/commands/resolve-child-by-revision.handler.d.ts +21 -0
- package/dist/src/features/revision/queries/commands/resolve-child-by-revision.handler.js +41 -0
- package/dist/src/features/revision/queries/commands/resolve-child-by-revision.handler.js.map +1 -0
- package/dist/src/features/revision/queries/commands/resolve-parent-by-revision.handler.d.ts +19 -0
- package/dist/src/features/revision/queries/commands/resolve-parent-by-revision.handler.js +31 -0
- package/dist/src/features/revision/queries/commands/resolve-parent-by-revision.handler.js.map +1 -0
- package/dist/src/features/revision/queries/impl/get-children-by-revision.query.js.map +1 -0
- package/dist/src/features/revision/queries/impl/get-endpoints-by-revision-id.query.js.map +1 -0
- package/dist/src/features/revision/queries/impl/get-revision.query.d.ts +10 -0
- package/dist/src/features/revision/queries/impl/get-revision.query.js.map +1 -0
- package/dist/src/features/revision/queries/impl/get-tables-by-revision-id.query.js.map +1 -0
- package/dist/src/features/revision/queries/impl/index.d.ts +7 -0
- package/dist/src/features/revision/queries/impl/index.js.map +1 -0
- package/dist/src/features/revision/queries/impl/resolve-branch-by-revision.query.js.map +1 -0
- package/dist/src/features/revision/queries/impl/resolve-child-branches-by-revision.query.js.map +1 -0
- package/dist/src/features/revision/queries/impl/resolve-child-by-revision.query.js.map +1 -0
- package/dist/src/features/revision/queries/impl/resolve-parent-by-revision.query.js.map +1 -0
- package/dist/src/features/revision/queries/types/get-endpoints-by-revision-id.js.map +1 -0
- package/dist/src/features/revision/queries/types/get-revision-tables.types.d.ts +3 -0
- package/dist/src/features/revision/queries/types/get-revision-tables.types.js.map +1 -0
- package/dist/src/features/revision/queries/types/get-tables-by-revision-id.js.map +1 -0
- package/dist/src/features/revision/queries/types/index.d.ts +4 -0
- package/dist/src/features/revision/queries/types/index.js.map +1 -0
- package/dist/src/features/revision/revision.module.js +25 -0
- package/dist/src/features/revision/revision.module.js.map +1 -0
- package/dist/src/features/row/queries/handlers/get-row-by-id.handler.d.ts +19 -0
- package/dist/src/features/row/queries/handlers/get-row-by-id.handler.js +43 -0
- package/dist/src/features/row/queries/handlers/get-row-by-id.handler.js.map +1 -0
- package/dist/src/features/row/queries/handlers/get-row.handler.d.ts +14 -0
- package/dist/src/features/row/queries/handlers/get-row.handler.js +59 -0
- package/dist/src/features/row/queries/handlers/get-row.handler.js.map +1 -0
- package/dist/src/features/row/queries/handlers/get-rows.handler.d.ts +15 -0
- package/dist/src/features/row/queries/handlers/get-rows.handler.js +71 -0
- package/dist/src/features/row/queries/handlers/get-rows.handler.js.map +1 -0
- package/dist/src/features/row/queries/handlers/index.d.ts +8 -0
- package/dist/src/features/row/queries/handlers/index.js.map +1 -0
- package/dist/src/features/row/queries/handlers/resolve-row-count-references-by.handler.d.ts +16 -0
- package/dist/src/features/row/queries/handlers/resolve-row-count-references-by.handler.js +67 -0
- package/dist/src/features/row/queries/handlers/resolve-row-count-references-by.handler.js.map +1 -0
- package/dist/src/features/row/queries/handlers/resolve-row-count-references-to.handler.d.ts +14 -0
- package/dist/src/features/row/queries/handlers/resolve-row-count-references-to.handler.js +59 -0
- package/dist/src/features/row/queries/handlers/resolve-row-count-references-to.handler.js.map +1 -0
- package/dist/src/features/row/queries/handlers/resolve-row-references-by.handler.d.ts +28 -0
- package/dist/src/features/row/queries/handlers/resolve-row-references-by.handler.js +78 -0
- package/dist/src/features/row/queries/handlers/resolve-row-references-by.handler.js.map +1 -0
- package/dist/src/features/row/queries/handlers/resolve-row-references-to.handler.d.ts +28 -0
- package/dist/src/features/row/queries/handlers/resolve-row-references-to.handler.js +91 -0
- package/dist/src/features/row/queries/handlers/resolve-row-references-to.handler.js.map +1 -0
- package/dist/src/features/row/queries/impl/get-row-by-id.query.js.map +1 -0
- package/dist/src/features/row/queries/impl/get-row.query.js.map +1 -0
- package/dist/src/features/row/queries/impl/get-rows.query.js.map +1 -0
- package/dist/src/features/row/queries/impl/index.d.ts +7 -0
- package/dist/src/features/row/queries/impl/index.js.map +1 -0
- package/dist/src/features/row/queries/impl/resolve-row-count-references-by.query.js.map +1 -0
- package/dist/src/features/row/queries/impl/resolve-row-count-references-to.query.js.map +1 -0
- package/dist/src/features/row/queries/impl/resolve-row-references-by.query.js.map +1 -0
- package/dist/src/features/row/queries/impl/resolve-row-references-to.query.js.map +1 -0
- package/dist/src/features/row/queries/types/get-row-by-id.types.d.ts +2 -0
- package/dist/src/features/row/queries/types/get-row-by-id.types.js.map +1 -0
- package/dist/src/features/row/queries/types/get-row.types.d.ts +2 -0
- package/dist/src/features/row/queries/types/get-row.types.js.map +1 -0
- package/dist/src/features/row/queries/types/get-rows.types.d.ts +3 -0
- package/dist/src/features/row/queries/types/get-rows.types.js.map +1 -0
- package/dist/src/features/row/queries/types/index.d.ts +5 -0
- package/dist/src/features/row/queries/types/index.js.map +1 -0
- package/dist/src/features/row/queries/types/resolve-row-references-by.types.d.ts +3 -0
- package/dist/src/features/row/queries/types/resolve-row-references-by.types.js.map +1 -0
- package/dist/src/features/row/queries/types/resolve-row-references-to.types.d.ts +3 -0
- package/dist/src/features/row/queries/types/resolve-row-references-to.types.js.map +1 -0
- package/dist/src/features/row/row.module.js +24 -0
- package/dist/src/features/row/row.module.js.map +1 -0
- package/dist/src/features/share/commands/handlers/index.d.ts +3 -0
- package/dist/src/features/share/commands/handlers/index.js.map +1 -0
- package/dist/src/features/share/commands/handlers/notify-endpoints.handler.d.ts +12 -0
- package/dist/src/features/share/commands/handlers/notify-endpoints.handler.js +46 -0
- package/dist/src/features/share/commands/handlers/notify-endpoints.handler.js.map +1 -0
- package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.d.ts +11 -0
- package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.js +57 -0
- package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.js.map +1 -0
- package/dist/src/features/share/commands/impl/index.d.ts +2 -0
- package/dist/src/features/share/commands/impl/index.js.map +1 -0
- package/dist/src/features/share/commands/impl/notify-endpoints.command.js.map +1 -0
- package/dist/src/features/share/commands/impl/transactional/move-endpoints.command.js.map +1 -0
- package/dist/src/features/share/commands/utils/getOffsetPagination.d.ts +18 -0
- package/dist/src/features/share/commands/utils/getOffsetPagination.js +37 -0
- package/dist/src/features/share/commands/utils/getOffsetPagination.js.map +1 -0
- package/dist/src/features/share/commands/utils/getRevisionCursorPagination.d.ts +29 -0
- package/dist/src/features/share/commands/utils/getRevisionCursorPagination.js +71 -0
- package/dist/src/features/share/commands/utils/getRevisionCursorPagination.js.map +1 -0
- package/dist/src/features/share/const.d.ts +2 -0
- package/dist/src/features/share/const.js.map +1 -0
- package/dist/src/features/share/pagination.interface.js.map +1 -0
- package/dist/src/features/share/queries/handlers/index.d.ts +9 -0
- package/dist/src/features/share/queries/handlers/index.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.d.ts +10 -0
- package/dist/src/features/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js +45 -0
- package/dist/src/features/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.d.ts +10 -0
- package/dist/src/features/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.js +40 -0
- package/dist/src/features/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.d.ts +10 -0
- package/dist/src/features/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.js +40 -0
- package/dist/src/features/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.d.ts +10 -0
- package/dist/src/features/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.js +45 -0
- package/dist/src/features/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.d.ts +10 -0
- package/dist/src/features/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.js +43 -0
- package/dist/src/features/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.d.ts +10 -0
- package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.js +43 -0
- package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.d.ts +10 -0
- package/dist/src/features/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.js +43 -0
- package/dist/src/features/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/get-table-schema.handler.d.ts +11 -0
- package/dist/src/features/share/queries/handlers/transactional/get-table-schema.handler.js +58 -0
- package/dist/src/features/share/queries/handlers/transactional/get-table-schema.handler.js.map +1 -0
- package/dist/src/features/share/queries/impl/index.d.ts +7 -0
- package/dist/src/features/share/queries/impl/index.js.map +1 -0
- package/dist/src/features/share/queries/impl/transactional/find-branch-in-project-or-throw.query.js.map +1 -0
- package/dist/src/features/share/queries/impl/transactional/find-draft-revision-in-branch-or-throw.query.js.map +1 -0
- package/dist/src/features/share/queries/impl/transactional/find-head-revision-in-branch-or-throw.query.js.map +1 -0
- package/dist/src/features/share/queries/impl/transactional/find-project-in-organization-or-throw.query.js.map +1 -0
- package/dist/src/features/share/queries/impl/transactional/find-row-in-table-or-throw.query.js.map +1 -0
- package/dist/src/features/share/queries/impl/transactional/find-rows-in-table-or-throw.query.js.map +1 -0
- package/dist/src/features/share/queries/impl/transactional/find-table-in-revision-or-throw.query.js.map +1 -0
- package/dist/src/features/share/queries/impl/transactional/get-table-schema.query.js.map +1 -0
- package/dist/src/features/share/queries/types/find-branch-in-project.types.js.map +1 -0
- package/dist/src/features/share/queries/types/find-draft-revision-in-branch.types.js.map +1 -0
- package/dist/src/features/share/queries/types/find-head-revision-in-branch.types.js.map +1 -0
- package/dist/src/features/share/queries/types/find-project-in-organization.types.js.map +1 -0
- package/dist/src/features/share/queries/types/find-row-in-table.types.js.map +1 -0
- package/dist/src/features/share/queries/types/find-rows-in-table.types.js.map +1 -0
- package/dist/src/features/share/queries/types/find-table-in-revision.types.js.map +1 -0
- package/dist/src/features/share/queries/types/index.d.ts +7 -0
- package/dist/src/features/share/queries/types/index.js.map +1 -0
- package/dist/src/features/share/references.service.d.ts +22 -0
- package/dist/src/features/share/references.service.js +94 -0
- package/dist/src/features/share/references.service.js.map +1 -0
- package/dist/src/features/share/schema/consts.js.map +1 -0
- package/dist/src/features/share/schema/json-patch-schema.js +78 -0
- package/dist/src/features/share/schema/json-patch-schema.js.map +1 -0
- package/dist/src/features/share/schema/meta-schema.js +144 -0
- package/dist/src/features/share/schema/meta-schema.js.map +1 -0
- package/dist/src/features/share/share.commands.d.ts +8 -0
- package/dist/src/features/share/share.commands.js.map +1 -0
- package/dist/src/features/share/share.module.js +42 -0
- package/dist/src/features/share/share.module.js.map +1 -0
- package/dist/src/features/share/share.transactional.commands.d.ts +9 -0
- package/dist/src/features/share/share.transactional.commands.js.map +1 -0
- package/dist/src/features/share/share.transactional.queries.d.ts +15 -0
- package/dist/src/features/share/share.transactional.queries.js.map +1 -0
- package/dist/src/features/share/system-organizations.consts.js.map +1 -0
- package/dist/src/features/share/system-tables.consts.js.map +1 -0
- package/dist/src/features/share/types/row-with-context.types.js.map +1 -0
- package/dist/src/features/share/types/table-with-context.types.js.map +1 -0
- package/dist/src/features/share/types.js.map +1 -0
- package/dist/src/features/share/utils/index.d.ts +1 -0
- package/dist/src/features/share/utils/index.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/applyPatches.d.ts +6 -0
- package/dist/src/features/share/utils/schema/lib/applyPatches.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/createJsonSchemaStore.d.ts +6 -0
- package/dist/src/features/share/utils/schema/lib/createJsonSchemaStore.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/createJsonValueStore.d.ts +11 -0
- package/dist/src/features/share/utils/schema/lib/createJsonValueStore.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/getJsonSchemaStoreByPath.d.ts +2 -0
- package/dist/src/features/share/utils/schema/lib/getJsonSchemaStoreByPath.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/getParentForPath.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/getPathByStore.d.ts +2 -0
- package/dist/src/features/share/utils/schema/lib/getPathByStore.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/getReferencesFromSchema.d.ts +2 -0
- package/dist/src/features/share/utils/schema/lib/getReferencesFromSchema.js +16 -0
- package/dist/src/features/share/utils/schema/lib/getReferencesFromSchema.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/getReferencesFromValue.d.ts +6 -0
- package/dist/src/features/share/utils/schema/lib/getReferencesFromValue.js +24 -0
- package/dist/src/features/share/utils/schema/lib/getReferencesFromValue.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/getValuePathByStore.d.ts +2 -0
- package/dist/src/features/share/utils/schema/lib/getValuePathByStore.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/schema-table.d.ts +17 -0
- package/dist/src/features/share/utils/schema/lib/schema-table.js +73 -0
- package/dist/src/features/share/utils/schema/lib/schema-table.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/traverseStore.d.ts +2 -0
- package/dist/src/features/share/utils/schema/lib/traverseStore.js.map +1 -0
- package/dist/src/features/share/utils/schema/lib/traverseValue.d.ts +2 -0
- package/dist/src/features/share/utils/schema/lib/traverseValue.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/schema/json-array.store.d.ts +30 -0
- package/dist/src/features/share/utils/schema/model/schema/json-array.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/schema/json-boolean.store.d.ts +17 -0
- package/dist/src/features/share/utils/schema/model/schema/json-boolean.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/schema/json-number.store.d.ts +17 -0
- package/dist/src/features/share/utils/schema/model/schema/json-number.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/schema/json-object.store.d.ts +45 -0
- package/dist/src/features/share/utils/schema/model/schema/json-object.store.js +142 -0
- package/dist/src/features/share/utils/schema/model/schema/json-object.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/schema/json-schema.store.d.ts +7 -0
- package/dist/src/features/share/utils/schema/model/schema/json-schema.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/schema/json-string.store.d.ts +18 -0
- package/dist/src/features/share/utils/schema/model/schema/json-string.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/value/json-array-value.store.d.ts +16 -0
- package/dist/src/features/share/utils/schema/model/value/json-array-value.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/value/json-boolean-value.store.d.ts +11 -0
- package/dist/src/features/share/utils/schema/model/value/json-boolean-value.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/value/json-number-value.store.d.ts +11 -0
- package/dist/src/features/share/utils/schema/model/value/json-number-value.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/value/json-object-value.store.d.ts +19 -0
- package/dist/src/features/share/utils/schema/model/value/json-object-value.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/value/json-string-value.store.d.ts +12 -0
- package/dist/src/features/share/utils/schema/model/value/json-string-value.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/value/json-value.store.d.ts +7 -0
- package/dist/src/features/share/utils/schema/model/value/json-value.store.js.map +1 -0
- package/dist/src/features/share/utils/schema/model/value/value-transformation.d.ts +13 -0
- package/dist/src/features/share/utils/schema/model/value/value-transformation.js +110 -0
- package/dist/src/features/share/utils/schema/model/value/value-transformation.js.map +1 -0
- package/dist/src/features/share/utils/schema/types/json-patch.types.d.ts +21 -0
- package/dist/src/features/share/utils/schema/types/json-patch.types.js.map +1 -0
- package/dist/src/features/share/utils/schema/types/json.types.js.map +1 -0
- package/dist/src/features/share/utils/schema/types/schema.types.js.map +1 -0
- package/dist/src/features/share/utils/sort-revisions/sort-revisions.js +37 -0
- package/dist/src/features/share/utils/sort-revisions/sort-revisions.js.map +1 -0
- package/dist/src/features/table/queries/handlers/get-count-rows-in-table.handler.d.ts +8 -0
- package/dist/src/features/table/queries/handlers/get-count-rows-in-table.handler.js +33 -0
- package/dist/src/features/table/queries/handlers/get-count-rows-in-table.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/get-rows-by-table.handler.d.ts +22 -0
- package/dist/src/features/table/queries/handlers/get-rows-by-table.handler.js +59 -0
- package/dist/src/features/table/queries/handlers/get-rows-by-table.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/get-table-by-id.handler.d.ts +18 -0
- package/dist/src/features/table/queries/handlers/get-table-by-id.handler.js +42 -0
- package/dist/src/features/table/queries/handlers/get-table-by-id.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/get-table.handler.d.ts +14 -0
- package/dist/src/features/table/queries/handlers/get-table.handler.js +58 -0
- package/dist/src/features/table/queries/handlers/get-table.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/get-tables.handler.d.ts +11 -0
- package/dist/src/features/table/queries/handlers/get-tables.handler.js +67 -0
- package/dist/src/features/table/queries/handlers/get-tables.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/index.d.ts +11 -0
- package/dist/src/features/table/queries/handlers/index.js.map +1 -0
- package/dist/src/features/table/queries/handlers/resolve-table-count-references-by.handler.d.ts +15 -0
- package/dist/src/features/table/queries/handlers/resolve-table-count-references-by.handler.js +54 -0
- package/dist/src/features/table/queries/handlers/resolve-table-count-references-by.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/resolve-table-count-references-to.handler.d.ts +12 -0
- package/dist/src/features/table/queries/handlers/resolve-table-count-references-to.handler.js +51 -0
- package/dist/src/features/table/queries/handlers/resolve-table-count-references-to.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/resolve-table-references-by.handler.d.ts +17 -0
- package/dist/src/features/table/queries/handlers/resolve-table-references-by.handler.js +80 -0
- package/dist/src/features/table/queries/handlers/resolve-table-references-by.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/resolve-table-references-to.handler.d.ts +14 -0
- package/dist/src/features/table/queries/handlers/resolve-table-references-to.handler.js +78 -0
- package/dist/src/features/table/queries/handlers/resolve-table-references-to.handler.js.map +1 -0
- package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.d.ts +13 -0
- package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.js +46 -0
- package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.js.map +1 -0
- package/dist/src/features/table/queries/impl/get-count-rows-in-table.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/get-rows-by-table.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/get-table-by-id.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/get-table.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/get-tables.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/index.d.ts +6 -0
- package/dist/src/features/table/queries/impl/index.js.map +1 -0
- package/dist/src/features/table/queries/impl/resolve-table-count-references-by.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/resolve-table-count-references-to.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/resolve-table-references-by.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/resolve-table-references-to.query.js.map +1 -0
- package/dist/src/features/table/queries/impl/resolve-table-schema.query.js.map +1 -0
- package/dist/src/features/table/queries/types/get-table-by-id.types.d.ts +2 -0
- package/dist/src/features/table/queries/types/get-table-by-id.types.js.map +1 -0
- package/dist/src/features/table/queries/types/get-table-rows.types.d.ts +3 -0
- package/dist/src/features/table/queries/types/get-table-rows.types.js.map +1 -0
- package/dist/src/features/table/queries/types/get-table.types.d.ts +2 -0
- package/dist/src/features/table/queries/types/get-table.types.js.map +1 -0
- package/dist/src/features/table/queries/types/get-tables.types.d.ts +3 -0
- package/dist/src/features/table/queries/types/get-tables.types.js.map +1 -0
- package/dist/src/features/table/queries/types/index.d.ts +6 -0
- package/dist/src/features/table/queries/types/index.js.map +1 -0
- package/dist/src/features/table/queries/types/resolve-table-references-by.types.d.ts +3 -0
- package/dist/src/features/table/queries/types/resolve-table-references-by.types.js.map +1 -0
- package/dist/src/features/table/queries/types/resolve-table-references-to.types.d.ts +3 -0
- package/dist/src/features/table/queries/types/resolve-table-references-to.types.js.map +1 -0
- package/dist/src/features/table/table.module.js +31 -0
- package/dist/src/features/table/table.module.js.map +1 -0
- package/dist/src/features/user/commands/handlers/index.d.ts +2 -0
- package/dist/src/features/user/commands/handlers/index.js.map +1 -0
- package/dist/src/features/user/commands/handlers/set-username.handler.d.ts +14 -0
- package/dist/src/features/user/commands/handlers/set-username.handler.js +102 -0
- package/dist/src/features/user/commands/handlers/set-username.handler.js.map +1 -0
- package/dist/src/features/user/commands/handlers/update-password.handler.d.ts +12 -0
- package/dist/src/features/user/commands/handlers/update-password.handler.js +59 -0
- package/dist/src/features/user/commands/handlers/update-password.handler.js.map +1 -0
- package/dist/src/features/user/commands/impl/index.d.ts +2 -0
- package/dist/src/features/user/commands/impl/index.js.map +1 -0
- package/dist/src/features/user/commands/impl/set-username.command.js.map +1 -0
- package/dist/src/features/user/commands/impl/update-password.command.js.map +1 -0
- package/dist/src/features/user/commands/index.d.ts +2 -0
- package/dist/src/features/user/commands/index.js.map +1 -0
- package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.d.ts +17 -0
- package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.js +67 -0
- package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.js.map +1 -0
- package/dist/src/features/user/queries/handlers/get-user-organization.handler.d.ts +8 -0
- package/dist/src/features/user/queries/handlers/get-user-organization.handler.js +39 -0
- package/dist/src/features/user/queries/handlers/get-user-organization.handler.js.map +1 -0
- package/dist/src/features/user/queries/handlers/get-user.handler.d.ts +12 -0
- package/dist/src/features/user/queries/handlers/get-user.handler.js +41 -0
- package/dist/src/features/user/queries/handlers/get-user.handler.js.map +1 -0
- package/dist/src/features/user/queries/handlers/index.d.ts +3 -0
- package/dist/src/features/user/queries/handlers/index.js.map +1 -0
- package/dist/src/features/user/queries/impl/get-projects-by-user-id.query.d.ts +15 -0
- package/dist/src/features/user/queries/impl/get-projects-by-user-id.query.js.map +1 -0
- package/dist/src/features/user/queries/impl/get-user-organization.query.js.map +1 -0
- package/dist/src/features/user/queries/impl/get-user.query.js.map +1 -0
- package/dist/src/features/user/queries/impl/index.d.ts +3 -0
- package/dist/src/features/user/queries/impl/index.js.map +1 -0
- package/dist/src/features/user/queries/index.d.ts +2 -0
- package/dist/src/features/user/queries/index.js.map +1 -0
- package/dist/src/features/user/user.module.js +25 -0
- package/dist/src/features/user/user.module.js.map +1 -0
- package/dist/src/index.d.ts +5 -4
- package/dist/src/index.js +6 -4
- package/dist/src/index.js.map +1 -1
- package/dist/src/infrastructure/admin/admin-module.options.js.map +1 -0
- package/dist/src/infrastructure/admin/admin.module.d.ts +6 -0
- package/dist/src/infrastructure/admin/admin.module.js.map +1 -0
- package/dist/src/infrastructure/admin/envjs.controller.d.ts +6 -0
- package/dist/src/infrastructure/admin/envjs.controller.js.map +1 -0
- package/dist/src/infrastructure/admin/index.js.map +1 -0
- package/dist/src/infrastructure/clean/clean.module.js.map +1 -0
- package/dist/src/infrastructure/clean/clean.service.d.ts +7 -0
- package/dist/src/infrastructure/clean/clean.service.js.map +1 -0
- package/dist/src/infrastructure/clean/commands/handlers/clean-rows.handler.d.ts +8 -0
- package/dist/src/infrastructure/clean/commands/handlers/clean-rows.handler.js.map +1 -0
- package/dist/src/infrastructure/clean/commands/handlers/clean-tables.handler.d.ts +8 -0
- package/dist/src/infrastructure/clean/commands/handlers/clean-tables.handler.js.map +1 -0
- package/dist/src/infrastructure/clean/commands/handlers/index.d.ts +3 -0
- package/dist/src/infrastructure/clean/commands/handlers/index.js.map +1 -0
- package/dist/src/infrastructure/clean/commands/impl/clean-rows.command.js.map +1 -0
- package/dist/src/infrastructure/clean/commands/impl/clean-tables.command.js.map +1 -0
- package/dist/src/infrastructure/common/interceptors/logging.interceptor.d.ts +6 -0
- package/dist/src/infrastructure/common/interceptors/logging.interceptor.js +30 -0
- package/dist/src/infrastructure/common/interceptors/logging.interceptor.js.map +1 -0
- package/dist/src/infrastructure/configuration/configuration.module.js +24 -0
- package/dist/src/infrastructure/configuration/configuration.module.js.map +1 -0
- package/dist/src/infrastructure/configuration/queries/handlers/get-configuration.handler.d.ts +13 -0
- package/dist/src/infrastructure/configuration/queries/handlers/get-configuration.handler.js +48 -0
- package/dist/src/infrastructure/configuration/queries/handlers/get-configuration.handler.js.map +1 -0
- package/dist/src/infrastructure/configuration/queries/handlers/index.d.ts +1 -0
- package/dist/src/infrastructure/configuration/queries/handlers/index.js.map +1 -0
- package/dist/src/infrastructure/configuration/queries/impl/get-configuration.query.d.ts +13 -0
- package/dist/src/infrastructure/configuration/queries/impl/get-configuration.query.js +7 -0
- package/dist/src/infrastructure/configuration/queries/impl/get-configuration.query.js.map +1 -0
- package/dist/src/infrastructure/configuration/queries/impl/index.d.ts +1 -0
- package/dist/src/infrastructure/configuration/queries/impl/index.js.map +1 -0
- package/dist/src/infrastructure/configuration/queries/index.d.ts +2 -0
- package/dist/src/infrastructure/configuration/queries/index.js.map +1 -0
- package/dist/src/infrastructure/database/database.module.js.map +1 -0
- package/dist/src/infrastructure/database/id.service.js.map +1 -0
- package/dist/src/infrastructure/database/prisma.service.js.map +1 -0
- package/dist/src/infrastructure/database/transaction-prisma.service.d.ts +14 -0
- package/dist/src/infrastructure/database/transaction-prisma.service.js +39 -0
- package/dist/src/infrastructure/database/transaction-prisma.service.js.map +1 -0
- package/dist/src/infrastructure/email/email.module.js.map +1 -0
- package/dist/src/infrastructure/email/email.service.d.ts +14 -0
- package/dist/src/infrastructure/email/email.service.js +55 -0
- package/dist/src/infrastructure/email/email.service.js.map +1 -0
- package/dist/src/infrastructure/email/templates.service.d.ts +8 -0
- package/dist/src/infrastructure/email/templates.service.js +53 -0
- package/dist/src/infrastructure/email/templates.service.js.map +1 -0
- package/dist/src/infrastructure/email/transporter.service.js +49 -0
- package/dist/src/infrastructure/email/transporter.service.js.map +1 -0
- package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.module.d.ts +2 -0
- package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.module.js +22 -0
- package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.module.js.map +1 -0
- package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.service.d.ts +9 -0
- package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.service.js +41 -0
- package/dist/src/infrastructure/graceful-shutdown/graceful-shutdown.service.js.map +1 -0
- package/dist/src/infrastructure/health/database.check.d.ts +9 -0
- package/dist/src/infrastructure/health/database.check.js +33 -0
- package/dist/src/infrastructure/health/database.check.js.map +1 -0
- package/dist/src/infrastructure/health/health.controller.d.ts +11 -0
- package/dist/src/infrastructure/health/health.controller.js +61 -0
- package/dist/src/infrastructure/health/health.controller.js.map +1 -0
- package/dist/src/infrastructure/health/health.module.js +27 -0
- package/dist/src/infrastructure/health/health.module.js.map +1 -0
- package/dist/src/infrastructure/health/notification.check.d.ts +9 -0
- package/dist/src/infrastructure/health/notification.check.js +52 -0
- package/dist/src/infrastructure/health/notification.check.js.map +1 -0
- package/dist/src/infrastructure/metrics/graphql/constants.js.map +1 -0
- package/dist/src/infrastructure/metrics/graphql/graphql-metrics.plugin.d.ts +7 -0
- package/dist/src/infrastructure/metrics/graphql/graphql-metrics.plugin.js.map +1 -0
- package/dist/src/infrastructure/metrics/graphql/graphql-metrics.service.js.map +1 -0
- package/dist/src/infrastructure/metrics/metrics.module.js.map +1 -0
- package/dist/src/infrastructure/metrics/rest/constants.js.map +1 -0
- package/dist/src/infrastructure/metrics/rest/rest-metrics.interceptor.d.ts +9 -0
- package/dist/src/infrastructure/metrics/rest/rest-metrics.interceptor.js.map +1 -0
- package/dist/src/infrastructure/metrics/rest/rest-metrics.service.js.map +1 -0
- package/dist/src/infrastructure/metrics/utils.js.map +1 -0
- package/dist/src/infrastructure/metrics-api/metrics-api.module.js.map +1 -0
- package/dist/src/infrastructure/metrics-api/metrics-enabled.guard.js.map +1 -0
- package/dist/src/infrastructure/metrics-api/metrics.controller.d.ts +7 -0
- package/dist/src/infrastructure/metrics-api/metrics.controller.js.map +1 -0
- package/dist/src/infrastructure/notification/endpoint-notification.service.d.ts +10 -0
- package/dist/src/infrastructure/notification/endpoint-notification.service.js.map +1 -0
- package/dist/src/infrastructure/notification/in-memory-client.d.ts +10 -0
- package/dist/src/infrastructure/notification/in-memory-client.js +24 -0
- package/dist/src/infrastructure/notification/in-memory-client.js.map +1 -0
- package/dist/src/infrastructure/notification/in-memory-server.js.map +1 -0
- package/dist/src/infrastructure/notification/notification-event-emitter.js.map +1 -0
- package/dist/src/infrastructure/notification/notification.module.js.map +1 -0
- package/dist/src/main.js +1 -0
- package/dist/src/main.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +20 -13
- package/dist/src/admin/admin-module.options.js.map +0 -1
- package/dist/src/admin/admin.module.d.ts +0 -6
- package/dist/src/admin/admin.module.js.map +0 -1
- package/dist/src/admin/envjs.controller.d.ts +0 -6
- package/dist/src/admin/envjs.controller.js.map +0 -1
- package/dist/src/admin/index.js.map +0 -1
- package/dist/src/auth/auth.module.js +0 -51
- package/dist/src/auth/auth.module.js.map +0 -1
- package/dist/src/auth/auth.service.d.ts +0 -15
- package/dist/src/auth/auth.service.js.map +0 -1
- package/dist/src/auth/casl-ability.factory.d.ts +0 -25
- package/dist/src/auth/casl-ability.factory.js +0 -45
- package/dist/src/auth/casl-ability.factory.js.map +0 -1
- package/dist/src/auth/commands/handlers/check-organization-permission.handler.d.ts +0 -12
- package/dist/src/auth/commands/handlers/check-organization-permission.handler.js +0 -67
- package/dist/src/auth/commands/handlers/check-organization-permission.handler.js.map +0 -1
- package/dist/src/auth/commands/handlers/check-project-permission.handler.d.ts +0 -17
- package/dist/src/auth/commands/handlers/check-project-permission.handler.js +0 -149
- package/dist/src/auth/commands/handlers/check-project-permission.handler.js.map +0 -1
- package/dist/src/auth/commands/handlers/check-system-permission.handler.d.ts +0 -11
- package/dist/src/auth/commands/handlers/check-system-permission.handler.js +0 -54
- package/dist/src/auth/commands/handlers/check-system-permission.handler.js.map +0 -1
- package/dist/src/auth/commands/handlers/confirm-email-code.handler.d.ts +0 -14
- package/dist/src/auth/commands/handlers/confirm-email-code.handler.js +0 -62
- package/dist/src/auth/commands/handlers/confirm-email-code.handler.js.map +0 -1
- package/dist/src/auth/commands/handlers/create-user.handler.d.ts +0 -15
- package/dist/src/auth/commands/handlers/create-user.handler.js +0 -103
- package/dist/src/auth/commands/handlers/create-user.handler.js.map +0 -1
- package/dist/src/auth/commands/handlers/index.d.ts +0 -9
- package/dist/src/auth/commands/handlers/index.js.map +0 -1
- package/dist/src/auth/commands/handlers/login-github.handler.d.ts +0 -17
- package/dist/src/auth/commands/handlers/login-github.handler.js +0 -67
- package/dist/src/auth/commands/handlers/login-github.handler.js.map +0 -1
- package/dist/src/auth/commands/handlers/login-google.handler.d.ts +0 -17
- package/dist/src/auth/commands/handlers/login-google.handler.js +0 -67
- package/dist/src/auth/commands/handlers/login-google.handler.js.map +0 -1
- package/dist/src/auth/commands/handlers/login.handler.d.ts +0 -11
- package/dist/src/auth/commands/handlers/login.handler.js +0 -56
- package/dist/src/auth/commands/handlers/login.handler.js.map +0 -1
- package/dist/src/auth/commands/handlers/sign-up.handler.d.ts +0 -12
- package/dist/src/auth/commands/handlers/sign-up.handler.js +0 -48
- package/dist/src/auth/commands/handlers/sign-up.handler.js.map +0 -1
- package/dist/src/auth/commands/impl/check-organization-permission.command.d.ts +0 -13
- package/dist/src/auth/commands/impl/check-organization-permission.command.js.map +0 -1
- package/dist/src/auth/commands/impl/check-project-permission.command.d.ts +0 -25
- package/dist/src/auth/commands/impl/check-project-permission.command.js.map +0 -1
- package/dist/src/auth/commands/impl/check-system-permission.command.d.ts +0 -12
- package/dist/src/auth/commands/impl/check-system-permission.command.js.map +0 -1
- package/dist/src/auth/commands/impl/confirm-email-code.command.js.map +0 -1
- package/dist/src/auth/commands/impl/create-user.command.d.ts +0 -20
- package/dist/src/auth/commands/impl/create-user.command.js.map +0 -1
- package/dist/src/auth/commands/impl/index.d.ts +0 -9
- package/dist/src/auth/commands/impl/index.js.map +0 -1
- package/dist/src/auth/commands/impl/login-github.command.js.map +0 -1
- package/dist/src/auth/commands/impl/login-google.command.js.map +0 -1
- package/dist/src/auth/commands/impl/login.command.js.map +0 -1
- package/dist/src/auth/commands/impl/sign-up.command.js.map +0 -1
- package/dist/src/auth/commands/index.d.ts +0 -2
- package/dist/src/auth/commands/index.js.map +0 -1
- package/dist/src/auth/consts.js.map +0 -1
- package/dist/src/auth/github-oauth.service.js +0 -86
- package/dist/src/auth/github-oauth.service.js.map +0 -1
- package/dist/src/auth/google-oauth.service.js +0 -57
- package/dist/src/auth/google-oauth.service.js.map +0 -1
- package/dist/src/auth/guards/base-persmission.guard.d.ts +0 -24
- package/dist/src/auth/guards/base-persmission.guard.js.map +0 -1
- package/dist/src/auth/guards/jwt/gql-jwt-auth-guard.service.js.map +0 -1
- package/dist/src/auth/guards/jwt/http-jwt-auth-guard.service.js.map +0 -1
- package/dist/src/auth/guards/jwt/local-auth.guard.js.map +0 -1
- package/dist/src/auth/guards/jwt/optional-gql-jwt-auth-guard.service.js.map +0 -1
- package/dist/src/auth/guards/jwt/optional-http-jwt-auth-guard.service.js.map +0 -1
- package/dist/src/auth/guards/organization.guard.d.ts +0 -25
- package/dist/src/auth/guards/organization.guard.js.map +0 -1
- package/dist/src/auth/guards/permission-params.d.ts +0 -7
- package/dist/src/auth/guards/permission-params.js.map +0 -1
- package/dist/src/auth/guards/project.guard.d.ts +0 -31
- package/dist/src/auth/guards/project.guard.js.map +0 -1
- package/dist/src/auth/guards/system.guard.d.ts +0 -20
- package/dist/src/auth/guards/system.guard.js.map +0 -1
- package/dist/src/auth/jwt-secret.service.js.map +0 -1
- package/dist/src/auth/strategy/jwt.strategy.d.ts +0 -9
- package/dist/src/auth/strategy/jwt.strategy.js.map +0 -1
- package/dist/src/auth/types.js.map +0 -1
- package/dist/src/auth/utils.d.ts +0 -2
- package/dist/src/auth/utils.js.map +0 -1
- package/dist/src/branch/branch.module.js +0 -26
- package/dist/src/branch/branch.module.js.map +0 -1
- package/dist/src/branch/commands/handlers/api-create-branch-by-revision-id.handler.d.ts +0 -8
- package/dist/src/branch/commands/handlers/api-create-branch-by-revision-id.handler.js.map +0 -1
- package/dist/src/branch/commands/handlers/create-branch-by-revision-id.handler.d.ts +0 -32
- package/dist/src/branch/commands/handlers/create-branch-by-revision-id.handler.js +0 -134
- package/dist/src/branch/commands/handlers/create-branch-by-revision-id.handler.js.map +0 -1
- package/dist/src/branch/commands/handlers/index.d.ts +0 -3
- package/dist/src/branch/commands/handlers/index.js.map +0 -1
- package/dist/src/branch/commands/impl/api-create-branch-by-revision-id.command.js.map +0 -1
- package/dist/src/branch/commands/impl/create-branch-by-revision-id.command.js.map +0 -1
- package/dist/src/branch/commands/impl/index.d.ts +0 -2
- package/dist/src/branch/commands/impl/index.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-branch-by-id.handler.d.ts +0 -15
- package/dist/src/branch/quieries/handlers/get-branch-by-id.handler.js +0 -29
- package/dist/src/branch/quieries/handlers/get-branch-by-id.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-branch.handler.d.ts +0 -14
- package/dist/src/branch/quieries/handlers/get-branch.handler.js +0 -49
- package/dist/src/branch/quieries/handlers/get-branch.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-branches.handler.d.ts +0 -22
- package/dist/src/branch/quieries/handlers/get-branches.handler.js +0 -65
- package/dist/src/branch/quieries/handlers/get-branches.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-draft-revision.handler.d.ts +0 -9
- package/dist/src/branch/quieries/handlers/get-draft-revision.handler.js +0 -31
- package/dist/src/branch/quieries/handlers/get-draft-revision.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-head-revision.handler.d.ts +0 -9
- package/dist/src/branch/quieries/handlers/get-head-revision.handler.js +0 -31
- package/dist/src/branch/quieries/handlers/get-head-revision.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-project-by-branch.handler.d.ts +0 -14
- package/dist/src/branch/quieries/handlers/get-project-by-branch.handler.js +0 -31
- package/dist/src/branch/quieries/handlers/get-project-by-branch.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-revisions-by-branch-id.handler.d.ts +0 -22
- package/dist/src/branch/quieries/handlers/get-revisions-by-branch-id.handler.js +0 -65
- package/dist/src/branch/quieries/handlers/get-revisions-by-branch-id.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-start-revision.handler.d.ts +0 -9
- package/dist/src/branch/quieries/handlers/get-start-revision.handler.js +0 -31
- package/dist/src/branch/quieries/handlers/get-start-revision.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/get-touched-by-branch-id.handler.d.ts +0 -13
- package/dist/src/branch/quieries/handlers/get-touched-by-branch-id.handler.js +0 -50
- package/dist/src/branch/quieries/handlers/get-touched-by-branch-id.handler.js.map +0 -1
- package/dist/src/branch/quieries/handlers/index.d.ts +0 -11
- package/dist/src/branch/quieries/handlers/index.js.map +0 -1
- package/dist/src/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.d.ts +0 -16
- package/dist/src/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.js +0 -53
- package/dist/src/branch/quieries/handlers/resolve-parent-branch-by-branch.handler.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-branch-by-id.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-branch.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-branches.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-draft-revision.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-head-revision.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-project-by-branch.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-revisions-by-branch-id.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-start-revision.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/get-touched-by-branch-id.query.js.map +0 -1
- package/dist/src/branch/quieries/impl/index.d.ts +0 -10
- package/dist/src/branch/quieries/impl/index.js.map +0 -1
- package/dist/src/branch/quieries/impl/resolve-parent-branch-by-branch.query.js.map +0 -1
- package/dist/src/branch/quieries/types/get-branch-by-id.types.js.map +0 -1
- package/dist/src/branch/quieries/types/get-branch.types.js.map +0 -1
- package/dist/src/branch/quieries/types/get-draft-revision.types.js.map +0 -1
- package/dist/src/branch/quieries/types/get-head-revision.types.js.map +0 -1
- package/dist/src/branch/quieries/types/get-start-revision.types.js.map +0 -1
- package/dist/src/branch/quieries/types/index.d.ts +0 -4
- package/dist/src/branch/quieries/types/index.js.map +0 -1
- package/dist/src/clean/clean.module.js.map +0 -1
- package/dist/src/clean/clean.service.d.ts +0 -7
- package/dist/src/clean/clean.service.js.map +0 -1
- package/dist/src/clean/commands/handlers/clean-rows.handler.d.ts +0 -8
- package/dist/src/clean/commands/handlers/clean-rows.handler.js.map +0 -1
- package/dist/src/clean/commands/handlers/clean-tables.handler.d.ts +0 -8
- package/dist/src/clean/commands/handlers/clean-tables.handler.js.map +0 -1
- package/dist/src/clean/commands/handlers/index.d.ts +0 -3
- package/dist/src/clean/commands/handlers/index.js.map +0 -1
- package/dist/src/clean/commands/impl/clean-rows.command.js.map +0 -1
- package/dist/src/clean/commands/impl/clean-tables.command.js.map +0 -1
- package/dist/src/configuration/configuration.module.js +0 -24
- package/dist/src/configuration/configuration.module.js.map +0 -1
- package/dist/src/configuration/queries/handlers/get-configuration.handler.d.ts +0 -13
- package/dist/src/configuration/queries/handlers/get-configuration.handler.js +0 -48
- package/dist/src/configuration/queries/handlers/get-configuration.handler.js.map +0 -1
- package/dist/src/configuration/queries/handlers/index.d.ts +0 -1
- package/dist/src/configuration/queries/handlers/index.js.map +0 -1
- package/dist/src/configuration/queries/impl/get-configuration.query.d.ts +0 -14
- package/dist/src/configuration/queries/impl/get-configuration.query.js +0 -8
- package/dist/src/configuration/queries/impl/get-configuration.query.js.map +0 -1
- package/dist/src/configuration/queries/impl/index.d.ts +0 -1
- package/dist/src/configuration/queries/impl/index.js.map +0 -1
- package/dist/src/configuration/queries/index.d.ts +0 -2
- package/dist/src/configuration/queries/index.js.map +0 -1
- package/dist/src/database/database.module.js.map +0 -1
- package/dist/src/database/id.service.js.map +0 -1
- package/dist/src/database/prisma.service.js.map +0 -1
- package/dist/src/database/transaction-prisma.service.d.ts +0 -14
- package/dist/src/database/transaction-prisma.service.js +0 -39
- package/dist/src/database/transaction-prisma.service.js.map +0 -1
- package/dist/src/draft/commands/handlers/api-create-revision.handler.d.ts +0 -13
- package/dist/src/draft/commands/handlers/api-create-revision.handler.js +0 -45
- package/dist/src/draft/commands/handlers/api-create-revision.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/api-create-row.handler.d.ts +0 -13
- package/dist/src/draft/commands/handlers/api-create-row.handler.js +0 -59
- package/dist/src/draft/commands/handlers/api-create-row.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/api-create-table.handler.d.ts +0 -13
- package/dist/src/draft/commands/handlers/api-create-table.handler.js +0 -45
- package/dist/src/draft/commands/handlers/api-create-table.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/api-remove-row.handler.d.ts +0 -13
- package/dist/src/draft/commands/handlers/api-remove-row.handler.js +0 -59
- package/dist/src/draft/commands/handlers/api-remove-row.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/api-remove-table.handler.d.ts +0 -13
- package/dist/src/draft/commands/handlers/api-remove-table.handler.js +0 -43
- package/dist/src/draft/commands/handlers/api-remove-table.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/api-revert-changes.handler.d.ts +0 -12
- package/dist/src/draft/commands/handlers/api-revert-changes.handler.js +0 -40
- package/dist/src/draft/commands/handlers/api-revert-changes.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/api-update-row.handler.d.ts +0 -13
- package/dist/src/draft/commands/handlers/api-update-row.handler.js +0 -57
- package/dist/src/draft/commands/handlers/api-update-row.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/api-update-table.handler.d.ts +0 -13
- package/dist/src/draft/commands/handlers/api-update-table.handler.js +0 -45
- package/dist/src/draft/commands/handlers/api-update-table.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/create-revision.handler.d.ts +0 -24
- package/dist/src/draft/commands/handlers/create-revision.handler.js +0 -140
- package/dist/src/draft/commands/handlers/create-revision.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/create-row.handler.d.ts +0 -29
- package/dist/src/draft/commands/handlers/create-row.handler.js +0 -132
- package/dist/src/draft/commands/handlers/create-row.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/create-table.handler.d.ts +0 -30
- package/dist/src/draft/commands/handlers/create-table.handler.js +0 -123
- package/dist/src/draft/commands/handlers/create-table.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/index.d.ts +0 -25
- package/dist/src/draft/commands/handlers/index.js +0 -54
- package/dist/src/draft/commands/handlers/index.js.map +0 -1
- package/dist/src/draft/commands/handlers/remove-row.handler.d.ts +0 -33
- package/dist/src/draft/commands/handlers/remove-row.handler.js +0 -232
- package/dist/src/draft/commands/handlers/remove-row.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/remove-table.handler.d.ts +0 -33
- package/dist/src/draft/commands/handlers/remove-table.handler.js +0 -178
- package/dist/src/draft/commands/handlers/remove-table.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/revert-changes.handler.d.ts +0 -17
- package/dist/src/draft/commands/handlers/revert-changes.handler.js +0 -96
- package/dist/src/draft/commands/handlers/revert-changes.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-row.handler.d.ts +0 -26
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-row.handler.js +0 -115
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-row.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.d.ts +0 -26
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.js +0 -145
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-rows.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-table.handler.d.ts +0 -24
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-table.handler.js +0 -113
- package/dist/src/draft/commands/handlers/transactional/get-or-create-draft-table.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/transactional/resolve-draft-revision.handler.d.ts +0 -13
- package/dist/src/draft/commands/handlers/transactional/resolve-draft-revision.handler.js +0 -62
- package/dist/src/draft/commands/handlers/transactional/resolve-draft-revision.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/transactional/validate-data.handler.d.ts +0 -14
- package/dist/src/draft/commands/handlers/transactional/validate-data.handler.js +0 -67
- package/dist/src/draft/commands/handlers/transactional/validate-data.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/transactional/validate-not-system-table.handler.d.ts +0 -10
- package/dist/src/draft/commands/handlers/transactional/validate-not-system-table.handler.js +0 -35
- package/dist/src/draft/commands/handlers/transactional/validate-not-system-table.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/transactional/validate-schema.handler.d.ts +0 -14
- package/dist/src/draft/commands/handlers/transactional/validate-schema.handler.js +0 -51
- package/dist/src/draft/commands/handlers/transactional/validate-schema.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/update-row.handler.d.ts +0 -18
- package/dist/src/draft/commands/handlers/update-row.handler.js +0 -75
- package/dist/src/draft/commands/handlers/update-row.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/update-rows.handler.d.ts +0 -17
- package/dist/src/draft/commands/handlers/update-rows.handler.js +0 -74
- package/dist/src/draft/commands/handlers/update-rows.handler.js.map +0 -1
- package/dist/src/draft/commands/handlers/update-table.handler.d.ts +0 -29
- package/dist/src/draft/commands/handlers/update-table.handler.js +0 -166
- package/dist/src/draft/commands/handlers/update-table.handler.js.map +0 -1
- package/dist/src/draft/commands/impl/api-create-revision.command.d.ts +0 -14
- package/dist/src/draft/commands/impl/api-create-revision.command.js.map +0 -1
- package/dist/src/draft/commands/impl/api-create-row.command.js.map +0 -1
- package/dist/src/draft/commands/impl/api-create-table.command.js.map +0 -1
- package/dist/src/draft/commands/impl/api-remove-row.command.js.map +0 -1
- package/dist/src/draft/commands/impl/api-remove-table.command.js.map +0 -1
- package/dist/src/draft/commands/impl/api-revert-changes.command.d.ts +0 -12
- package/dist/src/draft/commands/impl/api-revert-changes.command.js.map +0 -1
- package/dist/src/draft/commands/impl/api-update-row.command.js.map +0 -1
- package/dist/src/draft/commands/impl/api-update-table.command.d.ts +0 -13
- package/dist/src/draft/commands/impl/api-update-table.command.js.map +0 -1
- package/dist/src/draft/commands/impl/create-revision.command.js.map +0 -1
- package/dist/src/draft/commands/impl/create-row.command.js.map +0 -1
- package/dist/src/draft/commands/impl/create-table.command.js.map +0 -1
- package/dist/src/draft/commands/impl/remove-row.command.js.map +0 -1
- package/dist/src/draft/commands/impl/remove-table.command.js.map +0 -1
- package/dist/src/draft/commands/impl/revert-changes.command.js.map +0 -1
- package/dist/src/draft/commands/impl/transactional/get-or-create-draft-row.command.js.map +0 -1
- package/dist/src/draft/commands/impl/transactional/get-or-create-draft-rows.command.js.map +0 -1
- package/dist/src/draft/commands/impl/transactional/get-or-create-draft-table.command.js.map +0 -1
- package/dist/src/draft/commands/impl/transactional/resolve-draft-revision.command.js.map +0 -1
- package/dist/src/draft/commands/impl/transactional/validate-data.command.d.ts +0 -24
- package/dist/src/draft/commands/impl/transactional/validate-data.command.js.map +0 -1
- package/dist/src/draft/commands/impl/transactional/validate-not-system-table.command.js.map +0 -1
- package/dist/src/draft/commands/impl/transactional/validate-schema.command.js.map +0 -1
- package/dist/src/draft/commands/impl/update-row.command.js.map +0 -1
- package/dist/src/draft/commands/impl/update-rows.command.d.ts +0 -22
- package/dist/src/draft/commands/impl/update-rows.command.js.map +0 -1
- package/dist/src/draft/commands/impl/update-table.command.d.ts +0 -13
- package/dist/src/draft/commands/impl/update-table.command.js.map +0 -1
- package/dist/src/draft/commands/types/api-create-row.handler.types.d.ts +0 -7
- package/dist/src/draft/commands/types/api-create-row.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/api-create-table.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/api-remove-row.handler.types.d.ts +0 -7
- package/dist/src/draft/commands/types/api-remove-row.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/api-remove-table.handler.types.d.ts +0 -4
- package/dist/src/draft/commands/types/api-remove-table.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/api-update-row.handler.types.d.ts +0 -8
- package/dist/src/draft/commands/types/api-update-row.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/api-update-table.handler.types.d.ts +0 -5
- package/dist/src/draft/commands/types/api-update-table.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/create-revision.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/create-row.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/create-table.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/remove-row.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/remove-table.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/revert-changes.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/update-row.handler.types.js.map +0 -1
- package/dist/src/draft/commands/types/update-table.handler.types.js.map +0 -1
- package/dist/src/draft/draft-context.service.d.ts +0 -25
- package/dist/src/draft/draft-context.service.js +0 -75
- package/dist/src/draft/draft-context.service.js.map +0 -1
- package/dist/src/draft/draft-request-dto/draft-revision-request.dto.d.ts +0 -14
- package/dist/src/draft/draft-request-dto/draft-revision-request.dto.js.map +0 -1
- package/dist/src/draft/draft-request-dto/index.d.ts +0 -5
- package/dist/src/draft/draft-request-dto/index.js.map +0 -1
- package/dist/src/draft/draft-request-dto/row-request.dto.d.ts +0 -11
- package/dist/src/draft/draft-request-dto/row-request.dto.js.map +0 -1
- package/dist/src/draft/draft-request-dto/rows-request.dto.d.ts +0 -13
- package/dist/src/draft/draft-request-dto/rows-request.dto.js.map +0 -1
- package/dist/src/draft/draft-request-dto/table-request.dto.d.ts +0 -11
- package/dist/src/draft/draft-request-dto/table-request.dto.js.map +0 -1
- package/dist/src/draft/draft.handler.d.ts +0 -13
- package/dist/src/draft/draft.handler.js.map +0 -1
- package/dist/src/draft/draft.module.js +0 -44
- package/dist/src/draft/draft.module.js.map +0 -1
- package/dist/src/draft/draft.transactional.commands.d.ts +0 -23
- package/dist/src/draft/draft.transactional.commands.js.map +0 -1
- package/dist/src/draft/json-schema-validator.service.d.ts +0 -24
- package/dist/src/draft/json-schema-validator.service.js +0 -76
- package/dist/src/draft/json-schema-validator.service.js.map +0 -1
- package/dist/src/draft/session-changelog.service.d.ts +0 -27
- package/dist/src/draft/session-changelog.service.js +0 -124
- package/dist/src/draft/session-changelog.service.js.map +0 -1
- package/dist/src/email/email.module.js.map +0 -1
- package/dist/src/email/email.service.d.ts +0 -14
- package/dist/src/email/email.service.js +0 -55
- package/dist/src/email/email.service.js.map +0 -1
- package/dist/src/email/templates.service.d.ts +0 -8
- package/dist/src/email/templates.service.js +0 -53
- package/dist/src/email/templates.service.js.map +0 -1
- package/dist/src/email/transporter.service.js +0 -49
- package/dist/src/email/transporter.service.js.map +0 -1
- package/dist/src/endpoint/commands/handlers/api-create-endpoint.handler.d.ts +0 -8
- package/dist/src/endpoint/commands/handlers/api-create-endpoint.handler.js.map +0 -1
- package/dist/src/endpoint/commands/handlers/create-endpoint.handler.d.ts +0 -13
- package/dist/src/endpoint/commands/handlers/create-endpoint.handler.js +0 -61
- package/dist/src/endpoint/commands/handlers/create-endpoint.handler.js.map +0 -1
- package/dist/src/endpoint/commands/handlers/delete-endpoint.handler.d.ts +0 -12
- package/dist/src/endpoint/commands/handlers/delete-endpoint.handler.js +0 -50
- package/dist/src/endpoint/commands/handlers/delete-endpoint.handler.js.map +0 -1
- package/dist/src/endpoint/commands/handlers/index.d.ts +0 -4
- package/dist/src/endpoint/commands/handlers/index.js.map +0 -1
- package/dist/src/endpoint/commands/impl/api-create-endpoint.command.js.map +0 -1
- package/dist/src/endpoint/commands/impl/create-endpoint.command.js.map +0 -1
- package/dist/src/endpoint/commands/impl/delete-endpoint.command.js.map +0 -1
- package/dist/src/endpoint/commands/impl/index.d.ts +0 -3
- package/dist/src/endpoint/commands/impl/index.js.map +0 -1
- package/dist/src/endpoint/endpoint.module.js +0 -25
- package/dist/src/endpoint/endpoint.module.js.map +0 -1
- package/dist/src/endpoint/queries/handlers/get-created-endpoint.handler.d.ts +0 -14
- package/dist/src/endpoint/queries/handlers/get-created-endpoint.handler.js +0 -29
- package/dist/src/endpoint/queries/handlers/get-created-endpoint.handler.js.map +0 -1
- package/dist/src/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.d.ts +0 -19
- package/dist/src/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.js +0 -33
- package/dist/src/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.js.map +0 -1
- package/dist/src/endpoint/queries/handlers/index.d.ts +0 -3
- package/dist/src/endpoint/queries/handlers/index.js.map +0 -1
- package/dist/src/endpoint/queries/impl/get-created-endpoint.query.js.map +0 -1
- package/dist/src/endpoint/queries/impl/get-revision-by-endpoint-id.query.js.map +0 -1
- package/dist/src/endpoint/queries/impl/index.d.ts +0 -2
- package/dist/src/endpoint/queries/impl/index.js.map +0 -1
- package/dist/src/graphql-api/auth/auth.resolver.d.ts +0 -13
- package/dist/src/graphql-api/auth/auth.resolver.js +0 -103
- package/dist/src/graphql-api/auth/auth.resolver.js.map +0 -1
- package/dist/src/graphql-api/auth/inputs/confirm-email-code.input.js.map +0 -1
- package/dist/src/graphql-api/auth/inputs/create-user.input.d.ts +0 -7
- package/dist/src/graphql-api/auth/inputs/create-user.input.js +0 -37
- package/dist/src/graphql-api/auth/inputs/create-user.input.js.map +0 -1
- package/dist/src/graphql-api/auth/inputs/index.d.ts +0 -6
- package/dist/src/graphql-api/auth/inputs/index.js.map +0 -1
- package/dist/src/graphql-api/auth/inputs/login-github.input.js.map +0 -1
- package/dist/src/graphql-api/auth/inputs/login-google.input.js.map +0 -1
- package/dist/src/graphql-api/auth/inputs/login.input.js.map +0 -1
- package/dist/src/graphql-api/auth/inputs/sign-up.input.js.map +0 -1
- package/dist/src/graphql-api/auth/model/index.d.ts +0 -1
- package/dist/src/graphql-api/auth/model/index.js.map +0 -1
- package/dist/src/graphql-api/auth/model/login.model.js.map +0 -1
- package/dist/src/graphql-api/branch/branch.resolver.d.ts +0 -23
- package/dist/src/graphql-api/branch/branch.resolver.js +0 -176
- package/dist/src/graphql-api/branch/branch.resolver.js.map +0 -1
- package/dist/src/graphql-api/branch/inputs/create-branch-by-revision-id.input.js.map +0 -1
- package/dist/src/graphql-api/branch/inputs/create-branch.input.js.map +0 -1
- package/dist/src/graphql-api/branch/inputs/get-branch-revisions.input.js.map +0 -1
- package/dist/src/graphql-api/branch/inputs/get-branch.input.js.map +0 -1
- package/dist/src/graphql-api/branch/inputs/get-branches.input.js.map +0 -1
- package/dist/src/graphql-api/branch/inputs/index.d.ts +0 -5
- package/dist/src/graphql-api/branch/inputs/index.js.map +0 -1
- package/dist/src/graphql-api/branch/inputs/revert-changes.input.js.map +0 -1
- package/dist/src/graphql-api/branch/model/branch.model.d.ts +0 -21
- package/dist/src/graphql-api/branch/model/branch.model.js.map +0 -1
- package/dist/src/graphql-api/branch/model/parent-branch.model.d.ts +0 -6
- package/dist/src/graphql-api/branch/model/parent-branch.model.js.map +0 -1
- package/dist/src/graphql-api/branch/parent-branch.resolver.d.ts +0 -8
- package/dist/src/graphql-api/branch/parent-branch.resolver.js +0 -51
- package/dist/src/graphql-api/branch/parent-branch.resolver.js.map +0 -1
- package/dist/src/graphql-api/configuration/configuration.resolver.d.ts +0 -7
- package/dist/src/graphql-api/configuration/configuration.resolver.js +0 -36
- package/dist/src/graphql-api/configuration/configuration.resolver.js.map +0 -1
- package/dist/src/graphql-api/configuration/model/configuration.model.js.map +0 -1
- package/dist/src/graphql-api/configuration/model/index.d.ts +0 -1
- package/dist/src/graphql-api/configuration/model/index.js.map +0 -1
- package/dist/src/graphql-api/current-user.decorator.js.map +0 -1
- package/dist/src/graphql-api/draft/draft.resolver.d.ts +0 -14
- package/dist/src/graphql-api/draft/draft.resolver.js +0 -142
- package/dist/src/graphql-api/draft/draft.resolver.js.map +0 -1
- package/dist/src/graphql-api/draft/input/create-row.input.d.ts +0 -5
- package/dist/src/graphql-api/draft/input/create-row.input.js.map +0 -1
- package/dist/src/graphql-api/draft/input/create-table.input.js.map +0 -1
- package/dist/src/graphql-api/draft/input/index.d.ts +0 -5
- package/dist/src/graphql-api/draft/input/index.js.map +0 -1
- package/dist/src/graphql-api/draft/input/remove-row.input.d.ts +0 -3
- package/dist/src/graphql-api/draft/input/remove-row.input.js.map +0 -1
- package/dist/src/graphql-api/draft/input/remove-table.input.js.map +0 -1
- package/dist/src/graphql-api/draft/input/update-row.input.d.ts +0 -5
- package/dist/src/graphql-api/draft/input/update-row.input.js.map +0 -1
- package/dist/src/graphql-api/draft/input/update-table.input.d.ts +0 -6
- package/dist/src/graphql-api/draft/input/update-table.input.js.map +0 -1
- package/dist/src/graphql-api/draft/model/create-row-result.model.d.ts +0 -7
- package/dist/src/graphql-api/draft/model/create-row-result.model.js.map +0 -1
- package/dist/src/graphql-api/draft/model/create-table-result.model.d.ts +0 -6
- package/dist/src/graphql-api/draft/model/create-table-result.model.js.map +0 -1
- package/dist/src/graphql-api/draft/model/remove-row-result.model.d.ts +0 -7
- package/dist/src/graphql-api/draft/model/remove-row-result.model.js.map +0 -1
- package/dist/src/graphql-api/draft/model/remove-table-result.model.d.ts +0 -4
- package/dist/src/graphql-api/draft/model/remove-table-result.model.js.map +0 -1
- package/dist/src/graphql-api/draft/model/update-row-result.model.d.ts +0 -8
- package/dist/src/graphql-api/draft/model/update-row-result.model.js.map +0 -1
- package/dist/src/graphql-api/draft/model/update-table-result.model.d.ts +0 -5
- package/dist/src/graphql-api/draft/model/update-table-result.model.js.map +0 -1
- package/dist/src/graphql-api/endpoint/endpoint.resolver.d.ts +0 -11
- package/dist/src/graphql-api/endpoint/endpoint.resolver.js +0 -83
- package/dist/src/graphql-api/endpoint/endpoint.resolver.js.map +0 -1
- package/dist/src/graphql-api/endpoint/inputs/create-endpoint.input.d.ts +0 -5
- package/dist/src/graphql-api/endpoint/inputs/create-endpoint.input.js.map +0 -1
- package/dist/src/graphql-api/endpoint/inputs/delete-endpoint.input.js.map +0 -1
- package/dist/src/graphql-api/endpoint/inputs/get-endpoint.input.js.map +0 -1
- package/dist/src/graphql-api/endpoint/inputs/index.d.ts +0 -3
- package/dist/src/graphql-api/endpoint/inputs/index.js.map +0 -1
- package/dist/src/graphql-api/endpoint/model/endpoint.model.d.ts +0 -11
- package/dist/src/graphql-api/endpoint/model/endpoint.model.js.map +0 -1
- package/dist/src/graphql-api/endpoint/model/index.d.ts +0 -1
- package/dist/src/graphql-api/endpoint/model/index.js.map +0 -1
- package/dist/src/graphql-api/graphql-api.module.js +0 -80
- package/dist/src/graphql-api/graphql-api.module.js.map +0 -1
- package/dist/src/graphql-api/organization/inputs/add-user-to-organization.input.d.ts +0 -6
- package/dist/src/graphql-api/organization/inputs/add-user-to-organization.input.js +0 -33
- package/dist/src/graphql-api/organization/inputs/add-user-to-organization.input.js.map +0 -1
- package/dist/src/graphql-api/organization/inputs/get-users-organization.input.js.map +0 -1
- package/dist/src/graphql-api/organization/inputs/index.d.ts +0 -3
- package/dist/src/graphql-api/organization/inputs/index.js.map +0 -1
- package/dist/src/graphql-api/organization/inputs/remove-user-from-organization.input.js.map +0 -1
- package/dist/src/graphql-api/organization/model/users-organization.connection.d.ts +0 -5
- package/dist/src/graphql-api/organization/model/users-organization.connection.js.map +0 -1
- package/dist/src/graphql-api/organization/model/users-organization.model.d.ts +0 -7
- package/dist/src/graphql-api/organization/model/users-organization.model.js.map +0 -1
- package/dist/src/graphql-api/organization/organization.resolver.d.ts +0 -15
- package/dist/src/graphql-api/organization/organization.resolver.js +0 -126
- package/dist/src/graphql-api/organization/organization.resolver.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/add-user-to-project.input.d.ts +0 -7
- package/dist/src/graphql-api/project/inputs/add-user-to-project.input.js +0 -37
- package/dist/src/graphql-api/project/inputs/add-user-to-project.input.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/create-project.input.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/delete-project.input.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/get-project-branches.input.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/get-project.input.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/get-projects.input.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/get-users-project.input.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/index.d.ts +0 -7
- package/dist/src/graphql-api/project/inputs/index.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/remove-user-from-project.input.js.map +0 -1
- package/dist/src/graphql-api/project/inputs/update-project.input.js.map +0 -1
- package/dist/src/graphql-api/project/model/index.d.ts +0 -1
- package/dist/src/graphql-api/project/model/index.js.map +0 -1
- package/dist/src/graphql-api/project/model/project.model.d.ts +0 -10
- package/dist/src/graphql-api/project/model/project.model.js.map +0 -1
- package/dist/src/graphql-api/project/model/projects.connection.d.ts +0 -5
- package/dist/src/graphql-api/project/model/projects.connection.js.map +0 -1
- package/dist/src/graphql-api/project/model/users-project.connection.d.ts +0 -5
- package/dist/src/graphql-api/project/model/users-project.connection.js.map +0 -1
- package/dist/src/graphql-api/project/model/users-project.model.d.ts +0 -7
- package/dist/src/graphql-api/project/model/users-project.model.js.map +0 -1
- package/dist/src/graphql-api/project/project.resolver.d.ts +0 -17
- package/dist/src/graphql-api/project/project.resolver.js +0 -154
- package/dist/src/graphql-api/project/project.resolver.js.map +0 -1
- package/dist/src/graphql-api/registerGraphqlEnums.js +0 -14
- package/dist/src/graphql-api/registerGraphqlEnums.js.map +0 -1
- package/dist/src/graphql-api/revision/child-branch.resolver.d.ts +0 -8
- package/dist/src/graphql-api/revision/child-branch.resolver.js +0 -51
- package/dist/src/graphql-api/revision/child-branch.resolver.js.map +0 -1
- package/dist/src/graphql-api/revision/inputs/create-revision.input.js.map +0 -1
- package/dist/src/graphql-api/revision/inputs/get-revision-tables.input.js.map +0 -1
- package/dist/src/graphql-api/revision/inputs/get-revision.input.js.map +0 -1
- package/dist/src/graphql-api/revision/model/child-branch.model.d.ts +0 -6
- package/dist/src/graphql-api/revision/model/child-branch.model.js.map +0 -1
- package/dist/src/graphql-api/revision/model/revision.model.d.ts +0 -24
- package/dist/src/graphql-api/revision/model/revision.model.js.map +0 -1
- package/dist/src/graphql-api/revision/revision.resolver.d.ts +0 -19
- package/dist/src/graphql-api/revision/revision.resolver.js +0 -150
- package/dist/src/graphql-api/revision/revision.resolver.js.map +0 -1
- package/dist/src/graphql-api/role/model/role.model.js.map +0 -1
- package/dist/src/graphql-api/row/inputs/get-row-count-references-by.input.js.map +0 -1
- package/dist/src/graphql-api/row/inputs/get-row-references.input.js.map +0 -1
- package/dist/src/graphql-api/row/inputs/get-row.input.js.map +0 -1
- package/dist/src/graphql-api/row/inputs/get-rows.input.js.map +0 -1
- package/dist/src/graphql-api/row/inputs/index.d.ts +0 -3
- package/dist/src/graphql-api/row/inputs/index.js.map +0 -1
- package/dist/src/graphql-api/row/model/row-reference.model.d.ts +0 -6
- package/dist/src/graphql-api/row/model/row-reference.model.js.map +0 -1
- package/dist/src/graphql-api/row/model/row-references-connection.model.d.ts +0 -5
- package/dist/src/graphql-api/row/model/row-references-connection.model.js.map +0 -1
- package/dist/src/graphql-api/row/model/row.model.d.ts +0 -17
- package/dist/src/graphql-api/row/model/row.model.js.map +0 -1
- package/dist/src/graphql-api/row/model/rows-connection.model.d.ts +0 -5
- package/dist/src/graphql-api/row/model/rows-connection.model.js.map +0 -1
- package/dist/src/graphql-api/row/row.resolver.d.ts +0 -16
- package/dist/src/graphql-api/row/row.resolver.js +0 -128
- package/dist/src/graphql-api/row/row.resolver.js.map +0 -1
- package/dist/src/graphql-api/share/model/paginated.model.d.ts +0 -9
- package/dist/src/graphql-api/share/model/paginated.model.js.map +0 -1
- package/dist/src/graphql-api/table/inputs/get-table-references.input.js.map +0 -1
- package/dist/src/graphql-api/table/inputs/get-table-rows.input.js.map +0 -1
- package/dist/src/graphql-api/table/inputs/get-table.input.js.map +0 -1
- package/dist/src/graphql-api/table/inputs/get-tables.input.js.map +0 -1
- package/dist/src/graphql-api/table/model/table-connection.model.d.ts +0 -5
- package/dist/src/graphql-api/table/model/table-connection.model.js.map +0 -1
- package/dist/src/graphql-api/table/model/table.model.d.ts +0 -20
- package/dist/src/graphql-api/table/model/table.model.js.map +0 -1
- package/dist/src/graphql-api/table/table.resolver.d.ts +0 -20
- package/dist/src/graphql-api/table/table.resolver.js +0 -166
- package/dist/src/graphql-api/table/table.resolver.js.map +0 -1
- package/dist/src/graphql-api/user/inputs/index.d.ts +0 -3
- package/dist/src/graphql-api/user/inputs/index.js.map +0 -1
- package/dist/src/graphql-api/user/inputs/me-projects.input.js.map +0 -1
- package/dist/src/graphql-api/user/inputs/set-username.input.js.map +0 -1
- package/dist/src/graphql-api/user/inputs/update-password.input.js.map +0 -1
- package/dist/src/graphql-api/user/model/user.model.js.map +0 -1
- package/dist/src/graphql-api/user/user.resolver.d.ts +0 -15
- package/dist/src/graphql-api/user/user.resolver.js +0 -104
- package/dist/src/graphql-api/user/user.resolver.js.map +0 -1
- package/dist/src/health/health.controller.d.ts +0 -3
- package/dist/src/health/health.controller.js +0 -32
- package/dist/src/health/health.controller.js.map +0 -1
- package/dist/src/health/health.module.js +0 -18
- package/dist/src/health/health.module.js.map +0 -1
- package/dist/src/metrics/graphql/constants.js.map +0 -1
- package/dist/src/metrics/graphql/graphql-metrics.plugin.d.ts +0 -7
- package/dist/src/metrics/graphql/graphql-metrics.plugin.js.map +0 -1
- package/dist/src/metrics/graphql/graphql-metrics.service.js.map +0 -1
- package/dist/src/metrics/metrics.module.js.map +0 -1
- package/dist/src/metrics/rest/constants.js.map +0 -1
- package/dist/src/metrics/rest/rest-metrics.interceptor.d.ts +0 -9
- package/dist/src/metrics/rest/rest-metrics.interceptor.js.map +0 -1
- package/dist/src/metrics/rest/rest-metrics.service.js.map +0 -1
- package/dist/src/metrics/utils.js.map +0 -1
- package/dist/src/metrics-api/metrics-api.module.js.map +0 -1
- package/dist/src/metrics-api/metrics-enabled.guard.js.map +0 -1
- package/dist/src/metrics-api/metrics.controller.d.ts +0 -7
- package/dist/src/metrics-api/metrics.controller.js.map +0 -1
- package/dist/src/notification/endpoint-notification.service.d.ts +0 -10
- package/dist/src/notification/endpoint-notification.service.js.map +0 -1
- package/dist/src/notification/in-memory-client.d.ts +0 -10
- package/dist/src/notification/in-memory-client.js +0 -23
- package/dist/src/notification/in-memory-client.js.map +0 -1
- package/dist/src/notification/in-memory-server.js.map +0 -1
- package/dist/src/notification/notification-event-emitter.js.map +0 -1
- package/dist/src/notification/notification.module.js.map +0 -1
- package/dist/src/organization/commands/handlers/add-user-to-organization.handler.d.ts +0 -12
- package/dist/src/organization/commands/handlers/add-user-to-organization.handler.js +0 -66
- package/dist/src/organization/commands/handlers/add-user-to-organization.handler.js.map +0 -1
- package/dist/src/organization/commands/handlers/index.d.ts +0 -2
- package/dist/src/organization/commands/handlers/index.js.map +0 -1
- package/dist/src/organization/commands/handlers/remove-user-from-organization.handler.d.ts +0 -11
- package/dist/src/organization/commands/handlers/remove-user-from-organization.handler.js +0 -67
- package/dist/src/organization/commands/handlers/remove-user-from-organization.handler.js.map +0 -1
- package/dist/src/organization/commands/impl/add-user-to-organization.command.d.ts +0 -14
- package/dist/src/organization/commands/impl/add-user-to-organization.command.js.map +0 -1
- package/dist/src/organization/commands/impl/index.d.ts +0 -2
- package/dist/src/organization/commands/impl/index.js.map +0 -1
- package/dist/src/organization/commands/impl/remove-user-from-organization.command.js.map +0 -1
- package/dist/src/organization/commands/index.d.ts +0 -2
- package/dist/src/organization/commands/index.js.map +0 -1
- package/dist/src/organization/organization.module.js +0 -24
- package/dist/src/organization/organization.module.js.map +0 -1
- package/dist/src/organization/queries/handlers/get-projects-by-organization-id.handler.d.ts +0 -17
- package/dist/src/organization/queries/handlers/get-projects-by-organization-id.handler.js +0 -70
- package/dist/src/organization/queries/handlers/get-projects-by-organization-id.handler.js.map +0 -1
- package/dist/src/organization/queries/handlers/get-users-organization.handler.d.ts +0 -30
- package/dist/src/organization/queries/handlers/get-users-organization.handler.js +0 -58
- package/dist/src/organization/queries/handlers/get-users-organization.handler.js.map +0 -1
- package/dist/src/organization/queries/handlers/index.d.ts +0 -1
- package/dist/src/organization/queries/handlers/index.js.map +0 -1
- package/dist/src/organization/queries/impl/get-projects-by-organization-id.query.d.ts +0 -17
- package/dist/src/organization/queries/impl/get-projects-by-organization-id.query.js.map +0 -1
- package/dist/src/organization/queries/impl/get-users-organization.query.d.ts +0 -19
- package/dist/src/organization/queries/impl/get-users-organization.query.js.map +0 -1
- package/dist/src/organization/queries/impl/index.d.ts +0 -2
- package/dist/src/organization/queries/impl/index.js.map +0 -1
- package/dist/src/organization/queries/index.d.ts +0 -3
- package/dist/src/organization/queries/index.js.map +0 -1
- package/dist/src/project/commands/handlers/add-user-to-project.handler.d.ts +0 -13
- package/dist/src/project/commands/handlers/add-user-to-project.handler.js +0 -86
- package/dist/src/project/commands/handlers/add-user-to-project.handler.js.map +0 -1
- package/dist/src/project/commands/handlers/api-create-project.handler.d.ts +0 -8
- package/dist/src/project/commands/handlers/api-create-project.handler.js.map +0 -1
- package/dist/src/project/commands/handlers/create-project.handler.d.ts +0 -38
- package/dist/src/project/commands/handlers/create-project.handler.js +0 -176
- package/dist/src/project/commands/handlers/create-project.handler.js.map +0 -1
- package/dist/src/project/commands/handlers/delete-project.handler.d.ts +0 -17
- package/dist/src/project/commands/handlers/delete-project.handler.js +0 -73
- package/dist/src/project/commands/handlers/delete-project.handler.js.map +0 -1
- package/dist/src/project/commands/handlers/index.d.ts +0 -7
- package/dist/src/project/commands/handlers/index.js.map +0 -1
- package/dist/src/project/commands/handlers/remove-user-from-project.handler.d.ts +0 -11
- package/dist/src/project/commands/handlers/remove-user-from-project.handler.js +0 -68
- package/dist/src/project/commands/handlers/remove-user-from-project.handler.js.map +0 -1
- package/dist/src/project/commands/handlers/update-project.handler.d.ts +0 -13
- package/dist/src/project/commands/handlers/update-project.handler.js +0 -52
- package/dist/src/project/commands/handlers/update-project.handler.js.map +0 -1
- package/dist/src/project/commands/impl/add-user-to-project.command.d.ts +0 -16
- package/dist/src/project/commands/impl/add-user-to-project.command.js.map +0 -1
- package/dist/src/project/commands/impl/api-create-project.command.js.map +0 -1
- package/dist/src/project/commands/impl/create-project.command.js.map +0 -1
- package/dist/src/project/commands/impl/delete-project.command.js.map +0 -1
- package/dist/src/project/commands/impl/index.d.ts +0 -6
- package/dist/src/project/commands/impl/index.js.map +0 -1
- package/dist/src/project/commands/impl/remove-user-from-project.command.js.map +0 -1
- package/dist/src/project/commands/impl/update-project.command.js.map +0 -1
- package/dist/src/project/project.module.js +0 -34
- package/dist/src/project/project.module.js.map +0 -1
- package/dist/src/project/queries/handlers/get-all-branches-by-project.handler.d.ts +0 -16
- package/dist/src/project/queries/handlers/get-all-branches-by-project.handler.js +0 -47
- package/dist/src/project/queries/handlers/get-all-branches-by-project.handler.js.map +0 -1
- package/dist/src/project/queries/handlers/get-project-by-id.handler.d.ts +0 -14
- package/dist/src/project/queries/handlers/get-project-by-id.handler.js +0 -31
- package/dist/src/project/queries/handlers/get-project-by-id.handler.js.map +0 -1
- package/dist/src/project/queries/handlers/get-project.handler.d.ts +0 -12
- package/dist/src/project/queries/handlers/get-project.handler.js +0 -44
- package/dist/src/project/queries/handlers/get-project.handler.js.map +0 -1
- package/dist/src/project/queries/handlers/get-root-branch-by-project.handler.d.ts +0 -14
- package/dist/src/project/queries/handlers/get-root-branch-by-project.handler.js +0 -31
- package/dist/src/project/queries/handlers/get-root-branch-by-project.handler.js.map +0 -1
- package/dist/src/project/queries/handlers/get-users-project.handler.d.ts +0 -30
- package/dist/src/project/queries/handlers/get-users-project.handler.js +0 -61
- package/dist/src/project/queries/handlers/get-users-project.handler.js.map +0 -1
- package/dist/src/project/queries/handlers/index.d.ts +0 -6
- package/dist/src/project/queries/handlers/index.js.map +0 -1
- package/dist/src/project/queries/impl/get-all-branches-by-project.query.js.map +0 -1
- package/dist/src/project/queries/impl/get-project-by-id.query.js.map +0 -1
- package/dist/src/project/queries/impl/get-project.query.js.map +0 -1
- package/dist/src/project/queries/impl/get-root-branch-by-project.query.js.map +0 -1
- package/dist/src/project/queries/impl/get-users-project.query.d.ts +0 -21
- package/dist/src/project/queries/impl/get-users-project.query.js.map +0 -1
- package/dist/src/project/queries/impl/index.d.ts +0 -5
- package/dist/src/project/queries/impl/index.js.map +0 -1
- package/dist/src/rest-api/auth/auth.controller.d.ts +0 -13
- package/dist/src/rest-api/auth/auth.controller.js +0 -86
- package/dist/src/rest-api/auth/auth.controller.js.map +0 -1
- package/dist/src/rest-api/auth/dto/create-user.dto.d.ts +0 -7
- package/dist/src/rest-api/auth/dto/create-user.dto.js +0 -34
- package/dist/src/rest-api/auth/dto/create-user.dto.js.map +0 -1
- package/dist/src/rest-api/auth/dto/index.d.ts +0 -2
- package/dist/src/rest-api/auth/dto/index.js.map +0 -1
- package/dist/src/rest-api/auth/dto/login.dto.js.map +0 -1
- package/dist/src/rest-api/auth/dto/update-password.dto.js.map +0 -1
- package/dist/src/rest-api/auth/model/index.d.ts +0 -1
- package/dist/src/rest-api/auth/model/index.js.map +0 -1
- package/dist/src/rest-api/auth/model/login.response.js.map +0 -1
- package/dist/src/rest-api/branch/branch-by-name.controller.d.ts +0 -19
- package/dist/src/rest-api/branch/branch-by-name.controller.js +0 -225
- package/dist/src/rest-api/branch/branch-by-name.controller.js.map +0 -1
- package/dist/src/rest-api/branch/dto/create-branch-by-revision.dto.js.map +0 -1
- package/dist/src/rest-api/branch/dto/create-revision.dto.js.map +0 -1
- package/dist/src/rest-api/branch/dto/get-branch-revisions.dto.js.map +0 -1
- package/dist/src/rest-api/branch/dto/index.d.ts +0 -3
- package/dist/src/rest-api/branch/dto/index.js.map +0 -1
- package/dist/src/rest-api/branch/model/branch.model.js.map +0 -1
- package/dist/src/rest-api/branch/model/index.d.ts +0 -2
- package/dist/src/rest-api/branch/model/index.js.map +0 -1
- package/dist/src/rest-api/branch/model/parent-branch.response.js.map +0 -1
- package/dist/src/rest-api/configuration/configuration.controller.d.ts +0 -7
- package/dist/src/rest-api/configuration/configuration.controller.js +0 -42
- package/dist/src/rest-api/configuration/configuration.controller.js.map +0 -1
- package/dist/src/rest-api/configuration/model/configuration.response.js.map +0 -1
- package/dist/src/rest-api/configuration/model/index.d.ts +0 -1
- package/dist/src/rest-api/configuration/model/index.js.map +0 -1
- package/dist/src/rest-api/endpoint/endpointByIdController.js +0 -60
- package/dist/src/rest-api/endpoint/endpointByIdController.js.map +0 -1
- package/dist/src/rest-api/endpoint/model/endpoint.model.js.map +0 -1
- package/dist/src/rest-api/endpoint/model/index.d.ts +0 -1
- package/dist/src/rest-api/endpoint/model/index.js.map +0 -1
- package/dist/src/rest-api/organization/dto/add-user-to-organization.dto.d.ts +0 -5
- package/dist/src/rest-api/organization/dto/add-user-to-organization.dto.js +0 -26
- package/dist/src/rest-api/organization/dto/add-user-to-organization.dto.js.map +0 -1
- package/dist/src/rest-api/organization/dto/create-project.dto.js.map +0 -1
- package/dist/src/rest-api/organization/dto/get-projects.dto.js.map +0 -1
- package/dist/src/rest-api/organization/dto/get-users-organization.dto.js.map +0 -1
- package/dist/src/rest-api/organization/dto/index.d.ts +0 -5
- package/dist/src/rest-api/organization/dto/index.js.map +0 -1
- package/dist/src/rest-api/organization/dto/remove-user-from-organization.dto.js.map +0 -1
- package/dist/src/rest-api/organization/model/index.d.ts +0 -3
- package/dist/src/rest-api/organization/model/index.js.map +0 -1
- package/dist/src/rest-api/organization/model/project.connection.js.map +0 -1
- package/dist/src/rest-api/organization/model/users-organization.connection.js.map +0 -1
- package/dist/src/rest-api/organization/model/users-organization.model.d.ts +0 -7
- package/dist/src/rest-api/organization/model/users-organization.model.js.map +0 -1
- package/dist/src/rest-api/organization/organization.controller.d.ts +0 -16
- package/dist/src/rest-api/organization/organization.controller.js +0 -147
- package/dist/src/rest-api/organization/organization.controller.js.map +0 -1
- package/dist/src/rest-api/project/dto/add-user-to-project.dto.d.ts +0 -5
- package/dist/src/rest-api/project/dto/add-user-to-project.dto.js +0 -26
- package/dist/src/rest-api/project/dto/add-user-to-project.dto.js.map +0 -1
- package/dist/src/rest-api/project/dto/get-project-branches.dto.js.map +0 -1
- package/dist/src/rest-api/project/dto/get-users-project.dto.js.map +0 -1
- package/dist/src/rest-api/project/dto/update-project.dto.js.map +0 -1
- package/dist/src/rest-api/project/model/index.d.ts +0 -3
- package/dist/src/rest-api/project/model/index.js.map +0 -1
- package/dist/src/rest-api/project/model/project.model.js.map +0 -1
- package/dist/src/rest-api/project/model/users-project.connection.js.map +0 -1
- package/dist/src/rest-api/project/model/users-project.model.d.ts +0 -7
- package/dist/src/rest-api/project/model/users-project.model.js.map +0 -1
- package/dist/src/rest-api/project/project.controller.d.ts +0 -19
- package/dist/src/rest-api/project/project.controller.js +0 -206
- package/dist/src/rest-api/project/project.controller.js.map +0 -1
- package/dist/src/rest-api/rest-api.module.js +0 -44
- package/dist/src/rest-api/rest-api.module.js.map +0 -1
- package/dist/src/rest-api/revision/dto/create-endpoint.dto.js.map +0 -1
- package/dist/src/rest-api/revision/dto/create-table.dto.js.map +0 -1
- package/dist/src/rest-api/revision/dto/get-revision-tables.dto.js.map +0 -1
- package/dist/src/rest-api/revision/dto/index.d.ts +0 -3
- package/dist/src/rest-api/revision/dto/index.js.map +0 -1
- package/dist/src/rest-api/revision/model/child-branches.response.js.map +0 -1
- package/dist/src/rest-api/revision/model/create-table.response.d.ts +0 -6
- package/dist/src/rest-api/revision/model/create-table.response.js.map +0 -1
- package/dist/src/rest-api/revision/model/index.d.ts +0 -2
- package/dist/src/rest-api/revision/model/index.js.map +0 -1
- package/dist/src/rest-api/revision/model/revision.model.js.map +0 -1
- package/dist/src/rest-api/revision/revision-by-id.controller.d.ts +0 -21
- package/dist/src/rest-api/revision/revision-by-id.controller.js +0 -213
- package/dist/src/rest-api/revision/revision-by-id.controller.js.map +0 -1
- package/dist/src/rest-api/role/model/index.d.ts +0 -1
- package/dist/src/rest-api/role/model/index.js.map +0 -1
- package/dist/src/rest-api/role/model/role.model.js.map +0 -1
- package/dist/src/rest-api/row/dto/get-row-references-by.dto.js.map +0 -1
- package/dist/src/rest-api/row/dto/get-row-references-to.dto.js.map +0 -1
- package/dist/src/rest-api/row/dto/index.d.ts +0 -2
- package/dist/src/rest-api/row/dto/index.js.map +0 -1
- package/dist/src/rest-api/row/dto/update-row.dto.js.map +0 -1
- package/dist/src/rest-api/row/model/index.d.ts +0 -3
- package/dist/src/rest-api/row/model/index.js.map +0 -1
- package/dist/src/rest-api/row/model/remove-row.response.d.ts +0 -7
- package/dist/src/rest-api/row/model/remove-row.response.js.map +0 -1
- package/dist/src/rest-api/row/model/row.model.js.map +0 -1
- package/dist/src/rest-api/row/model/update-row.response.d.ts +0 -8
- package/dist/src/rest-api/row/model/update-row.response.js.map +0 -1
- package/dist/src/rest-api/row/row-by-id.controller.d.ts +0 -17
- package/dist/src/rest-api/row/row-by-id.controller.js +0 -211
- package/dist/src/rest-api/row/row-by-id.controller.js.map +0 -1
- package/dist/src/rest-api/share/model/paginated.model.js.map +0 -1
- package/dist/src/rest-api/share/utils/transformFromPrismaToBranchModel.d.ts +0 -3
- package/dist/src/rest-api/share/utils/transformFromPrismaToBranchModel.js.map +0 -1
- package/dist/src/rest-api/share/utils/transformFromPrismaToEndpointsModel.d.ts +0 -4
- package/dist/src/rest-api/share/utils/transformFromPrismaToEndpointsModel.js.map +0 -1
- package/dist/src/rest-api/share/utils/transformFromPrismaToRevisionModel.d.ts +0 -5
- package/dist/src/rest-api/share/utils/transformFromPrismaToRevisionModel.js.map +0 -1
- package/dist/src/rest-api/share/utils/transformFromPrismaToRowModel.d.ts +0 -5
- package/dist/src/rest-api/share/utils/transformFromPrismaToRowModel.js.map +0 -1
- package/dist/src/rest-api/share/utils/transformFromPrismaToTableModel.d.ts +0 -5
- package/dist/src/rest-api/share/utils/transformFromPrismaToTableModel.js.map +0 -1
- package/dist/src/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.d.ts +0 -5
- package/dist/src/rest-api/share/utils/transformFromPrismaToUserOrganizationModel.js.map +0 -1
- package/dist/src/rest-api/share/utils/transformFromPrismaToUserProjectModel.d.ts +0 -5
- package/dist/src/rest-api/share/utils/transformFromPrismaToUserProjectModel.js.map +0 -1
- package/dist/src/rest-api/table/dto/create-row.dto.js.map +0 -1
- package/dist/src/rest-api/table/dto/get-table-references-by.dto.js.map +0 -1
- package/dist/src/rest-api/table/dto/get-table-references-to.dto.js.map +0 -1
- package/dist/src/rest-api/table/dto/get-table-rows.dto.js.map +0 -1
- package/dist/src/rest-api/table/dto/index.d.ts +0 -5
- package/dist/src/rest-api/table/dto/index.js.map +0 -1
- package/dist/src/rest-api/table/dto/update-table.dto.d.ts +0 -4
- package/dist/src/rest-api/table/dto/update-table.dto.js.map +0 -1
- package/dist/src/rest-api/table/model/create-row.response.d.ts +0 -6
- package/dist/src/rest-api/table/model/create-row.response.js.map +0 -1
- package/dist/src/rest-api/table/model/index.d.ts +0 -1
- package/dist/src/rest-api/table/model/index.js.map +0 -1
- package/dist/src/rest-api/table/model/table.model.js.map +0 -1
- package/dist/src/rest-api/table/model/update-table.response.d.ts +0 -5
- package/dist/src/rest-api/table/model/update-table.response.js.map +0 -1
- package/dist/src/rest-api/table/table-by-id.controller.d.ts +0 -23
- package/dist/src/rest-api/table/table-by-id.controller.js +0 -264
- package/dist/src/rest-api/table/table-by-id.controller.js.map +0 -1
- package/dist/src/rest-api/user/model/index.d.ts +0 -1
- package/dist/src/rest-api/user/model/index.js.map +0 -1
- package/dist/src/rest-api/user/model/user.model.js.map +0 -1
- package/dist/src/rest-api/user/user.controller.d.ts +0 -10
- package/dist/src/rest-api/user/user.controller.js +0 -49
- package/dist/src/rest-api/user/user.controller.js.map +0 -1
- package/dist/src/revision/queries/commands/get-children-by-revision.handler.d.ts +0 -19
- package/dist/src/revision/queries/commands/get-children-by-revision.handler.js +0 -31
- package/dist/src/revision/queries/commands/get-children-by-revision.handler.js.map +0 -1
- package/dist/src/revision/queries/commands/get-endpoints-by-revision-id.handler.d.ts +0 -9
- package/dist/src/revision/queries/commands/get-endpoints-by-revision-id.handler.js +0 -31
- package/dist/src/revision/queries/commands/get-endpoints-by-revision-id.handler.js.map +0 -1
- package/dist/src/revision/queries/commands/get-revision.handler.d.ts +0 -19
- package/dist/src/revision/queries/commands/get-revision.handler.js +0 -31
- package/dist/src/revision/queries/commands/get-revision.handler.js.map +0 -1
- package/dist/src/revision/queries/commands/get-tables-by-revision-id.handler.d.ts +0 -20
- package/dist/src/revision/queries/commands/get-tables-by-revision-id.handler.js +0 -65
- package/dist/src/revision/queries/commands/get-tables-by-revision-id.handler.js.map +0 -1
- package/dist/src/revision/queries/commands/index.d.ts +0 -9
- package/dist/src/revision/queries/commands/index.js.map +0 -1
- package/dist/src/revision/queries/commands/resolve-branch-by-revision.handler.d.ts +0 -14
- package/dist/src/revision/queries/commands/resolve-branch-by-revision.handler.js +0 -31
- package/dist/src/revision/queries/commands/resolve-branch-by-revision.handler.js.map +0 -1
- package/dist/src/revision/queries/commands/resolve-child-branches-by-revision.handler.d.ts +0 -17
- package/dist/src/revision/queries/commands/resolve-child-branches-by-revision.handler.js +0 -53
- package/dist/src/revision/queries/commands/resolve-child-branches-by-revision.handler.js.map +0 -1
- package/dist/src/revision/queries/commands/resolve-child-by-revision.handler.d.ts +0 -21
- package/dist/src/revision/queries/commands/resolve-child-by-revision.handler.js +0 -41
- package/dist/src/revision/queries/commands/resolve-child-by-revision.handler.js.map +0 -1
- package/dist/src/revision/queries/commands/resolve-parent-by-revision.handler.d.ts +0 -19
- package/dist/src/revision/queries/commands/resolve-parent-by-revision.handler.js +0 -31
- package/dist/src/revision/queries/commands/resolve-parent-by-revision.handler.js.map +0 -1
- package/dist/src/revision/queries/impl/get-children-by-revision.query.js.map +0 -1
- package/dist/src/revision/queries/impl/get-endpoints-by-revision-id.query.js.map +0 -1
- package/dist/src/revision/queries/impl/get-revision.query.d.ts +0 -8
- package/dist/src/revision/queries/impl/get-revision.query.js.map +0 -1
- package/dist/src/revision/queries/impl/get-tables-by-revision-id.query.js.map +0 -1
- package/dist/src/revision/queries/impl/index.d.ts +0 -7
- package/dist/src/revision/queries/impl/index.js.map +0 -1
- package/dist/src/revision/queries/impl/resolve-branch-by-revision.query.js.map +0 -1
- package/dist/src/revision/queries/impl/resolve-child-branches-by-revision.query.js.map +0 -1
- package/dist/src/revision/queries/impl/resolve-child-by-revision.query.js.map +0 -1
- package/dist/src/revision/queries/impl/resolve-parent-by-revision.query.js.map +0 -1
- package/dist/src/revision/queries/types/get-endpoints-by-revision-id.js.map +0 -1
- package/dist/src/revision/queries/types/get-revision-tables.types.d.ts +0 -3
- package/dist/src/revision/queries/types/get-revision-tables.types.js.map +0 -1
- package/dist/src/revision/queries/types/get-tables-by-revision-id.js.map +0 -1
- package/dist/src/revision/queries/types/index.d.ts +0 -4
- package/dist/src/revision/queries/types/index.js.map +0 -1
- package/dist/src/revision/revision.module.js +0 -25
- package/dist/src/revision/revision.module.js.map +0 -1
- package/dist/src/row/queries/handlers/get-row-by-id.handler.d.ts +0 -19
- package/dist/src/row/queries/handlers/get-row-by-id.handler.js +0 -43
- package/dist/src/row/queries/handlers/get-row-by-id.handler.js.map +0 -1
- package/dist/src/row/queries/handlers/get-row.handler.d.ts +0 -14
- package/dist/src/row/queries/handlers/get-row.handler.js +0 -59
- package/dist/src/row/queries/handlers/get-row.handler.js.map +0 -1
- package/dist/src/row/queries/handlers/get-rows.handler.d.ts +0 -15
- package/dist/src/row/queries/handlers/get-rows.handler.js +0 -71
- package/dist/src/row/queries/handlers/get-rows.handler.js.map +0 -1
- package/dist/src/row/queries/handlers/index.d.ts +0 -8
- package/dist/src/row/queries/handlers/index.js.map +0 -1
- package/dist/src/row/queries/handlers/resolve-row-count-references-by.handler.d.ts +0 -16
- package/dist/src/row/queries/handlers/resolve-row-count-references-by.handler.js +0 -67
- package/dist/src/row/queries/handlers/resolve-row-count-references-by.handler.js.map +0 -1
- package/dist/src/row/queries/handlers/resolve-row-count-references-to.handler.d.ts +0 -14
- package/dist/src/row/queries/handlers/resolve-row-count-references-to.handler.js +0 -59
- package/dist/src/row/queries/handlers/resolve-row-count-references-to.handler.js.map +0 -1
- package/dist/src/row/queries/handlers/resolve-row-references-by.handler.d.ts +0 -28
- package/dist/src/row/queries/handlers/resolve-row-references-by.handler.js +0 -78
- package/dist/src/row/queries/handlers/resolve-row-references-by.handler.js.map +0 -1
- package/dist/src/row/queries/handlers/resolve-row-references-to.handler.d.ts +0 -28
- package/dist/src/row/queries/handlers/resolve-row-references-to.handler.js +0 -91
- package/dist/src/row/queries/handlers/resolve-row-references-to.handler.js.map +0 -1
- package/dist/src/row/queries/impl/get-row-by-id.query.js.map +0 -1
- package/dist/src/row/queries/impl/get-row.query.js.map +0 -1
- package/dist/src/row/queries/impl/get-rows.query.js.map +0 -1
- package/dist/src/row/queries/impl/index.d.ts +0 -7
- package/dist/src/row/queries/impl/index.js.map +0 -1
- package/dist/src/row/queries/impl/resolve-row-count-references-by.query.js.map +0 -1
- package/dist/src/row/queries/impl/resolve-row-count-references-to.query.js.map +0 -1
- package/dist/src/row/queries/impl/resolve-row-references-by.query.js.map +0 -1
- package/dist/src/row/queries/impl/resolve-row-references-to.query.js.map +0 -1
- package/dist/src/row/queries/types/get-row-by-id.types.d.ts +0 -2
- package/dist/src/row/queries/types/get-row-by-id.types.js.map +0 -1
- package/dist/src/row/queries/types/get-row.types.d.ts +0 -2
- package/dist/src/row/queries/types/get-row.types.js.map +0 -1
- package/dist/src/row/queries/types/get-rows.types.d.ts +0 -3
- package/dist/src/row/queries/types/get-rows.types.js.map +0 -1
- package/dist/src/row/queries/types/index.d.ts +0 -5
- package/dist/src/row/queries/types/index.js.map +0 -1
- package/dist/src/row/queries/types/resolve-row-references-by.types.d.ts +0 -3
- package/dist/src/row/queries/types/resolve-row-references-by.types.js.map +0 -1
- package/dist/src/row/queries/types/resolve-row-references-to.types.d.ts +0 -3
- package/dist/src/row/queries/types/resolve-row-references-to.types.js.map +0 -1
- package/dist/src/row/row.module.js +0 -24
- package/dist/src/row/row.module.js.map +0 -1
- package/dist/src/share/commands/handlers/index.d.ts +0 -3
- package/dist/src/share/commands/handlers/index.js.map +0 -1
- package/dist/src/share/commands/handlers/notify-endpoints.handler.d.ts +0 -12
- package/dist/src/share/commands/handlers/notify-endpoints.handler.js +0 -46
- package/dist/src/share/commands/handlers/notify-endpoints.handler.js.map +0 -1
- package/dist/src/share/commands/handlers/transactional/move-endpoints.handler.d.ts +0 -11
- package/dist/src/share/commands/handlers/transactional/move-endpoints.handler.js +0 -56
- package/dist/src/share/commands/handlers/transactional/move-endpoints.handler.js.map +0 -1
- package/dist/src/share/commands/impl/index.d.ts +0 -2
- package/dist/src/share/commands/impl/index.js.map +0 -1
- package/dist/src/share/commands/impl/notify-endpoints.command.js.map +0 -1
- package/dist/src/share/commands/impl/transactional/move-endpoints.command.js.map +0 -1
- package/dist/src/share/commands/utils/getOffsetPagination.d.ts +0 -18
- package/dist/src/share/commands/utils/getOffsetPagination.js +0 -37
- package/dist/src/share/commands/utils/getOffsetPagination.js.map +0 -1
- package/dist/src/share/commands/utils/getRevisionCursorPagination.d.ts +0 -29
- package/dist/src/share/commands/utils/getRevisionCursorPagination.js +0 -70
- package/dist/src/share/commands/utils/getRevisionCursorPagination.js.map +0 -1
- package/dist/src/share/const.d.ts +0 -2
- package/dist/src/share/const.js.map +0 -1
- package/dist/src/share/pagination.interface.js.map +0 -1
- package/dist/src/share/queries/handlers/index.d.ts +0 -9
- package/dist/src/share/queries/handlers/index.js.map +0 -1
- package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.d.ts +0 -10
- package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js +0 -44
- package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js.map +0 -1
- package/dist/src/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.d.ts +0 -10
- package/dist/src/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.js +0 -39
- package/dist/src/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.js.map +0 -1
- package/dist/src/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.d.ts +0 -10
- package/dist/src/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.js +0 -39
- package/dist/src/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.js.map +0 -1
- package/dist/src/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.d.ts +0 -10
- package/dist/src/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.js +0 -44
- package/dist/src/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.js.map +0 -1
- package/dist/src/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.d.ts +0 -10
- package/dist/src/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.js +0 -42
- package/dist/src/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.js.map +0 -1
- package/dist/src/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.d.ts +0 -10
- package/dist/src/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.js +0 -42
- package/dist/src/share/queries/handlers/transactional/find-rows-in-table-or-throw.handler.js.map +0 -1
- package/dist/src/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.d.ts +0 -10
- package/dist/src/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.js +0 -42
- package/dist/src/share/queries/handlers/transactional/find-table-in-revision-or-throw.handler.js.map +0 -1
- package/dist/src/share/queries/handlers/transactional/get-table-schema.handler.d.ts +0 -11
- package/dist/src/share/queries/handlers/transactional/get-table-schema.handler.js +0 -57
- package/dist/src/share/queries/handlers/transactional/get-table-schema.handler.js.map +0 -1
- package/dist/src/share/queries/impl/index.d.ts +0 -7
- package/dist/src/share/queries/impl/index.js.map +0 -1
- package/dist/src/share/queries/impl/transactional/find-branch-in-project-or-throw.query.js.map +0 -1
- package/dist/src/share/queries/impl/transactional/find-draft-revision-in-branch-or-throw.query.js.map +0 -1
- package/dist/src/share/queries/impl/transactional/find-head-revision-in-branch-or-throw.query.js.map +0 -1
- package/dist/src/share/queries/impl/transactional/find-project-in-organization-or-throw.query.js.map +0 -1
- package/dist/src/share/queries/impl/transactional/find-row-in-table-or-throw.query.js.map +0 -1
- package/dist/src/share/queries/impl/transactional/find-rows-in-table-or-throw.query.js.map +0 -1
- package/dist/src/share/queries/impl/transactional/find-table-in-revision-or-throw.query.js.map +0 -1
- package/dist/src/share/queries/impl/transactional/get-table-schema.query.js.map +0 -1
- package/dist/src/share/queries/types/find-branch-in-project.types.js.map +0 -1
- package/dist/src/share/queries/types/find-draft-revision-in-branch.types.js.map +0 -1
- package/dist/src/share/queries/types/find-head-revision-in-branch.types.js.map +0 -1
- package/dist/src/share/queries/types/find-project-in-organization.types.js.map +0 -1
- package/dist/src/share/queries/types/find-row-in-table.types.js.map +0 -1
- package/dist/src/share/queries/types/find-rows-in-table.types.js.map +0 -1
- package/dist/src/share/queries/types/find-table-in-revision.types.js.map +0 -1
- package/dist/src/share/queries/types/index.d.ts +0 -7
- package/dist/src/share/queries/types/index.js.map +0 -1
- package/dist/src/share/references.service.d.ts +0 -22
- package/dist/src/share/references.service.js +0 -94
- package/dist/src/share/references.service.js.map +0 -1
- package/dist/src/share/schema/consts.js.map +0 -1
- package/dist/src/share/schema/json-patch-schema.js +0 -71
- package/dist/src/share/schema/json-patch-schema.js.map +0 -1
- package/dist/src/share/schema/meta-schema.js +0 -143
- package/dist/src/share/schema/meta-schema.js.map +0 -1
- package/dist/src/share/share.commands.d.ts +0 -8
- package/dist/src/share/share.commands.js.map +0 -1
- package/dist/src/share/share.module.js +0 -42
- package/dist/src/share/share.module.js.map +0 -1
- package/dist/src/share/share.transactional.commands.d.ts +0 -9
- package/dist/src/share/share.transactional.commands.js.map +0 -1
- package/dist/src/share/share.transactional.queries.d.ts +0 -15
- package/dist/src/share/share.transactional.queries.js.map +0 -1
- package/dist/src/share/system-organizations.consts.js.map +0 -1
- package/dist/src/share/system-tables.consts.js.map +0 -1
- package/dist/src/share/types/row-with-context.types.js.map +0 -1
- package/dist/src/share/types/table-with-context.types.js.map +0 -1
- package/dist/src/share/types.js.map +0 -1
- package/dist/src/share/utils/index.d.ts +0 -1
- package/dist/src/share/utils/index.js.map +0 -1
- package/dist/src/share/utils/schema/lib/applyPatches.d.ts +0 -6
- package/dist/src/share/utils/schema/lib/applyPatches.js.map +0 -1
- package/dist/src/share/utils/schema/lib/createJsonSchemaStore.d.ts +0 -6
- package/dist/src/share/utils/schema/lib/createJsonSchemaStore.js.map +0 -1
- package/dist/src/share/utils/schema/lib/createJsonValueStore.d.ts +0 -11
- package/dist/src/share/utils/schema/lib/createJsonValueStore.js.map +0 -1
- package/dist/src/share/utils/schema/lib/getJsonSchemaStoreByPath.d.ts +0 -2
- package/dist/src/share/utils/schema/lib/getJsonSchemaStoreByPath.js.map +0 -1
- package/dist/src/share/utils/schema/lib/getParentForPath.js.map +0 -1
- package/dist/src/share/utils/schema/lib/getPathByStore.d.ts +0 -2
- package/dist/src/share/utils/schema/lib/getPathByStore.js.map +0 -1
- package/dist/src/share/utils/schema/lib/getReferencesFromSchema.d.ts +0 -2
- package/dist/src/share/utils/schema/lib/getReferencesFromSchema.js +0 -16
- package/dist/src/share/utils/schema/lib/getReferencesFromSchema.js.map +0 -1
- package/dist/src/share/utils/schema/lib/getReferencesFromValue.d.ts +0 -6
- package/dist/src/share/utils/schema/lib/getReferencesFromValue.js +0 -24
- package/dist/src/share/utils/schema/lib/getReferencesFromValue.js.map +0 -1
- package/dist/src/share/utils/schema/lib/getValuePathByStore.d.ts +0 -2
- package/dist/src/share/utils/schema/lib/getValuePathByStore.js.map +0 -1
- package/dist/src/share/utils/schema/lib/schema-table.d.ts +0 -17
- package/dist/src/share/utils/schema/lib/schema-table.js +0 -69
- package/dist/src/share/utils/schema/lib/schema-table.js.map +0 -1
- package/dist/src/share/utils/schema/lib/traverseStore.d.ts +0 -2
- package/dist/src/share/utils/schema/lib/traverseStore.js.map +0 -1
- package/dist/src/share/utils/schema/lib/traverseValue.d.ts +0 -2
- package/dist/src/share/utils/schema/lib/traverseValue.js.map +0 -1
- package/dist/src/share/utils/schema/model/schema/json-array.store.d.ts +0 -30
- package/dist/src/share/utils/schema/model/schema/json-array.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/schema/json-boolean.store.d.ts +0 -17
- package/dist/src/share/utils/schema/model/schema/json-boolean.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/schema/json-number.store.d.ts +0 -17
- package/dist/src/share/utils/schema/model/schema/json-number.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/schema/json-object.store.d.ts +0 -45
- package/dist/src/share/utils/schema/model/schema/json-object.store.js +0 -142
- package/dist/src/share/utils/schema/model/schema/json-object.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/schema/json-schema.store.d.ts +0 -7
- package/dist/src/share/utils/schema/model/schema/json-schema.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/schema/json-string.store.d.ts +0 -18
- package/dist/src/share/utils/schema/model/schema/json-string.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/value/json-array-value.store.d.ts +0 -16
- package/dist/src/share/utils/schema/model/value/json-array-value.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/value/json-boolean-value.store.d.ts +0 -11
- package/dist/src/share/utils/schema/model/value/json-boolean-value.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/value/json-number-value.store.d.ts +0 -11
- package/dist/src/share/utils/schema/model/value/json-number-value.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/value/json-object-value.store.d.ts +0 -19
- package/dist/src/share/utils/schema/model/value/json-object-value.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/value/json-string-value.store.d.ts +0 -12
- package/dist/src/share/utils/schema/model/value/json-string-value.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/value/json-value.store.d.ts +0 -7
- package/dist/src/share/utils/schema/model/value/json-value.store.js.map +0 -1
- package/dist/src/share/utils/schema/model/value/value-transformation.d.ts +0 -13
- package/dist/src/share/utils/schema/model/value/value-transformation.js +0 -110
- package/dist/src/share/utils/schema/model/value/value-transformation.js.map +0 -1
- package/dist/src/share/utils/schema/types/json-patch.types.d.ts +0 -21
- package/dist/src/share/utils/schema/types/json-patch.types.js.map +0 -1
- package/dist/src/share/utils/schema/types/json.types.js.map +0 -1
- package/dist/src/share/utils/schema/types/schema.types.js.map +0 -1
- package/dist/src/share/utils/sort-revisions/sort-revisions.js +0 -36
- package/dist/src/share/utils/sort-revisions/sort-revisions.js.map +0 -1
- package/dist/src/table/queries/handlers/get-count-rows-in-table.handler.d.ts +0 -8
- package/dist/src/table/queries/handlers/get-count-rows-in-table.handler.js +0 -33
- package/dist/src/table/queries/handlers/get-count-rows-in-table.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/get-rows-by-table.handler.d.ts +0 -22
- package/dist/src/table/queries/handlers/get-rows-by-table.handler.js +0 -59
- package/dist/src/table/queries/handlers/get-rows-by-table.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/get-table-by-id.handler.d.ts +0 -18
- package/dist/src/table/queries/handlers/get-table-by-id.handler.js +0 -42
- package/dist/src/table/queries/handlers/get-table-by-id.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/get-table.handler.d.ts +0 -14
- package/dist/src/table/queries/handlers/get-table.handler.js +0 -58
- package/dist/src/table/queries/handlers/get-table.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/get-tables.handler.d.ts +0 -11
- package/dist/src/table/queries/handlers/get-tables.handler.js +0 -67
- package/dist/src/table/queries/handlers/get-tables.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/index.d.ts +0 -11
- package/dist/src/table/queries/handlers/index.js.map +0 -1
- package/dist/src/table/queries/handlers/resolve-table-count-references-by.handler.d.ts +0 -15
- package/dist/src/table/queries/handlers/resolve-table-count-references-by.handler.js +0 -54
- package/dist/src/table/queries/handlers/resolve-table-count-references-by.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/resolve-table-count-references-to.handler.d.ts +0 -12
- package/dist/src/table/queries/handlers/resolve-table-count-references-to.handler.js +0 -51
- package/dist/src/table/queries/handlers/resolve-table-count-references-to.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/resolve-table-references-by.handler.d.ts +0 -17
- package/dist/src/table/queries/handlers/resolve-table-references-by.handler.js +0 -80
- package/dist/src/table/queries/handlers/resolve-table-references-by.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/resolve-table-references-to.handler.d.ts +0 -14
- package/dist/src/table/queries/handlers/resolve-table-references-to.handler.js +0 -78
- package/dist/src/table/queries/handlers/resolve-table-references-to.handler.js.map +0 -1
- package/dist/src/table/queries/handlers/resolve-table-schema.handler.d.ts +0 -13
- package/dist/src/table/queries/handlers/resolve-table-schema.handler.js +0 -46
- package/dist/src/table/queries/handlers/resolve-table-schema.handler.js.map +0 -1
- package/dist/src/table/queries/impl/get-count-rows-in-table.query.js.map +0 -1
- package/dist/src/table/queries/impl/get-rows-by-table.query.js.map +0 -1
- package/dist/src/table/queries/impl/get-table-by-id.query.js.map +0 -1
- package/dist/src/table/queries/impl/get-table.query.js.map +0 -1
- package/dist/src/table/queries/impl/get-tables.query.js.map +0 -1
- package/dist/src/table/queries/impl/index.d.ts +0 -6
- package/dist/src/table/queries/impl/index.js.map +0 -1
- package/dist/src/table/queries/impl/resolve-table-count-references-by.query.js.map +0 -1
- package/dist/src/table/queries/impl/resolve-table-count-references-to.query.js.map +0 -1
- package/dist/src/table/queries/impl/resolve-table-references-by.query.js.map +0 -1
- package/dist/src/table/queries/impl/resolve-table-references-to.query.js.map +0 -1
- package/dist/src/table/queries/impl/resolve-table-schema.query.js.map +0 -1
- package/dist/src/table/queries/types/get-table-by-id.types.d.ts +0 -2
- package/dist/src/table/queries/types/get-table-by-id.types.js.map +0 -1
- package/dist/src/table/queries/types/get-table-rows.types.d.ts +0 -3
- package/dist/src/table/queries/types/get-table-rows.types.js.map +0 -1
- package/dist/src/table/queries/types/get-table.types.d.ts +0 -2
- package/dist/src/table/queries/types/get-table.types.js.map +0 -1
- package/dist/src/table/queries/types/get-tables.types.d.ts +0 -3
- package/dist/src/table/queries/types/get-tables.types.js.map +0 -1
- package/dist/src/table/queries/types/index.d.ts +0 -6
- package/dist/src/table/queries/types/index.js.map +0 -1
- package/dist/src/table/queries/types/resolve-table-references-by.types.d.ts +0 -3
- package/dist/src/table/queries/types/resolve-table-references-by.types.js.map +0 -1
- package/dist/src/table/queries/types/resolve-table-references-to.types.d.ts +0 -3
- package/dist/src/table/queries/types/resolve-table-references-to.types.js.map +0 -1
- package/dist/src/table/table.module.js +0 -31
- package/dist/src/table/table.module.js.map +0 -1
- package/dist/src/user/commands/handlers/index.d.ts +0 -2
- package/dist/src/user/commands/handlers/index.js.map +0 -1
- package/dist/src/user/commands/handlers/set-username.handler.d.ts +0 -14
- package/dist/src/user/commands/handlers/set-username.handler.js +0 -101
- package/dist/src/user/commands/handlers/set-username.handler.js.map +0 -1
- package/dist/src/user/commands/handlers/update-password.handler.d.ts +0 -12
- package/dist/src/user/commands/handlers/update-password.handler.js +0 -59
- package/dist/src/user/commands/handlers/update-password.handler.js.map +0 -1
- package/dist/src/user/commands/impl/index.d.ts +0 -2
- package/dist/src/user/commands/impl/index.js.map +0 -1
- package/dist/src/user/commands/impl/set-username.command.js.map +0 -1
- package/dist/src/user/commands/impl/update-password.command.js.map +0 -1
- package/dist/src/user/commands/index.d.ts +0 -2
- package/dist/src/user/commands/index.js.map +0 -1
- package/dist/src/user/queries/handlers/get-projects-by-user-id.handler.d.ts +0 -19
- package/dist/src/user/queries/handlers/get-projects-by-user-id.handler.js +0 -78
- package/dist/src/user/queries/handlers/get-projects-by-user-id.handler.js.map +0 -1
- package/dist/src/user/queries/handlers/get-user-organization.handler.d.ts +0 -8
- package/dist/src/user/queries/handlers/get-user-organization.handler.js +0 -39
- package/dist/src/user/queries/handlers/get-user-organization.handler.js.map +0 -1
- package/dist/src/user/queries/handlers/get-user.handler.d.ts +0 -12
- package/dist/src/user/queries/handlers/get-user.handler.js +0 -36
- package/dist/src/user/queries/handlers/get-user.handler.js.map +0 -1
- package/dist/src/user/queries/handlers/index.d.ts +0 -3
- package/dist/src/user/queries/handlers/index.js.map +0 -1
- package/dist/src/user/queries/impl/get-projects-by-user-id.query.d.ts +0 -15
- package/dist/src/user/queries/impl/get-projects-by-user-id.query.js.map +0 -1
- package/dist/src/user/queries/impl/get-user-organization.query.js.map +0 -1
- package/dist/src/user/queries/impl/get-user.query.js.map +0 -1
- package/dist/src/user/queries/impl/index.d.ts +0 -3
- package/dist/src/user/queries/impl/index.js.map +0 -1
- package/dist/src/user/queries/index.d.ts +0 -2
- package/dist/src/user/queries/index.js.map +0 -1
- package/dist/src/user/user.module.js +0 -25
- package/dist/src/user/user.module.js.map +0 -1
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/confirm-email-code.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/confirm-email-code.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login-github.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login-github.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login-google.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login-google.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/login.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/sign-up.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/inputs/sign-up.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/model/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/model/login.model.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/auth/model/login.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/create-branch-by-revision-id.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/create-branch-by-revision-id.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/create-branch.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/create-branch.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branch-revisions.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branch-revisions.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branch.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branch.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branches.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/get-branches.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/revert-changes.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/inputs/revert-changes.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/model/branch.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/branch/model/parent-branch.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/configuration/model/configuration.model.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/configuration/model/configuration.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/configuration/model/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/current-user.decorator.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/current-user.decorator.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/create-row.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/create-table.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/create-table.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/remove-row.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/remove-table.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/remove-table.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/update-row.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/input/update-table.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/model/create-row-result.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/model/create-table-result.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/model/remove-row-result.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/model/remove-table-result.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/model/update-row-result.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/draft/model/update-table-result.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/create-endpoint.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/delete-endpoint.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/delete-endpoint.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/get-endpoint.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/get-endpoint.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/endpoint/inputs/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/endpoint/model/endpoint.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/endpoint/model/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/graphql-api.module.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/get-users-organization.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/get-users-organization.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/remove-user-from-organization.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/organization/inputs/remove-user-from-organization.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/organization/model/users-organization.connection.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/organization/model/users-organization.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/create-project.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/create-project.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/delete-project.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/delete-project.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-project-branches.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-project-branches.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-project.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-project.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-projects.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-projects.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-users-project.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/get-users-project.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/remove-user-from-project.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/remove-user-from-project.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/update-project.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/inputs/update-project.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/model/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/model/project.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/model/projects.connection.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/model/users-project.connection.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/project/model/users-project.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/registerGraphqlEnums.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/create-revision.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/create-revision.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/get-revision-tables.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/get-revision-tables.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/get-revision.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/revision/inputs/get-revision.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/revision/model/child-branch.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/revision/model/revision.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/role/model/role.model.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/role/model/role.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row-count-references-by.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row-count-references-by.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row-references.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row-references.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-row.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-rows.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/get-rows.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/inputs/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/model/row-reference.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/model/row-references-connection.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/model/row.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/row/model/rows-connection.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/share/model/paginated.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table-references.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table-references.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table-rows.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table-rows.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-table.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-tables.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/inputs/get-tables.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/model/table-connection.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/table/model/table.model.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/index.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/me-projects.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/me-projects.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/set-username.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/set-username.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/update-password.input.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/inputs/update-password.input.js +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/model/user.model.d.ts +0 -0
- /package/dist/src/{graphql-api → api/graphql-api}/user/model/user.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/auth/dto/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/auth/dto/login.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/auth/dto/login.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/auth/dto/update-password.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/auth/dto/update-password.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/auth/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/auth/model/login.response.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/auth/model/login.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/dto/create-branch-by-revision.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/dto/create-branch-by-revision.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/dto/create-revision.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/dto/create-revision.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/dto/get-branch-revisions.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/dto/get-branch-revisions.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/dto/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/model/branch.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/model/branch.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/model/parent-branch.response.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/branch/model/parent-branch.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/configuration/model/configuration.response.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/configuration/model/configuration.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/configuration/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/endpoint/endpointByIdController.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/endpoint/model/endpoint.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/endpoint/model/endpoint.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/endpoint/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/create-project.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/create-project.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/get-projects.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/get-projects.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/get-users-organization.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/get-users-organization.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/remove-user-from-organization.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/dto/remove-user-from-organization.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/model/project.connection.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/model/project.connection.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/model/users-organization.connection.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/model/users-organization.connection.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/organization/model/users-organization.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/dto/get-project-branches.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/dto/get-project-branches.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/dto/get-users-project.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/dto/get-users-project.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/dto/update-project.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/dto/update-project.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/model/project.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/model/project.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/model/users-project.connection.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/model/users-project.connection.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/project/model/users-project.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/rest-api.module.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/dto/create-endpoint.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/dto/create-endpoint.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/dto/create-table.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/dto/create-table.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/dto/get-revision-tables.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/dto/get-revision-tables.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/dto/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/model/child-branches.response.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/model/child-branches.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/model/create-table.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/model/revision.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/revision/model/revision.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/role/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/role/model/role.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/role/model/role.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/dto/get-row-references-by.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/dto/get-row-references-by.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/dto/get-row-references-to.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/dto/get-row-references-to.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/dto/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/dto/update-row.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/dto/update-row.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/model/remove-row.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/model/row.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/model/row.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/row/model/update-row.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/model/paginated.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/model/paginated.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToBranchModel.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToEndpointsModel.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToRevisionModel.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToRowModel.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToTableModel.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToUserOrganizationModel.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/share/utils/transformFromPrismaToUserProjectModel.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/create-row.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/create-row.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-references-by.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-references-by.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-references-to.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-references-to.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-rows.dto.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/get-table-rows.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/dto/update-table.dto.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/model/create-row.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/model/table.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/model/table.model.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/table/model/update-table.response.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/user/model/index.js +0 -0
- /package/dist/src/{rest-api → api/rest-api}/user/model/user.model.d.ts +0 -0
- /package/dist/src/{rest-api → api/rest-api}/user/model/user.model.js +0 -0
- /package/dist/src/{auth → features/auth}/auth.module.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/auth.service.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/handlers/index.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/check-organization-permission.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/check-project-permission.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/check-system-permission.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/confirm-email-code.command.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/confirm-email-code.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/create-user.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/index.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/login-github.command.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/login-github.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/login-google.command.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/login-google.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/login.command.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/login.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/sign-up.command.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/commands/impl/sign-up.command.js +0 -0
- /package/dist/src/{auth → features/auth}/commands/index.js +0 -0
- /package/dist/src/{auth → features/auth}/consts.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/consts.js +0 -0
- /package/dist/src/{auth → features/auth}/github-oauth.service.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/google-oauth.service.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/guards/base-persmission.guard.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/gql-jwt-auth-guard.service.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/gql-jwt-auth-guard.service.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/http-jwt-auth-guard.service.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/http-jwt-auth-guard.service.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/local-auth.guard.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/local-auth.guard.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/optional-gql-jwt-auth-guard.service.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/optional-gql-jwt-auth-guard.service.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/optional-http-jwt-auth-guard.service.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/guards/jwt/optional-http-jwt-auth-guard.service.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/organization.guard.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/permission-params.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/project.guard.js +0 -0
- /package/dist/src/{auth → features/auth}/guards/system.guard.js +0 -0
- /package/dist/src/{auth → features/auth}/jwt-secret.service.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/jwt-secret.service.js +0 -0
- /package/dist/src/{auth → features/auth}/strategy/jwt.strategy.js +0 -0
- /package/dist/src/{auth → features/auth}/types.d.ts +0 -0
- /package/dist/src/{auth → features/auth}/types.js +0 -0
- /package/dist/src/{auth → features/auth}/utils.js +0 -0
- /package/dist/src/{branch → features/branch}/branch.module.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/commands/handlers/api-create-branch-by-revision-id.handler.js +0 -0
- /package/dist/src/{branch → features/branch}/commands/handlers/index.js +0 -0
- /package/dist/src/{branch → features/branch}/commands/impl/api-create-branch-by-revision-id.command.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/commands/impl/api-create-branch-by-revision-id.command.js +0 -0
- /package/dist/src/{branch → features/branch}/commands/impl/create-branch-by-revision-id.command.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/commands/impl/create-branch-by-revision-id.command.js +0 -0
- /package/dist/src/{branch → features/branch}/commands/impl/index.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/handlers/index.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-branch-by-id.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-branch-by-id.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-branch.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-branch.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-branches.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-branches.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-draft-revision.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-draft-revision.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-head-revision.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-head-revision.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-project-by-branch.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-project-by-branch.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-revisions-by-branch-id.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-revisions-by-branch-id.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-start-revision.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-start-revision.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-touched-by-branch-id.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/get-touched-by-branch-id.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/index.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/resolve-parent-branch-by-branch.query.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/impl/resolve-parent-branch-by-branch.query.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-branch-by-id.types.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-branch-by-id.types.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-branch.types.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-branch.types.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-draft-revision.types.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-draft-revision.types.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-head-revision.types.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-head-revision.types.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-start-revision.types.d.ts +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/get-start-revision.types.js +0 -0
- /package/dist/src/{branch → features/branch}/quieries/types/index.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-create-revision.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-create-row.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-create-row.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-create-table.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-create-table.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-remove-row.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-remove-row.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-remove-table.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-remove-table.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-revert-changes.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-update-row.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-update-row.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/api-update-table.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/create-revision.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/create-revision.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/create-row.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/create-row.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/create-table.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/create-table.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/remove-row.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/remove-row.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/remove-table.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/remove-table.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/revert-changes.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/revert-changes.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-row.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-row.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-rows.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-rows.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-table.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/get-or-create-draft-table.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/resolve-draft-revision.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/resolve-draft-revision.command.js +0 -0
- /package/dist/src/{draft/commands/impl → features/draft/commands/impl/transactional}/update-rows.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-data.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-not-system-table.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-not-system-table.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-schema.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/transactional/validate-schema.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/update-row.command.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/update-row.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/impl/update-table.command.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/api-create-row.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/api-create-table.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/api-create-table.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/api-remove-row.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/api-remove-table.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/api-update-row.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/api-update-table.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/create-revision.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/create-revision.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/create-row.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/create-row.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/create-table.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/create-table.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/remove-row.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/remove-row.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/remove-table.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/remove-table.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/revert-changes.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/revert-changes.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/update-row.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/update-row.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/update-table.handler.types.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/commands/types/update-table.handler.types.js +0 -0
- /package/dist/src/{draft → features/draft}/draft-request-dto/draft-revision-request.dto.js +0 -0
- /package/dist/src/{draft → features/draft}/draft-request-dto/index.js +0 -0
- /package/dist/src/{draft → features/draft}/draft-request-dto/row-request.dto.js +0 -0
- /package/dist/src/{draft → features/draft}/draft-request-dto/rows-request.dto.js +0 -0
- /package/dist/src/{draft → features/draft}/draft-request-dto/table-request.dto.js +0 -0
- /package/dist/src/{draft → features/draft}/draft.handler.js +0 -0
- /package/dist/src/{draft → features/draft}/draft.module.d.ts +0 -0
- /package/dist/src/{draft → features/draft}/draft.transactional.commands.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/handlers/api-create-endpoint.handler.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/handlers/index.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/impl/api-create-endpoint.command.d.ts +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/impl/api-create-endpoint.command.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/impl/create-endpoint.command.d.ts +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/impl/create-endpoint.command.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/impl/delete-endpoint.command.d.ts +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/impl/delete-endpoint.command.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/commands/impl/index.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/endpoint.module.d.ts +0 -0
- /package/dist/src/{endpoint → features/endpoint}/queries/handlers/index.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/queries/impl/get-created-endpoint.query.d.ts +0 -0
- /package/dist/src/{endpoint → features/endpoint}/queries/impl/get-created-endpoint.query.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/queries/impl/get-revision-by-endpoint-id.query.d.ts +0 -0
- /package/dist/src/{endpoint → features/endpoint}/queries/impl/get-revision-by-endpoint-id.query.js +0 -0
- /package/dist/src/{endpoint → features/endpoint}/queries/impl/index.js +0 -0
- /package/dist/src/{organization → features/organization}/commands/handlers/index.js +0 -0
- /package/dist/src/{organization → features/organization}/commands/impl/add-user-to-organization.command.js +0 -0
- /package/dist/src/{organization → features/organization}/commands/impl/index.js +0 -0
- /package/dist/src/{organization → features/organization}/commands/impl/remove-user-from-organization.command.d.ts +0 -0
- /package/dist/src/{organization → features/organization}/commands/impl/remove-user-from-organization.command.js +0 -0
- /package/dist/src/{organization → features/organization}/commands/index.js +0 -0
- /package/dist/src/{organization → features/organization}/organization.module.d.ts +0 -0
- /package/dist/src/{organization → features/organization}/queries/handlers/index.js +0 -0
- /package/dist/src/{organization → features/organization}/queries/impl/get-projects-by-organization-id.query.js +0 -0
- /package/dist/src/{organization → features/organization}/queries/impl/get-users-organization.query.js +0 -0
- /package/dist/src/{organization → features/organization}/queries/impl/index.js +0 -0
- /package/dist/src/{organization → features/organization}/queries/index.js +0 -0
- /package/dist/src/{project → features/project}/commands/handlers/api-create-project.handler.js +0 -0
- /package/dist/src/{project → features/project}/commands/handlers/index.js +0 -0
- /package/dist/src/{project → features/project}/commands/impl/add-user-to-project.command.js +0 -0
- /package/dist/src/{project → features/project}/commands/impl/api-create-project.command.d.ts +0 -0
- /package/dist/src/{project → features/project}/commands/impl/api-create-project.command.js +0 -0
- /package/dist/src/{project → features/project}/commands/impl/create-project.command.d.ts +0 -0
- /package/dist/src/{project → features/project}/commands/impl/create-project.command.js +0 -0
- /package/dist/src/{project → features/project}/commands/impl/delete-project.command.d.ts +0 -0
- /package/dist/src/{project → features/project}/commands/impl/delete-project.command.js +0 -0
- /package/dist/src/{project → features/project}/commands/impl/index.js +0 -0
- /package/dist/src/{project → features/project}/commands/impl/remove-user-from-project.command.d.ts +0 -0
- /package/dist/src/{project → features/project}/commands/impl/remove-user-from-project.command.js +0 -0
- /package/dist/src/{project → features/project}/commands/impl/update-project.command.d.ts +0 -0
- /package/dist/src/{project → features/project}/commands/impl/update-project.command.js +0 -0
- /package/dist/src/{project → features/project}/project.module.d.ts +0 -0
- /package/dist/src/{project → features/project}/queries/handlers/index.js +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-all-branches-by-project.query.d.ts +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-all-branches-by-project.query.js +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-project-by-id.query.d.ts +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-project-by-id.query.js +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-project.query.d.ts +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-project.query.js +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-root-branch-by-project.query.d.ts +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-root-branch-by-project.query.js +0 -0
- /package/dist/src/{project → features/project}/queries/impl/get-users-project.query.js +0 -0
- /package/dist/src/{project → features/project}/queries/impl/index.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/commands/index.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/get-children-by-revision.query.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/get-children-by-revision.query.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/get-endpoints-by-revision-id.query.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/get-endpoints-by-revision-id.query.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/get-revision.query.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/get-tables-by-revision-id.query.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/get-tables-by-revision-id.query.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/index.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/resolve-branch-by-revision.query.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/resolve-branch-by-revision.query.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/resolve-child-branches-by-revision.query.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/resolve-child-branches-by-revision.query.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/resolve-child-by-revision.query.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/resolve-child-by-revision.query.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/resolve-parent-by-revision.query.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/impl/resolve-parent-by-revision.query.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/types/get-endpoints-by-revision-id.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/types/get-endpoints-by-revision-id.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/types/get-revision-tables.types.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/types/get-tables-by-revision-id.d.ts +0 -0
- /package/dist/src/{revision → features/revision}/queries/types/get-tables-by-revision-id.js +0 -0
- /package/dist/src/{revision → features/revision}/queries/types/index.js +0 -0
- /package/dist/src/{revision → features/revision}/revision.module.d.ts +0 -0
- /package/dist/src/{row → features/row}/queries/handlers/index.js +0 -0
- /package/dist/src/{row → features/row}/queries/impl/get-row-by-id.query.d.ts +0 -0
- /package/dist/src/{row → features/row}/queries/impl/get-row-by-id.query.js +0 -0
- /package/dist/src/{row → features/row}/queries/impl/get-row.query.d.ts +0 -0
- /package/dist/src/{row → features/row}/queries/impl/get-row.query.js +0 -0
- /package/dist/src/{row → features/row}/queries/impl/get-rows.query.d.ts +0 -0
- /package/dist/src/{row → features/row}/queries/impl/get-rows.query.js +0 -0
- /package/dist/src/{row → features/row}/queries/impl/index.js +0 -0
- /package/dist/src/{row → features/row}/queries/impl/resolve-row-count-references-by.query.d.ts +0 -0
- /package/dist/src/{row → features/row}/queries/impl/resolve-row-count-references-by.query.js +0 -0
- /package/dist/src/{row → features/row}/queries/impl/resolve-row-count-references-to.query.d.ts +0 -0
- /package/dist/src/{row → features/row}/queries/impl/resolve-row-count-references-to.query.js +0 -0
- /package/dist/src/{row → features/row}/queries/impl/resolve-row-references-by.query.d.ts +0 -0
- /package/dist/src/{row → features/row}/queries/impl/resolve-row-references-by.query.js +0 -0
- /package/dist/src/{row → features/row}/queries/impl/resolve-row-references-to.query.d.ts +0 -0
- /package/dist/src/{row → features/row}/queries/impl/resolve-row-references-to.query.js +0 -0
- /package/dist/src/{row → features/row}/queries/types/get-row-by-id.types.js +0 -0
- /package/dist/src/{row → features/row}/queries/types/get-row.types.js +0 -0
- /package/dist/src/{row → features/row}/queries/types/get-rows.types.js +0 -0
- /package/dist/src/{row → features/row}/queries/types/index.js +0 -0
- /package/dist/src/{row → features/row}/queries/types/resolve-row-references-by.types.js +0 -0
- /package/dist/src/{row → features/row}/queries/types/resolve-row-references-to.types.js +0 -0
- /package/dist/src/{row → features/row}/row.module.d.ts +0 -0
- /package/dist/src/{share → features/share}/commands/handlers/index.js +0 -0
- /package/dist/src/{share → features/share}/commands/impl/index.js +0 -0
- /package/dist/src/{share → features/share}/commands/impl/notify-endpoints.command.d.ts +0 -0
- /package/dist/src/{share → features/share}/commands/impl/notify-endpoints.command.js +0 -0
- /package/dist/src/{share → features/share}/commands/impl/transactional/move-endpoints.command.d.ts +0 -0
- /package/dist/src/{share → features/share}/commands/impl/transactional/move-endpoints.command.js +0 -0
- /package/dist/src/{share → features/share}/const.js +0 -0
- /package/dist/src/{share → features/share}/pagination.interface.d.ts +0 -0
- /package/dist/src/{share → features/share}/pagination.interface.js +0 -0
- /package/dist/src/{share → features/share}/queries/handlers/index.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/index.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-branch-in-project-or-throw.query.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-branch-in-project-or-throw.query.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-draft-revision-in-branch-or-throw.query.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-draft-revision-in-branch-or-throw.query.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-head-revision-in-branch-or-throw.query.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-head-revision-in-branch-or-throw.query.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-project-in-organization-or-throw.query.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-project-in-organization-or-throw.query.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-row-in-table-or-throw.query.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-row-in-table-or-throw.query.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-rows-in-table-or-throw.query.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-rows-in-table-or-throw.query.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-table-in-revision-or-throw.query.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/find-table-in-revision-or-throw.query.js +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/get-table-schema.query.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/impl/transactional/get-table-schema.query.js +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-branch-in-project.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-branch-in-project.types.js +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-draft-revision-in-branch.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-draft-revision-in-branch.types.js +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-head-revision-in-branch.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-head-revision-in-branch.types.js +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-project-in-organization.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-project-in-organization.types.js +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-row-in-table.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-row-in-table.types.js +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-rows-in-table.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-rows-in-table.types.js +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-table-in-revision.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/queries/types/find-table-in-revision.types.js +0 -0
- /package/dist/src/{share → features/share}/queries/types/index.js +0 -0
- /package/dist/src/{share → features/share}/schema/consts.d.ts +0 -0
- /package/dist/src/{share → features/share}/schema/consts.js +0 -0
- /package/dist/src/{share → features/share}/schema/json-patch-schema.d.ts +0 -0
- /package/dist/src/{share → features/share}/schema/meta-schema.d.ts +0 -0
- /package/dist/src/{share → features/share}/share.commands.js +0 -0
- /package/dist/src/{share → features/share}/share.module.d.ts +0 -0
- /package/dist/src/{share → features/share}/share.transactional.commands.js +0 -0
- /package/dist/src/{share → features/share}/share.transactional.queries.js +0 -0
- /package/dist/src/{share → features/share}/system-organizations.consts.d.ts +0 -0
- /package/dist/src/{share → features/share}/system-organizations.consts.js +0 -0
- /package/dist/src/{share → features/share}/system-tables.consts.d.ts +0 -0
- /package/dist/src/{share → features/share}/system-tables.consts.js +0 -0
- /package/dist/src/{share → features/share}/types/row-with-context.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/types/row-with-context.types.js +0 -0
- /package/dist/src/{share → features/share}/types/table-with-context.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/types/table-with-context.types.js +0 -0
- /package/dist/src/{share → features/share}/types.d.ts +0 -0
- /package/dist/src/{share → features/share}/types.js +0 -0
- /package/dist/src/{share → features/share}/utils/index.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/applyPatches.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/createJsonSchemaStore.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/createJsonValueStore.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/getJsonSchemaStoreByPath.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/getParentForPath.d.ts +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/getParentForPath.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/getPathByStore.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/getValuePathByStore.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/traverseStore.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/lib/traverseValue.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/schema/json-array.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/schema/json-boolean.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/schema/json-number.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/schema/json-schema.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/schema/json-string.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/value/json-array-value.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/value/json-boolean-value.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/value/json-number-value.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/value/json-object-value.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/value/json-string-value.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/model/value/json-value.store.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/types/json-patch.types.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/types/json.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/utils/schema/types/json.types.js +0 -0
- /package/dist/src/{share → features/share}/utils/schema/types/schema.types.d.ts +0 -0
- /package/dist/src/{share → features/share}/utils/schema/types/schema.types.js +0 -0
- /package/dist/src/{share → features/share}/utils/sort-revisions/sort-revisions.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/handlers/index.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-count-rows-in-table.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-count-rows-in-table.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-rows-by-table.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-rows-by-table.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-table-by-id.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-table-by-id.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-table.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-table.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-tables.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/get-tables.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/index.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-count-references-by.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-count-references-by.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-count-references-to.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-count-references-to.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-references-by.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-references-by.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-references-to.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-references-to.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-schema.query.d.ts +0 -0
- /package/dist/src/{table → features/table}/queries/impl/resolve-table-schema.query.js +0 -0
- /package/dist/src/{table → features/table}/queries/types/get-table-by-id.types.js +0 -0
- /package/dist/src/{table → features/table}/queries/types/get-table-rows.types.js +0 -0
- /package/dist/src/{table → features/table}/queries/types/get-table.types.js +0 -0
- /package/dist/src/{table → features/table}/queries/types/get-tables.types.js +0 -0
- /package/dist/src/{table → features/table}/queries/types/index.js +0 -0
- /package/dist/src/{table → features/table}/queries/types/resolve-table-references-by.types.js +0 -0
- /package/dist/src/{table → features/table}/queries/types/resolve-table-references-to.types.js +0 -0
- /package/dist/src/{table → features/table}/table.module.d.ts +0 -0
- /package/dist/src/{user → features/user}/commands/handlers/index.js +0 -0
- /package/dist/src/{user → features/user}/commands/impl/index.js +0 -0
- /package/dist/src/{user → features/user}/commands/impl/set-username.command.d.ts +0 -0
- /package/dist/src/{user → features/user}/commands/impl/set-username.command.js +0 -0
- /package/dist/src/{user → features/user}/commands/impl/update-password.command.d.ts +0 -0
- /package/dist/src/{user → features/user}/commands/impl/update-password.command.js +0 -0
- /package/dist/src/{user → features/user}/commands/index.js +0 -0
- /package/dist/src/{user → features/user}/queries/handlers/index.js +0 -0
- /package/dist/src/{user → features/user}/queries/impl/get-projects-by-user-id.query.js +0 -0
- /package/dist/src/{user → features/user}/queries/impl/get-user-organization.query.d.ts +0 -0
- /package/dist/src/{user → features/user}/queries/impl/get-user-organization.query.js +0 -0
- /package/dist/src/{user → features/user}/queries/impl/get-user.query.d.ts +0 -0
- /package/dist/src/{user → features/user}/queries/impl/get-user.query.js +0 -0
- /package/dist/src/{user → features/user}/queries/impl/index.js +0 -0
- /package/dist/src/{user → features/user}/queries/index.js +0 -0
- /package/dist/src/{user → features/user}/user.module.d.ts +0 -0
- /package/dist/src/{admin → infrastructure/admin}/admin-module.options.d.ts +0 -0
- /package/dist/src/{admin → infrastructure/admin}/admin-module.options.js +0 -0
- /package/dist/src/{admin → infrastructure/admin}/admin.module.js +0 -0
- /package/dist/src/{admin → infrastructure/admin}/envjs.controller.js +0 -0
- /package/dist/src/{admin → infrastructure/admin}/index.d.ts +0 -0
- /package/dist/src/{admin → infrastructure/admin}/index.js +0 -0
- /package/dist/src/{clean → infrastructure/clean}/clean.module.d.ts +0 -0
- /package/dist/src/{clean → infrastructure/clean}/clean.module.js +0 -0
- /package/dist/src/{clean → infrastructure/clean}/clean.service.js +0 -0
- /package/dist/src/{clean → infrastructure/clean}/commands/handlers/clean-rows.handler.js +0 -0
- /package/dist/src/{clean → infrastructure/clean}/commands/handlers/clean-tables.handler.js +0 -0
- /package/dist/src/{clean → infrastructure/clean}/commands/handlers/index.js +0 -0
- /package/dist/src/{clean → infrastructure/clean}/commands/impl/clean-rows.command.d.ts +0 -0
- /package/dist/src/{clean → infrastructure/clean}/commands/impl/clean-rows.command.js +0 -0
- /package/dist/src/{clean → infrastructure/clean}/commands/impl/clean-tables.command.d.ts +0 -0
- /package/dist/src/{clean → infrastructure/clean}/commands/impl/clean-tables.command.js +0 -0
- /package/dist/src/{configuration → infrastructure/configuration}/configuration.module.d.ts +0 -0
- /package/dist/src/{configuration → infrastructure/configuration}/queries/handlers/index.js +0 -0
- /package/dist/src/{configuration → infrastructure/configuration}/queries/impl/index.js +0 -0
- /package/dist/src/{configuration → infrastructure/configuration}/queries/index.js +0 -0
- /package/dist/src/{database → infrastructure/database}/database.module.d.ts +0 -0
- /package/dist/src/{database → infrastructure/database}/database.module.js +0 -0
- /package/dist/src/{database → infrastructure/database}/id.service.d.ts +0 -0
- /package/dist/src/{database → infrastructure/database}/id.service.js +0 -0
- /package/dist/src/{database → infrastructure/database}/prisma.service.d.ts +0 -0
- /package/dist/src/{database → infrastructure/database}/prisma.service.js +0 -0
- /package/dist/src/{email → infrastructure/email}/email.module.d.ts +0 -0
- /package/dist/src/{email → infrastructure/email}/email.module.js +0 -0
- /package/dist/src/{email → infrastructure/email}/templates/registration.hbs +0 -0
- /package/dist/src/{email → infrastructure/email}/transporter.service.d.ts +0 -0
- /package/dist/src/{health → infrastructure/health}/health.module.d.ts +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/graphql/constants.d.ts +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/graphql/constants.js +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/graphql/graphql-metrics.plugin.js +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/graphql/graphql-metrics.service.d.ts +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/graphql/graphql-metrics.service.js +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/metrics.module.d.ts +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/metrics.module.js +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/rest/constants.d.ts +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/rest/constants.js +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/rest/rest-metrics.interceptor.js +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/rest/rest-metrics.service.d.ts +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/rest/rest-metrics.service.js +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/utils.d.ts +0 -0
- /package/dist/src/{metrics → infrastructure/metrics}/utils.js +0 -0
- /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics-api.module.d.ts +0 -0
- /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics-api.module.js +0 -0
- /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics-enabled.guard.d.ts +0 -0
- /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics-enabled.guard.js +0 -0
- /package/dist/src/{metrics-api → infrastructure/metrics-api}/metrics.controller.js +0 -0
- /package/dist/src/{notification → infrastructure/notification}/endpoint-notification.service.js +0 -0
- /package/dist/src/{notification → infrastructure/notification}/in-memory-server.d.ts +0 -0
- /package/dist/src/{notification → infrastructure/notification}/in-memory-server.js +0 -0
- /package/dist/src/{notification → infrastructure/notification}/notification-event-emitter.d.ts +0 -0
- /package/dist/src/{notification → infrastructure/notification}/notification-event-emitter.js +0 -0
- /package/dist/src/{notification → infrastructure/notification}/notification.module.d.ts +0 -0
- /package/dist/src/{notification → infrastructure/notification}/notification.module.js +0 -0
|
@@ -1,46 +0,0 @@
|
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.NotifyEndpointsHandler = void 0;
|
|
13
|
-
const cqrs_1 = require("@nestjs/cqrs");
|
|
14
|
-
const prisma_service_1 = require("../../../database/prisma.service");
|
|
15
|
-
const endpoint_notification_service_1 = require("../../../notification/endpoint-notification.service");
|
|
16
|
-
const impl_1 = require("../impl");
|
|
17
|
-
let NotifyEndpointsHandler = class NotifyEndpointsHandler {
|
|
18
|
-
constructor(prisma, endpointNotification) {
|
|
19
|
-
this.prisma = prisma;
|
|
20
|
-
this.endpointNotification = endpointNotification;
|
|
21
|
-
}
|
|
22
|
-
async execute({ data }) {
|
|
23
|
-
await this.notifyEndpoints(data.revisionId);
|
|
24
|
-
}
|
|
25
|
-
async notifyEndpoints(revisionId) {
|
|
26
|
-
const endpointIds = await this.getEndpointIds(revisionId);
|
|
27
|
-
for (const endpointId of endpointIds) {
|
|
28
|
-
this.endpointNotification.update(endpointId);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
async getEndpointIds(revisionId) {
|
|
32
|
-
return this.prisma.revision
|
|
33
|
-
.findUniqueOrThrow({
|
|
34
|
-
where: { id: revisionId },
|
|
35
|
-
})
|
|
36
|
-
.endpoints({ where: { isDeleted: false }, select: { id: true } })
|
|
37
|
-
.then((result) => result.map(({ id }) => id));
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
exports.NotifyEndpointsHandler = NotifyEndpointsHandler;
|
|
41
|
-
exports.NotifyEndpointsHandler = NotifyEndpointsHandler = __decorate([
|
|
42
|
-
(0, cqrs_1.CommandHandler)(impl_1.NotifyEndpointsCommand),
|
|
43
|
-
__metadata("design:paramtypes", [prisma_service_1.PrismaService,
|
|
44
|
-
endpoint_notification_service_1.EndpointNotificationService])
|
|
45
|
-
], NotifyEndpointsHandler);
|
|
46
|
-
//# sourceMappingURL=notify-endpoints.handler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"notify-endpoints.handler.js","sourceRoot":"","sources":["../../../../../src/share/commands/handlers/notify-endpoints.handler.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uCAA+D;AAC/D,qEAA4D;AAC5D,uGAA6F;AAC7F,kCAAiE;AAG1D,IAAM,sBAAsB,GAA5B,MAAM,sBAAsB;IAGjC,YACU,MAAqB,EACrB,oBAAiD;QADjD,WAAM,GAAN,MAAM,CAAe;QACrB,yBAAoB,GAApB,oBAAoB,CAA6B;IACxD,CAAC;IAEJ,KAAK,CAAC,OAAO,CAAC,EAAE,IAAI,EAA0B;QAC5C,MAAM,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAC9C,CAAC;IAEO,KAAK,CAAC,eAAe,CAAC,UAAkB;QAC9C,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC;QAC1D,KAAK,MAAM,UAAU,IAAI,WAAW,EAAE,CAAC;YACrC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;QAC/C,CAAC;IACH,CAAC;IAEO,KAAK,CAAC,cAAc,CAAC,UAAkB;QAC7C,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ;aACxB,iBAAiB,CAAC;YACjB,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,EAAE;SAC1B,CAAC;aACD,SAAS,CAAC,EAAE,KAAK,EAAE,EAAE,SAAS,EAAE,KAAK,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,CAAC;aAChE,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAClD,CAAC;CACF,CAAA;AA3BY,wDAAsB;iCAAtB,sBAAsB;IADlC,IAAA,qBAAc,EAAC,6BAAsB,CAAC;qCAKnB,8BAAa;QACC,2DAA2B;GALhD,sBAAsB,CA2BlC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ICommandHandler } from '@nestjs/cqrs';
|
|
2
|
-
import { TransactionPrismaService } from '../../../../database/transaction-prisma.service';
|
|
3
|
-
import { MoveEndpointsCommand } from '../../../../share/commands/impl';
|
|
4
|
-
export declare class MoveEndpointsHandler implements ICommandHandler<MoveEndpointsCommand> {
|
|
5
|
-
private transactionService;
|
|
6
|
-
constructor(transactionService: TransactionPrismaService);
|
|
7
|
-
private get transaction();
|
|
8
|
-
execute({ data }: MoveEndpointsCommand): Promise<string[]>;
|
|
9
|
-
private getEndpoints;
|
|
10
|
-
private updateEndpoint;
|
|
11
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.MoveEndpointsHandler = void 0;
|
|
13
|
-
const cqrs_1 = require("@nestjs/cqrs");
|
|
14
|
-
const transaction_prisma_service_1 = require("../../../../database/transaction-prisma.service");
|
|
15
|
-
const impl_1 = require("../../impl");
|
|
16
|
-
let MoveEndpointsHandler = class MoveEndpointsHandler {
|
|
17
|
-
constructor(transactionService) {
|
|
18
|
-
this.transactionService = transactionService;
|
|
19
|
-
}
|
|
20
|
-
get transaction() {
|
|
21
|
-
return this.transactionService.getTransaction();
|
|
22
|
-
}
|
|
23
|
-
async execute({ data }) {
|
|
24
|
-
const { fromRevisionId, toRevisionId } = data;
|
|
25
|
-
const toRevisionEndpoints = await this.getEndpoints(toRevisionId);
|
|
26
|
-
if (toRevisionEndpoints.length) {
|
|
27
|
-
throw new Error(`toRevisionId=${toRevisionId} should have endpoints`);
|
|
28
|
-
}
|
|
29
|
-
const fromRevisionEndpoints = await this.getEndpoints(fromRevisionId);
|
|
30
|
-
for (const endpoint of fromRevisionEndpoints) {
|
|
31
|
-
await this.updateEndpoint(endpoint.id, toRevisionId);
|
|
32
|
-
}
|
|
33
|
-
return fromRevisionEndpoints.map(({ id }) => id);
|
|
34
|
-
}
|
|
35
|
-
getEndpoints(revisionId) {
|
|
36
|
-
return this.transaction.revision
|
|
37
|
-
.findUniqueOrThrow({
|
|
38
|
-
where: { id: revisionId },
|
|
39
|
-
})
|
|
40
|
-
.endpoints({ where: { isDeleted: false }, select: { id: true } });
|
|
41
|
-
}
|
|
42
|
-
updateEndpoint(endpointId, revisionId) {
|
|
43
|
-
return this.transaction.endpoint.update({
|
|
44
|
-
where: { id: endpointId },
|
|
45
|
-
data: {
|
|
46
|
-
revisionId,
|
|
47
|
-
},
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
};
|
|
51
|
-
exports.MoveEndpointsHandler = MoveEndpointsHandler;
|
|
52
|
-
exports.MoveEndpointsHandler = MoveEndpointsHandler = __decorate([
|
|
53
|
-
(0, cqrs_1.CommandHandler)(impl_1.MoveEndpointsCommand),
|
|
54
|
-
__metadata("design:paramtypes", [transaction_prisma_service_1.TransactionPrismaService])
|
|
55
|
-
], MoveEndpointsHandler);
|
|
56
|
-
//# sourceMappingURL=move-endpoints.handler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"move-endpoints.handler.js","sourceRoot":"","sources":["../../../../../../src/share/commands/handlers/transactional/move-endpoints.handler.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uCAA+D;AAC/D,gGAAmF;AACnF,qCAA+D;AAGxD,IAAM,oBAAoB,GAA1B,MAAM,oBAAoB;IAG/B,YAAoB,kBAA4C;QAA5C,uBAAkB,GAAlB,kBAAkB,CAA0B;IAAG,CAAC;IAEpE,IAAY,WAAW;QACrB,OAAO,IAAI,CAAC,kBAAkB,CAAC,cAAc,EAAE,CAAC;IAClD,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,EAAE,IAAI,EAAwB;QAC1C,MAAM,EAAE,cAAc,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC;QAE9C,MAAM,mBAAmB,GAAG,MAAM,IAAI,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;QAElE,IAAI,mBAAmB,CAAC,MAAM,EAAE,CAAC;YAC/B,MAAM,IAAI,KAAK,CAAC,gBAAgB,YAAY,wBAAwB,CAAC,CAAC;QACxE,CAAC;QAED,MAAM,qBAAqB,GAAG,MAAM,IAAI,CAAC,YAAY,CAAC,cAAc,CAAC,CAAC;QAEtE,KAAK,MAAM,QAAQ,IAAI,qBAAqB,EAAE,CAAC;YAC7C,MAAM,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,EAAE,EAAE,YAAY,CAAC,CAAC;QACvD,CAAC;QAED,OAAO,qBAAqB,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC;IACnD,CAAC;IAEO,YAAY,CAAC,UAAkB;QACrC,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ;aAC7B,iBAAiB,CAAC;YACjB,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,EAAE;SAC1B,CAAC;aACD,SAAS,CAAC,EAAE,KAAK,EAAE,EAAE,SAAS,EAAE,KAAK,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAEO,cAAc,CAAC,UAAkB,EAAE,UAAkB;QAC3D,OAAO,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,MAAM,CAAC;YACtC,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,EAAE;YACzB,IAAI,EAAE;gBACJ,UAAU;aACX;SACF,CAAC,CAAC;IACL,CAAC;CACF,CAAA;AA3CY,oDAAoB;+BAApB,oBAAoB;IADhC,IAAA,qBAAc,EAAC,2BAAoB,CAAC;qCAIK,qDAAwB;GAHrD,oBAAoB,CA2ChC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/share/commands/impl/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yEAAuD;AACvD,6DAA2C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"notify-endpoints.command.js","sourceRoot":"","sources":["../../../../../src/share/commands/impl/notify-endpoints.command.ts"],"names":[],"mappings":";;;AAAA,MAAa,sBAAsB;IACjC,YACkB,IAEf;QAFe,SAAI,GAAJ,IAAI,CAEnB;IACA,CAAC;CACL;AAND,wDAMC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"move-endpoints.command.js","sourceRoot":"","sources":["../../../../../../src/share/commands/impl/transactional/move-endpoints.command.ts"],"names":[],"mappings":";;;AAAA,MAAa,oBAAoB;IAC/B,YACkB,IAAsD;QAAtD,SAAI,GAAJ,IAAI,CAAkD;IACrE,CAAC;CACL;AAJD,oDAIC"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { IPaginatedType } from '../../../share/pagination.interface';
|
|
2
|
-
type PageDataType = {
|
|
3
|
-
readonly first: number;
|
|
4
|
-
after?: string;
|
|
5
|
-
};
|
|
6
|
-
export type OffsetPaginationFindManyArgs = {
|
|
7
|
-
take: number;
|
|
8
|
-
skip: number;
|
|
9
|
-
};
|
|
10
|
-
export type FindManyType<T> = (args: OffsetPaginationFindManyArgs) => Promise<T[]>;
|
|
11
|
-
type CountType = () => Promise<number>;
|
|
12
|
-
type GetPaginationArgsType<T> = {
|
|
13
|
-
pageData: PageDataType;
|
|
14
|
-
findMany: FindManyType<T>;
|
|
15
|
-
count: CountType;
|
|
16
|
-
};
|
|
17
|
-
export declare function getOffsetPagination<T>({ pageData, findMany, count, }: GetPaginationArgsType<T>): Promise<IPaginatedType<T>>;
|
|
18
|
-
export {};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getOffsetPagination = getOffsetPagination;
|
|
4
|
-
async function getOffsetPagination({ pageData, findMany, count, }) {
|
|
5
|
-
const take = pageData.first;
|
|
6
|
-
const skip = pageData.after ? Number(pageData.after) : 0;
|
|
7
|
-
const items = await findMany({
|
|
8
|
-
take,
|
|
9
|
-
skip,
|
|
10
|
-
});
|
|
11
|
-
const endCursor = items.length
|
|
12
|
-
? skip + items.length
|
|
13
|
-
: undefined;
|
|
14
|
-
const startCursor = items.length ? skip + 1 : undefined;
|
|
15
|
-
const hasNextPage = endCursor
|
|
16
|
-
? await findMany({
|
|
17
|
-
take: 1,
|
|
18
|
-
skip: endCursor,
|
|
19
|
-
}).then((result) => Boolean(result.length))
|
|
20
|
-
: false;
|
|
21
|
-
const hasPreviousPage = Boolean(startCursor && startCursor > 1);
|
|
22
|
-
const totalCount = await count();
|
|
23
|
-
return {
|
|
24
|
-
edges: items.map((item, index) => ({
|
|
25
|
-
cursor: ((startCursor || 0) + index).toString(),
|
|
26
|
-
node: item,
|
|
27
|
-
})),
|
|
28
|
-
pageInfo: {
|
|
29
|
-
startCursor: startCursor?.toString(),
|
|
30
|
-
endCursor: endCursor?.toString(),
|
|
31
|
-
hasNextPage,
|
|
32
|
-
hasPreviousPage,
|
|
33
|
-
},
|
|
34
|
-
totalCount,
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
//# sourceMappingURL=getOffsetPagination.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getOffsetPagination.js","sourceRoot":"","sources":["../../../../../src/share/commands/utils/getOffsetPagination.ts"],"names":[],"mappings":";;AAqBA,kDAyCC;AAzCM,KAAK,UAAU,mBAAmB,CAAI,EAC3C,QAAQ,EACR,QAAQ,EACR,KAAK,GACoB;IACzB,MAAM,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC;IAC5B,MAAM,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAEzD,MAAM,KAAK,GAAG,MAAM,QAAQ,CAAC;QAC3B,IAAI;QACJ,IAAI;KACL,CAAC,CAAC;IAEH,MAAM,SAAS,GAAuB,KAAK,CAAC,MAAM;QAChD,CAAC,CAAC,IAAI,GAAG,KAAK,CAAC,MAAM;QACrB,CAAC,CAAC,SAAS,CAAC;IACd,MAAM,WAAW,GAAuB,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAE5E,MAAM,WAAW,GAAG,SAAS;QAC3B,CAAC,CAAC,MAAM,QAAQ,CAAC;YACb,IAAI,EAAE,CAAC;YACP,IAAI,EAAE,SAAS;SAChB,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QAC7C,CAAC,CAAC,KAAK,CAAC;IACV,MAAM,eAAe,GAAG,OAAO,CAAC,WAAW,IAAI,WAAW,GAAG,CAAC,CAAC,CAAC;IAEhE,MAAM,UAAU,GAAG,MAAM,KAAK,EAAE,CAAC;IAEjC,OAAO;QACL,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC;YACjC,MAAM,EAAE,CAAC,CAAC,WAAW,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,QAAQ,EAAE;YAC/C,IAAI,EAAE,IAAS;SAChB,CAAC,CAAC;QACH,QAAQ,EAAE;YACR,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE;YACpC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE;YAChC,WAAW;YACX,eAAe;SAChB;QACD,UAAU;KACX,CAAC;AACJ,CAAC"}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { IPaginatedType } from '../../../share/pagination.interface';
|
|
2
|
-
type NodeType = {
|
|
3
|
-
id: string;
|
|
4
|
-
sequence: number;
|
|
5
|
-
};
|
|
6
|
-
type CursorType = {
|
|
7
|
-
sequence: number;
|
|
8
|
-
} | undefined;
|
|
9
|
-
type PageDataType = {
|
|
10
|
-
readonly first: number;
|
|
11
|
-
after?: string;
|
|
12
|
-
before?: string;
|
|
13
|
-
};
|
|
14
|
-
export type CursorPaginationFindManyArgs = {
|
|
15
|
-
take: number;
|
|
16
|
-
skip: number;
|
|
17
|
-
cursor: CursorType;
|
|
18
|
-
};
|
|
19
|
-
export type FindManyType<T> = (args: CursorPaginationFindManyArgs) => Promise<T[]>;
|
|
20
|
-
export type ResolveSequenceById = (id: string) => Promise<number>;
|
|
21
|
-
type CountType = () => Promise<number>;
|
|
22
|
-
type GetPaginationArgsType<T> = {
|
|
23
|
-
pageData: PageDataType;
|
|
24
|
-
findMany: FindManyType<T>;
|
|
25
|
-
resolveSequenceById: ResolveSequenceById;
|
|
26
|
-
count: CountType;
|
|
27
|
-
};
|
|
28
|
-
export declare function getRevisionCursorPagination<T extends NodeType>({ pageData, findMany, resolveSequenceById, count, }: GetPaginationArgsType<T>): Promise<IPaginatedType<T>>;
|
|
29
|
-
export {};
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getRevisionCursorPagination = getRevisionCursorPagination;
|
|
4
|
-
async function getRevisionCursorPagination({ pageData, findMany, resolveSequenceById, count, }) {
|
|
5
|
-
const totalCount = await count();
|
|
6
|
-
if (pageData.after && !(await resolveSequenceById(pageData.after))) {
|
|
7
|
-
throw new Error('Not found after');
|
|
8
|
-
}
|
|
9
|
-
if (pageData.before && !(await resolveSequenceById(pageData.before))) {
|
|
10
|
-
throw new Error('Not found before');
|
|
11
|
-
}
|
|
12
|
-
const items = await findMany(await resolveArgs(resolveSequenceById, pageData));
|
|
13
|
-
const endNode = items[items.length - 1];
|
|
14
|
-
const startNode = items[0];
|
|
15
|
-
const hasNextPage = endNode
|
|
16
|
-
? await isThereItem({
|
|
17
|
-
findMany,
|
|
18
|
-
sequence: endNode.sequence,
|
|
19
|
-
take: 1,
|
|
20
|
-
skip: 1,
|
|
21
|
-
})
|
|
22
|
-
: false;
|
|
23
|
-
const hasPreviousPage = startNode
|
|
24
|
-
? await isThereItem({
|
|
25
|
-
findMany,
|
|
26
|
-
sequence: startNode.sequence,
|
|
27
|
-
take: -1,
|
|
28
|
-
skip: 1,
|
|
29
|
-
})
|
|
30
|
-
: false;
|
|
31
|
-
return {
|
|
32
|
-
edges: items.map((item) => ({
|
|
33
|
-
cursor: item.id.toString(),
|
|
34
|
-
node: item,
|
|
35
|
-
})),
|
|
36
|
-
pageInfo: {
|
|
37
|
-
startCursor: startNode?.id.toString(),
|
|
38
|
-
endCursor: endNode?.id.toString(),
|
|
39
|
-
hasNextPage,
|
|
40
|
-
hasPreviousPage,
|
|
41
|
-
},
|
|
42
|
-
totalCount,
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
const isThereItem = async ({ findMany, take, sequence, skip, }) => {
|
|
46
|
-
const items = await findMany({
|
|
47
|
-
take,
|
|
48
|
-
skip,
|
|
49
|
-
cursor: {
|
|
50
|
-
sequence,
|
|
51
|
-
},
|
|
52
|
-
});
|
|
53
|
-
return Boolean(items.length);
|
|
54
|
-
};
|
|
55
|
-
const resolveArgs = async (resolveSequenceById, pageData) => {
|
|
56
|
-
let take = pageData.first;
|
|
57
|
-
let skip = 0;
|
|
58
|
-
let cursor = undefined;
|
|
59
|
-
if (pageData.after) {
|
|
60
|
-
skip = 1;
|
|
61
|
-
cursor = { sequence: await resolveSequenceById(pageData.after) };
|
|
62
|
-
}
|
|
63
|
-
else if (pageData.before) {
|
|
64
|
-
take = -pageData.first;
|
|
65
|
-
skip = 1;
|
|
66
|
-
cursor = { sequence: await resolveSequenceById(pageData.before) };
|
|
67
|
-
}
|
|
68
|
-
return { take, skip, cursor };
|
|
69
|
-
};
|
|
70
|
-
//# sourceMappingURL=getRevisionCursorPagination.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getRevisionCursorPagination.js","sourceRoot":"","sources":["../../../../../src/share/commands/utils/getRevisionCursorPagination.ts"],"names":[],"mappings":";;AAiCA,kEAqDC;AArDM,KAAK,UAAU,2BAA2B,CAAqB,EACpE,QAAQ,EACR,QAAQ,EACR,mBAAmB,EACnB,KAAK,GACoB;IACzB,MAAM,UAAU,GAAG,MAAM,KAAK,EAAE,CAAC;IAEjC,IAAI,QAAQ,CAAC,KAAK,IAAI,CAAC,CAAC,MAAM,mBAAmB,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC;QACnE,MAAM,IAAI,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACrC,CAAC;IAED,IAAI,QAAQ,CAAC,MAAM,IAAI,CAAC,CAAC,MAAM,mBAAmB,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC;QACrE,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAC;IACtC,CAAC;IAED,MAAM,KAAK,GAAG,MAAM,QAAQ,CAC1B,MAAM,WAAW,CAAC,mBAAmB,EAAE,QAAQ,CAAC,CACjD,CAAC;IAEF,MAAM,OAAO,GAAyB,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IAC9D,MAAM,SAAS,GAAyB,KAAK,CAAC,CAAC,CAAC,CAAC;IAEjD,MAAM,WAAW,GAAG,OAAO;QACzB,CAAC,CAAC,MAAM,WAAW,CAAC;YAChB,QAAQ;YACR,QAAQ,EAAE,OAAO,CAAC,QAAQ;YAC1B,IAAI,EAAE,CAAC;YACP,IAAI,EAAE,CAAC;SACR,CAAC;QACJ,CAAC,CAAC,KAAK,CAAC;IACV,MAAM,eAAe,GAAG,SAAS;QAC/B,CAAC,CAAC,MAAM,WAAW,CAAC;YAChB,QAAQ;YACR,QAAQ,EAAE,SAAS,CAAC,QAAQ;YAC5B,IAAI,EAAE,CAAC,CAAC;YACR,IAAI,EAAE,CAAC;SACR,CAAC;QACJ,CAAC,CAAC,KAAK,CAAC;IAEV,OAAO;QACL,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;YAC1B,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC,QAAQ,EAAE;YAC1B,IAAI,EAAE,IAAI;SACX,CAAC,CAAC;QACH,QAAQ,EAAE;YACR,WAAW,EAAE,SAAS,EAAE,EAAE,CAAC,QAAQ,EAAE;YACrC,SAAS,EAAE,OAAO,EAAE,EAAE,CAAC,QAAQ,EAAE;YACjC,WAAW;YACX,eAAe;SAChB;QACD,UAAU;KACX,CAAC;AACJ,CAAC;AAED,MAAM,WAAW,GAAG,KAAK,EAAE,EACzB,QAAQ,EACR,IAAI,EACJ,QAAQ,EACR,IAAI,GAML,EAAE,EAAE;IACH,MAAM,KAAK,GAAG,MAAM,QAAQ,CAAC;QAC3B,IAAI;QACJ,IAAI;QACJ,MAAM,EAAE;YACN,QAAQ;SACT;KACF,CAAC,CAAC;IAEH,OAAO,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;AAC/B,CAAC,CAAC;AAEF,MAAM,WAAW,GAAG,KAAK,EACvB,mBAAwC,EACxC,QAAsB,EACiB,EAAE;IACzC,IAAI,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC;IAC1B,IAAI,IAAI,GAAG,CAAC,CAAC;IACb,IAAI,MAAM,GAAe,SAAS,CAAC;IAEnC,IAAI,QAAQ,CAAC,KAAK,EAAE,CAAC;QACnB,IAAI,GAAG,CAAC,CAAC;QACT,MAAM,GAAG,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;IACnE,CAAC;SAAM,IAAI,QAAQ,CAAC,MAAM,EAAE,CAAC;QAC3B,IAAI,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC;QACvB,IAAI,GAAG,CAAC,CAAC;QACT,MAAM,GAAG,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;IACpE,CAAC;IAED,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;AAChC,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"const.js","sourceRoot":"","sources":["../../../src/share/const.ts"],"names":[],"mappings":";;AAEA,8DASC;AATD,SAAgB,yBAAyB;IACvC,OAAO;QACL,UAAU,EAAE,CAAC;QACb,KAAK,EAAE,EAAE;QACT,QAAQ,EAAE;YACR,eAAe,EAAE,KAAK;YACtB,WAAW,EAAE,KAAK;SACnB;KACF,CAAC;AACJ,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pagination.interface.js","sourceRoot":"","sources":["../../../src/share/pagination.interface.ts"],"names":[],"mappings":""}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { FindProjectInOrganizationOrThrowHandler } from '../../../share/queries/handlers/transactional/find-project-in-organization-or-throw.handler';
|
|
2
|
-
import { FindRowsInTableOrThrowHandler } from '../../../share/queries/handlers/transactional/find-rows-in-table-or-throw.handler';
|
|
3
|
-
import { GetTableSchemaHandler } from '../../../share/queries/handlers/transactional/get-table-schema.handler';
|
|
4
|
-
import { FindBranchInProjectOrThrowHandler } from './transactional/find-branch-in-project-or-throw.handler';
|
|
5
|
-
import { FindDraftRevisionInBranchOrThrowHandler } from './transactional/find-draft-revision-in-branch-or-throw.handler';
|
|
6
|
-
import { FindHeadRevisionInBranchOrThrowHandler } from './transactional/find-head-revision-in-branch-or-throw.handler';
|
|
7
|
-
import { FindRowInTableOrThrowHandler } from './transactional/find-row-in-table-or-throw.handler';
|
|
8
|
-
import { FindTableInRevisionOrThrowHandler } from './transactional/find-table-in-revision-or-throw.handler';
|
|
9
|
-
export declare const SHARE_QUERIES_HANDLERS: (typeof FindProjectInOrganizationOrThrowHandler | typeof FindRowsInTableOrThrowHandler | typeof GetTableSchemaHandler | typeof FindBranchInProjectOrThrowHandler | typeof FindDraftRevisionInBranchOrThrowHandler | typeof FindHeadRevisionInBranchOrThrowHandler | typeof FindRowInTableOrThrowHandler | typeof FindTableInRevisionOrThrowHandler)[];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/share/queries/handlers/index.ts"],"names":[],"mappings":";;;AAAA,iIAAiJ;AACjJ,6GAA6H;AAC7H,uFAA0G;AAC1G,qHAA4G;AAC5G,mIAAyH;AACzH,iIAAuH;AACvH,2GAAkG;AAClG,qHAA4G;AAE/F,QAAA,sBAAsB,GAAG;IACpC,iEAA4B;IAC5B,mEAA6B;IAC7B,2EAAiC;IACjC,2EAAiC;IACjC,wFAAuC;IACvC,sFAAsC;IACtC,uFAAuC;IACvC,gDAAqB;CACtB,CAAC"}
|
package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IQueryHandler } from '@nestjs/cqrs';
|
|
2
|
-
import { TransactionPrismaService } from '../../../../database/transaction-prisma.service';
|
|
3
|
-
import { FindBranchInProjectOrThrowQuery } from '../../../../share/queries/impl';
|
|
4
|
-
import { FindBranchInProjectType } from '../../../../share/queries/types';
|
|
5
|
-
export declare class FindBranchInProjectOrThrowHandler implements IQueryHandler<FindBranchInProjectOrThrowQuery> {
|
|
6
|
-
private transactionService;
|
|
7
|
-
constructor(transactionService: TransactionPrismaService);
|
|
8
|
-
private get transaction();
|
|
9
|
-
execute({ data, }: FindBranchInProjectOrThrowQuery): Promise<FindBranchInProjectType>;
|
|
10
|
-
}
|
package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.FindBranchInProjectOrThrowHandler = void 0;
|
|
13
|
-
const cqrs_1 = require("@nestjs/cqrs");
|
|
14
|
-
const transaction_prisma_service_1 = require("../../../../database/transaction-prisma.service");
|
|
15
|
-
const impl_1 = require("../../impl");
|
|
16
|
-
let FindBranchInProjectOrThrowHandler = class FindBranchInProjectOrThrowHandler {
|
|
17
|
-
constructor(transactionService) {
|
|
18
|
-
this.transactionService = transactionService;
|
|
19
|
-
}
|
|
20
|
-
get transaction() {
|
|
21
|
-
return this.transactionService.getTransaction();
|
|
22
|
-
}
|
|
23
|
-
async execute({ data, }) {
|
|
24
|
-
const existingBranch = await this.transaction.branch.findUnique({
|
|
25
|
-
where: {
|
|
26
|
-
name_projectId: {
|
|
27
|
-
name: data.branchName,
|
|
28
|
-
projectId: data.projectId,
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
select: { id: true },
|
|
32
|
-
});
|
|
33
|
-
if (!existingBranch) {
|
|
34
|
-
throw new Error('A branch with this name does not exist in the project');
|
|
35
|
-
}
|
|
36
|
-
return existingBranch;
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
exports.FindBranchInProjectOrThrowHandler = FindBranchInProjectOrThrowHandler;
|
|
40
|
-
exports.FindBranchInProjectOrThrowHandler = FindBranchInProjectOrThrowHandler = __decorate([
|
|
41
|
-
(0, cqrs_1.QueryHandler)(impl_1.FindBranchInProjectOrThrowQuery),
|
|
42
|
-
__metadata("design:paramtypes", [transaction_prisma_service_1.TransactionPrismaService])
|
|
43
|
-
], FindBranchInProjectOrThrowHandler);
|
|
44
|
-
//# sourceMappingURL=find-branch-in-project-or-throw.handler.js.map
|
package/dist/src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"find-branch-in-project-or-throw.handler.js","sourceRoot":"","sources":["../../../../../../src/share/queries/handlers/transactional/find-branch-in-project-or-throw.handler.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uCAA2D;AAC3D,gGAAmF;AACnF,qCAAyE;AAIlE,IAAM,iCAAiC,GAAvC,MAAM,iCAAiC;IAG5C,YAAoB,kBAA4C;QAA5C,uBAAkB,GAAlB,kBAAkB,CAA0B;IAAG,CAAC;IAEpE,IAAY,WAAW;QACrB,OAAO,IAAI,CAAC,kBAAkB,CAAC,cAAc,EAAE,CAAC;IAClD,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,EACZ,IAAI,GAC4B;QAChC,MAAM,cAAc,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,UAAU,CAAC;YAC9D,KAAK,EAAE;gBACL,cAAc,EAAE;oBACd,IAAI,EAAE,IAAI,CAAC,UAAU;oBACrB,SAAS,EAAE,IAAI,CAAC,SAAS;iBAC1B;aACF;YACD,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE;SACrB,CAAC,CAAC;QAEH,IAAI,CAAC,cAAc,EAAE,CAAC;YACpB,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;QAC3E,CAAC;QAED,OAAO,cAAc,CAAC;IACxB,CAAC;CACF,CAAA;AA5BY,8EAAiC;4CAAjC,iCAAiC;IAD7C,IAAA,mBAAY,EAAC,sCAA+B,CAAC;qCAIJ,qDAAwB;GAHrD,iCAAiC,CA4B7C"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IQueryHandler } from '@nestjs/cqrs';
|
|
2
|
-
import { TransactionPrismaService } from '../../../../database/transaction-prisma.service';
|
|
3
|
-
import { FindDraftRevisionInBranchOrThrowQuery } from '../../../../share/queries/impl';
|
|
4
|
-
import { FindDraftRevisionInBranchType } from '../../../../share/queries/types';
|
|
5
|
-
export declare class FindDraftRevisionInBranchOrThrowHandler implements IQueryHandler<FindDraftRevisionInBranchOrThrowQuery> {
|
|
6
|
-
private transactionService;
|
|
7
|
-
constructor(transactionService: TransactionPrismaService);
|
|
8
|
-
private get transaction();
|
|
9
|
-
execute({ data, }: FindDraftRevisionInBranchOrThrowQuery): Promise<FindDraftRevisionInBranchType>;
|
|
10
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.FindDraftRevisionInBranchOrThrowHandler = void 0;
|
|
13
|
-
const cqrs_1 = require("@nestjs/cqrs");
|
|
14
|
-
const transaction_prisma_service_1 = require("../../../../database/transaction-prisma.service");
|
|
15
|
-
const impl_1 = require("../../impl");
|
|
16
|
-
let FindDraftRevisionInBranchOrThrowHandler = class FindDraftRevisionInBranchOrThrowHandler {
|
|
17
|
-
constructor(transactionService) {
|
|
18
|
-
this.transactionService = transactionService;
|
|
19
|
-
}
|
|
20
|
-
get transaction() {
|
|
21
|
-
return this.transactionService.getTransaction();
|
|
22
|
-
}
|
|
23
|
-
async execute({ data, }) {
|
|
24
|
-
const existingDraftRevision = await this.transaction.revision.findFirstOrThrow({
|
|
25
|
-
where: { isDraft: true, branchId: data.branchId },
|
|
26
|
-
select: { id: true },
|
|
27
|
-
});
|
|
28
|
-
if (!existingDraftRevision) {
|
|
29
|
-
throw new Error('A branch with this name does not exist in the project');
|
|
30
|
-
}
|
|
31
|
-
return existingDraftRevision;
|
|
32
|
-
}
|
|
33
|
-
};
|
|
34
|
-
exports.FindDraftRevisionInBranchOrThrowHandler = FindDraftRevisionInBranchOrThrowHandler;
|
|
35
|
-
exports.FindDraftRevisionInBranchOrThrowHandler = FindDraftRevisionInBranchOrThrowHandler = __decorate([
|
|
36
|
-
(0, cqrs_1.QueryHandler)(impl_1.FindDraftRevisionInBranchOrThrowQuery),
|
|
37
|
-
__metadata("design:paramtypes", [transaction_prisma_service_1.TransactionPrismaService])
|
|
38
|
-
], FindDraftRevisionInBranchOrThrowHandler);
|
|
39
|
-
//# sourceMappingURL=find-draft-revision-in-branch-or-throw.handler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"find-draft-revision-in-branch-or-throw.handler.js","sourceRoot":"","sources":["../../../../../../src/share/queries/handlers/transactional/find-draft-revision-in-branch-or-throw.handler.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uCAA2D;AAC3D,gGAAmF;AACnF,qCAA+E;AAIxE,IAAM,uCAAuC,GAA7C,MAAM,uCAAuC;IAGlD,YAAoB,kBAA4C;QAA5C,uBAAkB,GAAlB,kBAAkB,CAA0B;IAAG,CAAC;IAEpE,IAAY,WAAW;QACrB,OAAO,IAAI,CAAC,kBAAkB,CAAC,cAAc,EAAE,CAAC;IAClD,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,EACZ,IAAI,GACkC;QACtC,MAAM,qBAAqB,GACzB,MAAM,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,gBAAgB,CAAC;YAC/C,KAAK,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE;YACjD,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE;SACrB,CAAC,CAAC;QAEL,IAAI,CAAC,qBAAqB,EAAE,CAAC;YAC3B,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;QAC3E,CAAC;QAED,OAAO,qBAAqB,CAAC;IAC/B,CAAC;CACF,CAAA;AAxBY,0FAAuC;kDAAvC,uCAAuC;IADnD,IAAA,mBAAY,EAAC,4CAAqC,CAAC;qCAIV,qDAAwB;GAHrD,uCAAuC,CAwBnD"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IQueryHandler } from '@nestjs/cqrs';
|
|
2
|
-
import { TransactionPrismaService } from '../../../../database/transaction-prisma.service';
|
|
3
|
-
import { FindHeadRevisionInBranchOrThrowQuery } from '../../../../share/queries/impl';
|
|
4
|
-
import { FindHeadRevisionInBranchType } from '../../../../share/queries/types';
|
|
5
|
-
export declare class FindHeadRevisionInBranchOrThrowHandler implements IQueryHandler<FindHeadRevisionInBranchOrThrowQuery> {
|
|
6
|
-
private transactionService;
|
|
7
|
-
constructor(transactionService: TransactionPrismaService);
|
|
8
|
-
private get transaction();
|
|
9
|
-
execute({ data, }: FindHeadRevisionInBranchOrThrowQuery): Promise<FindHeadRevisionInBranchType>;
|
|
10
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.FindHeadRevisionInBranchOrThrowHandler = void 0;
|
|
13
|
-
const cqrs_1 = require("@nestjs/cqrs");
|
|
14
|
-
const transaction_prisma_service_1 = require("../../../../database/transaction-prisma.service");
|
|
15
|
-
const impl_1 = require("../../impl");
|
|
16
|
-
let FindHeadRevisionInBranchOrThrowHandler = class FindHeadRevisionInBranchOrThrowHandler {
|
|
17
|
-
constructor(transactionService) {
|
|
18
|
-
this.transactionService = transactionService;
|
|
19
|
-
}
|
|
20
|
-
get transaction() {
|
|
21
|
-
return this.transactionService.getTransaction();
|
|
22
|
-
}
|
|
23
|
-
async execute({ data, }) {
|
|
24
|
-
const existingHeadRevision = await this.transaction.revision.findFirstOrThrow({
|
|
25
|
-
where: { isHead: true, branchId: data.branchId },
|
|
26
|
-
select: { id: true },
|
|
27
|
-
});
|
|
28
|
-
if (!existingHeadRevision) {
|
|
29
|
-
throw new Error('A branch with this name does not exist in the project');
|
|
30
|
-
}
|
|
31
|
-
return existingHeadRevision;
|
|
32
|
-
}
|
|
33
|
-
};
|
|
34
|
-
exports.FindHeadRevisionInBranchOrThrowHandler = FindHeadRevisionInBranchOrThrowHandler;
|
|
35
|
-
exports.FindHeadRevisionInBranchOrThrowHandler = FindHeadRevisionInBranchOrThrowHandler = __decorate([
|
|
36
|
-
(0, cqrs_1.QueryHandler)(impl_1.FindHeadRevisionInBranchOrThrowQuery),
|
|
37
|
-
__metadata("design:paramtypes", [transaction_prisma_service_1.TransactionPrismaService])
|
|
38
|
-
], FindHeadRevisionInBranchOrThrowHandler);
|
|
39
|
-
//# sourceMappingURL=find-head-revision-in-branch-or-throw.handler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"find-head-revision-in-branch-or-throw.handler.js","sourceRoot":"","sources":["../../../../../../src/share/queries/handlers/transactional/find-head-revision-in-branch-or-throw.handler.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uCAA2D;AAC3D,gGAAmF;AACnF,qCAA8E;AAIvE,IAAM,sCAAsC,GAA5C,MAAM,sCAAsC;IAGjD,YAAoB,kBAA4C;QAA5C,uBAAkB,GAAlB,kBAAkB,CAA0B;IAAG,CAAC;IAEpE,IAAY,WAAW;QACrB,OAAO,IAAI,CAAC,kBAAkB,CAAC,cAAc,EAAE,CAAC;IAClD,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,EACZ,IAAI,GACiC;QACrC,MAAM,oBAAoB,GACxB,MAAM,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,gBAAgB,CAAC;YAC/C,KAAK,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE;YAChD,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE;SACrB,CAAC,CAAC;QAEL,IAAI,CAAC,oBAAoB,EAAE,CAAC;YAC1B,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;QAC3E,CAAC;QAED,OAAO,oBAAoB,CAAC;IAC9B,CAAC;CACF,CAAA;AAxBY,wFAAsC;iDAAtC,sCAAsC;IADlD,IAAA,mBAAY,EAAC,2CAAoC,CAAC;qCAIT,qDAAwB;GAHrD,sCAAsC,CAwBlD"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IQueryHandler } from '@nestjs/cqrs';
|
|
2
|
-
import { TransactionPrismaService } from '../../../../database/transaction-prisma.service';
|
|
3
|
-
import { FindProjectInOrganizationOrThrowQuery } from '../../../../share/queries/impl';
|
|
4
|
-
import { FindProjectInOrganizationType } from '../../../../share/queries/types';
|
|
5
|
-
export declare class FindProjectInOrganizationOrThrowHandler implements IQueryHandler<FindProjectInOrganizationOrThrowQuery> {
|
|
6
|
-
private transactionService;
|
|
7
|
-
constructor(transactionService: TransactionPrismaService);
|
|
8
|
-
private get transaction();
|
|
9
|
-
execute({ data, }: FindProjectInOrganizationOrThrowQuery): Promise<FindProjectInOrganizationType>;
|
|
10
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.FindProjectInOrganizationOrThrowHandler = void 0;
|
|
13
|
-
const cqrs_1 = require("@nestjs/cqrs");
|
|
14
|
-
const transaction_prisma_service_1 = require("../../../../database/transaction-prisma.service");
|
|
15
|
-
const impl_1 = require("../../impl");
|
|
16
|
-
let FindProjectInOrganizationOrThrowHandler = class FindProjectInOrganizationOrThrowHandler {
|
|
17
|
-
constructor(transactionService) {
|
|
18
|
-
this.transactionService = transactionService;
|
|
19
|
-
}
|
|
20
|
-
get transaction() {
|
|
21
|
-
return this.transactionService.getTransaction();
|
|
22
|
-
}
|
|
23
|
-
async execute({ data, }) {
|
|
24
|
-
const existingProject = await this.transaction.project.findUnique({
|
|
25
|
-
where: {
|
|
26
|
-
organizationId_name: {
|
|
27
|
-
organizationId: data.organizationId,
|
|
28
|
-
name: data.projectName,
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
select: { id: true },
|
|
32
|
-
});
|
|
33
|
-
if (!existingProject) {
|
|
34
|
-
throw new Error('A project with this name does not exist in the organization');
|
|
35
|
-
}
|
|
36
|
-
return existingProject;
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
exports.FindProjectInOrganizationOrThrowHandler = FindProjectInOrganizationOrThrowHandler;
|
|
40
|
-
exports.FindProjectInOrganizationOrThrowHandler = FindProjectInOrganizationOrThrowHandler = __decorate([
|
|
41
|
-
(0, cqrs_1.QueryHandler)(impl_1.FindProjectInOrganizationOrThrowQuery),
|
|
42
|
-
__metadata("design:paramtypes", [transaction_prisma_service_1.TransactionPrismaService])
|
|
43
|
-
], FindProjectInOrganizationOrThrowHandler);
|
|
44
|
-
//# sourceMappingURL=find-project-in-organization-or-throw.handler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"find-project-in-organization-or-throw.handler.js","sourceRoot":"","sources":["../../../../../../src/share/queries/handlers/transactional/find-project-in-organization-or-throw.handler.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uCAA2D;AAC3D,gGAAmF;AACnF,qCAA+E;AAIxE,IAAM,uCAAuC,GAA7C,MAAM,uCAAuC;IAGlD,YAAoB,kBAA4C;QAA5C,uBAAkB,GAAlB,kBAAkB,CAA0B;IAAG,CAAC;IAEpE,IAAY,WAAW;QACrB,OAAO,IAAI,CAAC,kBAAkB,CAAC,cAAc,EAAE,CAAC;IAClD,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,EACZ,IAAI,GACkC;QACtC,MAAM,eAAe,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC;YAChE,KAAK,EAAE;gBACL,mBAAmB,EAAE;oBACnB,cAAc,EAAE,IAAI,CAAC,cAAc;oBACnC,IAAI,EAAE,IAAI,CAAC,WAAW;iBACvB;aACF;YACD,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE;SACrB,CAAC,CAAC;QAEH,IAAI,CAAC,eAAe,EAAE,CAAC;YACrB,MAAM,IAAI,KAAK,CACb,6DAA6D,CAC9D,CAAC;QACJ,CAAC;QAED,OAAO,eAAe,CAAC;IACzB,CAAC;CACF,CAAA;AA9BY,0FAAuC;kDAAvC,uCAAuC;IADnD,IAAA,mBAAY,EAAC,4CAAqC,CAAC;qCAIV,qDAAwB;GAHrD,uCAAuC,CA8BnD"}
|
package/dist/src/share/queries/handlers/transactional/find-row-in-table-or-throw.handler.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IQueryHandler } from '@nestjs/cqrs';
|
|
2
|
-
import { TransactionPrismaService } from '../../../../database/transaction-prisma.service';
|
|
3
|
-
import { FindRowInTableOrThrowQuery } from '../../../../share/queries/impl/transactional/find-row-in-table-or-throw.query';
|
|
4
|
-
import { FindRowInTableType } from '../../../../share/queries/types';
|
|
5
|
-
export declare class FindRowInTableOrThrowHandler implements IQueryHandler<FindRowInTableOrThrowQuery> {
|
|
6
|
-
private transactionService;
|
|
7
|
-
constructor(transactionService: TransactionPrismaService);
|
|
8
|
-
private get transaction();
|
|
9
|
-
execute({ data, }: FindRowInTableOrThrowQuery): Promise<FindRowInTableType>;
|
|
10
|
-
}
|