musora-content-services 2.89.0 → 2.92.3

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 (139) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/docs/ContentOrganization.html +2 -2
  3. package/docs/Forums.html +2 -2
  4. package/docs/Gamification.html +2 -2
  5. package/docs/TestUser.html +2 -2
  6. package/docs/UserManagementSystem.html +2 -2
  7. package/docs/api_types.js.html +2 -2
  8. package/docs/config.js.html +2 -2
  9. package/docs/content-org_content-org.js.html +2 -2
  10. package/docs/content-org_guided-courses.ts.html +2 -2
  11. package/docs/content-org_learning-paths.ts.html +52 -40
  12. package/docs/content-org_playlists-types.js.html +2 -2
  13. package/docs/content-org_playlists.js.html +2 -2
  14. package/docs/content.js.html +2 -2
  15. package/docs/content_artist.ts.html +2 -2
  16. package/docs/content_genre.ts.html +2 -2
  17. package/docs/content_instructor.ts.html +2 -2
  18. package/docs/forums_categories.ts.html +2 -2
  19. package/docs/forums_forums.ts.html +2 -2
  20. package/docs/forums_posts.ts.html +2 -2
  21. package/docs/forums_threads.ts.html +2 -2
  22. package/docs/gamification_awards.ts.html +2 -2
  23. package/docs/gamification_gamification.js.html +2 -2
  24. package/docs/global.html +2 -2
  25. package/docs/index.html +2 -2
  26. package/docs/liveTesting.ts.html +2 -2
  27. package/docs/module-Accounts.html +2 -2
  28. package/docs/module-Artist.html +2 -2
  29. package/docs/module-Awards.html +2 -2
  30. package/docs/module-Config.html +2 -2
  31. package/docs/module-Content-Services-V2.html +2 -2
  32. package/docs/module-Forums.html +2 -2
  33. package/docs/module-Genre.html +2 -2
  34. package/docs/module-GuidedCourses.html +2 -2
  35. package/docs/module-Instructor.html +2 -2
  36. package/docs/module-Interests.html +2 -2
  37. package/docs/module-LearningPaths.html +269 -143
  38. package/docs/module-Onboarding.html +3 -3
  39. package/docs/module-Payments.html +2 -2
  40. package/docs/module-Permissions.html +2 -2
  41. package/docs/module-Playlists.html +2 -2
  42. package/docs/module-ProgressRow.html +2 -2
  43. package/docs/module-Railcontent-Services.html +34 -893
  44. package/docs/module-Sanity-Services.html +2 -2
  45. package/docs/module-Sessions.html +2 -2
  46. package/docs/module-UserActivity.html +70 -116
  47. package/docs/module-UserChat.html +2 -2
  48. package/docs/module-UserManagement.html +2 -2
  49. package/docs/module-UserMemberships.html +2 -2
  50. package/docs/module-UserNotifications.html +2 -2
  51. package/docs/module-UserProfile.html +2 -2
  52. package/docs/progress-row_method-card.js.html +3 -2
  53. package/docs/railcontent.js.html +14 -137
  54. package/docs/sanity.js.html +2 -2
  55. package/docs/userActivity.js.html +85 -150
  56. package/docs/user_account.ts.html +2 -2
  57. package/docs/user_chat.js.html +2 -2
  58. package/docs/user_interests.js.html +2 -2
  59. package/docs/user_management.js.html +2 -2
  60. package/docs/user_memberships.ts.html +2 -2
  61. package/docs/user_notifications.js.html +2 -2
  62. package/docs/user_onboarding.ts.html +10 -6
  63. package/docs/user_payments.ts.html +2 -2
  64. package/docs/user_permissions.js.html +2 -2
  65. package/docs/user_profile.js.html +2 -2
  66. package/docs/user_sessions.js.html +2 -2
  67. package/docs/user_types.js.html +2 -2
  68. package/docs/user_user-management-system.js.html +2 -2
  69. package/package.json +11 -3
  70. package/src/contentTypeConfig.js +6 -0
  71. package/src/index.d.ts +7 -31
  72. package/src/index.js +10 -34
  73. package/src/services/content-org/learning-paths.ts +31 -0
  74. package/src/services/contentAggregator.js +2 -2
  75. package/src/services/contentLikes.js +6 -39
  76. package/src/services/contentProgress.js +181 -479
  77. package/src/services/dataContext.js +0 -2
  78. package/src/services/progress-row/method-card.js +1 -0
  79. package/src/services/railcontent.js +12 -135
  80. package/src/services/sentry/.indexignore +0 -0
  81. package/src/services/sentry/index.ts +23 -0
  82. package/src/services/sync/.indexignore +0 -0
  83. package/src/services/sync/adapters/factory.ts +26 -0
  84. package/src/services/sync/adapters/lokijs.ts +1 -0
  85. package/src/services/sync/adapters/sqlite.ts +1 -0
  86. package/src/services/sync/concurrency-safety.ts +4 -0
  87. package/src/services/sync/context/index.ts +43 -0
  88. package/src/services/sync/context/providers/base.ts +4 -0
  89. package/src/services/sync/context/providers/connectivity.ts +14 -0
  90. package/src/services/sync/context/providers/durability.ts +5 -0
  91. package/src/services/sync/context/providers/index.ts +5 -0
  92. package/src/services/sync/context/providers/session.ts +8 -0
  93. package/src/services/sync/context/providers/tabs.ts +18 -0
  94. package/src/services/sync/context/providers/visibility.ts +14 -0
  95. package/src/services/sync/database/factory.ts +10 -0
  96. package/src/services/sync/errors/boundary.ts +45 -0
  97. package/src/services/sync/errors/index.ts +49 -0
  98. package/src/services/sync/fetch.ts +310 -0
  99. package/src/services/sync/index.ts +80 -0
  100. package/src/services/sync/manager.ts +139 -0
  101. package/src/services/sync/models/Base.ts +47 -0
  102. package/src/services/sync/models/ContentLike.ts +16 -0
  103. package/src/services/sync/models/ContentProgress.ts +69 -0
  104. package/src/services/sync/models/Practice.ts +72 -0
  105. package/src/services/sync/models/PracticeDayNote.ts +23 -0
  106. package/src/services/sync/models/index.ts +4 -0
  107. package/src/services/sync/repositories/base.ts +247 -0
  108. package/src/services/sync/repositories/content-likes.ts +26 -0
  109. package/src/services/sync/repositories/content-progress.ts +160 -0
  110. package/src/services/sync/repositories/index.ts +4 -0
  111. package/src/services/sync/repositories/practice-day-notes.ts +4 -0
  112. package/src/services/sync/repositories/practices.ts +52 -0
  113. package/src/services/sync/repository-proxy.ts +48 -0
  114. package/src/services/sync/resolver.ts +84 -0
  115. package/src/services/sync/retry.ts +88 -0
  116. package/src/services/sync/run-scope.ts +30 -0
  117. package/src/services/sync/schema/index.ts +66 -0
  118. package/src/services/sync/serializers/index.ts +2 -0
  119. package/src/services/sync/serializers/model.ts +32 -0
  120. package/src/services/sync/serializers/raw.ts +21 -0
  121. package/src/services/sync/store/index.ts +779 -0
  122. package/src/services/sync/store/push-coalescer.ts +57 -0
  123. package/src/services/sync/store-configs.ts +41 -0
  124. package/src/services/sync/strategies/base.ts +21 -0
  125. package/src/services/sync/strategies/index.ts +12 -0
  126. package/src/services/sync/strategies/initial.ts +11 -0
  127. package/src/services/sync/strategies/polling.ts +54 -0
  128. package/src/services/sync/telemetry/index.ts +140 -0
  129. package/src/services/sync/telemetry/sampling.ts +91 -0
  130. package/src/services/sync/utils/event-emitter.ts +24 -0
  131. package/src/services/sync/utils/index.ts +1 -0
  132. package/src/services/sync/utils/throttle.ts +93 -0
  133. package/src/services/sync/utils/timers.ts +9 -0
  134. package/src/services/userActivity.js +83 -148
  135. package/test/contentProgress.test.js +6 -39
  136. package/test/live/contentProgressLive.test.js +2 -31
  137. package/tools/generate-index.cjs +10 -4
  138. package/.claude/settings.local.json +0 -8
  139. package/babel.config.cjs +0 -3
@@ -29,7 +29,7 @@
29
29
  <nav >
30
30
 
31
31
 
