@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/{chunk-VQOH37OR.mjs → chunk-7RUK3JKI.mjs} +8 -4
- package/dist/chunk-7RUK3JKI.mjs.map +1 -0
- package/dist/index.cjs +7 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +7 -3
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +7 -3
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +7 -3
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.mjs +1 -1
- package/package.json +2 -2
- package/dist/chunk-VQOH37OR.mjs.map +0 -1
|
@@ -8196,6 +8196,7 @@ var USER_ACTIVITY_FIELDS_FRAGMENT = gql`
|
|
|
8196
8196
|
fragment UserActivityFields on UserActivityType {
|
|
8197
8197
|
favourites {
|
|
8198
8198
|
events
|
|
8199
|
+
partners
|
|
8199
8200
|
vendors
|
|
8200
8201
|
}
|
|
8201
8202
|
going {
|
|
@@ -9183,6 +9184,9 @@ var GET_USER_ACTIVITIES = gql`
|
|
|
9183
9184
|
events {
|
|
9184
9185
|
...EventListItemFields
|
|
9185
9186
|
}
|
|
9187
|
+
partners {
|
|
9188
|
+
...PartnerFields
|
|
9189
|
+
}
|
|
9186
9190
|
vendors {
|
|
9187
9191
|
...VendorFields
|
|
9188
9192
|
}
|
|
@@ -9206,6 +9210,7 @@ var GET_USER_ACTIVITIES = gql`
|
|
|
9206
9210
|
}
|
|
9207
9211
|
${EVENT_LIST_ITEM}
|
|
9208
9212
|
${VENDOR}
|
|
9213
|
+
${PARTNER}
|
|
9209
9214
|
`;
|
|
9210
9215
|
var GET_USER_RESOURCES = gql`
|
|
9211
9216
|
query getUserResources($userId: ID!) {
|
|
@@ -10219,8 +10224,7 @@ var vendorMenuSchema = create$3({
|
|
|
10219
10224
|
description: create$6().nullable().optional(),
|
|
10220
10225
|
name: create$6().nullable().required("Product name is required"),
|
|
10221
10226
|
price: create$5().transform((v, o3) => o3 === "" ? null : v).min(1, "Product price must be greater than 0").required("Product price is required"),
|
|
10222
|
-
priceUnit: create$6().required("Product unit is required")
|
|
10223
|
-
productGroups: create$2().of(create$6().defined()).min(1, "Product groups are required").required("Product groups are required")
|
|
10227
|
+
priceUnit: create$6().required("Product unit is required")
|
|
10224
10228
|
});
|
|
10225
10229
|
var vendorSchema = globalResourceSchema.shape({
|
|
10226
10230
|
categories: categorySchema.min(1, "Category list must contain at least one item").required("Categories are required"),
|
|
@@ -10445,7 +10449,7 @@ var partnerSchema = globalResourceSchema.shape({
|
|
|
10445
10449
|
var EnumPostType = /* @__PURE__ */ ((EnumPostType2) => {
|
|
10446
10450
|
EnumPostType2["DAILY_MEETS"] = "daily_meets";
|
|
10447
10451
|
EnumPostType2["DAILY_TIPS"] = "daily_tips";
|
|
10448
|
-
EnumPostType2["
|
|
10452
|
+
EnumPostType2["DAILY_GAMES"] = "daily_games";
|
|
10449
10453
|
return EnumPostType2;
|
|
10450
10454
|
})(EnumPostType || {});
|
|
10451
10455
|
var EnumPostContentType = /* @__PURE__ */ ((EnumPostContentType2) => {
|
|
@@ -11856,4 +11860,4 @@ react/cjs/react.development.js:
|
|
|
11856
11860
|
* LICENSE file in the root directory of this source tree.
|
|
11857
11861
|
*)
|
|
11858
11862
|
*/
|
|
11859
|
-
//# sourceMappingURL=chunk-
|
|
11863
|
+
//# sourceMappingURL=chunk-7RUK3JKI.mjs.map
|