musora-content-services 1.3.21 → 2.0.5

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 (96) hide show
  1. package/.editorconfig +16 -0
  2. package/.github/workflows/node.js.yml +0 -0
  3. package/.prettierignore +0 -0
  4. package/.prettierrc +0 -0
  5. package/CHANGELOG.md +4 -4
  6. package/README.md +0 -0
  7. package/babel.config.cjs +0 -0
  8. package/docs/Content-Organization.html +245 -0
  9. package/docs/Playlists.html +192 -0
  10. package/docs/config.js.html +14 -5
  11. package/docs/content-org_playlists-types.js.html +109 -0
  12. package/docs/content-org_playlists.js.html +194 -0
  13. package/docs/content-org_types.js.html +112 -0
  14. package/docs/content.js.html +443 -0
  15. package/docs/fonts/Montserrat/Montserrat-Bold.eot +0 -0
  16. package/docs/fonts/Montserrat/Montserrat-Bold.ttf +0 -0
  17. package/docs/fonts/Montserrat/Montserrat-Bold.woff +0 -0
  18. package/docs/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
  19. package/docs/fonts/Montserrat/Montserrat-Regular.eot +0 -0
  20. package/docs/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
  21. package/docs/fonts/Montserrat/Montserrat-Regular.woff +0 -0
  22. package/docs/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
  23. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.eot +0 -0
  24. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.svg +0 -0
  25. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.ttf +0 -0
  26. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff +0 -0
  27. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff2 +0 -0
  28. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.eot +0 -0
  29. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.svg +0 -0
  30. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.ttf +0 -0
  31. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff +0 -0
  32. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff2 +0 -0
  33. package/docs/global.html +3878 -0
  34. package/docs/index.html +2 -2
  35. package/docs/module-Config.html +60 -7
  36. package/docs/module-Content-Organization-Playlists.html +194 -0
  37. package/docs/module-Content-Organization.html +976 -0
  38. package/docs/module-Content-Services-V2.html +2433 -0
  39. package/docs/module-Playlists.html +969 -0
  40. package/docs/module-Railcontent-Services.html +3052 -1991
  41. package/docs/module-Sanity-Services.html +57 -43
  42. package/docs/module-Session-Management.html +575 -0
  43. package/docs/module-User-Permissions.html +406 -0
  44. package/docs/module-playlists.html +1878 -0
  45. package/docs/module-playlists_.html +108 -0
  46. package/docs/railcontent.js.html +149 -112
  47. package/docs/sanity.js.html +297 -109
  48. package/docs/scripts/collapse.js +0 -0
  49. package/docs/scripts/commonNav.js +0 -0
  50. package/docs/scripts/linenumber.js +0 -0
  51. package/docs/scripts/nav.js +0 -0
  52. package/docs/scripts/polyfill.js +0 -0
  53. package/docs/scripts/prettify/Apache-License-2.0.txt +0 -0
  54. package/docs/scripts/prettify/lang-css.js +0 -0
  55. package/docs/scripts/prettify/prettify.js +0 -0
  56. package/docs/scripts/search.js +0 -0
  57. package/docs/styles/jsdoc.css +0 -0
  58. package/docs/styles/prettify.css +0 -0
  59. package/docs/user_permissions.js.html +110 -0
  60. package/docs/user_sessions.js.html +139 -0
  61. package/docs/user_types.js.html +188 -0
  62. package/jest.config.js +0 -0
  63. package/jsdoc.json +3 -0
  64. package/package.json +1 -1
  65. package/publish.sh +2 -2
  66. package/src/contentMetaData.js +307 -1088
  67. package/src/contentTypeConfig.js +108 -4
  68. package/src/filterBuilder.js +6 -6
  69. package/src/index.d.ts +67 -9
  70. package/src/index.js +67 -9
  71. package/src/{services → lib}/lastUpdated.js +17 -1
  72. package/src/services/content-org/playlists-types.js +37 -0
  73. package/src/services/content-org/playlists.js +122 -0
  74. package/src/services/content.js +371 -0
  75. package/src/services/contentLikes.js +0 -0
  76. package/src/services/contentProgress.js +0 -0
  77. package/src/services/forum.js +57 -0
  78. package/src/services/railcontent.js +122 -122
  79. package/src/services/recommendations.js +19 -0
  80. package/src/services/sanity.js +278 -104
  81. package/src/services/{userPermissions.js → user/permissions.js} +16 -2
  82. package/src/services/user/sessions.js +67 -0
  83. package/src/services/user/types.js +116 -0
  84. package/src/services/userActivity.js +32 -0
  85. package/test/content.test.js +116 -0
  86. package/test/contentProgress.test.js +83 -5
  87. package/test/forum.test.js +18 -0
  88. package/test/initializeTests.js +6 -1
  89. package/test/{lastUpdated.test.js → lib/lastUpdated.test.js} +2 -5
  90. package/test/live/contentProgressLive.test.js +0 -0
  91. package/test/live/railcontentLive.test.js +0 -0
  92. package/test/localStorageMock.js +0 -0
  93. package/test/log.js +0 -0
  94. package/test/sanityQueryService.test.js +66 -18
  95. package/test/{userPermissions.test.js → user/permissions.test.js} +3 -3
  96. package/tools/generate-index.cjs +16 -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-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-Railcontent-Services.html">Railcontent-Services</a><ul class='methods'><li data-type='method'><a href="module-Railcontent-Services.html#.addItemToPlaylist">addItemToPlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.countAssignmentsAndLessons">countAssignmentsAndLessons</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.createPlaylist">createPlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.deletePlaylist">deletePlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.deletePlaylistItem">deletePlaylistItem</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.deletePlaylistLike">deletePlaylistLike</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.duplicatePlaylist">duplicatePlaylist</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#.fetchChallengeIndexMetadata">fetchChallengeIndexMetadata</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchChallengeLessonData">fetchChallengeLessonData</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchChallengeMetadata">fetchChallengeMetadata</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchChallengeUserActiveChallenges">fetchChallengeUserActiveChallenges</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchCompletedChallenges">fetchCompletedChallenges</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#.fetchOwnedChallenges">fetchOwnedChallenges</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchPinnedPlaylists">fetchPinnedPlaylists</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchPlaylist">fetchPlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchPlaylistItem">fetchPlaylistItem</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchPlaylistItems">fetchPlaylistItems</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#.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#.fetchUserChallengeProgress">fetchUserChallengeProgress</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchUserPlaylists">fetchUserPlaylists</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.likePlaylist">likePlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.pinPlaylist">pinPlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesCommunityNotification">postChallengesCommunityNotification</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesCompleteLesson">postChallengesCompleteLesson</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesEnroll">postChallengesEnroll</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesEnrollmentNotification">postChallengesEnrollmentNotification</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesHideCompletedBanner">postChallengesHideCompletedBanner</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesLeave">postChallengesLeave</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesSetStartDate">postChallengesSetStartDate</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesSoloNotification">postChallengesSoloNotification</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesUnlock">postChallengesUnlock</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.reportPlaylist">reportPlaylist</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#.unpinPlaylist">unpinPlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.updatePlaylist">updatePlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.updatePlaylistItem">updatePlaylistItem</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#.fetchArtistLessons">fetchArtistLessons</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchArtists">fetchArtists</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#.fetchCoachLessons">fetchCoachLessons</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#.fetchGenreLessons">fetchGenreLessons</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#.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#.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#.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#.fetchParentForDownload">fetchParentForDownload</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#.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#.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#.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#~getNextAndPreviousQuarterDates">getNextAndPreviousQuarterDates</a></li><li data-type='method'><a href="module-Sanity-Services.html#~getQueryFromPage">getQueryFromPage</a></li><li data-type='method'><a href="module-Sanity-Services.html#~handleCustomFetchAll">handleCustomFetchAll</a></li></ul></li></ul>
