@restorecommerce/facade 1.1.3 → 1.1.4
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/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [1.1.4](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@1.1.3...@restorecommerce/facade@1.1.4) (2022-11-16)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* command import ([fcbb6c1](https://github.com/restorecommerce/libs/commit/fcbb6c15b708fc63bf38d0dfa65946731cef3e79))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
## [1.1.3](https://github.com/restorecommerce/libs/compare/@restorecommerce/facade@1.1.2...@restorecommerce/facade@1.1.3) (2022-10-26)
|
7
18
|
|
8
19
|
|
@@ -23,5 +23,6 @@ export declare class ResourceSrvGrpcClient extends RestoreCommerceGrpcClient {
|
|
23
23
|
readonly organization: organizationClient;
|
24
24
|
readonly tax: taxClient;
|
25
25
|
readonly tax_type: tax_typeClient;
|
26
|
+
readonly command: any;
|
26
27
|
constructor(address: string, cfg: GrpcClientConfig);
|
27
28
|
}
|
@@ -13,6 +13,7 @@ const location_1 = require("@restorecommerce/rc-grpc-clients/dist/generated/io/r
|
|
13
13
|
const organization_1 = require("@restorecommerce/rc-grpc-clients/dist/generated/io/restorecommerce/organization");
|
14
14
|
const tax_1 = require("@restorecommerce/rc-grpc-clients/dist/generated/io/restorecommerce/tax");
|
15
15
|
const tax_type_1 = require("@restorecommerce/rc-grpc-clients/dist/generated/io/restorecommerce/tax_type");
|
16
|
+
const command_1 = require("@restorecommerce/rc-grpc-clients/dist/generated/io/restorecommerce/command");
|
16
17
|
class ResourceSrvGrpcClient extends rc_grpc_clients_1.RestoreCommerceGrpcClient {
|
17
18
|
constructor(address, cfg) {
|
18
19
|
super(address, cfg);
|
@@ -27,6 +28,7 @@ class ResourceSrvGrpcClient extends rc_grpc_clients_1.RestoreCommerceGrpcClient
|
|
27
28
|
this.organization = this.createClient(cfg, organization_1.ServiceDefinition, this.channel);
|
28
29
|
this.tax = this.createClient(cfg, tax_1.ServiceDefinition, this.channel);
|
29
30
|
this.tax_type = this.createClient(cfg, tax_type_1.ServiceDefinition, this.channel);
|
31
|
+
this.command = this.createClient(cfg, command_1.ServiceDefinition, this.channel);
|
30
32
|
}
|
31
33
|
}
|
32
34
|
exports.ResourceSrvGrpcClient = ResourceSrvGrpcClient;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@restorecommerce/facade",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.4",
|
4
4
|
"description": "Facade for Restorecommerce microservices",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -25,9 +25,9 @@
|
|
25
25
|
"@grpc/grpc-js": "^1.7.1",
|
26
26
|
"@grpc/proto-loader": "^0.7.3",
|
27
27
|
"@restorecommerce/grpc-client": "^1.0.3",
|
28
|
-
"@restorecommerce/kafka-client": "^1.0.
|
28
|
+
"@restorecommerce/kafka-client": "^1.0.5",
|
29
29
|
"@restorecommerce/logger": "^1.2.1",
|
30
|
-
"@restorecommerce/rc-grpc-clients": "^2.0.
|
30
|
+
"@restorecommerce/rc-grpc-clients": "^2.0.2",
|
31
31
|
"@restorecommerce/service-config": "^1.0.3",
|
32
32
|
"apollo-server-core": "^3.10.3",
|
33
33
|
"apollo-server-koa": "^3.10.3",
|
@@ -130,5 +130,5 @@
|
|
130
130
|
}
|
131
131
|
}
|
132
132
|
},
|
133
|
-
"gitHead": "
|
133
|
+
"gitHead": "2ec001696f611681778a13842a9e047f1db08059"
|
134
134
|
}
|