@timardex/cluemart-shared 1.3.19 → 1.3.20

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
@@ -918,7 +918,7 @@ declare enum EnumPostContentType {
918
918
  }
919
919
  type PostContentCover = {
920
920
  cover: ResourceImageType;
921
- coverUpload?: ResourceImageType | null;
921
+ coverUpload?: File | null;
922
922
  };
923
923
  type PostContentTextarea = {
924
924
  textarea: {
@@ -928,7 +928,7 @@ type PostContentTextarea = {
928
928
  };
929
929
  type PostContentImage = {
930
930
  images: ResourceImageType[] | null;
931
- imagesUpload?: ResourceImageType[] | null;
931
+ imagesUpload?: File[] | null;
932
932
  };
933
933
  type PostContentVideo = {
934
934
  video: {
package/dist/index.d.ts CHANGED
@@ -918,7 +918,7 @@ declare enum EnumPostContentType {
918
918
  }
919
919
  type PostContentCover = {
920
920
  cover: ResourceImageType;
921
- coverUpload?: ResourceImageType | null;
921
+ coverUpload?: File | null;
922
922
  };
923
923
  type PostContentTextarea = {
924
924
  textarea: {
@@ -928,7 +928,7 @@ type PostContentTextarea = {
928
928
  };
929
929
  type PostContentImage = {
930
930
  images: ResourceImageType[] | null;
931
- imagesUpload?: ResourceImageType[] | null;
931
+ imagesUpload?: File[] | null;
932
932
  };
933
933
  type PostContentVideo = {
934
934
  video: {