@revisium/core 1.2.0 → 1.3.1
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/package.json +2 -7
- package/dist/src/__tests__/utils/createMocks.js.map +1 -1
- package/dist/src/__tests__/utils/prepareProject.js +2 -0
- package/dist/src/__tests__/utils/prepareProject.js.map +1 -1
- package/dist/src/api/graphql-api/graphql-api.module.js +1 -2
- package/dist/src/api/graphql-api/graphql-api.module.js.map +1 -1
- package/dist/src/api/rest-api/branch/branch-by-name.controller.d.ts +2 -2
- package/dist/src/api/rest-api/branch/branch-by-name.controller.js +4 -2
- package/dist/src/api/rest-api/branch/branch-by-name.controller.js.map +1 -1
- package/dist/src/api/rest-api/branch/dto/index.d.ts +1 -0
- package/dist/src/api/rest-api/branch/dto/index.js +1 -0
- package/dist/src/api/rest-api/branch/dto/index.js.map +1 -1
- package/dist/src/api/rest-api/branch/dto/touched.model.d.ts +3 -0
- package/dist/src/api/rest-api/branch/dto/touched.model.js +26 -0
- package/dist/src/api/rest-api/branch/dto/touched.model.js.map +1 -0
- package/dist/src/api/rest-api/init-swagger.d.ts +2 -0
- package/dist/src/api/rest-api/init-swagger.js +28 -0
- package/dist/src/api/rest-api/init-swagger.js.map +1 -0
- package/dist/src/api/rest-api/project/project.controller.d.ts +5 -4
- package/dist/src/api/rest-api/project/project.controller.js +21 -8
- package/dist/src/api/rest-api/project/project.controller.js.map +1 -1
- package/dist/src/api/rest-api/share/model/order-by.model.js +2 -2
- package/dist/src/api/rest-api/share/model/order-by.model.js.map +1 -1
- package/dist/src/api/rest-api/share/model/success.model.d.ts +3 -0
- package/dist/src/api/rest-api/share/model/success.model.js +26 -0
- package/dist/src/api/rest-api/share/model/success.model.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/__tests__/utils.d.ts +2 -0
- package/dist/src/api/rest-api/table/dto/__tests__/utils.js +19 -0
- package/dist/src/api/rest-api/table/dto/__tests__/utils.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/get-table-rows.dto.d.ts +2 -0
- package/dist/src/api/rest-api/table/dto/get-table-rows.dto.js +14 -0
- package/dist/src/api/rest-api/table/dto/get-table-rows.dto.js.map +1 -1
- package/dist/src/api/rest-api/table/dto/row/bool-filter.dto.d.ts +4 -0
- package/dist/src/api/rest-api/table/dto/row/bool-filter.dto.js +35 -0
- package/dist/src/api/rest-api/table/dto/row/bool-filter.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/row/datetime-filter.dto.d.ts +9 -0
- package/dist/src/api/rest-api/table/dto/row/datetime-filter.dto.js +72 -0
- package/dist/src/api/rest-api/table/dto/row/datetime-filter.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/row/json-filter.dto.d.ts +15 -0
- package/dist/src/api/rest-api/table/dto/row/json-filter.dto.js +117 -0
- package/dist/src/api/rest-api/table/dto/row/json-filter.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/row/row-where-input.dto.d.ts +19 -0
- package/dist/src/api/rest-api/table/dto/row/row-where-input.dto.js +156 -0
- package/dist/src/api/rest-api/table/dto/row/row-where-input.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/dto/row/string-filter.dto.d.ts +14 -0
- package/dist/src/api/rest-api/table/dto/row/string-filter.dto.js +96 -0
- package/dist/src/api/rest-api/table/dto/row/string-filter.dto.js.map +1 -0
- package/dist/src/api/rest-api/table/table-by-id.controller.d.ts +1 -1
- package/dist/src/api/rest-api/table/table-by-id.controller.js +7 -1
- package/dist/src/api/rest-api/table/table-by-id.controller.js.map +1 -1
- package/dist/src/features/project/commands/handlers/add-user-to-project.handler.d.ts +1 -0
- package/dist/src/features/project/commands/handlers/add-user-to-project.handler.js +12 -0
- package/dist/src/features/project/commands/handlers/add-user-to-project.handler.js.map +1 -1
- package/dist/src/features/project/commands/handlers/delete-project.handler.d.ts +1 -0
- package/dist/src/features/project/commands/handlers/delete-project.handler.js +12 -0
- package/dist/src/features/project/commands/handlers/delete-project.handler.js.map +1 -1
- package/dist/src/features/table/queries/handlers/get-rows-by-table.handler.js +1 -0
- package/dist/src/features/table/queries/handlers/get-rows-by-table.handler.js.map +1 -1
- package/dist/src/features/table/queries/impl/get-rows-by-table.query.d.ts +2 -0
- package/dist/src/features/table/queries/impl/get-rows-by-table.query.js.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +3 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/infrastructure/database/s3.service.js +2 -1
- package/dist/src/infrastructure/database/s3.service.js.map +1 -1
- package/dist/src/infrastructure/health/notification.check.d.ts +3 -1
- package/dist/src/infrastructure/health/notification.check.js +9 -3
- package/dist/src/infrastructure/health/notification.check.js.map +1 -1
- package/dist/src/main.js +2 -24
- package/dist/src/main.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revisium/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Revisium is a tool (UI/API) inspired by JSON (JSON Schema) and Git, designed to provide a flexible and low-level headless CMS solution.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://revisium.io",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@nestjs/jwt": "^11.0.0",
|
|
61
61
|
"@nestjs/microservices": "^11.1.1",
|
|
62
62
|
"@nestjs/passport": "^11.0.5",
|
|
63
|
-
"@nestjs/platform-express": "^11.1.
|
|
63
|
+
"@nestjs/platform-express": "^11.1.2",
|
|
64
64
|
"@nestjs/schedule": "^6.0.0",
|
|
65
65
|
"@nestjs/serve-static": "^5.0.3",
|
|
66
66
|
"@nestjs/swagger": "^11.2.0",
|
|
@@ -123,11 +123,6 @@
|
|
|
123
123
|
"typescript": "^5.8.3",
|
|
124
124
|
"typescript-eslint": "^8.32.1"
|
|
125
125
|
},
|
|
126
|
-
"overrides": {
|
|
127
|
-
"@nestjs/platform-express": {
|
|
128
|
-
"multer": "^2.0.0"
|
|
129
|
-
}
|
|
130
|
-
},
|
|
131
126
|
"jest": {
|
|
132
127
|
"modulePaths": [
|
|
133
128
|
"<rootDir>"
|