32
+ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><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#.getNewAndUpcoming">getNewAndUpcoming</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-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#.fetchUserPlaylists">fetchUserPlaylists</a></li></ul></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#.countAssignmentsAndLessons">countAssignmentsAndLessons</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#.deletePlaylist">deletePlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.deletePlaylistItem">deletePlaylistItem</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.deletePlaylistLike">deletePlaylistLike</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.duplicatePlaylist">duplicatePlaylist</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#.fetchChallengeIndexMetadata">fetchChallengeIndexMetadata</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchChallengeLessonData">fetchChallengeLessonData</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchChallengeMetadata">fetchChallengeMetadata</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchChallengeUserActiveChallenges">fetchChallengeUserActiveChallenges</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#.fetchCompletedChallenges">fetchCompletedChallenges</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#.fetchOwnedChallenges">fetchOwnedChallenges</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchPinnedPlaylists">fetchPinnedPlaylists</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchPlaylist">fetchPlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchPlaylistItem">fetchPlaylistItem</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.fetchPlaylistItems">fetchPlaylistItems</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#.fetchUserChallengeProgress">fetchUserChallengeProgress</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#.likePlaylist">likePlaylist</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#.pinPlaylist">pinPlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesCommunityNotification">postChallengesCommunityNotification</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesCompleteLesson">postChallengesCompleteLesson</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesEnroll">postChallengesEnroll</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesEnrollmentNotification">postChallengesEnrollmentNotification</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesHideCompletedBanner">postChallengesHideCompletedBanner</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesLeave">postChallengesLeave</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesSetStartDate">postChallengesSetStartDate</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesSoloNotification">postChallengesSoloNotification</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.postChallengesUnlock">postChallengesUnlock</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#.reportPlaylist">reportPlaylist</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#.unpinPlaylist">unpinPlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.updatePlaylist">updatePlaylist</a></li><li data-type='method'><a href="module-Railcontent-Services.html#.updatePlaylistItem">updatePlaylistItem</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#.fetchArtistLessons">fetchArtistLessons</a></li><li data-type='method'><a href="module-Sanity-Services.html#.fetchArtists">fetchArtists</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#.fetchCoachLessons">fetchCoachLessons</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#.fetchGenreLessons">fetchGenreLessons</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#.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#.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#.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#.fetchParentForDownload">fetchParentForDownload</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#.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#.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#.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#~getNextAndPreviousQuarterDates">getNextAndPreviousQuarterDates</a></li><li data-type='method'><a href="module-Sanity-Services.html#~getQueryFromPage">getQueryFromPage</a></li><li data-type='method'><a href="module-Sanity-Services.html#~handleCustomFetchAll">handleCustomFetchAll</a></li></ul></li><li><a href="module-Session-Management.html">Session-Management</a><ul class='methods'><li data-type='method'><a href="module-Session-Management.html#.login">login</a></li><li data-type='method'><a href="module-Session-Management.html#.logout">logout</a></li></ul></li><li><a href="module-User-Permissions.html">User-Permissions</a><ul class='methods'><li data-type='method'><a href="module-User-Permissions.html#.fetchUserPermissions">fetchUserPermissions</a></li><li data-type='method'><a href="module-User-Permissions.html#.reset">reset</a></li></ul></li></ul><h3>Namespaces</h3><ul><li><a href="Content-Organization.html">Content-Organization</a></li></ul><h3><a href="global.html">Global</a></h3>
33
33
 
