@amityco/ts-sdk 7.2.1-56aa34e.0 → 7.2.1-88f63a0b.0

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 (86) hide show
  1. package/.eslintrc.json +2 -1
  2. package/dist/@types/core/events.d.ts +4 -0
  3. package/dist/@types/core/events.d.ts.map +1 -1
  4. package/dist/@types/core/model.d.ts +4 -0
  5. package/dist/@types/core/model.d.ts.map +1 -1
  6. package/dist/@types/core/payload.d.ts +24 -0
  7. package/dist/@types/core/payload.d.ts.map +1 -1
  8. package/dist/@types/domains/ad.d.ts +1 -1
  9. package/dist/@types/domains/ad.d.ts.map +1 -1
  10. package/dist/@types/domains/content.d.ts +12 -0
  11. package/dist/@types/domains/content.d.ts.map +1 -1
  12. package/dist/@types/domains/notification.d.ts +78 -0
  13. package/dist/@types/domains/notification.d.ts.map +1 -0
  14. package/dist/@types/index.d.ts +1 -0
  15. package/dist/@types/index.d.ts.map +1 -1
  16. package/dist/core/events.d.ts +3 -3
  17. package/dist/core/events.d.ts.map +1 -1
  18. package/dist/core/model/idResolvers.d.ts.map +1 -1
  19. package/dist/core/model/index.d.ts.map +1 -1
  20. package/dist/index.cjs.js +454 -47
  21. package/dist/index.d.ts +1 -0
  22. package/dist/index.d.ts.map +1 -1
  23. package/dist/index.esm.js +437 -31
  24. package/dist/index.umd.js +4 -4
  25. package/dist/messageRepository/api/flagMessage.d.ts +2 -1
  26. package/dist/messageRepository/api/flagMessage.d.ts.map +1 -1
  27. package/dist/notificationTray/api/index.d.ts +3 -0
  28. package/dist/notificationTray/api/index.d.ts.map +1 -0
  29. package/dist/notificationTray/api/markItemsSeen.d.ts +16 -0
  30. package/dist/notificationTray/api/markItemsSeen.d.ts.map +1 -0
  31. package/dist/notificationTray/api/markTraySeen.d.ts +19 -0
  32. package/dist/notificationTray/api/markTraySeen.d.ts.map +1 -0
  33. package/dist/notificationTray/events/index.d.ts +2 -0
  34. package/dist/notificationTray/events/index.d.ts.map +1 -0
  35. package/dist/notificationTray/events/onNotificationTraySeenUpdated.d.ts +17 -0
  36. package/dist/notificationTray/events/onNotificationTraySeenUpdated.d.ts.map +1 -0
  37. package/dist/notificationTray/index.d.ts +4 -0
  38. package/dist/notificationTray/index.d.ts.map +1 -0
  39. package/dist/notificationTray/internalApi/getNotificationTraySeen.d.ts +30 -0
  40. package/dist/notificationTray/internalApi/getNotificationTraySeen.d.ts.map +1 -0
  41. package/dist/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsLiveCollectionController.d.ts +13 -0
  42. package/dist/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsLiveCollectionController.d.ts.map +1 -0
  43. package/dist/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsPaginationController.d.ts +9 -0
  44. package/dist/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsPaginationController.d.ts.map +1 -0
  45. package/dist/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsQuerystreamController.d.ts +9 -0
  46. package/dist/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsQuerystreamController.d.ts.map +1 -0
  47. package/dist/notificationTray/observers/getNotificationTrayItems.d.ts +12 -0
  48. package/dist/notificationTray/observers/getNotificationTrayItems.d.ts.map +1 -0
  49. package/dist/notificationTray/observers/getNotificationTraySeen.d.ts +20 -0
  50. package/dist/notificationTray/observers/getNotificationTraySeen.d.ts.map +1 -0
  51. package/dist/notificationTray/observers/index.d.ts +3 -0
  52. package/dist/notificationTray/observers/index.d.ts.map +1 -0
  53. package/dist/notificationTray/utils/prepareNotificationTrayItemsPayload.d.ts +2 -0
  54. package/dist/notificationTray/utils/prepareNotificationTrayItemsPayload.d.ts.map +1 -0
  55. package/dist/utils/linkedObject/index.d.ts +1 -0
  56. package/dist/utils/linkedObject/index.d.ts.map +1 -1
  57. package/dist/utils/linkedObject/notificationTrayLinkedObject.d.ts +2 -0
  58. package/dist/utils/linkedObject/notificationTrayLinkedObject.d.ts.map +1 -0
  59. package/package.json +1 -1
  60. package/src/@types/core/events.ts +5 -0
  61. package/src/@types/core/model.ts +6 -0
  62. package/src/@types/core/payload.ts +29 -0
  63. package/src/@types/domains/ad.ts +1 -1
  64. package/src/@types/domains/content.ts +16 -0
  65. package/src/@types/domains/notification.ts +94 -0
  66. package/src/@types/index.ts +1 -0
  67. package/src/core/model/idResolvers.ts +3 -0
  68. package/src/core/model/index.ts +2 -0
  69. package/src/index.ts +2 -0
  70. package/src/messageRepository/api/flagMessage.ts +18 -5
  71. package/src/notificationTray/api/index.ts +2 -0
  72. package/src/notificationTray/api/markItemsSeen.ts +62 -0
  73. package/src/notificationTray/api/markTraySeen.ts +65 -0
  74. package/src/notificationTray/events/index.ts +1 -0
  75. package/src/notificationTray/events/onNotificationTraySeenUpdated.ts +36 -0
  76. package/src/notificationTray/index.ts +3 -0
  77. package/src/notificationTray/internalApi/getNotificationTraySeen.ts +80 -0
  78. package/src/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsLiveCollectionController.ts +96 -0
  79. package/src/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsPaginationController.ts +31 -0
  80. package/src/notificationTray/observers/getNotificationTrayItems/NotificationTrayItemsQuerystreamController.ts +68 -0
  81. package/src/notificationTray/observers/getNotificationTrayItems.ts +44 -0
  82. package/src/notificationTray/observers/getNotificationTraySeen.ts +60 -0
  83. package/src/notificationTray/observers/index.ts +2 -0
  84. package/src/notificationTray/utils/prepareNotificationTrayItemsPayload.ts +12 -0
  85. package/src/utils/linkedObject/index.ts +2 -0
  86. package/src/utils/linkedObject/notificationTrayLinkedObject.ts +19 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.