@timardex/cluemart-server-shared 1.0.95 → 1.0.96
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-WTKUZWRS.mjs → chunk-EIX3V4IW.mjs} +8 -8
- package/dist/chunk-EIX3V4IW.mjs.map +1 -0
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +7 -7
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +7 -7
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.mjs +1 -1
- package/package.json +2 -2
- package/dist/chunk-WTKUZWRS.mjs.map +0 -1
|
@@ -8532,8 +8532,8 @@ var VENDOR_DATETIME_FIELDS_FRAGMENT = gql`
|
|
|
8532
8532
|
startTime
|
|
8533
8533
|
}
|
|
8534
8534
|
`;
|
|
8535
|
-
var
|
|
8536
|
-
fragment
|
|
8535
|
+
var VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT = gql`
|
|
8536
|
+
fragment VendorProductListFields on VendorProductListType {
|
|
8537
8537
|
description
|
|
8538
8538
|
name
|
|
8539
8539
|
price
|
|
@@ -8591,8 +8591,8 @@ var VENDOR = gql`
|
|
|
8591
8591
|
}
|
|
8592
8592
|
products {
|
|
8593
8593
|
active
|
|
8594
|
-
|
|
8595
|
-
...
|
|
8594
|
+
productsList {
|
|
8595
|
+
...VendorProductListFields
|
|
8596
8596
|
}
|
|
8597
8597
|
}
|
|
8598
8598
|
promoCodes
|
|
@@ -8625,7 +8625,7 @@ var VENDOR = gql`
|
|
|
8625
8625
|
${SOCIAL_MEDIA_FIELDS_FRAGMENT}
|
|
8626
8626
|
${POSTER_USAGE_FIELDS_FRAGMENT}
|
|
8627
8627
|
${ASSOCIATES_FIELDS_FRAGMENT}
|
|
8628
|
-
${
|
|
8628
|
+
${VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT}
|
|
8629
8629
|
${CONTACT_DETAILS_FIELDS_FRAGMENT}
|
|
8630
8630
|
${TERMS_AGREEMENT_FIELDS_FRAGMENT}
|
|
8631
8631
|
${RELATION_DATES_FRAGMENT}
|
|
@@ -10228,7 +10228,7 @@ var vendorSchema = globalResourceSchema.shape({
|
|
|
10228
10228
|
categories: categorySchema.min(1, "Category list must contain at least one item").required("Categories are required"),
|
|
10229
10229
|
foodTruck: create$7().label("Food Truck").required("Please specify if the vendor is a food truck"),
|
|
10230
10230
|
products: create$3().shape({
|
|
10231
|
-
|
|
10231
|
+
productsList: create$2().of(vendroMenuSchema).nullable().optional()
|
|
10232
10232
|
}).nullable().optional(),
|
|
10233
10233
|
vendorType: create$8().oneOf(Object.values(EnumVendorType)).required("Please select a Vendor type")
|
|
10234
10234
|
});
|
|
@@ -11534,7 +11534,7 @@ var productTypeSchema = new MongooseSchema13(
|
|
|
11534
11534
|
var productWrapperSchema = new MongooseSchema13(
|
|
11535
11535
|
{
|
|
11536
11536
|
active: { default: false, type: Boolean },
|
|
11537
|
-
|
|
11537
|
+
productsList: { required: false, type: [productTypeSchema] }
|
|
11538
11538
|
},
|
|
11539
11539
|
{ _id: false }
|
|
11540
11540
|
);
|
|
@@ -11869,4 +11869,4 @@ react/cjs/react.development.js:
|
|
|
11869
11869
|
* LICENSE file in the root directory of this source tree.
|
|
11870
11870
|
*)
|
|
11871
11871
|
*/
|
|
11872
|
-
//# sourceMappingURL=chunk-
|
|
11872
|
+
//# sourceMappingURL=chunk-EIX3V4IW.mjs.map
|