@duvdu-v1/duvdu 1.1.172 → 1.1.175

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/build/config/winston.js +2 -1
  2. package/build/index.d.ts +3 -0
  3. package/build/index.js +3 -0
  4. package/build/middlewares/global-error-handling.middleware.js +1 -1
  5. package/build/middlewares/global-upload.middleware.d.ts +1 -2
  6. package/build/models/Bookmark-projects.model.d.ts +33 -0
  7. package/build/models/Bookmark-projects.model.js +12 -0
  8. package/build/models/Bookmark.model.d.ts +1 -1
  9. package/build/models/Bookmark.model.js +2 -1
  10. package/build/models/Plan.model.d.ts +1 -1
  11. package/build/models/Review.model.d.ts +2 -2
  12. package/build/models/Role.model.d.ts +1 -1
  13. package/build/models/Term.model.d.ts +3 -3
  14. package/build/models/Ticket.model.d.ts +3 -3
  15. package/build/models/User.model.d.ts +1 -1
  16. package/build/models/User.model.js +23 -11
  17. package/build/models/all-contracts.model.d.ts +2 -2
  18. package/build/models/allProjects.model.d.ts +1 -1
  19. package/build/models/category.model.d.ts +3 -3
  20. package/build/models/contracts.model.d.ts +2 -2
  21. package/build/models/copyrights.model.d.ts +2 -2
  22. package/build/models/coupon.model.d.ts +2 -2
  23. package/build/models/favourites.model.d.ts +32 -0
  24. package/build/models/favourites.model.js +11 -0
  25. package/build/models/follow.model.d.ts +2 -2
  26. package/build/models/messages.model.d.ts +2 -2
  27. package/build/models/notification.model.d.ts +2 -2
  28. package/build/models/portfolio-post.model.d.ts +3 -3
  29. package/build/models/portfolio-post.model.js +21 -9
  30. package/build/models/producer.model.d.ts +2 -2
  31. package/build/models/producer_contracts.model.d.ts +2 -2
  32. package/build/models/producer_contracts.model.js +12 -8
  33. package/build/models/projectViews.model.d.ts +1 -1
  34. package/build/models/ranks.model.d.ts +1 -1
  35. package/build/models/rental.model.d.ts +4 -3
  36. package/build/models/rental.model.js +3 -3
  37. package/build/models/report.model.d.ts +2 -2
  38. package/build/models/session.model.d.ts +2 -2
  39. package/build/models/settings.model.d.ts +1 -1
  40. package/build/models/studio-booking.model.d.ts +3 -3
  41. package/build/models/teamProject.model.d.ts +3 -3
  42. package/build/models/userSession.model.d.ts +2 -2
  43. package/build/services/rank.service.d.ts +1 -1
  44. package/build/types/Bookmarks.d.ts +2 -3
  45. package/build/types/Plan.d.ts +1 -1
  46. package/build/types/Projects.d.ts +1 -1
  47. package/build/types/Rate.d.ts +1 -1
  48. package/build/types/Ticket.d.ts +1 -1
  49. package/build/types/User.d.ts +5 -4
  50. package/build/types/copyrights-order.d.ts +2 -2
  51. package/build/types/portfolio-post-order.d.ts +2 -2
  52. package/build/utils/api-feature.d.ts +3 -3
  53. package/package.json +56 -57