34
34
  </nav>
35
35
 
@@ -94,7 +94,7 @@
94
94
 
95
95
  <dt class="tag-source">Source:</dt>
96
96
  <dd class="tag-source"><ul class="dummy"><li>
97
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line41">line 41</a>
97
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line39">line 39</a>
98
98
  </li></ul></dd>
99
99
 
100
100
 
@@ -182,7 +182,7 @@
182
182
 
183
183
  <dt class="tag-source">Source:</dt>
184
184
  <dd class="tag-source"><ul class="dummy"><li>
185
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line545">line 545</a>
185
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line567">line 567</a>
186
186
  </li></ul></dd>
187
187
 
188
188
 
@@ -837,7 +837,7 @@ If a coachId is provided, the content type must be 'coach-lessons'.</li></ul></d
837
837
 
838
838
  <dt class="tag-source">Source:</dt>
839
839
  <dd class="tag-source"><ul class="dummy"><li>
840
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line922">line 922</a>
840
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line954">line 954</a>
841
841
  </li></ul></dd>
842
842
 
843
843
 
@@ -1356,7 +1356,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
1356
1356
 
1357
1357
  <dt class="tag-source">Source:</dt>
1358
1358
  <dd class="tag-source"><ul class="dummy"><li>
1359
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1310">line 1310</a>
1359
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1361">line 1361</a>
1360
1360
  </li></ul></dd>