32
- <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-Accounts.html">Accounts</a><ul class='methods'><li data-type='method'><a href="module-Accounts.html#~confirmEmailChange">confirmEmailChange</a></li><li data-type='method'><a href="module-Accounts.html#~deleteAccount">deleteAccount</a></li><li data-type='method'><a href="module-Accounts.html#~numberOfActiveUsers">numberOfActiveUsers</a></li><li data-type='method'><a href="module-Accounts.html#~requestEmailChange">requestEmailChange</a></li><li data-type='method'><a href="module-Accounts.html#~resetPassword">resetPassword</a></li><li data-type='method'><a href="module-Accounts.html#~sendAccountSetupEmail">sendAccountSetupEmail</a></li><li data-type='method'><a href="module-Accounts.html#~sendPasswordResetEmail">sendPasswordResetEmail</a></li><li data-type='method'><a href="module-Accounts.html#~setupAccount">setupAccount</a></li><li data-type='method'><a href="module-Accounts.html#~status">status</a></li><li data-type='method'><a href="module-Accounts.html#~toggleStudentView">toggleStudentView</a></li></ul></li><li><a href="module-Artist.html">Artist</a><ul class='methods'><li data-type='method'><a href="module-Artist.html#~fetchArtistBySlug">fetchArtistBySlug</a></li><li data-type='method'><a href="module-Artist.html#~fetchArtistLessons">fetchArtistLessons</a></li><li data-type='method'><a href="module-Artist.html#~fetchArtists">fetchArtists</a></li></ul></li><li><a href="module-Awards.html">Awards</a><ul class='methods'><li data-type='method'><a href="module-Awards.html#~fetchAwardsForUser">fetchAwardsForUser</a></li><li data-type='method'><a href="module-Awards.html#~fetchCertificate">fetchCertificate</a></li><li data-type='method'><a href="module-Awards.html#~getAwardDataForGuidedContent">getAwardDataForGuidedContent</a></li></ul></li><li><a href="module-Config.html">Config</a><ul class='methods'><li data-type='method'><a href="module-Config.html#.initializeService">initializeService</a></li></ul></li><li><a href="module-Content-Services-V2.html">Content-Services-V2</a><ul class='methods'><li data-type='method'><a href="module-Content-Services-V2.html#.getContentRows">getContentRows</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getLegacyMethods">getLegacyMethods</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getNewAndUpcoming">getNewAndUpcoming</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getOwnedContent">getOwnedContent</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getRecent">getRecent</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getRecommendedForYou">getRecommendedForYou</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getScheduleContentRows">getScheduleContentRows</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getTabResults">getTabResults</a></li></ul></li><li><a href="module-Forums.html">Forums</a><ul class='methods'><li data-type='method'><a href="module-Forums.html#~createForumCategory">createForumCategory</a></li><li data-type='method'><a href="module-Forums.html#~createPost">createPost</a></li><li data-type='method'><a href="module-Forums.html#~createThread">createThread</a></li><li data-type='method'><a href="module-Forums.html#~deleteForumCategory">deleteForumCategory</a></li><li data-type='method'><a href="module-Forums.html#~deletePost">deletePost</a></li><li data-type='method'><a href="module-Forums.html#~deleteThread">deleteThread</a></li><li data-type='method'><a href="module-Forums.html#~fetchCommunityGuidelines">fetchCommunityGuidelines</a></li><li data-type='method'><a href="module-Forums.html#~fetchFollowedThreads">fetchFollowedThreads</a></li><li data-type='method'><a href="module-Forums.html#~fetchForumCategories">fetchForumCategories</a></li><li data-type='method'><a href="module-Forums.html#~fetchLatestThreads">fetchLatestThreads</a></li><li data-type='method'><a href="module-Forums.html#~fetchPosts">fetchPosts</a></li><li data-type='method'><a href="module-Forums.html#~fetchThreads">fetchThreads</a></li><li data-type='method'><a href="module-Forums.html#~followThread">followThread</a></li><li data-type='method'><a href="module-Forums.html#~jumpToPost">jumpToPost</a></li><li data-type='method'><a href="module-Forums.html#~likePost">likePost</a></li><li data-type='method'><a href="module-Forums.html#~lockThread">lockThread</a></li><li data-type='method'><a href="module-Forums.html#~markThreadAsRead">markThreadAsRead</a></li><li data-type='method'><a href="module-Forums.html#~pinThread">pinThread</a></li><li data-type='method'><a href="module-Forums.html#~search">search</a></li><li data-type='method'><a href="module-Forums.html#~unfollowThread">unfollowThread</a></li><li data-type='method'><a href="module-Forums.html#~unlikePost">unlikePost</a></li><li data-type='method'><a href="module-Forums.html#~unlockThread">unlockThread</a></li><li data-type='method'><a href="module-Forums.html#~unpinThread">unpinThread</a></li><li data-type='method'><a href="module-Forums.html#~updateForumCategory">updateForumCategory</a></li><li data-type='method'><a href="module-Forums.html#~updatePost">updatePost</a></li><li data-type='method'><a href="module-Forums.html#~updateThread">updateThread</a></li></ul></li><li></li><li></li><li><a href="module-Genre.html">Genre</a><ul class='methods'><li data-type='method'><a href="module-Genre.html#~fetchGenreBySlug">fetchGenreBySlug</a></li><li data-type='method'><a href="module-Genre.html#~fetchGenreLessons">fetchGenreLessons</a></li><li data-type='method'><a href="module-Genre.html#~fetchGenres">fetchGenres</a></li></ul></li><li><a href="module-GuidedCourses.html">GuidedCourses</a></li><li><a href="module-Instructor.html">Instructor</a><ul class='methods'><li data-type='method'><a href="module-Instructor.html#~fetchInstructorBySlug">fetchInstructorBySlug</a></li><li data-type='method'><a href="module-Instructor.html#~fetchInstructorLessons">fetchInstructorLessons</a></li><li data-type='method'><a href="module-Instructor.html#~fetchInstructors">fetchInstructors</a></li></ul></li><li><a href="module-Interests.html">Interests</a><ul class='methods'><li data-type='method'><a href="module-Interests.html#.fetchInterests">fetchInterests</a></li><li data-type='method'><a href="module-Interests.html#.fetchUninterests">fetchUninterests</a></li><li data-type='method'><a href="module-Interests.html#.markContentAsInterested">markContentAsInterested</a></li><li data-type='method'><a href="module-Interests.html#.markContentAsNotInterested">markContentAsNotInterested</a></li><li data-type='method'><a href="module-Interests.html#.removeContentAsInterested">removeContentAsInterested</a></li><li data-type='method'><a href="module-Interests.html#.removeContentAsNotInterested">removeContentAsNotInterested</a></li></ul></li><li><a href="module-LearningPaths.html">LearningPaths</a><ul class='methods'><li data-type='method'><a href="module-LearningPaths.html#~completeLearningPathIntroVideo">completeLearningPathIntroVideo</a></li><li data-type='method'><a href="module-LearningPaths.html#~completeMethodIntroVideo">completeMethodIntroVideo</a></li><li data-type='method'><a href="module-LearningPaths.html#~fetchLearningPathLessons">fetchLearningPathLessons</a></li><li data-type='method'><a href="module-LearningPaths.html#~getActivePath">getActivePath</a></li><li data-type='method'><a href="module-LearningPaths.html#~getDailySession">getDailySession</a></li><li data-type='method'><a href="module-LearningPaths.html#~getEnrichedLearningPath">getEnrichedLearningPath</a></li><li data-type='method'><a href="module-LearningPaths.html#~getLearningPathLessonsByIds">getLearningPathLessonsByIds</a></li><li data-type='method'><a href="module-LearningPaths.html#~mapContentToParent">mapContentToParent</a></li><li data-type='method'><a href="module-LearningPaths.html#~resetAllLearningPaths">resetAllLearningPaths</a></li><li data-type='method'><a href="module-LearningPaths.html#~startLearningPath">startLearningPath</a></li><li data-type='method'><a href="module-LearningPaths.html#~updateActivePath">updateActivePath</a></li><li data-type='method'><a href="module-LearningPaths.html#~updateDailySession">updateDailySession</a></li></ul></li><li><a href="module-Onboarding.html">Onboarding</a><ul class='methods'><li data-type='method'><a href="module-Onboarding.html#~getOnboardingRecommendedContent">getOnboardingRecommendedContent</a></li><li data-type='method'><a href="module-Onboarding.html#~startOnboarding">startOnboarding</a></li><li data-type='method'><a href="module-Onboarding.html#~updateOnboarding">updateOnboarding</a></li><li data-type='method'><a href="module-Onboarding.html#~userOnboardingForBrand">userOnboardingForBrand</a></li></ul></li><li><a href="module-Payments.html">Payments</a><ul class='methods'><li data-type='method'><a href="module-Payments.html#~fetchCustomerPayments">fetchCustomerPayments</a></li></ul></li><li><a href="module-Permissions.html">Permissions</a><ul class='methods'><li data-type='method'><a href="module-Permissions.html#.fetchUserPermissions">fetchUserPermissions</a></li><li data-type='method'><a href="module-Permissions.html#.reset">reset</a></li></ul></li><li><a href="module-Playlists.html">Playlists</a><ul class='methods'><li data-type='method'><a href="module-Playlists.html#.addItemToPlaylist">addItemToPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.createPlaylist">createPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.deletePlaylist">deletePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.duplicatePlaylist">duplicatePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.fetchPlaylist">fetchPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.fetchPlaylistItems">fetchPlaylistItems</a></li><li data-type='method'><a href="module-Playlists.html#.fetchUserPlaylists">fetchUserPlaylists</a></li><li data-type='method'><a href="module-Playlists.html#.togglePlaylistPrivate">togglePlaylistPrivate</a></li><li data-type='method'><a href="module-Playlists.html#.undeletePlaylist">undeletePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.updatePlaylist">updatePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~deleteItemsFromPlaylist">deleteItemsFromPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~likePlaylist">likePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~reportPlaylist">reportPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~restoreItemFromPlaylist">restoreItemFromPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~unlikePlaylist">unlikePlaylist</a></li></ul></li><li><a href="module-ProgressRow.html">ProgressRow</a></li><li><a href="module-Railcontent-Services.html">Railcontent-Services</a><ul class='methods'><li data-type='method'><a href="module-Railcontent-Services.html#.assignModeratorToComment">assignModeratorToComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.closeComment">closeComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.createComment">createComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.deleteComment">deleteComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.editComment">editComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchAllCompletedStates">fetchAllCompletedStates</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCarouselCardData">fetchCarouselCardData</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchComment">fetchComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCommentRelies">fetchCommentRelies</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchComments">fetchComments</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCompletedContent">fetchCompletedContent</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCompletedState">fetchCompletedState</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchContentInProgress">fetchContentInProgress</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchContentPageUserData">fetchContentPageUserData</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchNextContentDataForParent">fetchNextContentDataForParent</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchRecentUserActivities">fetchRecentUserActivities</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchSongsInProgress">fetchSongsInProgress</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchTopComment">fetchTopComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchUserAward">fetchUserAward</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchUserBadges">fetchUserBadges</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchUserPracticeNotes">fetchUserPracticeNotes</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.likeComment">likeComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.openComment">openComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postContentComplete">postContentComplete</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postContentReset">postContentReset</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postContentRestore">postContentRestore</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postContentStart">postContentStart</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.replyToComment">replyToComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.reportComment">reportComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.restoreComment">restoreComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.setStudentViewForUser">setStudentViewForUser</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.unassignModeratorToComment">unassignModeratorToComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.unlikeComment">unlikeComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#~fetchLastInteractedChild">fetchLastInteractedChild</a></li></ul></li><li><a href="module-Sanity-Services.html">Sanity-Services</a><ul class='methods'><li data-type='method'><a href="module-Sanity-Services.html#.fetchAll">fetchAll</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchAllFilterOptions">fetchAllFilterOptions</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchAllPacks">fetchAllPacks</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchByRailContentId">fetchByRailContentId</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchByRailContentIds">fetchByRailContentIds</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchByReference">fetchByReference</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchComingSoon">fetchComingSoon</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchCommentModContentData">fetchCommentModContentData</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchFoundation">fetchFoundation</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchLeaving">fetchLeaving</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchLessonContent">fetchLessonContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchLessonsFeaturingThisContent">fetchLessonsFeaturingThisContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMetadata">fetchMetadata</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethod">fetchMethod</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodChildren">fetchMethodChildren</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodChildrenIds">fetchMethodChildrenIds</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodPreviousNextLesson">fetchMethodPreviousNextLesson</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodV2IntroVideo">fetchMethodV2IntroVideo</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodV2Structure">fetchMethodV2Structure</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodV2StructureFromId">fetchMethodV2StructureFromId</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchNewReleases">fetchNewReleases</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchNextPreviousLesson">fetchNextPreviousLesson</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchOtherSongVersions">fetchOtherSongVersions</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchOwnedContent">fetchOwnedContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchPackAll">fetchPackAll</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchPackData">fetchPackData</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchRelatedLessons">fetchRelatedLessons</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchRelatedRecommendedContent">fetchRelatedRecommendedContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchRelatedSongs">fetchRelatedSongs</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchReturning">fetchReturning</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchSanity">fetchSanity</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchScheduledReleases">fetchScheduledReleases</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchShowsData">fetchShowsData</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchSiblingContent">fetchSiblingContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchSongArtistCount">fetchSongArtistCount</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchSongById">fetchSongById</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchTopLevelParentId">fetchTopLevelParentId</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchUpcomingEvents">fetchUpcomingEvents</a></li><li data-type='method'><a href="module-Sanity-Services.html#.jumpToContinueContent">jumpToContinueContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#~fetchRelatedByLicense">fetchRelatedByLicense</a></li><li data-type='method'><a href="module-Sanity-Services.html#~getQueryFromPage">getQueryFromPage</a></li></ul></li><li><a href="module-Sessions.html">Sessions</a><ul class='methods'><li data-type='method'><a href="module-Sessions.html#.login">login</a></li><li data-type='method'><a href="module-Sessions.html#.logout">logout</a></li></ul></li><li><a href="module-UserActivity.html">UserActivity</a><ul class='methods'><li data-type='method'><a href="module-UserActivity.html#.calculateLongestStreaks">calculateLongestStreaks</a></li><li data-type='method'><a href="module-UserActivity.html#.createPracticeNotes">createPracticeNotes</a></li><li data-type='method'><a href="module-UserActivity.html#.deletePracticeSession">deletePracticeSession</a></li><li data-type='method'><a href="module-UserActivity.html#.deleteUserActivity">deleteUserActivity</a></li><li data-type='method'><a href="module-UserActivity.html#.getPracticeNotes">getPracticeNotes</a></li><li data-type='method'><a href="module-UserActivity.html#.getPracticeSessions">getPracticeSessions</a></li><li data-type='method'><a href="module-UserActivity.html#.getProgressRows">getProgressRows</a></li><li data-type='method'><a href="module-UserActivity.html#.getRecentActivity">getRecentActivity</a></li><li data-type='method'><a href="module-UserActivity.html#.getUserMonthlyStats">getUserMonthlyStats</a></li><li data-type='method'><a href="module-UserActivity.html#.getUserWeeklyStats">getUserWeeklyStats</a></li><li data-type='method'><a href="module-UserActivity.html#.pinProgressRow">pinProgressRow</a></li><li data-type='method'><a href="module-UserActivity.html#.recordUserActivity">recordUserActivity</a></li><li data-type='method'><a href="module-UserActivity.html#.recordUserPractice">recordUserPractice</a></li><li data-type='method'><a href="module-UserActivity.html#.removeUserPractice">removeUserPractice</a></li><li data-type='method'><a href="module-UserActivity.html#.restorePracticeSession">restorePracticeSession</a></li><li data-type='method'><a href="module-UserActivity.html#.restoreUserActivity">restoreUserActivity</a></li><li data-type='method'><a href="module-UserActivity.html#.restoreUserPractice">restoreUserPractice</a></li><li data-type='method'><a href="module-UserActivity.html#.unpinProgressRow">unpinProgressRow</a></li><li data-type='method'><a href="module-UserActivity.html#.updatePracticeNotes">updatePracticeNotes</a></li><li data-type='method'><a href="module-UserActivity.html#.updateUserPractice">updateUserPractice</a></li></ul></li><li><a href="module-UserChat.html">UserChat</a><ul class='methods'><li data-type='method'><a href="module-UserChat.html#.fetchChatSettings">fetchChatSettings</a></li></ul></li><li><a href="module-UserManagement.html">UserManagement</a><ul class='methods'><li data-type='method'><a href="module-UserManagement.html#.blockUser">blockUser</a></li><li data-type='method'><a href="module-UserManagement.html#.blockedUsers">blockedUsers</a></li><li data-type='method'><a href="module-UserManagement.html#.deletePicture">deletePicture</a></li><li data-type='method'><a href="module-UserManagement.html#.getUserData">getUserData</a></li><li data-type='method'><a href="module-UserManagement.html#.getUserSignature">getUserSignature</a></li><li data-type='method'><a href="module-UserManagement.html#.isUsernameAvailable">isUsernameAvailable</a></li><li data-type='method'><a href="module-UserManagement.html#.setUserSignature">setUserSignature</a></li><li data-type='method'><a href="module-UserManagement.html#.toggleSignaturePrivate">toggleSignaturePrivate</a></li><li data-type='method'><a href="module-UserManagement.html#.unblockUser">unblockUser</a></li><li data-type='method'><a href="module-UserManagement.html#.updateDisplayName">updateDisplayName</a></li><li data-type='method'><a href="module-UserManagement.html#.uploadPicture">uploadPicture</a></li><li data-type='method'><a href="module-UserManagement.html#.uploadPictureFromS3">uploadPictureFromS3</a></li></ul></li><li><a href="module-UserMemberships.html">UserMemberships</a><ul class='methods'><li data-type='method'><a href="module-UserMemberships.html#~fetchMemberships">fetchMemberships</a></li><li data-type='method'><a href="module-UserMemberships.html#~fetchRechargeTokens">fetchRechargeTokens</a></li><li data-type='method'><a href="module-UserMemberships.html#~restorePurchases">restorePurchases</a></li><li data-type='method'><a href="module-UserMemberships.html#~upgradeSubscription">upgradeSubscription</a></li></ul></li><li><a href="module-UserNotifications.html">UserNotifications</a><ul class='methods'><li data-type='method'><a href="module-UserNotifications.html#.deleteNotification">deleteNotification</a></li><li data-type='method'><a href="module-UserNotifications.html#.fetchLiveEventPollingState">fetchLiveEventPollingState</a></li><li data-type='method'><a href="module-UserNotifications.html#.fetchNotificationSettings">fetchNotificationSettings</a></li><li data-type='method'><a href="module-UserNotifications.html#.fetchNotifications">fetchNotifications</a></li><li data-type='method'><a href="module-UserNotifications.html#.fetchUnreadCount">fetchUnreadCount</a></li><li data-type='method'><a href="module-UserNotifications.html#.markAllNotificationsAsRead">markAllNotificationsAsRead</a></li><li data-type='method'><a href="module-UserNotifications.html#.markNotificationAsRead">markNotificationAsRead</a></li><li data-type='method'><a href="module-UserNotifications.html#.markNotificationAsUnread">markNotificationAsUnread</a></li><li data-type='method'><a href="module-UserNotifications.html#.pauseLiveEventPolling">pauseLiveEventPolling</a></li><li data-type='method'><a href="module-UserNotifications.html#.restoreNotification">restoreNotification</a></li><li data-type='method'><a href="module-UserNotifications.html#.startLiveEventPolling">startLiveEventPolling</a></li><li data-type='method'><a href="module-UserNotifications.html#.updateNotificationSetting">updateNotificationSetting</a></li></ul></li><li><a href="module-UserProfile.html">UserProfile</a><ul class='methods'><li data-type='method'><a href="module-UserProfile.html#.deleteProfilePicture">deleteProfilePicture</a></li><li data-type='method'><a href="module-UserProfile.html#.otherStats">otherStats</a></li></ul></li></ul><h3>Namespaces</h3><ul><li><a href="ContentOrganization.html">ContentOrganization</a></li><li><a href="Forums.html">Forums</a></li><li><a href="Gamification.html">Gamification</a></li><li><a href="UserManagementSystem.html">UserManagementSystem</a></li></ul><h3>Interfaces</h3><ul><li><a href="TestUser.html">TestUser</a></li></ul><h3>Global</h3><ul><li><a href="global.html#createTestUser">createTestUser</a></li></ul>
32
+ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-Accounts.html">Accounts</a><ul class='methods'><li data-type='method'><a href="module-Accounts.html#~confirmEmailChange">confirmEmailChange</a></li><li data-type='method'><a href="module-Accounts.html#~deleteAccount">deleteAccount</a></li><li data-type='method'><a href="module-Accounts.html#~numberOfActiveUsers">numberOfActiveUsers</a></li><li data-type='method'><a href="module-Accounts.html#~requestEmailChange">requestEmailChange</a></li><li data-type='method'><a href="module-Accounts.html#~resetPassword">resetPassword</a></li><li data-type='method'><a href="module-Accounts.html#~sendAccountSetupEmail">sendAccountSetupEmail</a></li><li data-type='method'><a href="module-Accounts.html#~sendPasswordResetEmail">sendPasswordResetEmail</a></li><li data-type='method'><a href="module-Accounts.html#~setupAccount">setupAccount</a></li><li data-type='method'><a href="module-Accounts.html#~status">status</a></li><li data-type='method'><a href="module-Accounts.html#~toggleStudentView">toggleStudentView</a></li></ul></li><li><a href="module-Artist.html">Artist</a><ul class='methods'><li data-type='method'><a href="module-Artist.html#~fetchArtistBySlug">fetchArtistBySlug</a></li><li data-type='method'><a href="module-Artist.html#~fetchArtistLessons">fetchArtistLessons</a></li><li data-type='method'><a href="module-Artist.html#~fetchArtists">fetchArtists</a></li></ul></li><li><a href="module-Awards.html">Awards</a><ul class='methods'><li data-type='method'><a href="module-Awards.html#~fetchAwardsForUser">fetchAwardsForUser</a></li><li data-type='method'><a href="module-Awards.html#~fetchCertificate">fetchCertificate</a></li><li data-type='method'><a href="module-Awards.html#~getAwardDataForGuidedContent">getAwardDataForGuidedContent</a></li></ul></li><li><a href="module-Config.html">Config</a><ul class='methods'><li data-type='method'><a href="module-Config.html#.initializeService">initializeService</a></li></ul></li><li><a href="module-Content-Services-V2.html">Content-Services-V2</a><ul class='methods'><li data-type='method'><a href="module-Content-Services-V2.html#.getContentRows">getContentRows</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getLegacyMethods">getLegacyMethods</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getNewAndUpcoming">getNewAndUpcoming</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getOwnedContent">getOwnedContent</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getRecent">getRecent</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getRecommendedForYou">getRecommendedForYou</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getScheduleContentRows">getScheduleContentRows</a></li><li data-type='method'><a href="module-Content-Services-V2.html#.getTabResults">getTabResults</a></li></ul></li><li><a href="module-Forums.html">Forums</a><ul class='methods'><li data-type='method'><a href="module-Forums.html#~createForumCategory">createForumCategory</a></li><li data-type='method'><a href="module-Forums.html#~createPost">createPost</a></li><li data-type='method'><a href="module-Forums.html#~createThread">createThread</a></li><li data-type='method'><a href="module-Forums.html#~deleteForumCategory">deleteForumCategory</a></li><li data-type='method'><a href="module-Forums.html#~deletePost">deletePost</a></li><li data-type='method'><a href="module-Forums.html#~deleteThread">deleteThread</a></li><li data-type='method'><a href="module-Forums.html#~fetchCommunityGuidelines">fetchCommunityGuidelines</a></li><li data-type='method'><a href="module-Forums.html#~fetchFollowedThreads">fetchFollowedThreads</a></li><li data-type='method'><a href="module-Forums.html#~fetchForumCategories">fetchForumCategories</a></li><li data-type='method'><a href="module-Forums.html#~fetchLatestThreads">fetchLatestThreads</a></li><li data-type='method'><a href="module-Forums.html#~fetchPosts">fetchPosts</a></li><li data-type='method'><a href="module-Forums.html#~fetchThreads">fetchThreads</a></li><li data-type='method'><a href="module-Forums.html#~followThread">followThread</a></li><li data-type='method'><a href="module-Forums.html#~jumpToPost">jumpToPost</a></li><li data-type='method'><a href="module-Forums.html#~likePost">likePost</a></li><li data-type='method'><a href="module-Forums.html#~lockThread">lockThread</a></li><li data-type='method'><a href="module-Forums.html#~markThreadAsRead">markThreadAsRead</a></li><li data-type='method'><a href="module-Forums.html#~pinThread">pinThread</a></li><li data-type='method'><a href="module-Forums.html#~search">search</a></li><li data-type='method'><a href="module-Forums.html#~unfollowThread">unfollowThread</a></li><li data-type='method'><a href="module-Forums.html#~unlikePost">unlikePost</a></li><li data-type='method'><a href="module-Forums.html#~unlockThread">unlockThread</a></li><li data-type='method'><a href="module-Forums.html#~unpinThread">unpinThread</a></li><li data-type='method'><a href="module-Forums.html#~updateForumCategory">updateForumCategory</a></li><li data-type='method'><a href="module-Forums.html#~updatePost">updatePost</a></li><li data-type='method'><a href="module-Forums.html#~updateThread">updateThread</a></li></ul></li><li></li><li></li><li><a href="module-Genre.html">Genre</a><ul class='methods'><li data-type='method'><a href="module-Genre.html#~fetchGenreBySlug">fetchGenreBySlug</a></li><li data-type='method'><a href="module-Genre.html#~fetchGenreLessons">fetchGenreLessons</a></li><li data-type='method'><a href="module-Genre.html#~fetchGenres">fetchGenres</a></li></ul></li><li><a href="module-GuidedCourses.html">GuidedCourses</a></li><li><a href="module-Instructor.html">Instructor</a><ul class='methods'><li data-type='method'><a href="module-Instructor.html#~fetchInstructorBySlug">fetchInstructorBySlug</a></li><li data-type='method'><a href="module-Instructor.html#~fetchInstructorLessons">fetchInstructorLessons</a></li><li data-type='method'><a href="module-Instructor.html#~fetchInstructors">fetchInstructors</a></li></ul></li><li><a href="module-Interests.html">Interests</a><ul class='methods'><li data-type='method'><a href="module-Interests.html#.fetchInterests">fetchInterests</a></li><li data-type='method'><a href="module-Interests.html#.fetchUninterests">fetchUninterests</a></li><li data-type='method'><a href="module-Interests.html#.markContentAsInterested">markContentAsInterested</a></li><li data-type='method'><a href="module-Interests.html#.markContentAsNotInterested">markContentAsNotInterested</a></li><li data-type='method'><a href="module-Interests.html#.removeContentAsInterested">removeContentAsInterested</a></li><li data-type='method'><a href="module-Interests.html#.removeContentAsNotInterested">removeContentAsNotInterested</a></li></ul></li><li><a href="module-LearningPaths.html">LearningPaths</a><ul class='methods'><li data-type='method'><a href="module-LearningPaths.html#~completeLearningPathIntroVideo">completeLearningPathIntroVideo</a></li><li data-type='method'><a href="module-LearningPaths.html#~completeMethodIntroVideo">completeMethodIntroVideo</a></li><li data-type='method'><a href="module-LearningPaths.html#~fetchLearningPathLessons">fetchLearningPathLessons</a></li><li data-type='method'><a href="module-LearningPaths.html#~fetchLearningPathProgressCheckLessons">fetchLearningPathProgressCheckLessons</a></li><li data-type='method'><a href="module-LearningPaths.html#~getActivePath">getActivePath</a></li><li data-type='method'><a href="module-LearningPaths.html#~getDailySession">getDailySession</a></li><li data-type='method'><a href="module-LearningPaths.html#~getEnrichedLearningPath">getEnrichedLearningPath</a></li><li data-type='method'><a href="module-LearningPaths.html#~getLearningPathLessonsByIds">getLearningPathLessonsByIds</a></li><li data-type='method'><a href="module-LearningPaths.html#~mapContentToParent">mapContentToParent</a></li><li data-type='method'><a href="module-LearningPaths.html#~resetAllLearningPaths">resetAllLearningPaths</a></li><li data-type='method'><a href="module-LearningPaths.html#~startLearningPath">startLearningPath</a></li><li data-type='method'><a href="module-LearningPaths.html#~updateDailySession">updateDailySession</a></li></ul></li><li><a href="module-Onboarding.html">Onboarding</a><ul class='methods'><li data-type='method'><a href="module-Onboarding.html#~getOnboardingRecommendedContent">getOnboardingRecommendedContent</a></li><li data-type='method'><a href="module-Onboarding.html#~startOnboarding">startOnboarding</a></li><li data-type='method'><a href="module-Onboarding.html#~updateOnboarding">updateOnboarding</a></li><li data-type='method'><a href="module-Onboarding.html#~userOnboardingForBrand">userOnboardingForBrand</a></li></ul></li><li><a href="module-Payments.html">Payments</a><ul class='methods'><li data-type='method'><a href="module-Payments.html#~fetchCustomerPayments">fetchCustomerPayments</a></li></ul></li><li><a href="module-Permissions.html">Permissions</a><ul class='methods'><li data-type='method'><a href="module-Permissions.html#.fetchUserPermissions">fetchUserPermissions</a></li><li data-type='method'><a href="module-Permissions.html#.reset">reset</a></li></ul></li><li><a href="module-Playlists.html">Playlists</a><ul class='methods'><li data-type='method'><a href="module-Playlists.html#.addItemToPlaylist">addItemToPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.createPlaylist">createPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.deletePlaylist">deletePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.duplicatePlaylist">duplicatePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.fetchPlaylist">fetchPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.fetchPlaylistItems">fetchPlaylistItems</a></li><li data-type='method'><a href="module-Playlists.html#.fetchUserPlaylists">fetchUserPlaylists</a></li><li data-type='method'><a href="module-Playlists.html#.togglePlaylistPrivate">togglePlaylistPrivate</a></li><li data-type='method'><a href="module-Playlists.html#.undeletePlaylist">undeletePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#.updatePlaylist">updatePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~deleteItemsFromPlaylist">deleteItemsFromPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~likePlaylist">likePlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~reportPlaylist">reportPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~restoreItemFromPlaylist">restoreItemFromPlaylist</a></li><li data-type='method'><a href="module-Playlists.html#~unlikePlaylist">unlikePlaylist</a></li></ul></li><li><a href="module-ProgressRow.html">ProgressRow</a></li><li><a href="module-Railcontent-Services.html">Railcontent-Services</a><ul class='methods'><li data-type='method'><a href="module-Railcontent-Services.html#.assignModeratorToComment">assignModeratorToComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.closeComment">closeComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.createComment">createComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.deleteComment">deleteComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.editComment">editComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchAllCompletedStates">fetchAllCompletedStates</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCarouselCardData">fetchCarouselCardData</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchComment">fetchComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCommentRelies">fetchCommentRelies</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchComments">fetchComments</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCompletedContent">fetchCompletedContent</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCompletedState">fetchCompletedState</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchContentInProgress">fetchContentInProgress</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchContentPageUserData">fetchContentPageUserData</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchNextContentDataForParent">fetchNextContentDataForParent</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchRecentUserActivities">fetchRecentUserActivities</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchSongsInProgress">fetchSongsInProgress</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchTopComment">fetchTopComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchUserAward">fetchUserAward</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchUserBadges">fetchUserBadges</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchUserPracticeNotes">fetchUserPracticeNotes</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.likeComment">likeComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.openComment">openComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.replyToComment">replyToComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.reportComment">reportComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.restoreComment">restoreComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.setStudentViewForUser">setStudentViewForUser</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.unassignModeratorToComment">unassignModeratorToComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.unlikeComment">unlikeComment</a></li><li data-type='method'><a href="module-Railcontent-Services.html#~fetchLastInteractedChild">fetchLastInteractedChild</a></li></ul></li><li><a href="module-Sanity-Services.html">Sanity-Services</a><ul class='methods'><li data-type='method'><a href="module-Sanity-Services.html#.fetchAll">fetchAll</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchAllFilterOptions">fetchAllFilterOptions</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchAllPacks">fetchAllPacks</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchByRailContentId">fetchByRailContentId</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchByRailContentIds">fetchByRailContentIds</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchByReference">fetchByReference</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchComingSoon">fetchComingSoon</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchCommentModContentData">fetchCommentModContentData</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchFoundation">fetchFoundation</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchLeaving">fetchLeaving</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchLessonContent">fetchLessonContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchLessonsFeaturingThisContent">fetchLessonsFeaturingThisContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMetadata">fetchMetadata</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethod">fetchMethod</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodChildren">fetchMethodChildren</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodChildrenIds">fetchMethodChildrenIds</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodPreviousNextLesson">fetchMethodPreviousNextLesson</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodV2IntroVideo">fetchMethodV2IntroVideo</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodV2Structure">fetchMethodV2Structure</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchMethodV2StructureFromId">fetchMethodV2StructureFromId</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchNewReleases">fetchNewReleases</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchNextPreviousLesson">fetchNextPreviousLesson</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchOtherSongVersions">fetchOtherSongVersions</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchOwnedContent">fetchOwnedContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchPackAll">fetchPackAll</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchPackData">fetchPackData</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchRelatedLessons">fetchRelatedLessons</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchRelatedRecommendedContent">fetchRelatedRecommendedContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchRelatedSongs">fetchRelatedSongs</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchReturning">fetchReturning</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchSanity">fetchSanity</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchScheduledReleases">fetchScheduledReleases</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchShowsData">fetchShowsData</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchSiblingContent">fetchSiblingContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchSongArtistCount">fetchSongArtistCount</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchSongById">fetchSongById</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchTopLevelParentId">fetchTopLevelParentId</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchUpcomingEvents">fetchUpcomingEvents</a></li><li data-type='method'><a href="module-Sanity-Services.html#.jumpToContinueContent">jumpToContinueContent</a></li><li data-type='method'><a href="module-Sanity-Services.html#~fetchRelatedByLicense">fetchRelatedByLicense</a></li><li data-type='method'><a href="module-Sanity-Services.html#~getQueryFromPage">getQueryFromPage</a></li></ul></li><li><a href="module-Sessions.html">Sessions</a><ul class='methods'><li data-type='method'><a href="module-Sessions.html#.login">login</a></li><li data-type='method'><a href="module-Sessions.html#.logout">logout</a></li></ul></li><li><a href="module-UserActivity.html">UserActivity</a><ul class='methods'><li data-type='method'><a href="module-UserActivity.html#.calculateLongestStreaks">calculateLongestStreaks</a></li><li data-type='method'><a href="module-UserActivity.html#.createPracticeNotes">createPracticeNotes</a></li><li data-type='method'><a href="module-UserActivity.html#.deletePracticeSession">deletePracticeSession</a></li><li data-type='method'><a href="module-UserActivity.html#.deleteUserActivity">deleteUserActivity</a></li><li data-type='method'><a href="module-UserActivity.html#.getPracticeNotes">getPracticeNotes</a></li><li data-type='method'><a href="module-UserActivity.html#.getPracticeSessions">getPracticeSessions</a></li><li data-type='method'><a href="module-UserActivity.html#.getProgressRows">getProgressRows</a></li><li data-type='method'><a href="module-UserActivity.html#.getRecentActivity">getRecentActivity</a></li><li data-type='method'><a href="module-UserActivity.html#.getUserMonthlyStats">getUserMonthlyStats</a></li><li data-type='method'><a href="module-UserActivity.html#.getUserWeeklyStats">getUserWeeklyStats</a></li><li data-type='method'><a href="module-UserActivity.html#.pinProgressRow">pinProgressRow</a></li><li data-type='method'><a href="module-UserActivity.html#.recordUserActivity">recordUserActivity</a></li><li data-type='method'><a href="module-UserActivity.html#.recordUserPractice">recordUserPractice</a></li><li data-type='method'><a href="module-UserActivity.html#.removeUserPractice">removeUserPractice</a></li><li data-type='method'><a href="module-UserActivity.html#.restorePracticeSession">restorePracticeSession</a></li><li data-type='method'><a href="module-UserActivity.html#.restoreUserActivity">restoreUserActivity</a></li><li data-type='method'><a href="module-UserActivity.html#.restoreUserPractice">restoreUserPractice</a></li><li data-type='method'><a href="module-UserActivity.html#.unpinProgressRow">unpinProgressRow</a></li><li data-type='method'><a href="module-UserActivity.html#.updatePracticeNotes">updatePracticeNotes</a></li><li data-type='method'><a href="module-UserActivity.html#.updateUserPractice">updateUserPractice</a></li></ul></li><li><a href="module-UserChat.html">UserChat</a><ul class='methods'><li data-type='method'><a href="module-UserChat.html#.fetchChatSettings">fetchChatSettings</a></li></ul></li><li><a href="module-UserManagement.html">UserManagement</a><ul class='methods'><li data-type='method'><a href="module-UserManagement.html#.blockUser">blockUser</a></li><li data-type='method'><a href="module-UserManagement.html#.blockedUsers">blockedUsers</a></li><li data-type='method'><a href="module-UserManagement.html#.deletePicture">deletePicture</a></li><li data-type='method'><a href="module-UserManagement.html#.getUserData">getUserData</a></li><li data-type='method'><a href="module-UserManagement.html#.getUserSignature">getUserSignature</a></li><li data-type='method'><a href="module-UserManagement.html#.isUsernameAvailable">isUsernameAvailable</a></li><li data-type='method'><a href="module-UserManagement.html#.setUserSignature">setUserSignature</a></li><li data-type='method'><a href="module-UserManagement.html#.toggleSignaturePrivate">toggleSignaturePrivate</a></li><li data-type='method'><a href="module-UserManagement.html#.unblockUser">unblockUser</a></li><li data-type='method'><a href="module-UserManagement.html#.updateDisplayName">updateDisplayName</a></li><li data-type='method'><a href="module-UserManagement.html#.uploadPicture">uploadPicture</a></li><li data-type='method'><a href="module-UserManagement.html#.uploadPictureFromS3">uploadPictureFromS3</a></li></ul></li><li><a href="module-UserMemberships.html">UserMemberships</a><ul class='methods'><li data-type='method'><a href="module-UserMemberships.html#~fetchMemberships">fetchMemberships</a></li><li data-type='method'><a href="module-UserMemberships.html#~fetchRechargeTokens">fetchRechargeTokens</a></li><li data-type='method'><a href="module-UserMemberships.html#~restorePurchases">restorePurchases</a></li><li data-type='method'><a href="module-UserMemberships.html#~upgradeSubscription">upgradeSubscription</a></li></ul></li><li><a href="module-UserNotifications.html">UserNotifications</a><ul class='methods'><li data-type='method'><a href="module-UserNotifications.html#.deleteNotification">deleteNotification</a></li><li data-type='method'><a href="module-UserNotifications.html#.fetchLiveEventPollingState">fetchLiveEventPollingState</a></li><li data-type='method'><a href="module-UserNotifications.html#.fetchNotificationSettings">fetchNotificationSettings</a></li><li data-type='method'><a href="module-UserNotifications.html#.fetchNotifications">fetchNotifications</a></li><li data-type='method'><a href="module-UserNotifications.html#.fetchUnreadCount">fetchUnreadCount</a></li><li data-type='method'><a href="module-UserNotifications.html#.markAllNotificationsAsRead">markAllNotificationsAsRead</a></li><li data-type='method'><a href="module-UserNotifications.html#.markNotificationAsRead">markNotificationAsRead</a></li><li data-type='method'><a href="module-UserNotifications.html#.markNotificationAsUnread">markNotificationAsUnread</a></li><li data-type='method'><a href="module-UserNotifications.html#.pauseLiveEventPolling">pauseLiveEventPolling</a></li><li data-type='method'><a href="module-UserNotifications.html#.restoreNotification">restoreNotification</a></li><li data-type='method'><a href="module-UserNotifications.html#.startLiveEventPolling">startLiveEventPolling</a></li><li data-type='method'><a href="module-UserNotifications.html#.updateNotificationSetting">updateNotificationSetting</a></li></ul></li><li><a href="module-UserProfile.html">UserProfile</a><ul class='methods'><li data-type='method'><a href="module-UserProfile.html#.deleteProfilePicture">deleteProfilePicture</a></li><li data-type='method'><a href="module-UserProfile.html#.otherStats">otherStats</a></li></ul></li></ul><h3>Namespaces</h3><ul><li><a href="ContentOrganization.html">ContentOrganization</a></li><li><a href="Forums.html">Forums</a></li><li><a href="Gamification.html">Gamification</a></li><li><a href="UserManagementSystem.html">UserManagementSystem</a></li></ul><h3>Interfaces</h3><ul><li><a href="TestUser.html">TestUser</a></li></ul><h3>Global</h3><ul><li><a href="global.html#createTestUser">createTestUser</a></li></ul>
33
33
 
