@timardex/cluemart-server-shared 1.0.252 → 1.0.254

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.
@@ -5154,6 +5154,7 @@ var EVENT_LIST_ITEM = gql`
5154
5154
  var RELATED_POST_FIELDS_FRAGMENT = gql`
5155
5155
  fragment RelatedPostFields on RelatedPostType {
5156
5156
  postId
5157
+ postSlug
5157
5158
  postType
5158
5159
  }
5159
5160
  `;
@@ -5854,6 +5855,7 @@ var POST_FIELDS_FRAGMENT = gql`
5854
5855
  postType
5855
5856
  resource {
5856
5857
  resourceId
5858
+ resourceSlug
5857
5859
  resourceRegion
5858
5860
  resourceType
5859
5861
  }
@@ -6812,6 +6814,7 @@ var AD_FIELDS_FRAGMENT = gql`
6812
6814
  adTitle
6813
6815
  adType
6814
6816
  resourceId
6817
+ resourceSlug
6815
6818
  resourceName
6816
6819
  resourceRegion
6817
6820
  resourceType
@@ -7502,6 +7505,7 @@ var schemaAdresource = new MongooseSchema({
7502
7505
  resourceId: { required: true, type: String },
7503
7506
  resourceName: { required: true, type: String },
7504
7507
  resourceRegion: { required: true, type: String },
7508
+ resourceSlug: { required: true, type: String },
7505
7509
  resourceType: {
7506
7510
  enum: Object.values(EnumResourceType),
7507
7511
  required: true,