@dpgradio/creative 5.2.0 → 5.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package-lock.json +3891 -0
- package/package.json +1 -1
- package/src/api/api.js +2 -0
- package/src/api/endpoints/ForbiddenWord.js +7 -0
- package/src/api/endpoints/Members.js +4 -0
package/package.json
CHANGED
package/src/api/api.js
CHANGED
|
@@ -5,6 +5,7 @@ import Channels from './endpoints/Channels.js'
|
|
|
5
5
|
import Config from './endpoints/Config.js'
|
|
6
6
|
import Members from './endpoints/Members.js'
|
|
7
7
|
import Ratings from './endpoints/Ratings.js'
|
|
8
|
+
import ForbiddenWord from './endpoints/ForbiddenWord.js'
|
|
8
9
|
|
|
9
10
|
const GLOBAL_API_URL = 'https://api.radio.dpgmedia.cloud'
|
|
10
11
|
|
|
@@ -27,6 +28,7 @@ export class Api {
|
|
|
27
28
|
this.config = new Config(this)
|
|
28
29
|
this.members = new Members(this)
|
|
29
30
|
this.ratings = new Ratings(this)
|
|
31
|
+
this.forbiddenWord = new ForbiddenWord(this)
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
get baseUrl() {
|