@signskart/shared 1.3.8 → 1.3.9

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.
package/dist/index.d.mts CHANGED
@@ -128,6 +128,7 @@ interface IProduct {
128
128
  tag: string[];
129
129
  variants: IVariant[];
130
130
  hasVariant: boolean;
131
+ hasSize: boolean;
131
132
  prices: IPrices;
132
133
  status: boolean;
133
134
  store: IStore;
package/dist/index.d.ts CHANGED
@@ -128,6 +128,7 @@ interface IProduct {
128
128
  tag: string[];
129
129
  variants: IVariant[];
130
130
  hasVariant: boolean;
131
+ hasSize: boolean;
131
132
  prices: IPrices;
132
133
  status: boolean;
133
134
  store: IStore;
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@signskart/shared",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "Production-grade upload manager SDK with queue, progress tracking, retry logic, and multi-provider support (S3, Cloudinary).",
5
5
  "author": "Signskart",
6
6
  "license": "UNLICENSED",
7
7
  "main": "dist/index.cjs",
8
8
  "module": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
10
- "files": ["dist"],
10
+ "files": [
11
+ "dist"
12
+ ],
11
13
  "exports": {
12
14
  ".": {
13
15
  "import": "./dist/index.js",
@@ -32,4 +34,4 @@
32
34
  "tsup": "^8.0.0",
33
35
  "typescript": "^5.0.0"
34
36
  }
35
- }
37
+ }