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
@@ -0,0 +1,3878 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+
5
+ <meta charset="utf-8">
6
+ <title>Global - Documentation</title>
7
+
8
+
9
+ <script src="scripts/prettify/prettify.js"></script>
10
+ <script src="scripts/prettify/lang-css.js"></script>
11
+ <!--[if lt IE 9]>
12
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
13
+ <![endif]-->
14
+ <link type="text/css" rel="stylesheet" href="styles/prettify.css">
15
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
16
+ <script src="scripts/nav.js" defer></script>
17
+
18
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
19
+ </head>
20
+ <body>
21
+
22
+ <input type="checkbox" id="nav-trigger" class="nav-trigger" />
23
+ <label for="nav-trigger" class="navicon-button x">
24
+ <div class="navicon"></div>
25
+ </label>
26
+
27
+ <label for="nav-trigger" class="overlay"></label>
28
+
29
+ <nav >
30
+
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-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
+
34
+ </nav>
35
+
36
+ <div id="main">
37
+
38
+ <h1 class="page-title">Global</h1>
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+ <section>
47
+
48
+ <header>
49
+
50
+ <h2>
51
+
52
+
53
+
54
+ </h2>
55
+
56
+
57
+ </header>
58
+
59
+ <article>
60
+
61
+ <div class="container-overview">
62
+
63
+
64
+
65
+ <dl class="details">
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+ </dl>
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+ </div>
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+ <h3 class="subsection-title">Type Definitions</h3>
129
+
130
+
131
+
132
+ <h4 class="name" id="AddItemToPlaylistDTO">AddItemToPlaylistDTO</h4>
133
+
134
+
135
+
136
+
137
+
138
+ <dl class="details">
139
+
140
+
141
+
142
+ <dt class="tag-source">Source:</dt>
143
+ <dd class="tag-source"><ul class="dummy"><li>
144
+ <a href="content-org_playlists-types.js.html">content-org/playlists-types.js</a>, <a href="content-org_playlists-types.js.html#line28">line 28</a>
145
+ </li></ul></dd>
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+ </dl>
178
+
179
+
180
+
181
+ <h5 class="subsection-title">Properties:</h5>
182
+
183
+
184
+
185
+ <table class="props">
186
+ <thead>
187
+ <tr>
188
+
189
+ <th>Name</th>
190
+
191
+
192
+ <th>Type</th>
193
+
194
+
195
+
196
+
197
+
198
+ <th class="last">Description</th>
199
+ </tr>
200
+ </thead>
201
+
202
+ <tbody>
203
+
204
+
205
+ <tr>
206
+
207
+ <td class="name"><code>content_id</code></td>
208
+
209
+
210
+ <td class="type">
211
+
212
+
213
+ <span class="param-type">number</span>
214
+
215
+
216
+
217
+
218
+ </td>
219
+
220
+
221
+
222
+
223
+
224
+ <td class="description last">The ID of the content to add to the playlist(s).</td>
225
+ </tr>
226
+
227
+
228
+
229
+ <tr>
230
+
231
+ <td class="name"><code>playlist_id</code></td>
232
+
233
+
234
+ <td class="type">
235
+
236
+
237
+ <span class="param-type">Array.&lt;number></span>
238
+
239
+
240
+
241
+
242
+ </td>
243
+
244
+
245
+
246
+
247
+
248
+ <td class="description last">An array of playlist IDs where the content should be added.</td>
249
+ </tr>
250
+
251
+
252
+
253
+ <tr>
254
+
255
+ <td class="name"><code>import_full_soundslice_assignment</code></td>
256
+
257
+
258
+ <td class="type">
259
+
260
+
261
+ <span class="param-type">boolean</span>
262
+
263
+
264
+
265
+
266
+ </td>
267
+
268
+
269
+
270
+
271
+
272
+ <td class="description last">Flag to include full Soundslice assignments.</td>
273
+ </tr>
274
+
275
+
276
+
277
+ <tr>
278
+
279
+ <td class="name"><code>import_instrumentless_soundslice_assignment</code></td>
280
+
281
+
282
+ <td class="type">
283
+
284
+
285
+ <span class="param-type">boolean</span>
286
+
287
+
288
+
289
+
290
+ </td>
291
+
292
+
293
+
294
+
295
+
296
+ <td class="description last">Flag to include instrumentless Soundslice assignments.</td>
297
+ </tr>
298
+
299
+
300
+
301
+ <tr>
302
+
303
+ <td class="name"><code>import_high_routine</code></td>
304
+
305
+
306
+ <td class="type">
307
+
308
+
309
+ <span class="param-type">boolean</span>
310
+
311
+
312
+
313
+
314
+ </td>
315
+
316
+
317
+
318
+
319
+
320
+ <td class="description last">Flag to include high routine content.</td>
321
+ </tr>
322
+
323
+
324
+
325
+ <tr>
326
+
327
+ <td class="name"><code>import_low_routine</code></td>
328
+
329
+
330
+ <td class="type">
331
+
332
+
333
+ <span class="param-type">boolean</span>
334
+
335
+
336
+
337
+
338
+ </td>
339
+
340
+
341
+
342
+
343
+
344
+ <td class="description last">Flag to include low routine content.</td>
345
+ </tr>
346
+
347
+
348
+
349
+ <tr>
350
+
351
+ <td class="name"><code>import_all_assignments</code></td>
352
+
353
+
354
+ <td class="type">
355
+
356
+
357
+ <span class="param-type">boolean</span>
358
+
359
+
360
+
361
+
362
+ </td>
363
+
364
+
365
+
366
+
367
+
368
+ <td class="description last">Flag to include all Soundslice assignments if true.</td>
369
+ </tr>
370
+
371
+
372
+ </tbody>
373
+ </table>
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+
388
+
389
+ <h4 class="name" id="AuthResponse">AuthResponse</h4>
390
+
391
+
392
+
393
+
394
+
395
+ <dl class="details">
396
+
397
+
398
+
399
+ <dt class="tag-source">Source:</dt>
400
+ <dd class="tag-source"><ul class="dummy"><li>
401
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line104">line 104</a>
402
+ </li></ul></dd>
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+
414
+
415
+
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+ </dl>
435
+
436
+
437
+
438
+ <h5 class="subsection-title">Properties:</h5>
439
+
440
+
441
+
442
+ <table class="props">
443
+ <thead>
444
+ <tr>
445
+
446
+ <th>Name</th>
447
+
448
+
449
+ <th>Type</th>
450
+
451
+
452
+
453
+
454
+
455
+ <th class="last">Description</th>
456
+ </tr>
457
+ </thead>
458
+
459
+ <tbody>
460
+
461
+
462
+ <tr>
463
+
464
+ <td class="name"><code>token</code></td>
465
+
466
+
467
+ <td class="type">
468
+
469
+
470
+ <span class="param-type">string</span>
471
+
472
+
473
+
474
+
475
+ </td>
476
+
477
+
478
+
479
+
480
+
481
+ <td class="description last"></td>
482
+ </tr>
483
+
484
+
485
+
486
+ <tr>
487
+
488
+ <td class="name"><code>user</code></td>
489
+
490
+
491
+ <td class="type">
492
+
493
+
494
+ <span class="param-type"><a href="global.html#User">User</a></span>
495
+
496
+
497
+
498
+
499
+ </td>
500
+
501
+
502
+
503
+
504
+
505
+ <td class="description last"></td>
506
+ </tr>
507
+
508
+
509
+ </tbody>
510
+ </table>
511
+
512
+
513
+
514
+
515
+
516
+
517
+
518
+
519
+ <h5 class="h5-types">Type:</h5>
520
+ <ul>
521
+ <li>
522
+
523
+ <span class="param-type">Object</span>
524
+
525
+
526
+
527
+ </li>
528
+ </ul>
529
+
530
+
531
+
532
+
533
+
534
+
535
+
536
+
537
+ <h4 class="name" id="BrandMethodLevels">BrandMethodLevels</h4>
538
+
539
+
540
+
541
+
542
+
543
+ <dl class="details">
544
+
545
+
546
+
547
+ <dt class="tag-source">Source:</dt>
548
+ <dd class="tag-source"><ul class="dummy"><li>
549
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line1">line 1</a>
550
+ </li></ul></dd>
551
+
552
+
553
+
554
+
555
+
556
+
557
+
558
+
559
+
560
+
561
+
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
571
+
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+
580
+
581
+
582
+ </dl>
583
+
584
+
585
+
586
+ <h5 class="subsection-title">Properties:</h5>
587
+
588
+
589
+
590
+ <table class="props">
591
+ <thead>
592
+ <tr>
593
+
594
+ <th>Name</th>
595
+
596
+
597
+ <th>Type</th>
598
+
599
+
600
+
601
+
602
+
603
+ <th class="last">Description</th>
604
+ </tr>
605
+ </thead>
606
+
607
+ <tbody>
608
+
609
+
610
+ <tr>
611
+
612
+ <td class="name"><code>drumeo</code></td>
613
+
614
+
615
+ <td class="type">
616
+
617
+
618
+ <span class="param-type">string</span>
619
+
620
+
621
+
622
+
623
+ </td>
624
+
625
+
626
+
627
+
628
+
629
+ <td class="description last"></td>
630
+ </tr>
631
+
632
+
633
+
634
+ <tr>
635
+
636
+ <td class="name"><code>pianote</code></td>
637
+
638
+
639
+ <td class="type">
640
+
641
+
642
+ <span class="param-type">string</span>
643
+
644
+
645
+
646
+
647
+ </td>
648
+
649
+
650
+
651
+
652
+
653
+ <td class="description last"></td>
654
+ </tr>
655
+
656
+
657
+
658
+ <tr>
659
+
660
+ <td class="name"><code>guitareo</code></td>
661
+
662
+
663
+ <td class="type">
664
+
665
+
666
+ <span class="param-type">string</span>
667
+
668
+
669
+
670
+
671
+ </td>
672
+
673
+
674
+
675
+
676
+
677
+ <td class="description last"></td>
678
+ </tr>
679
+
680
+
681
+
682
+ <tr>
683
+
684
+ <td class="name"><code>singeo</code></td>
685
+
686
+
687
+ <td class="type">
688
+
689
+
690
+ <span class="param-type">string</span>
691
+
692
+
693
+
694
+
695
+ </td>
696
+
697
+
698
+
699
+
700
+
701
+ <td class="description last"></td>
702
+ </tr>
703
+
704
+
705
+ </tbody>
706
+ </table>
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+ <h5 class="h5-types">Type:</h5>
716
+ <ul>
717
+ <li>
718
+
719
+ <span class="param-type">object</span>
720
+
721
+
722
+
723
+ </li>
724
+ </ul>
725
+
726
+
727
+
728
+
729
+
730
+
731
+
732
+
733
+ <h4 class="name" id="BrandTimePracticed">BrandTimePracticed</h4>
734
+
735
+
736
+
737
+
738
+
739
+ <dl class="details">
740
+
741
+
742
+
743
+ <dt class="tag-source">Source:</dt>
744
+ <dd class="tag-source"><ul class="dummy"><li>
745
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line17">line 17</a>
746
+ </li></ul></dd>
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+
763
+
764
+
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+ </dl>
779
+
780
+
781
+
782
+ <h5 class="subsection-title">Properties:</h5>
783
+
784
+
785
+
786
+ <table class="props">
787
+ <thead>
788
+ <tr>
789
+
790
+ <th>Name</th>
791
+
792
+
793
+ <th>Type</th>
794
+
795
+
796
+
797
+
798
+
799
+ <th class="last">Description</th>
800
+ </tr>
801
+ </thead>
802
+
803
+ <tbody>
804
+
805
+
806
+ <tr>
807
+
808
+ <td class="name"><code>drumeo</code></td>
809
+
810
+
811
+ <td class="type">
812
+
813
+
814
+ <span class="param-type">number</span>
815
+
816
+
817
+
818
+
819
+ </td>
820
+
821
+
822
+
823
+
824
+
825
+ <td class="description last"></td>
826
+ </tr>
827
+
828
+
829
+
830
+ <tr>
831
+
832
+ <td class="name"><code>pianote</code></td>
833
+
834
+
835
+ <td class="type">
836
+
837
+
838
+ <span class="param-type">number</span>
839
+
840
+
841
+
842
+
843
+ </td>
844
+
845
+
846
+
847
+
848
+
849
+ <td class="description last"></td>
850
+ </tr>
851
+
852
+
853
+
854
+ <tr>
855
+
856
+ <td class="name"><code>guitareo</code></td>
857
+
858
+
859
+ <td class="type">
860
+
861
+
862
+ <span class="param-type">number</span>
863
+
864
+
865
+
866
+
867
+ </td>
868
+
869
+
870
+
871
+
872
+
873
+ <td class="description last"></td>
874
+ </tr>
875
+
876
+
877
+
878
+ <tr>
879
+
880
+ <td class="name"><code>singeo</code></td>
881
+
882
+
883
+ <td class="type">
884
+
885
+
886
+ <span class="param-type">number</span>
887
+
888
+
889
+
890
+
891
+ </td>
892
+
893
+
894
+
895
+
896
+
897
+ <td class="description last"></td>
898
+ </tr>
899
+
900
+
901
+ </tbody>
902
+ </table>
903
+
904
+
905
+
906
+
907
+
908
+
909
+
910
+
911
+ <h5 class="h5-types">Type:</h5>
912
+ <ul>
913
+ <li>
914
+
915
+ <span class="param-type">object</span>
916
+
917
+
918
+
919
+ </li>
920
+ </ul>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+
929
+ <h4 class="name" id="BrandTotalXp">BrandTotalXp</h4>
930
+
931
+
932
+
933
+
934
+
935
+ <dl class="details">
936
+
937
+
938
+
939
+ <dt class="tag-source">Source:</dt>
940
+ <dd class="tag-source"><ul class="dummy"><li>
941
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line9">line 9</a>
942
+ </li></ul></dd>
943
+
944
+
945
+
946
+
947
+
948
+
949
+
950
+
951
+
952
+
953
+
954
+
955
+
956
+
957
+
958
+
959
+
960
+
961
+
962
+
963
+
964
+
965
+
966
+
967
+
968
+
969
+
970
+
971
+
972
+
973
+
974
+ </dl>
975
+
976
+
977
+
978
+ <h5 class="subsection-title">Properties:</h5>
979
+
980
+
981
+
982
+ <table class="props">
983
+ <thead>
984
+ <tr>
985
+
986
+ <th>Name</th>
987
+
988
+
989
+ <th>Type</th>
990
+
991
+
992
+
993
+
994
+
995
+ <th class="last">Description</th>
996
+ </tr>
997
+ </thead>
998
+
999
+ <tbody>
1000
+
1001
+
1002
+ <tr>
1003
+
1004
+ <td class="name"><code>drumeo</code></td>
1005
+
1006
+
1007
+ <td class="type">
1008
+
1009
+
1010
+ <span class="param-type">string</span>
1011
+
1012
+
1013
+
1014
+
1015
+ </td>
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+ <td class="description last"></td>
1022
+ </tr>
1023
+
1024
+
1025
+
1026
+ <tr>
1027
+
1028
+ <td class="name"><code>pianote</code></td>
1029
+
1030
+
1031
+ <td class="type">
1032
+
1033
+
1034
+ <span class="param-type">string</span>
1035
+
1036
+
1037
+
1038
+
1039
+ </td>
1040
+
1041
+
1042
+
1043
+
1044
+
1045
+ <td class="description last"></td>
1046
+ </tr>
1047
+
1048
+
1049
+
1050
+ <tr>
1051
+
1052
+ <td class="name"><code>guitareo</code></td>
1053
+
1054
+
1055
+ <td class="type">
1056
+
1057
+
1058
+ <span class="param-type">string</span>
1059
+
1060
+
1061
+
1062
+
1063
+ </td>
1064
+
1065
+
1066
+
1067
+
1068
+
1069
+ <td class="description last"></td>
1070
+ </tr>
1071
+
1072
+
1073
+
1074
+ <tr>
1075
+
1076
+ <td class="name"><code>singeo</code></td>
1077
+
1078
+
1079
+ <td class="type">
1080
+
1081
+
1082
+ <span class="param-type">string</span>
1083
+
1084
+
1085
+
1086
+
1087
+ </td>
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+ <td class="description last"></td>
1094
+ </tr>
1095
+
1096
+
1097
+ </tbody>
1098
+ </table>
1099
+
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+ <h5 class="h5-types">Type:</h5>
1108
+ <ul>
1109
+ <li>
1110
+
1111
+ <span class="param-type">object</span>
1112
+
1113
+
1114
+
1115
+ </li>
1116
+ </ul>
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+ <h4 class="name" id="CreatePlaylistDTO">CreatePlaylistDTO</h4>
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+ <dl class="details">
1132
+
1133
+
1134
+
1135
+ <dt class="tag-source">Source:</dt>
1136
+ <dd class="tag-source"><ul class="dummy"><li>
1137
+ <a href="content-org_playlists-types.js.html">content-org/playlists-types.js</a>, <a href="content-org_playlists-types.js.html#line3">line 3</a>
1138
+ </li></ul></dd>
1139
+
1140
+
1141
+
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+ </dl>
1171
+
1172
+
1173
+
1174
+ <h5 class="subsection-title">Properties:</h5>
1175
+
1176
+
1177
+
1178
+ <table class="props">
1179
+ <thead>
1180
+ <tr>
1181
+
1182
+ <th>Name</th>
1183
+
1184
+
1185
+ <th>Type</th>
1186
+
1187
+
1188
+
1189
+
1190
+
1191
+ <th class="last">Description</th>
1192
+ </tr>
1193
+ </thead>
1194
+
1195
+ <tbody>
1196
+
1197
+
1198
+ <tr>
1199
+
1200
+ <td class="name"><code>name</code></td>
1201
+
1202
+
1203
+ <td class="type">
1204
+
1205
+
1206
+ <span class="param-type">string</span>
1207
+
1208
+
1209
+
1210
+
1211
+ </td>
1212
+
1213
+
1214
+
1215
+
1216
+
1217
+ <td class="description last">The name of the new playlist. (required, max 255 characters)</td>
1218
+ </tr>
1219
+
1220
+
1221
+
1222
+ <tr>
1223
+
1224
+ <td class="name"><code>description</code></td>
1225
+
1226
+
1227
+ <td class="type">
1228
+
1229
+
1230
+ <span class="param-type">string</span>
1231
+
1232
+
1233
+
1234
+
1235
+ </td>
1236
+
1237
+
1238
+
1239
+
1240
+
1241
+ <td class="description last">A description of the playlist. (optional, max 1000 characters)</td>
1242
+ </tr>
1243
+
1244
+
1245
+
1246
+ <tr>
1247
+
1248
+ <td class="name"><code>category</code></td>
1249
+
1250
+
1251
+ <td class="type">
1252
+
1253
+
1254
+ <span class="param-type">string</span>
1255
+
1256
+
1257
+
1258
+
1259
+ </td>
1260
+
1261
+
1262
+
1263
+
1264
+
1265
+ <td class="description last">The category of the playlist.</td>
1266
+ </tr>
1267
+
1268
+
1269
+
1270
+ <tr>
1271
+
1272
+ <td class="name"><code>thumbnail_url</code></td>
1273
+
1274
+
1275
+ <td class="type">
1276
+
1277
+
1278
+ <span class="param-type">string</span>
1279
+
1280
+
1281
+
1282
+
1283
+ </td>
1284
+
1285
+
1286
+
1287
+
1288
+
1289
+ <td class="description last">The URL of the playlist thumbnail. (optional, must be a valid URL)</td>
1290
+ </tr>
1291
+
1292
+
1293
+
1294
+ <tr>
1295
+
1296
+ <td class="name"><code>private</code></td>
1297
+
1298
+
1299
+ <td class="type">
1300
+
1301
+
1302
+ <span class="param-type">boolean</span>
1303
+
1304
+
1305
+
1306
+
1307
+ </td>
1308
+
1309
+
1310
+
1311
+
1312
+
1313
+ <td class="description last">Whether the playlist is private. (optional, defaults to true)</td>
1314
+ </tr>
1315
+
1316
+
1317
+
1318
+ <tr>
1319
+
1320
+ <td class="name"><code>brand</code></td>
1321
+
1322
+
1323
+ <td class="type">
1324
+
1325
+
1326
+ <span class="param-type">string</span>
1327
+
1328
+
1329
+
1330
+
1331
+ </td>
1332
+
1333
+
1334
+
1335
+
1336
+
1337
+ <td class="description last">Brand identifier for the playlist.</td>
1338
+ </tr>
1339
+
1340
+
1341
+ </tbody>
1342
+ </table>
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+ <h4 class="name" id="Playlist">Playlist</h4>
1359
+
1360
+
1361
+
1362
+
1363
+
1364
+ <dl class="details">
1365
+
1366
+
1367
+
1368
+ <dt class="tag-source">Source:</dt>
1369
+ <dd class="tag-source"><ul class="dummy"><li>
1370
+ <a href="content-org_playlists-types.js.html">content-org/playlists-types.js</a>, <a href="content-org_playlists-types.js.html#line13">line 13</a>
1371
+ </li></ul></dd>
1372
+
1373
+
1374
+
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+
1394
+
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+
1401
+
1402
+
1403
+ </dl>
1404
+
1405
+
1406
+
1407
+ <h5 class="subsection-title">Properties:</h5>
1408
+
1409
+
1410
+
1411
+ <table class="props">
1412
+ <thead>
1413
+ <tr>
1414
+
1415
+ <th>Name</th>
1416
+
1417
+
1418
+ <th>Type</th>
1419
+
1420
+
1421
+
1422
+
1423
+
1424
+ <th class="last">Description</th>
1425
+ </tr>
1426
+ </thead>
1427
+
1428
+ <tbody>
1429
+
1430
+
1431
+ <tr>
1432
+
1433
+ <td class="name"><code>id</code></td>
1434
+
1435
+
1436
+ <td class="type">
1437
+
1438
+
1439
+ <span class="param-type">number</span>
1440
+
1441
+
1442
+
1443
+
1444
+ </td>
1445
+
1446
+
1447
+
1448
+
1449
+
1450
+ <td class="description last"></td>
1451
+ </tr>
1452
+
1453
+
1454
+
1455
+ <tr>
1456
+
1457
+ <td class="name"><code>brand</code></td>
1458
+
1459
+
1460
+ <td class="type">
1461
+
1462
+
1463
+ <span class="param-type">string</span>
1464
+
1465
+
1466
+
1467
+
1468
+ </td>
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+ <td class="description last"></td>
1475
+ </tr>
1476
+
1477
+
1478
+
1479
+ <tr>
1480
+
1481
+ <td class="name"><code>name</code></td>
1482
+
1483
+
1484
+ <td class="type">
1485
+
1486
+
1487
+ <span class="param-type">string</span>
1488
+
1489
+
1490
+
1491
+
1492
+ </td>
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+ <td class="description last"></td>
1499
+ </tr>
1500
+
1501
+
1502
+
1503
+ <tr>
1504
+
1505
+ <td class="name"><code>description</code></td>
1506
+
1507
+
1508
+ <td class="type">
1509
+
1510
+
1511
+ <span class="param-type">string</span>
1512
+
1513
+
1514
+
1515
+
1516
+ </td>
1517
+
1518
+
1519
+
1520
+
1521
+
1522
+ <td class="description last"></td>
1523
+ </tr>
1524
+
1525
+
1526
+
1527
+ <tr>
1528
+
1529
+ <td class="name"><code>thumbnail_url</code></td>
1530
+
1531
+
1532
+ <td class="type">
1533
+
1534
+
1535
+ <span class="param-type">string</span>
1536
+ |
1537
+
1538
+ <span class="param-type">null</span>
1539
+
1540
+
1541
+
1542
+
1543
+ </td>
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+ <td class="description last"></td>
1550
+ </tr>
1551
+
1552
+
1553
+
1554
+ <tr>
1555
+
1556
+ <td class="name"><code>duration_formated</code></td>
1557
+
1558
+
1559
+ <td class="type">
1560
+
1561
+
1562
+ <span class="param-type">string</span>
1563
+
1564
+
1565
+
1566
+
1567
+ </td>
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+ <td class="description last"></td>
1574
+ </tr>
1575
+
1576
+
1577
+
1578
+ <tr>
1579
+
1580
+ <td class="name"><code>first_4_items_thumbnail_url</code></td>
1581
+
1582
+
1583
+ <td class="type">
1584
+
1585
+
1586
+ <span class="param-type">Array.&lt;string></span>
1587
+
1588
+
1589
+
1590
+
1591
+ </td>
1592
+
1593
+
1594
+
1595
+
1596
+
1597
+ <td class="description last"></td>
1598
+ </tr>
1599
+
1600
+
1601
+
1602
+ <tr>
1603
+
1604
+ <td class="name"><code>url</code></td>
1605
+
1606
+
1607
+ <td class="type">
1608
+
1609
+
1610
+ <span class="param-type">string</span>
1611
+ |
1612
+
1613
+ <span class="param-type">null</span>
1614
+
1615
+
1616
+
1617
+
1618
+ </td>
1619
+
1620
+
1621
+
1622
+
1623
+
1624
+ <td class="description last"></td>
1625
+ </tr>
1626
+
1627
+
1628
+
1629
+ <tr>
1630
+
1631
+ <td class="name"><code>playback_url</code></td>
1632
+
1633
+
1634
+ <td class="type">
1635
+
1636
+
1637
+ <span class="param-type">string</span>
1638
+ |
1639
+
1640
+ <span class="param-type">null</span>
1641
+
1642
+
1643
+
1644
+
1645
+ </td>
1646
+
1647
+
1648
+
1649
+
1650
+
1651
+ <td class="description last"></td>
1652
+ </tr>
1653
+
1654
+
1655
+
1656
+ <tr>
1657
+
1658
+ <td class="name"><code>total_items</code></td>
1659
+
1660
+
1661
+ <td class="type">
1662
+
1663
+
1664
+ <span class="param-type">number</span>
1665
+
1666
+
1667
+
1668
+
1669
+ </td>
1670
+
1671
+
1672
+
1673
+
1674
+
1675
+ <td class="description last"></td>
1676
+ </tr>
1677
+
1678
+
1679
+
1680
+ <tr>
1681
+
1682
+ <td class="name"><code>user</code></td>
1683
+
1684
+
1685
+ <td class="type">
1686
+
1687
+
1688
+ <span class="param-type"><a href="global.html#User">User</a></span>
1689
+
1690
+
1691
+
1692
+
1693
+ </td>
1694
+
1695
+
1696
+
1697
+
1698
+
1699
+ <td class="description last"></td>
1700
+ </tr>
1701
+
1702
+
1703
+ </tbody>
1704
+ </table>
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+
1711
+
1712
+
1713
+
1714
+
1715
+
1716
+
1717
+
1718
+
1719
+
1720
+ <h4 class="name" id="User">User</h4>
1721
+
1722
+
1723
+
1724
+
1725
+
1726
+ <dl class="details">
1727
+
1728
+
1729
+
1730
+ <dt class="tag-source">Source:</dt>
1731
+ <dd class="tag-source"><ul class="dummy"><li>
1732
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line25">line 25</a>
1733
+ </li></ul></dd>
1734
+
1735
+
1736
+
1737
+
1738
+
1739
+
1740
+
1741
+
1742
+
1743
+
1744
+
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+
1751
+
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+ </dl>
1766
+
1767
+
1768
+
1769
+ <h5 class="subsection-title">Properties:</h5>
1770
+
1771
+
1772
+
1773
+ <table class="props">
1774
+ <thead>
1775
+ <tr>
1776
+
1777
+ <th>Name</th>
1778
+
1779
+
1780
+ <th>Type</th>
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+ <th class="last">Description</th>
1787
+ </tr>
1788
+ </thead>
1789
+
1790
+ <tbody>
1791
+
1792
+
1793
+ <tr>
1794
+
1795
+ <td class="name"><code>id</code></td>
1796
+
1797
+
1798
+ <td class="type">
1799
+
1800
+
1801
+ <span class="param-type">number</span>
1802
+
1803
+
1804
+
1805
+
1806
+ </td>
1807
+
1808
+
1809
+
1810
+
1811
+
1812
+ <td class="description last"></td>
1813
+ </tr>
1814
+
1815
+
1816
+
1817
+ <tr>
1818
+
1819
+ <td class="name"><code>email</code></td>
1820
+
1821
+
1822
+ <td class="type">
1823
+
1824
+
1825
+ <span class="param-type">string</span>
1826
+
1827
+
1828
+
1829
+
1830
+ </td>
1831
+
1832
+
1833
+
1834
+
1835
+
1836
+ <td class="description last"></td>
1837
+ </tr>
1838
+
1839
+
1840
+
1841
+ <tr>
1842
+
1843
+ <td class="name"><code>display_name</code></td>
1844
+
1845
+
1846
+ <td class="type">
1847
+
1848
+
1849
+ <span class="param-type">string</span>
1850
+
1851
+
1852
+
1853
+
1854
+ </td>
1855
+
1856
+
1857
+
1858
+
1859
+
1860
+ <td class="description last"></td>
1861
+ </tr>
1862
+
1863
+
1864
+
1865
+ <tr>
1866
+
1867
+ <td class="name"><code>first_name</code></td>
1868
+
1869
+
1870
+ <td class="type">
1871
+
1872
+
1873
+ <span class="param-type">string</span>
1874
+
1875
+
1876
+
1877
+
1878
+ </td>
1879
+
1880
+
1881
+
1882
+
1883
+
1884
+ <td class="description last"></td>
1885
+ </tr>
1886
+
1887
+
1888
+
1889
+ <tr>
1890
+
1891
+ <td class="name"><code>last_name</code></td>
1892
+
1893
+
1894
+ <td class="type">
1895
+
1896
+
1897
+ <span class="param-type">string</span>
1898
+
1899
+
1900
+
1901
+
1902
+ </td>
1903
+
1904
+
1905
+
1906
+
1907
+
1908
+ <td class="description last"></td>
1909
+ </tr>
1910
+
1911
+
1912
+
1913
+ <tr>
1914
+
1915
+ <td class="name"><code>gender</code></td>
1916
+
1917
+
1918
+ <td class="type">
1919
+
1920
+
1921
+ <span class="param-type">string</span>
1922
+ |
1923
+
1924
+ <span class="param-type">null</span>
1925
+
1926
+
1927
+
1928
+
1929
+ </td>
1930
+
1931
+
1932
+
1933
+
1934
+
1935
+ <td class="description last"></td>
1936
+ </tr>
1937
+
1938
+
1939
+
1940
+ <tr>
1941
+
1942
+ <td class="name"><code>country</code></td>
1943
+
1944
+
1945
+ <td class="type">
1946
+
1947
+
1948
+ <span class="param-type">string</span>
1949
+
1950
+
1951
+
1952
+
1953
+ </td>
1954
+
1955
+
1956
+
1957
+
1958
+
1959
+ <td class="description last"></td>
1960
+ </tr>
1961
+
1962
+
1963
+
1964
+ <tr>
1965
+
1966
+ <td class="name"><code>region</code></td>
1967
+
1968
+
1969
+ <td class="type">
1970
+
1971
+
1972
+ <span class="param-type">string</span>
1973
+ |
1974
+
1975
+ <span class="param-type">null</span>
1976
+
1977
+
1978
+
1979
+
1980
+ </td>
1981
+
1982
+
1983
+
1984
+
1985
+
1986
+ <td class="description last"></td>
1987
+ </tr>
1988
+
1989
+
1990
+
1991
+ <tr>
1992
+
1993
+ <td class="name"><code>city</code></td>
1994
+
1995
+
1996
+ <td class="type">
1997
+
1998
+
1999
+ <span class="param-type">string</span>
2000
+ |
2001
+
2002
+ <span class="param-type">null</span>
2003
+
2004
+
2005
+
2006
+
2007
+ </td>
2008
+
2009
+
2010
+
2011
+
2012
+
2013
+ <td class="description last"></td>
2014
+ </tr>
2015
+
2016
+
2017
+
2018
+ <tr>
2019
+
2020
+ <td class="name"><code>birthday</code></td>
2021
+
2022
+
2023
+ <td class="type">
2024
+
2025
+
2026
+ <span class="param-type">string</span>
2027
+
2028
+
2029
+
2030
+
2031
+ </td>
2032
+
2033
+
2034
+
2035
+
2036
+
2037
+ <td class="description last"></td>
2038
+ </tr>
2039
+
2040
+
2041
+
2042
+ <tr>
2043
+
2044
+ <td class="name"><code>phone_number</code></td>
2045
+
2046
+
2047
+ <td class="type">
2048
+
2049
+
2050
+ <span class="param-type">string</span>
2051
+ |
2052
+
2053
+ <span class="param-type">null</span>
2054
+
2055
+
2056
+
2057
+
2058
+ </td>
2059
+
2060
+
2061
+
2062
+
2063
+
2064
+ <td class="description last"></td>
2065
+ </tr>
2066
+
2067
+
2068
+
2069
+ <tr>
2070
+
2071
+ <td class="name"><code>profile_picture_url</code></td>
2072
+
2073
+
2074
+ <td class="type">
2075
+
2076
+
2077
+ <span class="param-type">string</span>
2078
+
2079
+
2080
+
2081
+
2082
+ </td>
2083
+
2084
+
2085
+
2086
+
2087
+
2088
+ <td class="description last"></td>
2089
+ </tr>
2090
+
2091
+
2092
+
2093
+ <tr>
2094
+
2095
+ <td class="name"><code>timezone</code></td>
2096
+
2097
+
2098
+ <td class="type">
2099
+
2100
+
2101
+ <span class="param-type">string</span>
2102
+
2103
+
2104
+
2105
+
2106
+ </td>
2107
+
2108
+
2109
+
2110
+
2111
+
2112
+ <td class="description last"></td>
2113
+ </tr>
2114
+
2115
+
2116
+
2117
+ <tr>
2118
+
2119
+ <td class="name"><code>permission_level</code></td>
2120
+
2121
+
2122
+ <td class="type">
2123
+
2124
+
2125
+ <span class="param-type">string</span>
2126
+
2127
+
2128
+
2129
+
2130
+ </td>
2131
+
2132
+
2133
+
2134
+
2135
+
2136
+ <td class="description last"></td>
2137
+ </tr>
2138
+
2139
+
2140
+
2141
+ <tr>
2142
+
2143
+ <td class="name"><code>last_used_brand</code></td>
2144
+
2145
+
2146
+ <td class="type">
2147
+
2148
+
2149
+ <span class="param-type">string</span>
2150
+
2151
+
2152
+
2153
+
2154
+ </td>
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+ <td class="description last"></td>
2161
+ </tr>
2162
+
2163
+
2164
+
2165
+ <tr>
2166
+
2167
+ <td class="name"><code>membership_level</code></td>
2168
+
2169
+
2170
+ <td class="type">
2171
+
2172
+
2173
+ <span class="param-type">string</span>
2174
+
2175
+
2176
+
2177
+
2178
+ </td>
2179
+
2180
+
2181
+
2182
+
2183
+
2184
+ <td class="description last"></td>
2185
+ </tr>
2186
+
2187
+
2188
+
2189
+ <tr>
2190
+
2191
+ <td class="name"><code>membership_start_date</code></td>
2192
+
2193
+
2194
+ <td class="type">
2195
+
2196
+
2197
+ <span class="param-type">string</span>
2198
+ |
2199
+
2200
+ <span class="param-type">null</span>
2201
+
2202
+
2203
+
2204
+
2205
+ </td>
2206
+
2207
+
2208
+
2209
+
2210
+
2211
+ <td class="description last"></td>
2212
+ </tr>
2213
+
2214
+
2215
+
2216
+ <tr>
2217
+
2218
+ <td class="name"><code>membership_expiration_date</code></td>
2219
+
2220
+
2221
+ <td class="type">
2222
+
2223
+
2224
+ <span class="param-type">string</span>
2225
+
2226
+
2227
+
2228
+
2229
+ </td>
2230
+
2231
+
2232
+
2233
+
2234
+
2235
+ <td class="description last"></td>
2236
+ </tr>
2237
+
2238
+
2239
+
2240
+ <tr>
2241
+
2242
+ <td class="name"><code>is_lifetime_member</code></td>
2243
+
2244
+
2245
+ <td class="type">
2246
+
2247
+
2248
+ <span class="param-type">number</span>
2249
+
2250
+
2251
+
2252
+
2253
+ </td>
2254
+
2255
+
2256
+
2257
+
2258
+
2259
+ <td class="description last"></td>
2260
+ </tr>
2261
+
2262
+
2263
+
2264
+ <tr>
2265
+
2266
+ <td class="name"><code>revenuecat_origin_app_user_id</code></td>
2267
+
2268
+
2269
+ <td class="type">
2270
+
2271
+
2272
+ <span class="param-type">string</span>
2273
+ |
2274
+
2275
+ <span class="param-type">null</span>
2276
+
2277
+
2278
+
2279
+
2280
+ </td>
2281
+
2282
+
2283
+
2284
+
2285
+
2286
+ <td class="description last"></td>
2287
+ </tr>
2288
+
2289
+
2290
+
2291
+ <tr>
2292
+
2293
+ <td class="name"><code>is_drumeo_lifetime_member</code></td>
2294
+
2295
+
2296
+ <td class="type">
2297
+
2298
+
2299
+ <span class="param-type">number</span>
2300
+
2301
+
2302
+
2303
+
2304
+ </td>
2305
+
2306
+
2307
+
2308
+
2309
+
2310
+ <td class="description last"></td>
2311
+ </tr>
2312
+
2313
+
2314
+
2315
+ <tr>
2316
+
2317
+ <td class="name"><code>access_level</code></td>
2318
+
2319
+
2320
+ <td class="type">
2321
+
2322
+
2323
+ <span class="param-type">string</span>
2324
+
2325
+
2326
+
2327
+
2328
+ </td>
2329
+
2330
+
2331
+
2332
+
2333
+
2334
+ <td class="description last"></td>
2335
+ </tr>
2336
+
2337
+
2338
+
2339
+ <tr>
2340
+
2341
+ <td class="name"><code>total_xp</code></td>
2342
+
2343
+
2344
+ <td class="type">
2345
+
2346
+
2347
+ <span class="param-type">number</span>
2348
+
2349
+
2350
+
2351
+
2352
+ </td>
2353
+
2354
+
2355
+
2356
+
2357
+
2358
+ <td class="description last"></td>
2359
+ </tr>
2360
+
2361
+
2362
+
2363
+ <tr>
2364
+
2365
+ <td class="name"><code>brand_method_levels</code></td>
2366
+
2367
+
2368
+ <td class="type">
2369
+
2370
+
2371
+ <span class="param-type"><a href="global.html#BrandMethodLevels">BrandMethodLevels</a></span>
2372
+
2373
+
2374
+
2375
+
2376
+ </td>
2377
+
2378
+
2379
+
2380
+
2381
+
2382
+ <td class="description last"></td>
2383
+ </tr>
2384
+
2385
+
2386
+
2387
+ <tr>
2388
+
2389
+ <td class="name"><code>brand_total_xp</code></td>
2390
+
2391
+
2392
+ <td class="type">
2393
+
2394
+
2395
+ <span class="param-type"><a href="global.html#BrandTotalXp">BrandTotalXp</a></span>
2396
+
2397
+
2398
+
2399
+
2400
+ </td>
2401
+
2402
+
2403
+
2404
+
2405
+
2406
+ <td class="description last"></td>
2407
+ </tr>
2408
+
2409
+
2410
+
2411
+ <tr>
2412
+
2413
+ <td class="name"><code>brand_minutes_practiced</code></td>
2414
+
2415
+
2416
+ <td class="type">
2417
+
2418
+
2419
+ <span class="param-type"><a href="global.html#BrandTimePracticed">BrandTimePracticed</a></span>
2420
+
2421
+
2422
+
2423
+
2424
+ </td>
2425
+
2426
+
2427
+
2428
+
2429
+
2430
+ <td class="description last"></td>
2431
+ </tr>
2432
+
2433
+
2434
+
2435
+ <tr>
2436
+
2437
+ <td class="name"><code>brand_seconds_practiced</code></td>
2438
+
2439
+
2440
+ <td class="type">
2441
+
2442
+
2443
+ <span class="param-type"><a href="global.html#BrandTimePracticed">BrandTimePracticed</a></span>
2444
+
2445
+
2446
+
2447
+
2448
+ </td>
2449
+
2450
+
2451
+
2452
+
2453
+
2454
+ <td class="description last"></td>
2455
+ </tr>
2456
+
2457
+
2458
+
2459
+ <tr>
2460
+
2461
+ <td class="name"><code>guitar_playing_since_year</code></td>
2462
+
2463
+
2464
+ <td class="type">
2465
+
2466
+
2467
+ <span class="param-type">number</span>
2468
+ |
2469
+
2470
+ <span class="param-type">null</span>
2471
+
2472
+
2473
+
2474
+
2475
+ </td>
2476
+
2477
+
2478
+
2479
+
2480
+
2481
+ <td class="description last"></td>
2482
+ </tr>
2483
+
2484
+
2485
+
2486
+ <tr>
2487
+
2488
+ <td class="name"><code>drumeo_onboarding_skip_setup</code></td>
2489
+
2490
+
2491
+ <td class="type">
2492
+
2493
+
2494
+ <span class="param-type">number</span>
2495
+
2496
+
2497
+
2498
+
2499
+ </td>
2500
+
2501
+
2502
+
2503
+
2504
+
2505
+ <td class="description last"></td>
2506
+ </tr>
2507
+
2508
+
2509
+
2510
+ <tr>
2511
+
2512
+ <td class="name"><code>pianote_onboarding_skip_setup</code></td>
2513
+
2514
+
2515
+ <td class="type">
2516
+
2517
+
2518
+ <span class="param-type">number</span>
2519
+
2520
+
2521
+
2522
+
2523
+ </td>
2524
+
2525
+
2526
+
2527
+
2528
+
2529
+ <td class="description last"></td>
2530
+ </tr>
2531
+
2532
+
2533
+
2534
+ <tr>
2535
+
2536
+ <td class="name"><code>guitareo_onboarding_skip_setup</code></td>
2537
+
2538
+
2539
+ <td class="type">
2540
+
2541
+
2542
+ <span class="param-type">number</span>
2543
+
2544
+
2545
+
2546
+
2547
+ </td>
2548
+
2549
+
2550
+
2551
+
2552
+
2553
+ <td class="description last"></td>
2554
+ </tr>
2555
+
2556
+
2557
+
2558
+ <tr>
2559
+
2560
+ <td class="name"><code>singeo_onboarding_skip_setup</code></td>
2561
+
2562
+
2563
+ <td class="type">
2564
+
2565
+
2566
+ <span class="param-type">number</span>
2567
+
2568
+
2569
+
2570
+
2571
+ </td>
2572
+
2573
+
2574
+
2575
+
2576
+
2577
+ <td class="description last"></td>
2578
+ </tr>
2579
+
2580
+
2581
+
2582
+ <tr>
2583
+
2584
+ <td class="name"><code>drumeo_trial_section_hide</code></td>
2585
+
2586
+
2587
+ <td class="type">
2588
+
2589
+
2590
+ <span class="param-type">number</span>
2591
+
2592
+
2593
+
2594
+
2595
+ </td>
2596
+
2597
+
2598
+
2599
+
2600
+
2601
+ <td class="description last"></td>
2602
+ </tr>
2603
+
2604
+
2605
+
2606
+ <tr>
2607
+
2608
+ <td class="name"><code>pianote_trial_section_hide</code></td>
2609
+
2610
+
2611
+ <td class="type">
2612
+
2613
+
2614
+ <span class="param-type">number</span>
2615
+
2616
+
2617
+
2618
+
2619
+ </td>
2620
+
2621
+
2622
+
2623
+
2624
+
2625
+ <td class="description last"></td>
2626
+ </tr>
2627
+
2628
+
2629
+
2630
+ <tr>
2631
+
2632
+ <td class="name"><code>guitareo_trial_section_hide</code></td>
2633
+
2634
+
2635
+ <td class="type">
2636
+
2637
+
2638
+ <span class="param-type">number</span>
2639
+
2640
+
2641
+
2642
+
2643
+ </td>
2644
+
2645
+
2646
+
2647
+
2648
+
2649
+ <td class="description last"></td>
2650
+ </tr>
2651
+
2652
+
2653
+
2654
+ <tr>
2655
+
2656
+ <td class="name"><code>singeo_trial_section_hide</code></td>
2657
+
2658
+
2659
+ <td class="type">
2660
+
2661
+
2662
+ <span class="param-type">number</span>
2663
+
2664
+
2665
+
2666
+
2667
+ </td>
2668
+
2669
+
2670
+
2671
+
2672
+
2673
+ <td class="description last"></td>
2674
+ </tr>
2675
+
2676
+
2677
+
2678
+ <tr>
2679
+
2680
+ <td class="name"><code>notify_on_lesson_comment_like</code></td>
2681
+
2682
+
2683
+ <td class="type">
2684
+
2685
+
2686
+ <span class="param-type">number</span>
2687
+
2688
+
2689
+
2690
+
2691
+ </td>
2692
+
2693
+
2694
+
2695
+
2696
+
2697
+ <td class="description last"></td>
2698
+ </tr>
2699
+
2700
+
2701
+
2702
+ <tr>
2703
+
2704
+ <td class="name"><code>notifications_summary_frequency_minutes</code></td>
2705
+
2706
+
2707
+ <td class="type">
2708
+
2709
+
2710
+ <span class="param-type">number</span>
2711
+ |
2712
+
2713
+ <span class="param-type">null</span>
2714
+
2715
+
2716
+
2717
+
2718
+ </td>
2719
+
2720
+
2721
+
2722
+
2723
+
2724
+ <td class="description last"></td>
2725
+ </tr>
2726
+
2727
+
2728
+
2729
+ <tr>
2730
+
2731
+ <td class="name"><code>notify_on_forum_post_reply</code></td>
2732
+
2733
+
2734
+ <td class="type">
2735
+
2736
+
2737
+ <span class="param-type">number</span>
2738
+
2739
+
2740
+
2741
+
2742
+ </td>
2743
+
2744
+
2745
+
2746
+
2747
+
2748
+ <td class="description last"></td>
2749
+ </tr>
2750
+
2751
+
2752
+
2753
+ <tr>
2754
+
2755
+ <td class="name"><code>notify_on_forum_followed_thread_reply</code></td>
2756
+
2757
+
2758
+ <td class="type">
2759
+
2760
+
2761
+ <span class="param-type">number</span>
2762
+
2763
+
2764
+
2765
+
2766
+ </td>
2767
+
2768
+
2769
+
2770
+
2771
+
2772
+ <td class="description last"></td>
2773
+ </tr>
2774
+
2775
+
2776
+
2777
+ <tr>
2778
+
2779
+ <td class="name"><code>notify_on_forum_post_like</code></td>
2780
+
2781
+
2782
+ <td class="type">
2783
+
2784
+
2785
+ <span class="param-type">number</span>
2786
+
2787
+
2788
+
2789
+
2790
+ </td>
2791
+
2792
+
2793
+
2794
+
2795
+
2796
+ <td class="description last"></td>
2797
+ </tr>
2798
+
2799
+
2800
+
2801
+ <tr>
2802
+
2803
+ <td class="name"><code>notify_weekly_update</code></td>
2804
+
2805
+
2806
+ <td class="type">
2807
+
2808
+
2809
+ <span class="param-type">number</span>
2810
+
2811
+
2812
+
2813
+
2814
+ </td>
2815
+
2816
+
2817
+
2818
+
2819
+
2820
+ <td class="description last"></td>
2821
+ </tr>
2822
+
2823
+
2824
+
2825
+ <tr>
2826
+
2827
+ <td class="name"><code>notify_on_lesson_comment_reply</code></td>
2828
+
2829
+
2830
+ <td class="type">
2831
+
2832
+
2833
+ <span class="param-type">number</span>
2834
+
2835
+
2836
+
2837
+
2838
+ </td>
2839
+
2840
+
2841
+
2842
+
2843
+
2844
+ <td class="description last"></td>
2845
+ </tr>
2846
+
2847
+
2848
+
2849
+ <tr>
2850
+
2851
+ <td class="name"><code>challenges_enrollment_notifications</code></td>
2852
+
2853
+
2854
+ <td class="type">
2855
+
2856
+
2857
+ <span class="param-type">number</span>
2858
+ |
2859
+
2860
+ <span class="param-type">null</span>
2861
+
2862
+
2863
+
2864
+
2865
+ </td>
2866
+
2867
+
2868
+
2869
+
2870
+
2871
+ <td class="description last"></td>
2872
+ </tr>
2873
+
2874
+
2875
+
2876
+ <tr>
2877
+
2878
+ <td class="name"><code>challenges_community_notifications</code></td>
2879
+
2880
+
2881
+ <td class="type">
2882
+
2883
+
2884
+ <span class="param-type">number</span>
2885
+ |
2886
+
2887
+ <span class="param-type">null</span>
2888
+
2889
+
2890
+
2891
+
2892
+ </td>
2893
+
2894
+
2895
+
2896
+
2897
+
2898
+ <td class="description last"></td>
2899
+ </tr>
2900
+
2901
+
2902
+
2903
+ <tr>
2904
+
2905
+ <td class="name"><code>challenges_solo_notifications</code></td>
2906
+
2907
+
2908
+ <td class="type">
2909
+
2910
+
2911
+ <span class="param-type">number</span>
2912
+ |
2913
+
2914
+ <span class="param-type">null</span>
2915
+
2916
+
2917
+
2918
+
2919
+ </td>
2920
+
2921
+
2922
+
2923
+
2924
+
2925
+ <td class="description last"></td>
2926
+ </tr>
2927
+
2928
+
2929
+
2930
+ <tr>
2931
+
2932
+ <td class="name"><code>send_mobile_app_push_notifications</code></td>
2933
+
2934
+
2935
+ <td class="type">
2936
+
2937
+
2938
+ <span class="param-type">number</span>
2939
+
2940
+
2941
+
2942
+
2943
+ </td>
2944
+
2945
+
2946
+
2947
+
2948
+
2949
+ <td class="description last"></td>
2950
+ </tr>
2951
+
2952
+
2953
+
2954
+ <tr>
2955
+
2956
+ <td class="name"><code>send_email_notifications</code></td>
2957
+
2958
+
2959
+ <td class="type">
2960
+
2961
+
2962
+ <span class="param-type">number</span>
2963
+
2964
+
2965
+
2966
+
2967
+ </td>
2968
+
2969
+
2970
+
2971
+
2972
+
2973
+ <td class="description last"></td>
2974
+ </tr>
2975
+
2976
+
2977
+
2978
+ <tr>
2979
+
2980
+ <td class="name"><code>use_legacy_video_player</code></td>
2981
+
2982
+
2983
+ <td class="type">
2984
+
2985
+
2986
+ <span class="param-type">number</span>
2987
+
2988
+
2989
+
2990
+
2991
+ </td>
2992
+
2993
+
2994
+
2995
+
2996
+
2997
+ <td class="description last"></td>
2998
+ </tr>
2999
+
3000
+
3001
+
3002
+ <tr>
3003
+
3004
+ <td class="name"><code>drumeo_ship_magazine</code></td>
3005
+
3006
+
3007
+ <td class="type">
3008
+
3009
+
3010
+ <span class="param-type">number</span>
3011
+
3012
+
3013
+
3014
+
3015
+ </td>
3016
+
3017
+
3018
+
3019
+
3020
+
3021
+ <td class="description last"></td>
3022
+ </tr>
3023
+
3024
+
3025
+
3026
+ <tr>
3027
+
3028
+ <td class="name"><code>magazine_shipping_address_id</code></td>
3029
+
3030
+
3031
+ <td class="type">
3032
+
3033
+
3034
+ <span class="param-type">string</span>
3035
+ |
3036
+
3037
+ <span class="param-type">null</span>
3038
+
3039
+
3040
+
3041
+
3042
+ </td>
3043
+
3044
+
3045
+
3046
+
3047
+
3048
+ <td class="description last"></td>
3049
+ </tr>
3050
+
3051
+
3052
+
3053
+ <tr>
3054
+
3055
+ <td class="name"><code>ios_latest_review_display_date</code></td>
3056
+
3057
+
3058
+ <td class="type">
3059
+
3060
+
3061
+ <span class="param-type">string</span>
3062
+ |
3063
+
3064
+ <span class="param-type">null</span>
3065
+
3066
+
3067
+
3068
+
3069
+ </td>
3070
+
3071
+
3072
+
3073
+
3074
+
3075
+ <td class="description last"></td>
3076
+ </tr>
3077
+
3078
+
3079
+
3080
+ <tr>
3081
+
3082
+ <td class="name"><code>ios_count_review_display</code></td>
3083
+
3084
+
3085
+ <td class="type">
3086
+
3087
+
3088
+ <span class="param-type">number</span>
3089
+
3090
+
3091
+
3092
+
3093
+ </td>
3094
+
3095
+
3096
+
3097
+
3098
+
3099
+ <td class="description last"></td>
3100
+ </tr>
3101
+
3102
+
3103
+
3104
+ <tr>
3105
+
3106
+ <td class="name"><code>google_latest_review_display_date</code></td>
3107
+
3108
+
3109
+ <td class="type">
3110
+
3111
+
3112
+ <span class="param-type">string</span>
3113
+ |
3114
+
3115
+ <span class="param-type">null</span>
3116
+
3117
+
3118
+
3119
+
3120
+ </td>
3121
+
3122
+
3123
+
3124
+
3125
+
3126
+ <td class="description last"></td>
3127
+ </tr>
3128
+
3129
+
3130
+
3131
+ <tr>
3132
+
3133
+ <td class="name"><code>google_count_review_display</code></td>
3134
+
3135
+
3136
+ <td class="type">
3137
+
3138
+
3139
+ <span class="param-type">number</span>
3140
+
3141
+
3142
+
3143
+
3144
+ </td>
3145
+
3146
+
3147
+
3148
+
3149
+
3150
+ <td class="description last"></td>
3151
+ </tr>
3152
+
3153
+
3154
+
3155
+ <tr>
3156
+
3157
+ <td class="name"><code>biography</code></td>
3158
+
3159
+
3160
+ <td class="type">
3161
+
3162
+
3163
+ <span class="param-type">string</span>
3164
+ |
3165
+
3166
+ <span class="param-type">null</span>
3167
+
3168
+
3169
+
3170
+
3171
+ </td>
3172
+
3173
+
3174
+
3175
+
3176
+
3177
+ <td class="description last"></td>
3178
+ </tr>
3179
+
3180
+
3181
+
3182
+ <tr>
3183
+
3184
+ <td class="name"><code>support_note</code></td>
3185
+
3186
+
3187
+ <td class="type">
3188
+
3189
+
3190
+ <span class="param-type">string</span>
3191
+ |
3192
+
3193
+ <span class="param-type">null</span>
3194
+
3195
+
3196
+
3197
+
3198
+ </td>
3199
+
3200
+
3201
+
3202
+
3203
+
3204
+ <td class="description last"></td>
3205
+ </tr>
3206
+
3207
+
3208
+
3209
+ <tr>
3210
+
3211
+ <td class="name"><code>created_at</code></td>
3212
+
3213
+
3214
+ <td class="type">
3215
+
3216
+
3217
+ <span class="param-type">string</span>
3218
+
3219
+
3220
+
3221
+
3222
+ </td>
3223
+
3224
+
3225
+
3226
+
3227
+
3228
+ <td class="description last"></td>
3229
+ </tr>
3230
+
3231
+
3232
+
3233
+ <tr>
3234
+
3235
+ <td class="name"><code>updated_at</code></td>
3236
+
3237
+
3238
+ <td class="type">
3239
+
3240
+
3241
+ <span class="param-type">string</span>
3242
+
3243
+
3244
+
3245
+
3246
+ </td>
3247
+
3248
+
3249
+
3250
+
3251
+
3252
+ <td class="description last"></td>
3253
+ </tr>
3254
+
3255
+
3256
+
3257
+ <tr>
3258
+
3259
+ <td class="name"><code>is_pack_owner</code></td>
3260
+
3261
+
3262
+ <td class="type">
3263
+
3264
+
3265
+ <span class="param-type">number</span>
3266
+
3267
+
3268
+
3269
+
3270
+ </td>
3271
+
3272
+
3273
+
3274
+
3275
+
3276
+ <td class="description last"></td>
3277
+ </tr>
3278
+
3279
+
3280
+
3281
+ <tr>
3282
+
3283
+ <td class="name"><code>has_recharge_subscription</code></td>
3284
+
3285
+
3286
+ <td class="type">
3287
+
3288
+
3289
+ <span class="param-type">number</span>
3290
+
3291
+
3292
+
3293
+
3294
+ </td>
3295
+
3296
+
3297
+
3298
+
3299
+
3300
+ <td class="description last"></td>
3301
+ </tr>
3302
+
3303
+
3304
+
3305
+ <tr>
3306
+
3307
+ <td class="name"><code>recharge_interval</code></td>
3308
+
3309
+
3310
+ <td class="type">
3311
+
3312
+
3313
+ <span class="param-type">string</span>
3314
+ |
3315
+
3316
+ <span class="param-type">null</span>
3317
+
3318
+
3319
+
3320
+
3321
+ </td>
3322
+
3323
+
3324
+
3325
+
3326
+
3327
+ <td class="description last"></td>
3328
+ </tr>
3329
+
3330
+
3331
+
3332
+ <tr>
3333
+
3334
+ <td class="name"><code>has_apple_subscription</code></td>
3335
+
3336
+
3337
+ <td class="type">
3338
+
3339
+
3340
+ <span class="param-type">number</span>
3341
+
3342
+
3343
+
3344
+
3345
+ </td>
3346
+
3347
+
3348
+
3349
+
3350
+
3351
+ <td class="description last"></td>
3352
+ </tr>
3353
+
3354
+
3355
+
3356
+ <tr>
3357
+
3358
+ <td class="name"><code>has_google_subscription</code></td>
3359
+
3360
+
3361
+ <td class="type">
3362
+
3363
+
3364
+ <span class="param-type">number</span>
3365
+
3366
+
3367
+
3368
+
3369
+ </td>
3370
+
3371
+
3372
+
3373
+
3374
+
3375
+ <td class="description last"></td>
3376
+ </tr>
3377
+
3378
+
3379
+
3380
+ <tr>
3381
+
3382
+ <td class="name"><code>requires_password_update</code></td>
3383
+
3384
+
3385
+ <td class="type">
3386
+
3387
+
3388
+ <span class="param-type">number</span>
3389
+
3390
+
3391
+
3392
+
3393
+ </td>
3394
+
3395
+
3396
+
3397
+
3398
+
3399
+ <td class="description last"></td>
3400
+ </tr>
3401
+
3402
+
3403
+
3404
+ <tr>
3405
+
3406
+ <td class="name"><code>cio_synced_workspaces</code></td>
3407
+
3408
+
3409
+ <td class="type">
3410
+
3411
+
3412
+ <span class="param-type">number</span>
3413
+
3414
+
3415
+
3416
+
3417
+ </td>
3418
+
3419
+
3420
+
3421
+
3422
+
3423
+ <td class="description last"></td>
3424
+ </tr>
3425
+
3426
+
3427
+
3428
+ <tr>
3429
+
3430
+ <td class="name"><code>recharge_renewal_date</code></td>
3431
+
3432
+
3433
+ <td class="type">
3434
+
3435
+
3436
+ <span class="param-type">string</span>
3437
+ |
3438
+
3439
+ <span class="param-type">null</span>
3440
+
3441
+
3442
+
3443
+
3444
+ </td>
3445
+
3446
+
3447
+
3448
+
3449
+
3450
+ <td class="description last"></td>
3451
+ </tr>
3452
+
3453
+
3454
+
3455
+ <tr>
3456
+
3457
+ <td class="name"><code>trial_expiration_date</code></td>
3458
+
3459
+
3460
+ <td class="type">
3461
+
3462
+
3463
+ <span class="param-type">string</span>
3464
+ |
3465
+
3466
+ <span class="param-type">null</span>
3467
+
3468
+
3469
+
3470
+
3471
+ </td>
3472
+
3473
+
3474
+
3475
+
3476
+
3477
+ <td class="description last"></td>
3478
+ </tr>
3479
+
3480
+
3481
+
3482
+ <tr>
3483
+
3484
+ <td class="name"><code>is_trial</code></td>
3485
+
3486
+
3487
+ <td class="type">
3488
+
3489
+
3490
+ <span class="param-type">number</span>
3491
+
3492
+
3493
+
3494
+
3495
+ </td>
3496
+
3497
+
3498
+
3499
+
3500
+
3501
+ <td class="description last"></td>
3502
+ </tr>
3503
+
3504
+
3505
+
3506
+ <tr>
3507
+
3508
+ <td class="name"><code>legacy_expiration_date</code></td>
3509
+
3510
+
3511
+ <td class="type">
3512
+
3513
+
3514
+ <span class="param-type">string</span>
3515
+ |
3516
+
3517
+ <span class="param-type">null</span>
3518
+
3519
+
3520
+
3521
+
3522
+ </td>
3523
+
3524
+
3525
+
3526
+
3527
+
3528
+ <td class="description last"></td>
3529
+ </tr>
3530
+
3531
+
3532
+
3533
+ <tr>
3534
+
3535
+ <td class="name"><code>needs_logout</code></td>
3536
+
3537
+
3538
+ <td class="type">
3539
+
3540
+
3541
+ <span class="param-type">boolean</span>
3542
+
3543
+
3544
+
3545
+
3546
+ </td>
3547
+
3548
+
3549
+
3550
+
3551
+
3552
+ <td class="description last"></td>
3553
+ </tr>
3554
+
3555
+
3556
+
3557
+ <tr>
3558
+
3559
+ <td class="name"><code>primary_brand</code></td>
3560
+
3561
+
3562
+ <td class="type">
3563
+
3564
+
3565
+ <span class="param-type">string</span>
3566
+
3567
+
3568
+
3569
+
3570
+ </td>
3571
+
3572
+
3573
+
3574
+
3575
+
3576
+ <td class="description last"></td>
3577
+ </tr>
3578
+
3579
+
3580
+
3581
+ <tr>
3582
+
3583
+ <td class="name"><code>first_access_at</code></td>
3584
+
3585
+
3586
+ <td class="type">
3587
+
3588
+
3589
+ <span class="param-type">string</span>
3590
+
3591
+
3592
+
3593
+
3594
+ </td>
3595
+
3596
+
3597
+
3598
+
3599
+
3600
+ <td class="description last"></td>
3601
+ </tr>
3602
+
3603
+
3604
+
3605
+ <tr>
3606
+
3607
+ <td class="name"><code>is_challenge_owner</code></td>
3608
+
3609
+
3610
+ <td class="type">
3611
+
3612
+
3613
+ <span class="param-type">number</span>
3614
+
3615
+
3616
+
3617
+
3618
+ </td>
3619
+
3620
+
3621
+
3622
+
3623
+
3624
+ <td class="description last"></td>
3625
+ </tr>
3626
+
3627
+
3628
+
3629
+ <tr>
3630
+
3631
+ <td class="name"><code>login_as_users</code></td>
3632
+
3633
+
3634
+ <td class="type">
3635
+
3636
+
3637
+ <span class="param-type">boolean</span>
3638
+
3639
+
3640
+
3641
+
3642
+ </td>
3643
+
3644
+
3645
+
3646
+
3647
+
3648
+ <td class="description last"></td>
3649
+ </tr>
3650
+
3651
+
3652
+ </tbody>
3653
+ </table>
3654
+
3655
+
3656
+
3657
+
3658
+
3659
+
3660
+
3661
+
3662
+ <h5 class="h5-types">Type:</h5>
3663
+ <ul>
3664
+ <li>
3665
+
3666
+ <span class="param-type">Object</span>
3667
+
3668
+
3669
+
3670
+ </li>
3671
+ </ul>
3672
+
3673
+
3674
+
3675
+
3676
+
3677
+
3678
+
3679
+
3680
+ <h4 class="name" id="UserPermissions">UserPermissions</h4>
3681
+
3682
+
3683
+
3684
+
3685
+
3686
+ <dl class="details">
3687
+
3688
+
3689
+
3690
+ <dt class="tag-source">Source:</dt>
3691
+ <dd class="tag-source"><ul class="dummy"><li>
3692
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line110">line 110</a>
3693
+ </li></ul></dd>
3694
+
3695
+
3696
+
3697
+
3698
+
3699
+
3700
+
3701
+
3702
+
3703
+
3704
+
3705
+
3706
+
3707
+
3708
+
3709
+
3710
+
3711
+
3712
+
3713
+
3714
+
3715
+
3716
+
3717
+
3718
+
3719
+
3720
+
3721
+
3722
+
3723
+
3724
+
3725
+ </dl>
3726
+
3727
+
3728
+
3729
+ <h5 class="subsection-title">Properties:</h5>
3730
+
3731
+
3732
+
3733
+ <table class="props">
3734
+ <thead>
3735
+ <tr>
3736
+
3737
+ <th>Name</th>
3738
+
3739
+
3740
+ <th>Type</th>
3741
+
3742
+
3743
+
3744
+
3745
+
3746
+ <th class="last">Description</th>
3747
+ </tr>
3748
+ </thead>
3749
+
3750
+ <tbody>
3751
+
3752
+
3753
+ <tr>
3754
+
3755
+ <td class="name"><code>permissions</code></td>
3756
+
3757
+
3758
+ <td class="type">
3759
+
3760
+
3761
+ <span class="param-type">Array.&lt;string></span>
3762
+
3763
+
3764
+
3765
+
3766
+ </td>
3767
+
3768
+
3769
+
3770
+
3771
+
3772
+ <td class="description last"></td>
3773
+ </tr>
3774
+
3775
+
3776
+
3777
+ <tr>
3778
+
3779
+ <td class="name"><code>isAdmin</code></td>
3780
+
3781
+
3782
+ <td class="type">
3783
+
3784
+
3785
+ <span class="param-type">boolean</span>
3786
+
3787
+
3788
+
3789
+
3790
+ </td>
3791
+
3792
+
3793
+
3794
+
3795
+
3796
+ <td class="description last"></td>
3797
+ </tr>
3798
+
3799
+
3800
+
3801
+ <tr>
3802
+
3803
+ <td class="name"><code>isABasicMember</code></td>
3804
+
3805
+
3806
+ <td class="type">
3807
+
3808
+
3809
+ <span class="param-type">boolean</span>
3810
+
3811
+
3812
+
3813
+
3814
+ </td>
3815
+
3816
+
3817
+
3818
+
3819
+
3820
+ <td class="description last"></td>
3821
+ </tr>
3822
+
3823
+
3824
+ </tbody>
3825
+ </table>
3826
+
3827
+
3828
+
3829
+
3830
+
3831
+
3832
+
3833
+
3834
+ <h5 class="h5-types">Type:</h5>
3835
+ <ul>
3836
+ <li>
3837
+
3838
+ <span class="param-type">Object</span>
3839
+
3840
+
3841
+
3842
+ </li>
3843
+ </ul>
3844
+
3845
+
3846
+
3847
+
3848
+
3849
+
3850
+
3851
+
3852
+
3853
+
3854
+ </article>
3855
+
3856
+ </section>
3857
+
3858
+
3859
+
3860
+
3861
+
3862
+
3863
+ </div>
3864
+
3865
+ <br class="clear">
3866
+
3867
+ <footer>
3868
+ 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.
3869
+ </footer>
3870
+
3871
+ <script>prettyPrint();</script>
3872
+ <script src="scripts/polyfill.js"></script>
3873
+ <script src="scripts/linenumber.js"></script>
3874
+
3875
+
3876
+
3877
+ </body>
3878
+ </html>