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 +5 -1
- package/package.json +1 -5
- package/src/index.js +1 -1
- package/src/rpc.js +1 -1
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
|
-
|
|
329
|
+
Oct 16, 2024
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dmx-api",
|
|
3
|
-
"version": "3.0
|
|
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
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('/
|
|
544
|
+
return http.post('/account-management/user-account', {
|
|
545
545
|
username, password
|
|
546
546
|
}).then(response =>
|
|
547
547
|
new Topic(response.data)
|