@deallony/shared 1.0.62 → 1.0.63

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.
@@ -1,6 +1,7 @@
1
1
  export type UsedProductType = {
2
2
  id?: number;
3
- condition_id: number;
3
+ condition_id?: number;
4
4
  age_id?: number;
5
- isFree?: boolean;
5
+ isDeliveryAvailable: undefined;
6
+ product_type_id: undefined;
6
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deallony/shared",
3
- "version": "1.0.62",
3
+ "version": "1.0.63",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,8 +11,10 @@
11
11
  "login": "npm login",
12
12
  "deploy": "node scripts/publish.js",
13
13
  "=========": "============= UPDATE APPS LIBRARY =============",
14
- "all:update": "npm run mobile:update",
14
+ "all:update": "npm run mobile:update && npm run backend:update",
15
15
  "mobile:update": "cd ../app && npm install @deallony/shared@latest",
16
+ "backend:update": "cd ../backend-service-marketplace && pnpm install @deallony/shared@latest",
17
+ "dashboard:update": "cd ../frontend-react-aloo && pnpm install @deallony/shared@latest",
16
18
  "========": "============ DEFAULT ============",
17
19
  "build": "tsc",
18
20
  "watch": "tsc --watch",