@app-connect/core 1.7.36 → 1.7.38

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.
Files changed (287) hide show
  1. package/README.md +17 -16
  2. package/dist/connector/developerPortal.d.ts +6 -0
  3. package/{connector → dist/connector}/developerPortal.js +29 -12
  4. package/dist/connector/mock.d.ts +1 -0
  5. package/{connector → dist/connector}/mock.js +33 -17
  6. package/dist/connector/proxy/engine.d.ts +10 -0
  7. package/dist/connector/proxy/engine.js +222 -0
  8. package/dist/connector/proxy/index.d.ts +5 -0
  9. package/dist/connector/proxy/index.js +511 -0
  10. package/dist/connector/registry.d.ts +1 -0
  11. package/dist/connector/registry.js +243 -0
  12. package/dist/handlers/admin.d.ts +1 -0
  13. package/{handlers → dist/handlers}/admin.js +137 -78
  14. package/dist/handlers/appointment.d.ts +9 -0
  15. package/{handlers → dist/handlers}/appointment.js +58 -29
  16. package/dist/handlers/auth.d.ts +9 -0
  17. package/{handlers → dist/handlers}/auth.js +68 -40
  18. package/dist/handlers/calldown.d.ts +10 -0
  19. package/dist/handlers/calldown.js +134 -0
  20. package/dist/handlers/contact.d.ts +1 -0
  21. package/{handlers → dist/handlers}/contact.js +61 -39
  22. package/dist/handlers/disposition.d.ts +1 -0
  23. package/{handlers → dist/handlers}/disposition.js +20 -10
  24. package/dist/handlers/log.d.ts +1 -0
  25. package/{handlers → dist/handlers}/log.js +91 -124
  26. package/dist/handlers/managedAuth.d.ts +1 -0
  27. package/{handlers → dist/handlers}/managedAuth.js +134 -61
  28. package/dist/handlers/managedOAuth.d.ts +13 -0
  29. package/{handlers → dist/handlers}/managedOAuth.js +102 -30
  30. package/dist/handlers/plugin.d.ts +1 -0
  31. package/{handlers → dist/handlers}/plugin.js +59 -27
  32. package/dist/handlers/user.d.ts +1 -0
  33. package/{handlers → dist/handlers}/user.js +45 -27
  34. package/dist/index.d.ts +1 -0
  35. package/{index.js → dist/index.js} +548 -450
  36. package/dist/jest.config.d.ts +1 -0
  37. package/dist/jest.config.js +65 -0
  38. package/dist/lib/analytics.d.ts +4 -0
  39. package/{lib → dist/lib}/analytics.js +8 -6
  40. package/dist/lib/authSession.d.ts +5 -0
  41. package/{lib → dist/lib}/authSession.js +15 -43
  42. package/dist/lib/cacheCleanup.d.ts +4 -0
  43. package/{lib → dist/lib}/cacheCleanup.js +5 -17
  44. package/dist/lib/callLogComposer.d.ts +109 -0
  45. package/{lib → dist/lib}/callLogComposer.js +157 -197
  46. package/dist/lib/callLogLookup.d.ts +6 -0
  47. package/{lib → dist/lib}/callLogLookup.js +12 -34
  48. package/dist/lib/constants.d.ts +6 -0
  49. package/dist/lib/constants.js +9 -0
  50. package/dist/lib/debugTracer.d.ts +17 -0
  51. package/{lib → dist/lib}/debugTracer.js +7 -83
  52. package/dist/lib/encode.d.ts +3 -0
  53. package/dist/lib/encode.js +50 -0
  54. package/dist/lib/errorHandler.d.ts +7 -0
  55. package/dist/lib/errorHandler.js +161 -0
  56. package/dist/lib/generalErrorMessage.d.ts +7 -0
  57. package/{lib → dist/lib}/generalErrorMessage.js +6 -6
  58. package/dist/lib/jwt.d.ts +4 -0
  59. package/dist/lib/jwt.js +18 -0
  60. package/dist/lib/logger.d.ts +24 -0
  61. package/dist/lib/logger.js +126 -0
  62. package/dist/lib/migrateCallLogsSchema.d.ts +32 -0
  63. package/dist/lib/migrateCallLogsSchema.js +339 -0
  64. package/dist/lib/oauth.d.ts +4 -0
  65. package/{lib → dist/lib}/oauth.js +157 -160
  66. package/dist/lib/ringcentral.d.ts +24 -0
  67. package/dist/lib/ringcentral.js +226 -0
  68. package/dist/lib/s3ErrorLogReport.d.ts +4 -0
  69. package/{lib → dist/lib}/s3ErrorLogReport.js +11 -23
  70. package/dist/lib/sharedSMSComposer.d.ts +7 -0
  71. package/{lib → dist/lib}/sharedSMSComposer.js +21 -107
  72. package/dist/lib/util.d.ts +7 -0
  73. package/{lib → dist/lib}/util.js +9 -20
  74. package/dist/mcp/lib/oauthError.d.ts +1 -0
  75. package/dist/mcp/lib/oauthError.js +25 -0
  76. package/dist/mcp/lib/validator.d.ts +1 -0
  77. package/{mcp → dist/mcp}/lib/validator.js +16 -20
  78. package/dist/mcp/lib/widgetSessionToken.d.ts +1 -0
  79. package/dist/mcp/lib/widgetSessionToken.js +46 -0
  80. package/dist/mcp/mcpHandler.d.ts +8 -0
  81. package/{mcp → dist/mcp}/mcpHandler.js +98 -88
  82. package/dist/mcp/tools/cancelAppointment.d.ts +1 -0
  83. package/{mcp → dist/mcp}/tools/cancelAppointment.js +7 -16
  84. package/dist/mcp/tools/checkAuthStatus.d.ts +1 -0
  85. package/{mcp → dist/mcp}/tools/checkAuthStatus.js +21 -14
  86. package/dist/mcp/tools/confirmAppointment.d.ts +1 -0
  87. package/{mcp → dist/mcp}/tools/confirmAppointment.js +7 -16
  88. package/dist/mcp/tools/createAppointment.d.ts +1 -0
  89. package/{mcp → dist/mcp}/tools/createAppointment.js +7 -19
  90. package/dist/mcp/tools/createCallLog.d.ts +1 -0
  91. package/{mcp → dist/mcp}/tools/createCallLog.js +18 -29
  92. package/dist/mcp/tools/createContact.d.ts +1 -0
  93. package/{mcp → dist/mcp}/tools/createContact.js +8 -20
  94. package/dist/mcp/tools/createMessageLog.d.ts +1 -0
  95. package/{mcp → dist/mcp}/tools/createMessageLog.js +14 -26
  96. package/dist/mcp/tools/doAuth.d.ts +1 -0
  97. package/{mcp → dist/mcp}/tools/doAuth.js +17 -13
  98. package/dist/mcp/tools/findContactByName.d.ts +1 -0
  99. package/{mcp → dist/mcp}/tools/findContactByName.js +9 -15
  100. package/dist/mcp/tools/findContactByPhone.d.ts +1 -0
  101. package/{mcp → dist/mcp}/tools/findContactByPhone.js +8 -15
  102. package/dist/mcp/tools/getCallLog.d.ts +1 -0
  103. package/{mcp → dist/mcp}/tools/getCallLog.js +12 -21
  104. package/dist/mcp/tools/getGoogleFilePicker.d.ts +1 -0
  105. package/{mcp → dist/mcp}/tools/getGoogleFilePicker.js +9 -18
  106. package/dist/mcp/tools/getHelp.d.ts +1 -0
  107. package/{mcp → dist/mcp}/tools/getHelp.js +5 -6
  108. package/dist/mcp/tools/getPublicConnectors.d.ts +1 -0
  109. package/{mcp → dist/mcp}/tools/getPublicConnectors.js +19 -18
  110. package/dist/mcp/tools/getSessionInfo.d.ts +1 -0
  111. package/{mcp → dist/mcp}/tools/getSessionInfo.js +10 -16
  112. package/dist/mcp/tools/index.d.ts +8 -0
  113. package/dist/mcp/tools/index.js +50 -0
  114. package/dist/mcp/tools/listAppointments.d.ts +1 -0
  115. package/{mcp → dist/mcp}/tools/listAppointments.js +7 -19
  116. package/dist/mcp/tools/logout.d.ts +1 -0
  117. package/{mcp → dist/mcp}/tools/logout.js +16 -14
  118. package/dist/mcp/tools/rcGetCallLogs.d.ts +1 -0
  119. package/{mcp → dist/mcp}/tools/rcGetCallLogs.js +10 -8
  120. package/dist/mcp/tools/updateAppointment.d.ts +1 -0
  121. package/{mcp → dist/mcp}/tools/updateAppointment.js +17 -22
  122. package/dist/mcp/tools/updateCallLog.d.ts +1 -0
  123. package/{mcp → dist/mcp}/tools/updateCallLog.js +16 -26
  124. package/dist/models/accountDataModel.d.ts +3 -0
  125. package/dist/models/accountDataModel.js +39 -0
  126. package/dist/models/adminConfigModel.d.ts +2 -0
  127. package/dist/models/adminConfigModel.js +39 -0
  128. package/dist/models/cacheModel.d.ts +2 -0
  129. package/{models → dist/models}/cacheModel.js +7 -3
  130. package/dist/models/callDownListModel.d.ts +2 -0
  131. package/{models → dist/models}/callDownListModel.js +8 -4
  132. package/dist/models/callLogModel.d.ts +2 -0
  133. package/dist/models/callLogModel.js +43 -0
  134. package/dist/models/dynamo/connectorSchema.d.ts +2 -0
  135. package/dist/models/dynamo/connectorSchema.js +141 -0
  136. package/dist/models/dynamo/lockSchema.d.ts +2 -0
  137. package/{models → dist/models}/dynamo/lockSchema.js +5 -7
  138. package/dist/models/dynamo/noteCacheSchema.d.ts +2 -0
  139. package/{models → dist/models}/dynamo/noteCacheSchema.js +4 -6
  140. package/dist/models/llmSessionModel.d.ts +2 -0
  141. package/dist/models/llmSessionModel.js +21 -0
  142. package/dist/models/messageLogModel.d.ts +2 -0
  143. package/{models → dist/models}/messageLogModel.js +8 -4
  144. package/dist/models/sequelize.d.ts +2 -0
  145. package/dist/models/sequelize.js +68 -0
  146. package/dist/models/userModel.d.ts +2 -0
  147. package/dist/models/userModel.js +49 -0
  148. package/dist/package.json +100 -0
  149. package/dist/releaseNotes.json +1222 -0
  150. package/dist/tsconfig.json +14 -0
  151. package/dist/types/admin.d.ts +141 -0
  152. package/dist/types/analytics.d.ts +14 -0
  153. package/dist/types/appointment.d.ts +50 -0
  154. package/dist/types/auth.d.ts +137 -0
  155. package/dist/types/authSession.d.ts +35 -0
  156. package/dist/types/cacheCleanup.d.ts +12 -0
  157. package/dist/types/calldown.d.ts +54 -0
  158. package/dist/types/common.d.ts +46 -0
  159. package/dist/types/connector.d.ts +165 -0
  160. package/dist/types/contact.d.ts +125 -0
  161. package/dist/types/errorHandler.d.ts +60 -0
  162. package/dist/types/index.d.ts +76 -0
  163. package/dist/types/json.d.ts +9 -0
  164. package/dist/types/jwt.d.ts +8 -0
  165. package/dist/types/logging.d.ts +224 -0
  166. package/dist/types/managedAuth.d.ts +114 -0
  167. package/dist/types/managedOAuth.d.ts +59 -0
  168. package/dist/types/manifest.d.ts +120 -0
  169. package/dist/types/migration.d.ts +15 -0
  170. package/dist/types/plugin.d.ts +74 -0
  171. package/dist/types/ringcentral.d.ts +61 -0
  172. package/dist/types/s3ErrorLogReport.d.ts +16 -0
  173. package/dist/types/sharedSMSComposer.d.ts +105 -0
  174. package/dist/types/user.d.ts +46 -0
  175. package/dist/types/util.d.ts +7 -0
  176. package/package.json +34 -6
  177. package/releaseNotes.json +13 -1
  178. package/.env.test +0 -5
  179. package/connector/proxy/engine.js +0 -165
  180. package/connector/proxy/index.js +0 -500
  181. package/connector/registry.js +0 -252
  182. package/docs/README.md +0 -50
  183. package/docs/architecture.md +0 -94
  184. package/docs/connectors.md +0 -116
  185. package/docs/handlers.md +0 -128
  186. package/docs/libraries.md +0 -98
  187. package/docs/models.md +0 -146
  188. package/docs/routes.md +0 -119
  189. package/docs/tests.md +0 -73
  190. package/handlers/calldown.js +0 -99
  191. package/jest.config.js +0 -57
  192. package/lib/constants.js +0 -9
  193. package/lib/encode.js +0 -30
  194. package/lib/errorHandler.js +0 -218
  195. package/lib/jwt.js +0 -18
  196. package/lib/logger.js +0 -190
  197. package/lib/migrateCallLogsSchema.js +0 -237
  198. package/lib/ringcentral.js +0 -267
  199. package/mcp/README.md +0 -420
  200. package/mcp/tools/index.js +0 -51
  201. package/mcp/ui/App/App.tsx +0 -358
  202. package/mcp/ui/App/components/AuthInfoForm.tsx +0 -113
  203. package/mcp/ui/App/components/AuthSuccess.tsx +0 -22
  204. package/mcp/ui/App/components/ConnectorList.tsx +0 -82
  205. package/mcp/ui/App/components/DebugPanel.tsx +0 -43
  206. package/mcp/ui/App/components/OAuthConnect.tsx +0 -270
  207. package/mcp/ui/App/lib/callTool.ts +0 -130
  208. package/mcp/ui/App/lib/debugLog.ts +0 -41
  209. package/mcp/ui/App/lib/developerPortal.ts +0 -111
  210. package/mcp/ui/App/main.css +0 -6
  211. package/mcp/ui/App/root.tsx +0 -13
  212. package/mcp/ui/dist/index.html +0 -53
  213. package/mcp/ui/vite.config.ts +0 -16
  214. package/models/accountDataModel.js +0 -34
  215. package/models/adminConfigModel.js +0 -35
  216. package/models/callLogModel.js +0 -39
  217. package/models/dynamo/connectorSchema.js +0 -146
  218. package/models/llmSessionModel.js +0 -17
  219. package/models/sequelize.js +0 -17
  220. package/models/userModel.js +0 -45
  221. package/test/connector/developerPortal.test.js +0 -166
  222. package/test/connector/mock.test.js +0 -131
  223. package/test/connector/proxy/engine.test.js +0 -211
  224. package/test/connector/proxy/index.test.js +0 -525
  225. package/test/connector/proxy/sample.json +0 -162
  226. package/test/connector/registry.test.js +0 -416
  227. package/test/handlers/admin.test.js +0 -960
  228. package/test/handlers/appointment.test.js +0 -260
  229. package/test/handlers/auth.test.js +0 -1096
  230. package/test/handlers/calldown.test.js +0 -310
  231. package/test/handlers/contact.test.js +0 -1014
  232. package/test/handlers/disposition.test.js +0 -396
  233. package/test/handlers/log.test.js +0 -1847
  234. package/test/handlers/managedAuth.test.js +0 -458
  235. package/test/handlers/managedOAuth.test.js +0 -262
  236. package/test/handlers/plugin.test.js +0 -429
  237. package/test/handlers/user.test.js +0 -381
  238. package/test/index.test.js +0 -301
  239. package/test/lib/analytics.test.js +0 -146
  240. package/test/lib/authSession.test.js +0 -173
  241. package/test/lib/cacheCleanup.test.js +0 -127
  242. package/test/lib/callLogComposer.test.js +0 -1231
  243. package/test/lib/debugTracer.test.js +0 -328
  244. package/test/lib/encode.test.js +0 -59
  245. package/test/lib/errorHandler.test.js +0 -246
  246. package/test/lib/generalErrorMessage.test.js +0 -82
  247. package/test/lib/jwt.test.js +0 -176
  248. package/test/lib/logger.test.js +0 -206
  249. package/test/lib/oauth.test.js +0 -359
  250. package/test/lib/ringcentral.test.js +0 -467
  251. package/test/lib/s3ErrorLogReport.test.js +0 -187
  252. package/test/lib/sharedSMSComposer.test.js +0 -1084
  253. package/test/lib/util.test.js +0 -329
  254. package/test/mcp/mcpHandler.test.js +0 -73
  255. package/test/mcp/mcpHandlerMore.test.js +0 -384
  256. package/test/mcp/tools/appointmentTools.test.js +0 -362
  257. package/test/mcp/tools/checkAuthStatus.test.js +0 -83
  258. package/test/mcp/tools/createCallLog.test.js +0 -436
  259. package/test/mcp/tools/createContact.test.js +0 -58
  260. package/test/mcp/tools/createMessageLog.test.js +0 -595
  261. package/test/mcp/tools/doAuth.test.js +0 -113
  262. package/test/mcp/tools/findContactByName.test.js +0 -275
  263. package/test/mcp/tools/findContactByPhone.test.js +0 -296
  264. package/test/mcp/tools/getCallLog.test.js +0 -298
  265. package/test/mcp/tools/getGoogleFilePicker.test.js +0 -281
  266. package/test/mcp/tools/getPublicConnectors.test.js +0 -107
  267. package/test/mcp/tools/getSessionInfo.test.js +0 -127
  268. package/test/mcp/tools/logout.test.js +0 -233
  269. package/test/mcp/tools/rcGetCallLogs.test.js +0 -56
  270. package/test/mcp/tools/updateCallLog.test.js +0 -360
  271. package/test/models/accountDataModel.test.js +0 -98
  272. package/test/models/callDownListModel.test.js +0 -125
  273. package/test/models/dynamo/connectorSchema.test.js +0 -189
  274. package/test/models/dynamo/lockSchema.test.js +0 -37
  275. package/test/models/dynamo/noteCacheSchema.test.js +0 -45
  276. package/test/models/llmSessionModel.test.js +0 -91
  277. package/test/models/models.test.js +0 -660
  278. package/test/routes/calldownRoutes.test.js +0 -224
  279. package/test/routes/coreRouterBroadRoutes.test.js +0 -855
  280. package/test/routes/dispositionRoutes.test.js +0 -192
  281. package/test/routes/managedAuthRoutes.test.js +0 -386
  282. package/test/routes/pluginRoutes.test.js +0 -262
  283. package/test/setup.js +0 -178
  284. /package/{mcp → dist/mcp}/ui/index.html +0 -0
  285. /package/{mcp → dist/mcp}/ui/package-lock.json +0 -0
  286. /package/{mcp → dist/mcp}/ui/package.json +0 -0
  287. /package/{mcp → dist/mcp}/ui/tsconfig.json +0 -0
