@lansweeper/integrations-limit-checker-grpc 0.1.0 → 0.1.2
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,28 @@
|
|
|
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
|
+
## [0.1.2](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-limit-checker-grpc@0.1.1...@lansweeper/integrations-limit-checker-grpc@0.1.2) (2020-08-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* add missing google protobuf dependency ([eba74ae](https://github.com/Lansweeper/lansweeperapis/commit/eba74aecdb257e6119d172a80129e7ea0fd258d2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.1.1](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-limit-checker-grpc@0.1.0...@lansweeper/integrations-limit-checker-grpc@0.1.1) (2020-08-06)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* service name in protos to avoid duplication ([1b92705](https://github.com/Lansweeper/lansweeperapis/commit/1b9270542f6077daa4b10ebe2462d7fbb1a6685e))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# 0.1.0 (2020-08-06)
|
|
7
29
|
|
|
8
30
|
|
package/gen-proto/image.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"file":[{"name":"limit_checker_api.proto","package":"lansweeper.integrationslimitchecker.v1","messageType":[{"name":"ExportStatusLimitCheckerRequest","field":[{"name":"appId","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"appId"}]},{"name":"ExportStatusLimitCheckerResponse","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]}],"service":[{"name":"
|
|
1
|
+
{"file":[{"name":"limit_checker_api.proto","package":"lansweeper.integrationslimitchecker.v1","messageType":[{"name":"ExportStatusLimitCheckerRequest","field":[{"name":"appId","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"appId"}]},{"name":"ExportStatusLimitCheckerResponse","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]}],"service":[{"name":"IntegrationsLimitChecker","method":[{"name":"ExportStatusLimitChecker","inputType":".lansweeper.integrationslimitchecker.v1.ExportStatusLimitCheckerRequest","outputType":".lansweeper.integrationslimitchecker.v1.ExportStatusLimitCheckerResponse","options":{}}]}],"sourceCodeInfo":{"location":[{"span":[0,0,14,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,47]},{"path":[4,0],"span":[4,0,6,1]},{"path":[4,0,1],"span":[4,8,39]},{"path":[4,0,2,0],"span":[5,2,19]},{"path":[4,0,2,0,5],"span":[5,2,8]},{"path":[4,0,2,0,1],"span":[5,9,14]},{"path":[4,0,2,0,3],"span":[5,17,18]},{"path":[4,1],"span":[8,0,10,1]},{"path":[4,1,1],"span":[8,8,40]},{"path":[4,1,2,0],"span":[9,2,21]},{"path":[4,1,2,0,5],"span":[9,2,8]},{"path":[4,1,2,0,1],"span":[9,9,16]},{"path":[4,1,2,0,3],"span":[9,19,20]},{"path":[6,0],"span":[12,0,14,1]},{"path":[6,0,1],"span":[12,8,32]},{"path":[6,0,2,0],"span":[13,2,110]},{"path":[6,0,2,0,1],"span":[13,6,30]},{"path":[6,0,2,0,2],"span":[13,32,63]},{"path":[6,0,2,0,3],"span":[13,74,106]}]},"syntax":"proto3"}],"bufbuildImageExtension":{}}
|
package/gen-proto/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./limit_checker_api_grpc_pb
|
|
2
|
-
export * from "./limit_checker_api_pb
|
|
1
|
+
export * from "./limit_checker_api_grpc_pb";
|
|
2
|
+
export * from "./limit_checker_api_pb";
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
import * as grpc from "grpc";
|
|
8
8
|
import * as limit_checker_api_pb from "./limit_checker_api_pb";
|
|
9
9
|
|
|
10
|
-
interface
|
|
11
|
-
exportStatusLimitChecker:
|
|
10
|
+
interface IIntegrationsLimitCheckerService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
|
|
11
|
+
exportStatusLimitChecker: IIntegrationsLimitCheckerService_IExportStatusLimitChecker;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
interface
|
|
15
|
-
path: string; // "/lansweeper.integrationslimitchecker.v1.
|
|
14
|
+
interface IIntegrationsLimitCheckerService_IExportStatusLimitChecker extends grpc.MethodDefinition<limit_checker_api_pb.ExportStatusLimitCheckerRequest, limit_checker_api_pb.ExportStatusLimitCheckerResponse> {
|
|
15
|
+
path: string; // "/lansweeper.integrationslimitchecker.v1.IntegrationsLimitChecker/ExportStatusLimitChecker"
|
|
16
16
|
requestStream: false;
|
|
17
17
|
responseStream: false;
|
|
18
18
|
requestSerialize: grpc.serialize<limit_checker_api_pb.ExportStatusLimitCheckerRequest>;
|
|
@@ -21,19 +21,19 @@ interface IIntegrationsLimitCheckerServiceService_IExportStatusLimitChecker exte
|
|
|
21
21
|
responseDeserialize: grpc.deserialize<limit_checker_api_pb.ExportStatusLimitCheckerResponse>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
export const
|
|
24
|
+
export const IntegrationsLimitCheckerService: IIntegrationsLimitCheckerService;
|
|
25
25
|
|
|
26
|
-
export interface
|
|
26
|
+
export interface IIntegrationsLimitCheckerServer {
|
|
27
27
|
exportStatusLimitChecker: grpc.handleUnaryCall<limit_checker_api_pb.ExportStatusLimitCheckerRequest, limit_checker_api_pb.ExportStatusLimitCheckerResponse>;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
export interface
|
|
30
|
+
export interface IIntegrationsLimitCheckerClient {
|
|
31
31
|
exportStatusLimitChecker(request: limit_checker_api_pb.ExportStatusLimitCheckerRequest, callback: (error: grpc.ServiceError | null, response: limit_checker_api_pb.ExportStatusLimitCheckerResponse) => void): grpc.ClientUnaryCall;
|
|
32
32
|
exportStatusLimitChecker(request: limit_checker_api_pb.ExportStatusLimitCheckerRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: limit_checker_api_pb.ExportStatusLimitCheckerResponse) => void): grpc.ClientUnaryCall;
|
|
33
33
|
exportStatusLimitChecker(request: limit_checker_api_pb.ExportStatusLimitCheckerRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: limit_checker_api_pb.ExportStatusLimitCheckerResponse) => void): grpc.ClientUnaryCall;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
export class
|
|
36
|
+
export class IntegrationsLimitCheckerClient extends grpc.Client implements IIntegrationsLimitCheckerClient {
|
|
37
37
|
constructor(address: string, credentials: grpc.ChannelCredentials, options?: object);
|
|
38
38
|
public exportStatusLimitChecker(request: limit_checker_api_pb.ExportStatusLimitCheckerRequest, callback: (error: grpc.ServiceError | null, response: limit_checker_api_pb.ExportStatusLimitCheckerResponse) => void): grpc.ClientUnaryCall;
|
|
39
39
|
public exportStatusLimitChecker(request: limit_checker_api_pb.ExportStatusLimitCheckerRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: limit_checker_api_pb.ExportStatusLimitCheckerResponse) => void): grpc.ClientUnaryCall;
|
|
@@ -27,9 +27,9 @@ function deserialize_lansweeper_integrationslimitchecker_v1_ExportStatusLimitChe
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
var
|
|
30
|
+
var IntegrationsLimitCheckerService = exports.IntegrationsLimitCheckerService = {
|
|
31
31
|
exportStatusLimitChecker: {
|
|
32
|
-
path: '/lansweeper.integrationslimitchecker.v1.
|
|
32
|
+
path: '/lansweeper.integrationslimitchecker.v1.IntegrationsLimitChecker/ExportStatusLimitChecker',
|
|
33
33
|
requestStream: false,
|
|
34
34
|
responseStream: false,
|
|
35
35
|
requestType: limit_checker_api_pb.ExportStatusLimitCheckerRequest,
|
|
@@ -41,4 +41,4 @@ var IntegrationsLimitCheckerServiceService = exports.IntegrationsLimitCheckerSer
|
|
|
41
41
|
},
|
|
42
42
|
};
|
|
43
43
|
|
|
44
|
-
exports.
|
|
44
|
+
exports.IntegrationsLimitCheckerClient = grpc.makeGenericClientConstructor(IntegrationsLimitCheckerService);
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/integrations-limit-checker-grpc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"main": "gen-proto/index.js",
|
|
5
5
|
"types": "gen-proto/index.d.ts",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
|
+
"google-protobuf": "^3.12.4",
|
|
8
9
|
"grpc": "^1.24.3"
|
|
9
10
|
},
|
|
10
|
-
"gitHead": "
|
|
11
|
+
"gitHead": "f843d476437966078ebbfde83f95fb28cc9dfa04"
|
|
11
12
|
}
|
|
@@ -10,6 +10,6 @@ message ExportStatusLimitCheckerResponse {
|
|
|
10
10
|
string message = 1;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
service
|
|
13
|
+
service IntegrationsLimitChecker {
|
|
14
14
|
rpc ExportStatusLimitChecker (ExportStatusLimitCheckerRequest) returns (ExportStatusLimitCheckerResponse) {}
|
|
15
15
|
}
|