@zohoim/client-sdk 1.0.0-poc5 → 1.0.0-poc51
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/es/application/services/agents/AgentService.js +21 -0
- package/es/application/services/agents/index.js +2 -0
- package/es/application/services/bots/BotService.js +21 -0
- package/es/application/services/bots/index.js +2 -0
- package/es/application/services/channels/ChannelAgentService.js +21 -0
- package/es/application/services/channels/ChannelService.js +21 -0
- package/es/application/services/channels/index.js +3 -0
- package/es/application/services/contacts/ContactService.js +21 -0
- package/es/application/services/contacts/index.js +2 -0
- package/es/application/services/index.js +6 -0
- package/es/application/services/messages/MessageService.js +56 -0
- package/es/application/services/messages/index.js +2 -0
- package/es/application/services/sessions/SessionService.js +51 -0
- package/es/application/services/sessions/index.js +2 -0
- package/es/core/constants/ModuleNames.js +9 -0
- package/es/core/constants/index.js +5 -0
- package/es/core/errors/AdapterError.js +7 -0
- package/es/core/errors/index.js +3 -0
- package/es/core/utils/ResponseUtils.js +24 -0
- package/es/core/utils/index.js +3 -0
- package/es/core/utils/validateSchema.js +76 -0
- package/es/domain/dto/RequestBuilder.js +44 -0
- package/es/domain/dto/agents/getAgentsRequest.js +12 -0
- package/es/domain/dto/agents/index.js +1 -0
- package/es/domain/dto/bots/getBotsRequest.js +15 -0
- package/es/domain/dto/bots/index.js +1 -0
- package/es/domain/dto/channels/agents/getChannelAgentsRequest.js +13 -0
- package/es/domain/dto/channels/agents/index.js +1 -0
- package/es/domain/dto/channels/getChannelsRequest.js +23 -0
- package/es/domain/dto/channels/index.js +3 -0
- package/es/domain/dto/contacts/getContactsRequest.js +10 -0
- package/es/domain/dto/contacts/index.js +1 -0
- package/es/domain/dto/index.js +6 -0
- package/es/domain/dto/messages/deleteMessageRequest.js +14 -0
- package/es/domain/dto/messages/getFullContentRequest.js +14 -0
- package/es/domain/dto/messages/getMessagesRequest.js +20 -0
- package/es/domain/dto/messages/index.js +8 -0
- package/es/domain/dto/messages/initiateSessionRequest.js +21 -0
- package/es/domain/dto/messages/resendMessageRequest.js +14 -0
- package/es/domain/dto/messages/searchMessagesRequest.js +22 -0
- package/es/domain/dto/messages/sendAttachmentRequest.js +20 -0
- package/es/domain/dto/messages/sendMessageRequest.js +17 -0
- package/es/domain/dto/sessions/getSessionAttachmentsRequest.js +13 -0
- package/es/domain/dto/sessions/getSessionLastMessagesRequest.js +13 -0
- package/es/domain/dto/sessions/getSessionRequest.js +13 -0
- package/es/domain/dto/sessions/getSessionsRequest.js +26 -0
- package/es/domain/dto/sessions/index.js +7 -0
- package/es/domain/dto/sessions/markSessionAsReadRequest.js +13 -0
- package/es/domain/dto/sessions/updateSessionAssigneeRequest.js +12 -0
- package/es/domain/dto/sessions/updateSessionStatusRequest.js +17 -0
- package/es/domain/entities/Actor/Actor.js +28 -0
- package/es/domain/entities/Actor/index.js +2 -2
- package/es/domain/entities/Agent/Agent.js +16 -102
- package/es/domain/entities/Agent/index.js +1 -1
- package/es/domain/entities/Attachment/Attachment.js +22 -0
- package/es/domain/entities/Attachment/index.js +2 -0
- package/es/domain/entities/Bot/Bot.js +23 -0
- package/es/domain/entities/Bot/index.js +2 -0
- package/es/domain/entities/Channel/Channel.js +38 -0
- package/es/domain/entities/Channel/index.js +2 -0
- package/es/domain/entities/Contact/Contact.js +22 -0
- package/es/domain/entities/Contact/index.js +2 -0
- package/es/domain/entities/Message/Action.js +19 -0
- package/es/domain/entities/Message/ExternalInfo.js +17 -0
- package/es/domain/entities/Message/Info.js +21 -0
- package/es/domain/entities/Message/Location.js +18 -0
- package/es/domain/entities/Message/Message.js +45 -0
- package/es/domain/entities/Message/MessageWithSession.js +21 -0
- package/es/domain/entities/Message/index.js +6 -0
- package/es/domain/entities/Session/Session.js +35 -0
- package/es/domain/entities/Session/index.js +2 -0
- package/es/domain/entities/index.js +8 -2
- package/es/domain/enum/actor/ActorType.js +7 -0
- package/es/domain/enum/actor/index.js +2 -0
- package/es/domain/enum/bot/BotServiceType.js +7 -0
- package/es/domain/enum/bot/index.js +2 -0
- package/es/domain/enum/index.js +5 -0
- package/es/domain/enum/integrationServices/IntegrationServices.js +11 -0
- package/es/domain/enum/integrationServices/index.js +2 -0
- package/es/domain/enum/message/ActionSubType.js +6 -0
- package/es/domain/enum/message/ActionType.js +6 -0
- package/es/domain/enum/message/ExternalInfoAction.js +9 -0
- package/es/domain/enum/message/InfoAction.js +17 -0
- package/es/domain/enum/message/InfoSessionStatus.js +10 -0
- package/es/domain/enum/message/MessageContentType.js +6 -0
- package/es/domain/enum/message/MessageDirection.js +6 -0
- package/es/domain/enum/message/MessageStatus.js +11 -0
- package/es/domain/enum/message/MessageType.js +11 -0
- package/es/domain/enum/message/index.js +10 -0
- package/es/domain/enum/session/SessionReplyStatus.js +20 -0
- package/es/domain/enum/session/SessionStatus.js +9 -0
- package/es/domain/enum/session/index.js +3 -0
- package/es/domain/interfaces/IAdapter.js +6 -0
- package/es/domain/interfaces/index.js +3 -1
- package/es/domain/interfaces/repositories/agents/IAgentRepository.js +9 -0
- package/es/domain/interfaces/repositories/agents/index.js +2 -0
- package/es/domain/interfaces/repositories/bots/IBotRepository.js +9 -0
- package/es/domain/interfaces/repositories/bots/index.js +2 -0
- package/es/domain/interfaces/repositories/channels/IChannelAgentRepository.js +9 -0
- package/es/domain/interfaces/repositories/channels/IChannelRepository.js +9 -0
- package/es/domain/interfaces/repositories/channels/index.js +3 -0
- package/es/domain/interfaces/repositories/contacts/IContactRepository.js +9 -0
- package/es/domain/interfaces/repositories/contacts/index.js +2 -0
- package/es/domain/interfaces/repositories/index.js +6 -0
- package/es/domain/interfaces/repositories/messages/IMessageRepository.js +43 -0
- package/es/domain/interfaces/repositories/messages/index.js +2 -0
- package/es/domain/interfaces/repositories/sessions/ISessionRepository.js +39 -0
- package/es/domain/interfaces/repositories/sessions/index.js +2 -0
- package/es/domain/schema/actor/ActorSchema.js +33 -0
- package/es/domain/schema/actor/AgentSchema.js +33 -0
- package/es/domain/schema/actor/index.js +3 -0
- package/es/domain/schema/attachment/AttachmentSchema.js +27 -0
- package/es/domain/schema/attachment/index.js +2 -0
- package/es/domain/schema/bot/BotSchema.js +33 -0
- package/es/domain/schema/bot/index.js +2 -0
- package/es/domain/schema/channel/ChannelSchema.js +49 -0
- package/es/domain/schema/channel/index.js +2 -0
- package/es/domain/schema/contact/ContactSchema.js +27 -0
- package/es/domain/schema/contact/index.js +2 -0
- package/es/domain/schema/index.js +8 -0
- package/es/domain/schema/integrationService/IntegrationServiceSchema.js +31 -0
- package/es/domain/schema/integrationService/index.js +2 -0
- package/es/domain/schema/message/ActionSchema.js +18 -0
- package/es/domain/schema/message/ExternalInfoSchema.js +9 -0
- package/es/domain/schema/message/InfoSchema.js +24 -0
- package/es/domain/schema/message/LocationSchema.js +11 -0
- package/es/domain/schema/message/MessageSchema.js +112 -0
- package/es/domain/schema/message/MessageWithSessionSchema.js +10 -0
- package/es/domain/schema/message/index.js +7 -0
- package/es/domain/schema/session/SessionSchema.js +82 -0
- package/es/domain/schema/session/index.js +2 -0
- package/es/frameworks/managers/ModuleFactory.js +58 -0
- package/es/frameworks/managers/ModuleManager.js +44 -0
- package/es/frameworks/managers/index.js +2 -0
- package/es/frameworks/sdk/IMSDK.js +62 -0
- package/es/frameworks/sdk/agents/AgentSDK.js +30 -0
- package/es/frameworks/sdk/agents/index.js +2 -0
- package/es/frameworks/sdk/bots/BotSDK.js +30 -0
- package/es/frameworks/sdk/bots/index.js +2 -0
- package/es/frameworks/sdk/channels/ChannelSDK.js +37 -0
- package/es/frameworks/sdk/channels/index.js +2 -0
- package/es/frameworks/sdk/contacts/ContactSDK.js +30 -0
- package/es/frameworks/sdk/contacts/index.js +2 -0
- package/es/frameworks/sdk/index.js +2 -0
- package/es/frameworks/sdk/messages/MessageSDK.js +32 -0
- package/es/frameworks/sdk/messages/index.js +2 -0
- package/es/frameworks/sdk/sessions/SessionSDK.js +34 -0
- package/es/frameworks/sdk/sessions/index.js +2 -0
- package/es/index.js +9 -6
- package/es/infrastructure/adapters/agents/AgentAdapter.js +29 -0
- package/es/infrastructure/adapters/agents/index.js +2 -0
- package/es/infrastructure/adapters/attachments/AttachmentAdapter.js +24 -0
- package/es/infrastructure/adapters/attachments/index.js +2 -0
- package/es/infrastructure/adapters/bots/BotAdapter.js +25 -0
- package/es/infrastructure/adapters/bots/index.js +2 -0
- package/es/infrastructure/adapters/channels/ChannelAdapter.js +29 -0
- package/es/infrastructure/adapters/channels/ChannelAgentAdapter.js +30 -0
- package/es/infrastructure/adapters/channels/index.js +3 -0
- package/es/infrastructure/adapters/contacts/ContactAdapter.js +24 -0
- package/es/infrastructure/adapters/contacts/index.js +2 -0
- package/es/infrastructure/adapters/index.js +7 -0
- package/es/infrastructure/adapters/messages/MessageAdapter.js +41 -0
- package/es/infrastructure/adapters/messages/MessageWithSessionAdapter.js +23 -0
- package/es/infrastructure/adapters/messages/index.js +2 -0
- package/es/infrastructure/adapters/sessions/SessionAdapter.js +36 -0
- package/es/infrastructure/adapters/sessions/index.js +2 -0
- package/es/infrastructure/api/BaseAPI.js +92 -0
- package/es/infrastructure/api/agents/AgentAPI.js +21 -0
- package/es/infrastructure/api/agents/index.js +2 -0
- package/es/infrastructure/api/bots/BotAPI.js +21 -0
- package/es/infrastructure/api/bots/index.js +2 -0
- package/es/infrastructure/api/channels/ChannelAPI.js +21 -0
- package/es/infrastructure/api/channels/ChannelAgentAPI.js +29 -0
- package/es/infrastructure/api/channels/index.js +3 -0
- package/es/infrastructure/api/contacts/ContactAPI.js +21 -0
- package/es/infrastructure/api/contacts/index.js +2 -0
- package/es/infrastructure/api/index.js +6 -0
- package/es/infrastructure/api/messages/MessageAPI.js +91 -0
- package/es/infrastructure/api/messages/index.js +2 -0
- package/es/infrastructure/api/registry/agents/agentAPIRegistry.js +12 -0
- package/es/infrastructure/api/registry/agents/constructAgentEndPoint.js +10 -0
- package/es/infrastructure/api/registry/agents/index.js +2 -0
- package/es/infrastructure/api/registry/bots/botAPIRegistry.js +12 -0
- package/es/infrastructure/api/registry/bots/constructBotEndPoint.js +10 -0
- package/es/infrastructure/api/registry/bots/index.js +2 -0
- package/es/infrastructure/api/registry/channels/channelAPIRegistry.js +16 -0
- package/es/infrastructure/api/registry/channels/channelAgentAPIRegistry.js +12 -0
- package/es/infrastructure/api/registry/channels/constructChannelEndPoint.js +10 -0
- package/es/infrastructure/api/registry/channels/index.js +2 -0
- package/es/infrastructure/api/registry/contacts/constructContactEndPoint.js +10 -0
- package/es/infrastructure/api/registry/contacts/contactAPIRegistry.js +12 -0
- package/es/infrastructure/api/registry/contacts/index.js +2 -0
- package/es/infrastructure/api/registry/createAPIRegistry.js +7 -0
- package/es/infrastructure/api/registry/createBaseUrl.js +3 -0
- package/es/infrastructure/api/registry/getRegistryConfig.js +26 -0
- package/es/infrastructure/api/registry/index.js +2 -0
- package/es/infrastructure/api/registry/messages/constructMessageEndPoint.js +4 -0
- package/es/infrastructure/api/registry/messages/index.js +2 -0
- package/es/infrastructure/api/registry/messages/messageAPIRegistry.js +57 -0
- package/es/infrastructure/api/registry/sessions/constructSessionEndPoint.js +10 -0
- package/es/infrastructure/api/registry/sessions/index.js +2 -0
- package/es/infrastructure/api/registry/sessions/sessionAPIRegistry.js +46 -0
- package/es/infrastructure/api/sessions/SessionAPI.js +81 -0
- package/es/infrastructure/api/sessions/index.js +2 -0
- package/es/infrastructure/config/configRegistry.js +27 -0
- package/es/infrastructure/config/index.js +2 -0
- package/es/infrastructure/repositories/agents/AgentRepository.js +27 -0
- package/es/infrastructure/repositories/agents/index.js +2 -0
- package/es/infrastructure/repositories/bots/BotRepository.js +27 -0
- package/es/infrastructure/repositories/bots/index.js +2 -0
- package/es/infrastructure/repositories/channels/ChannelAgentRepository.js +27 -0
- package/es/infrastructure/repositories/channels/ChannelRepository.js +27 -0
- package/es/infrastructure/repositories/channels/index.js +3 -0
- package/es/infrastructure/repositories/contacts/ContactRepository.js +27 -0
- package/es/infrastructure/repositories/contacts/index.js +2 -0
- package/es/infrastructure/repositories/index.js +6 -0
- package/es/infrastructure/repositories/messages/MessageRepository.js +72 -0
- package/es/infrastructure/repositories/messages/index.js +2 -0
- package/es/infrastructure/repositories/sessions/SessionRepository.js +67 -0
- package/es/infrastructure/repositories/sessions/index.js +2 -0
- package/package.json +4 -1
- package/es/domain/entities/Actor/ActorType.js +0 -6
- package/es/domain/interfaces/channels/IChannelAgent.js +0 -6
- package/es/domain/interfaces/channels/index.js +0 -2
- package/es/domain/services/channels/ChannelAgentService.js +0 -14
- package/es/domain/services/channels/index.js +0 -2
- package/es/domain/services/index.js +0 -1
- /package/es/{domain → core}/errors/ValidationError.js +0 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { MessageAdapter } from "../../adapters";
|
|
2
|
+
import { ResponseUtils } from "../../../core/utils";
|
|
3
|
+
import { MessageAPI } from "../../api";
|
|
4
|
+
import { IMessageRepository } from "../../../domain/interfaces/repositories/messages";
|
|
5
|
+
import MessageWithSessionAdapter from "../../adapters/messages/MessageWithSessionAdapter";
|
|
6
|
+
export default class MessageRepository extends IMessageRepository {
|
|
7
|
+
constructor(_ref) {
|
|
8
|
+
let {
|
|
9
|
+
messageAPI,
|
|
10
|
+
messageAdapter,
|
|
11
|
+
messageWithSessionAdapter
|
|
12
|
+
} = _ref;
|
|
13
|
+
super();
|
|
14
|
+
this.messageAPI = messageAPI || new MessageAPI();
|
|
15
|
+
this.messageAdapter = messageAdapter || new MessageAdapter();
|
|
16
|
+
this.messageWithSessionAdapter = messageWithSessionAdapter || new MessageWithSessionAdapter();
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
async getMessages(request) {
|
|
20
|
+
const response = await this.messageAPI.getMessages(request);
|
|
21
|
+
return ResponseUtils.adaptListResponse(response, this.messageAdapter.adapt);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
async getFullContent(request) {
|
|
25
|
+
const response = await this.messageAPI.getFullContent(request);
|
|
26
|
+
return response;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
async sendMessage(request) {
|
|
30
|
+
const response = await this.messageAPI.sendMessage(request);
|
|
31
|
+
return ResponseUtils.adaptSingleResponse(response, this.messageAdapter.adapt);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
async sendAttachment(request) {
|
|
35
|
+
const response = await this.messageAPI.sendAttachment(request);
|
|
36
|
+
return ResponseUtils.adaptSingleResponse(response, this.messageAdapter.adapt);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
async resendMessage(request) {
|
|
40
|
+
const response = await this.messageAPI.resendMessage(request);
|
|
41
|
+
return ResponseUtils.adaptSingleResponse(response, this.messageAdapter.adapt);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
async deleteMessage(request) {
|
|
45
|
+
const response = await this.messageAPI.deleteMessage(request);
|
|
46
|
+
return ResponseUtils.adaptSingleResponse(response, this.messageAdapter.adapt);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
async initiateSession(request) {
|
|
50
|
+
const response = await this.messageAPI.initiateSession(request);
|
|
51
|
+
return ResponseUtils.adaptSingleResponse(response, this.messageAdapter.adapt);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
async searchMessages(request) {
|
|
55
|
+
const response = await this.messageAPI.searchMessages(request);
|
|
56
|
+
return ResponseUtils.adaptListResponse(response, this.messageWithSessionAdapter.adapt);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
toJSON() {
|
|
60
|
+
return {
|
|
61
|
+
getMessages: this.getMessages.bind(this),
|
|
62
|
+
getFullContent: this.getFullContent.bind(this),
|
|
63
|
+
sendMessage: this.sendMessage.bind(this),
|
|
64
|
+
sendAttachment: this.sendAttachment.bind(this),
|
|
65
|
+
resendMessage: this.resendMessage.bind(this),
|
|
66
|
+
deleteMessage: this.deleteMessage.bind(this),
|
|
67
|
+
initiateSession: this.initiateSession.bind(this),
|
|
68
|
+
searchMessages: this.searchMessages.bind(this)
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { AttachmentAdapter, MessageAdapter, SessionAdapter } from "../../adapters/index";
|
|
2
|
+
import { ResponseUtils } from "../../../core/utils";
|
|
3
|
+
import { ISessionRepository } from "../../../domain/interfaces/repositories";
|
|
4
|
+
import { SessionAPI } from "../../api";
|
|
5
|
+
export default class SessionRepository extends ISessionRepository {
|
|
6
|
+
constructor(_ref) {
|
|
7
|
+
let {
|
|
8
|
+
sessionAPI,
|
|
9
|
+
sessionAdapter,
|
|
10
|
+
attachmentAdapter,
|
|
11
|
+
messageAdapter
|
|
12
|
+
} = _ref;
|
|
13
|
+
super();
|
|
14
|
+
this.sessionAPI = sessionAPI || new SessionAPI();
|
|
15
|
+
this.sessionAdapter = sessionAdapter || new SessionAdapter();
|
|
16
|
+
this.attachmentAdapter = attachmentAdapter || new AttachmentAdapter();
|
|
17
|
+
this.messageAdapter = messageAdapter || new MessageAdapter();
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
async updateAssignee(request) {
|
|
21
|
+
const response = await this.sessionAPI.updateAssignee(request);
|
|
22
|
+
return ResponseUtils.adaptSingleResponse(response, this.sessionAdapter.adapt);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
async getSessions(request) {
|
|
26
|
+
const response = await this.sessionAPI.getSessions(request);
|
|
27
|
+
return ResponseUtils.adaptListResponse(response, this.sessionAdapter.adapt);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
async getSession(request) {
|
|
31
|
+
const response = await this.sessionAPI.getSession(request);
|
|
32
|
+
return ResponseUtils.adaptSingleResponse(response, this.sessionAdapter.adapt);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
async getSessionAttachments(request) {
|
|
36
|
+
const response = await this.sessionAPI.getSessionAttachments(request);
|
|
37
|
+
return ResponseUtils.adaptListResponse(response, this.attachmentAdapter.adapt);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
async getSessionLastMessages(request) {
|
|
41
|
+
const response = await this.sessionAPI.getSessionLastMessages(request);
|
|
42
|
+
return ResponseUtils.adaptListResponse(response, this.messageAdapter.adapt);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
async markSessionAsRead(request) {
|
|
46
|
+
const response = await this.sessionAPI.markSessionAsRead(request);
|
|
47
|
+
return ResponseUtils.adaptSingleResponse(response, this.sessionAdapter.adapt);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
async updateSessionStatus(request) {
|
|
51
|
+
const response = await this.sessionAPI.updateSessionStatus(request);
|
|
52
|
+
return ResponseUtils.adaptSingleResponse(response, this.sessionAdapter.adapt);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
toJSON() {
|
|
56
|
+
return {
|
|
57
|
+
updateAssignee: this.updateAssignee.bind(this),
|
|
58
|
+
getSessions: this.getSessions.bind(this),
|
|
59
|
+
getSession: this.getSession.bind(this),
|
|
60
|
+
getSessionAttachments: this.getSessionAttachments.bind(this),
|
|
61
|
+
getSessionLastMessages: this.getSessionLastMessages.bind(this),
|
|
62
|
+
markSessionAsRead: this.markSessionAsRead.bind(this),
|
|
63
|
+
updateSessionStatus: this.updateSessionStatus.bind(this)
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohoim/client-sdk",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-poc51",
|
|
4
4
|
"description": "To have the client sdk for the IM",
|
|
5
5
|
"main": "es/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"test": "react-cli test",
|
|
25
25
|
"docs": "react-cli docs"
|
|
26
26
|
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@zohoim/http-client": "1.0.0-poc16"
|
|
29
|
+
},
|
|
27
30
|
"devDependencies": {
|
|
28
31
|
"@zohodesk-private/client_dev_cert": "1.0.5",
|
|
29
32
|
"@zohodesk/client_build_tool": "0.0.6-exp.37",
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import IChannelAgent from '../../interfaces/channels/IChannelAgent';
|
|
2
|
-
export default class ChannelAgentService extends IChannelAgent {
|
|
3
|
-
constructor(channelAPI, channelAgentAdapter) {
|
|
4
|
-
super();
|
|
5
|
-
this.channelAPI = channelAPI;
|
|
6
|
-
this.channelAgentAdapter = channelAgentAdapter;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
async getChannelAgents() {
|
|
10
|
-
const channelAgents = await this.channelAPI.getChannelAgents();
|
|
11
|
-
return channelAgents.map(this.channelAgentAdapter.adapt);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './channels';
|
|
File without changes
|