@@ -1,595 +0,0 @@
1
- const createMessageLog = require('../../../mcp/tools/createMessageLog');
2
- const jwt = require('../../../lib/jwt');
3
- const connectorRegistry = require('../../../connector/registry');
4
- const logCore = require('../../../handlers/log');
5
-
6
- // Mock dependencies
7
- jest.mock('../../../lib/jwt');
8
- jest.mock('../../../connector/registry');
9
- jest.mock('../../../handlers/log');
10
-
11
- describe('MCP Tool: createMessageLog', () => {
12
- beforeEach(() => {
13
- jest.clearAllMocks();
14
- });
15
-
16
- describe('tool definition', () => {
17
- test('should have correct tool definition', () => {
18
- expect(createMessageLog.definition).toBeDefined();
19
- expect(createMessageLog.definition.name).toBe('createMessageLog');
20
- expect(createMessageLog.definition.description).toContain('REQUIRES AUTHENTICATION');
21
- expect(createMessageLog.definition.inputSchema).toBeDefined();
22
- });
23
-
24
- test('should require jwtToken and incomingData parameters', () => {
25
- expect(createMessageLog.definition.inputSchema.required).toContain('jwtToken');
26
- expect(createMessageLog.definition.inputSchema.required).toContain('incomingData');
27
- });
28
-
29
- test('should have detailed inputSchema for incomingData', () => {
30
- const incomingDataSchema = createMessageLog.definition.inputSchema.properties.incomingData;
31
- expect(incomingDataSchema.properties).toHaveProperty('conversation');
32
- expect(incomingDataSchema.properties).toHaveProperty('contactId');
33
- expect(incomingDataSchema.properties).toHaveProperty('contactName');
34
- expect(incomingDataSchema.required).toContain('conversation');
35
- expect(incomingDataSchema.required).toContain('contactId');
36
- expect(incomingDataSchema.required).toContain('contactName');
37
- });
38
- });
39
-
40
- describe('execute', () => {
41
- test('should create message log successfully', async () => {
42
- // Arrange
43
- const mockIncomingData = {
44
- conversation: {
45
- conversationId: 'conv-123',
46
- conversationLogId: 'conv-log-123',
47
- type: 'SMS',
48
- messages: [
49
- {
50
- id: 'msg-123',
51
- conversationId: 'conv-123',
52
- phoneNumber: '+1234567890',
53
- direction: 'Inbound',
54
- creationTime: 1704110400000,
55
- subject: 'Hello',
56
- from: { phoneNumber: '+1234567890', name: 'John Doe' },
57
- to: [{ phoneNumber: '+0987654321' }]
58
- }
59
- ],
60
- correspondents: [
61
- { phoneNumber: '+1234567890' }
62
- ]
63
- },
64
- contactId: 'contact-123',
65
- contactName: 'John Doe',
66
- contactType: 'Contact'
67
- };
68
-
69
- jwt.decodeJwt.mockReturnValue({
70
- id: 'user-123',
71
- platform: 'testCRM'
72
- });
73
-
74
- const mockConnector = {
75
- createMessageLog: jest.fn()
76
- };
77
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
78
-
79
- logCore.createMessageLog.mockResolvedValue({
80
- successful: true,
81
- logIds: ['crm-msg-log-123'],
82
- returnMessage: { message: 'Message logs created successfully' }
83
- });
84
-
85
- // Act
86
- const result = await createMessageLog.execute({
87
- jwtToken: 'mock-jwt-token',
88
- incomingData: mockIncomingData
89
- });
90
-
91
- // Assert
92
- expect(result).toEqual({
93
- success: true,
94
- data: {
95
- logIds: ['crm-msg-log-123'],
96
- message: 'Message logs created successfully'
97
- }
98
- });
99
- expect(jwt.decodeJwt).toHaveBeenCalledWith('mock-jwt-token');
100
- expect(logCore.createMessageLog).toHaveBeenCalledWith({
101
- platform: 'testCRM',
102
- userId: 'user-123',
103
- incomingData: expect.objectContaining({
104
- contactId: 'contact-123',
105
- contactName: 'John Doe',
106
- logInfo: mockIncomingData.conversation
107
- })
108
- });
109
- });
110
-
111
- test('should create message log with multiple messages', async () => {
112
- // Arrange
113
- const mockIncomingData = {
114
- conversation: {
115
- conversationId: 'conv-456',
116
- conversationLogId: 'conv-log-456',
117
- type: 'SMS',
118
- messages: [
119
- {
120
- id: 'msg-456-1',
121
- conversationId: 'conv-456',
122
- phoneNumber: '+1234567890',
123
- direction: 'Outbound',
124
- from: { phoneNumber: '+0987654321' },
125
- to: [{ phoneNumber: '+1234567890' }]
126
- },
127
- {
128
- id: 'msg-456-2',
129
- conversationId: 'conv-456',
130
- phoneNumber: '+1234567890',
131
- direction: 'Inbound',
132
- from: { phoneNumber: '+1234567890' },
133
- to: [{ phoneNumber: '+0987654321' }]
134
- }
135
- ],
136
- correspondents: [
137
- { phoneNumber: '+1234567890' }
138
- ]
139
- },
140
- contactId: 'contact-456',
141
- contactName: 'Jane Smith'
142
- };
143
-
144
- jwt.decodeJwt.mockReturnValue({
145
- id: 'user-123',
146
- platform: 'testCRM'
147
- });
148
-
149
- const mockConnector = {
150
- createMessageLog: jest.fn()
151
- };
152
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
153
-
154
- logCore.createMessageLog.mockResolvedValue({
155
- successful: true,
156
- logIds: ['crm-msg-log-456-1', 'crm-msg-log-456-2']
157
- });
158
-
159
- // Act
160
- const result = await createMessageLog.execute({
161
- jwtToken: 'mock-jwt-token',
162
- incomingData: mockIncomingData
163
- });
164
-
165
- // Assert
166
- expect(result.success).toBe(true);
167
- expect(result.data.logIds).toHaveLength(2);
168
- });
169
-
170
- test('should create message log with attachments', async () => {
171
- // Arrange
172
- const mockIncomingData = {
173
- conversation: {
174
- conversationId: 'conv-789',
175
- conversationLogId: 'conv-log-789',
176
- type: 'MMS',
177
- messages: [
178
- {
179
- id: 'msg-789',
180
- conversationId: 'conv-789',
181
- phoneNumber: '+1234567890',
182
- direction: 'Inbound',
183
- from: { phoneNumber: '+1234567890' },
184
- to: [{ phoneNumber: '+0987654321' }],
185
- attachments: [
186
- {
187
- type: 'image',
188
- link: 'https://example.com/image.jpg',
189
- contentType: 'image/jpeg'
190
- }
191
- ]
192
- }
193
- ],
194
- correspondents: [
195
- { phoneNumber: '+1234567890' }
196
- ]
197
- },
198
- contactId: 'contact-789',
199
- contactName: 'Bob Johnson'
200
- };
201
-
202
- jwt.decodeJwt.mockReturnValue({
203
- id: 'user-123',
204
- platform: 'testCRM'
205
- });
206
-
207
- const mockConnector = {
208
- createMessageLog: jest.fn()
209
- };
210
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
211
-
212
- logCore.createMessageLog.mockResolvedValue({
213
- successful: true,
214
- logIds: ['crm-msg-log-789']
215
- });
216
-
217
- // Act
218
- const result = await createMessageLog.execute({
219
- jwtToken: 'mock-jwt-token',
220
- incomingData: mockIncomingData
221
- });
222
-
223
- // Assert
224
- expect(result.success).toBe(true);
225
- });
226
-
227
- test('should create fax message log', async () => {
228
- // Arrange
229
- const mockIncomingData = {
230
- conversation: {
231
- conversationId: 'conv-fax',
232
- conversationLogId: 'conv-log-fax',
233
- type: 'Fax',
234
- messages: [
235
- {
236
- id: 'msg-fax',
237
- conversationId: 'conv-fax',
238
- phoneNumber: '+1234567890',
239
- direction: 'Inbound',
240
- messageStatus: 'Received',
241
- faxPageCount: 5,
242
- from: { phoneNumber: '+1234567890' },
243
- to: [{ phoneNumber: '+0987654321' }]
244
- }
245
- ],
246
- correspondents: [
247
- { phoneNumber: '+1234567890' }
248
- ]
249
- },
250
- contactId: 'contact-fax',
251
- contactName: 'Fax Sender'
252
- };
253
-
254
- jwt.decodeJwt.mockReturnValue({
255
- id: 'user-123',
256
- platform: 'testCRM'
257
- });
258
-
259
- const mockConnector = {
260
- createMessageLog: jest.fn()
261
- };
262
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
263
-
264
- logCore.createMessageLog.mockResolvedValue({
265
- successful: true,
266
- logIds: ['crm-msg-log-fax']
267
- });
268
-
269
- // Act
270
- const result = await createMessageLog.execute({
271
- jwtToken: 'mock-jwt-token',
272
- incomingData: mockIncomingData
273
- });
274
-
275
- // Assert
276
- expect(result.success).toBe(true);
277
- });
278
-
279
- test('should create message log with additional submission', async () => {
280
- // Arrange
281
- const mockIncomingData = {
282
- conversation: {
283
- conversationId: 'conv-submit',
284
- conversationLogId: 'conv-log-submit',
285
- messages: [
286
- {
287
- id: 'msg-submit',
288
- conversationId: 'conv-submit',
289
- phoneNumber: '+1234567890',
290
- direction: 'Inbound',
291
- from: { phoneNumber: '+1234567890' },
292
- to: [{ phoneNumber: '+0987654321' }]
293
- }
294
- ],
295
- correspondents: [
296
- { phoneNumber: '+1234567890' }
297
- ]
298
- },
299
- contactId: 'contact-submit',
300
- contactName: 'Test User',
301
- additionalSubmission: {
302
- isAssignedToUser: true
303
- }
304
- };
305
-
306
- jwt.decodeJwt.mockReturnValue({
307
- id: 'user-123',
308
- platform: 'testCRM'
309
- });
310
-
311
- const mockConnector = {
312
- createMessageLog: jest.fn()
313
- };
314
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
315
-
316
- logCore.createMessageLog.mockResolvedValue({
317
- successful: true,
318
- logIds: ['crm-msg-log-submit']
319
- });
320
-
321
- // Act
322
- const result = await createMessageLog.execute({
323
- jwtToken: 'mock-jwt-token',
324
- incomingData: mockIncomingData
325
- });
326
-
327
- // Assert
328
- expect(result.success).toBe(true);
329
- });
330
-
331
- test('should handle logInfo alias for conversation', async () => {
332
- // Arrange
333
- const mockIncomingData = {
334
- logInfo: {
335
- conversationId: 'conv-alias',
336
- conversationLogId: 'conv-log-alias',
337
- messages: [
338
- {
339
- id: 'msg-alias',
340
- conversationId: 'conv-alias',
341
- phoneNumber: '+1234567890',
342
- direction: 'Inbound',
343
- from: { phoneNumber: '+1234567890' },
344
- to: [{ phoneNumber: '+0987654321' }]
345
- }
346
- ],
347
- correspondents: [
348
- { phoneNumber: '+1234567890' }
349
- ]
350
- },
351
- contactId: 'contact-alias',
352
- contactName: 'Alias Test'
353
- };
354
-
355
- jwt.decodeJwt.mockReturnValue({
356
- id: 'user-123',
357
- platform: 'testCRM'
358
- });
359
-
360
- const mockConnector = {
361
- createMessageLog: jest.fn()
362
- };
363
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
364
-
365
- logCore.createMessageLog.mockResolvedValue({
366
- successful: true,
367
- logIds: ['crm-msg-log-alias']
368
- });
369
-
370
- // Act
371
- const result = await createMessageLog.execute({
372
- jwtToken: 'mock-jwt-token',
373
- incomingData: mockIncomingData
374
- });
375
-
376
- // Assert
377
- expect(result.success).toBe(true);
378
- });
379
-
380
- test('should return error when jwtToken is missing', async () => {
381
- // Act
382
- const result = await createMessageLog.execute({
383
- incomingData: { conversation: {}, contactId: 'test', contactName: 'Test' }
384
- });
385
-
386
- // Assert
387
- expect(result.success).toBe(false);
388
- expect(result.error).toContain('authorize CRM platform');
389
- });
390
-
391
- test('should return error when incomingData is missing', async () => {
392
- // Act
393
- const result = await createMessageLog.execute({
394
- jwtToken: 'mock-jwt-token'
395
- });
396
-
397
- // Assert
398
- expect(result.success).toBe(false);
399
- expect(result.error).toContain('Incoming data must be provided');
400
- });
401
-
402
- test('should return error when JWT is invalid', async () => {
403
- // Arrange
404
- const mockIncomingData = {
405
- conversation: {
406
- conversationLogId: 'conv-123',
407
- messages: [],
408
- correspondents: []
409
- },
410
- contactId: 'contact-123',
411
- contactName: 'Test'
412
- };
413
-
414
- jwt.decodeJwt.mockReturnValue({
415
- platform: 'testCRM'
416
- // id is missing
417
- });
418
-
419
- // Act
420
- const result = await createMessageLog.execute({
421
- jwtToken: 'invalid-token',
422
- incomingData: mockIncomingData
423
- });
424
-
425
- // Assert
426
- expect(result.success).toBe(false);
427
- expect(result.error).toContain('Invalid JWT token');
428
- });
429
-
430
- test('should return error when decodeJwt returns null', async () => {
431
- jwt.decodeJwt.mockReturnValue(null);
432
-
433
- const result = await createMessageLog.execute({
434
- jwtToken: 'invalid-token',
435
- incomingData: {
436
- sessionId: 'session-123',
437
- messageInfo: { from: { phoneNumber: '+1234567890' }, to: [{ phoneNumber: '+1098765432' }] }
438
- }
439
- });
440
-
441
- expect(result.success).toBe(false);
442
- expect(result.error).toContain('Invalid JWT token');
443
- });
444
-
445
- test('should return error when platform connector not found', async () => {
446
- // Arrange
447
- const mockIncomingData = {
448
- conversation: {
449
- conversationLogId: 'conv-123',
450
- messages: [],
451
- correspondents: []
452
- },
453
- contactId: 'contact-123',
454
- contactName: 'Test'
455
- };
456
-
457
- jwt.decodeJwt.mockReturnValue({
458
- id: 'user-123',
459
- platform: 'unknownCRM'
460
- });
461
-
462
- connectorRegistry.getConnector.mockReturnValue(null);
463
-
464
- // Act
465
- const result = await createMessageLog.execute({
466
- jwtToken: 'mock-jwt-token',
467
- incomingData: mockIncomingData
468
- });
469
-
470
- // Assert
471
- expect(result.success).toBe(false);
472
- expect(result.error).toContain('Platform connector not found');
473
- });
474
-
475
- test('should return error when createMessageLog is not implemented', async () => {
476
- // Arrange
477
- const mockIncomingData = {
478
- conversation: {
479
- conversationLogId: 'conv-123',
480
- messages: [],
481
- correspondents: []
482
- },
483
- contactId: 'contact-123',
484
- contactName: 'Test'
485
- };
486
-
487
- jwt.decodeJwt.mockReturnValue({
488
- id: 'user-123',
489
- platform: 'testCRM'
490
- });
491
-
492
- const mockConnector = {}; // No createMessageLog method
493
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
494
-
495
- // Act
496
- const result = await createMessageLog.execute({
497
- jwtToken: 'mock-jwt-token',
498
- incomingData: mockIncomingData
499
- });
500
-
501
- // Assert
502
- expect(result.success).toBe(false);
503
- expect(result.error).toContain('not implemented');
504
- });
505
-
506
- test('should return error when creation fails', async () => {
507
- // Arrange
508
- const mockIncomingData = {
509
- conversation: {
510
- conversationId: 'conv-fail',
511
- conversationLogId: 'conv-log-fail',
512
- messages: [
513
- {
514
- id: 'msg-fail',
515
- conversationId: 'conv-fail',
516
- phoneNumber: '+1234567890',
517
- direction: 'Inbound',
518
- from: { phoneNumber: '+1234567890' },
519
- to: [{ phoneNumber: '+0987654321' }]
520
- }
521
- ],
522
- correspondents: [
523
- { phoneNumber: '+1234567890' }
524
- ]
525
- },
526
- contactId: 'contact-fail',
527
- contactName: 'Fail Test'
528
- };
529
-
530
- jwt.decodeJwt.mockReturnValue({
531
- id: 'user-123',
532
- platform: 'testCRM'
533
- });
534
-
535
- const mockConnector = {
536
- createMessageLog: jest.fn()
537
- };
538
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
539
-
540
- logCore.createMessageLog.mockResolvedValue({
541
- successful: false,
542
- returnMessage: { message: 'Failed to create message logs in CRM' }
543
- });
544
-
545
- // Act
546
- const result = await createMessageLog.execute({
547
- jwtToken: 'mock-jwt-token',
548
- incomingData: mockIncomingData
549
- });
550
-
551
- // Assert
552
- expect(result.success).toBe(false);
553
- expect(result.error).toBe('Failed to create message logs in CRM');
554
- });
555
-
556
- test('should handle unexpected errors gracefully', async () => {
557
- // Arrange
558
- const mockIncomingData = {
559
- conversation: {
560
- conversationLogId: 'conv-error',
561
- messages: [],
562
- correspondents: []
563
- },
564
- contactId: 'contact-error',
565
- contactName: 'Error Test'
566
- };
567
-
568
- jwt.decodeJwt.mockReturnValue({
569
- id: 'user-123',
570
- platform: 'testCRM'
571
- });
572
-
573
- const mockConnector = {
574
- createMessageLog: jest.fn()
575
- };
576
- connectorRegistry.getConnector.mockReturnValue(mockConnector);
577
-
578
- logCore.createMessageLog.mockRejectedValue(
579
- new Error('Network timeout')
580
- );
581
-
582
- // Act
583
- const result = await createMessageLog.execute({
584
- jwtToken: 'mock-jwt-token',
585
- incomingData: mockIncomingData
586
- });
587
-
588
- // Assert
589
- expect(result.success).toBe(false);
590
- expect(result.error).toBe('Network timeout');
591
- expect(result.errorDetails).toBeDefined();
592
- });
593
- });
594
- });
595
-
@@ -1,113 +0,0 @@
1
- const doAuth = require('../../../mcp/tools/doAuth');
2
- const { createAuthSession } = require('../../../lib/authSession');
3
-
4
- jest.mock('../../../lib/authSession');
5
-
6
- describe('MCP Tool: doAuth', () => {
7
- beforeEach(() => {
8
- jest.clearAllMocks();
9
- });
10
-
11
- describe('tool definition', () => {
12
- test('should have correct tool definition', () => {
13
- expect(doAuth.definition).toBeDefined();
14
- expect(doAuth.definition.name).toBe('doAuth');
15
- expect(doAuth.definition.description).toContain('OAuth session');
16
- expect(doAuth.definition.inputSchema).toBeDefined();
17
- });
18
-
19
- test('should require connectorName and have optional hostname', () => {
20
- expect(doAuth.definition.inputSchema.required).toContain('connectorName');
21
- expect(doAuth.definition.inputSchema.properties).toHaveProperty('connectorName');
22
- expect(doAuth.definition.inputSchema.properties).toHaveProperty('hostname');
23
- });
24
- });
25
-
26
- describe('execute', () => {
27
- test('should create auth session successfully', async () => {
28
- // Arrange
29
- createAuthSession.mockResolvedValue(undefined);
30
-
31
- // Act
32
- const result = await doAuth.execute({
33
- sessionId: 'session-abc',
34
- connectorName: 'pipedrive',
35
- hostname: 'mycompany.pipedrive.com'
36
- });
37
-
38
- // Assert
39
- expect(result).toEqual({ success: true });
40
- expect(createAuthSession).toHaveBeenCalledWith('session-abc', {
41
- platform: 'pipedrive',
42
- hostname: 'mycompany.pipedrive.com'
43
- });
44
- });
45
-
46
- test('should create auth session with empty hostname when not provided', async () => {
47
- // Arrange
48
- createAuthSession.mockResolvedValue(undefined);
49
-
50
- // Act
51
- const result = await doAuth.execute({
52
- sessionId: 'session-xyz',
53
- connectorName: 'clio'
54
- });
55
-
56
- // Assert
57
- expect(result).toEqual({ success: true });
58
- expect(createAuthSession).toHaveBeenCalledWith('session-xyz', {
59
- platform: 'clio',
60
- hostname: ''
61
- });
62
- });
63
-
64
- test('should return error when sessionId is missing', async () => {
65
- // Act
66
- const result = await doAuth.execute({ connectorName: 'pipedrive' });
67
-
68
- // Assert
69
- expect(result).toEqual({
70
- success: false,
71
- error: 'Missing required fields: sessionId, connectorName'
72
- });
73
- expect(createAuthSession).not.toHaveBeenCalled();
74
- });
75
-
76
- test('should return error when connectorName is missing', async () => {
77
- // Act
78
- const result = await doAuth.execute({ sessionId: 'session-abc' });
79
-
80
- // Assert
81
- expect(result).toEqual({
82
- success: false,
83
- error: 'Missing required fields: sessionId, connectorName'
84
- });
85
- expect(createAuthSession).not.toHaveBeenCalled();
86
- });
87
-
88
- test('should return error when both sessionId and connectorName are missing', async () => {
89
- // Act
90
- const result = await doAuth.execute({});
91
-
92
- // Assert
93
- expect(result.success).toBe(false);
94
- expect(result.error).toContain('Missing required fields');
95
- });
96
-
97
- test('should handle unexpected errors gracefully', async () => {
98
- // Arrange
99
- createAuthSession.mockRejectedValue(new Error('DB write failed'));
100
-
101
- // Act
102
- const result = await doAuth.execute({
103
- sessionId: 'session-abc',
104
- connectorName: 'pipedrive'
105
- });
106
-
107
- // Assert
108
- expect(result.success).toBe(false);
109
- expect(result.error).toBe('DB write failed');
110
- expect(result.errorDetails).toBeDefined();
111
- });
112
- });
113
- });