@timardex/cluemart-server-shared 1.0.252 → 1.0.253

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 CHANGED
@@ -5170,6 +5170,7 @@ var EVENT_LIST_ITEM = gql`
5170
5170
  var RELATED_POST_FIELDS_FRAGMENT = gql`
5171
5171
  fragment RelatedPostFields on RelatedPostType {
5172
5172
  postId
5173
+ postSlug
5173
5174
  postType
5174
5175
  }
5175
5176
  `;
@@ -5870,6 +5871,7 @@ var POST_FIELDS_FRAGMENT = gql`
5870
5871
  postType
5871
5872
  resource {
5872
5873
  resourceId
5874
+ resourceSlug
5873
5875
  resourceRegion
5874
5876
  resourceType
5875
5877
  }
@@ -6828,6 +6830,7 @@ var AD_FIELDS_FRAGMENT = gql`
6828
6830
  adTitle
6829
6831
  adType
6830
6832
  resourceId
6833
+ resourceSlug
6831
6834
  resourceName
6832
6835
  resourceRegion
6833
6836
  resourceType
@@ -7518,6 +7521,7 @@ var schemaAdresource = new MongooseSchema({
7518
7521
  resourceId: { required: true, type: String },
7519
7522
  resourceName: { required: true, type: String },
7520
7523
  resourceRegion: { required: true, type: String },
7524
+ resourceSlug: { required: true, type: String },
7521
7525
  resourceType: {
7522
7526
  enum: Object.values(EnumResourceType),
7523
7527
  required: true,