34
34
  </nav>
35
35
 
@@ -179,7 +179,7 @@
179
179
 
180
180
  <dt class="tag-source">Source:</dt>
181
181
  <dd class="tag-source"><ul class="dummy"><li>
182
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line528">line 528</a>
182
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line426">line 426</a>
183
183
  </li></ul></dd>
184
184
 
185
185
 
@@ -330,7 +330,7 @@
330
330
 
331
331
  <dt class="tag-source">Source:</dt>
332
332
  <dd class="tag-source"><ul class="dummy"><li>
333
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line564">line 564</a>
333
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line462">line 462</a>
334
334
  </li></ul></dd>
335
335
 
336
336
 
@@ -481,7 +481,7 @@
481
481
 
482
482
  <dt class="tag-source">Source:</dt>
483
483
  <dd class="tag-source"><ul class="dummy"><li>
484
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line515">line 515</a>
484
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line413">line 413</a>
485
485
  </li></ul></dd>
486
486
 
487
487
 
@@ -656,7 +656,7 @@
656
656
 
657
657
  <dt class="tag-source">Source:</dt>
658
658
  <dd class="tag-source"><ul class="dummy"><li>
659
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line485">line 485</a>
659
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line383">line 383</a>
660
660
  </li></ul></dd>
661
661
 
