shopoflex-types 1.0.25 → 1.0.27

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.
@@ -352,9 +352,9 @@ export interface Vendor {
352
352
  en: string;
353
353
  ar: string;
354
354
  };
355
- logo: FileType;
355
+ logo: FileType[];
356
356
  cover: FileType[];
357
- favicon: FileType;
357
+ favicon: FileType[];
358
358
  font: {
359
359
  en: any;
360
360
  ar: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.25",
3
+ "version": "1.0.27",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,9 @@
11
11
  "build": "tsc",
12
12
  "watch": "tsc --watch",
13
13
  "prepublishOnly": "npm run build",
14
- "deploy": "npm run build && npm publish"
14
+ "deploy": "npm version patch && npm run build && npm publish",
15
+ "deploy:minor": "npm version minor && npm run build && npm publish",
16
+ "deploy:major": "npm version major && npm run build && npm publish"
15
17
  },
16
18
  "publishConfig": {
17
19
  "access": "public"