musora-content-services 1.3.19 → 2.0.2

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 (46) hide show
  1. package/.editorconfig +16 -0
  2. package/CHANGELOG.md +1 -3
  3. package/docs/config.js.html +14 -5
  4. package/docs/content.js.html +425 -0
  5. package/docs/global.html +3026 -0
  6. package/docs/index.html +2 -2
  7. package/docs/module-Config.html +60 -7
  8. package/docs/module-Content-Services-V2.html +2433 -0
  9. package/docs/module-Railcontent-Services.html +522 -2
  10. package/docs/module-Sanity-Services.html +57 -43
  11. package/docs/module-Session-Management.html +575 -0
  12. package/docs/module-User-Permissions.html +406 -0
  13. package/docs/railcontent.js.html +42 -5
  14. package/docs/sanity.js.html +290 -103
  15. package/docs/user_permissions.js.html +110 -0
  16. package/docs/user_sessions.js.html +139 -0
  17. package/docs/user_types.js.html +188 -0
  18. package/jsdoc.json +2 -0
  19. package/package.json +1 -1
  20. package/publish.sh +2 -2
  21. package/src/contentMetaData.js +307 -1088
  22. package/src/contentTypeConfig.js +108 -4
  23. package/src/filterBuilder.js +6 -6
  24. package/src/index.d.ts +61 -6
  25. package/src/index.js +61 -6
  26. package/src/{services → lib}/lastUpdated.js +17 -1
  27. package/src/services/config.js +0 -0
  28. package/src/services/content.js +371 -0
  29. package/src/services/dataContext.js +0 -0
  30. package/src/services/forum.js +57 -0
  31. package/src/services/railcontent.js +124 -11
  32. package/src/services/recommendations.js +19 -0
  33. package/src/services/sanity.js +278 -104
  34. package/src/services/{userPermissions.js → user/permissions.js} +16 -2
  35. package/src/services/user/sessions.js +67 -0
  36. package/src/services/user/types.js +116 -0
  37. package/src/services/userActivity.js +32 -0
  38. package/test/content.test.js +116 -0
  39. package/test/contentLikes.test.js +0 -0
  40. package/test/contentProgress.test.js +83 -5
  41. package/test/forum.test.js +18 -0
  42. package/test/initializeTests.js +6 -1
  43. package/test/{lastUpdated.test.js → lib/lastUpdated.test.js} +2 -5
  44. package/test/sanityQueryService.test.js +66 -18
  45. package/test/{userPermissions.test.js → user/permissions.test.js} +3 -3
  46. package/tools/generate-index.cjs +16 -3