662
662
 
@@ -807,7 +807,7 @@
807
807
 
808
808
  <dt class="tag-source">Source:</dt>
809
809
  <dd class="tag-source"><ul class="dummy"><li>
810
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line589">line 589</a>
810
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line487">line 487</a>
811
811
  </li></ul></dd>
812
812
 
813
813
 
@@ -985,7 +985,7 @@
985
985
 
986
986
  <dt class="tag-source">Source:</dt>
987
987
  <dd class="tag-source"><ul class="dummy"><li>
988
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line67">line 67</a>
988
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line60">line 60</a>
989
989
  </li></ul></dd>
990
990
 
991
991
 
@@ -1150,7 +1150,7 @@
1150
1150
 
1151
1151
  <dt class="tag-source">Source:</dt>
1152
1152
  <dd class="tag-source"><ul class="dummy"><li>
1153
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line363">line 363</a>
1153
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line313">line 313</a>
1154
1154
  </li></ul></dd>
1155
1155
 
1156
1156
 
@@ -1254,7 +1254,7 @@
1254
1254
 
1255
1255
  <dt class="tag-source">Source:</dt>
1256
1256
  <dd class="tag-source"><ul class="dummy"><li>
1257
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line621">line 621</a>
1257
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line519">line 519</a>
1258
1258
  </li></ul></dd>
