@timardex/cluemart-shared 1.7.63 → 1.7.64
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-63CHIBEP.mjs → chunk-6BK45KML.mjs} +13 -3
- package/dist/{chunk-63CHIBEP.mjs.map → chunk-6BK45KML.mjs.map} +1 -1
- package/dist/graphql/index.cjs +12 -2
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -0
- package/dist/graphql/index.d.ts +2 -0
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +12 -2
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +12 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +12 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3684,8 +3684,18 @@ var COUPON = gql36`
|
|
|
3684
3684
|
${COUPON_DATA_FIELDS_FRAGMENT}
|
|
3685
3685
|
`;
|
|
3686
3686
|
var GET_COUPONS = gql36`
|
|
3687
|
-
query getCoupons(
|
|
3688
|
-
|
|
3687
|
+
query getCoupons(
|
|
3688
|
+
$region: String
|
|
3689
|
+
$category: String
|
|
3690
|
+
$resourceId: String
|
|
3691
|
+
$resourceType: ResourceTypeEnum
|
|
3692
|
+
) {
|
|
3693
|
+
coupons(
|
|
3694
|
+
region: $region
|
|
3695
|
+
category: $category
|
|
3696
|
+
resourceId: $resourceId
|
|
3697
|
+
resourceType: $resourceType
|
|
3698
|
+
) {
|
|
3689
3699
|
active {
|
|
3690
3700
|
listName
|
|
3691
3701
|
data {
|
|
@@ -3985,4 +3995,4 @@ export {
|
|
|
3985
3995
|
useGetCoupons,
|
|
3986
3996
|
useGetCoupon
|
|
3987
3997
|
};
|
|
3988
|
-
//# sourceMappingURL=chunk-
|
|
3998
|
+
//# sourceMappingURL=chunk-6BK45KML.mjs.map
|