@comunica/actor-http-proxy 2.0.1-alpha.5.0 → 2.0.1-alpha.6.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.
|
@@ -106,24 +106,11 @@
|
|
|
106
106
|
"comment": "Actor that must be registered in the bus before this actor."
|
|
107
107
|
}
|
|
108
108
|
],
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"@id": "cahp:components/ActorHttpProxy.jsonld#ActorHttpProxy__member_constructor",
|
|
117
|
-
"memberFieldName": "constructor"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"@id": "cahp:components/ActorHttpProxy.jsonld#ActorHttpProxy__member_test",
|
|
121
|
-
"memberFieldName": "test"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"@id": "cahp:components/ActorHttpProxy.jsonld#ActorHttpProxy__member_run",
|
|
125
|
-
"memberFieldName": "run"
|
|
126
|
-
}
|
|
109
|
+
"memberKeys": [
|
|
110
|
+
"mediatorHttp",
|
|
111
|
+
"constructor",
|
|
112
|
+
"test",
|
|
113
|
+
"run"
|
|
127
114
|
],
|
|
128
115
|
"constructorArguments": [
|
|
129
116
|
{
|
|
@@ -162,11 +149,8 @@
|
|
|
162
149
|
"@type": "AbstractClass",
|
|
163
150
|
"requireElement": "IActorHttpProxyArgs",
|
|
164
151
|
"parameters": [],
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
"@id": "cahp:components/ActorHttpProxy.jsonld#IActorHttpProxyArgs__member_mediatorHttp",
|
|
168
|
-
"memberFieldName": "mediatorHttp"
|
|
169
|
-
}
|
|
152
|
+
"memberKeys": [
|
|
153
|
+
"mediatorHttp"
|
|
170
154
|
],
|
|
171
155
|
"constructorArguments": []
|
|
172
156
|
}
|
|
@@ -19,23 +19,11 @@
|
|
|
19
19
|
"range": "xsd:string"
|
|
20
20
|
}
|
|
21
21
|
],
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
{
|
|
28
|
-
"@id": "cahp:components/ProxyHandlerStatic.jsonld#ProxyHandlerStatic__member_constructor",
|
|
29
|
-
"memberFieldName": "constructor"
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"@id": "cahp:components/ProxyHandlerStatic.jsonld#ProxyHandlerStatic__member_getProxy",
|
|
33
|
-
"memberFieldName": "getProxy"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"@id": "cahp:components/ProxyHandlerStatic.jsonld#ProxyHandlerStatic__member_modifyInput",
|
|
37
|
-
"memberFieldName": "modifyInput"
|
|
38
|
-
}
|
|
22
|
+
"memberKeys": [
|
|
23
|
+
"prefixUrl",
|
|
24
|
+
"constructor",
|
|
25
|
+
"getProxy",
|
|
26
|
+
"modifyInput"
|
|
39
27
|
],
|
|
40
28
|
"constructorArguments": [
|
|
41
29
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comunica/actor-http-proxy",
|
|
3
|
-
"version": "2.0.1-alpha.
|
|
3
|
+
"version": "2.0.1-alpha.6.0",
|
|
4
4
|
"description": "A proxy http actor",
|
|
5
5
|
"lsd:module": true,
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
|
+
"sideEffects": false,
|
|
16
17
|
"keywords": [
|
|
17
18
|
"comunica",
|
|
18
19
|
"actor",
|
|
@@ -30,16 +31,16 @@
|
|
|
30
31
|
"lib/**/*.js"
|
|
31
32
|
],
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@comunica/bus-http": "2.0.1-alpha.
|
|
34
|
-
"@comunica/context-entries": "2.0.1-alpha.
|
|
35
|
-
"@comunica/core": "2.0.1-alpha.
|
|
36
|
-
"@comunica/mediatortype-time": "2.0.1-alpha.
|
|
37
|
-
"@comunica/types": "2.0.1-alpha.
|
|
34
|
+
"@comunica/bus-http": "2.0.1-alpha.6.0",
|
|
35
|
+
"@comunica/context-entries": "2.0.1-alpha.6.0",
|
|
36
|
+
"@comunica/core": "2.0.1-alpha.6.0",
|
|
37
|
+
"@comunica/mediatortype-time": "2.0.1-alpha.6.0",
|
|
38
|
+
"@comunica/types": "2.0.1-alpha.6.0"
|
|
38
39
|
},
|
|
39
40
|
"scripts": {
|
|
40
41
|
"build": "npm run build:ts && npm run build:components",
|
|
41
42
|
"build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
|
|
42
43
|
"build:components": "componentsjs-generator"
|
|
43
44
|
},
|
|
44
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "bbf46a068e635256495a40e784a4691b22e88bd3"
|
|
45
46
|
}
|