@longvansoftware/storefront-js-client 3.2.0 → 3.2.1
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.
|
@@ -267,16 +267,18 @@ exports.SUGGEST_VOUCHER = (0, graphql_tag_1.gql) `
|
|
|
267
267
|
$partyId: String
|
|
268
268
|
$customerId: String
|
|
269
269
|
$excludeExpired: Boolean
|
|
270
|
-
$campaignId:String
|
|
271
|
-
$campaignActionId:String
|
|
270
|
+
$campaignId: String
|
|
271
|
+
$campaignActionId: String
|
|
272
|
+
$isBirthday: Boolean
|
|
272
273
|
) {
|
|
273
274
|
suggestVoucher(
|
|
274
275
|
searchVoucherRequest: {
|
|
275
276
|
partyId: $partyId
|
|
276
277
|
customerId: $customerId
|
|
277
278
|
excludeExpired: $excludeExpired
|
|
278
|
-
campaignId
|
|
279
|
-
campaignActionId
|
|
279
|
+
campaignId: $campaignId
|
|
280
|
+
campaignActionId: $campaignActionId
|
|
281
|
+
isBirthday: $isBirthday
|
|
280
282
|
}
|
|
281
283
|
) {
|
|
282
284
|
total
|
|
@@ -14,7 +14,7 @@ export declare class CampaignService extends Service {
|
|
|
14
14
|
getPromotionProductPrice(productId: String, productPrice: number): Promise<any>;
|
|
15
15
|
getVoucherAvailableForCustomer(campaignId: string, campaignActionId: string, customerId: string, excludeExpired: Boolean, isPageAble: Boolean): Promise<any>;
|
|
16
16
|
addCustomerToVoucher(voucherCode: string, userId: string, affiliateId: string): Promise<any>;
|
|
17
|
-
suggestVoucher(customerId: string, campaignId: string, campaignActionId: string): Promise<any>;
|
|
17
|
+
suggestVoucher(customerId: string, campaignId: string, campaignActionId: string, isBirthday: Boolean): Promise<any>;
|
|
18
18
|
getCampaignActionById(id: string): Promise<any>;
|
|
19
19
|
searchProductGiftPromotionResponse(productIds: string[], campaignActionId: string): Promise<any>;
|
|
20
20
|
}
|
|
@@ -160,7 +160,7 @@ class CampaignService extends serviceSDK_1.Service {
|
|
|
160
160
|
}
|
|
161
161
|
});
|
|
162
162
|
}
|
|
163
|
-
suggestVoucher(customerId, campaignId, campaignActionId) {
|
|
163
|
+
suggestVoucher(customerId, campaignId, campaignActionId, isBirthday) {
|
|
164
164
|
return __awaiter(this, void 0, void 0, function* () {
|
|
165
165
|
const query = queries_1.SUGGEST_VOUCHER;
|
|
166
166
|
const variables = {
|
|
@@ -169,6 +169,7 @@ class CampaignService extends serviceSDK_1.Service {
|
|
|
169
169
|
campaignId: campaignId,
|
|
170
170
|
campaignActionId: campaignActionId,
|
|
171
171
|
excludeExpired: true,
|
|
172
|
+
isBirthday: isBirthday,
|
|
172
173
|
};
|
|
173
174
|
try {
|
|
174
175
|
const response = yield this.graphqlQuery(query, variables);
|