1361
1361
 
1362
1362
 
@@ -1690,7 +1690,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
1690
1690
 
1691
1691
  <dt class="tag-source">Source:</dt>
1692
1692
  <dd class="tag-source"><ul class="dummy"><li>
1693
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1519">line 1519</a>
1693
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1595">line 1595</a>
1694
1694
  </li></ul></dd>
1695
1695
 
1696
1696
 
@@ -2195,7 +2195,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
2195
2195
 
2196
2196
  <dt class="tag-source">Source:</dt>
2197
2197
  <dd class="tag-source"><ul class="dummy"><li>
2198
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line185">line 185</a>
2198
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line204">line 204</a>
2199
2199
  </li></ul></dd>
2200
2200
 
2201
2201
 
@@ -2360,7 +2360,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
2360
2360
 
2361
2361
  <dt class="tag-source">Source:</dt>
2362
2362
  <dd class="tag-source"><ul class="dummy"><li>
2363
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line449">line 449</a>
2363
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line471">line 471</a>
2364
2364
  </li></ul></dd>
2365
2365
 
2366
2366
 
@@ -2549,7 +2549,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
2549
2549
 
2550
2550
  <dt class="tag-source">Source:</dt>
2551
2551
  <dd class="tag-source"><ul class="dummy"><li>
2552
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line488">line 488</a>
2552
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line510">line 510</a>
2553
2553
  </li></ul></dd>
2554
2554
 
2555
2555
 
@@ -2758,7 +2758,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
2758
2758
 
2759
2759
  <dt class="tag-source">Source:</dt>
2760
2760
  <dd class="tag-source"><ul class="dummy"><li>
2761
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1480">line 1480</a>
2761
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1556">line 1556</a>
2762
2762
  </li></ul></dd>
2763
2763
 
2764
2764
 
@@ -2923,7 +2923,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
2923
2923
 
2924
2924
  <dt class="tag-source">Source:</dt>
2925
2925
  <dd class="tag-source"><ul class="dummy"><li>
2926
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1425">line 1425</a>
2926
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1501">line 1501</a>
2927
2927
  </li></ul></dd>
2928
2928
 
2929
2929
 
@@ -3366,7 +3366,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
3366
3366
 
3367
3367
  <dt class="tag-source">Source:</dt>
3368
3368
  <dd class="tag-source"><ul class="dummy"><li>
3369
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line115">line 115</a>
3369
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line127">line 127</a>
3370
3370
  </li></ul></dd>
3371
3371
 
3372
3372
 
@@ -3470,7 +3470,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
3470
3470
 
3471
3471
  <dt class="tag-source">Source:</dt>
3472
3472
  <dd class="tag-source"><ul class="dummy"><li>
3473
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1709">line 1709</a>
3473
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1785">line 1785</a>
3474
3474
  </li></ul></dd>
3475
3475
 
3476
3476
 
@@ -3628,7 +3628,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
3628
3628
 
3629
3629
  <dt class="tag-source">Source:</dt>
3630
3630
  <dd class="tag-source"><ul class="dummy"><li>
3631
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line985">line 985</a>
3631
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1024">line 1024</a>
3632
3632
  </li></ul></dd>
