@lansweeper/integrations-webhooks-notifier-grpc 0.2.1 → 0.2.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 +8 -0
- package/gen-proto/index.d.ts +2 -2
- package/gen-proto/webhooks_notifier_consumer_grpc_pb.d.ts +5 -4
- package/gen-proto/webhooks_notifier_consumer_grpc_pb.js +1 -1
- package/gen-proto/webhooks_notifier_consumer_pb.d.ts +0 -3
- package/gen-proto/webhooks_notifier_consumer_pb.js +3 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.2.2](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-webhooks-notifier-grpc@0.2.1...@lansweeper/integrations-webhooks-notifier-grpc@0.2.2) (2021-05-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @lansweeper/integrations-webhooks-notifier-grpc
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.2.1](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-webhooks-notifier-grpc@0.2.0...@lansweeper/integrations-webhooks-notifier-grpc@0.2.1) (2020-10-14)
|
|
7
15
|
|
|
8
16
|
|
package/gen-proto/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./webhooks_notifier_consumer_grpc_pb";
|
|
2
|
-
export * from "./webhooks_notifier_consumer_pb";
|
|
1
|
+
export * from "./webhooks_notifier_consumer_grpc_pb.d";
|
|
2
|
+
export * from "./webhooks_notifier_consumer_pb.d";
|
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
/* tslint:disable */
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
|
|
7
|
-
import * as grpc from "grpc";
|
|
7
|
+
import * as grpc from "@grpc/grpc-js";
|
|
8
|
+
import {handleClientStreamingCall} from "@grpc/grpc-js/build/src/server-call";
|
|
8
9
|
import * as webhooks_notifier_consumer_pb from "./webhooks_notifier_consumer_pb";
|
|
9
10
|
|
|
10
11
|
interface IIntegrationsRedeliverServiceService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
|
|
@@ -12,7 +13,7 @@ interface IIntegrationsRedeliverServiceService extends grpc.ServiceDefinition<gr
|
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
interface IIntegrationsRedeliverServiceService_IRedeliverNotification extends grpc.MethodDefinition<webhooks_notifier_consumer_pb.RedeliverNotificationRequest, webhooks_notifier_consumer_pb.RedeliverNotificationResponse> {
|
|
15
|
-
path:
|
|
16
|
+
path: "/lansweeper.integrationswebhooknotifierconsumer.v1.IntegrationsRedeliverService/RedeliverNotification";
|
|
16
17
|
requestStream: false;
|
|
17
18
|
responseStream: false;
|
|
18
19
|
requestSerialize: grpc.serialize<webhooks_notifier_consumer_pb.RedeliverNotificationRequest>;
|
|
@@ -23,7 +24,7 @@ interface IIntegrationsRedeliverServiceService_IRedeliverNotification extends gr
|
|
|
23
24
|
|
|
24
25
|
export const IntegrationsRedeliverServiceService: IIntegrationsRedeliverServiceService;
|
|
25
26
|
|
|
26
|
-
export interface IIntegrationsRedeliverServiceServer {
|
|
27
|
+
export interface IIntegrationsRedeliverServiceServer extends grpc.UntypedServiceImplementation {
|
|
27
28
|
redeliverNotification: grpc.handleUnaryCall<webhooks_notifier_consumer_pb.RedeliverNotificationRequest, webhooks_notifier_consumer_pb.RedeliverNotificationResponse>;
|
|
28
29
|
}
|
|
29
30
|
|
|
@@ -34,7 +35,7 @@ export interface IIntegrationsRedeliverServiceClient {
|
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
export class IntegrationsRedeliverServiceClient extends grpc.Client implements IIntegrationsRedeliverServiceClient {
|
|
37
|
-
constructor(address: string, credentials: grpc.ChannelCredentials, options?:
|
|
38
|
+
constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial<grpc.ClientOptions>);
|
|
38
39
|
public redeliverNotification(request: webhooks_notifier_consumer_pb.RedeliverNotificationRequest, callback: (error: grpc.ServiceError | null, response: webhooks_notifier_consumer_pb.RedeliverNotificationResponse) => void): grpc.ClientUnaryCall;
|
|
39
40
|
public redeliverNotification(request: webhooks_notifier_consumer_pb.RedeliverNotificationRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: webhooks_notifier_consumer_pb.RedeliverNotificationResponse) => void): grpc.ClientUnaryCall;
|
|
40
41
|
public redeliverNotification(request: webhooks_notifier_consumer_pb.RedeliverNotificationRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: webhooks_notifier_consumer_pb.RedeliverNotificationResponse) => void): grpc.ClientUnaryCall;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// GENERATED CODE -- DO NOT EDIT!
|
|
2
2
|
|
|
3
3
|
'use strict';
|
|
4
|
-
var grpc = require('grpc');
|
|
4
|
+
var grpc = require('@grpc/grpc-js');
|
|
5
5
|
var webhooks_notifier_consumer_pb = require('./webhooks_notifier_consumer_pb.js');
|
|
6
6
|
|
|
7
7
|
function serialize_lansweeper_integrationswebhooknotifierconsumer_v1_RedeliverNotificationRequest(arg) {
|
|
@@ -9,11 +9,9 @@ import * as jspb from "google-protobuf";
|
|
|
9
9
|
export class RedeliverNotificationRequest extends jspb.Message {
|
|
10
10
|
getNotificationid(): string;
|
|
11
11
|
setNotificationid(value: string): RedeliverNotificationRequest;
|
|
12
|
-
|
|
13
12
|
getTraceid(): string;
|
|
14
13
|
setTraceid(value: string): RedeliverNotificationRequest;
|
|
15
14
|
|
|
16
|
-
|
|
17
15
|
serializeBinary(): Uint8Array;
|
|
18
16
|
toObject(includeInstance?: boolean): RedeliverNotificationRequest.AsObject;
|
|
19
17
|
static toObject(includeInstance: boolean, msg: RedeliverNotificationRequest): RedeliverNotificationRequest.AsObject;
|
|
@@ -35,7 +33,6 @@ export class RedeliverNotificationResponse extends jspb.Message {
|
|
|
35
33
|
getSuccess(): number;
|
|
36
34
|
setSuccess(value: number): RedeliverNotificationResponse;
|
|
37
35
|
|
|
38
|
-
|
|
39
36
|
serializeBinary(): Uint8Array;
|
|
40
37
|
toObject(includeInstance?: boolean): RedeliverNotificationResponse.AsObject;
|
|
41
38
|
static toObject(includeInstance: boolean, msg: RedeliverNotificationResponse): RedeliverNotificationResponse.AsObject;
|
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* @fileoverview
|
|
4
4
|
* @enhanceable
|
|
5
|
+
* @suppress {missingRequire} reports error on implicit type usages.
|
|
5
6
|
* @suppress {messageConventions} JS Compiler reports an error if a variable or
|
|
6
7
|
* field starts with 'MSG_' and isn't a translatable message.
|
|
7
8
|
* @public
|
|
8
9
|
*/
|
|
9
10
|
// GENERATED CODE -- DO NOT EDIT!
|
|
11
|
+
/* eslint-disable */
|
|
12
|
+
// @ts-nocheck
|
|
10
13
|
|
|
11
14
|
var jspb = require('google-protobuf');
|
|
12
15
|
var goog = jspb;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/integrations-webhooks-notifier-grpc",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"main": "gen-proto/index.js",
|
|
5
5
|
"types": "gen-proto/index.d.ts",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"
|
|
9
|
-
"
|
|
8
|
+
"@grpc/grpc-js": "^1.3.2",
|
|
9
|
+
"google-protobuf": "^3.17.0"
|
|
10
10
|
},
|
|
11
|
-
"gitHead": "
|
|
11
|
+
"gitHead": "f2b029a2de060d0bded7b42ed6caacc44f3ebd45"
|
|
12
12
|
}
|