package/package.json CHANGED
@@ -1,57 +1,56 @@
1
- {
2
- "name": "@duvdu-v1/duvdu",
3
- "version": "1.1.172",
4
- "main": "./build/index.js",
5
- "types": "./build/index.d.ts",
6
- "files": [
7
- "build/**/*"
8
- ],
9
- "scripts": {
10
- "clean": "rimraf ./build",
11
- "build": "npm run clean && tsc",
12
- "fix:build": "mv ./build/common/src/* ./build && rm -rf ./build/auth ./build/common",
13
- "pub": "git add . && git commit -m \"updates\" && npm version patch && npm run build && npm publish",
14
- "lint": "eslint .",
15
- "lint:fix": "eslint --fix .",
16
- "format": "prettier --write ."
17
- },
18
- "keywords": [],
19
- "author": "motemed khaled",
20
- "license": "ISC",
21
- "dependencies": {
22
- "@duvdu-v1/duvdu": "^1.1.116",
23
- "@types/express": "^4.17.21",
24
- "@types/express-session": "^1.18.0",
25
- "@types/jsonwebtoken": "^9.0.5",
26
- "@types/multer": "^1.4.11",
27
- "@types/node": "^20.11.0",
28
- "@typescript-eslint/eslint-plugin": "^6.19.0",
29
- "@typescript-eslint/parser": "^6.19.0",
30
- "aws-sdk": "^2.1595.0",
31
- "connect-redis": "^7.1.1",
32
- "express": "^4.18.2",
33
- "express-async-errors": "^3.1.1",
34
- "express-session": "^1.18.0",
35
- "express-validator": "^7.0.1",
36
- "jsonwebtoken": "^9.0.2",
37
- "mongoose": "^8.0.4",
38
- "multer": "^1.4.5-lts.1",
39
- "node-nats-streaming": "^0.3.2",
40
- "redis": "^4.6.13",
41
- "rimraf": "^5.0.5",
42
- "typescript": "^5.3.3",
43
- "uuid": "^9.0.1",
44
- "winston": "^3.13.0",
45
- "winston-daily-rotate-file": "^5.0.0"
46
- },
47
- "devDependencies": {
48
- "@types/uuid": "^9.0.8",
49
- "del-cli": "^5.1.0",
50
- "eslint": "^8.56.0",
51
- "eslint-config-prettier": "^9.1.0",
52
- "eslint-plugin-import": "^2.29.1",
53
- "eslint-plugin-prettier": "^5.1.3",
54
- "prettier": "^3.2.4"
55
- },
56
- "description": ""
57
- }
1
+ {
2
+ "name": "@duvdu-v1/duvdu",
3
+ "version": "1.1.175",
4
+ "main": "./build/index.js",
5
+ "types": "./build/index.d.ts",
6
+ "files": [
7
+ "build/**/*"
8
+ ],
9
+ "scripts": {
10
+ "clean": "rimraf ./build",
11
+ "build": "npm run clean && tsc",
12
+ "fix:build": "mv ./build/common/src/* ./build && rm -rf ./build/auth ./build/common",
13
+ "pub": "git add . && git commit -m \"updates\" && npm version patch && npm run build && npm publish",
14
+ "lint": "eslint .",
15
+ "lint:fix": "eslint --fix .",
16
+ "format": "prettier --write ."
17
+ },
18
+ "keywords": [],
19
+ "author": "motemed khaled",
20
+ "license": "ISC",
21
+ "dependencies": {
22
+ "@types/express": "^4.17.21",
23
+ "@types/express-session": "^1.18.0",
24
+ "@types/jsonwebtoken": "^9.0.5",
25
+ "@types/multer": "^1.4.11",
26
+ "@types/node": "^20.11.0",
27
+ "@typescript-eslint/eslint-plugin": "^6.19.0",
28
+ "@typescript-eslint/parser": "^6.19.0",
29
+ "aws-sdk": "^2.1595.0",
30
+ "connect-redis": "^7.1.1",
31
+ "express": "^4.18.2",
32
+ "express-async-errors": "^3.1.1",
33
+ "express-session": "^1.18.0",
34
+ "express-validator": "^7.0.1",
35
+ "jsonwebtoken": "^9.0.2",
36
+ "mongoose": "^8.0.4",
37
+ "multer": "^1.4.5-lts.1",
38
+ "node-nats-streaming": "^0.3.2",
39
+ "redis": "^4.6.13",
40
+ "rimraf": "^5.0.5",
41
+ "typescript": "^5.3.3",
42
+ "uuid": "^9.0.1",
43
+ "winston": "^3.13.0",
44
+ "winston-daily-rotate-file": "^5.0.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/uuid": "^9.0.8",
48
+ "del-cli": "^5.1.0",
49
+ "eslint": "^8.56.0",
50
+ "eslint-config-prettier": "^9.1.0",
51
+ "eslint-plugin-import": "^2.29.1",
52
+ "eslint-plugin-prettier": "^5.1.3",
53
+ "prettier": "^3.2.4"
54
+ },
55
+ "description": ""
56
+ }