3633
3633
 
3634
3634
 
@@ -3786,7 +3786,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
3786
3786
 
3787
3787
  <dt class="tag-source">Source:</dt>
3788
3788
  <dd class="tag-source"><ul class="dummy"><li>
3789
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1579">line 1579</a>
3789
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1655">line 1655</a>
3790
3790
  </li></ul></dd>
3791
3791
 
3792
3792
 
@@ -4267,7 +4267,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
4267
4267
 
4268
4268
  <dt class="tag-source">Source:</dt>
4269
4269
  <dd class="tag-source"><ul class="dummy"><li>
4270
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line76">line 76</a>
4270
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line74">line 74</a>
4271
4271
  </li></ul></dd>
4272
4272
 
4273
4273
 
@@ -4371,7 +4371,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
4371
4371
 
4372
4372
  <dt class="tag-source">Source:</dt>
4373
4373
  <dd class="tag-source"><ul class="dummy"><li>
4374
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1206">line 1206</a>
4374
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1245">line 1245</a>
4375
4375
  </li></ul></dd>
4376
4376
 
4377
4377
 
@@ -4530,13 +4530,14 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
4530
4530
  <dl class="details">
4531
4531
 
4532
4532
  <dt class="tag-description">Description:</dt>
4533
- <dd class="tag-description"><ul class="dummy"><li>Fetch metadata from the contentMetaData.js based on brand and type.</li></ul></dd>
4533
+ <dd class="tag-description"><ul class="dummy"><li>Fetch metadata from the contentMetaData.js based on brand and type.
4534
+ For v2 you need to provide page type('lessons' or 'songs') in type parameter</li></ul></dd>
4534
4535
 
4535
4536
 
4536
4537
 
4537
4538
  <dt class="tag-source">Source:</dt>
4538
4539
  <dd class="tag-source"><ul class="dummy"><li>
4539
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1890">line 1890</a>
4540
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1967">line 1967</a>
4540
4541
  </li></ul></dd>
4541
4542
 
4542
4543
 
@@ -4721,7 +4722,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
4721
4722
 
4722
4723
  <dt class="tag-source">Source:</dt>
4723
4724
  <dd class="tag-source"><ul class="dummy"><li>
4724
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1005">line 1005</a>
4725
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1044">line 1044</a>
4725
4726
  </li></ul></dd>
4726
4727
 
4727
4728
 
@@ -4903,7 +4904,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
4903
4904
 
4904
4905
  <dt class="tag-source">Source:</dt>
4905
4906
  <dd class="tag-source"><ul class="dummy"><li>
4906
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1053">line 1053</a>
4907
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1092">line 1092</a>
4907
4908
  </li></ul></dd>
4908
4909
 
4909
4910
 
@@ -5061,7 +5062,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
5061
5062
 
5062
5063
  <dt class="tag-source">Source:</dt>
5063
5064
  <dd class="tag-source"><ul class="dummy"><li>
5064
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1111">line 1111</a>
5065
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1150">line 1150</a>
5065
5066
  </li></ul></dd>
5066
5067
 
5067
5068
 
@@ -5219,7 +5220,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
5219
5220
 
5220
5221
  <dt class="tag-source">Source:</dt>
5221
5222
  <dd class="tag-source"><ul class="dummy"><li>
5222
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1088">line 1088</a>
5223
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1127">line 1127</a>
5223
5224
  </li></ul></dd>
5224
5225
 
5225
5226
 
@@ -5408,7 +5409,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
5408
5409
 
5409
5410
  <dt class="tag-source">Source:</dt>
5410
5411
  <dd class="tag-source"><ul class="dummy"><li>
5411
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line319">line 319</a>
5412
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line340">line 340</a>
5412
5413
  </li></ul></dd>
5413
5414
 
5414
5415
 
@@ -5566,7 +5567,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
5566
5567
 
5567
5568
  <dt class="tag-source">Source:</dt>
5568
5569
  <dd class="tag-source"><ul class="dummy"><li>