1259
1259
 
1260
1260
 
@@ -1419,7 +1419,7 @@
1419
1419
 
1420
1420
  <dt class="tag-source">Source:</dt>
1421
1421
  <dd class="tag-source"><ul class="dummy"><li>
1422
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line476">line 476</a>
1422
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line374">line 374</a>
1423
1423
  </li></ul></dd>
1424
1424
 
1425
1425
 
@@ -1618,7 +1618,7 @@
1618
1618
 
1619
1619
  <dt class="tag-source">Source:</dt>
1620
1620
  <dd class="tag-source"><ul class="dummy"><li>
1621
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line464">line 464</a>
1621
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line362">line 362</a>
1622
1622
  </li></ul></dd>
1623
1623
 
1624
1624
 
@@ -1820,7 +1820,7 @@
1820
1820
 
1821
1821
  <dt class="tag-source">Source:</dt>
1822
1822
  <dd class="tag-source"><ul class="dummy"><li>
1823
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line180">line 180</a>
1823
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line173">line 173</a>
1824
1824
  </li></ul></dd>
1825
1825
 
1826
1826
 
@@ -2117,7 +2117,7 @@
2117
2117
 
2118
2118
  <dt class="tag-source">Source:</dt>
2119
2119
  <dd class="tag-source"><ul class="dummy"><li>
