@app-connect/core 1.7.25 → 1.7.26

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 (137) hide show
  1. package/.env.test +5 -5
  2. package/README.md +441 -441
  3. package/connector/developerPortal.js +31 -31
  4. package/connector/mock.js +84 -77
  5. package/connector/proxy/engine.js +164 -164
  6. package/connector/proxy/index.js +500 -500
  7. package/connector/registry.js +252 -252
  8. package/docs/README.md +50 -50
  9. package/docs/architecture.md +93 -93
  10. package/docs/connectors.md +116 -116
  11. package/docs/handlers.md +125 -125
  12. package/docs/libraries.md +101 -101
  13. package/docs/models.md +144 -144
  14. package/docs/routes.md +115 -115
  15. package/docs/tests.md +73 -73
  16. package/handlers/admin.js +523 -523
  17. package/handlers/appointment.js +193 -0
  18. package/handlers/auth.js +296 -296
  19. package/handlers/calldown.js +99 -99
  20. package/handlers/contact.js +280 -280
  21. package/handlers/disposition.js +82 -80
  22. package/handlers/log.js +984 -973
  23. package/handlers/managedAuth.js +446 -446
  24. package/handlers/plugin.js +208 -208
  25. package/handlers/user.js +142 -142
  26. package/index.js +3140 -2652
  27. package/jest.config.js +56 -56
  28. package/lib/analytics.js +54 -54
  29. package/lib/authSession.js +109 -109
  30. package/lib/cacheCleanup.js +21 -0
  31. package/lib/callLogComposer.js +898 -898
  32. package/lib/callLogLookup.js +34 -0
  33. package/lib/constants.js +8 -8
  34. package/lib/debugTracer.js +177 -177
  35. package/lib/encode.js +30 -30
  36. package/lib/errorHandler.js +218 -206
  37. package/lib/generalErrorMessage.js +41 -41
  38. package/lib/jwt.js +18 -18
  39. package/lib/logger.js +190 -190
  40. package/lib/migrateCallLogsSchema.js +116 -0
  41. package/lib/ringcentral.js +266 -266
  42. package/lib/s3ErrorLogReport.js +65 -65
  43. package/lib/sharedSMSComposer.js +471 -471
  44. package/lib/util.js +67 -67
  45. package/mcp/README.md +412 -395
  46. package/mcp/lib/validator.js +91 -91
  47. package/mcp/mcpHandler.js +425 -425
  48. package/mcp/tools/cancelAppointment.js +101 -0
  49. package/mcp/tools/checkAuthStatus.js +105 -105
  50. package/mcp/tools/confirmAppointment.js +101 -0
  51. package/mcp/tools/createAppointment.js +157 -0
  52. package/mcp/tools/createCallLog.js +327 -316
  53. package/mcp/tools/createContact.js +117 -117
  54. package/mcp/tools/createMessageLog.js +287 -287
  55. package/mcp/tools/doAuth.js +60 -60
  56. package/mcp/tools/findContactByName.js +93 -93
  57. package/mcp/tools/findContactByPhone.js +101 -101
  58. package/mcp/tools/getCallLog.js +111 -102
  59. package/mcp/tools/getGoogleFilePicker.js +99 -99
  60. package/mcp/tools/getHelp.js +43 -43
  61. package/mcp/tools/getPublicConnectors.js +94 -94
  62. package/mcp/tools/getSessionInfo.js +90 -90
  63. package/mcp/tools/index.js +51 -41
  64. package/mcp/tools/listAppointments.js +163 -0
  65. package/mcp/tools/logout.js +96 -96
  66. package/mcp/tools/rcGetCallLogs.js +65 -65
  67. package/mcp/tools/updateAppointment.js +154 -0
  68. package/mcp/tools/updateCallLog.js +130 -126
  69. package/mcp/ui/App/App.tsx +358 -358
  70. package/mcp/ui/App/components/AuthInfoForm.tsx +113 -113
  71. package/mcp/ui/App/components/AuthSuccess.tsx +22 -22
  72. package/mcp/ui/App/components/ConnectorList.tsx +82 -82
  73. package/mcp/ui/App/components/DebugPanel.tsx +43 -43
  74. package/mcp/ui/App/components/OAuthConnect.tsx +270 -270
  75. package/mcp/ui/App/lib/callTool.ts +130 -130
  76. package/mcp/ui/App/lib/debugLog.ts +41 -41
  77. package/mcp/ui/App/lib/developerPortal.ts +111 -111
  78. package/mcp/ui/App/main.css +5 -5
  79. package/mcp/ui/App/root.tsx +13 -13
  80. package/mcp/ui/index.html +13 -13
  81. package/mcp/ui/package-lock.json +6356 -6356
  82. package/mcp/ui/package.json +25 -25
  83. package/mcp/ui/tsconfig.json +26 -26
  84. package/mcp/ui/vite.config.ts +16 -16
  85. package/models/accountDataModel.js +33 -33
  86. package/models/adminConfigModel.js +35 -35
  87. package/models/cacheModel.js +30 -26
  88. package/models/callDownListModel.js +34 -34
  89. package/models/callLogModel.js +33 -27
  90. package/models/dynamo/connectorSchema.js +146 -146
  91. package/models/dynamo/lockSchema.js +24 -24
  92. package/models/dynamo/noteCacheSchema.js +29 -29
  93. package/models/llmSessionModel.js +17 -17
  94. package/models/messageLogModel.js +25 -25
  95. package/models/sequelize.js +16 -16
  96. package/models/userModel.js +45 -45
  97. package/package.json +1 -1
  98. package/releaseNotes.json +1093 -1081
  99. package/test/connector/proxy/engine.test.js +126 -126
  100. package/test/connector/proxy/index.test.js +279 -279
  101. package/test/connector/proxy/sample.json +161 -161
  102. package/test/connector/registry.test.js +415 -415
  103. package/test/handlers/admin.test.js +616 -616
  104. package/test/handlers/auth.test.js +1018 -1018
  105. package/test/handlers/contact.test.js +1014 -1014
  106. package/test/handlers/log.test.js +1298 -1160
  107. package/test/handlers/managedAuth.test.js +457 -457
  108. package/test/handlers/plugin.test.js +380 -380
  109. package/test/index.test.js +105 -105
  110. package/test/lib/cacheCleanup.test.js +42 -0
  111. package/test/lib/callLogComposer.test.js +1231 -1231
  112. package/test/lib/debugTracer.test.js +328 -328
  113. package/test/lib/jwt.test.js +176 -176
  114. package/test/lib/logger.test.js +206 -206
  115. package/test/lib/oauth.test.js +359 -359
  116. package/test/lib/ringcentral.test.js +467 -467
  117. package/test/lib/sharedSMSComposer.test.js +1084 -1084
  118. package/test/lib/util.test.js +329 -329
  119. package/test/mcp/tools/checkAuthStatus.test.js +83 -83
  120. package/test/mcp/tools/createCallLog.test.js +436 -436
  121. package/test/mcp/tools/createContact.test.js +58 -58
  122. package/test/mcp/tools/createMessageLog.test.js +595 -595
  123. package/test/mcp/tools/doAuth.test.js +113 -113
  124. package/test/mcp/tools/findContactByName.test.js +275 -275
  125. package/test/mcp/tools/findContactByPhone.test.js +296 -296
  126. package/test/mcp/tools/getCallLog.test.js +298 -298
  127. package/test/mcp/tools/getGoogleFilePicker.test.js +281 -281
  128. package/test/mcp/tools/getPublicConnectors.test.js +107 -107
  129. package/test/mcp/tools/getSessionInfo.test.js +127 -127
  130. package/test/mcp/tools/logout.test.js +233 -233
  131. package/test/mcp/tools/rcGetCallLogs.test.js +56 -56
  132. package/test/mcp/tools/updateCallLog.test.js +360 -360
  133. package/test/models/accountDataModel.test.js +98 -98
  134. package/test/models/dynamo/connectorSchema.test.js +189 -189
  135. package/test/models/models.test.js +568 -539
  136. package/test/routes/managedAuthRoutes.test.js +104 -104
  137. package/test/setup.js +178 -178
