@timardex/cluemart-server-shared 1.0.109 → 1.0.110

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
@@ -8273,6 +8273,7 @@ var USER_ACTIVITY_FIELDS_FRAGMENT = gql`
8273
8273
  fragment UserActivityFields on UserActivityType {
8274
8274
  favourites {
8275
8275
  events
8276
+ partners
8276
8277
  vendors
8277
8278
  }
8278
8279
  going {
@@ -9260,6 +9261,9 @@ var GET_USER_ACTIVITIES = gql`
9260
9261
  events {
9261
9262
  ...EventListItemFields
9262
9263
  }
9264
+ partners {
9265
+ ...PartnerFields
9266
+ }
9263
9267
  vendors {
9264
9268
  ...VendorFields
9265
9269
  }
@@ -9283,6 +9287,7 @@ var GET_USER_ACTIVITIES = gql`
9283
9287
  }
9284
9288
  ${EVENT_LIST_ITEM}
9285
9289
  ${VENDOR}
9290
+ ${PARTNER}
9286
9291
  `;
9287
9292
  var GET_USER_RESOURCES = gql`
9288
9293
  query getUserResources($userId: ID!) {
@@ -10296,8 +10301,7 @@ var vendorMenuSchema = create$3({
10296
10301
  description: create$6().nullable().optional(),
10297
10302
  name: create$6().nullable().required("Product name is required"),
10298
10303
  price: create$5().transform((v, o3) => o3 === "" ? null : v).min(1, "Product price must be greater than 0").required("Product price is required"),
10299
- priceUnit: create$6().required("Product unit is required"),
10300
- productGroups: create$2().of(create$6().defined()).min(1, "Product groups are required").required("Product groups are required")
10304
+ priceUnit: create$6().required("Product unit is required")
10301
10305
  });
10302
10306
  var vendorSchema = globalResourceSchema.shape({
10303
10307
  categories: categorySchema.min(1, "Category list must contain at least one item").required("Categories are required"),
@@ -10522,7 +10526,7 @@ var partnerSchema = globalResourceSchema.shape({
10522
10526
  var EnumPostType = /* @__PURE__ */ ((EnumPostType2) => {
10523
10527
  EnumPostType2["DAILY_MEETS"] = "daily_meets";
10524
10528
  EnumPostType2["DAILY_TIPS"] = "daily_tips";
10525
- EnumPostType2["DAILY_POLL"] = "daily_poll";
10529
+ EnumPostType2["DAILY_GAMES"] = "daily_games";
10526
10530
  return EnumPostType2;
10527
10531
  })(EnumPostType || {});
10528
10532
  var EnumPostContentType = /* @__PURE__ */ ((EnumPostContentType2) => {