@gapi/daemon 1.8.145 → 1.8.146
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.
|
@@ -13,10 +13,10 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
13
13
|
};
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.DaemonService = void 0;
|
|
16
|
+
const hapi_1 = require("@hapi/hapi");
|
|
16
17
|
const core_1 = require("@rxdi/core");
|
|
17
18
|
const graphql_1 = require("@rxdi/graphql");
|
|
18
|
-
const
|
|
19
|
-
const hapi_2 = require("hapi");
|
|
19
|
+
const hapi_2 = require("@rxdi/hapi");
|
|
20
20
|
const daemon_interface_1 = require("../daemon.interface");
|
|
21
21
|
let DaemonService = class DaemonService {
|
|
22
22
|
constructor(defaultDaemonLink, server) {
|
|
@@ -47,7 +47,7 @@ let DaemonService = class DaemonService {
|
|
|
47
47
|
DaemonService = __decorate([
|
|
48
48
|
core_1.Injectable(),
|
|
49
49
|
__param(0, core_1.Inject(daemon_interface_1.DaemonLink)),
|
|
50
|
-
__param(1, core_1.Inject(
|
|
51
|
-
__metadata("design:paramtypes", [String,
|
|
50
|
+
__param(1, core_1.Inject(hapi_2.HAPI_SERVER)),
|
|
51
|
+
__metadata("design:paramtypes", [String, hapi_1.Server])
|
|
52
52
|
], DaemonService);
|
|
53
53
|
exports.DaemonService = DaemonService;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gapi/daemon",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.146",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/Stradivario/gapi.git"
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/hapi": "^18.0.2",
|
|
57
57
|
"typescript": "^3.8.3",
|
|
58
|
-
"@rxdi/core": "^0.7.
|
|
59
|
-
"@rxdi/graphql": "^0.7.
|
|
60
|
-
"@rxdi/hapi": "^0.7.
|
|
58
|
+
"@rxdi/core": "^0.7.172",
|
|
59
|
+
"@rxdi/graphql": "^0.7.172",
|
|
60
|
+
"@rxdi/hapi": "^0.7.172"
|
|
61
61
|
}
|
|
62
62
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { Server } from '@hapi/hapi';
|
|
1
2
|
import { Inject, Injectable } from '@rxdi/core';
|
|
2
3
|
import { sendRequest } from '@rxdi/graphql';
|
|
3
4
|
import { HAPI_SERVER } from '@rxdi/hapi';
|
|
4
|
-
import { Server } from 'hapi';
|
|
5
5
|
|
|
6
6
|
import { DaemonLink } from '../daemon.interface';
|
|
7
7
|
|