2120
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line33">line 33</a>
2120
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line26">line 26</a>
2121
2121
  </li></ul></dd>
2122
2122
 
2123
2123
 
@@ -2282,7 +2282,7 @@
2282
2282
 
2283
2283
  <dt class="tag-source">Source:</dt>
2284
2284
  <dd class="tag-source"><ul class="dummy"><li>
2285
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line137">line 137</a>
2285
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line130">line 130</a>
2286
2286
  </li></ul></dd>
2287
2287
 
2288
2288
 
@@ -2579,7 +2579,7 @@
2579
2579
 
2580
2580
  <dt class="tag-source">Source:</dt>
2581
2581
  <dd class="tag-source"><ul class="dummy"><li>
2582
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line220">line 220</a>
2582
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line213">line 213</a>
2583
2583
  </li></ul></dd>
2584
2584
 
2585
2585
 
@@ -2744,7 +2744,7 @@
2744
2744
 
2745
2745
  <dt class="tag-source">Source:</dt>
2746
2746
  <dd class="tag-source"><ul class="dummy"><li>
2747
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line249">line 249</a>
2747
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line242">line 242</a>
2748
2748
  </li></ul></dd>
2749
2749
 
2750
2750
 
@@ -2902,7 +2902,7 @@
2902
2902
 
2903
2903
  <dt class="tag-source">Source:</dt>
2904
2904
  <dd class="tag-source"><ul class="dummy"><li>
2905
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line747">line 747</a>
2905
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line624">line 624</a>
2906
2906
  </li></ul></dd>
2907
2907
 
2908
2908
 
@@ -3240,7 +3240,7 @@
3240
3240
 
3241
3241
  <dt class="tag-source">Source:</dt>
3242
3242
  <dd class="tag-source"><ul class="dummy"><li>
3243
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line100">line 100</a>
3243
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line93">line 93</a>
3244
3244
  </li></ul></dd>
3245
3245
 
3246
3246
 
@@ -3405,7 +3405,7 @@
3405
3405
 
3406
3406
  <dt class="tag-source">Source:</dt>
3407
3407
  <dd class="tag-source"><ul class="dummy"><li>
3408
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line452">line 452</a>
3408
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line350">line 350</a>
3409
3409
  </li></ul></dd>
3410
3410
 
3411
3411
 
@@ -3563,7 +3563,7 @@
3563
3563
 
3564
3564
  <dt class="tag-source">Source:</dt>
3565
3565
  <dd class="tag-source"><ul class="dummy"><li>
3566
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line353">line 353</a>
3566
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line303">line 303</a>
3567
3567
  </li></ul></dd>
3568
3568
 
3569
3569
 
@@ -3715,7 +3715,7 @@
3715
3715
 
3716
3716
  <dt class="tag-source">Source:</dt>
3717
3717
  <dd class="tag-source"><ul class="dummy"><li>
3718
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line375">line 375</a>
3718
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line325">line 325</a>
3719
3719
  </li></ul></dd>
3720
3720
 
3721
3721
 
@@ -3872,7 +3872,7 @@
3872
3872
 
3873
3873
  <dt class="tag-source">Source:</dt>
3874
3874
  <dd class="tag-source"><ul class="dummy"><li>
3875
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line688">line 688</a>
3875
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line565">line 565</a>
3876
3876
  </li></ul></dd>
3877
3877
 
3878
3878
 
@@ -4034,7 +4034,7 @@
4034
4034
 
4035
4035
  <dt class="tag-source">Source:</dt>
4036
4036
  <dd class="tag-source"><ul class="dummy"><li>
4037
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line546">line 546</a>
4037
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line444">line 444</a>
4038
4038
  </li></ul></dd>
4039
4039
 
4040
4040
 
@@ -4185,7 +4185,7 @@
4185
4185
 
4186
4186
  <dt class="tag-source">Source:</dt>
4187
4187
  <dd class="tag-source"><ul class="dummy"><li>
4188
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line576">line 576</a>
4188
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line474">line 474</a>
4189
4189
  </li></ul></dd>
4190
4190
 
4191
4191
 
@@ -4323,865 +4323,6 @@
4323
4323
 
4324
4324
 
4325
4325
 
