@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
package/dist/graphql/index.cjs
CHANGED
|
@@ -5008,8 +5008,18 @@ var COUPON = import_client78.gql`
|
|
|
5008
5008
|
${COUPON_DATA_FIELDS_FRAGMENT}
|
|
5009
5009
|
`;
|
|
5010
5010
|
var GET_COUPONS = import_client78.gql`
|
|
5011
|
-
query getCoupons(
|
|
5012
|
-
|
|
5011
|
+
query getCoupons(
|
|
5012
|
+
$region: String
|
|
5013
|
+
$category: String
|
|
5014
|
+
$resourceId: String
|
|
5015
|
+
$resourceType: ResourceTypeEnum
|
|
5016
|
+
) {
|
|
5017
|
+
coupons(
|
|
5018
|
+
region: $region
|
|
5019
|
+
category: $category
|
|
5020
|
+
resourceId: $resourceId
|
|
5021
|
+
resourceType: $resourceType
|
|
5022
|
+
) {
|
|
5013
5023
|
active {
|
|
5014
5024
|
listName
|
|
5015
5025
|
data {
|