@zyacreatives/shared 2.5.1 → 2.5.2

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/constants.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.5.1",
3
+ "version": "2.5.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/constants.ts CHANGED
@@ -636,7 +636,7 @@ export const MARKETPLACE_CATEGORIES: MarketplaceCategory[] = [
636
636
  imgUrl:
637
637
  "https://images.unsplash.com/photo-1493612276216-ee3925520721?auto=format&fit=crop&w=800&q=80",
638
638
  },
639
- ];
639
+ ] as const;
640
640
 
641
641
 
642
642
  export const CATEGORIES_MAP: Record<string, string[]> = {
@@ -716,7 +716,7 @@ export const CATEGORIES_MAP: Record<string, string[]> = {
716
716
  "Other": [
717
717
  "Bundles & Kits",
718
718
  ],
719
- };
719
+ } as const;
720
720
 
721
721
 
722
722
  export const SUBCATEGORIES_MAP: Record<string, string[]> = {
@@ -1397,4 +1397,4 @@ export const SUBCATEGORIES_MAP: Record<string, string[]> = {
1397
1397
  "Limited Edition",
1398
1398
  "Seasonal",
1399
1399
  ],
1400
- };
1400
+ } as const;