package/releaseNotes.json CHANGED
@@ -1,1082 +1,1094 @@
1
- {
2
- "1.7.25": {
3
- "global": [
4
- {
5
- "type": "Fix",
6
- "description": "Click-to-dial render issue"
7
- }
8
- ]
9
- },
10
- "1.7.24": {
11
- "global": [
12
- {
13
- "type": "New",
14
- "description": "Click-to-dial number matcher selection in User Setting -> General"
15
- },
16
- {
17
- "type": "Fix",
18
- "description": "Error report upload"
19
- }
20
- ]
21
- },
22
- "1.7.23": {
23
- "global": [
24
- {
25
- "type": "Rename",
26
- "description": "Rename RingSense to ACE"
27
- }
28
- ]
29
- },
30
- "1.7.22": {
31
- "global": [
32
- {
33
- "type": "New",
34
- "description": "Managed auth fields for non-OAuth platforms"
35
- }
36
- ]
37
- },
38
- "1.7.21": {
39
- "global": [
40
- {
41
- "type": "Fix",
42
- "description": "Refresh contact for deleted contact issue"
43
- },
44
- {
45
- "type": "Fix",
46
- "description": "Click-to-sms button issue"
47
- }
48
- ]
49
- },
50
- "1.7.20": {
51
- "global": [
52
- {
53
- "type": "Fix",
54
- "description": "Click-to-dial not detecting numbers in input fields"
55
- },
56
- {
57
- "type": "Fix",
58
- "description": "Warm transfer call logging issue"
59
- }
60
- ]
61
- },
62
- "1.7.19": {
63
- "global": [
64
- {
65
- "type": "Beta",
66
- "description": "Plugin system infrastructure. No plugin available yet, but add soon. Take a quick look at its [overview](https://appconnect.labs.ringcentral.com/users/plugins)"
67
- },
68
- {
69
- "type": "Better",
70
- "description": "Click-to-dial with wider number match"
71
- }
72
- ]
73
- },
74
- "1.7.18": {
75
- "global": [
76
- {
77
- "type": "New",
78
- "description": "Support for Group SMS logging"
79
- },
80
- {
81
- "type": "Better",
82
- "description": "User session will log be revoked is token refresh fails"
83
- },
84
- {
85
- "type": "Fix",
86
- "description": "Contact call pop issue"
87
- }
88
- ]
89
- },
90
- "1.7.16": {
91
- "global": [
92
- {
93
- "type": "Fix",
94
- "description": "SMS logging issue of repeatedly logging same messages"
95
- },
96
- {
97
- "type": "Fix",
98
- "description": "Mixpanel token issue that blocks certain webpage access"
99
- }
100
- ]
101
- },
102
- "1.7.15": {
103
- "global": [
104
- {
105
- "type": "Fix",
106
- "description": "Click-to-dial injection for HTML shadow roots"
107
- },
108
- {
109
- "type": "Fix",
110
- "description": "A not-found error for user mapping"
111
- }
112
- ]
113
- },
114
- "1.7.12": {
115
- "global": [
116
- {
117
- "type": "New",
118
- "description": "A button on Developer settings page to re-initialize user mapping"
119
- },
120
- {
121
- "type": "Better",
122
- "description": "Click-to-SMS button is disabled if RingCentral SMS service is not activated"
123
- }
124
- ]
125
- },
126
- "1.7.11": {
127
- "global": [
128
- {
129
- "type": "New",
130
- "description": "Shared-SMS logging"
131
- },
132
- {
133
- "type": "New",
134
- "description": "MCP tools"
135
- }
136
- ]
137
- },
138
- "1.7.10": {
139
- "global": [
140
- {
141
- "type": "Fix",
142
- "description": "Upon completing warm transfer, it opens contact page for a second time"
143
- },
144
- {
145
- "type": "New",
146
- "description": "RingCX RingSense call logging event support for Server-side logging"
147
- }
148
- ]
149
- },
150
- "1.7.9": {
151
- "global": [
152
- {
153
- "type": "Better",
154
- "description": "Contact match speed optimized"
155
- },
156
- {
157
- "type": "Better",
158
- "description": "Minor improvements on calldown list"
159
- }
160
- ]
161
- },
162
- "1.7.8": {
163
- "global": [
164
- {
165
- "type": "New",
166
- "description": "Error report feature on support page"
167
- },
168
- {
169
- "type": "Better",
170
- "description": "Calldown list supports better edit feature"
171
- },
172
- {
173
- "type": "Better",
174
- "description": "Connctor selection list can be opened back again"
175
- },
176
- {
177
- "type": "Fix",
178
- "description": "Call log record is shown with a wrong number after the call"
179
- }
180
- ]
181
- },
182
- "1.7.7": {
183
- "global": [
184
- {
185
- "type": "New",
186
- "description": "Admin report company stats now support grouping"
187
- },
188
- {
189
- "type": "New",
190
- "description": "Users can open back the platform selection page from user setting page"
191
- }
192
- ]
193
- },
194
- "1.7.6": {
195
- "global": [
196
- {
197
- "type": "Fix",
198
- "description": "Duplicated contact pop when complete warm transfer"
199
- },
200
- {
201
- "type": "Fix",
202
- "description": "Multi-region auth"
203
- }
204
- ]
205
- },
206
- "1.7.5": {
207
- "global": [
208
- {
209
- "type": "Fix",
210
- "description": "A not found issue for call note cache"
211
- },
212
- {
213
- "type": "Better",
214
- "description": "Embedded URL list now defaults to all domain. (Meaning quick access button and click-to-dial widget will be rendered on all web pages by default)"
215
- }
216
- ]
217
- },
218
- "1.7.4": {
219
- "global": [
220
- {
221
- "type": "New",
222
- "description": "Auto restart server-side logging when call log details setting changed"
223
- },
224
- {
225
- "type": "New",
226
- "description": "Support to change quick access button size"
227
- },
228
- {
229
- "type": "New",
230
- "description": "Support to open log form when during a call"
231
- },
232
- {
233
- "type": "Fix",
234
- "description": "An edge case of unwanted call log in call queue scenario"
235
- }
236
- ]
237
- },
238
- "1.7.3": {
239
- "global": [
240
- {
241
- "type": "New",
242
- "description": "RingSense data logging in server side logging"
243
- },
244
- {
245
- "type": "New",
246
- "description": "New phone setting item to group phone related settings"
247
- },
248
- {
249
- "type": "Better",
250
- "description": "HUD enabled by default"
251
- },
252
- {
253
- "type": "Fix",
254
- "description": "A small issue on contact search feature"
255
- },
256
- {
257
- "type": "Fix",
258
- "description": "A small issue on embedded URLs"
259
- },
260
- {
261
- "type": "Fix",
262
- "description": "Server-side logging logged calls cannot be edited for the first attempt"
263
- }
264
- ]
265
- },
266
- "1.7.1": {
267
- "global": [
268
- {
269
- "type": "Better",
270
- "description": "Click-to-SMS now adds recipients so you can easily add multiple recipients"
271
- },
272
- {
273
- "type": "New",
274
- "description": "Auto log setting for voicemail"
275
- }
276
- ]
277
- },
278
- "1.6.12": {
279
- "global": [
280
- {
281
- "type": "New",
282
- "description": "Support RingSense logging with server-side logging"
283
- },
284
- {
285
- "type": "Fix",
286
- "description": "An edge case of unwanted call log in call queue scenario"
287
- }
288
- ]
289
- },
290
- "1.6.11": {
291
- "global": [
292
- {
293
- "type": "Fix",
294
- "description": "A small issue on contact search feature"
295
- },
296
- {
297
- "type": "Fix",
298
- "description": "A small issue on embedded URLs"
299
- }
300
- ]
301
- },
302
- "1.6.10": {
303
- "global": [
304
- {
305
- "type": "Better",
306
- "description": "Click-to-SMS now adds recipients so you can easily add multiple recipients"
307
- },
308
- {
309
- "type": "New",
310
- "description": "Auto log setting for voicemail"
311
- }
312
- ]
313
- },
314
- "1.6.9": {
315
- "global": [
316
- {
317
- "type": "New",
318
- "description": "- Server-side logging now supports multiple RingCentral users to be mapped under one CRM user"
319
- },
320
- {
321
- "type": "Fix",
322
- "description": "- Server-side logging user mapping not working properly when running under multi-site scenarios"
323
- }
324
- ]
325
- },
326
- "1.6.8": {
327
- "global": [
328
- {
329
- "type": "Fix",
330
- "description": "- Server-side logging, if it's created by one admin, the other admin will be able to see its status"
331
- },
332
- {
333
- "type": "Fix",
334
- "description": "- Conference calls show wrong warning message"
335
- }
336
- ]
337
- },
338
- "1.6.7": {
339
- "global": [
340
- {
341
- "type": "New",
342
- "description": "- Clio now supports image/video media link in message logs"
343
- }
344
- ]
345
- },
346
- "1.6.6": {
347
- "global": [
348
- {
349
- "type": "New",
350
- "description": "- Server-side call logging now supports user mapping configuration in the admin tab, allowing admin users to log calls on behalf of other users."
351
- },
352
- {
353
- "type": "New",
354
- "description": "- Separate enable domains for click-to-dial and quick access button"
355
- },
356
- {
357
- "type": "Fix",
358
- "description": "- Server-side call logging now displays RingCentral user names in the correct order within log details."
359
- },
360
- {
361
- "type": "Fix",
362
- "description": "- Server-side call logging now shows the correct RingCentral user name instead of displaying the Caller ID"
363
- }
364
- ]
365
- },
366
- "1.6.5": {
367
- "global": [
368
- {
369
- "type": "New",
370
- "description": "- Support call journey in call logging details with server side logging [Details](https://appconnect.labs.ringcentral.com/users/logging/#controlling-what-information-gets-logged)"
371
- },
372
- {
373
- "type": "Better",
374
- "description": "- Tabs orders updated"
375
- },
376
- {
377
- "type": "Fix",
378
- "description": "- Date/Time display issue"
379
- }
380
- ]
381
- },
382
- "1.6.4": {
383
- "global": [
384
- {
385
- "type": "New",
386
- "description": "- RingCentral user name and phone number in call details settings"
387
- },
388
- {
389
- "type": "Better",
390
- "description": "- Server-side call logging can now upload agent notes from the Chrome extension immediately after the call"
391
- },
392
- {
393
- "type": "Better",
394
- "description": "- More intuitive date time user setting format"
395
- },
396
- {
397
- "type": "Fix",
398
- "description": "- Return error message if server-side call logging is already created"
399
- }
400
- ]
401
- },
402
- "1.6.3": {
403
- "global": [
404
- {
405
- "type": "New",
406
- "description": "- Date time format in call details settings"
407
- },
408
- {
409
- "type": "Better",
410
- "description": "- When doing server-side call logging, agent notes input from Chrome extension won't be overwritten by system"
411
- },
412
- {
413
- "type": "Better",
414
- "description": "- When doing server-side call logging, agent notes won't be overwritten by system"
415
- },
416
- {
417
- "type": "Fix",
418
- "description": "- User report tab can now be toggled ON/OFF"
419
- },
420
- {
421
- "type": "Fix",
422
- "description": "- Time format now follows operating system setting"
423
- }
424
- ]
425
- },
426
- "1.6.2": {
427
- "global": [
428
- {
429
- "type": "Fix",
430
- "description": "- User session auth button now shows correct state"
431
- },
432
- {
433
- "type": "Fix",
434
- "description": "- Auto log is not disabled by admin-only server side logging anymore"
435
- },
436
- {
437
- "type": "Fix",
438
- "description": "- Playload too large issue"
439
- }
440
- ]
441
- },
442
- "1.6.1": {
443
- "global": [
444
- {
445
- "type": "New",
446
- "description": "- Support to logging AI notes for no admin users in server side logging"
447
- },
448
- {
449
- "type": "Fix",
450
- "description": "- User report not showing number under dark theme"
451
- },
452
- {
453
- "type": "Fix",
454
- "description": "- User setting shows '(admin)' for all users"
455
- },
456
- {
457
- "type": "Fix",
458
- "description": "- User session refresh issue"
459
- }
460
- ]
461
- },
462
- "1.6.0": {
463
- "global": [
464
- {
465
- "type": "New",
466
- "description": "- License status is shown in user settings"
467
- },
468
- {
469
- "type": "New",
470
- "description": "- User report tab to see calls and SMS messages made within selected date range"
471
- },
472
- {
473
- "type": "Fix",
474
- "description": "- Server side logging call duration stuck in 'pending' state"
475
- }
476
- ]
477
- },
478
- "1.5.8": {
479
- "global": [
480
- {
481
- "type": "Fix",
482
- "description": "- Error on showing a window-size warning message"
483
- },
484
- {
485
- "type": "Fix",
486
- "description": "- Disconnected users shown as connected"
487
- },
488
- {
489
- "type": "Better",
490
- "description": "- Every 5min, retroatively check recording links at pending state and update them to existing call logs"
491
- },
492
- {
493
- "type": "Better",
494
- "description": "- More stable user session"
495
- },
496
- {
497
- "type": "Better",
498
- "description": "- User settings sync message suppressed"
499
- },
500
- {
501
- "type": "Better",
502
- "description": "- Webpage embed (Click-to-dial and Quick-access-button) urls setting is renamed to 'Enabled domains' under General -> Appearance"
503
- }
504
- ]
505
- },
506
- "1.5.7": {
507
- "global": [
508
- {
509
- "type": "Fix",
510
- "description": "- wrong alert message when user click enter button in contact searching page"
511
- },
512
- {
513
- "type": "Better",
514
- "description": "- Message logs within the CRM are now consistently displayed in chronological order"
515
- }
516
- ]
517
- },
518
- "1.5.6": {
519
- "global": [
520
- {
521
- "type": "New",
522
- "description": "- Ringtone can now be set up in Audio settings"
523
- },
524
- {
525
- "type": "Better",
526
- "description": "- Improve user settings presentation"
527
- },
528
- {
529
- "type": "Fix",
530
- "description": "- AI notes are now attached when doing retroactive call logging"
531
- }
532
- ]
533
- },
534
- "1.5.5": {
535
- "global": [
536
- {
537
- "type": "New",
538
- "description": "- Freskdesk and Gohighlevel are now supported"
539
- },
540
- {
541
- "type": "New",
542
- "description": "- Insightly has new setting in Insightly options to input custom phone field names"
543
- },
544
- {
545
- "type": "Better",
546
- "description": "- Click-to-dial enablement is now controled by user settings with 4 modes. (previous whitelist is deprecated)"
547
- }
548
- ]
549
- },
550
- "1.5.4": {
551
- "global": [
552
- {
553
- "type": "New",
554
- "description": "- Notification-level setting to control what types of notification would be shown"
555
- },
556
- {
557
- "type": "Better",
558
- "description": "- DisableRetroCallLogging in user setting is changed to EnableRetroCallLogging"
559
- },
560
- {
561
- "type": "Better",
562
- "description": "- Contacts are shown with source icon"
563
- },
564
- {
565
- "type": "Fix",
566
- "description": "- An issue when opening contact page"
567
- },
568
- {
569
- "type": "Fix",
570
- "description": "- An issue when getting user settings"
571
- }
572
- ]
573
- },
574
- "1.5.3": {
575
- "global": [
576
- {
577
- "type": "New",
578
- "description": "- Quick access button and click-to-dial can be configured to be shown on other pages rather than CRM page. Set it up in user settings -> general -> allowed pages"
579
- }
580
- ]
581
- },
582
- "1.5.2": {
583
- "global": [
584
- {
585
- "type": "New",
586
- "description": "- Contact search in call/message log page to add contact searched by name"
587
- },
588
- {
589
- "type": "New",
590
- "description": "- Include tab visibility control in Admin settings"
591
- }
592
- ]
593
- },
594
- "1.5.1": {
595
- "global": [
596
- {
597
- "type": "New",
598
- "description": "- Call session id can now be included in call log notes. This can be turned ON/OFF in user settings"
599
- },
600
- {
601
- "type": "Fix",
602
- "description": "- Developer mode can be turned ON before connecting to CRM"
603
- },
604
- {
605
- "type": "Fix",
606
- "description": "- User setting now shows correct connect status right after open"
607
- },
608
- {
609
- "type": "Fix",
610
- "description": "- Call queue calls cannot be logged in a few cases"
611
- }
612
- ]
613
- },
614
- "1.5.0": {
615
- "global": [
616
- {
617
- "type": "New",
618
- "description": "- Fax log support"
619
- },
620
- {
621
- "type": "New",
622
- "description": "- If user is admin, '(Admin)' will be shown after user name on user setting page"
623
- }
624
- ]
625
- },
626
- "1.4.2": {
627
- "global": [
628
- {
629
- "type": "Fix",
630
- "description": "- Show 'Cannot find call log' and 'Cannot find contact' even when contact is known"
631
- },
632
- {
633
- "type": "Fix",
634
- "description": "- Contact call-pop for known contact"
635
- }
636
- ]
637
- },
638
- "1.4.1": {
639
- "global": [
640
- {
641
- "type": "New",
642
- "description": "- Server-side call logging support using user credentials if possible"
643
- },
644
- {
645
- "type": "New",
646
- "description": "- Server-side call logging new selection for logging by Agent/User (if possible) OR Admin"
647
- },
648
- {
649
- "type": "Change",
650
- "description": "- 'Tabs' setting is renamed as 'Customize tabs' and is moved under 'General' setting"
651
- },
652
- {
653
- "type": "Fix",
654
- "description": "- Call queue not answered cannot be logged"
655
- }
656
- ]
657
- },
658
- "1.4.0": {
659
- "global": [
660
- {
661
- "type": "New",
662
- "description": "- Server side call logging for all platforms"
663
- },
664
- {
665
- "type": "New",
666
- "description": "- One-time log in user setting to reduce Rate Limit issue and make logging more stable"
667
- },
668
- {
669
- "type": "New",
670
- "description": "- Hide or show tabs in user settings"
671
- },
672
- {
673
- "type": "New",
674
- "description": "- Call queue presence setting"
675
- },
676
- {
677
- "type": "New",
678
- "description": "- Display voicemail transcript"
679
- },
680
- {
681
- "type": "New",
682
- "description": "- Google Sheets is now supported"
683
- },
684
- {
685
- "type": "Better",
686
- "description": "- Auto-logging happens right after call is connected (unless one-time log is ON)"
687
- },
688
- {
689
- "type": "Better",
690
- "description": "- Multiple matched contact handling"
691
- }
692
- ]
693
- },
694
- "1.3.10": {
695
- "global": [
696
- {
697
- "type": "Fix",
698
- "description": "- New users cannot save auto log setting"
699
- },
700
- {
701
- "type": "Fix",
702
- "description": "- Randomly dial previous number"
703
- }
704
- ]
705
- },
706
- "1.3.9": {
707
- "global": [
708
- {
709
- "type": "New",
710
- "description": "- User settings for ai related features (applicable accounts only)"
711
- },
712
- {
713
- "type": "Better",
714
- "description": "- User settings are kept after logout and auto-loaded after re-connect"
715
- },
716
- {
717
- "type": "Better",
718
- "description": "- Token refresh lock to reduce issues of invalid authorization"
719
- },
720
- {
721
- "type": "Better",
722
- "description": "- Clearer sign on case where auto call log setting disabled by Server Side Call Logging"
723
- },
724
- {
725
- "type": "Fix",
726
- "description": "- Agent note title inserted in log description when there's no note"
727
- },
728
- {
729
- "type": "Fix",
730
- "description": "- Fix spamming of contact not found warning notification"
731
- },
732
- {
733
- "type": "Fix",
734
- "description": "- Fix contact match issue on multiple contact case"
735
- }
736
- ]
737
- },
738
- "1.3.8": {
739
- "global": [
740
- {
741
- "type": "Fix",
742
- "description": "- Contact match timeout issue"
743
- },
744
- {
745
- "type": "Fix",
746
- "description": "- Auto log in user setting isn't set unless reloaded"
747
- }
748
- ]
749
- },
750
- "1.3.7": {
751
- "global": [
752
- {
753
- "type": "Fix",
754
- "description": "- Timeout issue (mostly affecting call logging)"
755
- },
756
- {
757
- "type": "Fix",
758
- "description": "- Admin users now get admin setting right after login"
759
- },
760
- {
761
- "type": "New",
762
- "description": "- A new setting to turn ON/OFF retroactive call logging"
763
- }
764
- ]
765
- },
766
- "1.3.6": {
767
- "global": [
768
- {
769
- "type": "Fix",
770
- "description": "- Retro call logging now has recording link if applicable, instead of showing '(pending...)'"
771
- },
772
- {
773
- "type": "Better",
774
- "description": "- User settings are synced more frequently and stably"
775
- },
776
- {
777
- "type": "Better",
778
- "description": "- Some settings now have additional explanations of how it works"
779
- },
780
- {
781
- "type": "Change",
782
- "description": "- 'Call log details' setting is now under 'Call and SMS logging'"
783
- }
784
- ]
785
- },
786
- "1.3.5": {
787
- "global": [
788
- {
789
- "type": "Upgrade",
790
- "description": "Error messages are more accurate"
791
- }
792
- ]
793
- },
794
- "1.3.4": {
795
- "global": [
796
- {
797
- "type": "Upgrade",
798
- "description": "More accurate call info, including better tracking on call recording link save status"
799
- },
800
- {
801
- "type": "New",
802
- "description": "Call info details can be selectively logged based on new toggles in user settings"
803
- },
804
- {
805
- "type": "New",
806
- "description": "(RingCentral AI license only) Smart Notes to be enabled in user advanced settings"
807
- },
808
- {
809
- "type": "Fix",
810
- "description": "Admin users can see admin tab on first login now"
811
- }
812
- ]
813
- },
814
- "1.3.3": {
815
- "global": [
816
- {
817
- "type": "Update",
818
- "description": "- This extension's name is now changed to RingCentral App Connect"
819
- },
820
- {
821
- "type": "Fix",
822
- "description": "- (for Clio and Insightly user only) Overriding phone number format missing issue"
823
- },
824
- {
825
- "type": "Fix",
826
- "description": "- Auto pop up log page after call setting not working"
827
- },
828
- {
829
- "type": "Fix",
830
- "description": "- Inbound call contact pop not working"
831
- },
832
- {
833
- "type": "Fix",
834
- "description": "- Admin icon in dark theme"
835
- }
836
- ]
837
- },
838
- "1.3.2": {
839
- "global": [
840
- {
841
- "type": "New",
842
- "description": "- User setting inside call pop to control behavior of multiple matched contacts (disabled, all open, prompt to select)"
843
- },
844
- {
845
- "type": "Fix",
846
- "description": "- SMS logging issue"
847
- },
848
- {
849
- "type": "Fix",
850
- "description": "- Auto open extension now only opens when main page is opened"
851
- }
852
- ]
853
- },
854
- "1.3.1": {
855
- "global": [
856
- {
857
- "type": "New",
858
- "description": "- (Only for admin users) Admin tools. Admins have an extra tab in the extension to control end users' settings"
859
- },
860
- {
861
- "type": "Fix",
862
- "description": "- SMS logging date format"
863
- }
864
- ]
865
- },
866
- "1.2.0": {
867
- "global": [
868
- {
869
- "type": "Fix",
870
- "description": "- SMS log issue"
871
- },
872
- {
873
- "type": "Fix",
874
- "description": "- Missing recording link when doing retroactive auto call logging"
875
- }
876
- ]
877
- },
878
- "1.1.4": {
879
- "global": [
880
- {
881
- "type": "Fix",
882
- "description": "- Auto log association"
883
- },
884
- {
885
- "type": "New",
886
- "description": "- User setting in advanced features to turn on 'Auto open extension' to open itself when opening a CRM page"
887
- }
888
- ]
889
- },
890
- "1.1.2": {
891
- "global": [
892
- {
893
- "type": "Change",
894
- "description": "- Auto pop up log page is not dependent on auto log setting anymore"
895
- }
896
- ]
897
- },
898
- "1.1.1": {
899
- "global": [
900
- {
901
- "type": "Fix",
902
- "description": "- Call/SMS logging issue"
903
- }
904
- ]
905
- },
906
- "1.1.0": {
907
- "global": [
908
- {
909
- "type": "New",
910
- "description": "- Show error page when CRM initialization fails"
911
- },
912
- {
913
- "type": "Better",
914
- "description": "- Use local cached contact info to avoid rate limit issue"
915
- },
916
- {
917
- "type": "Better",
918
- "description": "- Auto call log now supports retrospectively logging up to 100 unlogged records upon extension open"
919
- }
920
- ]
921
- },
922
- "1.0.10": {
923
- "global": [
924
- {
925
- "type": "Change",
926
- "description": "- Unreolved tab is removed now. To check out unlogged calls, there's now a filter on call history page"
927
- },
928
- {
929
- "type": "Change",
930
- "description": "- Updated notification UI"
931
- },
932
- {
933
- "type": "Fix",
934
- "description": "- Numbers can now be copied from call page and call history page"
935
- },
936
- {
937
- "type": "Fix",
938
- "description": "- Click-to-dial now supports detecting phone numbers in input fields"
939
- },
940
- {
941
- "type": "Fix",
942
- "description": "- Click-to-dial now supports detecting extension numbers with format as eg. +13334445555#134"
943
- }
944
- ]
945
- },
946
- "1.0.9": {
947
- "global": [
948
- {
949
- "type": "New",
950
- "description": "- Call history page now has a search bar with filters"
951
- },
952
- {
953
- "type": "New",
954
- "description": "- Contact pop settings now support both inbound and outbound calls on different timings"
955
- },
956
- {
957
- "type": "New",
958
- "description": "- RingCentral team message is added as a new tab (might get delayed to show up)"
959
- }
960
- ]
961
- },
962
- "1.0.8": {
963
- "global": [
964
- {
965
- "type": "New",
966
- "description": "- More historical call records can be viewed from call history page with 'Load more' button"
967
- }
968
- ]
969
- },
970
- "1.0.7": {
971
- "global": [
972
- {
973
- "type": "Fix",
974
- "description": "- Incoming call pop contact page fixed"
975
- }
976
- ]
977
- },
978
- "1.0.6": {
979
- "global": [
980
- {
981
- "type": "Better",
982
- "description": "- User settings are organized in a better way"
983
- },
984
- {
985
- "type": "New",
986
- "description": "- Support page is added to user settings"
987
- },
988
- {
989
- "type": "New",
990
- "description": "- Community forum is created, can be accessed via support page -> 'Get support'"
991
- }
992
- ]
993
- },
994
- "1.0.5": {
995
- "global": [
996
- {
997
- "type": "Fix",
998
- "description": "- SMS template remembers orders after close"
999
- }
1000
- ]
1001
- },
1002
- "1.0.4": {
1003
- "global": [
1004
- {
1005
- "type": "New",
1006
- "description": "- An About page in user settings to show info and helper links"
1007
- },
1008
- {
1009
- "type": "Better",
1010
- "description": "- Factor reset now also cleans up unresolved conflicts"
1011
- },
1012
- {
1013
- "type": "Better",
1014
- "description": "- SMS template supports drag and drop to arrange item orders"
1015
- }
1016
- ]
1017
- },
1018
- "1.0.3": {
1019
- "global": [
1020
- {
1021
- "type": "Better",
1022
- "description": "- Use SMS template that syncs with RingCentral App's SMS template"
1023
- },
1024
- {
1025
- "type": "New",
1026
- "description": "- Show notification when a call recording link is uploaded"
1027
- }
1028
- ]
1029
- },
1030
- "1.0.2": {
1031
- "global": [
1032
- {
1033
- "type": "Fix",
1034
- "description": "- SMS template cannot apply issue"
1035
- },
1036
- {
1037
- "type": "New",
1038
- "description": "- Factory Reset button in user settings"
1039
- }
1040
- ]
1041
- },
1042
- "1.0.1": {
1043
- "global": [
1044
- {
1045
- "type": "Fix",
1046
- "description": "- RingCentral sign in issue where pop up sign in window is stuck at loading screen"
1047
- },
1048
- {
1049
- "type": "Better",
1050
- "description": "- Auto log conflict messages now contain more meaningful info"
1051
- }
1052
- ]
1053
- },
1054
- "1.0.0": {
1055
- "global": [
1056
- {
1057
- "type": "New",
1058
- "description": "- Auto log with conflict resolver"
1059
- },
1060
- {
1061
- "type": "New",
1062
- "description": "- Manual refersh contact info with button"
1063
- },
1064
- {
1065
- "type": "New",
1066
- "description": "- Audio volume controls"
1067
- },
1068
- {
1069
- "type": "Better",
1070
- "description": "- SMS messages are now logged as in conversations per day"
1071
- },
1072
- {
1073
- "type": "Better",
1074
- "description": "- New UIs"
1075
- },
1076
- {
1077
- "type": "Full list and video demo",
1078
- "description": "https://ringcentral.github.io/rc-unified-crm-extension/release-notes/"
1079
- }
1080
- ]
1081
- }
1
+ {
2
+ "1.7.26": {
3
+ "global": [
4
+ {
5
+ "type": "New",
6
+ "description": "[Appointments](https://appconnect.labs.ringcentral.com/users/appointments/) support"
7
+ },
8
+ {
9
+ "type": "Fix",
10
+ "description": "Issue of transferred call overriding first call log"
11
+ }
12
+ ]
13
+ },
14
+ "1.7.25": {
15
+ "global": [
16
+ {
17
+ "type": "Fix",
18
+ "description": "Click-to-dial render issue"
19
+ }
20
+ ]
21
+ },
22
+ "1.7.24": {
23
+ "global": [
24
+ {
25
+ "type": "New",
26
+ "description": "Click-to-dial number matcher selection in User Setting -> General"
27
+ },
28
+ {
29
+ "type": "Fix",
30
+ "description": "Error report upload"
31
+ }
32
+ ]
33
+ },
34
+ "1.7.23": {
35
+ "global": [
36
+ {
37
+ "type": "Rename",
38
+ "description": "Rename RingSense to ACE"
39
+ }
40
+ ]
41
+ },
42
+ "1.7.22": {
43
+ "global": [
44
+ {
45
+ "type": "New",
46
+ "description": "Managed auth fields for non-OAuth platforms"
47
+ }
48
+ ]
49
+ },
50
+ "1.7.21": {
51
+ "global": [
52
+ {
53
+ "type": "Fix",
54
+ "description": "Refresh contact for deleted contact issue"
55
+ },
56
+ {
57
+ "type": "Fix",
58
+ "description": "Click-to-sms button issue"
59
+ }
60
+ ]
61
+ },
62
+ "1.7.20": {
63
+ "global": [
64
+ {
65
+ "type": "Fix",
66
+ "description": "Click-to-dial not detecting numbers in input fields"
67
+ },
68
+ {
69
+ "type": "Fix",
70
+ "description": "Warm transfer call logging issue"
71
+ }
72
+ ]
73
+ },
74
+ "1.7.19": {
75
+ "global": [
76
+ {
77
+ "type": "Beta",
78
+ "description": "Plugin system infrastructure. No plugin available yet, but add soon. Take a quick look at its [overview](https://appconnect.labs.ringcentral.com/users/plugins)"
79
+ },
80
+ {
81
+ "type": "Better",
82
+ "description": "Click-to-dial with wider number match"
83
+ }
84
+ ]
85
+ },
86
+ "1.7.18": {
87
+ "global": [
88
+ {
89
+ "type": "New",
90
+ "description": "Support for Group SMS logging"
91
+ },
92
+ {
93
+ "type": "Better",
94
+ "description": "User session will log be revoked is token refresh fails"
95
+ },
96
+ {
97
+ "type": "Fix",
98
+ "description": "Contact call pop issue"
99
+ }
100
+ ]
101
+ },
102
+ "1.7.16": {
103
+ "global": [
104
+ {
105
+ "type": "Fix",
106
+ "description": "SMS logging issue of repeatedly logging same messages"
107
+ },
108
+ {
109
+ "type": "Fix",
110
+ "description": "Mixpanel token issue that blocks certain webpage access"
111
+ }
112
+ ]
113
+ },
114
+ "1.7.15": {
115
+ "global": [
116
+ {
117
+ "type": "Fix",
118
+ "description": "Click-to-dial injection for HTML shadow roots"
119
+ },
120
+ {
121
+ "type": "Fix",
122
+ "description": "A not-found error for user mapping"
123
+ }
124
+ ]
125
+ },
126
+ "1.7.12": {
127
+ "global": [
128
+ {
129
+ "type": "New",
130
+ "description": "A button on Developer settings page to re-initialize user mapping"
131
+ },
132
+ {
133
+ "type": "Better",
134
+ "description": "Click-to-SMS button is disabled if RingCentral SMS service is not activated"
135
+ }
136
+ ]
137
+ },
138
+ "1.7.11": {
139
+ "global": [
140
+ {
141
+ "type": "New",
142
+ "description": "Shared-SMS logging"
143
+ },
144
+ {
145
+ "type": "New",
146
+ "description": "MCP tools"
147
+ }
148
+ ]
149
+ },
150
+ "1.7.10": {
151
+ "global": [
152
+ {
153
+ "type": "Fix",
154
+ "description": "Upon completing warm transfer, it opens contact page for a second time"
155
+ },
156
+ {
157
+ "type": "New",
158
+ "description": "RingCX RingSense call logging event support for Server-side logging"
159
+ }
160
+ ]
161
+ },
162
+ "1.7.9": {
163
+ "global": [
164
+ {
165
+ "type": "Better",
166
+ "description": "Contact match speed optimized"
167
+ },
168
+ {
169
+ "type": "Better",
170
+ "description": "Minor improvements on calldown list"
171
+ }
172
+ ]
173
+ },
174
+ "1.7.8": {
175
+ "global": [
176
+ {
177
+ "type": "New",
178
+ "description": "Error report feature on support page"
179
+ },
180
+ {
181
+ "type": "Better",
182
+ "description": "Calldown list supports better edit feature"
183
+ },
184
+ {
185
+ "type": "Better",
186
+ "description": "Connctor selection list can be opened back again"
187
+ },
188
+ {
189
+ "type": "Fix",
190
+ "description": "Call log record is shown with a wrong number after the call"
191
+ }
192
+ ]
193
+ },
194
+ "1.7.7": {
195
+ "global": [
196
+ {
197
+ "type": "New",
198
+ "description": "Admin report company stats now support grouping"
199
+ },
200
+ {
201
+ "type": "New",
202
+ "description": "Users can open back the platform selection page from user setting page"
203
+ }
204
+ ]
205
+ },
206
+ "1.7.6": {
207
+ "global": [
208
+ {
209
+ "type": "Fix",
210
+ "description": "Duplicated contact pop when complete warm transfer"
211
+ },
212
+ {
213
+ "type": "Fix",
214
+ "description": "Multi-region auth"
215
+ }
216
+ ]
217
+ },
218
+ "1.7.5": {
219
+ "global": [
220
+ {
221
+ "type": "Fix",
222
+ "description": "A not found issue for call note cache"
223
+ },
224
+ {
225
+ "type": "Better",
226
+ "description": "Embedded URL list now defaults to all domain. (Meaning quick access button and click-to-dial widget will be rendered on all web pages by default)"
227
+ }
228
+ ]
229
+ },
230
+ "1.7.4": {
231
+ "global": [
232
+ {
233
+ "type": "New",
234
+ "description": "Auto restart server-side logging when call log details setting changed"
235
+ },
236
+ {
237
+ "type": "New",
238
+ "description": "Support to change quick access button size"
239
+ },
240
+ {
241
+ "type": "New",
242
+ "description": "Support to open log form when during a call"
243
+ },
244
+ {
245
+ "type": "Fix",
246
+ "description": "An edge case of unwanted call log in call queue scenario"
247
+ }
248
+ ]
249
+ },
250
+ "1.7.3": {
251
+ "global": [
252
+ {
253
+ "type": "New",
254
+ "description": "RingSense data logging in server side logging"
255
+ },
256
+ {
257
+ "type": "New",
258
+ "description": "New phone setting item to group phone related settings"
259
+ },
260
+ {
261
+ "type": "Better",
262
+ "description": "HUD enabled by default"
263
+ },
264
+ {
265
+ "type": "Fix",
266
+ "description": "A small issue on contact search feature"
267
+ },
268
+ {
269
+ "type": "Fix",
270
+ "description": "A small issue on embedded URLs"
271
+ },
272
+ {
273
+ "type": "Fix",
274
+ "description": "Server-side logging logged calls cannot be edited for the first attempt"
275
+ }
276
+ ]
277
+ },
278
+ "1.7.1": {
279
+ "global": [
280
+ {
281
+ "type": "Better",
282
+ "description": "Click-to-SMS now adds recipients so you can easily add multiple recipients"
283
+ },
284
+ {
285
+ "type": "New",
286
+ "description": "Auto log setting for voicemail"
287
+ }
288
+ ]
289
+ },
290
+ "1.6.12": {
291
+ "global": [
292
+ {
293
+ "type": "New",
294
+ "description": "Support RingSense logging with server-side logging"
295
+ },
296
+ {
297
+ "type": "Fix",
298
+ "description": "An edge case of unwanted call log in call queue scenario"
299
+ }
300
+ ]
301
+ },
302
+ "1.6.11": {
303
+ "global": [
304
+ {
305
+ "type": "Fix",
306
+ "description": "A small issue on contact search feature"
307
+ },
308
+ {
309
+ "type": "Fix",
310
+ "description": "A small issue on embedded URLs"
311
+ }
312
+ ]
313
+ },
314
+ "1.6.10": {
315
+ "global": [
316
+ {
317
+ "type": "Better",
318
+ "description": "Click-to-SMS now adds recipients so you can easily add multiple recipients"
319
+ },
320
+ {
321
+ "type": "New",
322
+ "description": "Auto log setting for voicemail"
323
+ }
324
+ ]
325
+ },
326
+ "1.6.9": {
327
+ "global": [
328
+ {
329
+ "type": "New",
330
+ "description": "- Server-side logging now supports multiple RingCentral users to be mapped under one CRM user"
331
+ },
332
+ {
333
+ "type": "Fix",
334
+ "description": "- Server-side logging user mapping not working properly when running under multi-site scenarios"
335
+ }
336
+ ]
337
+ },
338
+ "1.6.8": {
339
+ "global": [
340
+ {
341
+ "type": "Fix",
342
+ "description": "- Server-side logging, if it's created by one admin, the other admin will be able to see its status"
343
+ },
344
+ {
345
+ "type": "Fix",
346
+ "description": "- Conference calls show wrong warning message"
347
+ }
348
+ ]
349
+ },
350
+ "1.6.7": {
351
+ "global": [
352
+ {
353
+ "type": "New",
354
+ "description": "- Clio now supports image/video media link in message logs"
355
+ }
356
+ ]
357
+ },
358
+ "1.6.6": {
359
+ "global": [
360
+ {
361
+ "type": "New",
362
+ "description": "- Server-side call logging now supports user mapping configuration in the admin tab, allowing admin users to log calls on behalf of other users."
363
+ },
364
+ {
365
+ "type": "New",
366
+ "description": "- Separate enable domains for click-to-dial and quick access button"
367
+ },
368
+ {
369
+ "type": "Fix",
370
+ "description": "- Server-side call logging now displays RingCentral user names in the correct order within log details."
371
+ },
372
+ {
373
+ "type": "Fix",
374
+ "description": "- Server-side call logging now shows the correct RingCentral user name instead of displaying the Caller ID"
375
+ }
376
+ ]
377
+ },
378
+ "1.6.5": {
379
+ "global": [
380
+ {
381
+ "type": "New",
382
+ "description": "- Support call journey in call logging details with server side logging [Details](https://appconnect.labs.ringcentral.com/users/logging/#controlling-what-information-gets-logged)"
383
+ },
384
+ {
385
+ "type": "Better",
386
+ "description": "- Tabs orders updated"
387
+ },
388
+ {
389
+ "type": "Fix",
390
+ "description": "- Date/Time display issue"
391
+ }
392
+ ]
393
+ },
394
+ "1.6.4": {
395
+ "global": [
396
+ {
397
+ "type": "New",
398
+ "description": "- RingCentral user name and phone number in call details settings"
399
+ },
400
+ {
401
+ "type": "Better",
402
+ "description": "- Server-side call logging can now upload agent notes from the Chrome extension immediately after the call"
403
+ },
404
+ {
405
+ "type": "Better",
406
+ "description": "- More intuitive date time user setting format"
407
+ },
408
+ {
409
+ "type": "Fix",
410
+ "description": "- Return error message if server-side call logging is already created"
411
+ }
412
+ ]
413
+ },
414
+ "1.6.3": {
415
+ "global": [
416
+ {
417
+ "type": "New",
418
+ "description": "- Date time format in call details settings"
419
+ },
420
+ {
421
+ "type": "Better",
422
+ "description": "- When doing server-side call logging, agent notes input from Chrome extension won't be overwritten by system"
423
+ },
424
+ {
425
+ "type": "Better",
426
+ "description": "- When doing server-side call logging, agent notes won't be overwritten by system"
427
+ },
428
+ {
429
+ "type": "Fix",
430
+ "description": "- User report tab can now be toggled ON/OFF"
431
+ },
432
+ {
433
+ "type": "Fix",
434
+ "description": "- Time format now follows operating system setting"
435
+ }
436
+ ]
437
+ },
438
+ "1.6.2": {
439
+ "global": [
440
+ {
441
+ "type": "Fix",
442
+ "description": "- User session auth button now shows correct state"
443
+ },
444
+ {
445
+ "type": "Fix",
446
+ "description": "- Auto log is not disabled by admin-only server side logging anymore"
447
+ },
448
+ {
449
+ "type": "Fix",
450
+ "description": "- Playload too large issue"
451
+ }
452
+ ]
453
+ },
454
+ "1.6.1": {
455
+ "global": [
456
+ {
457
+ "type": "New",
458
+ "description": "- Support to logging AI notes for no admin users in server side logging"
459
+ },
460
+ {
461
+ "type": "Fix",
462
+ "description": "- User report not showing number under dark theme"
463
+ },
464
+ {
465
+ "type": "Fix",
466
+ "description": "- User setting shows '(admin)' for all users"
467
+ },
468
+ {
469
+ "type": "Fix",
470
+ "description": "- User session refresh issue"
471
+ }
472
+ ]
473
+ },
474
+ "1.6.0": {
475
+ "global": [
476
+ {
477
+ "type": "New",
478
+ "description": "- License status is shown in user settings"
479
+ },
480
+ {
481
+ "type": "New",
482
+ "description": "- User report tab to see calls and SMS messages made within selected date range"
483
+ },
484
+ {
485
+ "type": "Fix",
486
+ "description": "- Server side logging call duration stuck in 'pending' state"
487
+ }
488
+ ]
489
+ },
490
+ "1.5.8": {
491
+ "global": [
492
+ {
493
+ "type": "Fix",
494
+ "description": "- Error on showing a window-size warning message"
495
+ },
496
+ {
497
+ "type": "Fix",
498
+ "description": "- Disconnected users shown as connected"
499
+ },
500
+ {
501
+ "type": "Better",
502
+ "description": "- Every 5min, retroatively check recording links at pending state and update them to existing call logs"
503
+ },
504
+ {
505
+ "type": "Better",
506
+ "description": "- More stable user session"
507
+ },
508
+ {
509
+ "type": "Better",
510
+ "description": "- User settings sync message suppressed"
511
+ },
512
+ {
513
+ "type": "Better",
514
+ "description": "- Webpage embed (Click-to-dial and Quick-access-button) urls setting is renamed to 'Enabled domains' under General -> Appearance"
515
+ }
516
+ ]
517
+ },
518
+ "1.5.7": {
519
+ "global": [
520
+ {
521
+ "type": "Fix",
522
+ "description": "- wrong alert message when user click enter button in contact searching page"
523
+ },
524
+ {
525
+ "type": "Better",
526
+ "description": "- Message logs within the CRM are now consistently displayed in chronological order"
527
+ }
528
+ ]
529
+ },
530
+ "1.5.6": {
531
+ "global": [
532
+ {
533
+ "type": "New",
534
+ "description": "- Ringtone can now be set up in Audio settings"
535
+ },
536
+ {
537
+ "type": "Better",
538
+ "description": "- Improve user settings presentation"
539
+ },
540
+ {
541
+ "type": "Fix",
542
+ "description": "- AI notes are now attached when doing retroactive call logging"
543
+ }
544
+ ]
545
+ },
546
+ "1.5.5": {
547
+ "global": [
548
+ {
549
+ "type": "New",
550
+ "description": "- Freskdesk and Gohighlevel are now supported"
551
+ },
552
+ {
553
+ "type": "New",
554
+ "description": "- Insightly has new setting in Insightly options to input custom phone field names"
555
+ },
556
+ {
557
+ "type": "Better",
558
+ "description": "- Click-to-dial enablement is now controled by user settings with 4 modes. (previous whitelist is deprecated)"
559
+ }
560
+ ]
561
+ },
562
+ "1.5.4": {
563
+ "global": [
564
+ {
565
+ "type": "New",
566
+ "description": "- Notification-level setting to control what types of notification would be shown"
567
+ },
568
+ {
569
+ "type": "Better",
570
+ "description": "- DisableRetroCallLogging in user setting is changed to EnableRetroCallLogging"
571
+ },
572
+ {
573
+ "type": "Better",
574
+ "description": "- Contacts are shown with source icon"
575
+ },
576
+ {
577
+ "type": "Fix",
578
+ "description": "- An issue when opening contact page"
579
+ },
580
+ {
581
+ "type": "Fix",
582
+ "description": "- An issue when getting user settings"
583
+ }
584
+ ]
585
+ },
586
+ "1.5.3": {
587
+ "global": [
588
+ {
589
+ "type": "New",
590
+ "description": "- Quick access button and click-to-dial can be configured to be shown on other pages rather than CRM page. Set it up in user settings -> general -> allowed pages"
591
+ }
592
+ ]
593
+ },
594
+ "1.5.2": {
595
+ "global": [
596
+ {
597
+ "type": "New",
598
+ "description": "- Contact search in call/message log page to add contact searched by name"
599
+ },
600
+ {
601
+ "type": "New",
602
+ "description": "- Include tab visibility control in Admin settings"
603
+ }
604
+ ]
605
+ },
606
+ "1.5.1": {
607
+ "global": [
608
+ {
609
+ "type": "New",
610
+ "description": "- Call session id can now be included in call log notes. This can be turned ON/OFF in user settings"
611
+ },
612
+ {
613
+ "type": "Fix",
614
+ "description": "- Developer mode can be turned ON before connecting to CRM"
615
+ },
616
+ {
617
+ "type": "Fix",
618
+ "description": "- User setting now shows correct connect status right after open"
619
+ },
620
+ {
621
+ "type": "Fix",
622
+ "description": "- Call queue calls cannot be logged in a few cases"
623
+ }
624
+ ]
625
+ },
626
+ "1.5.0": {
627
+ "global": [
628
+ {
629
+ "type": "New",
630
+ "description": "- Fax log support"
631
+ },
632
+ {
633
+ "type": "New",
634
+ "description": "- If user is admin, '(Admin)' will be shown after user name on user setting page"
635
+ }
636
+ ]
637
+ },
638
+ "1.4.2": {
639
+ "global": [
640
+ {
641
+ "type": "Fix",
642
+ "description": "- Show 'Cannot find call log' and 'Cannot find contact' even when contact is known"
643
+ },
644
+ {
645
+ "type": "Fix",
646
+ "description": "- Contact call-pop for known contact"
647
+ }
648
+ ]
649
+ },
650
+ "1.4.1": {
651
+ "global": [
652
+ {
653
+ "type": "New",
654
+ "description": "- Server-side call logging support using user credentials if possible"
655
+ },
656
+ {
657
+ "type": "New",
658
+ "description": "- Server-side call logging new selection for logging by Agent/User (if possible) OR Admin"
659
+ },
660
+ {
661
+ "type": "Change",
662
+ "description": "- 'Tabs' setting is renamed as 'Customize tabs' and is moved under 'General' setting"
663
+ },
664
+ {
665
+ "type": "Fix",
666
+ "description": "- Call queue not answered cannot be logged"
667
+ }
668
+ ]
669
+ },
670
+ "1.4.0": {
671
+ "global": [
672
+ {
673
+ "type": "New",
674
+ "description": "- Server side call logging for all platforms"
675
+ },
676
+ {
677
+ "type": "New",
678
+ "description": "- One-time log in user setting to reduce Rate Limit issue and make logging more stable"
679
+ },
680
+ {
681
+ "type": "New",
682
+ "description": "- Hide or show tabs in user settings"
683
+ },
684
+ {
685
+ "type": "New",
686
+ "description": "- Call queue presence setting"
687
+ },
688
+ {
689
+ "type": "New",
690
+ "description": "- Display voicemail transcript"
691
+ },
692
+ {
693
+ "type": "New",
694
+ "description": "- Google Sheets is now supported"
695
+ },
696
+ {
697
+ "type": "Better",
698
+ "description": "- Auto-logging happens right after call is connected (unless one-time log is ON)"
699
+ },
700
+ {
701
+ "type": "Better",
702
+ "description": "- Multiple matched contact handling"
703
+ }
704
+ ]
705
+ },
706
+ "1.3.10": {
707
+ "global": [
708
+ {
709
+ "type": "Fix",
710
+ "description": "- New users cannot save auto log setting"
711
+ },
712
+ {
713
+ "type": "Fix",
714
+ "description": "- Randomly dial previous number"
715
+ }
716
+ ]
717
+ },
718
+ "1.3.9": {
719
+ "global": [
720
+ {
721
+ "type": "New",
722
+ "description": "- User settings for ai related features (applicable accounts only)"
723
+ },
724
+ {
725
+ "type": "Better",
726
+ "description": "- User settings are kept after logout and auto-loaded after re-connect"
727
+ },
728
+ {
729
+ "type": "Better",
730
+ "description": "- Token refresh lock to reduce issues of invalid authorization"
731
+ },
732
+ {
733
+ "type": "Better",
734
+ "description": "- Clearer sign on case where auto call log setting disabled by Server Side Call Logging"
735
+ },
736
+ {
737
+ "type": "Fix",
738
+ "description": "- Agent note title inserted in log description when there's no note"
739
+ },
740
+ {
741
+ "type": "Fix",
742
+ "description": "- Fix spamming of contact not found warning notification"
743
+ },
744
+ {
745
+ "type": "Fix",
746
+ "description": "- Fix contact match issue on multiple contact case"
747
+ }
748
+ ]
749
+ },
750
+ "1.3.8": {
751
+ "global": [
752
+ {
753
+ "type": "Fix",
754
+ "description": "- Contact match timeout issue"
755
+ },
756
+ {
757
+ "type": "Fix",
758
+ "description": "- Auto log in user setting isn't set unless reloaded"
759
+ }
760
+ ]
761
+ },
762
+ "1.3.7": {
763
+ "global": [
764
+ {
765
+ "type": "Fix",
766
+ "description": "- Timeout issue (mostly affecting call logging)"
767
+ },
768
+ {
769
+ "type": "Fix",
770
+ "description": "- Admin users now get admin setting right after login"
771
+ },
772
+ {
773
+ "type": "New",
774
+ "description": "- A new setting to turn ON/OFF retroactive call logging"
775
+ }
776
+ ]
777
+ },
778
+ "1.3.6": {
779
+ "global": [
780
+ {
781
+ "type": "Fix",
782
+ "description": "- Retro call logging now has recording link if applicable, instead of showing '(pending...)'"
783
+ },
784
+ {
785
+ "type": "Better",
786
+ "description": "- User settings are synced more frequently and stably"
787
+ },
788
+ {
789
+ "type": "Better",
790
+ "description": "- Some settings now have additional explanations of how it works"
791
+ },
792
+ {
793
+ "type": "Change",
794
+ "description": "- 'Call log details' setting is now under 'Call and SMS logging'"
795
+ }
796
+ ]
797
+ },
798
+ "1.3.5": {
799
+ "global": [
800
+ {
801
+ "type": "Upgrade",
802
+ "description": "Error messages are more accurate"
803
+ }
804
+ ]
805
+ },
806
+ "1.3.4": {
807
+ "global": [
808
+ {
809
+ "type": "Upgrade",
810
+ "description": "More accurate call info, including better tracking on call recording link save status"
811
+ },
812
+ {
813
+ "type": "New",
814
+ "description": "Call info details can be selectively logged based on new toggles in user settings"
815
+ },
816
+ {
817
+ "type": "New",
818
+ "description": "(RingCentral AI license only) Smart Notes to be enabled in user advanced settings"
819
+ },
820
+ {
821
+ "type": "Fix",
822
+ "description": "Admin users can see admin tab on first login now"
823
+ }
824
+ ]
825
+ },
826
+ "1.3.3": {
827
+ "global": [
828
+ {
829
+ "type": "Update",
830
+ "description": "- This extension's name is now changed to RingCentral App Connect"
831
+ },
832
+ {
833
+ "type": "Fix",
834
+ "description": "- (for Clio and Insightly user only) Overriding phone number format missing issue"
835
+ },
836
+ {
837
+ "type": "Fix",
838
+ "description": "- Auto pop up log page after call setting not working"
839
+ },
840
+ {
841
+ "type": "Fix",
842
+ "description": "- Inbound call contact pop not working"
843
+ },
844
+ {
845
+ "type": "Fix",
846
+ "description": "- Admin icon in dark theme"
847
+ }
848
+ ]
849
+ },
850
+ "1.3.2": {
851
+ "global": [
852
+ {
853
+ "type": "New",
854
+ "description": "- User setting inside call pop to control behavior of multiple matched contacts (disabled, all open, prompt to select)"
855
+ },
856
+ {
857
+ "type": "Fix",
858
+ "description": "- SMS logging issue"
859
+ },
860
+ {
861
+ "type": "Fix",
862
+ "description": "- Auto open extension now only opens when main page is opened"
863
+ }
864
+ ]
865
+ },
866
+ "1.3.1": {
867
+ "global": [
868
+ {
869
+ "type": "New",
870
+ "description": "- (Only for admin users) Admin tools. Admins have an extra tab in the extension to control end users' settings"
871
+ },
872
+ {
873
+ "type": "Fix",
874
+ "description": "- SMS logging date format"
875
+ }
876
+ ]
877
+ },
878
+ "1.2.0": {
879
+ "global": [
880
+ {
881
+ "type": "Fix",
882
+ "description": "- SMS log issue"
883
+ },
884
+ {
885
+ "type": "Fix",
886
+ "description": "- Missing recording link when doing retroactive auto call logging"
887
+ }
888
+ ]
889
+ },
890
+ "1.1.4": {
891
+ "global": [
892
+ {
893
+ "type": "Fix",
894
+ "description": "- Auto log association"
895
+ },
896
+ {
897
+ "type": "New",
898
+ "description": "- User setting in advanced features to turn on 'Auto open extension' to open itself when opening a CRM page"
899
+ }
900
+ ]
901
+ },
902
+ "1.1.2": {
903
+ "global": [
904
+ {
905
+ "type": "Change",
906
+ "description": "- Auto pop up log page is not dependent on auto log setting anymore"
907
+ }
908
+ ]
909
+ },
910
+ "1.1.1": {
911
+ "global": [
912
+ {
913
+ "type": "Fix",
914
+ "description": "- Call/SMS logging issue"
915
+ }
916
+ ]
917
+ },
918
+ "1.1.0": {
919
+ "global": [
920
+ {
921
+ "type": "New",
922
+ "description": "- Show error page when CRM initialization fails"
923
+ },
924
+ {
925
+ "type": "Better",
926
+ "description": "- Use local cached contact info to avoid rate limit issue"
927
+ },
928
+ {
929
+ "type": "Better",
930
+ "description": "- Auto call log now supports retrospectively logging up to 100 unlogged records upon extension open"
931
+ }
932
+ ]
933
+ },
934
+ "1.0.10": {
935
+ "global": [
936
+ {
937
+ "type": "Change",
938
+ "description": "- Unreolved tab is removed now. To check out unlogged calls, there's now a filter on call history page"
939
+ },
940
+ {
941
+ "type": "Change",
942
+ "description": "- Updated notification UI"
943
+ },
944
+ {
945
+ "type": "Fix",
946
+ "description": "- Numbers can now be copied from call page and call history page"
947
+ },
948
+ {
949
+ "type": "Fix",
950
+ "description": "- Click-to-dial now supports detecting phone numbers in input fields"
951
+ },
952
+ {
953
+ "type": "Fix",
954
+ "description": "- Click-to-dial now supports detecting extension numbers with format as eg. +13334445555#134"
955
+ }
956
+ ]
957
+ },
958
+ "1.0.9": {
959
+ "global": [
960
+ {
961
+ "type": "New",
962
+ "description": "- Call history page now has a search bar with filters"
963
+ },
964
+ {
965
+ "type": "New",
966
+ "description": "- Contact pop settings now support both inbound and outbound calls on different timings"
967
+ },
968
+ {
969
+ "type": "New",
970
+ "description": "- RingCentral team message is added as a new tab (might get delayed to show up)"
971
+ }
972
+ ]
973
+ },
974
+ "1.0.8": {
975
+ "global": [
976
+ {
977
+ "type": "New",
978
+ "description": "- More historical call records can be viewed from call history page with 'Load more' button"
979
+ }
980
+ ]
981
+ },
982
+ "1.0.7": {
983
+ "global": [
984
+ {
985
+ "type": "Fix",
986
+ "description": "- Incoming call pop contact page fixed"
987
+ }
988
+ ]
989
+ },
990
+ "1.0.6": {
991
+ "global": [
992
+ {
993
+ "type": "Better",
994
+ "description": "- User settings are organized in a better way"
995
+ },
996
+ {
997
+ "type": "New",
998
+ "description": "- Support page is added to user settings"
999
+ },
1000
+ {
1001
+ "type": "New",
1002
+ "description": "- Community forum is created, can be accessed via support page -> 'Get support'"
1003
+ }
1004
+ ]
1005
+ },
1006
+ "1.0.5": {
1007
+ "global": [
1008
+ {
1009
+ "type": "Fix",
1010
+ "description": "- SMS template remembers orders after close"
1011
+ }
1012
+ ]
1013
+ },
1014
+ "1.0.4": {
1015
+ "global": [
1016
+ {
1017
+ "type": "New",
1018
+ "description": "- An About page in user settings to show info and helper links"
1019
+ },
1020
+ {
1021
+ "type": "Better",
1022
+ "description": "- Factor reset now also cleans up unresolved conflicts"
1023
+ },
1024
+ {
1025
+ "type": "Better",
1026
+ "description": "- SMS template supports drag and drop to arrange item orders"
1027
+ }
1028
+ ]
1029
+ },
1030
+ "1.0.3": {
1031
+ "global": [
1032
+ {
1033
+ "type": "Better",
1034
+ "description": "- Use SMS template that syncs with RingCentral App's SMS template"
1035
+ },
1036
+ {
1037
+ "type": "New",
1038
+ "description": "- Show notification when a call recording link is uploaded"
1039
+ }
1040
+ ]
1041
+ },
1042
+ "1.0.2": {
1043
+ "global": [
1044
+ {
1045
+ "type": "Fix",
1046
+ "description": "- SMS template cannot apply issue"
1047
+ },
1048
+ {
1049
+ "type": "New",
1050
+ "description": "- Factory Reset button in user settings"
1051
+ }
1052
+ ]
1053
+ },
1054
+ "1.0.1": {
1055
+ "global": [
1056
+ {
1057
+ "type": "Fix",
1058
+ "description": "- RingCentral sign in issue where pop up sign in window is stuck at loading screen"
1059
+ },
1060
+ {
1061
+ "type": "Better",
1062
+ "description": "- Auto log conflict messages now contain more meaningful info"
1063
+ }
1064
+ ]
1065
+ },
1066
+ "1.0.0": {
1067
+ "global": [
1068
+ {
1069
+ "type": "New",
1070
+ "description": "- Auto log with conflict resolver"
1071
+ },
1072
+ {
1073
+ "type": "New",
1074
+ "description": "- Manual refersh contact info with button"
1075
+ },
1076
+ {
1077
+ "type": "New",
1078
+ "description": "- Audio volume controls"
1079
+ },
1080
+ {
1081
+ "type": "Better",
1082
+ "description": "- SMS messages are now logged as in conversations per day"
1083
+ },
1084
+ {
1085
+ "type": "Better",
1086
+ "description": "- New UIs"
1087
+ },
1088
+ {
1089
+ "type": "Full list and video demo",
1090
+ "description": "https://ringcentral.github.io/rc-unified-crm-extension/release-notes/"
1091
+ }
1092
+ ]
1093
+ }
1082
1094
  }