@comunica/actor-http-native 2.0.1-alpha.9.0 → 2.2.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/LICENSE.txt +22 -0
- package/components/ActorHttpNative.jsonld +30 -9
- package/components/context.jsonld +1 -1
- package/lib/index.js +5 -1
- package/package.json +8 -8
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright © 2017–now Ruben Taelman, Joachim Van Herwegen
|
|
4
|
+
Comunica Association and Ghent University – imec, Belgium
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
THE SOFTWARE.
|
|
@@ -121,13 +121,31 @@
|
|
|
121
121
|
"comment": "Actor that must be registered in the bus before this actor."
|
|
122
122
|
}
|
|
123
123
|
],
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
124
|
+
"memberFields": [
|
|
125
|
+
{
|
|
126
|
+
"@id": "cahn:components/ActorHttpNative.jsonld#ActorHttpNative__member_userAgent",
|
|
127
|
+
"memberFieldName": "userAgent"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"@id": "cahn:components/ActorHttpNative.jsonld#ActorHttpNative__member_requester",
|
|
131
|
+
"memberFieldName": "requester"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"@id": "cahn:components/ActorHttpNative.jsonld#ActorHttpNative__member_constructor",
|
|
135
|
+
"memberFieldName": "constructor"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"@id": "cahn:components/ActorHttpNative.jsonld#ActorHttpNative__member_createUserAgent",
|
|
139
|
+
"memberFieldName": "createUserAgent"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"@id": "cahn:components/ActorHttpNative.jsonld#ActorHttpNative__member_test",
|
|
143
|
+
"memberFieldName": "test"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"@id": "cahn:components/ActorHttpNative.jsonld#ActorHttpNative__member_run",
|
|
147
|
+
"memberFieldName": "run"
|
|
148
|
+
}
|
|
131
149
|
],
|
|
132
150
|
"constructorArguments": [
|
|
133
151
|
{
|
|
@@ -166,8 +184,11 @@
|
|
|
166
184
|
"@type": "AbstractClass",
|
|
167
185
|
"requireElement": "IActorHttpNativeArgs",
|
|
168
186
|
"parameters": [],
|
|
169
|
-
"
|
|
170
|
-
|
|
187
|
+
"memberFields": [
|
|
188
|
+
{
|
|
189
|
+
"@id": "cahn:components/ActorHttpNative.jsonld#IActorHttpNativeArgs__member_agentOptions",
|
|
190
|
+
"memberFieldName": "agentOptions"
|
|
191
|
+
}
|
|
171
192
|
],
|
|
172
193
|
"constructorArguments": []
|
|
173
194
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"@context": [
|
|
3
|
-
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^
|
|
3
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^5.0.0/components/context.jsonld",
|
|
4
4
|
{
|
|
5
5
|
"npmd": "https://linkedsoftwaredependencies.org/bundles/npm/",
|
|
6
6
|
"cahn": "npmd:@comunica/actor-http-native/^2.0.0/",
|
package/lib/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comunica/actor-http-native",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "A native http actor",
|
|
5
5
|
"lsd:module": true,
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"lib/**/*.js"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@comunica/bus-http": "2.
|
|
35
|
-
"@comunica/context-entries": "2.
|
|
36
|
-
"@comunica/core": "2.
|
|
37
|
-
"@comunica/mediatortype-time": "2.
|
|
38
|
-
"@types/parse-link-header": "^
|
|
34
|
+
"@comunica/bus-http": "^2.2.0",
|
|
35
|
+
"@comunica/context-entries": "^2.2.0",
|
|
36
|
+
"@comunica/core": "^2.2.0",
|
|
37
|
+
"@comunica/mediatortype-time": "^2.2.0",
|
|
38
|
+
"@types/parse-link-header": "^2.0.0",
|
|
39
39
|
"cross-fetch": "^3.0.5",
|
|
40
40
|
"follow-redirects": "^1.5.1",
|
|
41
|
-
"parse-link-header": "^
|
|
41
|
+
"parse-link-header": "^2.0.0"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "npm run build:ts && npm run build:components",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"browser": {
|
|
49
49
|
"./lib/Requester.js": "./lib/Requester-browser.js"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "00d4108e46250fb94b586bfb8caf5e8b1c704160"
|
|
52
52
|
}
|