@revisium/core 2.4.0 → 2.5.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jest.setup.js +37 -1
- package/dist/jest.setup.js.map +1 -1
- package/dist/package.json +27 -16
- package/dist/prisma/schema.prisma +4 -5
- package/dist/prisma/seed/generateSeedApi.js +35 -2
- package/dist/prisma/seed/generateSeedApi.js.map +1 -1
- package/dist/prisma/seed/loadFromSeedApi.js +35 -2
- package/dist/prisma/seed/loadFromSeedApi.js.map +1 -1
- package/dist/prisma/seed/permissions/update-user.json +5 -0
- package/dist/prisma/seed/roles/organizationAdmin.json +1 -0
- package/dist/prisma/seed/roles/organizationOwner.json +1 -0
- package/dist/prisma/seed/roles/systemAdmin.json +24 -2
- package/dist/prisma/seed.js +42 -5
- package/dist/prisma/seed.js.map +1 -1
- package/dist/prisma/sql/countRowChangesBetweenRevisions.sql +68 -0
- package/dist/prisma/sql/countTableDiffsBetweenRevisions.sql +23 -13
- package/dist/prisma/sql/getRowChangesPaginatedBetweenRevisions.sql +155 -0
- package/dist/prisma/sql/getRowChangesStatsBetweenRevisions.sql +54 -0
- package/dist/prisma/sql/getTableDiffsPaginatedBetweenRevisions.sql +22 -8
- package/dist/prisma/sql/getTableDiffsStatsBetweenRevisions.sql +41 -0
- package/dist/prisma.config.d.ts +3 -0
- package/dist/prisma.config.js +15 -0
- package/dist/prisma.config.js.map +1 -0
- package/dist/src/__generated__/client/browser.d.ts +18 -0
- package/dist/src/__generated__/client/browser.js +44 -0
- package/dist/src/__generated__/client/browser.js.map +1 -0
- package/dist/src/__generated__/client/client.d.ts +22 -0
- package/dist/src/__generated__/client/client.js +46 -0
- package/dist/src/__generated__/client/client.js.map +1 -0
- package/dist/src/__generated__/client/commonInputTypes.d.ts +441 -0
- package/dist/src/{features/draft/commands/types/remove-row.handler.types.js → __generated__/client/commonInputTypes.js} +1 -1
- package/dist/src/__generated__/client/commonInputTypes.js.map +1 -0
- package/dist/src/__generated__/client/enums.d.ts +11 -0
- package/dist/src/__generated__/client/enums.js +13 -0
- package/dist/src/__generated__/client/enums.js.map +1 -0
- package/dist/src/__generated__/client/index.d.ts +1 -0
- package/dist/src/__generated__/client/index.js +18 -0
- package/dist/src/__generated__/client/index.js.map +1 -0
- package/dist/src/__generated__/client/internal/class.d.ts +75 -0
- package/dist/src/__generated__/client/internal/class.js +69 -0
- package/dist/src/__generated__/client/internal/class.js.map +1 -0
- package/dist/src/__generated__/client/internal/prismaNamespace.d.ts +1572 -0
- package/dist/src/__generated__/client/internal/prismaNamespace.js +289 -0
- package/dist/src/__generated__/client/internal/prismaNamespace.js.map +1 -0
- package/dist/src/__generated__/client/internal/prismaNamespaceBrowser.d.ts +273 -0
- package/dist/src/__generated__/client/internal/prismaNamespaceBrowser.js +272 -0
- package/dist/src/__generated__/client/internal/prismaNamespaceBrowser.js.map +1 -0
- package/dist/src/__generated__/client/models/Branch.d.ts +651 -0
- package/dist/src/__generated__/client/models/Branch.js +3 -0
- package/dist/src/__generated__/client/models/Branch.js.map +1 -0
- package/dist/src/__generated__/client/models/Endpoint.d.ts +701 -0
- package/dist/src/__generated__/client/models/Endpoint.js +3 -0
- package/dist/src/__generated__/client/models/Endpoint.js.map +1 -0
- package/dist/src/__generated__/client/models/EndpointVersion.d.ts +488 -0
- package/dist/src/__generated__/client/models/EndpointVersion.js +3 -0
- package/dist/src/__generated__/client/models/EndpointVersion.js.map +1 -0
- package/dist/src/__generated__/client/models/Instance.d.ts +298 -0
- package/dist/src/__generated__/client/models/Instance.js +3 -0
- package/dist/src/__generated__/client/models/Instance.js.map +1 -0
- package/dist/src/__generated__/client/models/Organization.d.ts +495 -0
- package/dist/src/__generated__/client/models/Organization.js +3 -0
- package/dist/src/__generated__/client/models/Organization.js.map +1 -0
- package/dist/src/__generated__/client/models/Permission.d.ts +556 -0
- package/dist/src/__generated__/client/models/Permission.js +3 -0
- package/dist/src/__generated__/client/models/Permission.js.map +1 -0
- package/dist/src/__generated__/client/models/Project.d.ts +781 -0
- package/dist/src/__generated__/client/models/Project.js +3 -0
- package/dist/src/__generated__/client/models/Project.js.map +1 -0
- package/dist/src/__generated__/client/models/Revision.d.ts +1298 -0
- package/dist/src/__generated__/client/models/Revision.js +3 -0
- package/dist/src/__generated__/client/models/Revision.js.map +1 -0
- package/dist/src/__generated__/client/models/Role.d.ts +858 -0
- package/dist/src/__generated__/client/models/Role.js +3 -0
- package/dist/src/__generated__/client/models/Role.js.map +1 -0
- package/dist/src/__generated__/client/models/Row.d.ts +754 -0
- package/dist/src/__generated__/client/models/Row.js +3 -0
- package/dist/src/__generated__/client/models/Row.js.map +1 -0
- package/dist/src/__generated__/client/models/Table.d.ts +761 -0
- package/dist/src/__generated__/client/models/Table.js +3 -0
- package/dist/src/__generated__/client/models/Table.js.map +1 -0
- package/dist/src/__generated__/client/models/User.d.ts +876 -0
- package/dist/src/__generated__/client/models/User.js +3 -0
- package/dist/src/__generated__/client/models/User.js.map +1 -0
- package/dist/src/__generated__/client/models/UserOrganization.d.ts +764 -0
- package/dist/src/__generated__/client/models/UserOrganization.js +3 -0
- package/dist/src/__generated__/client/models/UserOrganization.js.map +1 -0
- package/dist/src/__generated__/client/models/UserProject.d.ts +764 -0
- package/dist/src/__generated__/client/models/UserProject.js +3 -0
- package/dist/src/__generated__/client/models/UserProject.js.map +1 -0
- package/dist/src/__generated__/client/models.d.ts +15 -0
- package/dist/src/__generated__/client/models.js +3 -0
- package/dist/src/__generated__/client/models.js.map +1 -0
- package/dist/src/__generated__/client/sql/$DbEnums.d.ts +4 -0
- package/dist/src/__generated__/client/sql/$DbEnums.js +3 -0
- package/dist/src/__generated__/client/sql/$DbEnums.js.map +1 -0
- package/dist/src/__generated__/client/sql/countRowChangesBetweenRevisions.d.ts +8 -0
- package/dist/src/__generated__/client/sql/countRowChangesBetweenRevisions.js +39 -0
- package/dist/src/__generated__/client/sql/countRowChangesBetweenRevisions.js.map +1 -0
- package/dist/src/__generated__/client/sql/countTableDiffsBetweenRevisions.d.ts +8 -0
- package/dist/src/__generated__/client/sql/countTableDiffsBetweenRevisions.js +39 -0
- package/dist/src/__generated__/client/sql/countTableDiffsBetweenRevisions.js.map +1 -0
- package/dist/src/__generated__/client/sql/getRowChangesPaginatedBetweenRevisions.d.ts +46 -0
- package/dist/src/__generated__/client/sql/getRowChangesPaginatedBetweenRevisions.js +39 -0
- package/dist/src/__generated__/client/sql/getRowChangesPaginatedBetweenRevisions.js.map +1 -0
- package/dist/src/__generated__/client/sql/getRowChangesStatsBetweenRevisions.d.ts +12 -0
- package/dist/src/__generated__/client/sql/getRowChangesStatsBetweenRevisions.js +39 -0
- package/dist/src/__generated__/client/sql/getRowChangesStatsBetweenRevisions.js.map +1 -0
- package/dist/src/__generated__/client/sql/getTableDiffsPaginatedBetweenRevisions.d.ts +14 -0
- package/dist/src/__generated__/client/sql/getTableDiffsPaginatedBetweenRevisions.js +39 -0
- package/dist/src/__generated__/client/sql/getTableDiffsPaginatedBetweenRevisions.js.map +1 -0
- package/dist/src/__generated__/client/sql/getTableDiffsStatsBetweenRevisions.d.ts +12 -0
- package/dist/src/__generated__/client/sql/getTableDiffsStatsBetweenRevisions.js +39 -0
- package/dist/src/__generated__/client/sql/getTableDiffsStatsBetweenRevisions.js.map +1 -0
- package/dist/src/__generated__/client/sql/hasRowDiffsBetweenRevisions.d.ts +8 -0
- package/dist/src/__generated__/client/sql/hasRowDiffsBetweenRevisions.js +39 -0
- package/dist/src/__generated__/client/sql/hasRowDiffsBetweenRevisions.js.map +1 -0
- package/dist/src/__generated__/client/sql/hasTableDiffsBetweenRevisions.d.ts +8 -0
- package/dist/src/__generated__/client/sql/hasTableDiffsBetweenRevisions.js +39 -0
- package/dist/src/__generated__/client/sql/hasTableDiffsBetweenRevisions.js.map +1 -0
- package/dist/src/__generated__/client/sql.d.ts +9 -0
- package/dist/src/__generated__/client/sql.js +25 -0
- package/dist/src/__generated__/client/sql.js.map +1 -0
- package/dist/src/__tests__/create-models.d.ts +4 -2
- package/dist/src/__tests__/e2e/shared/graphql-helpers.d.ts +29 -0
- package/dist/src/__tests__/e2e/shared/graphql-helpers.js +61 -0
- package/dist/src/__tests__/e2e/shared/graphql-helpers.js.map +1 -0
- package/dist/src/__tests__/e2e/shared/helpers.d.ts +16 -0
- package/dist/src/__tests__/e2e/shared/helpers.js +64 -0
- package/dist/src/__tests__/e2e/shared/helpers.js.map +1 -0
- package/dist/src/__tests__/e2e/shared/index.d.ts +4 -0
- package/dist/src/__tests__/e2e/shared/index.js +26 -0
- package/dist/src/__tests__/e2e/shared/index.js.map +1 -0
- package/dist/src/__tests__/e2e/shared/readonly-fixture.d.ts +5 -0
- package/dist/src/__tests__/e2e/shared/readonly-fixture.js +28 -0
- package/dist/src/__tests__/e2e/shared/readonly-fixture.js.map +1 -0
- package/dist/src/__tests__/e2e/shared/test-app.d.ts +6 -0
- package/dist/src/__tests__/e2e/shared/test-app.js +55 -0
- package/dist/src/__tests__/e2e/shared/test-app.js.map +1 -0
- package/dist/src/__tests__/utils/prepareProject.d.ts +335 -64
- package/dist/src/__tests__/utils/prepareProject.js +83 -24
- package/dist/src/__tests__/utils/prepareProject.js.map +1 -1
- package/dist/src/__tests__/utils/queryTest.js +6 -3
- package/dist/src/__tests__/utils/queryTest.js.map +1 -1
- package/dist/src/api/graphql-api/auth/auth.resolver.d.ts +3 -3
- package/dist/src/api/graphql-api/auth/auth.resolver.js +14 -11
- package/dist/src/api/graphql-api/auth/auth.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/branch/branch.resolver.d.ts +72 -15
- package/dist/src/api/graphql-api/branch/branch.resolver.js +18 -23
- package/dist/src/api/graphql-api/branch/branch.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/branch/inputs/get-branch-revisions.input.d.ts +3 -0
- package/dist/src/api/graphql-api/branch/inputs/get-branch-revisions.input.js +12 -0
- package/dist/src/api/graphql-api/branch/inputs/get-branch-revisions.input.js.map +1 -1
- package/dist/src/api/graphql-api/branch/parent-branch.resolver.d.ts +10 -4
- package/dist/src/api/graphql-api/branch/parent-branch.resolver.js +5 -6
- package/dist/src/api/graphql-api/branch/parent-branch.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/configuration/configuration.resolver.d.ts +3 -3
- package/dist/src/api/graphql-api/configuration/configuration.resolver.js +5 -6
- package/dist/src/api/graphql-api/configuration/configuration.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/draft/draft.resolver.d.ts +14 -13
- package/dist/src/api/graphql-api/draft/draft.resolver.js +31 -22
- package/dist/src/api/graphql-api/draft/draft.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/draft/input/create-row.input.d.ts +1 -1
- package/dist/src/api/graphql-api/draft/input/create-row.input.js +1 -1
- package/dist/src/api/graphql-api/draft/input/create-row.input.js.map +1 -1
- package/dist/src/api/graphql-api/draft/input/create-table.input.d.ts +1 -1
- package/dist/src/api/graphql-api/draft/input/create-table.input.js +1 -1
- package/dist/src/api/graphql-api/draft/input/create-table.input.js.map +1 -1
- package/dist/src/api/graphql-api/draft/input/index.d.ts +1 -0
- package/dist/src/api/graphql-api/draft/input/index.js +1 -0
- package/dist/src/api/graphql-api/draft/input/index.js.map +1 -1
- package/dist/src/api/graphql-api/draft/input/remove-rows.input.d.ts +5 -0
- package/dist/src/api/graphql-api/draft/input/remove-rows.input.js +36 -0
- package/dist/src/api/graphql-api/draft/input/remove-rows.input.js.map +1 -0
- package/dist/src/api/graphql-api/draft/input/update-row.input.d.ts +1 -1
- package/dist/src/api/graphql-api/draft/input/update-row.input.js +1 -1
- package/dist/src/api/graphql-api/draft/input/update-row.input.js.map +1 -1
- package/dist/src/api/graphql-api/draft/model/remove-rows-result.model.d.ts +7 -0
- package/dist/src/api/graphql-api/draft/model/remove-rows-result.model.js +34 -0
- package/dist/src/api/graphql-api/draft/model/remove-rows-result.model.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/endpoint.resolver.d.ts +14 -7
- package/dist/src/api/graphql-api/endpoint/endpoint.resolver.js +21 -13
- package/dist/src/api/graphql-api/endpoint/endpoint.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/endpoint/inputs/get-project-endpoints.input.d.ts +9 -0
- package/dist/src/api/graphql-api/endpoint/inputs/get-project-endpoints.input.js +45 -0
- package/dist/src/api/graphql-api/endpoint/inputs/get-project-endpoints.input.js.map +1 -0
- package/dist/src/api/graphql-api/endpoint/inputs/index.d.ts +1 -0
- package/dist/src/api/graphql-api/endpoint/inputs/index.js +1 -0
- package/dist/src/api/graphql-api/endpoint/inputs/index.js.map +1 -1
- package/dist/src/api/graphql-api/endpoint/model/endpoint.model.d.ts +1 -0
- package/dist/src/api/graphql-api/endpoint/model/endpoint.model.js +4 -0
- package/dist/src/api/graphql-api/endpoint/model/endpoint.model.js.map +1 -1
- package/dist/src/api/graphql-api/endpoint/model/endpoints-connection.model.d.ts +5 -0
- package/dist/src/api/graphql-api/endpoint/model/endpoints-connection.model.js +19 -0
- package/dist/src/api/graphql-api/endpoint/model/endpoints-connection.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 +1 -0
- package/dist/src/api/graphql-api/endpoint/model/index.js.map +1 -1
- package/dist/src/api/graphql-api/filters/graphql-validation-exception.filter.d.ts +6 -0
- package/dist/src/api/graphql-api/filters/graphql-validation-exception.filter.js +40 -0
- package/dist/src/api/graphql-api/filters/graphql-validation-exception.filter.js.map +1 -0
- package/dist/src/api/graphql-api/graphql-api.module.js +43 -3
- package/dist/src/api/graphql-api/graphql-api.module.js.map +1 -1
- package/dist/src/api/graphql-api/organization/model/organization.model.d.ts +6 -0
- package/dist/src/api/graphql-api/organization/model/organization.model.js +33 -0
- package/dist/src/api/graphql-api/organization/model/organization.model.js.map +1 -0
- package/dist/src/api/graphql-api/organization/model/users-organization.model.d.ts +1 -0
- package/dist/src/api/graphql-api/organization/model/users-organization.model.js.map +1 -1
- package/dist/src/api/graphql-api/organization/organization.resolver.d.ts +20 -8
- package/dist/src/api/graphql-api/organization/organization.resolver.js +34 -15
- package/dist/src/api/graphql-api/organization/organization.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/organization/users-organization.resolver.d.ts +13 -0
- package/dist/src/api/graphql-api/organization/users-organization.resolver.js +39 -0
- package/dist/src/api/graphql-api/organization/users-organization.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/permission/model/permission.model.d.ts +6 -0
- package/dist/src/api/graphql-api/permission/model/permission.model.js +37 -0
- package/dist/src/api/graphql-api/permission/model/permission.model.js.map +1 -0
- package/dist/src/api/graphql-api/project/inputs/index.d.ts +1 -0
- package/dist/src/api/graphql-api/project/inputs/index.js +1 -0
- package/dist/src/api/graphql-api/project/inputs/index.js.map +1 -1
- package/dist/src/api/graphql-api/project/inputs/update-user-project-role.input.d.ts +7 -0
- package/dist/src/api/graphql-api/project/inputs/update-user-project-role.input.js +37 -0
- package/dist/src/api/graphql-api/project/inputs/update-user-project-role.input.js.map +1 -0
- package/dist/src/api/graphql-api/project/model/project.model.d.ts +4 -0
- package/dist/src/api/graphql-api/project/model/project.model.js +10 -0
- package/dist/src/api/graphql-api/project/model/project.model.js.map +1 -1
- package/dist/src/api/graphql-api/project/model/users-project.model.d.ts +1 -0
- package/dist/src/api/graphql-api/project/model/users-project.model.js.map +1 -1
- package/dist/src/api/graphql-api/project/project.resolver.d.ts +32 -9
- package/dist/src/api/graphql-api/project/project.resolver.js +63 -16
- package/dist/src/api/graphql-api/project/project.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/project/users-project.resolver.d.ts +13 -0
- package/dist/src/api/graphql-api/project/users-project.resolver.js +45 -0
- package/dist/src/api/graphql-api/project/users-project.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/registerGraphqlEnums.js +1 -1
- package/dist/src/api/graphql-api/registerGraphqlEnums.js.map +1 -1
- package/dist/src/api/graphql-api/revision/child-branch.resolver.d.ts +10 -4
- package/dist/src/api/graphql-api/revision/child-branch.resolver.js +5 -6
- package/dist/src/api/graphql-api/revision/child-branch.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/revision/model/revision.model.d.ts +4 -0
- package/dist/src/api/graphql-api/revision/model/revision.model.js +9 -0
- package/dist/src/api/graphql-api/revision/model/revision.model.js.map +1 -1
- package/dist/src/api/graphql-api/revision/revision.resolver.d.ts +32 -12
- package/dist/src/api/graphql-api/revision/revision.resolver.js +41 -22
- package/dist/src/api/graphql-api/revision/revision.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/revision-changes/input/get-revision-changes.input.d.ts +5 -0
- package/dist/src/api/graphql-api/revision-changes/input/get-revision-changes.input.js +32 -0
- package/dist/src/api/graphql-api/revision-changes/input/get-revision-changes.input.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/input/get-row-changes.input.d.ts +8 -0
- package/dist/src/api/graphql-api/revision-changes/input/get-row-changes.input.js +41 -0
- package/dist/src/api/graphql-api/revision-changes/input/get-row-changes.input.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/input/get-table-changes.input.d.ts +8 -0
- package/dist/src/api/graphql-api/revision-changes/input/get-table-changes.input.js +41 -0
- package/dist/src/api/graphql-api/revision-changes/input/get-table-changes.input.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/input/index.d.ts +5 -0
- package/dist/src/api/graphql-api/revision-changes/input/index.js +22 -0
- package/dist/src/api/graphql-api/revision-changes/input/index.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/input/row-changes-filters.input.d.ts +7 -0
- package/dist/src/api/graphql-api/revision-changes/input/row-changes-filters.input.js +37 -0
- package/dist/src/api/graphql-api/revision-changes/input/row-changes-filters.input.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/input/table-changes-filters.input.d.ts +7 -0
- package/dist/src/api/graphql-api/revision-changes/input/table-changes-filters.input.js +37 -0
- package/dist/src/api/graphql-api/revision-changes/input/table-changes-filters.input.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/model/enums.model.d.ts +26 -0
- package/dist/src/api/graphql-api/revision-changes/model/enums.model.js +39 -0
- package/dist/src/api/graphql-api/revision-changes/model/enums.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/model/field-change.model.d.ts +12 -0
- package/dist/src/api/graphql-api/revision-changes/model/field-change.model.js +56 -0
- package/dist/src/api/graphql-api/revision-changes/model/field-change.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/model/index.d.ts +7 -0
- package/dist/src/api/graphql-api/revision-changes/model/index.js +24 -0
- package/dist/src/api/graphql-api/revision-changes/model/index.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/model/revision-changes.model.d.ts +14 -0
- package/dist/src/api/graphql-api/revision-changes/model/revision-changes.model.js +66 -0
- package/dist/src/api/graphql-api/revision-changes/model/revision-changes.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/model/row-change.model.d.ts +56 -0
- package/dist/src/api/graphql-api/revision-changes/model/row-change.model.js +227 -0
- package/dist/src/api/graphql-api/revision-changes/model/row-change.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/model/schema-change.model.d.ts +34 -0
- package/dist/src/api/graphql-api/revision-changes/model/schema-change.model.js +138 -0
- package/dist/src/api/graphql-api/revision-changes/model/schema-change.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/model/table-change.model.d.ts +23 -0
- package/dist/src/api/graphql-api/revision-changes/model/table-change.model.js +86 -0
- package/dist/src/api/graphql-api/revision-changes/model/table-change.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/model/views-change.model.d.ts +15 -0
- package/dist/src/api/graphql-api/revision-changes/model/views-change.model.js +67 -0
- package/dist/src/api/graphql-api/revision-changes/model/views-change.model.js.map +1 -0
- package/dist/src/api/graphql-api/revision-changes/revision-changes.resolver.d.ts +10 -0
- package/dist/src/api/graphql-api/revision-changes/revision-changes.resolver.js +88 -0
- package/dist/src/api/graphql-api/revision-changes/revision-changes.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/role/model/role.model.d.ts +2 -0
- package/dist/src/api/graphql-api/role/model/role.model.js +5 -0
- package/dist/src/api/graphql-api/role/model/role.model.js.map +1 -1
- package/dist/src/api/graphql-api/role/role.resolver.d.ts +7 -0
- package/dist/src/api/graphql-api/role/role.resolver.js +39 -0
- package/dist/src/api/graphql-api/role/role.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/row/inputs/get-rows.input.d.ts +2 -1
- package/dist/src/api/graphql-api/row/inputs/get-rows.input.js +2 -1
- package/dist/src/api/graphql-api/row/inputs/get-rows.input.js.map +1 -1
- package/dist/src/api/graphql-api/row/inputs/search-rows.input.d.ts +6 -0
- package/dist/src/api/graphql-api/row/inputs/search-rows.input.js +36 -0
- package/dist/src/api/graphql-api/row/inputs/search-rows.input.js.map +1 -0
- package/dist/src/api/graphql-api/row/model/row.model.d.ts +1 -1
- package/dist/src/api/graphql-api/row/model/row.model.js +1 -1
- package/dist/src/api/graphql-api/row/model/row.model.js.map +1 -1
- package/dist/src/api/graphql-api/row/model/search-result.model.d.ts +12 -0
- package/dist/src/api/graphql-api/row/model/search-result.model.js +53 -0
- package/dist/src/api/graphql-api/row/model/search-result.model.js.map +1 -0
- package/dist/src/api/graphql-api/row/model/search-results-connection.model.d.ts +5 -0
- package/dist/src/api/graphql-api/row/model/search-results-connection.model.js +19 -0
- package/dist/src/api/graphql-api/row/model/search-results-connection.model.js.map +1 -0
- package/dist/src/api/graphql-api/row/resolver/search-rows.resolver.d.ts +7 -0
- package/dist/src/api/graphql-api/row/resolver/search-rows.resolver.js +55 -0
- package/dist/src/api/graphql-api/row/resolver/search-rows.resolver.js.map +1 -0
- package/dist/src/api/graphql-api/table/model/table.model.d.ts +3 -1
- package/dist/src/api/graphql-api/table/model/table.model.js +6 -1
- package/dist/src/api/graphql-api/table/model/table.model.js.map +1 -1
- package/dist/src/api/graphql-api/table/table.resolver.d.ts +22 -12
- package/dist/src/api/graphql-api/table/table.resolver.js +40 -24
- package/dist/src/api/graphql-api/table/table.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/user/inputs/index.d.ts +1 -0
- package/dist/src/api/graphql-api/user/inputs/index.js +1 -0
- package/dist/src/api/graphql-api/user/inputs/index.js.map +1 -1
- package/dist/src/api/graphql-api/user/inputs/search-users.input.d.ts +5 -0
- package/dist/src/api/graphql-api/user/inputs/search-users.input.js +32 -0
- package/dist/src/api/graphql-api/user/inputs/search-users.input.js.map +1 -0
- package/dist/src/api/graphql-api/user/model/user.model.d.ts +3 -0
- package/dist/src/api/graphql-api/user/model/user.model.js +5 -0
- package/dist/src/api/graphql-api/user/model/user.model.js.map +1 -1
- package/dist/src/api/graphql-api/user/model/users.connection.d.ts +5 -0
- package/dist/src/api/graphql-api/user/model/users.connection.js +19 -0
- package/dist/src/api/graphql-api/user/model/users.connection.js.map +1 -0
- package/dist/src/api/graphql-api/user/user.resolver.d.ts +17 -9
- package/dist/src/api/graphql-api/user/user.resolver.js +43 -16
- package/dist/src/api/graphql-api/user/user.resolver.js.map +1 -1
- package/dist/src/api/graphql-api/views/input/get-table-views.input.d.ts +4 -0
- package/dist/src/api/graphql-api/views/input/get-table-views.input.js +28 -0
- package/dist/src/api/graphql-api/views/input/get-table-views.input.js.map +1 -0
- package/dist/src/api/graphql-api/views/input/index.d.ts +2 -0
- package/dist/src/api/graphql-api/views/input/index.js +19 -0
- package/dist/src/api/graphql-api/views/input/index.js.map +1 -0
- package/dist/src/api/graphql-api/views/input/update-table-views.input.d.ts +28 -0
- package/dist/src/api/graphql-api/views/input/update-table-views.input.js +114 -0
- package/dist/src/api/graphql-api/views/input/update-table-views.input.js.map +1 -0
- package/dist/src/api/graphql-api/views/model/index.d.ts +4 -0
- package/dist/src/api/graphql-api/views/model/index.js +21 -0
- package/dist/src/api/graphql-api/views/model/index.js.map +1 -0
- package/dist/src/api/graphql-api/views/model/table-views-data.model.d.ts +6 -0
- package/dist/src/api/graphql-api/views/model/table-views-data.model.js +33 -0
- package/dist/src/api/graphql-api/views/model/table-views-data.model.js.map +1 -0
- package/dist/src/api/graphql-api/views/model/view-column.model.d.ts +4 -0
- package/dist/src/api/graphql-api/views/model/view-column.model.js +28 -0
- package/dist/src/api/graphql-api/views/model/view-column.model.js.map +1 -0
- package/dist/src/api/graphql-api/views/model/view-sort.model.d.ts +4 -0
- package/dist/src/api/graphql-api/views/model/view-sort.model.js +28 -0
- package/dist/src/api/graphql-api/views/model/view-sort.model.js.map +1 -0
- package/dist/src/api/graphql-api/views/model/view.model.d.ts +11 -0
- package/dist/src/api/graphql-api/views/model/view.model.js +51 -0
- package/dist/src/api/graphql-api/views/model/view.model.js.map +1 -0
- package/dist/src/api/graphql-api/views/views.resolver.d.ts +10 -0
- package/dist/src/api/graphql-api/views/views.resolver.js +77 -0
- package/dist/src/api/graphql-api/views/views.resolver.js.map +1 -0
- package/dist/src/api/mcp-api/mcp-server.service.d.ts +55 -0
- package/dist/src/api/mcp-api/mcp-server.service.js +202 -0
- package/dist/src/api/mcp-api/mcp-server.service.js.map +1 -0
- package/dist/src/api/mcp-api/mcp-session.service.d.ts +19 -0
- package/dist/src/api/mcp-api/mcp-session.service.js +57 -0
- package/dist/src/api/mcp-api/mcp-session.service.js.map +1 -0
- package/dist/src/api/mcp-api/mcp.controller.d.ts +10 -0
- package/dist/src/api/mcp-api/mcp.controller.js +130 -0
- package/dist/src/api/mcp-api/mcp.controller.js.map +1 -0
- package/dist/src/api/mcp-api/mcp.module.d.ts +2 -0
- package/dist/src/api/mcp-api/mcp.module.js +51 -0
- package/dist/src/api/mcp-api/mcp.module.js.map +1 -0
- package/dist/src/api/mcp-api/resources/file.resource.d.ts +8 -0
- package/dist/src/api/mcp-api/resources/file.resource.js +561 -0
- package/dist/src/api/mcp-api/resources/file.resource.js.map +1 -0
- package/dist/src/api/mcp-api/resources/index.d.ts +4 -0
- package/dist/src/api/mcp-api/resources/index.js +12 -0
- package/dist/src/api/mcp-api/resources/index.js.map +1 -0
- package/dist/src/api/mcp-api/resources/migration.resource.d.ts +6 -0
- package/dist/src/api/mcp-api/resources/migration.resource.js +165 -0
- package/dist/src/api/mcp-api/resources/migration.resource.js.map +1 -0
- package/dist/src/api/mcp-api/resources/query.resource.d.ts +6 -0
- package/dist/src/api/mcp-api/resources/query.resource.js +739 -0
- package/dist/src/api/mcp-api/resources/query.resource.js.map +1 -0
- package/dist/src/api/mcp-api/resources/schema.resource.d.ts +8 -0
- package/dist/src/api/mcp-api/resources/schema.resource.js +547 -0
- package/dist/src/api/mcp-api/resources/schema.resource.js.map +1 -0
- package/dist/src/api/mcp-api/tools/auth.tools.d.ts +12 -0
- package/dist/src/api/mcp-api/tools/auth.tools.js +182 -0
- package/dist/src/api/mcp-api/tools/auth.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/branch.tools.d.ts +8 -0
- package/dist/src/api/mcp-api/tools/branch.tools.js +108 -0
- package/dist/src/api/mcp-api/tools/branch.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/endpoint.tools.d.ts +14 -0
- package/dist/src/api/mcp-api/tools/endpoint.tools.js +354 -0
- package/dist/src/api/mcp-api/tools/endpoint.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/file.tools.d.ts +8 -0
- package/dist/src/api/mcp-api/tools/file.tools.js +75 -0
- package/dist/src/api/mcp-api/tools/file.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/index.d.ts +12 -0
- package/dist/src/api/mcp-api/tools/index.js +28 -0
- package/dist/src/api/mcp-api/tools/index.js.map +1 -0
- package/dist/src/api/mcp-api/tools/migration.tools.d.ts +10 -0
- package/dist/src/api/mcp-api/tools/migration.tools.js +67 -0
- package/dist/src/api/mcp-api/tools/migration.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/organization.tools.d.ts +8 -0
- package/dist/src/api/mcp-api/tools/organization.tools.js +65 -0
- package/dist/src/api/mcp-api/tools/organization.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/project.tools.d.ts +10 -0
- package/dist/src/api/mcp-api/tools/project.tools.js +121 -0
- package/dist/src/api/mcp-api/tools/project.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/revision-changes.tools.d.ts +8 -0
- package/dist/src/api/mcp-api/tools/revision-changes.tools.js +114 -0
- package/dist/src/api/mcp-api/tools/revision-changes.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/revision.tools.d.ts +10 -0
- package/dist/src/api/mcp-api/tools/revision.tools.js +65 -0
- package/dist/src/api/mcp-api/tools/revision.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/row.tools.d.ts +10 -0
- package/dist/src/api/mcp-api/tools/row.tools.js +189 -0
- package/dist/src/api/mcp-api/tools/row.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/table.tools.d.ts +10 -0
- package/dist/src/api/mcp-api/tools/table.tools.js +201 -0
- package/dist/src/api/mcp-api/tools/table.tools.js.map +1 -0
- package/dist/src/api/mcp-api/tools/user.tools.d.ts +8 -0
- package/dist/src/api/mcp-api/tools/user.tools.js +50 -0
- package/dist/src/api/mcp-api/tools/user.tools.js.map +1 -0
- package/dist/src/api/mcp-api/types.d.ts +25 -0
- package/dist/src/api/mcp-api/types.js +3 -0
- package/dist/src/api/mcp-api/types.js.map +1 -0
- package/dist/src/api/rest-api/auth/auth.controller.d.ts +7 -5
- package/dist/src/api/rest-api/auth/auth.controller.js +13 -9
- package/dist/src/api/rest-api/auth/auth.controller.js.map +1 -1
- package/dist/src/api/rest-api/auth/dto/update-password.dto.js +8 -2
- package/dist/src/api/rest-api/auth/dto/update-password.dto.js.map +1 -1
- package/dist/src/api/rest-api/branch/branch-by-name.controller.d.ts +13 -5
- package/dist/src/api/rest-api/branch/branch-by-name.controller.js +20 -24
- package/dist/src/api/rest-api/branch/branch-by-name.controller.js.map +1 -1
- package/dist/src/api/rest-api/branch/dto/get-branch-revisions.dto.d.ts +3 -0
- package/dist/src/api/rest-api/branch/dto/get-branch-revisions.dto.js +18 -0
- package/dist/src/api/rest-api/branch/dto/get-branch-revisions.dto.js.map +1 -1
- package/dist/src/api/rest-api/configuration/configuration.controller.d.ts +3 -3
- package/dist/src/api/rest-api/configuration/configuration.controller.js +5 -6
- package/dist/src/api/rest-api/configuration/configuration.controller.js.map +1 -1
- package/dist/src/api/rest-api/endpoint/endpoint-by-id.controller.d.ts +1 -3
- package/dist/src/api/rest-api/endpoint/endpoint-by-id.controller.js +3 -7
- package/dist/src/api/rest-api/endpoint/endpoint-by-id.controller.js.map +1 -1
- package/dist/src/api/rest-api/endpoint/model/endpoint.model.d.ts +1 -1
- package/dist/src/api/rest-api/endpoint/model/endpoint.model.js +1 -1
- package/dist/src/api/rest-api/endpoint/model/endpoint.model.js.map +1 -1
- package/dist/src/api/rest-api/init-swagger.js +34 -1
- package/dist/src/api/rest-api/init-swagger.js.map +1 -1
- package/dist/src/api/rest-api/organization/organization.controller.d.ts +6 -5
- package/dist/src/api/rest-api/organization/organization.controller.js +29 -21
- package/dist/src/api/rest-api/organization/organization.controller.js.map +1 -1
- package/dist/src/api/rest-api/project/project.controller.d.ts +13 -7
- package/dist/src/api/rest-api/project/project.controller.js +36 -22
- package/dist/src/api/rest-api/project/project.controller.js.map +1 -1
- package/dist/src/api/rest-api/rest-api.module.js +12 -2
- package/dist/src/api/rest-api/rest-api.module.js.map +1 -1
- package/dist/src/api/rest-api/revision/dto/create-endpoint.dto.d.ts +1 -1
- package/dist/src/api/rest-api/revision/dto/create-endpoint.dto.js +1 -1
- package/dist/src/api/rest-api/revision/dto/create-endpoint.dto.js.map +1 -1
- package/dist/src/api/rest-api/revision/dto/create-table.dto.d.ts +1 -1
- package/dist/src/api/rest-api/revision/dto/create-table.dto.js +1 -1
- package/dist/src/api/rest-api/revision/dto/create-table.dto.js.map +1 -1
- package/dist/src/api/rest-api/revision/revision-by-id.controller.d.ts +9 -8
- package/dist/src/api/rest-api/revision/revision-by-id.controller.js +25 -29
- package/dist/src/api/rest-api/revision/revision-by-id.controller.js.map +1 -1
- package/dist/src/api/rest-api/row/dto/patch-row.dto.js +21 -3
- package/dist/src/api/rest-api/row/dto/patch-row.dto.js.map +1 -1
- package/dist/src/api/rest-api/row/dto/update-row.dto.d.ts +1 -1
- package/dist/src/api/rest-api/row/dto/update-row.dto.js +1 -1
- package/dist/src/api/rest-api/row/dto/update-row.dto.js.map +1 -1
- package/dist/src/api/rest-api/row/model/row.model.d.ts +1 -1
- package/dist/src/api/rest-api/row/model/row.model.js +1 -1
- package/dist/src/api/rest-api/row/model/row.model.js.map +1 -1
- package/dist/src/api/rest-api/row/row-by-id.controller.d.ts +3 -3
- package/dist/src/api/rest-api/row/row-by-id.controller.js +17 -18
- package/dist/src/api/rest-api/row/row-by-id.controller.js.map +1 -1
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToBranchModel.d.ts +1 -1
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToEndpointsModel.d.ts +1 -1
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToRevisionModel.d.ts +3 -2
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToRevisionModel.js +8 -5
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToRevisionModel.js.map +1 -1
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToRowModel.d.ts +1 -1
- package/dist/src/api/rest-api/share/utils/transformFromPrismaToTableModel.d.ts +1 -1
- package/dist/src/api/rest-api/table/dto/create-row.dto.d.ts +1 -1
- package/dist/src/api/rest-api/table/dto/create-row.dto.js +1 -1
- package/dist/src/api/rest-api/table/dto/create-row.dto.js.map +1 -1
- package/dist/src/api/rest-api/table/dto/index.d.ts +1 -0
- package/dist/src/api/rest-api/table/dto/index.js +1 -0
- package/dist/src/api/rest-api/table/dto/index.js.map +1 -1
- package/dist/src/api/rest-api/table/dto/remove-rows.dto.d.ts +3 -0
- package/dist/src/api/rest-api/table/dto/remove-rows.dto.js +25 -0
- package/dist/src/api/rest-api/table/dto/remove-rows.dto.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 +1 -0
- package/dist/src/api/rest-api/table/model/index.js.map +1 -1
- package/dist/src/api/rest-api/table/model/remove-rows.response.d.ts +7 -0
- package/dist/src/api/rest-api/table/model/remove-rows.response.js +31 -0
- package/dist/src/api/rest-api/table/model/remove-rows.response.js.map +1 -0
- package/dist/src/api/rest-api/table/table-by-id.controller.d.ts +12 -10
- package/dist/src/api/rest-api/table/table-by-id.controller.js +73 -27
- package/dist/src/api/rest-api/table/table-by-id.controller.js.map +1 -1
- package/dist/src/api/rest-api/user/user.controller.d.ts +4 -5
- package/dist/src/api/rest-api/user/user.controller.js +5 -6
- package/dist/src/api/rest-api/user/user.controller.js.map +1 -1
- package/dist/src/core/core.module.js +4 -0
- package/dist/src/core/core.module.js.map +1 -1
- package/dist/src/features/auth/auth.module.js +7 -1
- package/dist/src/features/auth/auth.module.js.map +1 -1
- package/dist/src/features/auth/auth.service.js +35 -2
- package/dist/src/features/auth/auth.service.js.map +1 -1
- package/dist/src/features/auth/commands/auth-api.service.d.ts +7 -1
- package/dist/src/features/auth/commands/auth-api.service.js +18 -0
- package/dist/src/features/auth/commands/auth-api.service.js.map +1 -1
- package/dist/src/features/auth/commands/handlers/check-project-permission.handler.d.ts +1 -0
- package/dist/src/features/auth/commands/handlers/check-project-permission.handler.js +8 -0
- package/dist/src/features/auth/commands/handlers/check-project-permission.handler.js.map +1 -1
- package/dist/src/features/auth/commands/impl/check-project-permission.command.d.ts +4 -0
- package/dist/src/features/auth/commands/impl/check-project-permission.command.js.map +1 -1
- package/dist/src/features/auth/commands/impl/confirm-email-code.command.d.ts +1 -0
- package/dist/src/features/auth/commands/impl/create-user.command.d.ts +1 -0
- package/dist/src/features/auth/commands/impl/login-github.command.d.ts +1 -0
- package/dist/src/features/auth/commands/impl/login-google.command.d.ts +1 -0
- package/dist/src/features/auth/commands/impl/login.command.d.ts +1 -0
- package/dist/src/features/auth/commands/impl/sign-up.command.d.ts +1 -0
- package/dist/src/features/auth/guards/base-persmission.guard.d.ts +1 -3
- package/dist/src/features/auth/guards/base-persmission.guard.js +1 -4
- package/dist/src/features/auth/guards/base-persmission.guard.js.map +1 -1
- package/dist/src/features/auth/guards/project.guard.d.ts +14 -0
- package/dist/src/features/auth/guards/project.guard.js +7 -0
- package/dist/src/features/auth/guards/project.guard.js.map +1 -1
- package/dist/src/features/branch/branch-api.service.d.ts +85 -0
- package/dist/src/features/branch/branch-api.service.js +66 -0
- package/dist/src/features/branch/branch-api.service.js.map +1 -0
- package/dist/src/features/branch/branch.module.js +7 -1
- package/dist/src/features/branch/branch.module.js.map +1 -1
- package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.d.ts +4 -2
- package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.js +1 -1
- package/dist/src/features/branch/commands/handlers/create-branch-by-revision-id.handler.js.map +1 -1
- package/dist/src/features/branch/commands/impl/api-create-branch-by-revision-id.command.d.ts +1 -0
- package/dist/src/features/branch/quieries/handlers/get-branch-by-id.handler.d.ts +6 -4
- package/dist/src/features/branch/quieries/handlers/get-branch.handler.js +1 -1
- package/dist/src/features/branch/quieries/handlers/get-branch.handler.js.map +1 -1
- package/dist/src/features/branch/quieries/handlers/get-branches.handler.js +1 -1
- package/dist/src/features/branch/quieries/handlers/get-branches.handler.js.map +1 -1
- package/dist/src/features/branch/quieries/handlers/get-project-by-branch.handler.d.ts +5 -3
- package/dist/src/features/branch/quieries/handlers/get-revisions-by-branch-id.handler.js +10 -5
- package/dist/src/features/branch/quieries/handlers/get-revisions-by-branch-id.handler.js.map +1 -1
- package/dist/src/features/branch/quieries/handlers/get-touched-by-branch-id.handler.js +1 -1
- package/dist/src/features/branch/quieries/handlers/get-touched-by-branch-id.handler.js.map +1 -1
- package/dist/src/features/branch/quieries/impl/get-branch-by-id.query.d.ts +3 -0
- package/dist/src/features/branch/quieries/impl/get-branch-by-id.query.js.map +1 -1
- package/dist/src/features/branch/quieries/impl/get-branch.query.d.ts +1 -0
- package/dist/src/features/branch/quieries/impl/get-branches.query.d.ts +1 -1
- package/dist/src/features/branch/quieries/impl/get-revisions-by-branch-id.query.d.ts +8 -0
- package/dist/src/features/branch/quieries/impl/get-revisions-by-branch-id.query.js.map +1 -1
- package/dist/src/features/branch/quieries/impl/resolve-parent-branch-by-branch.query.d.ts +1 -0
- package/dist/src/features/branch/quieries/types/get-branch-by-id.types.d.ts +1 -1
- package/dist/src/features/branch/quieries/types/get-branch.types.d.ts +1 -1
- package/dist/src/features/branch/quieries/types/get-draft-revision.types.d.ts +1 -1
- package/dist/src/features/branch/quieries/types/get-head-revision.types.d.ts +1 -1
- package/dist/src/features/branch/quieries/types/get-start-revision.types.d.ts +1 -1
- package/dist/src/features/draft/commands/handlers/__tests__/utils.d.ts +2 -0
- package/dist/src/features/draft/commands/handlers/__tests__/utils.js +13 -0
- package/dist/src/features/draft/commands/handlers/__tests__/utils.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-create-revision.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-create-revision.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-create-row.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-create-row.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-create-table.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-create-table.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-patch-row.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-patch-row.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-remove-row.handler.js +3 -2
- package/dist/src/features/draft/commands/handlers/api-remove-row.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-remove-rows.handler.d.ts +13 -0
- package/dist/src/features/draft/commands/handlers/api-remove-rows.handler.js +59 -0
- package/dist/src/features/draft/commands/handlers/api-remove-rows.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/api-remove-table.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-remove-table.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-rename-row.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-rename-row.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-rename-table.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-rename-table.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-revert-changes.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-revert-changes.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-update-row.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-update-row.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-update-table.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-update-table.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/api-upload-file.handler.js +1 -1
- package/dist/src/features/draft/commands/handlers/api-upload-file.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/create-row.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/create-table.handler.d.ts +4 -1
- package/dist/src/features/draft/commands/handlers/create-table.handler.js +21 -2
- package/dist/src/features/draft/commands/handlers/create-table.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/index.d.ts +3 -2
- package/dist/src/features/draft/commands/handlers/index.js +4 -2
- package/dist/src/features/draft/commands/handlers/index.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/migration/base-migration.handler.d.ts +1 -1
- package/dist/src/features/draft/commands/handlers/patch-row.handler.js +11 -1
- package/dist/src/features/draft/commands/handlers/patch-row.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/{remove-row.handler.d.ts → remove-rows.handler.d.ts} +7 -9
- package/dist/src/features/draft/commands/handlers/{remove-row.handler.js → remove-rows.handler.js} +30 -29
- package/dist/src/features/draft/commands/handlers/remove-rows.handler.js.map +1 -0
- package/dist/src/features/draft/commands/handlers/remove-table.handler.d.ts +1 -0
- package/dist/src/features/draft/commands/handlers/remove-table.handler.js +16 -3
- package/dist/src/features/draft/commands/handlers/remove-table.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/transactional/rename-schema.handler.d.ts +1 -0
- package/dist/src/features/draft/commands/handlers/transactional/rename-schema.handler.js +13 -0
- package/dist/src/features/draft/commands/handlers/transactional/rename-schema.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.d.ts +16 -5
- package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.js +142 -21
- package/dist/src/features/draft/commands/handlers/transactional/validate-data.handler.js.map +1 -1
- package/dist/src/features/draft/commands/handlers/update-table.handler.d.ts +5 -1
- package/dist/src/features/draft/commands/handlers/update-table.handler.js +61 -3
- package/dist/src/features/draft/commands/handlers/update-table.handler.js.map +1 -1
- package/dist/src/features/draft/commands/impl/api-create-revision.command.d.ts +1 -0
- package/dist/src/features/draft/commands/impl/api-create-row.command.d.ts +2 -1
- package/dist/src/features/draft/commands/impl/api-create-table.command.d.ts +1 -1
- package/dist/src/features/draft/commands/impl/api-remove-row.command.d.ts +1 -0
- package/dist/src/features/draft/commands/impl/api-remove-rows.command.d.ts +13 -0
- package/dist/src/features/draft/commands/impl/api-remove-rows.command.js +10 -0
- package/dist/src/features/draft/commands/impl/api-remove-rows.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/api-rename-row.command.d.ts +1 -0
- package/dist/src/features/draft/commands/impl/api-revert-changes.command.d.ts +1 -0
- package/dist/src/features/draft/commands/impl/api-update-row.command.d.ts +2 -1
- package/dist/src/features/draft/commands/impl/create-row.command.d.ts +1 -1
- package/dist/src/features/draft/commands/impl/create-table.command.d.ts +1 -1
- package/dist/src/features/draft/commands/impl/{remove-row.command.d.ts → remove-rows.command.d.ts} +4 -4
- package/dist/src/features/draft/commands/impl/remove-rows.command.js +10 -0
- package/dist/src/features/draft/commands/impl/remove-rows.command.js.map +1 -0
- package/dist/src/features/draft/commands/impl/transactional/internal-create-row.command.d.ts +1 -1
- package/dist/src/features/draft/commands/impl/transactional/internal-update-row.command.d.ts +1 -1
- package/dist/src/features/draft/commands/impl/transactional/internal-update-rows.command.d.ts +1 -1
- package/dist/src/features/draft/commands/impl/transactional/validate-data.command.d.ts +1 -1
- package/dist/src/features/draft/commands/impl/transactional/validate-schema.command.d.ts +1 -1
- package/dist/src/features/draft/commands/impl/update-row.command.d.ts +1 -1
- package/dist/src/features/draft/commands/types/api-create-table.handler.types.d.ts +1 -1
- package/dist/src/features/draft/commands/types/api-remove-rows.handler.types.d.ts +7 -0
- package/dist/src/features/draft/commands/types/api-remove-rows.handler.types.js +3 -0
- package/dist/src/features/draft/commands/types/api-remove-rows.handler.types.js.map +1 -0
- package/dist/src/features/draft/commands/types/{remove-row.handler.types.d.ts → remove-rows.handler.types.d.ts} +1 -1
- package/dist/src/features/draft/commands/types/remove-rows.handler.types.js +3 -0
- package/dist/src/features/draft/commands/types/remove-rows.handler.types.js.map +1 -0
- package/dist/src/features/draft/draft-api.service.d.ts +31 -0
- package/dist/src/features/draft/draft-api.service.js +32 -0
- package/dist/src/features/draft/draft-api.service.js.map +1 -1
- package/dist/src/features/draft/draft.handler.d.ts +1 -1
- package/dist/src/features/draft/draft.module.js +1 -1
- package/dist/src/features/draft/draft.module.js.map +1 -1
- package/dist/src/features/draft/draft.transactional.commands.d.ts +1 -1
- package/dist/src/features/endpoint/commands/impl/api-create-endpoint.command.d.ts +3 -1
- package/dist/src/features/endpoint/commands/impl/create-endpoint.command.d.ts +1 -1
- package/dist/src/features/endpoint/commands/impl/delete-endpoint.command.d.ts +1 -0
- package/dist/src/features/endpoint/queries/endpoint-api.service.d.ts +16 -3
- package/dist/src/features/endpoint/queries/endpoint-api.service.js +19 -4
- package/dist/src/features/endpoint/queries/endpoint-api.service.js.map +1 -1
- package/dist/src/features/endpoint/queries/handlers/get-created-endpoint.handler.d.ts +5 -3
- package/dist/src/features/endpoint/queries/handlers/get-endpoint-relatives.handler.d.ts +4 -4
- package/dist/src/features/endpoint/queries/handlers/get-project-endpoints.handler.d.ts +12 -0
- package/dist/src/features/endpoint/queries/handlers/get-project-endpoints.handler.js +77 -0
- package/dist/src/features/endpoint/queries/handlers/get-project-endpoints.handler.js.map +1 -0
- package/dist/src/features/endpoint/queries/handlers/get-revision-by-endpoint-id.handler.d.ts +4 -2
- package/dist/src/features/endpoint/queries/handlers/index.d.ts +2 -1
- package/dist/src/features/endpoint/queries/handlers/index.js +2 -0
- package/dist/src/features/endpoint/queries/handlers/index.js.map +1 -1
- package/dist/src/features/endpoint/queries/impl/get-endpoint-relatives.query.d.ts +1 -1
- package/dist/src/features/endpoint/queries/impl/get-project-endpoints.query.d.ts +20 -0
- package/dist/src/features/endpoint/queries/impl/get-project-endpoints.query.js +10 -0
- package/dist/src/features/endpoint/queries/impl/get-project-endpoints.query.js.map +1 -0
- package/dist/src/features/endpoint/queries/impl/index.d.ts +1 -0
- package/dist/src/features/endpoint/queries/impl/index.js +1 -0
- package/dist/src/features/endpoint/queries/impl/index.js.map +1 -1
- package/dist/src/features/organization/commands/impl/add-user-to-organization.command.d.ts +1 -0
- package/dist/src/features/organization/commands/impl/remove-user-from-organization.command.d.ts +1 -0
- package/dist/src/features/organization/organization-api.service.d.ts +16 -0
- package/dist/src/features/organization/organization-api.service.js +44 -0
- package/dist/src/features/organization/organization-api.service.js.map +1 -0
- package/dist/src/features/organization/organization.module.js +7 -1
- package/dist/src/features/organization/organization.module.js.map +1 -1
- package/dist/src/features/organization/queries/handlers/get-organization.handler.d.ts +11 -0
- package/dist/src/features/organization/queries/handlers/get-organization.handler.js +33 -0
- package/dist/src/features/organization/queries/handlers/get-organization.handler.js.map +1 -0
- package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.d.ts +1 -1
- package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.js +3 -2
- package/dist/src/features/organization/queries/handlers/get-projects-by-organization-id.handler.js.map +1 -1
- package/dist/src/features/organization/queries/handlers/get-users-organization.handler.d.ts +3 -3
- package/dist/src/features/organization/queries/handlers/index.d.ts +1 -0
- package/dist/src/features/organization/queries/handlers/index.js +1 -0
- package/dist/src/features/organization/queries/handlers/index.js.map +1 -1
- package/dist/src/features/organization/queries/impl/get-organization.query.d.ts +11 -0
- package/dist/src/features/organization/queries/impl/get-organization.query.js +10 -0
- package/dist/src/features/organization/queries/impl/get-organization.query.js.map +1 -0
- package/dist/src/features/organization/queries/impl/get-projects-by-organization-id.query.d.ts +1 -1
- package/dist/src/features/organization/queries/impl/get-users-organization.query.d.ts +2 -1
- package/dist/src/features/organization/queries/impl/index.d.ts +1 -0
- package/dist/src/features/organization/queries/impl/index.js +1 -0
- package/dist/src/features/organization/queries/impl/index.js.map +1 -1
- package/dist/src/features/organization/queries/index.d.ts +2 -1
- package/dist/src/features/organization/queries/index.js +2 -0
- package/dist/src/features/organization/queries/index.js.map +1 -1
- package/dist/src/features/plugin/file/file-value.store.js +7 -4
- package/dist/src/features/plugin/file/file-value.store.js.map +1 -1
- package/dist/src/features/plugin/plugin.list.service.js +1 -9
- package/dist/src/features/plugin/plugin.list.service.js.map +1 -1
- package/dist/src/features/plugin/plugin.service.d.ts +1 -1
- package/dist/src/features/plugin/types.d.ts +1 -1
- package/dist/src/features/project/commands/handlers/create-project.handler.js +1 -1
- package/dist/src/features/project/commands/handlers/create-project.handler.js.map +1 -1
- package/dist/src/features/project/commands/handlers/delete-project.handler.js +1 -1
- package/dist/src/features/project/commands/handlers/delete-project.handler.js.map +1 -1
- package/dist/src/features/project/commands/handlers/index.d.ts +2 -1
- package/dist/src/features/project/commands/handlers/index.js +2 -0
- package/dist/src/features/project/commands/handlers/index.js.map +1 -1
- package/dist/src/features/project/commands/handlers/update-project.handler.js +1 -1
- package/dist/src/features/project/commands/handlers/update-project.handler.js.map +1 -1
- package/dist/src/features/project/commands/handlers/update-user-project-role.handler.d.ts +9 -0
- package/dist/src/features/project/commands/handlers/update-user-project-role.handler.js +65 -0
- package/dist/src/features/project/commands/handlers/update-user-project-role.handler.js.map +1 -0
- package/dist/src/features/project/commands/impl/add-user-to-project.command.d.ts +1 -0
- package/dist/src/features/project/commands/impl/api-create-project.command.d.ts +1 -0
- package/dist/src/features/project/commands/impl/index.d.ts +1 -0
- package/dist/src/features/project/commands/impl/index.js +1 -0
- package/dist/src/features/project/commands/impl/index.js.map +1 -1
- package/dist/src/features/project/commands/impl/remove-user-from-project.command.d.ts +1 -0
- package/dist/src/features/project/commands/impl/update-project.command.d.ts +2 -0
- package/dist/src/features/project/commands/impl/update-user-project-role.command.d.ts +16 -0
- package/dist/src/features/project/commands/impl/update-user-project-role.command.js +10 -0
- package/dist/src/features/project/commands/impl/update-user-project-role.command.js.map +1 -0
- package/dist/src/features/project/project-api.service.d.ts +38 -0
- package/dist/src/features/project/project-api.service.js +59 -0
- package/dist/src/features/project/project-api.service.js.map +1 -0
- package/dist/src/features/project/project.module.js +3 -0
- package/dist/src/features/project/project.module.js.map +1 -1
- package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.d.ts +2 -2
- package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.js +1 -1
- package/dist/src/features/project/queries/handlers/get-all-branches-by-project.handler.js.map +1 -1
- package/dist/src/features/project/queries/handlers/get-project-by-id.handler.d.ts +1 -1
- package/dist/src/features/project/queries/handlers/get-project.handler.d.ts +1 -1
- package/dist/src/features/project/queries/handlers/get-project.handler.js +1 -1
- package/dist/src/features/project/queries/handlers/get-project.handler.js.map +1 -1
- package/dist/src/features/project/queries/handlers/get-root-branch-by-project.handler.d.ts +2 -2
- package/dist/src/features/project/queries/handlers/get-users-project.handler.d.ts +3 -3
- package/dist/src/features/project/queries/impl/get-all-branches-by-project.query.d.ts +4 -0
- package/dist/src/features/project/queries/impl/get-all-branches-by-project.query.js.map +1 -1
- package/dist/src/features/project/queries/impl/get-project-by-id.query.d.ts +1 -1
- package/dist/src/features/project/queries/impl/get-project.query.d.ts +1 -1
- package/dist/src/features/project/queries/impl/get-root-branch-by-project.query.d.ts +3 -0
- package/dist/src/features/project/queries/impl/get-root-branch-by-project.query.js.map +1 -1
- package/dist/src/features/project/queries/impl/get-users-project.query.d.ts +2 -1
- package/dist/src/features/revision/internal-revisions-api.service.d.ts +14 -1
- package/dist/src/features/revision/internal-revisions-api.service.js +21 -0
- package/dist/src/features/revision/internal-revisions-api.service.js.map +1 -1
- package/dist/src/features/revision/queries/commands/get-children-by-revision.handler.d.ts +1 -1
- package/dist/src/features/revision/queries/commands/get-migrations.handler.js +1 -1
- package/dist/src/features/revision/queries/commands/get-migrations.handler.js.map +1 -1
- package/dist/src/features/revision/queries/commands/get-revision.handler.d.ts +4 -2
- package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.d.ts +1 -1
- package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.js +1 -1
- package/dist/src/features/revision/queries/commands/get-tables-by-revision-id.handler.js.map +1 -1
- package/dist/src/features/revision/queries/commands/resolve-branch-by-revision.handler.d.ts +6 -4
- package/dist/src/features/revision/queries/commands/resolve-parent-by-revision.handler.d.ts +4 -2
- package/dist/src/features/revision/queries/impl/get-children-by-revision.query.d.ts +3 -0
- package/dist/src/features/revision/queries/impl/get-children-by-revision.query.js.map +1 -1
- package/dist/src/features/revision/queries/impl/get-endpoints-by-revision-id.query.d.ts +3 -0
- package/dist/src/features/revision/queries/impl/get-endpoints-by-revision-id.query.js.map +1 -1
- package/dist/src/features/revision/queries/impl/get-revision.query.d.ts +1 -1
- package/dist/src/features/revision/queries/impl/get-tables-by-revision-id.query.d.ts +3 -0
- package/dist/src/features/revision/queries/impl/get-tables-by-revision-id.query.js.map +1 -1
- package/dist/src/features/revision/queries/impl/index.d.ts +1 -0
- package/dist/src/features/revision/queries/impl/index.js +1 -0
- package/dist/src/features/revision/queries/impl/index.js.map +1 -1
- package/dist/src/features/revision/queries/impl/resolve-branch-by-revision.query.d.ts +3 -0
- package/dist/src/features/revision/queries/impl/resolve-branch-by-revision.query.js.map +1 -1
- package/dist/src/features/revision/queries/impl/resolve-child-branches-by-revision.query.d.ts +9 -0
- package/dist/src/features/revision/queries/impl/resolve-child-by-revision.query.d.ts +3 -0
- package/dist/src/features/revision/queries/impl/resolve-child-by-revision.query.js.map +1 -1
- package/dist/src/features/revision/queries/impl/resolve-parent-by-revision.query.d.ts +3 -0
- package/dist/src/features/revision/queries/impl/resolve-parent-by-revision.query.js.map +1 -1
- package/dist/src/features/revision/queries/types/get-endpoints-by-revision-id.d.ts +1 -1
- package/dist/src/features/revision/queries/types/get-tables-by-revision-id.d.ts +1 -1
- package/dist/src/features/revision/revisions-api.service.d.ts +14 -1
- package/dist/src/features/revision/revisions-api.service.js +21 -0
- package/dist/src/features/revision/revisions-api.service.js.map +1 -1
- package/dist/src/features/revision-changes/mappers/row-change.mapper.d.ts +13 -0
- package/dist/src/features/revision-changes/mappers/row-change.mapper.js +111 -0
- package/dist/src/features/revision-changes/mappers/row-change.mapper.js.map +1 -0
- package/dist/src/features/revision-changes/mappers/table-change.mapper.d.ts +19 -0
- package/dist/src/features/revision-changes/mappers/table-change.mapper.js +74 -0
- package/dist/src/features/revision-changes/mappers/table-change.mapper.js.map +1 -0
- package/dist/src/features/revision-changes/queries/handlers/get-revision-changes.handler.d.ts +14 -0
- package/dist/src/features/revision-changes/queries/handlers/get-revision-changes.handler.js +68 -0
- package/dist/src/features/revision-changes/queries/handlers/get-revision-changes.handler.js.map +1 -0
- package/dist/src/features/revision-changes/queries/handlers/get-row-changes.handler.d.ts +24 -0
- package/dist/src/features/revision-changes/queries/handlers/get-row-changes.handler.js +177 -0
- package/dist/src/features/revision-changes/queries/handlers/get-row-changes.handler.js.map +1 -0
- package/dist/src/features/revision-changes/queries/handlers/get-table-changes.handler.d.ts +19 -0
- package/dist/src/features/revision-changes/queries/handlers/get-table-changes.handler.js +84 -0
- package/dist/src/features/revision-changes/queries/handlers/get-table-changes.handler.js.map +1 -0
- package/dist/src/features/revision-changes/queries/handlers/index.d.ts +3 -0
- package/dist/src/features/revision-changes/queries/handlers/index.js +20 -0
- package/dist/src/features/revision-changes/queries/handlers/index.js.map +1 -0
- package/dist/src/features/revision-changes/queries/impl/get-revision-changes.query.d.ts +15 -0
- package/dist/src/features/revision-changes/queries/impl/get-revision-changes.query.js +10 -0
- package/dist/src/features/revision-changes/queries/impl/get-revision-changes.query.js.map +1 -0
- package/dist/src/features/revision-changes/queries/impl/get-row-changes.query.d.ts +20 -0
- package/dist/src/features/revision-changes/queries/impl/get-row-changes.query.js +10 -0
- package/dist/src/features/revision-changes/queries/impl/get-row-changes.query.js.map +1 -0
- package/dist/src/features/revision-changes/queries/impl/get-table-changes.query.d.ts +20 -0
- package/dist/src/features/revision-changes/queries/impl/get-table-changes.query.js +10 -0
- package/dist/src/features/revision-changes/queries/impl/get-table-changes.query.js.map +1 -0
- package/dist/src/features/revision-changes/queries/impl/index.d.ts +3 -0
- package/dist/src/features/revision-changes/queries/impl/index.js +20 -0
- package/dist/src/features/revision-changes/queries/impl/index.js.map +1 -0
- package/dist/src/features/revision-changes/revision-changes-api.service.d.ts +9 -0
- package/dist/src/features/revision-changes/revision-changes-api.service.js +35 -0
- package/dist/src/features/revision-changes/revision-changes-api.service.js.map +1 -0
- package/dist/src/features/revision-changes/revision-changes.module.d.ts +2 -0
- package/dist/src/features/revision-changes/revision-changes.module.js +47 -0
- package/dist/src/features/revision-changes/revision-changes.module.js.map +1 -0
- package/dist/src/features/revision-changes/services/index.d.ts +4 -0
- package/dist/src/features/revision-changes/services/index.js +21 -0
- package/dist/src/features/revision-changes/services/index.js.map +1 -0
- package/dist/src/features/revision-changes/services/revision-comparison.service.d.ts +12 -0
- package/dist/src/features/revision-changes/services/revision-comparison.service.js +99 -0
- package/dist/src/features/revision-changes/services/revision-comparison.service.js.map +1 -0
- package/dist/src/features/revision-changes/services/row-diff.service.d.ts +9 -0
- package/dist/src/features/revision-changes/services/row-diff.service.js +140 -0
- package/dist/src/features/revision-changes/services/row-diff.service.js.map +1 -0
- package/dist/src/features/revision-changes/services/schema-impact.service.d.ts +11 -0
- package/dist/src/features/revision-changes/services/schema-impact.service.js +136 -0
- package/dist/src/features/revision-changes/services/schema-impact.service.js.map +1 -0
- package/dist/src/features/revision-changes/services/views-comparison.service.d.ts +12 -0
- package/dist/src/features/revision-changes/services/views-comparison.service.js +209 -0
- package/dist/src/features/revision-changes/services/views-comparison.service.js.map +1 -0
- package/dist/src/features/revision-changes/types/enums.d.ts +26 -0
- package/dist/src/features/revision-changes/types/enums.js +34 -0
- package/dist/src/features/revision-changes/types/enums.js.map +1 -0
- package/dist/src/features/revision-changes/types/field-change.types.d.ts +12 -0
- package/dist/src/features/revision-changes/types/field-change.types.js +3 -0
- package/dist/src/features/revision-changes/types/field-change.types.js.map +1 -0
- package/dist/src/features/revision-changes/types/filters.types.d.ts +13 -0
- package/dist/src/features/revision-changes/types/filters.types.js +3 -0
- package/dist/src/features/revision-changes/types/filters.types.js.map +1 -0
- package/dist/src/features/revision-changes/types/index.d.ts +8 -0
- package/dist/src/features/revision-changes/types/index.js +25 -0
- package/dist/src/features/revision-changes/types/index.js.map +1 -0
- package/dist/src/features/revision-changes/types/revision-changes.types.d.ts +14 -0
- package/dist/src/features/revision-changes/types/revision-changes.types.js +3 -0
- package/dist/src/features/revision-changes/types/revision-changes.types.js.map +1 -0
- package/dist/src/features/revision-changes/types/row-change.types.d.ts +31 -0
- package/dist/src/features/revision-changes/types/row-change.types.js +11 -0
- package/dist/src/features/revision-changes/types/row-change.types.js.map +1 -0
- package/dist/src/features/revision-changes/types/schema-change.types.d.ts +40 -0
- package/dist/src/features/revision-changes/types/schema-change.types.js +11 -0
- package/dist/src/features/revision-changes/types/schema-change.types.js.map +1 -0
- package/dist/src/features/revision-changes/types/table-change.types.d.ts +19 -0
- package/dist/src/features/revision-changes/types/table-change.types.js +3 -0
- package/dist/src/features/revision-changes/types/table-change.types.js.map +1 -0
- package/dist/src/features/revision-changes/types/views-change.types.d.ts +15 -0
- package/dist/src/features/revision-changes/types/views-change.types.js +3 -0
- package/dist/src/features/revision-changes/types/views-change.types.js.map +1 -0
- package/dist/src/features/revision-changes/utils/empty-responses.d.ts +4 -0
- package/dist/src/features/revision-changes/utils/empty-responses.js +36 -0
- package/dist/src/features/revision-changes/utils/empty-responses.js.map +1 -0
- package/dist/src/features/role/queries/handlers/get-role-permissions.handler.d.ts +14 -0
- package/dist/src/features/role/queries/handlers/get-role-permissions.handler.js +37 -0
- package/dist/src/features/role/queries/handlers/get-role-permissions.handler.js.map +1 -0
- package/dist/src/features/role/queries/handlers/get-role.handler.d.ts +14 -0
- package/dist/src/features/role/queries/handlers/get-role.handler.js +33 -0
- package/dist/src/features/role/queries/handlers/get-role.handler.js.map +1 -0
- package/dist/src/features/role/queries/handlers/index.d.ts +2 -0
- package/dist/src/features/role/queries/handlers/index.js +19 -0
- package/dist/src/features/role/queries/handlers/index.js.map +1 -0
- package/dist/src/features/role/queries/impl/get-role-permissions.query.d.ts +11 -0
- package/dist/src/features/role/queries/impl/get-role-permissions.query.js +10 -0
- package/dist/src/features/role/queries/impl/get-role-permissions.query.js.map +1 -0
- package/dist/src/features/role/queries/impl/get-role.query.d.ts +11 -0
- package/dist/src/features/role/queries/impl/get-role.query.js +10 -0
- package/dist/src/features/role/queries/impl/get-role.query.js.map +1 -0
- package/dist/src/features/role/queries/impl/index.d.ts +2 -0
- package/dist/src/features/role/queries/impl/index.js +19 -0
- package/dist/src/features/role/queries/impl/index.js.map +1 -0
- package/dist/src/features/role/queries/index.d.ts +3 -0
- package/dist/src/features/role/queries/index.js +7 -0
- package/dist/src/features/role/queries/index.js.map +1 -0
- package/dist/src/features/role/role-api.service.d.ts +14 -0
- package/dist/src/features/role/role-api.service.js +32 -0
- package/dist/src/features/role/role-api.service.js.map +1 -0
- package/dist/src/features/role/role.module.d.ts +2 -0
- package/dist/src/features/role/role.module.js +25 -0
- package/dist/src/features/role/role.module.js.map +1 -0
- package/dist/src/features/row/internal-row-api.service.d.ts +2 -1
- package/dist/src/features/row/internal-row-api.service.js +3 -0
- package/dist/src/features/row/internal-row-api.service.js.map +1 -1
- package/dist/src/features/row/queries/handlers/get-row-by-id.handler.d.ts +4 -4
- package/dist/src/features/row/queries/handlers/get-row.handler.js +1 -1
- package/dist/src/features/row/queries/handlers/get-row.handler.js.map +1 -1
- package/dist/src/features/row/queries/handlers/get-rows.handler.d.ts +8 -5
- package/dist/src/features/row/queries/handlers/get-rows.handler.js +18 -4
- package/dist/src/features/row/queries/handlers/get-rows.handler.js.map +1 -1
- package/dist/src/features/row/queries/handlers/index.d.ts +2 -1
- package/dist/src/features/row/queries/handlers/index.js +2 -0
- package/dist/src/features/row/queries/handlers/index.js.map +1 -1
- package/dist/src/features/row/queries/handlers/resolve-row-count-foreign-keys-by.handler.js +1 -1
- package/dist/src/features/row/queries/handlers/resolve-row-count-foreign-keys-by.handler.js.map +1 -1
- package/dist/src/features/row/queries/handlers/resolve-row-count-foreign-keys-to.handler.js +1 -1
- package/dist/src/features/row/queries/handlers/resolve-row-count-foreign-keys-to.handler.js.map +1 -1
- package/dist/src/features/row/queries/handlers/resolve-row-foreign-keys-by.handler.d.ts +4 -5
- package/dist/src/features/row/queries/handlers/resolve-row-foreign-keys-by.handler.js +1 -1
- package/dist/src/features/row/queries/handlers/resolve-row-foreign-keys-by.handler.js.map +1 -1
- package/dist/src/features/row/queries/handlers/resolve-row-foreign-keys-to.handler.d.ts +4 -5
- package/dist/src/features/row/queries/handlers/resolve-row-foreign-keys-to.handler.js +1 -1
- package/dist/src/features/row/queries/handlers/resolve-row-foreign-keys-to.handler.js.map +1 -1
- package/dist/src/features/row/queries/handlers/search-rows.handler.d.ts +14 -0
- package/dist/src/features/row/queries/handlers/search-rows.handler.js +79 -0
- package/dist/src/features/row/queries/handlers/search-rows.handler.js.map +1 -0
- package/dist/src/features/row/queries/impl/get-rows.query.d.ts +1 -1
- package/dist/src/features/row/queries/impl/index.d.ts +1 -0
- package/dist/src/features/row/queries/impl/index.js +1 -0
- package/dist/src/features/row/queries/impl/index.js.map +1 -1
- package/dist/src/features/row/queries/impl/search-rows.query.d.ts +28 -0
- package/dist/src/features/row/queries/impl/search-rows.query.js +10 -0
- package/dist/src/features/row/queries/impl/search-rows.query.js.map +1 -0
- package/dist/src/features/row/row-api.service.d.ts +2 -1
- package/dist/src/features/row/row-api.service.js +3 -0
- package/dist/src/features/row/row-api.service.js.map +1 -1
- package/dist/src/features/row/row.module.js +8 -2
- package/dist/src/features/row/row.module.js.map +1 -1
- package/dist/src/features/row/services/index.d.ts +1 -0
- package/dist/src/features/row/services/index.js +6 -0
- package/dist/src/features/row/services/index.js.map +1 -0
- package/dist/src/features/row/services/system-column-mapping.service.d.ts +17 -0
- package/dist/src/features/row/services/system-column-mapping.service.js +148 -0
- package/dist/src/features/row/services/system-column-mapping.service.js.map +1 -0
- package/dist/src/features/row/utils/extract-matches-fallback.d.ts +3 -0
- package/dist/src/features/row/utils/extract-matches-fallback.js +87 -0
- package/dist/src/features/row/utils/extract-matches-fallback.js.map +1 -0
- package/dist/src/features/row/utils/get-rows-sql.d.ts +1 -1
- package/dist/src/features/row/utils/get-rows-sql.js +3 -3
- package/dist/src/features/row/utils/get-rows-sql.js.map +1 -1
- package/dist/src/features/row/utils/search-rows-sql.d.ts +16 -0
- package/dist/src/features/row/utils/search-rows-sql.js +111 -0
- package/dist/src/features/row/utils/search-rows-sql.js.map +1 -0
- package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.d.ts +1 -0
- package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.js +7 -1
- package/dist/src/features/share/commands/handlers/transactional/move-endpoints.handler.js.map +1 -1
- package/dist/src/features/share/commands/utils/getRevisionCursorPagination.d.ts +1 -0
- package/dist/src/features/share/commands/utils/getRevisionCursorPagination.js +2 -2
- package/dist/src/features/share/commands/utils/getRevisionCursorPagination.js.map +1 -1
- package/dist/src/features/share/diff.service.d.ts +19 -2
- package/dist/src/features/share/diff.service.js +36 -6
- package/dist/src/features/share/diff.service.js.map +1 -1
- package/dist/src/features/share/exceptions/index.d.ts +1 -0
- package/dist/src/features/share/exceptions/index.js +18 -0
- package/dist/src/features/share/exceptions/index.js.map +1 -0
- package/dist/src/features/share/exceptions/validation.exception.d.ts +46 -0
- package/dist/src/features/share/exceptions/validation.exception.js +100 -0
- package/dist/src/features/share/exceptions/validation.exception.js.map +1 -0
- package/dist/src/features/share/foreign-keys.service.d.ts +9 -9
- package/dist/src/features/share/foreign-keys.service.js +30 -1
- package/dist/src/features/share/foreign-keys.service.js.map +1 -1
- package/dist/src/features/share/json-schema-validator.service.d.ts +1 -1
- package/dist/src/features/share/json-schema-validator.service.js +6 -3
- package/dist/src/features/share/json-schema-validator.service.js.map +1 -1
- package/dist/src/features/share/queries/handlers/index.d.ts +2 -1
- package/dist/src/features/share/queries/handlers/index.js +2 -0
- package/dist/src/features/share/queries/handlers/index.js.map +1 -1
- package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table.handler.d.ts +10 -0
- package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table.handler.js +41 -0
- package/dist/src/features/share/queries/handlers/transactional/find-rows-in-table.handler.js.map +1 -0
- package/dist/src/features/share/queries/handlers/transactional/get-table-schema.handler.js +9 -1
- package/dist/src/features/share/queries/handlers/transactional/get-table-schema.handler.js.map +1 -1
- package/dist/src/features/share/queries/impl/index.d.ts +1 -0
- package/dist/src/features/share/queries/impl/index.js +1 -0
- package/dist/src/features/share/queries/impl/index.js.map +1 -1
- package/dist/src/features/share/queries/impl/transactional/find-rows-in-table.query.d.ts +10 -0
- package/dist/src/features/share/queries/impl/transactional/find-rows-in-table.query.js +10 -0
- package/dist/src/features/share/queries/impl/transactional/find-rows-in-table.query.js.map +1 -0
- package/dist/src/features/share/schema/table-views-schema.d.ts +2 -0
- package/dist/src/features/share/schema/table-views-schema.js +125 -0
- package/dist/src/features/share/schema/table-views-schema.js.map +1 -0
- package/dist/src/features/share/share.module.js +6 -0
- package/dist/src/features/share/share.module.js.map +1 -1
- package/dist/src/features/share/share.transactional.queries.d.ts +5 -0
- package/dist/src/features/share/share.transactional.queries.js +29 -0
- package/dist/src/features/share/share.transactional.queries.js.map +1 -1
- package/dist/src/features/share/system-tables.consts.d.ts +2 -1
- package/dist/src/features/share/system-tables.consts.js +6 -0
- package/dist/src/features/share/system-tables.consts.js.map +1 -1
- package/dist/src/features/share/system-tables.service.d.ts +15 -0
- package/dist/src/features/share/system-tables.service.js +76 -0
- package/dist/src/features/share/system-tables.service.js.map +1 -0
- package/dist/src/features/share/types/row-with-context.types.d.ts +1 -1
- package/dist/src/features/share/types/table-with-context.types.d.ts +1 -1
- package/dist/src/features/share/types.d.ts +2 -3
- package/dist/src/features/share/utils/validateUrlLikeId/validateJsonFieldName.d.ts +1 -1
- package/dist/src/features/share/utils/validateUrlLikeId/validateJsonFieldName.js +2 -2
- package/dist/src/features/share/utils/validateUrlLikeId/validateJsonFieldName.js.map +1 -1
- package/dist/src/features/share/views-migration.service.d.ts +47 -0
- package/dist/src/features/share/views-migration.service.js +222 -0
- package/dist/src/features/share/views-migration.service.js.map +1 -0
- package/dist/src/features/table/queries/handlers/get-table-by-id.handler.d.ts +1 -1
- package/dist/src/features/table/queries/handlers/get-table.handler.js +1 -1
- package/dist/src/features/table/queries/handlers/get-table.handler.js.map +1 -1
- package/dist/src/features/table/queries/handlers/get-tables.handler.js +1 -1
- package/dist/src/features/table/queries/handlers/get-tables.handler.js.map +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-count-foreign-keys-by.handler.js +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-count-foreign-keys-by.handler.js.map +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-count-foreign-keys-to.handler.js +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-count-foreign-keys-to.handler.js.map +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-foreign-keys-by.handler.js +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-foreign-keys-by.handler.js.map +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-foreign-keys-to.handler.js +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-foreign-keys-to.handler.js.map +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.d.ts +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.js +1 -1
- package/dist/src/features/table/queries/handlers/resolve-table-schema.handler.js.map +1 -1
- package/dist/src/features/table/queries/impl/get-count-rows-in-table.query.d.ts +2 -0
- package/dist/src/features/table/queries/impl/get-table.query.d.ts +3 -0
- package/dist/src/features/table/queries/impl/get-table.query.js.map +1 -1
- package/dist/src/features/table/queries/impl/get-tables.query.d.ts +3 -0
- package/dist/src/features/table/queries/impl/get-tables.query.js.map +1 -1
- package/dist/src/features/table/queries/impl/index.d.ts +2 -0
- package/dist/src/features/table/queries/impl/index.js +2 -0
- package/dist/src/features/table/queries/impl/index.js.map +1 -1
- package/dist/src/features/table/queries/impl/resolve-table-count-foreign-keys-by.query.d.ts +2 -0
- package/dist/src/features/table/queries/impl/resolve-table-count-foreign-keys-to.query.d.ts +2 -0
- package/dist/src/features/table/queries/impl/resolve-table-foreign-keys-by.query.d.ts +4 -0
- package/dist/src/features/table/queries/impl/resolve-table-foreign-keys-by.query.js.map +1 -1
- package/dist/src/features/table/queries/impl/resolve-table-foreign-keys-to.query.d.ts +4 -0
- package/dist/src/features/table/queries/impl/resolve-table-foreign-keys-to.query.js.map +1 -1
- package/dist/src/features/table/queries/impl/resolve-table-schema.query.d.ts +3 -0
- package/dist/src/features/table/queries/impl/resolve-table-schema.query.js.map +1 -1
- package/dist/src/features/table/table-api.service.d.ts +22 -0
- package/dist/src/features/table/table-api.service.js +50 -0
- package/dist/src/features/table/table-api.service.js.map +1 -0
- package/dist/src/features/table/table.module.js +3 -1
- package/dist/src/features/table/table.module.js.map +1 -1
- package/dist/src/features/user/commands/impl/set-username.command.d.ts +1 -0
- package/dist/src/features/user/commands/impl/update-password.command.d.ts +1 -0
- package/dist/src/features/user/queries/handlers/deprecated-get-owned-user-organization.handler.d.ts +14 -0
- package/dist/src/features/user/queries/handlers/deprecated-get-owned-user-organization.handler.js +35 -0
- package/dist/src/features/user/queries/handlers/deprecated-get-owned-user-organization.handler.js.map +1 -0
- package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.d.ts +1 -1
- package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.js +1 -2
- package/dist/src/features/user/queries/handlers/get-projects-by-user-id.handler.js.map +1 -1
- package/dist/src/features/user/queries/handlers/get-user-organization.handler.d.ts +9 -3
- package/dist/src/features/user/queries/handlers/get-user-organization.handler.js +6 -9
- package/dist/src/features/user/queries/handlers/get-user-organization.handler.js.map +1 -1
- package/dist/src/features/user/queries/handlers/get-user-project.handler.d.ts +14 -0
- package/dist/src/features/user/queries/handlers/get-user-project.handler.js +36 -0
- package/dist/src/features/user/queries/handlers/get-user-project.handler.js.map +1 -0
- package/dist/src/features/user/queries/handlers/get-user.handler.d.ts +1 -0
- package/dist/src/features/user/queries/handlers/get-user.handler.js +1 -0
- package/dist/src/features/user/queries/handlers/get-user.handler.js.map +1 -1
- package/dist/src/features/user/queries/handlers/index.d.ts +5 -1
- package/dist/src/features/user/queries/handlers/index.js +5 -1
- package/dist/src/features/user/queries/handlers/index.js.map +1 -1
- package/dist/src/features/user/queries/handlers/search-users.handler.d.ts +15 -0
- package/dist/src/features/user/queries/handlers/search-users.handler.js +61 -0
- package/dist/src/features/user/queries/handlers/search-users.handler.js.map +1 -0
- package/dist/src/features/user/queries/impl/deprecated-get-owned-user-organization.query.d.ts +11 -0
- package/dist/src/features/user/queries/impl/deprecated-get-owned-user-organization.query.js +10 -0
- package/dist/src/features/user/queries/impl/deprecated-get-owned-user-organization.query.js.map +1 -0
- package/dist/src/features/user/queries/impl/get-projects-by-user-id.query.d.ts +2 -1
- package/dist/src/features/user/queries/impl/get-user-organization.query.d.ts +5 -1
- package/dist/src/features/user/queries/impl/get-user-organization.query.js.map +1 -1
- package/dist/src/features/user/queries/impl/get-user-project.query.d.ts +13 -0
- package/dist/src/features/user/queries/impl/get-user-project.query.js +10 -0
- package/dist/src/features/user/queries/impl/get-user-project.query.js.map +1 -0
- package/dist/src/features/user/queries/impl/get-user.query.d.ts +3 -2
- package/dist/src/features/user/queries/impl/index.d.ts +3 -0
- package/dist/src/features/user/queries/impl/index.js +3 -0
- package/dist/src/features/user/queries/impl/index.js.map +1 -1
- package/dist/src/features/user/queries/impl/search-users.query.d.ts +16 -0
- package/dist/src/features/user/queries/impl/search-users.query.js +10 -0
- package/dist/src/features/user/queries/impl/search-users.query.js.map +1 -0
- package/dist/src/features/user/queries/index.d.ts +2 -2
- package/dist/src/features/user/queries/index.js +4 -1
- package/dist/src/features/user/queries/index.js.map +1 -1
- package/dist/src/features/user/user-api.service.d.ts +16 -0
- package/dist/src/features/user/user-api.service.js +53 -0
- package/dist/src/features/user/user-api.service.js.map +1 -0
- package/dist/src/features/user/user.module.js +3 -1
- package/dist/src/features/user/user.module.js.map +1 -1
- package/dist/src/features/views/commands/handlers/index.d.ts +3 -0
- package/dist/src/features/views/commands/handlers/index.js +21 -0
- package/dist/src/features/views/commands/handlers/index.js.map +1 -0
- package/dist/src/features/views/commands/handlers/update-table-views.handler.d.ts +25 -0
- package/dist/src/features/views/commands/handlers/update-table-views.handler.js +125 -0
- package/dist/src/features/views/commands/handlers/update-table-views.handler.js.map +1 -0
- package/dist/src/features/views/commands/impl/index.d.ts +1 -0
- package/dist/src/features/views/commands/impl/index.js +18 -0
- package/dist/src/features/views/commands/impl/index.js.map +1 -0
- package/dist/src/features/views/commands/impl/update-table-views.command.d.ts +11 -0
- package/dist/src/features/views/commands/impl/update-table-views.command.js +10 -0
- package/dist/src/features/views/commands/impl/update-table-views.command.js.map +1 -0
- package/dist/src/features/views/index.d.ts +6 -0
- package/dist/src/features/views/index.js +23 -0
- package/dist/src/features/views/index.js.map +1 -0
- package/dist/src/features/views/queries/handlers/get-table-views.handler.d.ts +13 -0
- package/dist/src/features/views/queries/handlers/get-table-views.handler.js +72 -0
- package/dist/src/features/views/queries/handlers/get-table-views.handler.js.map +1 -0
- package/dist/src/features/views/queries/handlers/index.d.ts +3 -0
- package/dist/src/features/views/queries/handlers/index.js +21 -0
- package/dist/src/features/views/queries/handlers/index.js.map +1 -0
- package/dist/src/features/views/queries/impl/get-table-views.query.d.ts +10 -0
- package/dist/src/features/views/queries/impl/get-table-views.query.js +10 -0
- package/dist/src/features/views/queries/impl/get-table-views.query.js.map +1 -0
- package/dist/src/features/views/queries/impl/index.d.ts +1 -0
- package/dist/src/features/views/queries/impl/index.js +18 -0
- package/dist/src/features/views/queries/impl/index.js.map +1 -0
- package/dist/src/features/views/services/index.d.ts +1 -0
- package/dist/src/features/views/services/index.js +18 -0
- package/dist/src/features/views/services/index.js.map +1 -0
- package/dist/src/features/views/services/view-validation.service.d.ts +13 -0
- package/dist/src/features/views/services/view-validation.service.js +106 -0
- package/dist/src/features/views/services/view-validation.service.js.map +1 -0
- package/dist/src/features/views/types/index.d.ts +1 -0
- package/dist/src/features/views/types/index.js +18 -0
- package/dist/src/features/views/types/index.js.map +1 -0
- package/dist/src/features/views/types/views.types.d.ts +34 -0
- package/dist/src/features/views/types/views.types.js +6 -0
- package/dist/src/features/views/types/views.types.js.map +1 -0
- package/dist/src/features/views/views-api.service.d.ts +12 -0
- package/dist/src/features/views/views-api.service.js +38 -0
- package/dist/src/features/views/views-api.service.js.map +1 -0
- package/dist/src/features/views/views.module.d.ts +2 -0
- package/dist/src/features/views/views.module.js +34 -0
- package/dist/src/features/views/views.module.js.map +1 -0
- package/dist/src/infrastructure/admin/admin.module.js +7 -2
- package/dist/src/infrastructure/admin/admin.module.js.map +1 -1
- package/dist/src/infrastructure/cache/events/index.d.ts +1 -0
- package/dist/src/infrastructure/cache/events/index.js +1 -0
- package/dist/src/infrastructure/cache/events/index.js.map +1 -1
- package/dist/src/infrastructure/cache/events/row/rows-deleted.event.d.ts +7 -0
- package/dist/src/infrastructure/cache/events/row/rows-deleted.event.js +14 -0
- package/dist/src/infrastructure/cache/events/row/rows-deleted.event.js.map +1 -0
- package/dist/src/infrastructure/cache/handlers/index.d.ts +2 -1
- package/dist/src/infrastructure/cache/handlers/index.js +2 -0
- package/dist/src/infrastructure/cache/handlers/index.js.map +1 -1
- package/dist/src/infrastructure/cache/handlers/row/rows-deleted.handler.d.ts +8 -0
- package/dist/src/infrastructure/cache/handlers/row/rows-deleted.handler.js +30 -0
- package/dist/src/infrastructure/cache/handlers/row/rows-deleted.handler.js.map +1 -0
- package/dist/src/infrastructure/cache/pg-bus/pg-bus.driver.js +1 -1
- package/dist/src/infrastructure/cache/pg-bus/pg-bus.driver.js.map +1 -1
- package/dist/src/infrastructure/cache/revisium-cache.module.js +40 -4
- package/dist/src/infrastructure/cache/revisium-cache.module.js.map +1 -1
- package/dist/src/infrastructure/cache/services/row-cache.service.d.ts +5 -0
- package/dist/src/infrastructure/cache/services/row-cache.service.js +5 -0
- package/dist/src/infrastructure/cache/services/row-cache.service.js.map +1 -1
- package/dist/src/infrastructure/clean/commands/handlers/clean-rows.handler.d.ts +1 -1
- package/dist/src/infrastructure/clean/commands/handlers/clean-tables.handler.d.ts +1 -1
- package/dist/src/infrastructure/configuration/configuration-api.service.d.ts +7 -0
- package/dist/src/infrastructure/configuration/configuration-api.service.js +29 -0
- package/dist/src/infrastructure/configuration/configuration-api.service.js.map +1 -0
- package/dist/src/infrastructure/configuration/configuration.module.js +5 -2
- package/dist/src/infrastructure/configuration/configuration.module.js.map +1 -1
- package/dist/src/infrastructure/database/hash.service.d.ts +1 -1
- package/dist/src/infrastructure/database/hash.service.js +5 -2
- package/dist/src/infrastructure/database/hash.service.js.map +1 -1
- package/dist/src/infrastructure/database/postgresql-notification.service.d.ts +1 -1
- package/dist/src/infrastructure/database/prisma.service.d.ts +5 -3
- package/dist/src/infrastructure/database/prisma.service.js +18 -2
- package/dist/src/infrastructure/database/prisma.service.js.map +1 -1
- package/dist/src/infrastructure/database/transaction-prisma.service.d.ts +32 -12
- package/dist/src/infrastructure/database/transaction-prisma.service.js +169 -5
- package/dist/src/infrastructure/database/transaction-prisma.service.js.map +1 -1
- package/dist/src/infrastructure/email/templates.service.js +36 -3
- package/dist/src/infrastructure/email/templates.service.js.map +1 -1
- package/dist/src/infrastructure/email/transporter.service.js +34 -1
- package/dist/src/infrastructure/email/transporter.service.js.map +1 -1
- package/dist/src/infrastructure/metrics/graphql/graphql-metrics.plugin.js +34 -1
- package/dist/src/infrastructure/metrics/graphql/graphql-metrics.plugin.js.map +1 -1
- package/dist/src/infrastructure/metrics/graphql/graphql-metrics.service.js +34 -1
- package/dist/src/infrastructure/metrics/graphql/graphql-metrics.service.js.map +1 -1
- package/dist/src/infrastructure/metrics/rest/rest-metrics.service.js +34 -1
- package/dist/src/infrastructure/metrics/rest/rest-metrics.service.js.map +1 -1
- package/dist/src/infrastructure/metrics-api/metrics-api.module.js +34 -1
- package/dist/src/infrastructure/metrics-api/metrics-api.module.js.map +1 -1
- package/dist/src/infrastructure/metrics-api/metrics.controller.js +36 -7
- package/dist/src/infrastructure/metrics-api/metrics.controller.js.map +1 -1
- package/dist/src/main.js +5 -0
- package/dist/src/main.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +27 -16
- package/dist/src/__generated__/sql/countTableDiffsBetweenRevisions.edge.js +0 -3
- package/dist/src/__generated__/sql/countTableDiffsBetweenRevisions.edge.mjs +0 -2
- package/dist/src/__generated__/sql/countTableDiffsBetweenRevisions.js +0 -3
- package/dist/src/__generated__/sql/countTableDiffsBetweenRevisions.mjs +0 -2
- package/dist/src/__generated__/sql/getTableDiffsPaginatedBetweenRevisions.edge.js +0 -3
- package/dist/src/__generated__/sql/getTableDiffsPaginatedBetweenRevisions.edge.mjs +0 -2
- package/dist/src/__generated__/sql/getTableDiffsPaginatedBetweenRevisions.js +0 -3
- package/dist/src/__generated__/sql/getTableDiffsPaginatedBetweenRevisions.mjs +0 -2
- package/dist/src/__generated__/sql/hasRowDiffsBetweenRevisions.edge.js +0 -3
- package/dist/src/__generated__/sql/hasRowDiffsBetweenRevisions.edge.mjs +0 -2
- package/dist/src/__generated__/sql/hasRowDiffsBetweenRevisions.js +0 -3
- package/dist/src/__generated__/sql/hasRowDiffsBetweenRevisions.mjs +0 -2
- package/dist/src/__generated__/sql/hasTableDiffsBetweenRevisions.edge.js +0 -3
- package/dist/src/__generated__/sql/hasTableDiffsBetweenRevisions.edge.mjs +0 -2
- package/dist/src/__generated__/sql/hasTableDiffsBetweenRevisions.js +0 -3
- package/dist/src/__generated__/sql/hasTableDiffsBetweenRevisions.mjs +0 -2
- package/dist/src/__generated__/sql/index.edge.js +0 -5
- package/dist/src/__generated__/sql/index.edge.mjs +0 -4
- package/dist/src/__generated__/sql/index.js +0 -5
- package/dist/src/__generated__/sql/index.mjs +0 -4
- package/dist/src/features/draft/commands/handlers/remove-row.handler.js.map +0 -1
- package/dist/src/features/draft/commands/impl/remove-row.command.js +0 -10
- package/dist/src/features/draft/commands/impl/remove-row.command.js.map +0 -1
- package/dist/src/features/draft/commands/types/remove-row.handler.types.js.map +0 -1
|
@@ -0,0 +1,701 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as $Enums from "../enums";
|
|
3
|
+
import type * as Prisma from "../internal/prismaNamespace";
|
|
4
|
+
export type EndpointModel = runtime.Types.Result.DefaultSelection<Prisma.$EndpointPayload>;
|
|
5
|
+
export type AggregateEndpoint = {
|
|
6
|
+
_count: EndpointCountAggregateOutputType | null;
|
|
7
|
+
_min: EndpointMinAggregateOutputType | null;
|
|
8
|
+
_max: EndpointMaxAggregateOutputType | null;
|
|
9
|
+
};
|
|
10
|
+
export type EndpointMinAggregateOutputType = {
|
|
11
|
+
id: string | null;
|
|
12
|
+
createdAt: Date | null;
|
|
13
|
+
type: $Enums.EndpointType | null;
|
|
14
|
+
revisionId: string | null;
|
|
15
|
+
isDeleted: boolean | null;
|
|
16
|
+
versionId: string | null;
|
|
17
|
+
};
|
|
18
|
+
export type EndpointMaxAggregateOutputType = {
|
|
19
|
+
id: string | null;
|
|
20
|
+
createdAt: Date | null;
|
|
21
|
+
type: $Enums.EndpointType | null;
|
|
22
|
+
revisionId: string | null;
|
|
23
|
+
isDeleted: boolean | null;
|
|
24
|
+
versionId: string | null;
|
|
25
|
+
};
|
|
26
|
+
export type EndpointCountAggregateOutputType = {
|
|
27
|
+
id: number;
|
|
28
|
+
createdAt: number;
|
|
29
|
+
type: number;
|
|
30
|
+
revisionId: number;
|
|
31
|
+
isDeleted: number;
|
|
32
|
+
versionId: number;
|
|
33
|
+
_all: number;
|
|
34
|
+
};
|
|
35
|
+
export type EndpointMinAggregateInputType = {
|
|
36
|
+
id?: true;
|
|
37
|
+
createdAt?: true;
|
|
38
|
+
type?: true;
|
|
39
|
+
revisionId?: true;
|
|
40
|
+
isDeleted?: true;
|
|
41
|
+
versionId?: true;
|
|
42
|
+
};
|
|
43
|
+
export type EndpointMaxAggregateInputType = {
|
|
44
|
+
id?: true;
|
|
45
|
+
createdAt?: true;
|
|
46
|
+
type?: true;
|
|
47
|
+
revisionId?: true;
|
|
48
|
+
isDeleted?: true;
|
|
49
|
+
versionId?: true;
|
|
50
|
+
};
|
|
51
|
+
export type EndpointCountAggregateInputType = {
|
|
52
|
+
id?: true;
|
|
53
|
+
createdAt?: true;
|
|
54
|
+
type?: true;
|
|
55
|
+
revisionId?: true;
|
|
56
|
+
isDeleted?: true;
|
|
57
|
+
versionId?: true;
|
|
58
|
+
_all?: true;
|
|
59
|
+
};
|
|
60
|
+
export type EndpointAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
61
|
+
where?: Prisma.EndpointWhereInput;
|
|
62
|
+
orderBy?: Prisma.EndpointOrderByWithRelationInput | Prisma.EndpointOrderByWithRelationInput[];
|
|
63
|
+
cursor?: Prisma.EndpointWhereUniqueInput;
|
|
64
|
+
take?: number;
|
|
65
|
+
skip?: number;
|
|
66
|
+
_count?: true | EndpointCountAggregateInputType;
|
|
67
|
+
_min?: EndpointMinAggregateInputType;
|
|
68
|
+
_max?: EndpointMaxAggregateInputType;
|
|
69
|
+
};
|
|
70
|
+
export type GetEndpointAggregateType<T extends EndpointAggregateArgs> = {
|
|
71
|
+
[P in keyof T & keyof AggregateEndpoint]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateEndpoint[P]> : Prisma.GetScalarType<T[P], AggregateEndpoint[P]>;
|
|
72
|
+
};
|
|
73
|
+
export type EndpointGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
74
|
+
where?: Prisma.EndpointWhereInput;
|
|
75
|
+
orderBy?: Prisma.EndpointOrderByWithAggregationInput | Prisma.EndpointOrderByWithAggregationInput[];
|
|
76
|
+
by: Prisma.EndpointScalarFieldEnum[] | Prisma.EndpointScalarFieldEnum;
|
|
77
|
+
having?: Prisma.EndpointScalarWhereWithAggregatesInput;
|
|
78
|
+
take?: number;
|
|
79
|
+
skip?: number;
|
|
80
|
+
_count?: EndpointCountAggregateInputType | true;
|
|
81
|
+
_min?: EndpointMinAggregateInputType;
|
|
82
|
+
_max?: EndpointMaxAggregateInputType;
|
|
83
|
+
};
|
|
84
|
+
export type EndpointGroupByOutputType = {
|
|
85
|
+
id: string;
|
|
86
|
+
createdAt: Date;
|
|
87
|
+
type: $Enums.EndpointType;
|
|
88
|
+
revisionId: string;
|
|
89
|
+
isDeleted: boolean;
|
|
90
|
+
versionId: string;
|
|
91
|
+
_count: EndpointCountAggregateOutputType | null;
|
|
92
|
+
_min: EndpointMinAggregateOutputType | null;
|
|
93
|
+
_max: EndpointMaxAggregateOutputType | null;
|
|
94
|
+
};
|
|
95
|
+
type GetEndpointGroupByPayload<T extends EndpointGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<EndpointGroupByOutputType, T['by']> & {
|
|
96
|
+
[P in ((keyof T) & (keyof EndpointGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], EndpointGroupByOutputType[P]> : Prisma.GetScalarType<T[P], EndpointGroupByOutputType[P]>;
|
|
97
|
+
}>>;
|
|
98
|
+
export type EndpointWhereInput = {
|
|
99
|
+
AND?: Prisma.EndpointWhereInput | Prisma.EndpointWhereInput[];
|
|
100
|
+
OR?: Prisma.EndpointWhereInput[];
|
|
101
|
+
NOT?: Prisma.EndpointWhereInput | Prisma.EndpointWhereInput[];
|
|
102
|
+
id?: Prisma.StringFilter<"Endpoint"> | string;
|
|
103
|
+
createdAt?: Prisma.DateTimeFilter<"Endpoint"> | Date | string;
|
|
104
|
+
type?: Prisma.EnumEndpointTypeFilter<"Endpoint"> | $Enums.EndpointType;
|
|
105
|
+
revisionId?: Prisma.StringFilter<"Endpoint"> | string;
|
|
106
|
+
isDeleted?: Prisma.BoolFilter<"Endpoint"> | boolean;
|
|
107
|
+
versionId?: Prisma.StringFilter<"Endpoint"> | string;
|
|
108
|
+
version?: Prisma.XOR<Prisma.EndpointVersionScalarRelationFilter, Prisma.EndpointVersionWhereInput>;
|
|
109
|
+
revision?: Prisma.XOR<Prisma.RevisionScalarRelationFilter, Prisma.RevisionWhereInput>;
|
|
110
|
+
};
|
|
111
|
+
export type EndpointOrderByWithRelationInput = {
|
|
112
|
+
id?: Prisma.SortOrder;
|
|
113
|
+
createdAt?: Prisma.SortOrder;
|
|
114
|
+
type?: Prisma.SortOrder;
|
|
115
|
+
revisionId?: Prisma.SortOrder;
|
|
116
|
+
isDeleted?: Prisma.SortOrder;
|
|
117
|
+
versionId?: Prisma.SortOrder;
|
|
118
|
+
version?: Prisma.EndpointVersionOrderByWithRelationInput;
|
|
119
|
+
revision?: Prisma.RevisionOrderByWithRelationInput;
|
|
120
|
+
_relevance?: Prisma.EndpointOrderByRelevanceInput;
|
|
121
|
+
};
|
|
122
|
+
export type EndpointWhereUniqueInput = Prisma.AtLeast<{
|
|
123
|
+
id?: string;
|
|
124
|
+
revisionId_type?: Prisma.EndpointRevisionIdTypeCompoundUniqueInput;
|
|
125
|
+
AND?: Prisma.EndpointWhereInput | Prisma.EndpointWhereInput[];
|
|
126
|
+
OR?: Prisma.EndpointWhereInput[];
|
|
127
|
+
NOT?: Prisma.EndpointWhereInput | Prisma.EndpointWhereInput[];
|
|
128
|
+
createdAt?: Prisma.DateTimeFilter<"Endpoint"> | Date | string;
|
|
129
|
+
type?: Prisma.EnumEndpointTypeFilter<"Endpoint"> | $Enums.EndpointType;
|
|
130
|
+
revisionId?: Prisma.StringFilter<"Endpoint"> | string;
|
|
131
|
+
isDeleted?: Prisma.BoolFilter<"Endpoint"> | boolean;
|
|
132
|
+
versionId?: Prisma.StringFilter<"Endpoint"> | string;
|
|
133
|
+
version?: Prisma.XOR<Prisma.EndpointVersionScalarRelationFilter, Prisma.EndpointVersionWhereInput>;
|
|
134
|
+
revision?: Prisma.XOR<Prisma.RevisionScalarRelationFilter, Prisma.RevisionWhereInput>;
|
|
135
|
+
}, "id" | "revisionId_type">;
|
|
136
|
+
export type EndpointOrderByWithAggregationInput = {
|
|
137
|
+
id?: Prisma.SortOrder;
|
|
138
|
+
createdAt?: Prisma.SortOrder;
|
|
139
|
+
type?: Prisma.SortOrder;
|
|
140
|
+
revisionId?: Prisma.SortOrder;
|
|
141
|
+
isDeleted?: Prisma.SortOrder;
|
|
142
|
+
versionId?: Prisma.SortOrder;
|
|
143
|
+
_count?: Prisma.EndpointCountOrderByAggregateInput;
|
|
144
|
+
_max?: Prisma.EndpointMaxOrderByAggregateInput;
|
|
145
|
+
_min?: Prisma.EndpointMinOrderByAggregateInput;
|
|
146
|
+
};
|
|
147
|
+
export type EndpointScalarWhereWithAggregatesInput = {
|
|
148
|
+
AND?: Prisma.EndpointScalarWhereWithAggregatesInput | Prisma.EndpointScalarWhereWithAggregatesInput[];
|
|
149
|
+
OR?: Prisma.EndpointScalarWhereWithAggregatesInput[];
|
|
150
|
+
NOT?: Prisma.EndpointScalarWhereWithAggregatesInput | Prisma.EndpointScalarWhereWithAggregatesInput[];
|
|
151
|
+
id?: Prisma.StringWithAggregatesFilter<"Endpoint"> | string;
|
|
152
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"Endpoint"> | Date | string;
|
|
153
|
+
type?: Prisma.EnumEndpointTypeWithAggregatesFilter<"Endpoint"> | $Enums.EndpointType;
|
|
154
|
+
revisionId?: Prisma.StringWithAggregatesFilter<"Endpoint"> | string;
|
|
155
|
+
isDeleted?: Prisma.BoolWithAggregatesFilter<"Endpoint"> | boolean;
|
|
156
|
+
versionId?: Prisma.StringWithAggregatesFilter<"Endpoint"> | string;
|
|
157
|
+
};
|
|
158
|
+
export type EndpointCreateInput = {
|
|
159
|
+
id: string;
|
|
160
|
+
createdAt?: Date | string;
|
|
161
|
+
type: $Enums.EndpointType;
|
|
162
|
+
isDeleted?: boolean;
|
|
163
|
+
version: Prisma.EndpointVersionCreateNestedOneWithoutEndpointInput;
|
|
164
|
+
revision: Prisma.RevisionCreateNestedOneWithoutEndpointsInput;
|
|
165
|
+
};
|
|
166
|
+
export type EndpointUncheckedCreateInput = {
|
|
167
|
+
id: string;
|
|
168
|
+
createdAt?: Date | string;
|
|
169
|
+
type: $Enums.EndpointType;
|
|
170
|
+
revisionId: string;
|
|
171
|
+
isDeleted?: boolean;
|
|
172
|
+
versionId: string;
|
|
173
|
+
};
|
|
174
|
+
export type EndpointUpdateInput = {
|
|
175
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
176
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
177
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
178
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
179
|
+
version?: Prisma.EndpointVersionUpdateOneRequiredWithoutEndpointNestedInput;
|
|
180
|
+
revision?: Prisma.RevisionUpdateOneRequiredWithoutEndpointsNestedInput;
|
|
181
|
+
};
|
|
182
|
+
export type EndpointUncheckedUpdateInput = {
|
|
183
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
184
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
185
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
186
|
+
revisionId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
187
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
188
|
+
versionId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
189
|
+
};
|
|
190
|
+
export type EndpointCreateManyInput = {
|
|
191
|
+
id: string;
|
|
192
|
+
createdAt?: Date | string;
|
|
193
|
+
type: $Enums.EndpointType;
|
|
194
|
+
revisionId: string;
|
|
195
|
+
isDeleted?: boolean;
|
|
196
|
+
versionId: string;
|
|
197
|
+
};
|
|
198
|
+
export type EndpointUpdateManyMutationInput = {
|
|
199
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
200
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
201
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
202
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
203
|
+
};
|
|
204
|
+
export type EndpointUncheckedUpdateManyInput = {
|
|
205
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
206
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
207
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
208
|
+
revisionId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
209
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
210
|
+
versionId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
211
|
+
};
|
|
212
|
+
export type EndpointListRelationFilter = {
|
|
213
|
+
every?: Prisma.EndpointWhereInput;
|
|
214
|
+
some?: Prisma.EndpointWhereInput;
|
|
215
|
+
none?: Prisma.EndpointWhereInput;
|
|
216
|
+
};
|
|
217
|
+
export type EndpointOrderByRelationAggregateInput = {
|
|
218
|
+
_count?: Prisma.SortOrder;
|
|
219
|
+
};
|
|
220
|
+
export type EndpointOrderByRelevanceInput = {
|
|
221
|
+
fields: Prisma.EndpointOrderByRelevanceFieldEnum | Prisma.EndpointOrderByRelevanceFieldEnum[];
|
|
222
|
+
sort: Prisma.SortOrder;
|
|
223
|
+
search: string;
|
|
224
|
+
};
|
|
225
|
+
export type EndpointRevisionIdTypeCompoundUniqueInput = {
|
|
226
|
+
revisionId: string;
|
|
227
|
+
type: $Enums.EndpointType;
|
|
228
|
+
};
|
|
229
|
+
export type EndpointCountOrderByAggregateInput = {
|
|
230
|
+
id?: Prisma.SortOrder;
|
|
231
|
+
createdAt?: Prisma.SortOrder;
|
|
232
|
+
type?: Prisma.SortOrder;
|
|
233
|
+
revisionId?: Prisma.SortOrder;
|
|
234
|
+
isDeleted?: Prisma.SortOrder;
|
|
235
|
+
versionId?: Prisma.SortOrder;
|
|
236
|
+
};
|
|
237
|
+
export type EndpointMaxOrderByAggregateInput = {
|
|
238
|
+
id?: Prisma.SortOrder;
|
|
239
|
+
createdAt?: Prisma.SortOrder;
|
|
240
|
+
type?: Prisma.SortOrder;
|
|
241
|
+
revisionId?: Prisma.SortOrder;
|
|
242
|
+
isDeleted?: Prisma.SortOrder;
|
|
243
|
+
versionId?: Prisma.SortOrder;
|
|
244
|
+
};
|
|
245
|
+
export type EndpointMinOrderByAggregateInput = {
|
|
246
|
+
id?: Prisma.SortOrder;
|
|
247
|
+
createdAt?: Prisma.SortOrder;
|
|
248
|
+
type?: Prisma.SortOrder;
|
|
249
|
+
revisionId?: Prisma.SortOrder;
|
|
250
|
+
isDeleted?: Prisma.SortOrder;
|
|
251
|
+
versionId?: Prisma.SortOrder;
|
|
252
|
+
};
|
|
253
|
+
export type EndpointCreateNestedManyWithoutRevisionInput = {
|
|
254
|
+
create?: Prisma.XOR<Prisma.EndpointCreateWithoutRevisionInput, Prisma.EndpointUncheckedCreateWithoutRevisionInput> | Prisma.EndpointCreateWithoutRevisionInput[] | Prisma.EndpointUncheckedCreateWithoutRevisionInput[];
|
|
255
|
+
connectOrCreate?: Prisma.EndpointCreateOrConnectWithoutRevisionInput | Prisma.EndpointCreateOrConnectWithoutRevisionInput[];
|
|
256
|
+
createMany?: Prisma.EndpointCreateManyRevisionInputEnvelope;
|
|
257
|
+
connect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
258
|
+
};
|
|
259
|
+
export type EndpointUncheckedCreateNestedManyWithoutRevisionInput = {
|
|
260
|
+
create?: Prisma.XOR<Prisma.EndpointCreateWithoutRevisionInput, Prisma.EndpointUncheckedCreateWithoutRevisionInput> | Prisma.EndpointCreateWithoutRevisionInput[] | Prisma.EndpointUncheckedCreateWithoutRevisionInput[];
|
|
261
|
+
connectOrCreate?: Prisma.EndpointCreateOrConnectWithoutRevisionInput | Prisma.EndpointCreateOrConnectWithoutRevisionInput[];
|
|
262
|
+
createMany?: Prisma.EndpointCreateManyRevisionInputEnvelope;
|
|
263
|
+
connect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
264
|
+
};
|
|
265
|
+
export type EndpointUpdateManyWithoutRevisionNestedInput = {
|
|
266
|
+
create?: Prisma.XOR<Prisma.EndpointCreateWithoutRevisionInput, Prisma.EndpointUncheckedCreateWithoutRevisionInput> | Prisma.EndpointCreateWithoutRevisionInput[] | Prisma.EndpointUncheckedCreateWithoutRevisionInput[];
|
|
267
|
+
connectOrCreate?: Prisma.EndpointCreateOrConnectWithoutRevisionInput | Prisma.EndpointCreateOrConnectWithoutRevisionInput[];
|
|
268
|
+
upsert?: Prisma.EndpointUpsertWithWhereUniqueWithoutRevisionInput | Prisma.EndpointUpsertWithWhereUniqueWithoutRevisionInput[];
|
|
269
|
+
createMany?: Prisma.EndpointCreateManyRevisionInputEnvelope;
|
|
270
|
+
set?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
271
|
+
disconnect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
272
|
+
delete?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
273
|
+
connect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
274
|
+
update?: Prisma.EndpointUpdateWithWhereUniqueWithoutRevisionInput | Prisma.EndpointUpdateWithWhereUniqueWithoutRevisionInput[];
|
|
275
|
+
updateMany?: Prisma.EndpointUpdateManyWithWhereWithoutRevisionInput | Prisma.EndpointUpdateManyWithWhereWithoutRevisionInput[];
|
|
276
|
+
deleteMany?: Prisma.EndpointScalarWhereInput | Prisma.EndpointScalarWhereInput[];
|
|
277
|
+
};
|
|
278
|
+
export type EndpointUncheckedUpdateManyWithoutRevisionNestedInput = {
|
|
279
|
+
create?: Prisma.XOR<Prisma.EndpointCreateWithoutRevisionInput, Prisma.EndpointUncheckedCreateWithoutRevisionInput> | Prisma.EndpointCreateWithoutRevisionInput[] | Prisma.EndpointUncheckedCreateWithoutRevisionInput[];
|
|
280
|
+
connectOrCreate?: Prisma.EndpointCreateOrConnectWithoutRevisionInput | Prisma.EndpointCreateOrConnectWithoutRevisionInput[];
|
|
281
|
+
upsert?: Prisma.EndpointUpsertWithWhereUniqueWithoutRevisionInput | Prisma.EndpointUpsertWithWhereUniqueWithoutRevisionInput[];
|
|
282
|
+
createMany?: Prisma.EndpointCreateManyRevisionInputEnvelope;
|
|
283
|
+
set?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
284
|
+
disconnect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
285
|
+
delete?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
286
|
+
connect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
287
|
+
update?: Prisma.EndpointUpdateWithWhereUniqueWithoutRevisionInput | Prisma.EndpointUpdateWithWhereUniqueWithoutRevisionInput[];
|
|
288
|
+
updateMany?: Prisma.EndpointUpdateManyWithWhereWithoutRevisionInput | Prisma.EndpointUpdateManyWithWhereWithoutRevisionInput[];
|
|
289
|
+
deleteMany?: Prisma.EndpointScalarWhereInput | Prisma.EndpointScalarWhereInput[];
|
|
290
|
+
};
|
|
291
|
+
export type EndpointCreateNestedManyWithoutVersionInput = {
|
|
292
|
+
create?: Prisma.XOR<Prisma.EndpointCreateWithoutVersionInput, Prisma.EndpointUncheckedCreateWithoutVersionInput> | Prisma.EndpointCreateWithoutVersionInput[] | Prisma.EndpointUncheckedCreateWithoutVersionInput[];
|
|
293
|
+
connectOrCreate?: Prisma.EndpointCreateOrConnectWithoutVersionInput | Prisma.EndpointCreateOrConnectWithoutVersionInput[];
|
|
294
|
+
createMany?: Prisma.EndpointCreateManyVersionInputEnvelope;
|
|
295
|
+
connect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
296
|
+
};
|
|
297
|
+
export type EndpointUncheckedCreateNestedManyWithoutVersionInput = {
|
|
298
|
+
create?: Prisma.XOR<Prisma.EndpointCreateWithoutVersionInput, Prisma.EndpointUncheckedCreateWithoutVersionInput> | Prisma.EndpointCreateWithoutVersionInput[] | Prisma.EndpointUncheckedCreateWithoutVersionInput[];
|
|
299
|
+
connectOrCreate?: Prisma.EndpointCreateOrConnectWithoutVersionInput | Prisma.EndpointCreateOrConnectWithoutVersionInput[];
|
|
300
|
+
createMany?: Prisma.EndpointCreateManyVersionInputEnvelope;
|
|
301
|
+
connect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
302
|
+
};
|
|
303
|
+
export type EndpointUpdateManyWithoutVersionNestedInput = {
|
|
304
|
+
create?: Prisma.XOR<Prisma.EndpointCreateWithoutVersionInput, Prisma.EndpointUncheckedCreateWithoutVersionInput> | Prisma.EndpointCreateWithoutVersionInput[] | Prisma.EndpointUncheckedCreateWithoutVersionInput[];
|
|
305
|
+
connectOrCreate?: Prisma.EndpointCreateOrConnectWithoutVersionInput | Prisma.EndpointCreateOrConnectWithoutVersionInput[];
|
|
306
|
+
upsert?: Prisma.EndpointUpsertWithWhereUniqueWithoutVersionInput | Prisma.EndpointUpsertWithWhereUniqueWithoutVersionInput[];
|
|
307
|
+
createMany?: Prisma.EndpointCreateManyVersionInputEnvelope;
|
|
308
|
+
set?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
309
|
+
disconnect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
310
|
+
delete?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
311
|
+
connect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
312
|
+
update?: Prisma.EndpointUpdateWithWhereUniqueWithoutVersionInput | Prisma.EndpointUpdateWithWhereUniqueWithoutVersionInput[];
|
|
313
|
+
updateMany?: Prisma.EndpointUpdateManyWithWhereWithoutVersionInput | Prisma.EndpointUpdateManyWithWhereWithoutVersionInput[];
|
|
314
|
+
deleteMany?: Prisma.EndpointScalarWhereInput | Prisma.EndpointScalarWhereInput[];
|
|
315
|
+
};
|
|
316
|
+
export type EndpointUncheckedUpdateManyWithoutVersionNestedInput = {
|
|
317
|
+
create?: Prisma.XOR<Prisma.EndpointCreateWithoutVersionInput, Prisma.EndpointUncheckedCreateWithoutVersionInput> | Prisma.EndpointCreateWithoutVersionInput[] | Prisma.EndpointUncheckedCreateWithoutVersionInput[];
|
|
318
|
+
connectOrCreate?: Prisma.EndpointCreateOrConnectWithoutVersionInput | Prisma.EndpointCreateOrConnectWithoutVersionInput[];
|
|
319
|
+
upsert?: Prisma.EndpointUpsertWithWhereUniqueWithoutVersionInput | Prisma.EndpointUpsertWithWhereUniqueWithoutVersionInput[];
|
|
320
|
+
createMany?: Prisma.EndpointCreateManyVersionInputEnvelope;
|
|
321
|
+
set?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
322
|
+
disconnect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
323
|
+
delete?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
324
|
+
connect?: Prisma.EndpointWhereUniqueInput | Prisma.EndpointWhereUniqueInput[];
|
|
325
|
+
update?: Prisma.EndpointUpdateWithWhereUniqueWithoutVersionInput | Prisma.EndpointUpdateWithWhereUniqueWithoutVersionInput[];
|
|
326
|
+
updateMany?: Prisma.EndpointUpdateManyWithWhereWithoutVersionInput | Prisma.EndpointUpdateManyWithWhereWithoutVersionInput[];
|
|
327
|
+
deleteMany?: Prisma.EndpointScalarWhereInput | Prisma.EndpointScalarWhereInput[];
|
|
328
|
+
};
|
|
329
|
+
export type EndpointCreateWithoutRevisionInput = {
|
|
330
|
+
id: string;
|
|
331
|
+
createdAt?: Date | string;
|
|
332
|
+
type: $Enums.EndpointType;
|
|
333
|
+
isDeleted?: boolean;
|
|
334
|
+
version: Prisma.EndpointVersionCreateNestedOneWithoutEndpointInput;
|
|
335
|
+
};
|
|
336
|
+
export type EndpointUncheckedCreateWithoutRevisionInput = {
|
|
337
|
+
id: string;
|
|
338
|
+
createdAt?: Date | string;
|
|
339
|
+
type: $Enums.EndpointType;
|
|
340
|
+
isDeleted?: boolean;
|
|
341
|
+
versionId: string;
|
|
342
|
+
};
|
|
343
|
+
export type EndpointCreateOrConnectWithoutRevisionInput = {
|
|
344
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
345
|
+
create: Prisma.XOR<Prisma.EndpointCreateWithoutRevisionInput, Prisma.EndpointUncheckedCreateWithoutRevisionInput>;
|
|
346
|
+
};
|
|
347
|
+
export type EndpointCreateManyRevisionInputEnvelope = {
|
|
348
|
+
data: Prisma.EndpointCreateManyRevisionInput | Prisma.EndpointCreateManyRevisionInput[];
|
|
349
|
+
skipDuplicates?: boolean;
|
|
350
|
+
};
|
|
351
|
+
export type EndpointUpsertWithWhereUniqueWithoutRevisionInput = {
|
|
352
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
353
|
+
update: Prisma.XOR<Prisma.EndpointUpdateWithoutRevisionInput, Prisma.EndpointUncheckedUpdateWithoutRevisionInput>;
|
|
354
|
+
create: Prisma.XOR<Prisma.EndpointCreateWithoutRevisionInput, Prisma.EndpointUncheckedCreateWithoutRevisionInput>;
|
|
355
|
+
};
|
|
356
|
+
export type EndpointUpdateWithWhereUniqueWithoutRevisionInput = {
|
|
357
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
358
|
+
data: Prisma.XOR<Prisma.EndpointUpdateWithoutRevisionInput, Prisma.EndpointUncheckedUpdateWithoutRevisionInput>;
|
|
359
|
+
};
|
|
360
|
+
export type EndpointUpdateManyWithWhereWithoutRevisionInput = {
|
|
361
|
+
where: Prisma.EndpointScalarWhereInput;
|
|
362
|
+
data: Prisma.XOR<Prisma.EndpointUpdateManyMutationInput, Prisma.EndpointUncheckedUpdateManyWithoutRevisionInput>;
|
|
363
|
+
};
|
|
364
|
+
export type EndpointScalarWhereInput = {
|
|
365
|
+
AND?: Prisma.EndpointScalarWhereInput | Prisma.EndpointScalarWhereInput[];
|
|
366
|
+
OR?: Prisma.EndpointScalarWhereInput[];
|
|
367
|
+
NOT?: Prisma.EndpointScalarWhereInput | Prisma.EndpointScalarWhereInput[];
|
|
368
|
+
id?: Prisma.StringFilter<"Endpoint"> | string;
|
|
369
|
+
createdAt?: Prisma.DateTimeFilter<"Endpoint"> | Date | string;
|
|
370
|
+
type?: Prisma.EnumEndpointTypeFilter<"Endpoint"> | $Enums.EndpointType;
|
|
371
|
+
revisionId?: Prisma.StringFilter<"Endpoint"> | string;
|
|
372
|
+
isDeleted?: Prisma.BoolFilter<"Endpoint"> | boolean;
|
|
373
|
+
versionId?: Prisma.StringFilter<"Endpoint"> | string;
|
|
374
|
+
};
|
|
375
|
+
export type EndpointCreateWithoutVersionInput = {
|
|
376
|
+
id: string;
|
|
377
|
+
createdAt?: Date | string;
|
|
378
|
+
type: $Enums.EndpointType;
|
|
379
|
+
isDeleted?: boolean;
|
|
380
|
+
revision: Prisma.RevisionCreateNestedOneWithoutEndpointsInput;
|
|
381
|
+
};
|
|
382
|
+
export type EndpointUncheckedCreateWithoutVersionInput = {
|
|
383
|
+
id: string;
|
|
384
|
+
createdAt?: Date | string;
|
|
385
|
+
type: $Enums.EndpointType;
|
|
386
|
+
revisionId: string;
|
|
387
|
+
isDeleted?: boolean;
|
|
388
|
+
};
|
|
389
|
+
export type EndpointCreateOrConnectWithoutVersionInput = {
|
|
390
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
391
|
+
create: Prisma.XOR<Prisma.EndpointCreateWithoutVersionInput, Prisma.EndpointUncheckedCreateWithoutVersionInput>;
|
|
392
|
+
};
|
|
393
|
+
export type EndpointCreateManyVersionInputEnvelope = {
|
|
394
|
+
data: Prisma.EndpointCreateManyVersionInput | Prisma.EndpointCreateManyVersionInput[];
|
|
395
|
+
skipDuplicates?: boolean;
|
|
396
|
+
};
|
|
397
|
+
export type EndpointUpsertWithWhereUniqueWithoutVersionInput = {
|
|
398
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
399
|
+
update: Prisma.XOR<Prisma.EndpointUpdateWithoutVersionInput, Prisma.EndpointUncheckedUpdateWithoutVersionInput>;
|
|
400
|
+
create: Prisma.XOR<Prisma.EndpointCreateWithoutVersionInput, Prisma.EndpointUncheckedCreateWithoutVersionInput>;
|
|
401
|
+
};
|
|
402
|
+
export type EndpointUpdateWithWhereUniqueWithoutVersionInput = {
|
|
403
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
404
|
+
data: Prisma.XOR<Prisma.EndpointUpdateWithoutVersionInput, Prisma.EndpointUncheckedUpdateWithoutVersionInput>;
|
|
405
|
+
};
|
|
406
|
+
export type EndpointUpdateManyWithWhereWithoutVersionInput = {
|
|
407
|
+
where: Prisma.EndpointScalarWhereInput;
|
|
408
|
+
data: Prisma.XOR<Prisma.EndpointUpdateManyMutationInput, Prisma.EndpointUncheckedUpdateManyWithoutVersionInput>;
|
|
409
|
+
};
|
|
410
|
+
export type EndpointCreateManyRevisionInput = {
|
|
411
|
+
id: string;
|
|
412
|
+
createdAt?: Date | string;
|
|
413
|
+
type: $Enums.EndpointType;
|
|
414
|
+
isDeleted?: boolean;
|
|
415
|
+
versionId: string;
|
|
416
|
+
};
|
|
417
|
+
export type EndpointUpdateWithoutRevisionInput = {
|
|
418
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
419
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
420
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
421
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
422
|
+
version?: Prisma.EndpointVersionUpdateOneRequiredWithoutEndpointNestedInput;
|
|
423
|
+
};
|
|
424
|
+
export type EndpointUncheckedUpdateWithoutRevisionInput = {
|
|
425
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
426
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
427
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
428
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
429
|
+
versionId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
430
|
+
};
|
|
431
|
+
export type EndpointUncheckedUpdateManyWithoutRevisionInput = {
|
|
432
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
433
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
434
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
435
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
436
|
+
versionId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
437
|
+
};
|
|
438
|
+
export type EndpointCreateManyVersionInput = {
|
|
439
|
+
id: string;
|
|
440
|
+
createdAt?: Date | string;
|
|
441
|
+
type: $Enums.EndpointType;
|
|
442
|
+
revisionId: string;
|
|
443
|
+
isDeleted?: boolean;
|
|
444
|
+
};
|
|
445
|
+
export type EndpointUpdateWithoutVersionInput = {
|
|
446
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
447
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
448
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
449
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
450
|
+
revision?: Prisma.RevisionUpdateOneRequiredWithoutEndpointsNestedInput;
|
|
451
|
+
};
|
|
452
|
+
export type EndpointUncheckedUpdateWithoutVersionInput = {
|
|
453
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
454
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
455
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
456
|
+
revisionId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
457
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
458
|
+
};
|
|
459
|
+
export type EndpointUncheckedUpdateManyWithoutVersionInput = {
|
|
460
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
461
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
462
|
+
type?: Prisma.EnumEndpointTypeFieldUpdateOperationsInput | $Enums.EndpointType;
|
|
463
|
+
revisionId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
464
|
+
isDeleted?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
465
|
+
};
|
|
466
|
+
export type EndpointSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
467
|
+
id?: boolean;
|
|
468
|
+
createdAt?: boolean;
|
|
469
|
+
type?: boolean;
|
|
470
|
+
revisionId?: boolean;
|
|
471
|
+
isDeleted?: boolean;
|
|
472
|
+
versionId?: boolean;
|
|
473
|
+
version?: boolean | Prisma.EndpointVersionDefaultArgs<ExtArgs>;
|
|
474
|
+
revision?: boolean | Prisma.RevisionDefaultArgs<ExtArgs>;
|
|
475
|
+
}, ExtArgs["result"]["endpoint"]>;
|
|
476
|
+
export type EndpointSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
477
|
+
id?: boolean;
|
|
478
|
+
createdAt?: boolean;
|
|
479
|
+
type?: boolean;
|
|
480
|
+
revisionId?: boolean;
|
|
481
|
+
isDeleted?: boolean;
|
|
482
|
+
versionId?: boolean;
|
|
483
|
+
version?: boolean | Prisma.EndpointVersionDefaultArgs<ExtArgs>;
|
|
484
|
+
revision?: boolean | Prisma.RevisionDefaultArgs<ExtArgs>;
|
|
485
|
+
}, ExtArgs["result"]["endpoint"]>;
|
|
486
|
+
export type EndpointSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
487
|
+
id?: boolean;
|
|
488
|
+
createdAt?: boolean;
|
|
489
|
+
type?: boolean;
|
|
490
|
+
revisionId?: boolean;
|
|
491
|
+
isDeleted?: boolean;
|
|
492
|
+
versionId?: boolean;
|
|
493
|
+
version?: boolean | Prisma.EndpointVersionDefaultArgs<ExtArgs>;
|
|
494
|
+
revision?: boolean | Prisma.RevisionDefaultArgs<ExtArgs>;
|
|
495
|
+
}, ExtArgs["result"]["endpoint"]>;
|
|
496
|
+
export type EndpointSelectScalar = {
|
|
497
|
+
id?: boolean;
|
|
498
|
+
createdAt?: boolean;
|
|
499
|
+
type?: boolean;
|
|
500
|
+
revisionId?: boolean;
|
|
501
|
+
isDeleted?: boolean;
|
|
502
|
+
versionId?: boolean;
|
|
503
|
+
};
|
|
504
|
+
export type EndpointOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "createdAt" | "type" | "revisionId" | "isDeleted" | "versionId", ExtArgs["result"]["endpoint"]>;
|
|
505
|
+
export type EndpointInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
506
|
+
version?: boolean | Prisma.EndpointVersionDefaultArgs<ExtArgs>;
|
|
507
|
+
revision?: boolean | Prisma.RevisionDefaultArgs<ExtArgs>;
|
|
508
|
+
};
|
|
509
|
+
export type EndpointIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
510
|
+
version?: boolean | Prisma.EndpointVersionDefaultArgs<ExtArgs>;
|
|
511
|
+
revision?: boolean | Prisma.RevisionDefaultArgs<ExtArgs>;
|
|
512
|
+
};
|
|
513
|
+
export type EndpointIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
514
|
+
version?: boolean | Prisma.EndpointVersionDefaultArgs<ExtArgs>;
|
|
515
|
+
revision?: boolean | Prisma.RevisionDefaultArgs<ExtArgs>;
|
|
516
|
+
};
|
|
517
|
+
export type $EndpointPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
518
|
+
name: "Endpoint";
|
|
519
|
+
objects: {
|
|
520
|
+
version: Prisma.$EndpointVersionPayload<ExtArgs>;
|
|
521
|
+
revision: Prisma.$RevisionPayload<ExtArgs>;
|
|
522
|
+
};
|
|
523
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
524
|
+
id: string;
|
|
525
|
+
createdAt: Date;
|
|
526
|
+
type: $Enums.EndpointType;
|
|
527
|
+
revisionId: string;
|
|
528
|
+
isDeleted: boolean;
|
|
529
|
+
versionId: string;
|
|
530
|
+
}, ExtArgs["result"]["endpoint"]>;
|
|
531
|
+
composites: {};
|
|
532
|
+
};
|
|
533
|
+
export type EndpointGetPayload<S extends boolean | null | undefined | EndpointDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$EndpointPayload, S>;
|
|
534
|
+
export type EndpointCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<EndpointFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
535
|
+
select?: EndpointCountAggregateInputType | true;
|
|
536
|
+
};
|
|
537
|
+
export interface EndpointDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
538
|
+
[K: symbol]: {
|
|
539
|
+
types: Prisma.TypeMap<ExtArgs>['model']['Endpoint'];
|
|
540
|
+
meta: {
|
|
541
|
+
name: 'Endpoint';
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
findUnique<T extends EndpointFindUniqueArgs>(args: Prisma.SelectSubset<T, EndpointFindUniqueArgs<ExtArgs>>): Prisma.Prisma__EndpointClient<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
545
|
+
findUniqueOrThrow<T extends EndpointFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, EndpointFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__EndpointClient<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
546
|
+
findFirst<T extends EndpointFindFirstArgs>(args?: Prisma.SelectSubset<T, EndpointFindFirstArgs<ExtArgs>>): Prisma.Prisma__EndpointClient<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
547
|
+
findFirstOrThrow<T extends EndpointFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, EndpointFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__EndpointClient<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
548
|
+
findMany<T extends EndpointFindManyArgs>(args?: Prisma.SelectSubset<T, EndpointFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
549
|
+
create<T extends EndpointCreateArgs>(args: Prisma.SelectSubset<T, EndpointCreateArgs<ExtArgs>>): Prisma.Prisma__EndpointClient<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
550
|
+
createMany<T extends EndpointCreateManyArgs>(args?: Prisma.SelectSubset<T, EndpointCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
551
|
+
createManyAndReturn<T extends EndpointCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, EndpointCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
552
|
+
delete<T extends EndpointDeleteArgs>(args: Prisma.SelectSubset<T, EndpointDeleteArgs<ExtArgs>>): Prisma.Prisma__EndpointClient<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
553
|
+
update<T extends EndpointUpdateArgs>(args: Prisma.SelectSubset<T, EndpointUpdateArgs<ExtArgs>>): Prisma.Prisma__EndpointClient<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
554
|
+
deleteMany<T extends EndpointDeleteManyArgs>(args?: Prisma.SelectSubset<T, EndpointDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
555
|
+
updateMany<T extends EndpointUpdateManyArgs>(args: Prisma.SelectSubset<T, EndpointUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
556
|
+
updateManyAndReturn<T extends EndpointUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, EndpointUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
557
|
+
upsert<T extends EndpointUpsertArgs>(args: Prisma.SelectSubset<T, EndpointUpsertArgs<ExtArgs>>): Prisma.Prisma__EndpointClient<runtime.Types.Result.GetResult<Prisma.$EndpointPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
558
|
+
count<T extends EndpointCountArgs>(args?: Prisma.Subset<T, EndpointCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], EndpointCountAggregateOutputType> : number>;
|
|
559
|
+
aggregate<T extends EndpointAggregateArgs>(args: Prisma.Subset<T, EndpointAggregateArgs>): Prisma.PrismaPromise<GetEndpointAggregateType<T>>;
|
|
560
|
+
groupBy<T extends EndpointGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
561
|
+
orderBy: EndpointGroupByArgs['orderBy'];
|
|
562
|
+
} : {
|
|
563
|
+
orderBy?: EndpointGroupByArgs['orderBy'];
|
|
564
|
+
}, OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, ByFields extends Prisma.MaybeTupleToUnion<T['by']>, ByValid extends Prisma.Has<ByFields, OrderFields>, HavingFields extends Prisma.GetHavingFields<T['having']>, HavingValid extends Prisma.Has<ByFields, HavingFields>, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? {
|
|
565
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
566
|
+
Error,
|
|
567
|
+
'Field ',
|
|
568
|
+
P,
|
|
569
|
+
` in "having" needs to be provided in "by"`
|
|
570
|
+
];
|
|
571
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
572
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
573
|
+
}[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
574
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
575
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
576
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
577
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, EndpointGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetEndpointGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
578
|
+
readonly fields: EndpointFieldRefs;
|
|
579
|
+
}
|
|
580
|
+
export interface Prisma__EndpointClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
581
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
582
|
+
version<T extends Prisma.EndpointVersionDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.EndpointVersionDefaultArgs<ExtArgs>>): Prisma.Prisma__EndpointVersionClient<runtime.Types.Result.GetResult<Prisma.$EndpointVersionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
583
|
+
revision<T extends Prisma.RevisionDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.RevisionDefaultArgs<ExtArgs>>): Prisma.Prisma__RevisionClient<runtime.Types.Result.GetResult<Prisma.$RevisionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
584
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
585
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
586
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
587
|
+
}
|
|
588
|
+
export interface EndpointFieldRefs {
|
|
589
|
+
readonly id: Prisma.FieldRef<"Endpoint", 'String'>;
|
|
590
|
+
readonly createdAt: Prisma.FieldRef<"Endpoint", 'DateTime'>;
|
|
591
|
+
readonly type: Prisma.FieldRef<"Endpoint", 'EndpointType'>;
|
|
592
|
+
readonly revisionId: Prisma.FieldRef<"Endpoint", 'String'>;
|
|
593
|
+
readonly isDeleted: Prisma.FieldRef<"Endpoint", 'Boolean'>;
|
|
594
|
+
readonly versionId: Prisma.FieldRef<"Endpoint", 'String'>;
|
|
595
|
+
}
|
|
596
|
+
export type EndpointFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
597
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
598
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
599
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
600
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
601
|
+
};
|
|
602
|
+
export type EndpointFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
603
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
604
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
605
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
606
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
607
|
+
};
|
|
608
|
+
export type EndpointFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
609
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
610
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
611
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
612
|
+
where?: Prisma.EndpointWhereInput;
|
|
613
|
+
orderBy?: Prisma.EndpointOrderByWithRelationInput | Prisma.EndpointOrderByWithRelationInput[];
|
|
614
|
+
cursor?: Prisma.EndpointWhereUniqueInput;
|
|
615
|
+
take?: number;
|
|
616
|
+
skip?: number;
|
|
617
|
+
distinct?: Prisma.EndpointScalarFieldEnum | Prisma.EndpointScalarFieldEnum[];
|
|
618
|
+
};
|
|
619
|
+
export type EndpointFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
620
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
621
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
622
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
623
|
+
where?: Prisma.EndpointWhereInput;
|
|
624
|
+
orderBy?: Prisma.EndpointOrderByWithRelationInput | Prisma.EndpointOrderByWithRelationInput[];
|
|
625
|
+
cursor?: Prisma.EndpointWhereUniqueInput;
|
|
626
|
+
take?: number;
|
|
627
|
+
skip?: number;
|
|
628
|
+
distinct?: Prisma.EndpointScalarFieldEnum | Prisma.EndpointScalarFieldEnum[];
|
|
629
|
+
};
|
|
630
|
+
export type EndpointFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
631
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
632
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
633
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
634
|
+
where?: Prisma.EndpointWhereInput;
|
|
635
|
+
orderBy?: Prisma.EndpointOrderByWithRelationInput | Prisma.EndpointOrderByWithRelationInput[];
|
|
636
|
+
cursor?: Prisma.EndpointWhereUniqueInput;
|
|
637
|
+
take?: number;
|
|
638
|
+
skip?: number;
|
|
639
|
+
distinct?: Prisma.EndpointScalarFieldEnum | Prisma.EndpointScalarFieldEnum[];
|
|
640
|
+
};
|
|
641
|
+
export type EndpointCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
642
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
643
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
644
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
645
|
+
data: Prisma.XOR<Prisma.EndpointCreateInput, Prisma.EndpointUncheckedCreateInput>;
|
|
646
|
+
};
|
|
647
|
+
export type EndpointCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
648
|
+
data: Prisma.EndpointCreateManyInput | Prisma.EndpointCreateManyInput[];
|
|
649
|
+
skipDuplicates?: boolean;
|
|
650
|
+
};
|
|
651
|
+
export type EndpointCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
652
|
+
select?: Prisma.EndpointSelectCreateManyAndReturn<ExtArgs> | null;
|
|
653
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
654
|
+
data: Prisma.EndpointCreateManyInput | Prisma.EndpointCreateManyInput[];
|
|
655
|
+
skipDuplicates?: boolean;
|
|
656
|
+
include?: Prisma.EndpointIncludeCreateManyAndReturn<ExtArgs> | null;
|
|
657
|
+
};
|
|
658
|
+
export type EndpointUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
659
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
660
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
661
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
662
|
+
data: Prisma.XOR<Prisma.EndpointUpdateInput, Prisma.EndpointUncheckedUpdateInput>;
|
|
663
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
664
|
+
};
|
|
665
|
+
export type EndpointUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
666
|
+
data: Prisma.XOR<Prisma.EndpointUpdateManyMutationInput, Prisma.EndpointUncheckedUpdateManyInput>;
|
|
667
|
+
where?: Prisma.EndpointWhereInput;
|
|
668
|
+
limit?: number;
|
|
669
|
+
};
|
|
670
|
+
export type EndpointUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
671
|
+
select?: Prisma.EndpointSelectUpdateManyAndReturn<ExtArgs> | null;
|
|
672
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
673
|
+
data: Prisma.XOR<Prisma.EndpointUpdateManyMutationInput, Prisma.EndpointUncheckedUpdateManyInput>;
|
|
674
|
+
where?: Prisma.EndpointWhereInput;
|
|
675
|
+
limit?: number;
|
|
676
|
+
include?: Prisma.EndpointIncludeUpdateManyAndReturn<ExtArgs> | null;
|
|
677
|
+
};
|
|
678
|
+
export type EndpointUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
679
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
680
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
681
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
682
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
683
|
+
create: Prisma.XOR<Prisma.EndpointCreateInput, Prisma.EndpointUncheckedCreateInput>;
|
|
684
|
+
update: Prisma.XOR<Prisma.EndpointUpdateInput, Prisma.EndpointUncheckedUpdateInput>;
|
|
685
|
+
};
|
|
686
|
+
export type EndpointDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
687
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
688
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
689
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
690
|
+
where: Prisma.EndpointWhereUniqueInput;
|
|
691
|
+
};
|
|
692
|
+
export type EndpointDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
693
|
+
where?: Prisma.EndpointWhereInput;
|
|
694
|
+
limit?: number;
|
|
695
|
+
};
|
|
696
|
+
export type EndpointDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
697
|
+
select?: Prisma.EndpointSelect<ExtArgs> | null;
|
|
698
|
+
omit?: Prisma.EndpointOmit<ExtArgs> | null;
|
|
699
|
+
include?: Prisma.EndpointInclude<ExtArgs> | null;
|
|
700
|
+
};
|
|
701
|
+
export {};
|