@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.
@@ -33,7 +33,7 @@ import {
33
33
  resourceRelationsSchema,
34
34
  termsAgreementSchema,
35
35
  userLicenseSchema
36
- } from "../chunk-VQOH37OR.mjs";
36
+ } from "../chunk-7RUK3JKI.mjs";
37
37
  import "../chunk-3QS3WKRC.mjs";
38
38
  export {
39
39
  APP_SETTINGS_ID,
@@ -8261,6 +8261,7 @@ var USER_ACTIVITY_FIELDS_FRAGMENT = gql`
8261
8261
  fragment UserActivityFields on UserActivityType {
8262
8262
  favourites {
8263
8263
  events
8264
+ partners
8264
8265
  vendors
8265
8266
  }
8266
8267
  going {
@@ -9248,6 +9249,9 @@ var GET_USER_ACTIVITIES = gql`
9248
9249
  events {
9249
9250
  ...EventListItemFields
9250
9251
  }
9252
+ partners {
9253
+ ...PartnerFields
9254
+ }
9251
9255
  vendors {
9252
9256
  ...VendorFields
9253
9257
  }
@@ -9271,6 +9275,7 @@ var GET_USER_ACTIVITIES = gql`
9271
9275
  }
9272
9276
  ${EVENT_LIST_ITEM}
9273
9277
  ${VENDOR}
9278
+ ${PARTNER}
9274
9279
  `;
9275
9280
  var GET_USER_RESOURCES = gql`
9276
9281
  query getUserResources($userId: ID!) {
@@ -10284,8 +10289,7 @@ var vendorMenuSchema = create$3({
10284
10289
  description: create$6().nullable().optional(),
10285
10290
  name: create$6().nullable().required("Product name is required"),
10286
10291
  price: create$5().transform((v, o3) => o3 === "" ? null : v).min(1, "Product price must be greater than 0").required("Product price is required"),
10287
- priceUnit: create$6().required("Product unit is required"),
10288
- productGroups: create$2().of(create$6().defined()).min(1, "Product groups are required").required("Product groups are required")
10292
+ priceUnit: create$6().required("Product unit is required")
10289
10293
  });
10290
10294
  var vendorSchema = globalResourceSchema.shape({
10291
10295
  categories: categorySchema.min(1, "Category list must contain at least one item").required("Categories are required"),
@@ -10510,7 +10514,7 @@ var partnerSchema = globalResourceSchema.shape({
10510
10514
  var EnumPostType = /* @__PURE__ */ ((EnumPostType2) => {
10511
10515
  EnumPostType2["DAILY_MEETS"] = "daily_meets";
10512
10516
  EnumPostType2["DAILY_TIPS"] = "daily_tips";
10513
- EnumPostType2["DAILY_POLL"] = "daily_poll";
10517
+ EnumPostType2["DAILY_GAMES"] = "daily_games";
10514
10518
  return EnumPostType2;
10515
10519
  })(EnumPostType || {});
10516
10520
  var EnumPostContentType = /* @__PURE__ */ ((EnumPostContentType2) => {