musora-content-services 2.26.0 → 2.26.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.
- package/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/index.d.ts +4 -0
- package/src/index.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.26.1](https://github.com/railroadmedia/musora-content-services/compare/v2.26.0...v2.26.1) (2025-07-16)
|
|
6
|
+
|
|
5
7
|
## [2.26.0](https://github.com/railroadmedia/musora-content-services/compare/v2.25.1...v2.26.0) (2025-07-16)
|
|
6
8
|
|
|
7
9
|
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -267,6 +267,8 @@ import {
|
|
|
267
267
|
markAllNotificationsAsRead,
|
|
268
268
|
markNotificationAsRead,
|
|
269
269
|
markNotificationAsUnread,
|
|
270
|
+
pauseLiveEventPollingUntil,
|
|
271
|
+
startLiveEventPolling,
|
|
270
272
|
updateNotificationSetting
|
|
271
273
|
} from './services/user/notifications.js';
|
|
272
274
|
|
|
@@ -486,6 +488,7 @@ declare module 'musora-content-services' {
|
|
|
486
488
|
markNotificationAsUnread,
|
|
487
489
|
openComment,
|
|
488
490
|
otherStats,
|
|
491
|
+
pauseLiveEventPollingUntil,
|
|
489
492
|
pinGuidedCourse,
|
|
490
493
|
pinProgressRow,
|
|
491
494
|
pinnedGuidedCourses,
|
|
@@ -524,6 +527,7 @@ declare module 'musora-content-services' {
|
|
|
524
527
|
sendPasswordResetEmail,
|
|
525
528
|
setStudentViewForUser,
|
|
526
529
|
setupAccount,
|
|
530
|
+
startLiveEventPolling,
|
|
527
531
|
status,
|
|
528
532
|
togglePlaylistPrivate,
|
|
529
533
|
unEnrollUserInGuidedCourse,
|
package/src/index.js
CHANGED
|
@@ -267,6 +267,8 @@ import {
|
|
|
267
267
|
markAllNotificationsAsRead,
|
|
268
268
|
markNotificationAsRead,
|
|
269
269
|
markNotificationAsUnread,
|
|
270
|
+
pauseLiveEventPollingUntil,
|
|
271
|
+
startLiveEventPolling,
|
|
270
272
|
updateNotificationSetting
|
|
271
273
|
} from './services/user/notifications.js';
|
|
272
274
|
|
|
@@ -485,6 +487,7 @@ export {
|
|
|
485
487
|
markNotificationAsUnread,
|
|
486
488
|
openComment,
|
|
487
489
|
otherStats,
|
|
490
|
+
pauseLiveEventPollingUntil,
|
|
488
491
|
pinGuidedCourse,
|
|
489
492
|
pinProgressRow,
|
|
490
493
|
pinnedGuidedCourses,
|
|
@@ -523,6 +526,7 @@ export {
|
|
|
523
526
|
sendPasswordResetEmail,
|
|
524
527
|
setStudentViewForUser,
|
|
525
528
|
setupAccount,
|
|
529
|
+
startLiveEventPolling,
|
|
526
530
|
status,
|
|
527
531
|
togglePlaylistPrivate,
|
|
528
532
|
unEnrollUserInGuidedCourse,
|