@@ -0,0 +1,3026 @@
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-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#.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#.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><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><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="AuthResponse">AuthResponse</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="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line104">line 104</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>token</code></td>
208
+
209
+
210
+ <td class="type">
211
+
212
+
213
+ <span class="param-type">string</span>
214
+
215
+
216
+
217
+
218
+ </td>
219
+
220
+
221
+
222
+
223
+
224
+ <td class="description last"></td>
225
+ </tr>
226
+
227
+
228
+
229
+ <tr>
230
+
231
+ <td class="name"><code>user</code></td>
232
+
233
+
234
+ <td class="type">
235
+
236
+
237
+ <span class="param-type"><a href="global.html#User">User</a></span>
238
+
239
+
240
+
241
+
242
+ </td>
243
+
244
+
245
+
246
+
247
+
248
+ <td class="description last"></td>
249
+ </tr>
250
+
251
+
252
+ </tbody>
253
+ </table>
254
+
255
+
256
+
257
+
258
+
259
+
260
+
261
+
262
+ <h5 class="h5-types">Type:</h5>
263
+ <ul>
264
+ <li>
265
+
266
+ <span class="param-type">Object</span>
267
+
268
+
269
+
270
+ </li>
271
+ </ul>
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+
280
+ <h4 class="name" id="BrandMethodLevels">BrandMethodLevels</h4>
281
+
282
+
283
+
284
+
285
+
286
+ <dl class="details">
287
+
288
+
289
+
290
+ <dt class="tag-source">Source:</dt>
291
+ <dd class="tag-source"><ul class="dummy"><li>
292
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line1">line 1</a>
293
+ </li></ul></dd>
294
+
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+ </dl>
326
+
327
+
328
+
329
+ <h5 class="subsection-title">Properties:</h5>
330
+
331
+
332
+
333
+ <table class="props">
334
+ <thead>
335
+ <tr>
336
+
337
+ <th>Name</th>
338
+
339
+
340
+ <th>Type</th>
341
+
342
+
343
+
344
+
345
+
346
+ <th class="last">Description</th>
347
+ </tr>
348
+ </thead>
349
+
350
+ <tbody>
351
+
352
+
353
+ <tr>
354
+
355
+ <td class="name"><code>drumeo</code></td>
356
+
357
+
358
+ <td class="type">
359
+
360
+
361
+ <span class="param-type">string</span>
362
+
363
+
364
+
365
+
366
+ </td>
367
+
368
+
369
+
370
+
371
+
372
+ <td class="description last"></td>
373
+ </tr>
374
+
375
+
376
+
377
+ <tr>
378
+
379
+ <td class="name"><code>pianote</code></td>
380
+
381
+
382
+ <td class="type">
383
+
384
+
385
+ <span class="param-type">string</span>
386
+
387
+
388
+
389
+
390
+ </td>
391
+
392
+
393
+
394
+
395
+
396
+ <td class="description last"></td>
397
+ </tr>
398
+
399
+
400
+
401
+ <tr>
402
+
403
+ <td class="name"><code>guitareo</code></td>
404
+
405
+
406
+ <td class="type">
407
+
408
+
409
+ <span class="param-type">string</span>
410
+
411
+
412
+
413
+
414
+ </td>
415
+
416
+
417
+
418
+
419
+
420
+ <td class="description last"></td>
421
+ </tr>
422
+
423
+
424
+
425
+ <tr>
426
+
427
+ <td class="name"><code>singeo</code></td>
428
+
429
+
430
+ <td class="type">
431
+
432
+
433
+ <span class="param-type">string</span>
434
+
435
+
436
+
437
+
438
+ </td>
439
+
440
+
441
+
442
+
443
+
444
+ <td class="description last"></td>
445
+ </tr>
446
+
447
+
448
+ </tbody>
449
+ </table>
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+ <h5 class="h5-types">Type:</h5>
459
+ <ul>
460
+ <li>
461
+
462
+ <span class="param-type">object</span>
463
+
464
+
465
+
466
+ </li>
467
+ </ul>
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+ <h4 class="name" id="BrandTimePracticed">BrandTimePracticed</h4>
477
+
478
+
479
+
480
+
481
+
482
+ <dl class="details">
483
+
484
+
485
+
486
+ <dt class="tag-source">Source:</dt>
487
+ <dd class="tag-source"><ul class="dummy"><li>
488
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line17">line 17</a>
489
+ </li></ul></dd>
490
+
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+
513
+
514
+
515
+
516
+
517
+
518
+
519
+
520
+
521
+ </dl>
522
+
523
+
524
+
525
+ <h5 class="subsection-title">Properties:</h5>
526
+
527
+
528
+
529
+ <table class="props">
530
+ <thead>
531
+ <tr>
532
+
533
+ <th>Name</th>
534
+
535
+
536
+ <th>Type</th>
537
+
538
+
539
+
540
+
541
+
542
+ <th class="last">Description</th>
543
+ </tr>
544
+ </thead>
545
+
546
+ <tbody>
547
+
548
+
549
+ <tr>
550
+
551
+ <td class="name"><code>drumeo</code></td>
552
+
553
+
554
+ <td class="type">
555
+
556
+
557
+ <span class="param-type">number</span>
558
+
559
+
560
+
561
+
562
+ </td>
563
+
564
+
565
+
566
+
567
+
568
+ <td class="description last"></td>
569
+ </tr>
570
+
571
+
572
+
573
+ <tr>
574
+
575
+ <td class="name"><code>pianote</code></td>
576
+
577
+
578
+ <td class="type">
579
+
580
+
581
+ <span class="param-type">number</span>
582
+
583
+
584
+
585
+
586
+ </td>
587
+
588
+
589
+
590
+
591
+
592
+ <td class="description last"></td>
593
+ </tr>
594
+
595
+
596
+
597
+ <tr>
598
+
599
+ <td class="name"><code>guitareo</code></td>
600
+
601
+
602
+ <td class="type">
603
+
604
+
605
+ <span class="param-type">number</span>
606
+
607
+
608
+
609
+
610
+ </td>
611
+
612
+
613
+
614
+
615
+
616
+ <td class="description last"></td>
617
+ </tr>
618
+
619
+
620
+
621
+ <tr>
622
+
623
+ <td class="name"><code>singeo</code></td>
624
+
625
+
626
+ <td class="type">
627
+
628
+
629
+ <span class="param-type">number</span>
630
+
631
+
632
+
633
+
634
+ </td>
635
+
636
+
637
+
638
+
639
+
640
+ <td class="description last"></td>
641
+ </tr>
642
+
643
+
644
+ </tbody>
645
+ </table>
646
+
647
+
648
+
649
+
650
+
651
+
652
+
653
+
654
+ <h5 class="h5-types">Type:</h5>
655
+ <ul>
656
+ <li>
657
+
658
+ <span class="param-type">object</span>
659
+
660
+
661
+
662
+ </li>
663
+ </ul>
664
+
665
+
666
+
667
+
668
+
669
+
670
+
671
+
672
+ <h4 class="name" id="BrandTotalXp">BrandTotalXp</h4>
673
+
674
+
675
+
676
+
677
+
678
+ <dl class="details">
679
+
680
+
681
+
682
+ <dt class="tag-source">Source:</dt>
683
+ <dd class="tag-source"><ul class="dummy"><li>
684
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line9">line 9</a>
685
+ </li></ul></dd>
686
+
687
+
688
+
689
+
690
+
691
+
692
+
693
+
694
+
695
+
696
+
697
+
698
+
699
+
700
+
701
+
702
+
703
+
704
+
705
+
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+
716
+
717
+ </dl>
718
+
719
+
720
+
721
+ <h5 class="subsection-title">Properties:</h5>
722
+
723
+
724
+
725
+ <table class="props">
726
+ <thead>
727
+ <tr>
728
+
729
+ <th>Name</th>
730
+
731
+
732
+ <th>Type</th>
733
+
734
+
735
+
736
+
737
+
738
+ <th class="last">Description</th>
739
+ </tr>
740
+ </thead>
741
+
742
+ <tbody>
743
+
744
+
745
+ <tr>
746
+
747
+ <td class="name"><code>drumeo</code></td>
748
+
749
+
750
+ <td class="type">
751
+
752
+
753
+ <span class="param-type">string</span>
754
+
755
+
756
+
757
+
758
+ </td>
759
+
760
+
761
+
762
+
763
+
764
+ <td class="description last"></td>
765
+ </tr>
766
+
767
+
768
+
769
+ <tr>
770
+
771
+ <td class="name"><code>pianote</code></td>
772
+
773
+
774
+ <td class="type">
775
+
776
+
777
+ <span class="param-type">string</span>
778
+
779
+
780
+
781
+
782
+ </td>
783
+
784
+
785
+
786
+
787
+
788
+ <td class="description last"></td>
789
+ </tr>
790
+
791
+
792
+
793
+ <tr>
794
+
795
+ <td class="name"><code>guitareo</code></td>
796
+
797
+
798
+ <td class="type">
799
+
800
+
801
+ <span class="param-type">string</span>
802
+
803
+
804
+
805
+
806
+ </td>
807
+
808
+
809
+
810
+
811
+
812
+ <td class="description last"></td>
813
+ </tr>
814
+
815
+
816
+
817
+ <tr>
818
+
819
+ <td class="name"><code>singeo</code></td>
820
+
821
+
822
+ <td class="type">
823
+
824
+
825
+ <span class="param-type">string</span>
826
+
827
+
828
+
829
+
830
+ </td>
831
+
832
+
833
+
834
+
835
+
836
+ <td class="description last"></td>
837
+ </tr>
838
+
839
+
840
+ </tbody>
841
+ </table>
842
+
843
+
844
+
845
+
846
+
847
+
848
+
849
+
850
+ <h5 class="h5-types">Type:</h5>
851
+ <ul>
852
+ <li>
853
+
854
+ <span class="param-type">object</span>
855
+
856
+
857
+
858
+ </li>
859
+ </ul>
860
+
861
+
862
+
863
+
864
+
865
+
866
+
867
+
868
+ <h4 class="name" id="User">User</h4>
869
+
870
+
871
+
872
+
873
+
874
+ <dl class="details">
875
+
876
+
877
+
878
+ <dt class="tag-source">Source:</dt>
879
+ <dd class="tag-source"><ul class="dummy"><li>
880
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line25">line 25</a>
881
+ </li></ul></dd>
882
+
883
+
884
+
885
+
886
+
887
+
888
+
889
+
890
+
891
+
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+
900
+
901
+
902
+
903
+
904
+
905
+
906
+
907
+
908
+
909
+
910
+
911
+
912
+
913
+ </dl>
914
+
915
+
916
+
917
+ <h5 class="subsection-title">Properties:</h5>
918
+
919
+
920
+
921
+ <table class="props">
922
+ <thead>
923
+ <tr>
924
+
925
+ <th>Name</th>
926
+
927
+
928
+ <th>Type</th>
929
+
930
+
931
+
932
+
933
+
934
+ <th class="last">Description</th>
935
+ </tr>
936
+ </thead>
937
+
938
+ <tbody>
939
+
940
+
941
+ <tr>
942
+
943
+ <td class="name"><code>id</code></td>
944
+
945
+
946
+ <td class="type">
947
+
948
+
949
+ <span class="param-type">number</span>
950
+
951
+
952
+
953
+
954
+ </td>
955
+
956
+
957
+
958
+
959
+
960
+ <td class="description last"></td>
961
+ </tr>
962
+
963
+
964
+
965
+ <tr>
966
+
967
+ <td class="name"><code>email</code></td>
968
+
969
+
970
+ <td class="type">
971
+
972
+
973
+ <span class="param-type">string</span>
974
+
975
+
976
+
977
+
978
+ </td>
979
+
980
+
981
+
982
+
983
+
984
+ <td class="description last"></td>
985
+ </tr>
986
+
987
+
988
+
989
+ <tr>
990
+
991
+ <td class="name"><code>display_name</code></td>
992
+
993
+
994
+ <td class="type">
995
+
996
+
997
+ <span class="param-type">string</span>
998
+
999
+
1000
+
1001
+
1002
+ </td>
1003
+
1004
+
1005
+
1006
+
1007
+
1008
+ <td class="description last"></td>
1009
+ </tr>
1010
+
1011
+
1012
+
1013
+ <tr>
1014
+
1015
+ <td class="name"><code>first_name</code></td>
1016
+
1017
+
1018
+ <td class="type">
1019
+
1020
+
1021
+ <span class="param-type">string</span>
1022
+
1023
+
1024
+
1025
+
1026
+ </td>
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+ <td class="description last"></td>
1033
+ </tr>
1034
+
1035
+
1036
+
1037
+ <tr>
1038
+
1039
+ <td class="name"><code>last_name</code></td>
1040
+
1041
+
1042
+ <td class="type">
1043
+
1044
+
1045
+ <span class="param-type">string</span>
1046
+
1047
+
1048
+
1049
+
1050
+ </td>
1051
+
1052
+
1053
+
1054
+
1055
+
1056
+ <td class="description last"></td>
1057
+ </tr>
1058
+
1059
+
1060
+
1061
+ <tr>
1062
+
1063
+ <td class="name"><code>gender</code></td>
1064
+
1065
+
1066
+ <td class="type">
1067
+
1068
+
1069
+ <span class="param-type">string</span>
1070
+ |
1071
+
1072
+ <span class="param-type">null</span>
1073
+
1074
+
1075
+
1076
+
1077
+ </td>
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+ <td class="description last"></td>
1084
+ </tr>
1085
+
1086
+
1087
+
1088
+ <tr>
1089
+
1090
+ <td class="name"><code>country</code></td>
1091
+
1092
+
1093
+ <td class="type">
1094
+
1095
+
1096
+ <span class="param-type">string</span>
1097
+
1098
+
1099
+
1100
+
1101
+ </td>
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+ <td class="description last"></td>
1108
+ </tr>
1109
+
1110
+
1111
+
1112
+ <tr>
1113
+
1114
+ <td class="name"><code>region</code></td>
1115
+
1116
+
1117
+ <td class="type">
1118
+
1119
+
1120
+ <span class="param-type">string</span>
1121
+ |
1122
+
1123
+ <span class="param-type">null</span>
1124
+
1125
+
1126
+
1127
+
1128
+ </td>
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+ <td class="description last"></td>
1135
+ </tr>
1136
+
1137
+
1138
+
1139
+ <tr>
1140
+
1141
+ <td class="name"><code>city</code></td>
1142
+
1143
+
1144
+ <td class="type">
1145
+
1146
+
1147
+ <span class="param-type">string</span>
1148
+ |
1149
+
1150
+ <span class="param-type">null</span>
1151
+
1152
+
1153
+
1154
+
1155
+ </td>
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+ <td class="description last"></td>
1162
+ </tr>
1163
+
1164
+
1165
+
1166
+ <tr>
1167
+
1168
+ <td class="name"><code>birthday</code></td>
1169
+
1170
+
1171
+ <td class="type">
1172
+
1173
+
1174
+ <span class="param-type">string</span>
1175
+
1176
+
1177
+
1178
+
1179
+ </td>
1180
+
1181
+
1182
+
1183
+
1184
+
1185
+ <td class="description last"></td>
1186
+ </tr>
1187
+
1188
+
1189
+
1190
+ <tr>
1191
+
1192
+ <td class="name"><code>phone_number</code></td>
1193
+
1194
+
1195
+ <td class="type">
1196
+
1197
+
1198
+ <span class="param-type">string</span>
1199
+ |
1200
+
1201
+ <span class="param-type">null</span>
1202
+
1203
+
1204
+
1205
+
1206
+ </td>
1207
+
1208
+
1209
+
1210
+
1211
+
1212
+ <td class="description last"></td>
1213
+ </tr>
1214
+
1215
+
1216
+
1217
+ <tr>
1218
+
1219
+ <td class="name"><code>profile_picture_url</code></td>
1220
+
1221
+
1222
+ <td class="type">
1223
+
1224
+
1225
+ <span class="param-type">string</span>
1226
+
1227
+
1228
+
1229
+
1230
+ </td>
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+ <td class="description last"></td>
1237
+ </tr>
1238
+
1239
+
1240
+
1241
+ <tr>
1242
+
1243
+ <td class="name"><code>timezone</code></td>
1244
+
1245
+
1246
+ <td class="type">
1247
+
1248
+
1249
+ <span class="param-type">string</span>
1250
+
1251
+
1252
+
1253
+
1254
+ </td>
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+ <td class="description last"></td>
1261
+ </tr>
1262
+
1263
+
1264
+
1265
+ <tr>
1266
+
1267
+ <td class="name"><code>permission_level</code></td>
1268
+
1269
+
1270
+ <td class="type">
1271
+
1272
+
1273
+ <span class="param-type">string</span>
1274
+
1275
+
1276
+
1277
+
1278
+ </td>
1279
+
1280
+
1281
+
1282
+
1283
+
1284
+ <td class="description last"></td>
1285
+ </tr>
1286
+
1287
+
1288
+
1289
+ <tr>
1290
+
1291
+ <td class="name"><code>last_used_brand</code></td>
1292
+
1293
+
1294
+ <td class="type">
1295
+
1296
+
1297
+ <span class="param-type">string</span>
1298
+
1299
+
1300
+
1301
+
1302
+ </td>
1303
+
1304
+
1305
+
1306
+
1307
+
1308
+ <td class="description last"></td>
1309
+ </tr>
1310
+
1311
+
1312
+
1313
+ <tr>
1314
+
1315
+ <td class="name"><code>membership_level</code></td>
1316
+
1317
+
1318
+ <td class="type">
1319
+
1320
+
1321
+ <span class="param-type">string</span>
1322
+
1323
+
1324
+
1325
+
1326
+ </td>
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+ <td class="description last"></td>
1333
+ </tr>
1334
+
1335
+
1336
+
1337
+ <tr>
1338
+
1339
+ <td class="name"><code>membership_start_date</code></td>
1340
+
1341
+
1342
+ <td class="type">
1343
+
1344
+
1345
+ <span class="param-type">string</span>
1346
+ |
1347
+
1348
+ <span class="param-type">null</span>
1349
+
1350
+
1351
+
1352
+
1353
+ </td>
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+ <td class="description last"></td>
1360
+ </tr>
1361
+
1362
+
1363
+
1364
+ <tr>
1365
+
1366
+ <td class="name"><code>membership_expiration_date</code></td>
1367
+
1368
+
1369
+ <td class="type">
1370
+
1371
+
1372
+ <span class="param-type">string</span>
1373
+
1374
+
1375
+
1376
+
1377
+ </td>
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+ <td class="description last"></td>
1384
+ </tr>
1385
+
1386
+
1387
+
1388
+ <tr>
1389
+
1390
+ <td class="name"><code>is_lifetime_member</code></td>
1391
+
1392
+
1393
+ <td class="type">
1394
+
1395
+
1396
+ <span class="param-type">number</span>
1397
+
1398
+
1399
+
1400
+
1401
+ </td>
1402
+
1403
+
1404
+
1405
+
1406
+
1407
+ <td class="description last"></td>
1408
+ </tr>
1409
+
1410
+
1411
+
1412
+ <tr>
1413
+
1414
+ <td class="name"><code>revenuecat_origin_app_user_id</code></td>
1415
+
1416
+
1417
+ <td class="type">
1418
+
1419
+
1420
+ <span class="param-type">string</span>
1421
+ |
1422
+
1423
+ <span class="param-type">null</span>
1424
+
1425
+
1426
+
1427
+
1428
+ </td>
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+ <td class="description last"></td>
1435
+ </tr>
1436
+
1437
+
1438
+
1439
+ <tr>
1440
+
1441
+ <td class="name"><code>is_drumeo_lifetime_member</code></td>
1442
+
1443
+
1444
+ <td class="type">
1445
+
1446
+
1447
+ <span class="param-type">number</span>
1448
+
1449
+
1450
+
1451
+
1452
+ </td>
1453
+
1454
+
1455
+
1456
+
1457
+
1458
+ <td class="description last"></td>
1459
+ </tr>
1460
+
1461
+
1462
+
1463
+ <tr>
1464
+
1465
+ <td class="name"><code>access_level</code></td>
1466
+
1467
+
1468
+ <td class="type">
1469
+
1470
+
1471
+ <span class="param-type">string</span>
1472
+
1473
+
1474
+
1475
+
1476
+ </td>
1477
+
1478
+
1479
+
1480
+
1481
+
1482
+ <td class="description last"></td>
1483
+ </tr>
1484
+
1485
+
1486
+
1487
+ <tr>
1488
+
1489
+ <td class="name"><code>total_xp</code></td>
1490
+
1491
+
1492
+ <td class="type">
1493
+
1494
+
1495
+ <span class="param-type">number</span>
1496
+
1497
+
1498
+
1499
+
1500
+ </td>
1501
+
1502
+
1503
+
1504
+
1505
+
1506
+ <td class="description last"></td>
1507
+ </tr>
1508
+
1509
+
1510
+
1511
+ <tr>
1512
+
1513
+ <td class="name"><code>brand_method_levels</code></td>
1514
+
1515
+
1516
+ <td class="type">
1517
+
1518
+
1519
+ <span class="param-type"><a href="global.html#BrandMethodLevels">BrandMethodLevels</a></span>
1520
+
1521
+
1522
+
1523
+
1524
+ </td>
1525
+
1526
+
1527
+
1528
+
1529
+
1530
+ <td class="description last"></td>
1531
+ </tr>
1532
+
1533
+
1534
+
1535
+ <tr>
1536
+
1537
+ <td class="name"><code>brand_total_xp</code></td>
1538
+
1539
+
1540
+ <td class="type">
1541
+
1542
+
1543
+ <span class="param-type"><a href="global.html#BrandTotalXp">BrandTotalXp</a></span>
1544
+
1545
+
1546
+
1547
+
1548
+ </td>
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+ <td class="description last"></td>
1555
+ </tr>
1556
+
1557
+
1558
+
1559
+ <tr>
1560
+
1561
+ <td class="name"><code>brand_minutes_practiced</code></td>
1562
+
1563
+
1564
+ <td class="type">
1565
+
1566
+
1567
+ <span class="param-type"><a href="global.html#BrandTimePracticed">BrandTimePracticed</a></span>
1568
+
1569
+
1570
+
1571
+
1572
+ </td>
1573
+
1574
+
1575
+
1576
+
1577
+
1578
+ <td class="description last"></td>
1579
+ </tr>
1580
+
1581
+
1582
+
1583
+ <tr>
1584
+
1585
+ <td class="name"><code>brand_seconds_practiced</code></td>
1586
+
1587
+
1588
+ <td class="type">
1589
+
1590
+
1591
+ <span class="param-type"><a href="global.html#BrandTimePracticed">BrandTimePracticed</a></span>
1592
+
1593
+
1594
+
1595
+
1596
+ </td>
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+ <td class="description last"></td>
1603
+ </tr>
1604
+
1605
+
1606
+
1607
+ <tr>
1608
+
1609
+ <td class="name"><code>guitar_playing_since_year</code></td>
1610
+
1611
+
1612
+ <td class="type">
1613
+
1614
+
1615
+ <span class="param-type">number</span>
1616
+ |
1617
+
1618
+ <span class="param-type">null</span>
1619
+
1620
+
1621
+
1622
+
1623
+ </td>
1624
+
1625
+
1626
+
1627
+
1628
+
1629
+ <td class="description last"></td>
1630
+ </tr>
1631
+
1632
+
1633
+
1634
+ <tr>
1635
+
1636
+ <td class="name"><code>drumeo_onboarding_skip_setup</code></td>
1637
+
1638
+
1639
+ <td class="type">
1640
+
1641
+
1642
+ <span class="param-type">number</span>
1643
+
1644
+
1645
+
1646
+
1647
+ </td>
1648
+
1649
+
1650
+
1651
+
1652
+
1653
+ <td class="description last"></td>
1654
+ </tr>
1655
+
1656
+
1657
+
1658
+ <tr>
1659
+
1660
+ <td class="name"><code>pianote_onboarding_skip_setup</code></td>
1661
+
1662
+
1663
+ <td class="type">
1664
+
1665
+
1666
+ <span class="param-type">number</span>
1667
+
1668
+
1669
+
1670
+
1671
+ </td>
1672
+
1673
+
1674
+
1675
+
1676
+
1677
+ <td class="description last"></td>
1678
+ </tr>
1679
+
1680
+
1681
+
1682
+ <tr>
1683
+
1684
+ <td class="name"><code>guitareo_onboarding_skip_setup</code></td>
1685
+
1686
+
1687
+ <td class="type">
1688
+
1689
+
1690
+ <span class="param-type">number</span>
1691
+
1692
+
1693
+
1694
+
1695
+ </td>
1696
+
1697
+
1698
+
1699
+
1700
+
1701
+ <td class="description last"></td>
1702
+ </tr>
1703
+
1704
+
1705
+
1706
+ <tr>
1707
+
1708
+ <td class="name"><code>singeo_onboarding_skip_setup</code></td>
1709
+
1710
+
1711
+ <td class="type">
1712
+
1713
+
1714
+ <span class="param-type">number</span>
1715
+
1716
+
1717
+
1718
+
1719
+ </td>
1720
+
1721
+
1722
+
1723
+
1724
+
1725
+ <td class="description last"></td>
1726
+ </tr>
1727
+
1728
+
1729
+
1730
+ <tr>
1731
+
1732
+ <td class="name"><code>drumeo_trial_section_hide</code></td>
1733
+
1734
+
1735
+ <td class="type">
1736
+
1737
+
1738
+ <span class="param-type">number</span>
1739
+
1740
+
1741
+
1742
+
1743
+ </td>
1744
+
1745
+
1746
+
1747
+
1748
+
1749
+ <td class="description last"></td>
1750
+ </tr>
1751
+
1752
+
1753
+
1754
+ <tr>
1755
+
1756
+ <td class="name"><code>pianote_trial_section_hide</code></td>
1757
+
1758
+
1759
+ <td class="type">
1760
+
1761
+
1762
+ <span class="param-type">number</span>
1763
+
1764
+
1765
+
1766
+
1767
+ </td>
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+ <td class="description last"></td>
1774
+ </tr>
1775
+
1776
+
1777
+
1778
+ <tr>
1779
+
1780
+ <td class="name"><code>guitareo_trial_section_hide</code></td>
1781
+
1782
+
1783
+ <td class="type">
1784
+
1785
+
1786
+ <span class="param-type">number</span>
1787
+
1788
+
1789
+
1790
+
1791
+ </td>
1792
+
1793
+
1794
+
1795
+
1796
+
1797
+ <td class="description last"></td>
1798
+ </tr>
1799
+
1800
+
1801
+
1802
+ <tr>
1803
+
1804
+ <td class="name"><code>singeo_trial_section_hide</code></td>
1805
+
1806
+
1807
+ <td class="type">
1808
+
1809
+
1810
+ <span class="param-type">number</span>
1811
+
1812
+
1813
+
1814
+
1815
+ </td>
1816
+
1817
+
1818
+
1819
+
1820
+
1821
+ <td class="description last"></td>
1822
+ </tr>
1823
+
1824
+
1825
+
1826
+ <tr>
1827
+
1828
+ <td class="name"><code>notify_on_lesson_comment_like</code></td>
1829
+
1830
+
1831
+ <td class="type">
1832
+
1833
+
1834
+ <span class="param-type">number</span>
1835
+
1836
+
1837
+
1838
+
1839
+ </td>
1840
+
1841
+
1842
+
1843
+
1844
+
1845
+ <td class="description last"></td>
1846
+ </tr>
1847
+
1848
+
1849
+
1850
+ <tr>
1851
+
1852
+ <td class="name"><code>notifications_summary_frequency_minutes</code></td>
1853
+
1854
+
1855
+ <td class="type">
1856
+
1857
+
1858
+ <span class="param-type">number</span>
1859
+ |
1860
+
1861
+ <span class="param-type">null</span>
1862
+
1863
+
1864
+
1865
+
1866
+ </td>
1867
+
1868
+
1869
+
1870
+
1871
+
1872
+ <td class="description last"></td>
1873
+ </tr>
1874
+
1875
+
1876
+
1877
+ <tr>
1878
+
1879
+ <td class="name"><code>notify_on_forum_post_reply</code></td>
1880
+
1881
+
1882
+ <td class="type">
1883
+
1884
+
1885
+ <span class="param-type">number</span>
1886
+
1887
+
1888
+
1889
+
1890
+ </td>
1891
+
1892
+
1893
+
1894
+
1895
+
1896
+ <td class="description last"></td>
1897
+ </tr>
1898
+
1899
+
1900
+
1901
+ <tr>
1902
+
1903
+ <td class="name"><code>notify_on_forum_followed_thread_reply</code></td>
1904
+
1905
+
1906
+ <td class="type">
1907
+
1908
+
1909
+ <span class="param-type">number</span>
1910
+
1911
+
1912
+
1913
+
1914
+ </td>
1915
+
1916
+
1917
+
1918
+
1919
+
1920
+ <td class="description last"></td>
1921
+ </tr>
1922
+
1923
+
1924
+
1925
+ <tr>
1926
+
1927
+ <td class="name"><code>notify_on_forum_post_like</code></td>
1928
+
1929
+
1930
+ <td class="type">
1931
+
1932
+
1933
+ <span class="param-type">number</span>
1934
+
1935
+
1936
+
1937
+
1938
+ </td>
1939
+
1940
+
1941
+
1942
+
1943
+
1944
+ <td class="description last"></td>
1945
+ </tr>
1946
+
1947
+
1948
+
1949
+ <tr>
1950
+
1951
+ <td class="name"><code>notify_weekly_update</code></td>
1952
+
1953
+
1954
+ <td class="type">
1955
+
1956
+
1957
+ <span class="param-type">number</span>
1958
+
1959
+
1960
+
1961
+
1962
+ </td>
1963
+
1964
+
1965
+
1966
+
1967
+
1968
+ <td class="description last"></td>
1969
+ </tr>
1970
+
1971
+
1972
+
1973
+ <tr>
1974
+
1975
+ <td class="name"><code>notify_on_lesson_comment_reply</code></td>
1976
+
1977
+
1978
+ <td class="type">
1979
+
1980
+
1981
+ <span class="param-type">number</span>
1982
+
1983
+
1984
+
1985
+
1986
+ </td>
1987
+
1988
+
1989
+
1990
+
1991
+
1992
+ <td class="description last"></td>
1993
+ </tr>
1994
+
1995
+
1996
+
1997
+ <tr>
1998
+
1999
+ <td class="name"><code>challenges_enrollment_notifications</code></td>
2000
+
2001
+
2002
+ <td class="type">
2003
+
2004
+
2005
+ <span class="param-type">number</span>
2006
+ |
2007
+
2008
+ <span class="param-type">null</span>
2009
+
2010
+
2011
+
2012
+
2013
+ </td>
2014
+
2015
+
2016
+
2017
+
2018
+
2019
+ <td class="description last"></td>
2020
+ </tr>
2021
+
2022
+
2023
+
2024
+ <tr>
2025
+
2026
+ <td class="name"><code>challenges_community_notifications</code></td>
2027
+
2028
+
2029
+ <td class="type">
2030
+
2031
+
2032
+ <span class="param-type">number</span>
2033
+ |
2034
+
2035
+ <span class="param-type">null</span>
2036
+
2037
+
2038
+
2039
+
2040
+ </td>
2041
+
2042
+
2043
+
2044
+
2045
+
2046
+ <td class="description last"></td>
2047
+ </tr>
2048
+
2049
+
2050
+
2051
+ <tr>
2052
+
2053
+ <td class="name"><code>challenges_solo_notifications</code></td>
2054
+
2055
+
2056
+ <td class="type">
2057
+
2058
+
2059
+ <span class="param-type">number</span>
2060
+ |
2061
+
2062
+ <span class="param-type">null</span>
2063
+
2064
+
2065
+
2066
+
2067
+ </td>
2068
+
2069
+
2070
+
2071
+
2072
+
2073
+ <td class="description last"></td>
2074
+ </tr>
2075
+
2076
+
2077
+
2078
+ <tr>
2079
+
2080
+ <td class="name"><code>send_mobile_app_push_notifications</code></td>
2081
+
2082
+
2083
+ <td class="type">
2084
+
2085
+
2086
+ <span class="param-type">number</span>
2087
+
2088
+
2089
+
2090
+
2091
+ </td>
2092
+
2093
+
2094
+
2095
+
2096
+
2097
+ <td class="description last"></td>
2098
+ </tr>
2099
+
2100
+
2101
+
2102
+ <tr>
2103
+
2104
+ <td class="name"><code>send_email_notifications</code></td>
2105
+
2106
+
2107
+ <td class="type">
2108
+
2109
+
2110
+ <span class="param-type">number</span>
2111
+
2112
+
2113
+
2114
+
2115
+ </td>
2116
+
2117
+
2118
+
2119
+
2120
+
2121
+ <td class="description last"></td>
2122
+ </tr>
2123
+
2124
+
2125
+
2126
+ <tr>
2127
+
2128
+ <td class="name"><code>use_legacy_video_player</code></td>
2129
+
2130
+
2131
+ <td class="type">
2132
+
2133
+
2134
+ <span class="param-type">number</span>
2135
+
2136
+
2137
+
2138
+
2139
+ </td>
2140
+
2141
+
2142
+
2143
+
2144
+
2145
+ <td class="description last"></td>
2146
+ </tr>
2147
+
2148
+
2149
+
2150
+ <tr>
2151
+
2152
+ <td class="name"><code>drumeo_ship_magazine</code></td>
2153
+
2154
+
2155
+ <td class="type">
2156
+
2157
+
2158
+ <span class="param-type">number</span>
2159
+
2160
+
2161
+
2162
+
2163
+ </td>
2164
+
2165
+
2166
+
2167
+
2168
+
2169
+ <td class="description last"></td>
2170
+ </tr>
2171
+
2172
+
2173
+
2174
+ <tr>
2175
+
2176
+ <td class="name"><code>magazine_shipping_address_id</code></td>
2177
+
2178
+
2179
+ <td class="type">
2180
+
2181
+
2182
+ <span class="param-type">string</span>
2183
+ |
2184
+
2185
+ <span class="param-type">null</span>
2186
+
2187
+
2188
+
2189
+
2190
+ </td>
2191
+
2192
+
2193
+
2194
+
2195
+
2196
+ <td class="description last"></td>
2197
+ </tr>
2198
+
2199
+
2200
+
2201
+ <tr>
2202
+
2203
+ <td class="name"><code>ios_latest_review_display_date</code></td>
2204
+
2205
+
2206
+ <td class="type">
2207
+
2208
+
2209
+ <span class="param-type">string</span>
2210
+ |
2211
+
2212
+ <span class="param-type">null</span>
2213
+
2214
+
2215
+
2216
+
2217
+ </td>
2218
+
2219
+
2220
+
2221
+
2222
+
2223
+ <td class="description last"></td>
2224
+ </tr>
2225
+
2226
+
2227
+
2228
+ <tr>
2229
+
2230
+ <td class="name"><code>ios_count_review_display</code></td>
2231
+
2232
+
2233
+ <td class="type">
2234
+
2235
+
2236
+ <span class="param-type">number</span>
2237
+
2238
+
2239
+
2240
+
2241
+ </td>
2242
+
2243
+
2244
+
2245
+
2246
+
2247
+ <td class="description last"></td>
2248
+ </tr>
2249
+
2250
+
2251
+
2252
+ <tr>
2253
+
2254
+ <td class="name"><code>google_latest_review_display_date</code></td>
2255
+
2256
+
2257
+ <td class="type">
2258
+
2259
+
2260
+ <span class="param-type">string</span>
2261
+ |
2262
+
2263
+ <span class="param-type">null</span>
2264
+
2265
+
2266
+
2267
+
2268
+ </td>
2269
+
2270
+
2271
+
2272
+
2273
+
2274
+ <td class="description last"></td>
2275
+ </tr>
2276
+
2277
+
2278
+
2279
+ <tr>
2280
+
2281
+ <td class="name"><code>google_count_review_display</code></td>
2282
+
2283
+
2284
+ <td class="type">
2285
+
2286
+
2287
+ <span class="param-type">number</span>
2288
+
2289
+
2290
+
2291
+
2292
+ </td>
2293
+
2294
+
2295
+
2296
+
2297
+
2298
+ <td class="description last"></td>
2299
+ </tr>
2300
+
2301
+
2302
+
2303
+ <tr>
2304
+
2305
+ <td class="name"><code>biography</code></td>
2306
+
2307
+
2308
+ <td class="type">
2309
+
2310
+
2311
+ <span class="param-type">string</span>
2312
+ |
2313
+
2314
+ <span class="param-type">null</span>
2315
+
2316
+
2317
+
2318
+
2319
+ </td>
2320
+
2321
+
2322
+
2323
+
2324
+
2325
+ <td class="description last"></td>
2326
+ </tr>
2327
+
2328
+
2329
+
2330
+ <tr>
2331
+
2332
+ <td class="name"><code>support_note</code></td>
2333
+
2334
+
2335
+ <td class="type">
2336
+
2337
+
2338
+ <span class="param-type">string</span>
2339
+ |
2340
+
2341
+ <span class="param-type">null</span>
2342
+
2343
+
2344
+
2345
+
2346
+ </td>
2347
+
2348
+
2349
+
2350
+
2351
+
2352
+ <td class="description last"></td>
2353
+ </tr>
2354
+
2355
+
2356
+
2357
+ <tr>
2358
+
2359
+ <td class="name"><code>created_at</code></td>
2360
+
2361
+
2362
+ <td class="type">
2363
+
2364
+
2365
+ <span class="param-type">string</span>
2366
+
2367
+
2368
+
2369
+
2370
+ </td>
2371
+
2372
+
2373
+
2374
+
2375
+
2376
+ <td class="description last"></td>
2377
+ </tr>
2378
+
2379
+
2380
+
2381
+ <tr>
2382
+
2383
+ <td class="name"><code>updated_at</code></td>
2384
+
2385
+
2386
+ <td class="type">
2387
+
2388
+
2389
+ <span class="param-type">string</span>
2390
+
2391
+
2392
+
2393
+
2394
+ </td>
2395
+
2396
+
2397
+
2398
+
2399
+
2400
+ <td class="description last"></td>
2401
+ </tr>
2402
+
2403
+
2404
+
2405
+ <tr>
2406
+
2407
+ <td class="name"><code>is_pack_owner</code></td>
2408
+
2409
+
2410
+ <td class="type">
2411
+
2412
+
2413
+ <span class="param-type">number</span>
2414
+
2415
+
2416
+
2417
+
2418
+ </td>
2419
+
2420
+
2421
+
2422
+
2423
+
2424
+ <td class="description last"></td>
2425
+ </tr>
2426
+
2427
+
2428
+
2429
+ <tr>
2430
+
2431
+ <td class="name"><code>has_recharge_subscription</code></td>
2432
+
2433
+
2434
+ <td class="type">
2435
+
2436
+
2437
+ <span class="param-type">number</span>
2438
+
2439
+
2440
+
2441
+
2442
+ </td>
2443
+
2444
+
2445
+
2446
+
2447
+
2448
+ <td class="description last"></td>
2449
+ </tr>
2450
+
2451
+
2452
+
2453
+ <tr>
2454
+
2455
+ <td class="name"><code>recharge_interval</code></td>
2456
+
2457
+
2458
+ <td class="type">
2459
+
2460
+
2461
+ <span class="param-type">string</span>
2462
+ |
2463
+
2464
+ <span class="param-type">null</span>
2465
+
2466
+
2467
+
2468
+
2469
+ </td>
2470
+
2471
+
2472
+
2473
+
2474
+
2475
+ <td class="description last"></td>
2476
+ </tr>
2477
+
2478
+
2479
+
2480
+ <tr>
2481
+
2482
+ <td class="name"><code>has_apple_subscription</code></td>
2483
+
2484
+
2485
+ <td class="type">
2486
+
2487
+
2488
+ <span class="param-type">number</span>
2489
+
2490
+
2491
+
2492
+
2493
+ </td>
2494
+
2495
+
2496
+
2497
+
2498
+
2499
+ <td class="description last"></td>
2500
+ </tr>
2501
+
2502
+
2503
+
2504
+ <tr>
2505
+
2506
+ <td class="name"><code>has_google_subscription</code></td>
2507
+
2508
+
2509
+ <td class="type">
2510
+
2511
+
2512
+ <span class="param-type">number</span>
2513
+
2514
+
2515
+
2516
+
2517
+ </td>
2518
+
2519
+
2520
+
2521
+
2522
+
2523
+ <td class="description last"></td>
2524
+ </tr>
2525
+
2526
+
2527
+
2528
+ <tr>
2529
+
2530
+ <td class="name"><code>requires_password_update</code></td>
2531
+
2532
+
2533
+ <td class="type">
2534
+
2535
+
2536
+ <span class="param-type">number</span>
2537
+
2538
+
2539
+
2540
+
2541
+ </td>
2542
+
2543
+
2544
+
2545
+
2546
+
2547
+ <td class="description last"></td>
2548
+ </tr>
2549
+
2550
+
2551
+
2552
+ <tr>
2553
+
2554
+ <td class="name"><code>cio_synced_workspaces</code></td>
2555
+
2556
+
2557
+ <td class="type">
2558
+
2559
+
2560
+ <span class="param-type">number</span>
2561
+
2562
+
2563
+
2564
+
2565
+ </td>
2566
+
2567
+
2568
+
2569
+
2570
+
2571
+ <td class="description last"></td>
2572
+ </tr>
2573
+
2574
+
2575
+
2576
+ <tr>
2577
+
2578
+ <td class="name"><code>recharge_renewal_date</code></td>
2579
+
2580
+
2581
+ <td class="type">
2582
+
2583
+
2584
+ <span class="param-type">string</span>
2585
+ |
2586
+
2587
+ <span class="param-type">null</span>
2588
+
2589
+
2590
+
2591
+
2592
+ </td>
2593
+
2594
+
2595
+
2596
+
2597
+
2598
+ <td class="description last"></td>
2599
+ </tr>
2600
+
2601
+
2602
+
2603
+ <tr>
2604
+
2605
+ <td class="name"><code>trial_expiration_date</code></td>
2606
+
2607
+
2608
+ <td class="type">
2609
+
2610
+
2611
+ <span class="param-type">string</span>
2612
+ |
2613
+
2614
+ <span class="param-type">null</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>is_trial</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>legacy_expiration_date</code></td>
2657
+
2658
+
2659
+ <td class="type">
2660
+
2661
+
2662
+ <span class="param-type">string</span>
2663
+ |
2664
+
2665
+ <span class="param-type">null</span>
2666
+
2667
+
2668
+
2669
+
2670
+ </td>
2671
+
2672
+
2673
+
2674
+
2675
+
2676
+ <td class="description last"></td>
2677
+ </tr>
2678
+
2679
+
2680
+
2681
+ <tr>
2682
+
2683
+ <td class="name"><code>needs_logout</code></td>
2684
+
2685
+
2686
+ <td class="type">
2687
+
2688
+
2689
+ <span class="param-type">boolean</span>
2690
+
2691
+
2692
+
2693
+
2694
+ </td>
2695
+
2696
+
2697
+
2698
+
2699
+
2700
+ <td class="description last"></td>
2701
+ </tr>
2702
+
2703
+
2704
+
2705
+ <tr>
2706
+
2707
+ <td class="name"><code>primary_brand</code></td>
2708
+
2709
+
2710
+ <td class="type">
2711
+
2712
+
2713
+ <span class="param-type">string</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>first_access_at</code></td>
2732
+
2733
+
2734
+ <td class="type">
2735
+
2736
+
2737
+ <span class="param-type">string</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>is_challenge_owner</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>login_as_users</code></td>
2780
+
2781
+
2782
+ <td class="type">
2783
+
2784
+
2785
+ <span class="param-type">boolean</span>
2786
+
2787
+
2788
+
2789
+
2790
+ </td>
2791
+
2792
+
2793
+
2794
+
2795
+
2796
+ <td class="description last"></td>
2797
+ </tr>
2798
+
2799
+
2800
+ </tbody>
2801
+ </table>
2802
+
2803
+
2804
+
2805
+
2806
+
2807
+
2808
+
2809
+
2810
+ <h5 class="h5-types">Type:</h5>
2811
+ <ul>
2812
+ <li>
2813
+
2814
+ <span class="param-type">Object</span>
2815
+
2816
+
2817
+
2818
+ </li>
2819
+ </ul>
2820
+
2821
+
2822
+
2823
+
2824
+
2825
+
2826
+
2827
+
2828
+ <h4 class="name" id="UserPermissions">UserPermissions</h4>
2829
+
2830
+
2831
+
2832
+
2833
+
2834
+ <dl class="details">
2835
+
2836
+
2837
+
2838
+ <dt class="tag-source">Source:</dt>
2839
+ <dd class="tag-source"><ul class="dummy"><li>
2840
+ <a href="user_types.js.html">user/types.js</a>, <a href="user_types.js.html#line110">line 110</a>
2841
+ </li></ul></dd>
2842
+
2843
+
2844
+
2845
+
2846
+
2847
+
2848
+
2849
+
2850
+
2851
+
2852
+
2853
+
2854
+
2855
+
2856
+
2857
+
2858
+
2859
+
2860
+
2861
+
2862
+
2863
+
2864
+
2865
+
2866
+
2867
+
2868
+
2869
+
2870
+
2871
+
2872
+
2873
+ </dl>
2874
+
2875
+
2876
+
2877
+ <h5 class="subsection-title">Properties:</h5>
2878
+
2879
+
2880
+
2881
+ <table class="props">
2882
+ <thead>
2883
+ <tr>
2884
+
2885
+ <th>Name</th>
2886
+
2887
+
2888
+ <th>Type</th>
2889
+
2890
+
2891
+
2892
+
2893
+
2894
+ <th class="last">Description</th>
2895
+ </tr>
2896
+ </thead>
2897
+
2898
+ <tbody>
2899
+
2900
+
2901
+ <tr>
2902
+
2903
+ <td class="name"><code>permissions</code></td>
2904
+
2905
+
2906
+ <td class="type">
2907
+
2908
+
2909
+ <span class="param-type">Array.&lt;string></span>
2910
+
2911
+
2912
+
2913
+
2914
+ </td>
2915
+
2916
+
2917
+
2918
+
2919
+
2920
+ <td class="description last"></td>
2921
+ </tr>
2922
+
2923
+
2924
+
2925
+ <tr>
2926
+
2927
+ <td class="name"><code>isAdmin</code></td>
2928
+
2929
+
2930
+ <td class="type">
2931
+
2932
+
2933
+ <span class="param-type">boolean</span>
2934
+
2935
+
2936
+
2937
+
2938
+ </td>
2939
+
2940
+
2941
+
2942
+
2943
+
2944
+ <td class="description last"></td>
2945
+ </tr>
2946
+
2947
+
2948
+
2949
+ <tr>
2950
+
2951
+ <td class="name"><code>isABasicMember</code></td>
2952
+
2953
+
2954
+ <td class="type">
2955
+
2956
+
2957
+ <span class="param-type">boolean</span>
2958
+
2959
+
2960
+
2961
+
2962
+ </td>
2963
+
2964
+
2965
+
2966
+
2967
+
2968
+ <td class="description last"></td>
2969
+ </tr>
2970
+
2971
+
2972
+ </tbody>
2973
+ </table>
2974
+
2975
+
2976
+
2977
+
2978
+
2979
+
2980
+
2981
+
2982
+ <h5 class="h5-types">Type:</h5>
2983
+ <ul>
2984
+ <li>
2985
+
2986
+ <span class="param-type">Object</span>
2987
+
2988
+
2989
+
2990
+ </li>
2991
+ </ul>
2992
+
2993
+
2994
+
2995
+
2996
+
2997
+
2998
+
2999
+
3000
+
3001
+
3002
+ </article>
3003
+
3004
+ </section>
3005
+
3006
+
3007
+
3008
+
3009
+
3010
+
3011
+ </div>
3012
+
3013
+ <br class="clear">
3014
+
3015
+ <footer>
3016
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a> on Thu Mar 13 2025 09:07:06 GMT+0000 (Coordinated Universal Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
3017
+ </footer>
3018
+
3019
+ <script>prettyPrint();</script>
3020
+ <script src="scripts/polyfill.js"></script>
3021
+ <script src="scripts/linenumber.js"></script>
3022
+
3023
+
3024
+
3025
+ </body>
3026
+ </html>