expo-backend-types 0.9.0-EXPO-249-EB-Modelo.5 → 0.9.0-EXPO-249-EB-Modelo.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/account/dto/account.dto.d.ts +6 -4
- package/dist/src/account/dto/create-account.dto.d.ts +12 -8
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
- package/dist/src/account/dto/get-me.dto.d.ts +6 -4
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
- package/dist/src/auth/dto/login.dto.d.ts +11 -8
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
- package/dist/src/i18n/es.d.ts +21 -0
- package/dist/src/i18n/es.js +21 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/create-profile.dto.d.ts +694 -0
- package/dist/src/profile/dto/create-profile.dto.js +84 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +125 -0
- package/dist/src/profile/dto/delete-profile.dto.js +10 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +16 -16
- package/dist/src/profile/dto/find-all-profile.dto.js +4 -4
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +655 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.js +34 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-id-profile.dto.js +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +16 -16
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +2 -2
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +16 -16
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +4 -4
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/profile.dto.js +7 -3
- package/dist/src/profile/dto/update-profile.dto.d.ts +360 -0
- package/dist/src/profile/dto/update-profile.dto.js +55 -0
- package/dist/src/profile/exports.d.ts +4 -0
- package/dist/src/profile/exports.js +4 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +16 -16
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +16 -16
- package/dist/types/prisma-schema/edge.js +5 -4
- package/dist/types/prisma-schema/index-browser.js +2 -1
- package/dist/types/prisma-schema/index.d.ts +9 -2
- package/dist/types/prisma-schema/index.js +5 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +2 -0
- package/dist/types/prisma-schema/wasm.js +2 -1
- package/dist/types/schema.d.ts +411 -123
- package/package.json +4 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "expo-backend-types",
|
3
|
-
"version": "0.9.0-EXPO-249-EB-Modelo.
|
3
|
+
"version": "0.9.0-EXPO-249-EB-Modelo.7",
|
4
4
|
"description": "",
|
5
5
|
"author": "Expo",
|
6
6
|
"private": false,
|
@@ -54,6 +54,7 @@
|
|
54
54
|
"openapi3-ts": "^4.4.0",
|
55
55
|
"patch-package": "^8.0.0",
|
56
56
|
"reflect-metadata": "^0.2.0",
|
57
|
+
"string-comparison": "^1.3.0",
|
57
58
|
"zod": "^3.23.8"
|
58
59
|
},
|
59
60
|
"devDependencies": {
|
@@ -67,6 +68,7 @@
|
|
67
68
|
"@types/express": "^4.17.17",
|
68
69
|
"@types/jest": "^29.5.2",
|
69
70
|
"@types/json-to-pretty-yaml": "^1.2.1",
|
71
|
+
"@types/luxon": "^3.4.2",
|
70
72
|
"@types/node": "^20.3.1",
|
71
73
|
"@types/supertest": "^6.0.0",
|
72
74
|
"@typescript-eslint/eslint-plugin": "^8.8.0",
|
@@ -79,6 +81,7 @@
|
|
79
81
|
"husky": "^9.0.11",
|
80
82
|
"jest": "^29.5.0",
|
81
83
|
"lint-staged": "^15.2.5",
|
84
|
+
"luxon": "^3.5.0",
|
82
85
|
"openapi-typescript": "^7.0.0-rc.0",
|
83
86
|
"prettier": "^3.0.0",
|
84
87
|
"prisma": "^5.14.0",
|