5569
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1150">line 1150</a>
5570
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1189">line 1189</a>
5570
5571
  </li></ul></dd>
5571
5572
 
5572
5573
 
@@ -5724,7 +5725,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
5724
5725
 
5725
5726
  <dt class="tag-source">Source:</dt>
5726
5727
  <dd class="tag-source"><ul class="dummy"><li>
5727
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1338">line 1338</a>
5728
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1389">line 1389</a>
5728
5729
  </li></ul></dd>
5729
5730
 
5730
5731
 
@@ -5882,7 +5883,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
5882
5883
 
5883
5884
  <dt class="tag-source">Source:</dt>
5884
5885
  <dd class="tag-source"><ul class="dummy"><li>
5885
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1401">line 1401</a>
5886
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1477">line 1477</a>
5886
5887
  </li></ul></dd>
5887
5888
 
5888
5889
 
@@ -6047,7 +6048,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
6047
6048
 
6048
6049
  <dt class="tag-source">Source:</dt>
6049
6050
  <dd class="tag-source"><ul class="dummy"><li>
6050
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1457">line 1457</a>
6051
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1533">line 1533</a>
6051
6052
  </li></ul></dd>
6052
6053
 
6053
6054
 
@@ -6212,7 +6213,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
6212
6213
 
6213
6214
  <dt class="tag-source">Source:</dt>
6214
6215
  <dd class="tag-source"><ul class="dummy"><li>
6215
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1272">line 1272</a>
6216
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1322">line 1322</a>
6216
6217
  </li></ul></dd>
6217
6218
 
6218
6219
 
@@ -6394,7 +6395,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
6394
6395
 
6395
6396
  <dt class="tag-source">Source:</dt>
6396
6397
  <dd class="tag-source"><ul class="dummy"><li>
6397
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line245">line 245</a>
6398
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line264">line 264</a>
6398
6399
  </li></ul></dd>
6399
6400
 
6400
6401
 
@@ -6583,7 +6584,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
6583
6584
 
6584
6585
  <dt class="tag-source">Source:</dt>
6585
6586
  <dd class="tag-source"><ul class="dummy"><li>
6586
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line95">line 95</a>
6587
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line100">line 100</a>
6587
6588
  </li></ul></dd>
6588
6589
 
6589
6590
 
@@ -6684,7 +6685,7 @@ fetchAllFilterOptions('myBrand', [], 'Rock', 'John Doe', 'coach-lessons', 'Love'
6684
6685
 
6685
6686
  <dt class="tag-source">Source:</dt>
6686
6687
  <dd class="tag-source"><ul class="dummy"><li>
6687
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1747">line 1747</a>
6688
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1823">line 1823</a>
6688
6689
  </li></ul></dd>
6689
6690
 
6690
6691
 
@@ -6982,7 +6983,7 @@ fetchSanity(query, true)
6982
6983
 
6983
6984
  <dt class="tag-source">Source:</dt>
6984
6985
  <dd class="tag-source"><ul class="dummy"><li>
6985
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line411">line 411</a>
6986
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line433">line 433</a>
6986
6987
  </li></ul></dd>
6987
6988
 
6988
6989
 
@@ -7150,7 +7151,7 @@ fetchSanity(query, true)
7150
7151
 
7151
7152
  <dt class="tag-source">Source:</dt>
7152
7153
  <dd class="tag-source"><ul class="dummy"><li>
7153
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1865">line 1865</a>
7154
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1941">line 1941</a>
7154
7155
  </li></ul></dd>
7155
7156
 
7156
7157
 
@@ -7305,7 +7306,7 @@ fetchSanity(query, true)
7305
7306
 
7306
7307
  <dt class="tag-source">Source:</dt>
7307
7308
  <dd class="tag-source"><ul class="dummy"><li>
7308
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line203">line 203</a>
7309
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line222">line 222</a>
7309
7310
  </li></ul></dd>
7310
7311
 
7311
7312
 
@@ -7463,7 +7464,7 @@ fetchSanity(query, true)
7463
7464
 
7464
7465
  <dt class="tag-source">Source:</dt>
7465
7466
  <dd class="tag-source"><ul class="dummy"><li>
7466
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line54">line 54</a>
7467
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line52">line 52</a>
7467
7468
  </li></ul></dd>
7468
7469
 
7469
7470
 
@@ -7628,7 +7629,7 @@ fetchSanity(query, true)
7628
7629
 
7629
7630
  <dt class="tag-source">Source:</dt>
7630
7631
  <dd class="tag-source"><ul class="dummy"><li>
7631
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line366">line 366</a>
7632
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line388">line 388</a>
7632
7633
  </li></ul></dd>
7633
7634
 
7634
7635
 
@@ -7796,7 +7797,7 @@ fetchSanity(query, true)
7796
7797
 
7797
7798
  <dt class="tag-source">Source:</dt>
7798
7799
  <dd class="tag-source"><ul class="dummy"><li>
7799
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1187">line 1187</a>
7800
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line1226">line 1226</a>
7800
7801
  </li></ul></dd>
7801
7802
 
7802
7803
 
@@ -7945,7 +7946,7 @@ fetchSanity(query, true)
7945
7946
 
7946
7947
 
7947
7948
 
7948
- <h4 class="name" id="~getNextAndPreviousQuarterDates"><span class="type-signature type-signature-inner">(inner) </span>getNextAndPreviousQuarterDates<span class="signature">()</span><span class="type-signature"></span></h4>
7949
+ <h4 class="name" id="~getNextAndPreviousQuarterDates"><span class="type-signature type-signature-inner">(inner) </span>getNextAndPreviousQuarterDates<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;string>}</span></h4>
7949
7950
 