4326
- <h4 class="name" id=".postContentComplete"><span class="type-signature type-signature-static">(static) </span>postContentComplete<span class="signature">(contentId, collection)</span><span class="type-signature"> &rarr; {Promise.&lt;(any|string|null)>}</span></h4>
4327
-
4328
-
4329
-
4330
-
4331
-
4332
-
4333
- <dl class="details">
4334
-
4335
- <dt class="tag-description">Description:</dt>
4336
- <dd class="tag-description"><ul class="dummy"><li>complete a content's progress for a given user</li></ul></dd>
4337
-
4338
-
4339
-
4340
- <dt class="tag-source">Source:</dt>
4341
- <dd class="tag-source"><ul class="dummy"><li>
4342
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line389">line 389</a>
4343
- </li></ul></dd>
4344
-
4345
-
4346
-
4347
-
4348
-
4349
-
4350
-
4351
-
4352
-
4353
-
4354
-
4355
-
4356
-
4357
-
4358
-
4359
-
4360
-
4361
-
4362
-
4363
-
4364
-
4365
-
4366
-
4367
-
4368
-
4369
-
4370
-
4371
-
4372
-
4373
-
4374
-
4375
- </dl>
4376
-
4377
-
4378
-
4379
-
4380
-
4381
-
4382
-
4383
-
4384
-
4385
-
4386
-
4387
-
4388
-
4389
- <h5 class="h5-parameters">Parameters:</h5>
4390
-
4391
-
4392
- <table class="params">
4393
- <thead>
4394
- <tr>
4395
-
4396
- <th>Name</th>
4397
-
4398
-
4399
- <th>Type</th>
4400
-
4401
-
4402
-
4403
-
4404
-
4405
- <th class="last">Description</th>
4406
- </tr>
4407
- </thead>
4408
-
4409
- <tbody>
4410
-
4411
-
4412
- <tr>
4413
-
4414
- <td class="name"><code>contentId</code></td>
4415
-
4416
-
4417
- <td class="type">
4418
-
4419
- </td>
4420
-
4421
-
4422
-
4423
-
4424
-
4425
- <td class="description last"></td>
4426
- </tr>
4427
-
4428
-
4429
-
4430
- <tr>
4431
-
4432
- <td class="name"><code>collection</code></td>
4433
-
4434
-
4435
- <td class="type">
4436
-
4437
-
4438
- <span class="param-type">object</span>
4439
- |
4440
-
4441
- <span class="param-type">null</span>
4442
-
4443
-
4444
-
4445
-
4446
- </td>
4447
-
4448
-
4449
-
4450
-
4451
-
4452
- <td class="description last">the collection context of the progress. null is normal content progress
4453
- <h6>Properties</h6>
4454
-
4455
-
4456
- <table class="params">
4457
- <thead>
4458
- <tr>
4459
-
4460
- <th>Name</th>
4461
-
4462
-
4463
- <th>Type</th>
4464
-
4465
-
4466
-
4467
-
4468
-
4469
- <th class="last">Description</th>
4470
- </tr>
4471
- </thead>
4472
-
4473
- <tbody>
4474
-
4475
-
4476
- <tr>
4477
-
4478
- <td class="name"><code>type</code></td>
4479
-
4480
-
4481
- <td class="type">
4482
-
4483
- </td>
4484
-
4485
-
4486
-
4487
-
4488
-
4489
- <td class="description last">the type of collection. options: ["learning-path"]</td>
4490
- </tr>
4491
-
4492
-
4493
-
4494
- <tr>
4495
-
4496
- <td class="name"><code>id</code></td>
4497
-
4498
-
4499
- <td class="type">
4500
-
4501
- </td>
4502
-
4503
-
4504
-
4505
-
4506
-
4507
- <td class="description last">the content_id of collection.</td>
4508
- </tr>
4509
-
4510
-
4511
- </tbody>
4512
- </table>
4513
-
4514
- </td>
4515
- </tr>
4516
-
4517
-
4518
- </tbody>
4519
- </table>
4520
-
4521
-
4522
-
4523
-
4524
-
4525
-
4526
-
4527
-
4528
-
4529
-
4530
-
4531
-
4532
-
4533
-
4534
-
4535
-
4536
- <h5 class="h5-returns">Returns:</h5>
4537
-
4538
-
4539
-
4540
-
4541
- <dl class="param-type">
4542
- <dt>
4543
- Type
4544
- </dt>
4545
- <dd>
4546
-
4547
- <span class="param-type">Promise.&lt;(any|string|null)></span>
4548
-
4549
-
4550
-
4551
- </dd>
4552
- </dl>
4553
-
4554
-
4555
-
4556
-
4557
-
4558
-
4559
-
4560
-
4561
-
4562
-
4563
- <h4 class="name" id=".postContentReset"><span class="type-signature type-signature-static">(static) </span>postContentReset<span class="signature">(contentId, collection)</span><span class="type-signature"> &rarr; {Promise.&lt;(any|string|null)>}</span></h4>
4564
-
4565
-
4566
-
4567
-
4568
-
4569
-
4570
- <dl class="details">
4571
-
4572
- <dt class="tag-description">Description:</dt>
4573
- <dd class="tag-description"><ul class="dummy"><li>resets the user's progress on a content</li></ul></dd>
4574
-
4575
-
4576
-
4577
- <dt class="tag-source">Source:</dt>
4578
- <dd class="tag-source"><ul class="dummy"><li>
4579
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line417">line 417</a>
4580
- </li></ul></dd>
4581
-
4582
-
4583
-
4584
-
4585
-
4586
-
4587
-
4588
-
4589
-
4590
-
4591
-
4592
-
4593
-
4594
-
4595
-
4596
-
4597
-
4598
-
4599
-
4600
-
4601
-
4602
-
4603
-
4604
-
4605
-
4606
-
4607
-
4608
-
4609
-
4610
-
4611
-
4612
- </dl>
4613
-
4614
-
4615
-
4616
-
4617
-
4618
-
4619
-
4620
-
4621
-
4622
-
4623
-
4624
-
4625
-
4626
- <h5 class="h5-parameters">Parameters:</h5>
4627
-
4628
-
4629
- <table class="params">
4630
- <thead>
4631
- <tr>
4632
-
4633
- <th>Name</th>
4634
-
4635
-
4636
- <th>Type</th>
4637
-
4638
-
4639
-
4640
-
4641
-
4642
- <th class="last">Description</th>
4643
- </tr>
4644
- </thead>
4645
-
4646
- <tbody>
4647
-
4648
-
4649
- <tr>
4650
-
4651
- <td class="name"><code>contentId</code></td>
4652
-
4653
-
4654
- <td class="type">
4655
-
4656
- </td>
4657
-
4658
-
4659
-
4660
-
4661
-
4662
- <td class="description last"></td>
4663
- </tr>
4664
-
4665
-
4666
-
4667
- <tr>
4668
-
4669
- <td class="name"><code>collection</code></td>
4670
-
4671
-
4672
- <td class="type">
4673
-
4674
-
4675
- <span class="param-type">object</span>
4676
- |
4677
-
4678
- <span class="param-type">null</span>
4679
-
4680
-
4681
-
4682
-
4683
- </td>
4684
-
4685
-
4686
-
4687
-
4688
-
4689
- <td class="description last">the collection context of the progress. null is normal content progress
4690
- <h6>Properties</h6>
4691
-
4692
-
4693
- <table class="params">
4694
- <thead>
4695
- <tr>
4696
-
4697
- <th>Name</th>
4698
-
4699
-
4700
- <th>Type</th>
4701
-
4702
-
4703
-
4704
-
4705
-
4706
- <th class="last">Description</th>
4707
- </tr>
4708
- </thead>
4709
-
4710
- <tbody>
4711
-
4712
-
4713
- <tr>
4714
-
4715
- <td class="name"><code>type</code></td>
4716
-
4717
-
4718
- <td class="type">
4719
-
4720
- </td>
4721
-
4722
-
4723
-
4724
-
4725
-
4726
- <td class="description last">the type of collection. options: ["learning-path"]</td>
4727
- </tr>
4728
-
4729
-
4730
-
4731
- <tr>
4732
-
4733
- <td class="name"><code>id</code></td>
4734
-
4735
-
4736
- <td class="type">
4737
-
4738
- </td>
4739
-
4740
-
4741
-
4742
-
4743
-
4744
- <td class="description last">the content_id of collection.</td>
4745
- </tr>
4746
-
4747
-
4748
- </tbody>
4749
- </table>
4750
-
4751
- </td>
4752
- </tr>
4753
-
4754
-
4755
- </tbody>
4756
- </table>
4757
-
4758
-
4759
-
4760
-
4761
-
4762
-
4763
-
4764
-
4765
-
4766
-
4767
-
4768
-
4769
-
4770
-
4771
-
4772
-
4773
- <h5 class="h5-returns">Returns:</h5>
4774
-
4775
-
4776
-
4777
-
4778
- <dl class="param-type">
4779
- <dt>
4780
- Type
4781
- </dt>
4782
- <dd>
4783
-
4784
- <span class="param-type">Promise.&lt;(any|string|null)></span>
4785
-
4786
-
4787
-
4788
- </dd>
4789
- </dl>
4790
-
4791
-
4792
-
4793
-
4794
-
4795
-
4796
-
4797
-
4798
-
4799
-
4800
- <h4 class="name" id=".postContentRestore"><span class="type-signature type-signature-static">(static) </span>postContentRestore<span class="signature">(contentId)</span><span class="type-signature"> &rarr; {Promise.&lt;(any|string|null)>}</span></h4>
4801
-
4802
-
4803
-
4804
-
4805
-
4806
-
4807
- <dl class="details">
4808
-
4809
- <dt class="tag-description">Description:</dt>
4810
- <dd class="tag-description"><ul class="dummy"><li>restores the user's progress on a content</li></ul></dd>
4811
-
4812
-
4813
-
4814
- <dt class="tag-source">Source:</dt>
4815
- <dd class="tag-source"><ul class="dummy"><li>
4816
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line428">line 428</a>
4817
- </li></ul></dd>
4818
-
4819
-
4820
-
4821
-
4822
-
4823
-
4824
-
4825
-
4826
-
4827
-
4828
-
4829
-
4830
-
4831
-
4832
-
4833
-
4834
-
4835
-
4836
-
4837
-
4838
-
4839
-
4840
-
4841
-
4842
-
4843
-
4844
-
4845
-
4846
-
4847
-
4848
-
4849
- </dl>
4850
-
4851
-
4852
-
4853
-
4854
-
4855
-
4856
-
4857
-
4858
-
4859
-
4860
-
4861
-
4862
-
4863
- <h5 class="h5-parameters">Parameters:</h5>
4864
-
4865
-
4866
- <table class="params">
4867
- <thead>
4868
- <tr>
4869
-
4870
- <th>Name</th>
4871
-
4872
-
4873
- <th>Type</th>
4874
-
4875
-
4876
-
4877
-
4878
-
4879
- <th class="last">Description</th>
4880
- </tr>
4881
- </thead>
4882
-
4883
- <tbody>
4884
-
4885
-
4886
- <tr>
4887
-
4888
- <td class="name"><code>contentId</code></td>
4889
-
4890
-
4891
- <td class="type">
4892
-
4893
- </td>
4894
-
4895
-
4896
-
4897
-
4898
-
4899
- <td class="description last"></td>
4900
- </tr>
4901
-
4902
-
4903
- </tbody>
4904
- </table>
4905
-
4906
-
4907
-
4908
-
4909
-
4910
-
4911
-
4912
-
4913
-
4914
-
4915
-
4916
-
4917
-
4918
-
4919
-
4920
-
4921
- <h5 class="h5-returns">Returns:</h5>
4922
-
4923
-
4924
-
4925
-
4926
- <dl class="param-type">
4927
- <dt>
4928
- Type
4929
- </dt>
4930
- <dd>
4931
-
4932
- <span class="param-type">Promise.&lt;(any|string|null)></span>
4933
-
4934
-
4935
-
4936
- </dd>
4937
- </dl>
4938
-
4939
-
4940
-
4941
-
4942
-
4943
-
4944
-
4945
-
4946
-
4947
-
4948
- <h4 class="name" id=".postContentStart"><span class="type-signature type-signature-static">(static) </span>postContentStart<span class="signature">(contentId, collection)</span><span class="type-signature"> &rarr; {Promise.&lt;(any|string|null)>}</span></h4>
4949
-
4950
-
4951
-
4952
-
4953
-
4954
-
4955
- <dl class="details">
4956
-
4957
- <dt class="tag-description">Description:</dt>
4958
- <dd class="tag-description"><ul class="dummy"><li>start the user's progress on a content</li></ul></dd>
4959
-
4960
-
4961
-
4962
- <dt class="tag-source">Source:</dt>
4963
- <dd class="tag-source"><ul class="dummy"><li>
4964
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line403">line 403</a>
4965
- </li></ul></dd>
4966
-
4967
-
4968
-
4969
-
4970
-
4971
-
4972
-
4973
-
4974
-
4975
-
4976
-
4977
-
4978
-
4979
-
4980
-
4981
-
4982
-
4983
-
4984
-
4985
-
4986
-
4987
-
4988
-
4989
-
4990
-
4991
-
4992
-
4993
-
4994
-
4995
-
4996
-
4997
- </dl>
4998
-
4999
-
5000
-
5001
-
5002
-
5003
-
5004
-
5005
-
5006
-
5007
-
5008
-
5009
-
5010
-
5011
- <h5 class="h5-parameters">Parameters:</h5>
5012
-
5013
-
5014
- <table class="params">
5015
- <thead>
5016
- <tr>
5017
-
5018
- <th>Name</th>
5019
-
5020
-
5021
- <th>Type</th>
5022
-
5023
-
5024
-
5025
-
5026
-
5027
- <th class="last">Description</th>
5028
- </tr>
5029
- </thead>
5030
-
5031
- <tbody>
5032
-
5033
-
5034
- <tr>
5035
-
5036
- <td class="name"><code>contentId</code></td>
5037
-
5038
-
5039
- <td class="type">
5040
-
5041
- </td>
5042
-
5043
-
5044
-
5045
-
5046
-
5047
- <td class="description last"></td>
5048
- </tr>
5049
-
5050
-
5051
-
5052
- <tr>
5053
-
5054
- <td class="name"><code>collection</code></td>
5055
-
5056
-
5057
- <td class="type">
5058
-
5059
-
5060
- <span class="param-type">object</span>
5061
- |
5062
-
5063
- <span class="param-type">null</span>
5064
-
5065
-
5066
-
5067
-
5068
- </td>
5069
-
5070
-
5071
-
5072
-
5073
-
5074
- <td class="description last">the collection context of the progress. null is normal content progress
5075
- <h6>Properties</h6>
5076
-
5077
-
5078
- <table class="params">
5079
- <thead>
5080
- <tr>
5081
-
5082
- <th>Name</th>
5083
-
5084
-
5085
- <th>Type</th>
5086
-
5087
-
5088
-
5089
-
5090
-
5091
- <th class="last">Description</th>
5092
- </tr>
5093
- </thead>
5094
-
5095
- <tbody>
5096
-
5097
-
5098
- <tr>
5099
-
5100
- <td class="name"><code>type</code></td>
5101
-
5102
-
5103
- <td class="type">
5104
-
5105
- </td>
5106
-
5107
-
5108
-
5109
-
5110
-
5111
- <td class="description last">the type of collection. options: ["learning-path"]</td>
5112
- </tr>
5113
-
5114
-
5115
-
5116
- <tr>
5117
-
5118
- <td class="name"><code>id</code></td>
5119
-
5120
-
5121
- <td class="type">
5122
-
5123
- </td>
5124
-
5125
-
5126
-
5127
-
5128
-
5129
- <td class="description last">the content_id of collection.</td>
5130
- </tr>
5131
-
5132
-
5133
- </tbody>
5134
- </table>
5135
-
5136
- </td>
5137
- </tr>
5138
-
5139
-
5140
- </tbody>
5141
- </table>
5142
-
5143
-
5144
-
5145
-
5146
-
5147
-
5148
-
5149
-
5150
-
5151
-
5152
-
5153
-
5154
-
5155
-
5156
-
5157
-
5158
- <h5 class="h5-returns">Returns:</h5>
5159
-
5160
-
5161
-
5162
-
5163
- <dl class="param-type">
5164
- <dt>
5165
- Type
5166
- </dt>
5167
- <dd>
5168
-
5169
- <span class="param-type">Promise.&lt;(any|string|null)></span>
5170
-
5171
-
5172
-
5173
- </dd>
5174
- </dl>
5175
-
5176
-
5177
-
5178
-
5179
-
5180
-
5181
-
5182
-
5183
-
5184
-
5185
4326
  <h4 class="name" id=".replyToComment"><span class="type-signature type-signature-static">(static) </span>replyToComment<span class="signature">(commentId, comment)</span><span class="type-signature"> &rarr; {Promise.&lt;(*|null)>}</span></h4>
