@longvansoftware/service-js-client 1.15.5 → 1.15.6
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.
@@ -82,7 +82,7 @@ exports.GET_CAMPAIGN_ACTION_BY_ID = (0, graphql_tag_1.gql) `
|
|
82
82
|
// }
|
83
83
|
// `;
|
84
84
|
exports.SUGGEST_VOUCHER = (0, graphql_tag_1.gql) `
|
85
|
-
query SuggestVoucher($partyId: String, $excludeExpired: Boolean, $customerId: String, $scope: String, $isNewCustomer: Boolean) {
|
85
|
+
query SuggestVoucher($partyId: String, $excludeExpired: Boolean, $customerId: String, $scope: String, $isNewCustomer: Boolean, $scopeIgnore: String) {
|
86
86
|
suggestVoucher(
|
87
87
|
searchVoucherRequest: {
|
88
88
|
partyId: $partyId
|
@@ -90,6 +90,7 @@ exports.SUGGEST_VOUCHER = (0, graphql_tag_1.gql) `
|
|
90
90
|
customerId: $customerId
|
91
91
|
scope: $scope
|
92
92
|
isNewCustomer: $isNewCustomer
|
93
|
+
scopeIgnore: $scopeIgnore
|
93
94
|
}
|
94
95
|
) {
|
95
96
|
total
|
@@ -6,7 +6,7 @@ export declare class CrmCampingService extends Service {
|
|
6
6
|
searchProductQuantityPromotionAction(productId: string): Promise<any>;
|
7
7
|
addCustomerToVoucher(userId: string, voucherCode: string): Promise<any>;
|
8
8
|
getCampaignActionById(campaignActionId: string): Promise<any>;
|
9
|
-
suggestVoucher(customerId: string, scope: string | null, isNewCustomer: boolean): Promise<any>;
|
9
|
+
suggestVoucher(customerId: string, scopeIgnore: string | null, scope: string | null, isNewCustomer: boolean): Promise<any>;
|
10
10
|
searchVouchers(campaignId: String, campaignActionId: String, campaignActionType: String, customerId: String, pageNumber: number, pageSize: number): Promise<any>;
|
11
11
|
getAverageRating(targetIds: [string], customerId: string, evaluationType: string): Promise<any>;
|
12
12
|
getUrlEvaluation(targetIds: [string], customerId: string, evaluationType: string): Promise<any>;
|
@@ -89,7 +89,7 @@ class CrmCampingService extends serviceSDK_1.Service {
|
|
89
89
|
// throw error;
|
90
90
|
// }
|
91
91
|
// }
|
92
|
-
suggestVoucher(customerId, scope, isNewCustomer) {
|
92
|
+
suggestVoucher(customerId, scopeIgnore, scope, isNewCustomer) {
|
93
93
|
return __awaiter(this, void 0, void 0, function* () {
|
94
94
|
const query = queries_1.SUGGEST_VOUCHER;
|
95
95
|
const variables = {
|
@@ -97,7 +97,8 @@ class CrmCampingService extends serviceSDK_1.Service {
|
|
97
97
|
excludeExpired: true,
|
98
98
|
customerId,
|
99
99
|
scope,
|
100
|
-
isNewCustomer
|
100
|
+
isNewCustomer,
|
101
|
+
scopeIgnore,
|
101
102
|
};
|
102
103
|
try {
|
103
104
|
const response = yield this.graphqlQueryV2(query, variables);
|