@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.
- package/README.md +17 -16
- package/dist/connector/developerPortal.d.ts +6 -0
- package/{connector → dist/connector}/developerPortal.js +29 -12
- package/dist/connector/mock.d.ts +1 -0
- package/{connector → dist/connector}/mock.js +33 -17
- package/dist/connector/proxy/engine.d.ts +10 -0
- package/dist/connector/proxy/engine.js +222 -0
- package/dist/connector/proxy/index.d.ts +5 -0
- package/dist/connector/proxy/index.js +511 -0
- package/dist/connector/registry.d.ts +1 -0
- package/dist/connector/registry.js +243 -0
- package/dist/handlers/admin.d.ts +1 -0
- package/{handlers → dist/handlers}/admin.js +137 -78
- package/dist/handlers/appointment.d.ts +9 -0
- package/{handlers → dist/handlers}/appointment.js +58 -29
- package/dist/handlers/auth.d.ts +9 -0
- package/{handlers → dist/handlers}/auth.js +68 -40
- package/dist/handlers/calldown.d.ts +10 -0
- package/dist/handlers/calldown.js +134 -0
- package/dist/handlers/contact.d.ts +1 -0
- package/{handlers → dist/handlers}/contact.js +61 -39
- package/dist/handlers/disposition.d.ts +1 -0
- package/{handlers → dist/handlers}/disposition.js +20 -10
- package/dist/handlers/log.d.ts +1 -0
- package/{handlers → dist/handlers}/log.js +91 -124
- package/dist/handlers/managedAuth.d.ts +1 -0
- package/{handlers → dist/handlers}/managedAuth.js +134 -61
- package/dist/handlers/managedOAuth.d.ts +13 -0
- package/{handlers → dist/handlers}/managedOAuth.js +102 -30
- package/dist/handlers/plugin.d.ts +1 -0
- package/{handlers → dist/handlers}/plugin.js +59 -27
- package/dist/handlers/user.d.ts +1 -0
- package/{handlers → dist/handlers}/user.js +45 -27
- package/dist/index.d.ts +1 -0
- package/{index.js → dist/index.js} +548 -450
- package/dist/jest.config.d.ts +1 -0
- package/dist/jest.config.js +65 -0
- package/dist/lib/analytics.d.ts +4 -0
- package/{lib → dist/lib}/analytics.js +8 -6
- package/dist/lib/authSession.d.ts +5 -0
- package/{lib → dist/lib}/authSession.js +15 -43
- package/dist/lib/cacheCleanup.d.ts +4 -0
- package/{lib → dist/lib}/cacheCleanup.js +5 -17
- package/dist/lib/callLogComposer.d.ts +109 -0
- package/{lib → dist/lib}/callLogComposer.js +157 -197
- package/dist/lib/callLogLookup.d.ts +6 -0
- package/{lib → dist/lib}/callLogLookup.js +12 -34
- package/dist/lib/constants.d.ts +6 -0
- package/dist/lib/constants.js +9 -0
- package/dist/lib/debugTracer.d.ts +17 -0
- package/{lib → dist/lib}/debugTracer.js +7 -83
- package/dist/lib/encode.d.ts +3 -0
- package/dist/lib/encode.js +50 -0
- package/dist/lib/errorHandler.d.ts +7 -0
- package/dist/lib/errorHandler.js +161 -0
- package/dist/lib/generalErrorMessage.d.ts +7 -0
- package/{lib → dist/lib}/generalErrorMessage.js +6 -6
- package/dist/lib/jwt.d.ts +4 -0
- package/dist/lib/jwt.js +18 -0
- package/dist/lib/logger.d.ts +24 -0
- package/dist/lib/logger.js +126 -0
- package/dist/lib/migrateCallLogsSchema.d.ts +32 -0
- package/dist/lib/migrateCallLogsSchema.js +339 -0
- package/dist/lib/oauth.d.ts +4 -0
- package/{lib → dist/lib}/oauth.js +157 -160
- package/dist/lib/ringcentral.d.ts +24 -0
- package/dist/lib/ringcentral.js +226 -0
- package/dist/lib/s3ErrorLogReport.d.ts +4 -0
- package/{lib → dist/lib}/s3ErrorLogReport.js +11 -23
- package/dist/lib/sharedSMSComposer.d.ts +7 -0
- package/{lib → dist/lib}/sharedSMSComposer.js +21 -107
- package/dist/lib/util.d.ts +7 -0
- package/{lib → dist/lib}/util.js +9 -20
- package/dist/mcp/lib/oauthError.d.ts +1 -0
- package/dist/mcp/lib/oauthError.js +25 -0
- package/dist/mcp/lib/validator.d.ts +1 -0
- package/{mcp → dist/mcp}/lib/validator.js +16 -20
- package/dist/mcp/lib/widgetSessionToken.d.ts +1 -0
- package/dist/mcp/lib/widgetSessionToken.js +46 -0
- package/dist/mcp/mcpHandler.d.ts +8 -0
- package/{mcp → dist/mcp}/mcpHandler.js +98 -88
- package/dist/mcp/tools/cancelAppointment.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/cancelAppointment.js +7 -16
- package/dist/mcp/tools/checkAuthStatus.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/checkAuthStatus.js +21 -14
- package/dist/mcp/tools/confirmAppointment.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/confirmAppointment.js +7 -16
- package/dist/mcp/tools/createAppointment.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/createAppointment.js +7 -19
- package/dist/mcp/tools/createCallLog.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/createCallLog.js +18 -29
- package/dist/mcp/tools/createContact.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/createContact.js +8 -20
- package/dist/mcp/tools/createMessageLog.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/createMessageLog.js +14 -26
- package/dist/mcp/tools/doAuth.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/doAuth.js +17 -13
- package/dist/mcp/tools/findContactByName.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/findContactByName.js +9 -15
- package/dist/mcp/tools/findContactByPhone.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/findContactByPhone.js +8 -15
- package/dist/mcp/tools/getCallLog.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getCallLog.js +12 -21
- package/dist/mcp/tools/getGoogleFilePicker.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getGoogleFilePicker.js +9 -18
- package/dist/mcp/tools/getHelp.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getHelp.js +5 -6
- package/dist/mcp/tools/getPublicConnectors.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getPublicConnectors.js +19 -18
- package/dist/mcp/tools/getSessionInfo.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getSessionInfo.js +10 -16
- package/dist/mcp/tools/index.d.ts +8 -0
- package/dist/mcp/tools/index.js +50 -0
- package/dist/mcp/tools/listAppointments.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/listAppointments.js +7 -19
- package/dist/mcp/tools/logout.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/logout.js +16 -14
- package/dist/mcp/tools/rcGetCallLogs.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/rcGetCallLogs.js +10 -8
- package/dist/mcp/tools/updateAppointment.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/updateAppointment.js +17 -22
- package/dist/mcp/tools/updateCallLog.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/updateCallLog.js +16 -26
- package/dist/models/accountDataModel.d.ts +3 -0
- package/dist/models/accountDataModel.js +39 -0
- package/dist/models/adminConfigModel.d.ts +2 -0
- package/dist/models/adminConfigModel.js +39 -0
- package/dist/models/cacheModel.d.ts +2 -0
- package/{models → dist/models}/cacheModel.js +7 -3
- package/dist/models/callDownListModel.d.ts +2 -0
- package/{models → dist/models}/callDownListModel.js +8 -4
- package/dist/models/callLogModel.d.ts +2 -0
- package/dist/models/callLogModel.js +43 -0
- package/dist/models/dynamo/connectorSchema.d.ts +2 -0
- package/dist/models/dynamo/connectorSchema.js +141 -0
- package/dist/models/dynamo/lockSchema.d.ts +2 -0
- package/{models → dist/models}/dynamo/lockSchema.js +5 -7
- package/dist/models/dynamo/noteCacheSchema.d.ts +2 -0
- package/{models → dist/models}/dynamo/noteCacheSchema.js +4 -6
- package/dist/models/llmSessionModel.d.ts +2 -0
- package/dist/models/llmSessionModel.js +21 -0
- package/dist/models/messageLogModel.d.ts +2 -0
- package/{models → dist/models}/messageLogModel.js +8 -4
- package/dist/models/sequelize.d.ts +2 -0
- package/dist/models/sequelize.js +68 -0
- package/dist/models/userModel.d.ts +2 -0
- package/dist/models/userModel.js +49 -0
- package/dist/package.json +100 -0
- package/dist/releaseNotes.json +1222 -0
- package/dist/tsconfig.json +14 -0
- package/dist/types/admin.d.ts +141 -0
- package/dist/types/analytics.d.ts +14 -0
- package/dist/types/appointment.d.ts +50 -0
- package/dist/types/auth.d.ts +137 -0
- package/dist/types/authSession.d.ts +35 -0
- package/dist/types/cacheCleanup.d.ts +12 -0
- package/dist/types/calldown.d.ts +54 -0
- package/dist/types/common.d.ts +46 -0
- package/dist/types/connector.d.ts +165 -0
- package/dist/types/contact.d.ts +125 -0
- package/dist/types/errorHandler.d.ts +60 -0
- package/dist/types/index.d.ts +76 -0
- package/dist/types/json.d.ts +9 -0
- package/dist/types/jwt.d.ts +8 -0
- package/dist/types/logging.d.ts +224 -0
- package/dist/types/managedAuth.d.ts +114 -0
- package/dist/types/managedOAuth.d.ts +59 -0
- package/dist/types/manifest.d.ts +120 -0
- package/dist/types/migration.d.ts +15 -0
- package/dist/types/plugin.d.ts +74 -0
- package/dist/types/ringcentral.d.ts +61 -0
- package/dist/types/s3ErrorLogReport.d.ts +16 -0
- package/dist/types/sharedSMSComposer.d.ts +105 -0
- package/dist/types/user.d.ts +46 -0
- package/dist/types/util.d.ts +7 -0
- package/package.json +34 -6
- package/releaseNotes.json +13 -1
- package/.env.test +0 -5
- package/connector/proxy/engine.js +0 -165
- package/connector/proxy/index.js +0 -500
- package/connector/registry.js +0 -252
- package/docs/README.md +0 -50
- package/docs/architecture.md +0 -94
- package/docs/connectors.md +0 -116
- package/docs/handlers.md +0 -128
- package/docs/libraries.md +0 -98
- package/docs/models.md +0 -146
- package/docs/routes.md +0 -119
- package/docs/tests.md +0 -73
- package/handlers/calldown.js +0 -99
- package/jest.config.js +0 -57
- package/lib/constants.js +0 -9
- package/lib/encode.js +0 -30
- package/lib/errorHandler.js +0 -218
- package/lib/jwt.js +0 -18
- package/lib/logger.js +0 -190
- package/lib/migrateCallLogsSchema.js +0 -237
- package/lib/ringcentral.js +0 -267
- package/mcp/README.md +0 -420
- package/mcp/tools/index.js +0 -51
- package/mcp/ui/App/App.tsx +0 -358
- package/mcp/ui/App/components/AuthInfoForm.tsx +0 -113
- package/mcp/ui/App/components/AuthSuccess.tsx +0 -22
- package/mcp/ui/App/components/ConnectorList.tsx +0 -82
- package/mcp/ui/App/components/DebugPanel.tsx +0 -43
- package/mcp/ui/App/components/OAuthConnect.tsx +0 -270
- package/mcp/ui/App/lib/callTool.ts +0 -130
- package/mcp/ui/App/lib/debugLog.ts +0 -41
- package/mcp/ui/App/lib/developerPortal.ts +0 -111
- package/mcp/ui/App/main.css +0 -6
- package/mcp/ui/App/root.tsx +0 -13
- package/mcp/ui/dist/index.html +0 -53
- package/mcp/ui/vite.config.ts +0 -16
- package/models/accountDataModel.js +0 -34
- package/models/adminConfigModel.js +0 -35
- package/models/callLogModel.js +0 -39
- package/models/dynamo/connectorSchema.js +0 -146
- package/models/llmSessionModel.js +0 -17
- package/models/sequelize.js +0 -17
- package/models/userModel.js +0 -45
- package/test/connector/developerPortal.test.js +0 -166
- package/test/connector/mock.test.js +0 -131
- package/test/connector/proxy/engine.test.js +0 -211
- package/test/connector/proxy/index.test.js +0 -525
- package/test/connector/proxy/sample.json +0 -162
- package/test/connector/registry.test.js +0 -416
- package/test/handlers/admin.test.js +0 -960
- package/test/handlers/appointment.test.js +0 -260
- package/test/handlers/auth.test.js +0 -1096
- package/test/handlers/calldown.test.js +0 -310
- package/test/handlers/contact.test.js +0 -1014
- package/test/handlers/disposition.test.js +0 -396
- package/test/handlers/log.test.js +0 -1847
- package/test/handlers/managedAuth.test.js +0 -458
- package/test/handlers/managedOAuth.test.js +0 -262
- package/test/handlers/plugin.test.js +0 -429
- package/test/handlers/user.test.js +0 -381
- package/test/index.test.js +0 -301
- package/test/lib/analytics.test.js +0 -146
- package/test/lib/authSession.test.js +0 -173
- package/test/lib/cacheCleanup.test.js +0 -127
- package/test/lib/callLogComposer.test.js +0 -1231
- package/test/lib/debugTracer.test.js +0 -328
- package/test/lib/encode.test.js +0 -59
- package/test/lib/errorHandler.test.js +0 -246
- package/test/lib/generalErrorMessage.test.js +0 -82
- package/test/lib/jwt.test.js +0 -176
- package/test/lib/logger.test.js +0 -206
- package/test/lib/oauth.test.js +0 -359
- package/test/lib/ringcentral.test.js +0 -467
- package/test/lib/s3ErrorLogReport.test.js +0 -187
- package/test/lib/sharedSMSComposer.test.js +0 -1084
- package/test/lib/util.test.js +0 -329
- package/test/mcp/mcpHandler.test.js +0 -73
- package/test/mcp/mcpHandlerMore.test.js +0 -384
- package/test/mcp/tools/appointmentTools.test.js +0 -362
- package/test/mcp/tools/checkAuthStatus.test.js +0 -83
- package/test/mcp/tools/createCallLog.test.js +0 -436
- package/test/mcp/tools/createContact.test.js +0 -58
- package/test/mcp/tools/createMessageLog.test.js +0 -595
- package/test/mcp/tools/doAuth.test.js +0 -113
- package/test/mcp/tools/findContactByName.test.js +0 -275
- package/test/mcp/tools/findContactByPhone.test.js +0 -296
- package/test/mcp/tools/getCallLog.test.js +0 -298
- package/test/mcp/tools/getGoogleFilePicker.test.js +0 -281
- package/test/mcp/tools/getPublicConnectors.test.js +0 -107
- package/test/mcp/tools/getSessionInfo.test.js +0 -127
- package/test/mcp/tools/logout.test.js +0 -233
- package/test/mcp/tools/rcGetCallLogs.test.js +0 -56
- package/test/mcp/tools/updateCallLog.test.js +0 -360
- package/test/models/accountDataModel.test.js +0 -98
- package/test/models/callDownListModel.test.js +0 -125
- package/test/models/dynamo/connectorSchema.test.js +0 -189
- package/test/models/dynamo/lockSchema.test.js +0 -37
- package/test/models/dynamo/noteCacheSchema.test.js +0 -45
- package/test/models/llmSessionModel.test.js +0 -91
- package/test/models/models.test.js +0 -660
- package/test/routes/calldownRoutes.test.js +0 -224
- package/test/routes/coreRouterBroadRoutes.test.js +0 -855
- package/test/routes/dispositionRoutes.test.js +0 -192
- package/test/routes/managedAuthRoutes.test.js +0 -386
- package/test/routes/pluginRoutes.test.js +0 -262
- package/test/setup.js +0 -178
- /package/{mcp → dist/mcp}/ui/index.html +0 -0
- /package/{mcp → dist/mcp}/ui/package-lock.json +0 -0
- /package/{mcp → dist/mcp}/ui/package.json +0 -0
- /package/{mcp → dist/mcp}/ui/tsconfig.json +0 -0
|
@@ -1,362 +0,0 @@
|
|
|
1
|
-
jest.mock('../../../lib/jwt');
|
|
2
|
-
jest.mock('../../../connector/registry');
|
|
3
|
-
jest.mock('../../../handlers/appointment');
|
|
4
|
-
|
|
5
|
-
const jwt = require('../../../lib/jwt');
|
|
6
|
-
const connectorRegistry = require('../../../connector/registry');
|
|
7
|
-
const appointmentCore = require('../../../handlers/appointment');
|
|
8
|
-
const listAppointments = require('../../../mcp/tools/listAppointments');
|
|
9
|
-
const createAppointment = require('../../../mcp/tools/createAppointment');
|
|
10
|
-
const updateAppointment = require('../../../mcp/tools/updateAppointment');
|
|
11
|
-
const confirmAppointment = require('../../../mcp/tools/confirmAppointment');
|
|
12
|
-
const cancelAppointment = require('../../../mcp/tools/cancelAppointment');
|
|
13
|
-
|
|
14
|
-
describe('MCP appointment tools', () => {
|
|
15
|
-
const decodedToken = {
|
|
16
|
-
id: 'user-123',
|
|
17
|
-
platform: 'testCRM'
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
beforeEach(() => {
|
|
21
|
-
jest.clearAllMocks();
|
|
22
|
-
jwt.decodeJwt.mockReturnValue(decodedToken);
|
|
23
|
-
connectorRegistry.getConnector.mockReturnValue({
|
|
24
|
-
listAppointments: jest.fn(),
|
|
25
|
-
createAppointment: jest.fn(),
|
|
26
|
-
updateAppointment: jest.fn(),
|
|
27
|
-
confirmAppointment: jest.fn(),
|
|
28
|
-
cancelAppointment: jest.fn()
|
|
29
|
-
});
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
test('defines appointment tool schemas and annotations', () => {
|
|
33
|
-
expect(listAppointments.definition.name).toBe('listAppointments');
|
|
34
|
-
expect(listAppointments.definition.annotations.readOnlyHint).toBe(true);
|
|
35
|
-
expect(createAppointment.definition.inputSchema.required).toEqual(['title', 'startTimeUtc', 'durationMinutes']);
|
|
36
|
-
expect(updateAppointment.definition.inputSchema.required).toEqual(['appointmentId']);
|
|
37
|
-
expect(confirmAppointment.definition.inputSchema.required).toEqual(['appointmentId']);
|
|
38
|
-
expect(cancelAppointment.definition.annotations.destructiveHint).toBe(true);
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
test('listAppointments resolves filters, custom ranges, success, and handler failure', async () => {
|
|
42
|
-
appointmentCore.listAppointments.mockResolvedValueOnce({
|
|
43
|
-
successful: true,
|
|
44
|
-
appointments: [{ id: 'appt-1' }],
|
|
45
|
-
returnMessage: { message: 'Listed' }
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
const upcomingResult = await listAppointments.execute({
|
|
49
|
-
jwtToken: 'jwt-token',
|
|
50
|
-
filter: 'upcoming',
|
|
51
|
-
mineOnly: true
|
|
52
|
-
});
|
|
53
|
-
|
|
54
|
-
expect(upcomingResult.success).toBe(true);
|
|
55
|
-
expect(upcomingResult.data.filter).toBe('upcoming');
|
|
56
|
-
expect(upcomingResult.data.totalCount).toBe(1);
|
|
57
|
-
expect(appointmentCore.listAppointments).toHaveBeenCalledWith({
|
|
58
|
-
platform: 'testCRM',
|
|
59
|
-
userId: 'user-123',
|
|
60
|
-
range: expect.objectContaining({
|
|
61
|
-
startDate: expect.any(String),
|
|
62
|
-
endDate: expect.any(String)
|
|
63
|
-
}),
|
|
64
|
-
mineOnly: true,
|
|
65
|
-
forceSync: false
|
|
66
|
-
});
|
|
67
|
-
|
|
68
|
-
appointmentCore.listAppointments.mockResolvedValueOnce({
|
|
69
|
-
successful: true,
|
|
70
|
-
appointments: []
|
|
71
|
-
});
|
|
72
|
-
const customResult = await listAppointments.execute({
|
|
73
|
-
jwtToken: 'jwt-token',
|
|
74
|
-
filter: 'custom',
|
|
75
|
-
startDate: '2026-07-01',
|
|
76
|
-
endDate: '2026-07-31'
|
|
77
|
-
});
|
|
78
|
-
expect(customResult.data.range).toEqual({
|
|
79
|
-
startDate: '2026-07-01',
|
|
80
|
-
endDate: '2026-07-31'
|
|
81
|
-
});
|
|
82
|
-
|
|
83
|
-
appointmentCore.listAppointments.mockResolvedValueOnce({
|
|
84
|
-
successful: false,
|
|
85
|
-
returnMessage: { message: 'List failed' }
|
|
86
|
-
});
|
|
87
|
-
const failedResult = await listAppointments.execute({
|
|
88
|
-
jwtToken: 'jwt-token',
|
|
89
|
-
filter: 'past'
|
|
90
|
-
});
|
|
91
|
-
expect(failedResult).toMatchObject({
|
|
92
|
-
success: false,
|
|
93
|
-
error: 'List failed'
|
|
94
|
-
});
|
|
95
|
-
});
|
|
96
|
-
|
|
97
|
-
test('listAppointments validates auth and connector capability errors', async () => {
|
|
98
|
-
await expect(listAppointments.execute({})).resolves.toMatchObject({
|
|
99
|
-
success: false,
|
|
100
|
-
error: 'Please go to Settings and authorize CRM platform'
|
|
101
|
-
});
|
|
102
|
-
|
|
103
|
-
jwt.decodeJwt.mockReturnValueOnce(null);
|
|
104
|
-
await expect(listAppointments.execute({ jwtToken: 'bad' })).resolves.toMatchObject({
|
|
105
|
-
success: false,
|
|
106
|
-
error: 'Invalid JWT token'
|
|
107
|
-
});
|
|
108
|
-
|
|
109
|
-
jwt.decodeJwt.mockReturnValueOnce({ platform: 'testCRM' });
|
|
110
|
-
await expect(listAppointments.execute({ jwtToken: 'jwt-token' })).resolves.toMatchObject({
|
|
111
|
-
success: false,
|
|
112
|
-
error: 'Invalid JWT token: userId not found'
|
|
113
|
-
});
|
|
114
|
-
|
|
115
|
-
connectorRegistry.getConnector.mockReturnValueOnce(null);
|
|
116
|
-
await expect(listAppointments.execute({ jwtToken: 'jwt-token' })).resolves.toMatchObject({
|
|
117
|
-
success: false,
|
|
118
|
-
error: 'Platform connector not found for: testCRM'
|
|
119
|
-
});
|
|
120
|
-
|
|
121
|
-
connectorRegistry.getConnector.mockReturnValueOnce({});
|
|
122
|
-
await expect(listAppointments.execute({ jwtToken: 'jwt-token' })).resolves.toMatchObject({
|
|
123
|
-
success: false,
|
|
124
|
-
error: 'listAppointments is not implemented for platform: testCRM'
|
|
125
|
-
});
|
|
126
|
-
});
|
|
127
|
-
|
|
128
|
-
test('createAppointment validates payload and returns success or handler failure', async () => {
|
|
129
|
-
await expect(createAppointment.execute({})).resolves.toMatchObject({
|
|
130
|
-
success: false,
|
|
131
|
-
error: 'Please go to Settings and authorize CRM platform'
|
|
132
|
-
});
|
|
133
|
-
await expect(createAppointment.execute({ jwtToken: 'jwt-token' })).resolves.toMatchObject({
|
|
134
|
-
success: false,
|
|
135
|
-
error: 'title is required'
|
|
136
|
-
});
|
|
137
|
-
await expect(createAppointment.execute({ jwtToken: 'jwt-token', title: 'Meet' })).resolves.toMatchObject({
|
|
138
|
-
success: false,
|
|
139
|
-
error: expect.stringContaining('startTimeUtc is required')
|
|
140
|
-
});
|
|
141
|
-
await expect(createAppointment.execute({
|
|
142
|
-
jwtToken: 'jwt-token',
|
|
143
|
-
title: 'Meet',
|
|
144
|
-
startTimeUtc: '2026-07-20T19:00:00.000Z'
|
|
145
|
-
})).resolves.toMatchObject({
|
|
146
|
-
success: false,
|
|
147
|
-
error: 'durationMinutes is required'
|
|
148
|
-
});
|
|
149
|
-
|
|
150
|
-
appointmentCore.createAppointment.mockResolvedValueOnce({
|
|
151
|
-
successful: true,
|
|
152
|
-
appointmentId: 'appt-1',
|
|
153
|
-
appointment: { id: 'appt-1' },
|
|
154
|
-
returnMessage: { message: 'Created' }
|
|
155
|
-
});
|
|
156
|
-
const result = await createAppointment.execute({
|
|
157
|
-
jwtToken: 'jwt-token',
|
|
158
|
-
title: 'Meet',
|
|
159
|
-
summary: 'Summary',
|
|
160
|
-
startTimeUtc: '2026-07-20T19:00:00.000Z',
|
|
161
|
-
durationMinutes: '45',
|
|
162
|
-
contacts: ['contact-1']
|
|
163
|
-
});
|
|
164
|
-
|
|
165
|
-
expect(result).toEqual({
|
|
166
|
-
success: true,
|
|
167
|
-
data: {
|
|
168
|
-
appointmentId: 'appt-1',
|
|
169
|
-
appointment: { id: 'appt-1' },
|
|
170
|
-
message: 'Created'
|
|
171
|
-
}
|
|
172
|
-
});
|
|
173
|
-
expect(appointmentCore.createAppointment).toHaveBeenCalledWith({
|
|
174
|
-
platform: 'testCRM',
|
|
175
|
-
userId: 'user-123',
|
|
176
|
-
payload: {
|
|
177
|
-
title: 'Meet',
|
|
178
|
-
summary: 'Summary',
|
|
179
|
-
startTimeUtc: '2026-07-20T19:00:00.000Z',
|
|
180
|
-
durationMinutes: 45,
|
|
181
|
-
contacts: ['contact-1']
|
|
182
|
-
}
|
|
183
|
-
});
|
|
184
|
-
|
|
185
|
-
appointmentCore.createAppointment.mockResolvedValueOnce({
|
|
186
|
-
successful: false,
|
|
187
|
-
returnMessage: { message: 'Create failed' }
|
|
188
|
-
});
|
|
189
|
-
await expect(createAppointment.execute({
|
|
190
|
-
jwtToken: 'jwt-token',
|
|
191
|
-
title: 'Meet',
|
|
192
|
-
startTimeUtc: '2026-07-20T19:00:00.000Z',
|
|
193
|
-
durationMinutes: 30
|
|
194
|
-
})).resolves.toMatchObject({
|
|
195
|
-
success: false,
|
|
196
|
-
error: 'Create failed'
|
|
197
|
-
});
|
|
198
|
-
});
|
|
199
|
-
|
|
200
|
-
test('createAppointment validates connector availability and implementation', async () => {
|
|
201
|
-
connectorRegistry.getConnector.mockReturnValueOnce(null);
|
|
202
|
-
await expect(createAppointment.execute({
|
|
203
|
-
jwtToken: 'jwt-token',
|
|
204
|
-
title: 'Meet',
|
|
205
|
-
startTimeUtc: '2026-07-20T19:00:00.000Z',
|
|
206
|
-
durationMinutes: 30
|
|
207
|
-
})).resolves.toMatchObject({
|
|
208
|
-
success: false,
|
|
209
|
-
error: 'Platform connector not found for: testCRM'
|
|
210
|
-
});
|
|
211
|
-
|
|
212
|
-
connectorRegistry.getConnector.mockReturnValueOnce({});
|
|
213
|
-
await expect(createAppointment.execute({
|
|
214
|
-
jwtToken: 'jwt-token',
|
|
215
|
-
title: 'Meet',
|
|
216
|
-
startTimeUtc: '2026-07-20T19:00:00.000Z',
|
|
217
|
-
durationMinutes: 30
|
|
218
|
-
})).resolves.toMatchObject({
|
|
219
|
-
success: false,
|
|
220
|
-
error: 'createAppointment is not implemented for platform: testCRM'
|
|
221
|
-
});
|
|
222
|
-
});
|
|
223
|
-
|
|
224
|
-
test('updateAppointment builds sparse patch body and handles failures', async () => {
|
|
225
|
-
await expect(updateAppointment.execute({ jwtToken: 'jwt-token' })).resolves.toMatchObject({
|
|
226
|
-
success: false,
|
|
227
|
-
error: 'appointmentId is required'
|
|
228
|
-
});
|
|
229
|
-
|
|
230
|
-
appointmentCore.updateAppointment.mockResolvedValueOnce({
|
|
231
|
-
successful: true,
|
|
232
|
-
appointment: { id: 'appt-1' },
|
|
233
|
-
returnMessage: { message: 'Updated' }
|
|
234
|
-
});
|
|
235
|
-
const result = await updateAppointment.execute({
|
|
236
|
-
jwtToken: 'jwt-token',
|
|
237
|
-
appointmentId: 'appt-1',
|
|
238
|
-
title: 'Updated',
|
|
239
|
-
summary: 'Summary',
|
|
240
|
-
startTimeUtc: '2026-07-20T19:00:00.000Z',
|
|
241
|
-
durationMinutes: '60',
|
|
242
|
-
contacts: [{ id: 'contact-1' }]
|
|
243
|
-
});
|
|
244
|
-
|
|
245
|
-
expect(result).toEqual({
|
|
246
|
-
success: true,
|
|
247
|
-
data: {
|
|
248
|
-
appointment: { id: 'appt-1' },
|
|
249
|
-
message: 'Updated'
|
|
250
|
-
}
|
|
251
|
-
});
|
|
252
|
-
expect(appointmentCore.updateAppointment).toHaveBeenCalledWith({
|
|
253
|
-
platform: 'testCRM',
|
|
254
|
-
userId: 'user-123',
|
|
255
|
-
appointmentId: 'appt-1',
|
|
256
|
-
patchBody: {
|
|
257
|
-
title: 'Updated',
|
|
258
|
-
summary: 'Summary',
|
|
259
|
-
startTimeUtc: '2026-07-20T19:00:00.000Z',
|
|
260
|
-
durationMinutes: 60,
|
|
261
|
-
contacts: [{ id: 'contact-1' }]
|
|
262
|
-
}
|
|
263
|
-
});
|
|
264
|
-
|
|
265
|
-
appointmentCore.updateAppointment.mockResolvedValueOnce({
|
|
266
|
-
successful: false,
|
|
267
|
-
returnMessage: { message: 'Update failed' }
|
|
268
|
-
});
|
|
269
|
-
await expect(updateAppointment.execute({
|
|
270
|
-
jwtToken: 'jwt-token',
|
|
271
|
-
appointmentId: 'appt-1'
|
|
272
|
-
})).resolves.toMatchObject({
|
|
273
|
-
success: false,
|
|
274
|
-
error: 'Update failed'
|
|
275
|
-
});
|
|
276
|
-
});
|
|
277
|
-
|
|
278
|
-
test('updateAppointment validates connector availability and implementation', async () => {
|
|
279
|
-
connectorRegistry.getConnector.mockReturnValueOnce(null);
|
|
280
|
-
await expect(updateAppointment.execute({
|
|
281
|
-
jwtToken: 'jwt-token',
|
|
282
|
-
appointmentId: 'appt-1'
|
|
283
|
-
})).resolves.toMatchObject({
|
|
284
|
-
success: false,
|
|
285
|
-
error: 'Platform connector not found for: testCRM'
|
|
286
|
-
});
|
|
287
|
-
|
|
288
|
-
connectorRegistry.getConnector.mockReturnValueOnce({});
|
|
289
|
-
await expect(updateAppointment.execute({
|
|
290
|
-
jwtToken: 'jwt-token',
|
|
291
|
-
appointmentId: 'appt-1'
|
|
292
|
-
})).resolves.toMatchObject({
|
|
293
|
-
success: false,
|
|
294
|
-
error: 'updateAppointment is not implemented for platform: testCRM'
|
|
295
|
-
});
|
|
296
|
-
});
|
|
297
|
-
|
|
298
|
-
test.each([
|
|
299
|
-
['confirmAppointment', confirmAppointment, 'confirmAppointment', appointmentCore.confirmAppointment, 'Appointment confirmed successfully', 'Failed to confirm appointment'],
|
|
300
|
-
['cancelAppointment', cancelAppointment, 'cancelAppointment', appointmentCore.cancelAppointment, 'Appointment cancelled successfully', 'Failed to cancel appointment']
|
|
301
|
-
])('%s validates, succeeds, fails, and checks capability', async (name, tool, capabilityName, handlerFn, defaultMessage, defaultError) => {
|
|
302
|
-
await expect(tool.execute({})).resolves.toMatchObject({
|
|
303
|
-
success: false,
|
|
304
|
-
error: 'Please go to Settings and authorize CRM platform'
|
|
305
|
-
});
|
|
306
|
-
await expect(tool.execute({ jwtToken: 'jwt-token' })).resolves.toMatchObject({
|
|
307
|
-
success: false,
|
|
308
|
-
error: 'appointmentId is required'
|
|
309
|
-
});
|
|
310
|
-
|
|
311
|
-
handlerFn.mockResolvedValueOnce({
|
|
312
|
-
successful: true,
|
|
313
|
-
appointment: { id: 'appt-1' },
|
|
314
|
-
returnMessage: {}
|
|
315
|
-
});
|
|
316
|
-
await expect(tool.execute({
|
|
317
|
-
jwtToken: 'jwt-token',
|
|
318
|
-
appointmentId: 'appt-1'
|
|
319
|
-
})).resolves.toEqual({
|
|
320
|
-
success: true,
|
|
321
|
-
data: {
|
|
322
|
-
appointment: { id: 'appt-1' },
|
|
323
|
-
message: defaultMessage
|
|
324
|
-
}
|
|
325
|
-
});
|
|
326
|
-
expect(handlerFn).toHaveBeenCalledWith({
|
|
327
|
-
platform: 'testCRM',
|
|
328
|
-
userId: 'user-123',
|
|
329
|
-
appointmentId: 'appt-1'
|
|
330
|
-
});
|
|
331
|
-
|
|
332
|
-
handlerFn.mockResolvedValueOnce({
|
|
333
|
-
successful: false,
|
|
334
|
-
returnMessage: {}
|
|
335
|
-
});
|
|
336
|
-
await expect(tool.execute({
|
|
337
|
-
jwtToken: 'jwt-token',
|
|
338
|
-
appointmentId: 'appt-1'
|
|
339
|
-
})).resolves.toMatchObject({
|
|
340
|
-
success: false,
|
|
341
|
-
error: defaultError
|
|
342
|
-
});
|
|
343
|
-
|
|
344
|
-
connectorRegistry.getConnector.mockReturnValueOnce(null);
|
|
345
|
-
await expect(tool.execute({
|
|
346
|
-
jwtToken: 'jwt-token',
|
|
347
|
-
appointmentId: 'appt-1'
|
|
348
|
-
})).resolves.toMatchObject({
|
|
349
|
-
success: false,
|
|
350
|
-
error: 'Platform connector not found for: testCRM'
|
|
351
|
-
});
|
|
352
|
-
|
|
353
|
-
connectorRegistry.getConnector.mockReturnValueOnce({});
|
|
354
|
-
await expect(tool.execute({
|
|
355
|
-
jwtToken: 'jwt-token',
|
|
356
|
-
appointmentId: 'appt-1'
|
|
357
|
-
})).resolves.toMatchObject({
|
|
358
|
-
success: false,
|
|
359
|
-
error: `${capabilityName} is not implemented for platform: testCRM`
|
|
360
|
-
});
|
|
361
|
-
});
|
|
362
|
-
});
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
const checkAuthStatus = require('../../../mcp/tools/checkAuthStatus');
|
|
2
|
-
const { getAuthSession } = require('../../../lib/authSession');
|
|
3
|
-
const { LlmSessionModel } = require('../../../models/llmSessionModel');
|
|
4
|
-
|
|
5
|
-
jest.mock('../../../lib/authSession');
|
|
6
|
-
jest.mock('../../../models/llmSessionModel');
|
|
7
|
-
|
|
8
|
-
describe('MCP Tool: checkAuthStatus', () => {
|
|
9
|
-
beforeEach(() => {
|
|
10
|
-
jest.clearAllMocks();
|
|
11
|
-
LlmSessionModel.upsert.mockResolvedValue([{}, true]);
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
test('should return pending when auth session is still waiting', async () => {
|
|
15
|
-
getAuthSession.mockResolvedValue({ status: 'pending' });
|
|
16
|
-
|
|
17
|
-
const result = await checkAuthStatus.execute({
|
|
18
|
-
sessionId: 'session-1',
|
|
19
|
-
rcExtensionId: 'rc-ext-1'
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
expect(result).toEqual({
|
|
23
|
-
data: {
|
|
24
|
-
status: 'pending'
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
expect(LlmSessionModel.upsert).not.toHaveBeenCalled();
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
test('should persist completed auth against rcExtensionId', async () => {
|
|
31
|
-
getAuthSession.mockResolvedValue({
|
|
32
|
-
status: 'completed',
|
|
33
|
-
jwtToken: 'jwt-token',
|
|
34
|
-
userInfo: { id: 'user-1', name: 'Casey' }
|
|
35
|
-
});
|
|
36
|
-
|
|
37
|
-
const result = await checkAuthStatus.execute({
|
|
38
|
-
sessionId: 'session-1',
|
|
39
|
-
rcExtensionId: 'rc-ext-1'
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
expect(LlmSessionModel.upsert).toHaveBeenCalledWith({
|
|
43
|
-
id: 'rc-ext-1',
|
|
44
|
-
jwtToken: 'jwt-token',
|
|
45
|
-
expiry: expect.any(Date)
|
|
46
|
-
});
|
|
47
|
-
expect(result).toEqual({
|
|
48
|
-
data: {
|
|
49
|
-
status: 'completed',
|
|
50
|
-
jwtToken: 'jwt-token',
|
|
51
|
-
userInfo: { id: 'user-1', name: 'Casey' },
|
|
52
|
-
message: expect.stringContaining('IMPORTANT')
|
|
53
|
-
}
|
|
54
|
-
});
|
|
55
|
-
});
|
|
56
|
-
|
|
57
|
-
test('should return expired when the auth session TTL has elapsed', async () => {
|
|
58
|
-
getAuthSession.mockResolvedValue({ status: 'expired' });
|
|
59
|
-
|
|
60
|
-
const result = await checkAuthStatus.execute({
|
|
61
|
-
sessionId: 'session-1',
|
|
62
|
-
rcExtensionId: 'rc-ext-1'
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
expect(result).toEqual({
|
|
66
|
-
data: {
|
|
67
|
-
status: 'expired',
|
|
68
|
-
errorMessage: 'Authentication session expired. Ask the user to start the auth flow again.'
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
test('should return an error when rcExtensionId is missing', async () => {
|
|
74
|
-
const result = await checkAuthStatus.execute({
|
|
75
|
-
sessionId: 'session-1'
|
|
76
|
-
});
|
|
77
|
-
|
|
78
|
-
expect(result).toEqual({
|
|
79
|
-
success: false,
|
|
80
|
-
error: 'CRM auth status check error: rcExtensionId is required'
|
|
81
|
-
});
|
|
82
|
-
});
|
|
83
|
-
});
|