@timardex/cluemart-shared 1.3.13 → 1.3.14

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
@@ -961,6 +961,7 @@ type PostContentType = Omit<PostContentFormData, "contentData"> & {
961
961
  };
962
962
  type PostType = Omit<PostFormData, "content"> & {
963
963
  _id: string;
964
+ active: boolean;
964
965
  content: PostContentType;
965
966
  createdAt: Date;
966
967
  deletedAt: Date | null;
package/dist/index.d.ts CHANGED
@@ -961,6 +961,7 @@ type PostContentType = Omit<PostContentFormData, "contentData"> & {
961
961
  };
962
962
  type PostType = Omit<PostFormData, "content"> & {
963
963
  _id: string;
964
+ active: boolean;
964
965
  content: PostContentType;
965
966
  createdAt: Date;
966
967
  deletedAt: Date | null;
package/dist/index.mjs CHANGED
@@ -5082,6 +5082,7 @@ var POST_CONTENT_FIELDS_FRAGMENT = gql31`
5082
5082
  var POST_FIELDS_FRAGMENT = gql31`
5083
5083
  fragment PostFields on PostType {
5084
5084
  _id
5085
+ active
5085
5086
  content {
5086
5087
  ...PostContentFields
5087
5088
  }