@webex/internal-plugin-conversation 2.59.3-next.1 → 2.59.4-next.1

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 (49) hide show
  1. package/.eslintrc.js +6 -6
  2. package/README.md +47 -47
  3. package/babel.config.js +3 -3
  4. package/dist/activities.js +6 -6
  5. package/dist/activities.js.map +1 -1
  6. package/dist/activity-thread-ordering.js +38 -38
  7. package/dist/activity-thread-ordering.js.map +1 -1
  8. package/dist/config.js +12 -12
  9. package/dist/config.js.map +1 -1
  10. package/dist/constants.js.map +1 -1
  11. package/dist/conversation.js +511 -522
  12. package/dist/conversation.js.map +1 -1
  13. package/dist/convo-error.js +4 -4
  14. package/dist/convo-error.js.map +1 -1
  15. package/dist/decryption-transforms.js +163 -161
  16. package/dist/decryption-transforms.js.map +1 -1
  17. package/dist/encryption-transforms.js +19 -19
  18. package/dist/encryption-transforms.js.map +1 -1
  19. package/dist/index.js +13 -15
  20. package/dist/index.js.map +1 -1
  21. package/dist/share-activity.js +67 -70
  22. package/dist/share-activity.js.map +1 -1
  23. package/dist/to-array.js +10 -10
  24. package/dist/to-array.js.map +1 -1
  25. package/jest.config.js +3 -3
  26. package/package.json +14 -14
  27. package/process +1 -1
  28. package/src/activities.js +157 -157
  29. package/src/activity-thread-ordering.js +283 -283
  30. package/src/activity-threading.md +282 -282
  31. package/src/config.js +37 -37
  32. package/src/constants.js +3 -3
  33. package/src/conversation.js +2535 -2535
  34. package/src/convo-error.js +15 -15
  35. package/src/decryption-transforms.js +541 -541
  36. package/src/encryption-transforms.js +345 -345
  37. package/src/index.js +327 -327
  38. package/src/share-activity.js +436 -436
  39. package/src/to-array.js +29 -29
  40. package/test/integration/spec/create.js +290 -290
  41. package/test/integration/spec/encryption.js +333 -333
  42. package/test/integration/spec/get.js +1255 -1255
  43. package/test/integration/spec/mercury.js +94 -94
  44. package/test/integration/spec/share.js +537 -537
  45. package/test/integration/spec/verbs.js +1041 -1041
  46. package/test/unit/spec/conversation.js +823 -823
  47. package/test/unit/spec/decrypt-transforms.js +460 -460
  48. package/test/unit/spec/encryption-transforms.js +93 -93
  49. package/test/unit/spec/share-activity.js +178 -178
@@ -1,15 +1,15 @@
1
- /*!
2
- * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
3
- */
4
-
5
- import {Exception} from '@webex/common';
6
-
7
- /**
8
- * General conversation error
9
- */
10
- export class ConversationError extends Exception {}
11
-
12
- /**
13
- * InvalidUserCreation thrown when failed to create conversation with invalid user
14
- */
15
- export class InvalidUserCreation extends ConversationError {}
1
+ /*!
2
+ * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
3
+ */
4
+
5
+ import {Exception} from '@webex/common';
6
+
7
+ /**
8
+ * General conversation error
9
+ */
10
+ export class ConversationError extends Exception {}
11
+
12
+ /**
13
+ * InvalidUserCreation thrown when failed to create conversation with invalid user
14
+ */
15
+ export class InvalidUserCreation extends ConversationError {}