dmx-api 3.0.1 → 3.1.0

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/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Version History
4
4
 
5
+ **3.1** -- Oct 16, 2024
6
+
7
+ * Adapted to DMX 5.3.5 (account management)
8
+
5
9
  **3.0.1** -- Jun 6, 2023
6
10
 
7
11
  * Improvement:
@@ -322,4 +326,4 @@ library's `init()` function.
322
326
 
323
327
  ------------
324
328
  Jörg Richter
325
- Jun 6, 2023
329
+ Oct 16, 2024
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dmx-api",
3
- "version": "3.0.1",
3
+ "version": "3.1.0",
4
4
  "description": "API and utilities for DMX 5 based frontends",
5
5
  "author": "Jörg Richter <jri@dmx.berlin>",
6
6
  "license": "AGPL-3.0",
@@ -9,10 +9,6 @@
9
9
  "type": "git",
10
10
  "url": "https://github.com/dmx-systems/dmx-api.git"
11
11
  },
12
- "scripts": {
13
- "build": "../../node_modules/.bin/webpack -p --hide-modules",
14
- "stats": "../../node_modules/.bin/webpack -p --json > stats.json && ../../node_modules/.bin/webpack-bundle-analyzer stats.json dist"
15
- },
16
12
  "dependencies": {
17
13
  "axios": "0.18.1",
18
14
  "clone": "2.1.2",
package/src/index.js CHANGED
@@ -6,7 +6,7 @@ import icons from './icons'
6
6
  import DMXWebSocket from './websocket'
7
7
  import {default as typeCache, init as initTypeCache, storeModule} from './type-cache'
8
8
 
9
- console.log('[DMX-API] 3.0.1')
9
+ console.log('[DMX-API] 3.1')
10
10
 
11
11
  let adminWorkspaceId // promise
12
12
 
package/src/rpc.js CHANGED
@@ -541,7 +541,7 @@ export default {
541
541
  * @return a promise for a Username topic
542
542
  */
543
543
  createUserAccount (username, password) {
544
- return http.post('/access-control/user-account', {
544
+ return http.post('/account-management/user-account', {
545
545
  username, password
546
546
  }).then(response =>
547
547
  new Topic(response.data)