@rxdi/http 0.7.190 → 0.7.191-nightly.1
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/dist/http.provider.js +2 -2
- package/dist/http.tokens.js +2 -2
- package/dist/index.js +7 -3
- package/package.json +4 -4
package/dist/http.provider.js
CHANGED
|
@@ -54,11 +54,11 @@ let HttpClient = class HttpClient {
|
|
|
54
54
|
.join('&');
|
|
55
55
|
}
|
|
56
56
|
};
|
|
57
|
+
exports.HttpClient = HttpClient;
|
|
57
58
|
__decorate([
|
|
58
59
|
(0, core_1.Injector)(http_tokens_1.GraphqClientConfig),
|
|
59
60
|
__metadata("design:type", Object)
|
|
60
61
|
], HttpClient.prototype, "graphqlConfig", void 0);
|
|
61
|
-
HttpClient = __decorate([
|
|
62
|
+
exports.HttpClient = HttpClient = __decorate([
|
|
62
63
|
(0, core_1.Injectable)()
|
|
63
64
|
], HttpClient);
|
|
64
|
-
exports.HttpClient = HttpClient;
|
package/dist/http.tokens.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.GraphqClientConfig = void 0;
|
|
4
|
+
exports.gql = gql;
|
|
4
5
|
const core_1 = require("@rxdi/core");
|
|
5
6
|
exports.GraphqClientConfig = new core_1.InjectionToken();
|
|
6
7
|
function gql(...args) {
|
|
@@ -17,4 +18,3 @@ function gql(...args) {
|
|
|
17
18
|
}
|
|
18
19
|
return result;
|
|
19
20
|
}
|
|
20
|
-
exports.gql = gql;
|
package/dist/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];
|
|
@@ -34,11 +38,11 @@ let HttpModule = HttpModule_1 = class HttpModule {
|
|
|
34
38
|
};
|
|
35
39
|
}
|
|
36
40
|
};
|
|
37
|
-
HttpModule =
|
|
41
|
+
exports.HttpModule = HttpModule;
|
|
42
|
+
exports.HttpModule = HttpModule = HttpModule_1 = __decorate([
|
|
38
43
|
(0, core_1.Module)({
|
|
39
44
|
providers: [http_provider_1.HttpClient],
|
|
40
45
|
})
|
|
41
46
|
], HttpModule);
|
|
42
|
-
exports.HttpModule = HttpModule;
|
|
43
47
|
__exportStar(require("./http.provider"), exports);
|
|
44
48
|
__exportStar(require("./http.tokens"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdi/http",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.191-nightly.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/rxdi/mono/blob/master/README.md",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@rxdi/core": "^0.7.
|
|
30
|
+
"@rxdi/core": "^0.7.191-nightly.0",
|
|
31
31
|
"rxjs": "^7.8.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/jest": "^24.0.22",
|
|
35
|
-
"@types/node": "^
|
|
35
|
+
"@types/node": "^25.0.3",
|
|
36
36
|
"jest": "^24.8.0",
|
|
37
37
|
"jest-cli": "^24.8.1",
|
|
38
38
|
"ts-jest": "^24.0.2",
|
|
39
39
|
"tslint": "^5.20.1",
|
|
40
40
|
"tslint-language-service": "^0.9.9",
|
|
41
|
-
"typescript": "^
|
|
41
|
+
"typescript": "^5.9.3"
|
|
42
42
|
},
|
|
43
43
|
"jest": {
|
|
44
44
|
"testEnvironment": "node",
|