5186
4327
 
5187
4328
 
@@ -5195,7 +4336,7 @@
5195
4336
 
5196
4337
  <dt class="tag-source">Source:</dt>
5197
4338
  <dd class="tag-source"><ul class="dummy"><li>
5198
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line504">line 504</a>
4339
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line402">line 402</a>
5199
4340
  </li></ul></dd>
5200
4341
 
5201
4342
 
@@ -5370,7 +4511,7 @@
5370
4511
 
5371
4512
  <dt class="tag-source">Source:</dt>
5372
4513
  <dd class="tag-source"><ul class="dummy"><li>
5373
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line602">line 602</a>
4514
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line500">line 500</a>
5374
4515
  </li></ul></dd>
5375
4516
 
5376
4517
 
@@ -5545,7 +4686,7 @@
5545
4686
 
5546
4687
  <dt class="tag-source">Source:</dt>
5547
4688
  <dd class="tag-source"><ul class="dummy"><li>
5548
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line494">line 494</a>
4689
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line392">line 392</a>
5549
4690
  </li></ul></dd>
5550
4691
 
5551
4692
 
@@ -5699,7 +4840,7 @@
5699
4840
 
5700
4841
  <dt class="tag-source">Source:</dt>
5701
4842
  <dd class="tag-source"><ul class="dummy"><li>
5702
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line440">line 440</a>
4843
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line338">line 338</a>
5703
4844
  </li></ul></dd>
5704
4845
 
5705
4846
 
@@ -5877,7 +5018,7 @@
5877
5018
 
5878
5019
  <dt class="tag-source">Source:</dt>
5879
5020
  <dd class="tag-source"><ul class="dummy"><li>
5880
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line537">line 537</a>
5021
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line435">line 435</a>
5881
5022
  </li></ul></dd>
5882
5023
 
5883
5024
 
@@ -6028,7 +5169,7 @@
6028
5169
 
6029
5170
  <dt class="tag-source">Source:</dt>
6030
5171
  <dd class="tag-source"><ul class="dummy"><li>
6031
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line555">line 555</a>
5172
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line453">line 453</a>
6032
5173
  </li></ul></dd>
6033
5174
 
6034
5175
 
@@ -6182,7 +5323,7 @@
6182
5323
 
6183
5324
  <dt class="tag-source">Source:</dt>
6184
5325
  <dd class="tag-source"><ul class="dummy"><li>
6185
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line693">line 693</a>
5326
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line570">line 570</a>
6186
5327
  </li></ul></dd>
6187
5328
 
6188
5329
 
@@ -6350,7 +5491,7 @@
6350
5491
 
6351
5492
  <dt class="tag-source">Source:</dt>
6352
5493
  <dd class="tag-source"><ul class="dummy"><li>
6353
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line719">line 719</a>
5494
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line596">line 596</a>
6354
5495
  </li></ul></dd>
6355
5496
 
6356
5497
 
@@ -6546,7 +5687,7 @@
6546
5687
 
6547
5688
  <dt class="tag-source">Source:</dt>
6548
5689
  <dd class="tag-source"><ul class="dummy"><li>
6549
- <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line727">line 727</a>
5690
+ <a href="railcontent.js.html">railcontent.js</a>, <a href="railcontent.js.html#line604">line 604</a>
6550
5691
  </li></ul></dd>
6551
5692
 
6552
5693
 
@@ -6722,7 +5863,7 @@
6722
5863
  <br class="clear">
6723
5864
 
6724
5865
  <footer>
6725
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a> on Tue Nov 25 2025 19:26:53 GMT+0000 (Coordinated Universal Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
5866
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a> on Fri Nov 28 2025 11:22:56 GMT-0800 (Pacific Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
6726
5867
  </footer>
6727
5868
 
6728
5869
  <script>prettyPrint();</script>