@longvansoftware/storefront-js-client 2.3.5 → 2.3.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.
|
@@ -28,7 +28,7 @@ export declare class CrmService extends Service {
|
|
|
28
28
|
updateConnectorDescription(connectorId: string, description: string, updatedBy: string): Promise<any>;
|
|
29
29
|
getTags(connectorId: string): Promise<any>;
|
|
30
30
|
removeTag(connectorId: string, tagId: string, removedBy: string): Promise<any>;
|
|
31
|
-
searchTopic(
|
|
31
|
+
searchTopic(filterTopicRequest: any, pageSize: number, currentPage: number): Promise<any>;
|
|
32
32
|
closeTopic(id: string, updatedBy: string): Promise<any>;
|
|
33
33
|
createTopic(socialAppId: String, customerId: string, message: string): Promise<any>;
|
|
34
34
|
getTopicByCustomerId(filterTopicRequest: any, pageSize: number, currentPage: number): Promise<any>;
|
|
@@ -473,11 +473,11 @@ class CrmService extends serviceSDK_1.Service {
|
|
|
473
473
|
}
|
|
474
474
|
});
|
|
475
475
|
}
|
|
476
|
-
searchTopic(
|
|
476
|
+
searchTopic(filterTopicRequest, pageSize, currentPage) {
|
|
477
477
|
return __awaiter(this, void 0, void 0, function* () {
|
|
478
478
|
const query = queries_1.SEARCH_TOPIC;
|
|
479
479
|
const variables = {
|
|
480
|
-
filterTopicRequest:
|
|
480
|
+
filterTopicRequest: filterTopicRequest,
|
|
481
481
|
partnerId: this.orgId,
|
|
482
482
|
pageSize,
|
|
483
483
|
currentPage,
|