@gapi/core 1.8.151 → 1.8.152
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/README.md +3 -4
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
**Created to provide complex backend scalable applications with minimum effort.**
|
|
10
10
|
|
|
11
|
-
**For questions/issues you can write ticket [here](
|
|
11
|
+
**For questions/issues you can write ticket [here](https://github.com/Stradivario/gapi/issues)**
|
|
12
12
|
|
|
13
13
|
<!-- <p align="center"> -->
|
|
14
14
|
|
|
@@ -178,7 +178,7 @@ Bootstrap(
|
|
|
178
178
|
{ name: 'accounts', url: 'http://localhost:9000/graphql' },
|
|
179
179
|
{ name: 'products', url: 'http://localhost:9001/graphql' },
|
|
180
180
|
],
|
|
181
|
-
})
|
|
181
|
+
})
|
|
182
182
|
).subscribe(() => console.log('started'));
|
|
183
183
|
```
|
|
184
184
|
|
|
@@ -1519,8 +1519,7 @@ export interface UserInfo {
|
|
|
1519
1519
|
|
|
1520
1520
|
@Service()
|
|
1521
1521
|
export class AuthPrivateService {
|
|
1522
|
-
constructor() // private connectionHookService: ConnectionHookService // private authService: AuthService,
|
|
1523
|
-
{
|
|
1522
|
+
constructor() { // private connectionHookService: ConnectionHookService // private authService: AuthService,
|
|
1524
1523
|
// this.connectionHookService.modifyHooks.onSubConnection = this.onSubConnection.bind(this);
|
|
1525
1524
|
// this.authService.modifyFunctions.validateToken = this.validateToken.bind(this);
|
|
1526
1525
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gapi/core",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.152",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/Stradivario/gapi.git"
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"patch": "npm run build && npm version patch && npm publish --update-readme --access public && npm run delete-dist",
|
|
11
11
|
"delete-dist": "rm -rf dist",
|
|
12
12
|
"clean": "git clean -dxf",
|
|
13
|
+
"test": "echo test",
|
|
13
14
|
"lint": "npx eslint . --ext .ts",
|
|
14
15
|
"lint-fix": "npx eslint . --fix --ext .ts",
|
|
15
16
|
"build": "rm -rf dist && tsc || true"
|
|
@@ -21,10 +22,10 @@
|
|
|
21
22
|
],
|
|
22
23
|
"license": "MIT",
|
|
23
24
|
"bugs": {
|
|
24
|
-
"url": "
|
|
25
|
+
"url": "https://github.com/Stradivario/gapi/issues"
|
|
25
26
|
},
|
|
26
27
|
"dependencies": {
|
|
27
|
-
"@gapi/daemon": "^1.8.
|
|
28
|
+
"@gapi/daemon": "^1.8.151",
|
|
28
29
|
"@rxdi/core": "^0.7.173",
|
|
29
30
|
"@rxdi/graphql": "^0.7.173",
|
|
30
31
|
"@rxdi/graphql-pubsub": "^0.7.173",
|
|
@@ -61,7 +62,7 @@
|
|
|
61
62
|
"verbose": true,
|
|
62
63
|
"collectCoverage": true
|
|
63
64
|
},
|
|
64
|
-
"description": "",
|
|
65
66
|
"devDependencies": {
|
|
66
67
|
"@types/hapi": "^18.0.2",
|
|
67
68
|
"typescript": "^3.8.3"
|