@moorline/http 0.0.2 → 0.0.4
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/manifest.json +1 -1
- package/moorline.dist.json +12 -6
- package/package.json +8 -5
package/manifest.json
CHANGED
package/moorline.dist.json
CHANGED
|
@@ -2,24 +2,30 @@
|
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"name": "moorline/http",
|
|
4
4
|
"description": "Moorline HTTP adapter for the Moorline Control API.",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.4",
|
|
6
6
|
"display": {
|
|
7
7
|
"name": "HTTP API Adapter",
|
|
8
8
|
"description": "Expose Moorline control over HTTP with bearer-token auth.",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.4",
|
|
10
10
|
"category": "Moorline API Adapters",
|
|
11
|
-
"tags": [
|
|
11
|
+
"tags": [
|
|
12
|
+
"moorline",
|
|
13
|
+
"http",
|
|
14
|
+
"control-api"
|
|
15
|
+
],
|
|
12
16
|
"publisher": "Moorline"
|
|
13
17
|
},
|
|
14
18
|
"distribution": {
|
|
15
|
-
"audiences": [
|
|
19
|
+
"audiences": [
|
|
20
|
+
"setup"
|
|
21
|
+
],
|
|
16
22
|
"setupOrder": 5
|
|
17
23
|
},
|
|
18
24
|
"compatibility": {
|
|
19
|
-
"moorline": "~0.0.
|
|
25
|
+
"moorline": "~0.0.4"
|
|
20
26
|
},
|
|
21
27
|
"release": {
|
|
22
|
-
"recommendedRef": "v0.0.
|
|
28
|
+
"recommendedRef": "v0.0.4",
|
|
23
29
|
"channel": "stable"
|
|
24
30
|
}
|
|
25
31
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moorline/http",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Moorline HTTP API adapter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@moorline/contracts": "0.0.
|
|
38
|
-
"@moorline/core": "0.0.
|
|
39
|
-
"@moorline/control-api": "0.0.
|
|
37
|
+
"@moorline/contracts": "0.0.4",
|
|
38
|
+
"@moorline/core": "0.0.4",
|
|
39
|
+
"@moorline/control-api": "0.0.4"
|
|
40
40
|
},
|
|
41
41
|
"moorline": {
|
|
42
42
|
"schemaVersion": 1,
|
|
@@ -50,5 +50,8 @@
|
|
|
50
50
|
"type": "git",
|
|
51
51
|
"url": "git+ssh://git@github.com/Moorline/moorline.git",
|
|
52
52
|
"directory": "packages/http"
|
|
53
|
-
}
|
|
53
|
+
},
|
|
54
|
+
"keywords": [
|
|
55
|
+
"moorline-package"
|
|
56
|
+
]
|
|
54
57
|
}
|