@agroyaar/sdk 3.13.1 → 3.13.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.
- package/dist/index.cjs +3 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -821,8 +821,9 @@ var productsMappers = {
|
|
|
821
821
|
getProduct: (dto) => ({
|
|
822
822
|
id: dto.id,
|
|
823
823
|
name: dto.name,
|
|
824
|
-
|
|
825
|
-
|
|
824
|
+
type: dto.type,
|
|
825
|
+
productId: dto.productId,
|
|
826
|
+
persianName: dto.persianName
|
|
826
827
|
}),
|
|
827
828
|
getProducts: (dto) => dto.map(productsMappers.getProduct)
|
|
828
829
|
};
|
package/dist/index.d.ts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -785,8 +785,9 @@ var productsMappers = {
|
|
|
785
785
|
getProduct: (dto) => ({
|
|
786
786
|
id: dto.id,
|
|
787
787
|
name: dto.name,
|
|
788
|
-
|
|
789
|
-
|
|
788
|
+
type: dto.type,
|
|
789
|
+
productId: dto.productId,
|
|
790
|
+
persianName: dto.persianName
|
|
790
791
|
}),
|
|
791
792
|
getProducts: (dto) => dto.map(productsMappers.getProduct)
|
|
792
793
|
};
|