@longvansoftware/storefront-js-client 2.2.5 → 2.2.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.
|
@@ -75,7 +75,6 @@ exports.SEARCH_CUSTOMER = (0, graphql_tag_1.gql) `
|
|
|
75
75
|
$partnerId: String!
|
|
76
76
|
$currentPage: Int!
|
|
77
77
|
$pageSize: Int!
|
|
78
|
-
$followSocialAppId: String
|
|
79
78
|
) {
|
|
80
79
|
searchCustomers(
|
|
81
80
|
keyword: $keyword
|
|
@@ -86,7 +85,6 @@ exports.SEARCH_CUSTOMER = (0, graphql_tag_1.gql) `
|
|
|
86
85
|
partnerId: $partnerId
|
|
87
86
|
currentPage: $currentPage
|
|
88
87
|
pageSize: $pageSize
|
|
89
|
-
followSocialAppId: $followSocialAppId
|
|
90
88
|
) {
|
|
91
89
|
totalPages
|
|
92
90
|
totalElements
|
|
@@ -181,7 +181,6 @@ class UserService extends serviceSDK_1.Service {
|
|
|
181
181
|
partnerId: this.orgId,
|
|
182
182
|
currentPage: searchParams.currentPage,
|
|
183
183
|
pageSize: searchParams.pageSize,
|
|
184
|
-
followSocialAppId: searchParams === null || searchParams === void 0 ? void 0 : searchParams.followSocialAppId,
|
|
185
184
|
};
|
|
186
185
|
try {
|
|
187
186
|
const response = yield this.graphqlQuery(query, variables);
|