7950
7951
 
7951
7952
 
@@ -7961,7 +7962,7 @@ fetchSanity(query, true)
7961
7962
 
7962
7963
  <dt class="tag-source">Source:</dt>
7963
7964
  <dd class="tag-source"><ul class="dummy"><li>
7964
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line144">line 144</a>
7965
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line163">line 163</a>
7965
7966
  </li></ul></dd>
7966
7967
 
7967
7968
 
@@ -8027,6 +8028,19 @@ fetchSanity(query, true)
8027
8028
 
8028
8029
 
8029
8030
 
8031
+ <dl class="param-type">
8032
+ <dt>
8033
+ Type
8034
+ </dt>
8035
+ <dd>
8036
+
8037
+ <span class="param-type">Array.&lt;string></span>
8038
+
8039
+
8040
+
8041
+ </dd>
8042
+ </dl>
8043
+
8030
8044
 
8031
8045
 
8032
8046
 
@@ -8049,7 +8063,7 @@ fetchSanity(query, true)
8049
8063
 
8050
8064
  <dt class="tag-source">Source:</dt>
8051
8065
  <dd class="tag-source"><ul class="dummy"><li>
8052
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line130">line 130</a>
8066
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line149">line 149</a>
8053
8067
  </li></ul></dd>
8054
8068
 
8055
8069
 
@@ -8153,7 +8167,7 @@ fetchSanity(query, true)
8153
8167
 
8154
8168
  <dt class="tag-source">Source:</dt>
8155
8169
  <dd class="tag-source"><ul class="dummy"><li>
8156
- <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line713">line 713</a>
8170
+ <a href="sanity.js.html">sanity.js</a>, <a href="sanity.js.html#line737">line 737</a>
8157
8171
  </li></ul></dd>
8158
8172
 
8159
8173
 
@@ -8786,7 +8800,7 @@ fetchSanity(query, true)
8786
8800
  <br class="clear">
8787
8801
 
8788
8802
  <footer>
8789
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a> on Fri Feb 21 2025 20:42:51 GMT+0000 (Coordinated Universal Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
8803
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a> on Thu Mar 20 2025 22:08:57 GMT+0000 (Coordinated Universal Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
8790
8804
  </footer>
8791
8805
 
8792
8806
  <script>prettyPrint();</script>