@gitpod/supervisor-api-grpc 0.1.5-patch-1.2 → 0.1.5-pavel-git-status-fix.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.
@@ -0,0 +1,122 @@
1
+ // package: supervisor
2
+ // file: notification.proto
3
+
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+
7
+ import * as grpc from "@grpc/grpc-js";
8
+ import * as notification_pb from "./notification_pb";
9
+
10
+ interface INotificationServiceService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
11
+ notify: INotificationServiceService_INotify;
12
+ subscribe: INotificationServiceService_ISubscribe;
13
+ respond: INotificationServiceService_IRespond;
14
+ subscribeActive: INotificationServiceService_ISubscribeActive;
15
+ notifyActive: INotificationServiceService_INotifyActive;
16
+ notifyActiveRespond: INotificationServiceService_INotifyActiveRespond;
17
+ }
18
+
19
+ interface INotificationServiceService_INotify extends grpc.MethodDefinition<notification_pb.NotifyRequest, notification_pb.NotifyResponse> {
20
+ path: "/supervisor.NotificationService/Notify";
21
+ requestStream: false;
22
+ responseStream: false;
23
+ requestSerialize: grpc.serialize<notification_pb.NotifyRequest>;
24
+ requestDeserialize: grpc.deserialize<notification_pb.NotifyRequest>;
25
+ responseSerialize: grpc.serialize<notification_pb.NotifyResponse>;
26
+ responseDeserialize: grpc.deserialize<notification_pb.NotifyResponse>;
27
+ }
28
+ interface INotificationServiceService_ISubscribe extends grpc.MethodDefinition<notification_pb.SubscribeRequest, notification_pb.SubscribeResponse> {
29
+ path: "/supervisor.NotificationService/Subscribe";
30
+ requestStream: false;
31
+ responseStream: true;
32
+ requestSerialize: grpc.serialize<notification_pb.SubscribeRequest>;
33
+ requestDeserialize: grpc.deserialize<notification_pb.SubscribeRequest>;
34
+ responseSerialize: grpc.serialize<notification_pb.SubscribeResponse>;
35
+ responseDeserialize: grpc.deserialize<notification_pb.SubscribeResponse>;
36
+ }
37
+ interface INotificationServiceService_IRespond extends grpc.MethodDefinition<notification_pb.RespondRequest, notification_pb.RespondResponse> {
38
+ path: "/supervisor.NotificationService/Respond";
39
+ requestStream: false;
40
+ responseStream: false;
41
+ requestSerialize: grpc.serialize<notification_pb.RespondRequest>;
42
+ requestDeserialize: grpc.deserialize<notification_pb.RespondRequest>;
43
+ responseSerialize: grpc.serialize<notification_pb.RespondResponse>;
44
+ responseDeserialize: grpc.deserialize<notification_pb.RespondResponse>;
45
+ }
46
+ interface INotificationServiceService_ISubscribeActive extends grpc.MethodDefinition<notification_pb.SubscribeActiveRequest, notification_pb.SubscribeActiveResponse> {
47
+ path: "/supervisor.NotificationService/SubscribeActive";
48
+ requestStream: false;
49
+ responseStream: true;
50
+ requestSerialize: grpc.serialize<notification_pb.SubscribeActiveRequest>;
51
+ requestDeserialize: grpc.deserialize<notification_pb.SubscribeActiveRequest>;
52
+ responseSerialize: grpc.serialize<notification_pb.SubscribeActiveResponse>;
53
+ responseDeserialize: grpc.deserialize<notification_pb.SubscribeActiveResponse>;
54
+ }
55
+ interface INotificationServiceService_INotifyActive extends grpc.MethodDefinition<notification_pb.NotifyActiveRequest, notification_pb.NotifyActiveResponse> {
56
+ path: "/supervisor.NotificationService/NotifyActive";
57
+ requestStream: false;
58
+ responseStream: false;
59
+ requestSerialize: grpc.serialize<notification_pb.NotifyActiveRequest>;
60
+ requestDeserialize: grpc.deserialize<notification_pb.NotifyActiveRequest>;
61
+ responseSerialize: grpc.serialize<notification_pb.NotifyActiveResponse>;
62
+ responseDeserialize: grpc.deserialize<notification_pb.NotifyActiveResponse>;
63
+ }
64
+ interface INotificationServiceService_INotifyActiveRespond extends grpc.MethodDefinition<notification_pb.NotifyActiveRespondRequest, notification_pb.NotifyActiveRespondResponse> {
65
+ path: "/supervisor.NotificationService/NotifyActiveRespond";
66
+ requestStream: false;
67
+ responseStream: false;
68
+ requestSerialize: grpc.serialize<notification_pb.NotifyActiveRespondRequest>;
69
+ requestDeserialize: grpc.deserialize<notification_pb.NotifyActiveRespondRequest>;
70
+ responseSerialize: grpc.serialize<notification_pb.NotifyActiveRespondResponse>;
71
+ responseDeserialize: grpc.deserialize<notification_pb.NotifyActiveRespondResponse>;
72
+ }
73
+
74
+ export const NotificationServiceService: INotificationServiceService;
75
+
76
+ export interface INotificationServiceServer extends grpc.UntypedServiceImplementation {
77
+ notify: grpc.handleUnaryCall<notification_pb.NotifyRequest, notification_pb.NotifyResponse>;
78
+ subscribe: grpc.handleServerStreamingCall<notification_pb.SubscribeRequest, notification_pb.SubscribeResponse>;
79
+ respond: grpc.handleUnaryCall<notification_pb.RespondRequest, notification_pb.RespondResponse>;
80
+ subscribeActive: grpc.handleServerStreamingCall<notification_pb.SubscribeActiveRequest, notification_pb.SubscribeActiveResponse>;
81
+ notifyActive: grpc.handleUnaryCall<notification_pb.NotifyActiveRequest, notification_pb.NotifyActiveResponse>;
82
+ notifyActiveRespond: grpc.handleUnaryCall<notification_pb.NotifyActiveRespondRequest, notification_pb.NotifyActiveRespondResponse>;
83
+ }
84
+
85
+ export interface INotificationServiceClient {
86
+ notify(request: notification_pb.NotifyRequest, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyResponse) => void): grpc.ClientUnaryCall;
87
+ notify(request: notification_pb.NotifyRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyResponse) => void): grpc.ClientUnaryCall;
88
+ notify(request: notification_pb.NotifyRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyResponse) => void): grpc.ClientUnaryCall;
89
+ subscribe(request: notification_pb.SubscribeRequest, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<notification_pb.SubscribeResponse>;
90
+ subscribe(request: notification_pb.SubscribeRequest, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<notification_pb.SubscribeResponse>;
91
+ respond(request: notification_pb.RespondRequest, callback: (error: grpc.ServiceError | null, response: notification_pb.RespondResponse) => void): grpc.ClientUnaryCall;
92
+ respond(request: notification_pb.RespondRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: notification_pb.RespondResponse) => void): grpc.ClientUnaryCall;
93
+ respond(request: notification_pb.RespondRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: notification_pb.RespondResponse) => void): grpc.ClientUnaryCall;
94
+ subscribeActive(request: notification_pb.SubscribeActiveRequest, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<notification_pb.SubscribeActiveResponse>;
95
+ subscribeActive(request: notification_pb.SubscribeActiveRequest, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<notification_pb.SubscribeActiveResponse>;
96
+ notifyActive(request: notification_pb.NotifyActiveRequest, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveResponse) => void): grpc.ClientUnaryCall;
97
+ notifyActive(request: notification_pb.NotifyActiveRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveResponse) => void): grpc.ClientUnaryCall;
98
+ notifyActive(request: notification_pb.NotifyActiveRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveResponse) => void): grpc.ClientUnaryCall;
99
+ notifyActiveRespond(request: notification_pb.NotifyActiveRespondRequest, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveRespondResponse) => void): grpc.ClientUnaryCall;
100
+ notifyActiveRespond(request: notification_pb.NotifyActiveRespondRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveRespondResponse) => void): grpc.ClientUnaryCall;
101
+ notifyActiveRespond(request: notification_pb.NotifyActiveRespondRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveRespondResponse) => void): grpc.ClientUnaryCall;
102
+ }
103
+
104
+ export class NotificationServiceClient extends grpc.Client implements INotificationServiceClient {
105
+ constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial<grpc.ClientOptions>);
106
+ public notify(request: notification_pb.NotifyRequest, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyResponse) => void): grpc.ClientUnaryCall;
107
+ public notify(request: notification_pb.NotifyRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyResponse) => void): grpc.ClientUnaryCall;
108
+ public notify(request: notification_pb.NotifyRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyResponse) => void): grpc.ClientUnaryCall;
109
+ public subscribe(request: notification_pb.SubscribeRequest, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<notification_pb.SubscribeResponse>;
110
+ public subscribe(request: notification_pb.SubscribeRequest, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<notification_pb.SubscribeResponse>;
111
+ public respond(request: notification_pb.RespondRequest, callback: (error: grpc.ServiceError | null, response: notification_pb.RespondResponse) => void): grpc.ClientUnaryCall;
112
+ public respond(request: notification_pb.RespondRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: notification_pb.RespondResponse) => void): grpc.ClientUnaryCall;
113
+ public respond(request: notification_pb.RespondRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: notification_pb.RespondResponse) => void): grpc.ClientUnaryCall;
114
+ public subscribeActive(request: notification_pb.SubscribeActiveRequest, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<notification_pb.SubscribeActiveResponse>;
115
+ public subscribeActive(request: notification_pb.SubscribeActiveRequest, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<notification_pb.SubscribeActiveResponse>;
116
+ public notifyActive(request: notification_pb.NotifyActiveRequest, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveResponse) => void): grpc.ClientUnaryCall;
117
+ public notifyActive(request: notification_pb.NotifyActiveRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveResponse) => void): grpc.ClientUnaryCall;
118
+ public notifyActive(request: notification_pb.NotifyActiveRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveResponse) => void): grpc.ClientUnaryCall;
119
+ public notifyActiveRespond(request: notification_pb.NotifyActiveRespondRequest, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveRespondResponse) => void): grpc.ClientUnaryCall;
120
+ public notifyActiveRespond(request: notification_pb.NotifyActiveRespondRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveRespondResponse) => void): grpc.ClientUnaryCall;
121
+ public notifyActiveRespond(request: notification_pb.NotifyActiveRespondRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: notification_pb.NotifyActiveRespondResponse) => void): grpc.ClientUnaryCall;
122
+ }
@@ -0,0 +1,232 @@
1
+ // GENERATED CODE -- DO NOT EDIT!
2
+
3
+ // Original file comments:
4
+ // Copyright (c) 2021 Gitpod GmbH. All rights reserved.
5
+ // Licensed under the GNU Affero General Public License (AGPL).
6
+ // See License-AGPL.txt in the project root for license information.
7
+ //
8
+ 'use strict';
9
+ var grpc = require('@grpc/grpc-js');
10
+ var notification_pb = require('./notification_pb.js');
11
+
12
+ function serialize_supervisor_NotifyActiveRequest(arg) {
13
+ if (!(arg instanceof notification_pb.NotifyActiveRequest)) {
14
+ throw new Error('Expected argument of type supervisor.NotifyActiveRequest');
15
+ }
16
+ return Buffer.from(arg.serializeBinary());
17
+ }
18
+
19
+ function deserialize_supervisor_NotifyActiveRequest(buffer_arg) {
20
+ return notification_pb.NotifyActiveRequest.deserializeBinary(new Uint8Array(buffer_arg));
21
+ }
22
+
23
+ function serialize_supervisor_NotifyActiveRespondRequest(arg) {
24
+ if (!(arg instanceof notification_pb.NotifyActiveRespondRequest)) {
25
+ throw new Error('Expected argument of type supervisor.NotifyActiveRespondRequest');
26
+ }
27
+ return Buffer.from(arg.serializeBinary());
28
+ }
29
+
30
+ function deserialize_supervisor_NotifyActiveRespondRequest(buffer_arg) {
31
+ return notification_pb.NotifyActiveRespondRequest.deserializeBinary(new Uint8Array(buffer_arg));
32
+ }
33
+
34
+ function serialize_supervisor_NotifyActiveRespondResponse(arg) {
35
+ if (!(arg instanceof notification_pb.NotifyActiveRespondResponse)) {
36
+ throw new Error('Expected argument of type supervisor.NotifyActiveRespondResponse');
37
+ }
38
+ return Buffer.from(arg.serializeBinary());
39
+ }
40
+
41
+ function deserialize_supervisor_NotifyActiveRespondResponse(buffer_arg) {
42
+ return notification_pb.NotifyActiveRespondResponse.deserializeBinary(new Uint8Array(buffer_arg));
43
+ }
44
+
45
+ function serialize_supervisor_NotifyActiveResponse(arg) {
46
+ if (!(arg instanceof notification_pb.NotifyActiveResponse)) {
47
+ throw new Error('Expected argument of type supervisor.NotifyActiveResponse');
48
+ }
49
+ return Buffer.from(arg.serializeBinary());
50
+ }
51
+
52
+ function deserialize_supervisor_NotifyActiveResponse(buffer_arg) {
53
+ return notification_pb.NotifyActiveResponse.deserializeBinary(new Uint8Array(buffer_arg));
54
+ }
55
+
56
+ function serialize_supervisor_NotifyRequest(arg) {
57
+ if (!(arg instanceof notification_pb.NotifyRequest)) {
58
+ throw new Error('Expected argument of type supervisor.NotifyRequest');
59
+ }
60
+ return Buffer.from(arg.serializeBinary());
61
+ }
62
+
63
+ function deserialize_supervisor_NotifyRequest(buffer_arg) {
64
+ return notification_pb.NotifyRequest.deserializeBinary(new Uint8Array(buffer_arg));
65
+ }
66
+
67
+ function serialize_supervisor_NotifyResponse(arg) {
68
+ if (!(arg instanceof notification_pb.NotifyResponse)) {
69
+ throw new Error('Expected argument of type supervisor.NotifyResponse');
70
+ }
71
+ return Buffer.from(arg.serializeBinary());
72
+ }
73
+
74
+ function deserialize_supervisor_NotifyResponse(buffer_arg) {
75
+ return notification_pb.NotifyResponse.deserializeBinary(new Uint8Array(buffer_arg));
76
+ }
77
+
78
+ function serialize_supervisor_RespondRequest(arg) {
79
+ if (!(arg instanceof notification_pb.RespondRequest)) {
80
+ throw new Error('Expected argument of type supervisor.RespondRequest');
81
+ }
82
+ return Buffer.from(arg.serializeBinary());
83
+ }
84
+
85
+ function deserialize_supervisor_RespondRequest(buffer_arg) {
86
+ return notification_pb.RespondRequest.deserializeBinary(new Uint8Array(buffer_arg));
87
+ }
88
+
89
+ function serialize_supervisor_RespondResponse(arg) {
90
+ if (!(arg instanceof notification_pb.RespondResponse)) {
91
+ throw new Error('Expected argument of type supervisor.RespondResponse');
92
+ }
93
+ return Buffer.from(arg.serializeBinary());
94
+ }
95
+
96
+ function deserialize_supervisor_RespondResponse(buffer_arg) {
97
+ return notification_pb.RespondResponse.deserializeBinary(new Uint8Array(buffer_arg));
98
+ }
99
+
100
+ function serialize_supervisor_SubscribeActiveRequest(arg) {
101
+ if (!(arg instanceof notification_pb.SubscribeActiveRequest)) {
102
+ throw new Error('Expected argument of type supervisor.SubscribeActiveRequest');
103
+ }
104
+ return Buffer.from(arg.serializeBinary());
105
+ }
106
+
107
+ function deserialize_supervisor_SubscribeActiveRequest(buffer_arg) {
108
+ return notification_pb.SubscribeActiveRequest.deserializeBinary(new Uint8Array(buffer_arg));
109
+ }
110
+
111
+ function serialize_supervisor_SubscribeActiveResponse(arg) {
112
+ if (!(arg instanceof notification_pb.SubscribeActiveResponse)) {
113
+ throw new Error('Expected argument of type supervisor.SubscribeActiveResponse');
114
+ }
115
+ return Buffer.from(arg.serializeBinary());
116
+ }
117
+
118
+ function deserialize_supervisor_SubscribeActiveResponse(buffer_arg) {
119
+ return notification_pb.SubscribeActiveResponse.deserializeBinary(new Uint8Array(buffer_arg));
120
+ }
121
+
122
+ function serialize_supervisor_SubscribeRequest(arg) {
123
+ if (!(arg instanceof notification_pb.SubscribeRequest)) {
124
+ throw new Error('Expected argument of type supervisor.SubscribeRequest');
125
+ }
126
+ return Buffer.from(arg.serializeBinary());
127
+ }
128
+
129
+ function deserialize_supervisor_SubscribeRequest(buffer_arg) {
130
+ return notification_pb.SubscribeRequest.deserializeBinary(new Uint8Array(buffer_arg));
131
+ }
132
+
133
+ function serialize_supervisor_SubscribeResponse(arg) {
134
+ if (!(arg instanceof notification_pb.SubscribeResponse)) {
135
+ throw new Error('Expected argument of type supervisor.SubscribeResponse');
136
+ }
137
+ return Buffer.from(arg.serializeBinary());
138
+ }
139
+
140
+ function deserialize_supervisor_SubscribeResponse(buffer_arg) {
141
+ return notification_pb.SubscribeResponse.deserializeBinary(new Uint8Array(buffer_arg));
142
+ }
143
+
144
+
145
+ // Notification serivce allows external processes to notify the user and ask for
146
+ // decisions.
147
+ var NotificationServiceService = exports.NotificationServiceService = {
148
+ // Prompts the user and asks for a decision. Typically called by some external
149
+ // process. If the list of actions is empty this service returns immediately,
150
+ // otherwise it blocks until the user has made their choice.
151
+ notify: {
152
+ path: '/supervisor.NotificationService/Notify',
153
+ requestStream: false,
154
+ responseStream: false,
155
+ requestType: notification_pb.NotifyRequest,
156
+ responseType: notification_pb.NotifyResponse,
157
+ requestSerialize: serialize_supervisor_NotifyRequest,
158
+ requestDeserialize: deserialize_supervisor_NotifyRequest,
159
+ responseSerialize: serialize_supervisor_NotifyResponse,
160
+ responseDeserialize: deserialize_supervisor_NotifyResponse,
161
+ },
162
+ // Subscribe to notifications. Typically called by the IDE.
163
+ subscribe: {
164
+ path: '/supervisor.NotificationService/Subscribe',
165
+ requestStream: false,
166
+ responseStream: true,
167
+ requestType: notification_pb.SubscribeRequest,
168
+ responseType: notification_pb.SubscribeResponse,
169
+ requestSerialize: serialize_supervisor_SubscribeRequest,
170
+ requestDeserialize: deserialize_supervisor_SubscribeRequest,
171
+ responseSerialize: serialize_supervisor_SubscribeResponse,
172
+ responseDeserialize: deserialize_supervisor_SubscribeResponse,
173
+ },
174
+ // Report a user's choice as a response to a notification. Typically called by
175
+ // the IDE.
176
+ respond: {
177
+ path: '/supervisor.NotificationService/Respond',
178
+ requestStream: false,
179
+ responseStream: false,
180
+ requestType: notification_pb.RespondRequest,
181
+ responseType: notification_pb.RespondResponse,
182
+ requestSerialize: serialize_supervisor_RespondRequest,
183
+ requestDeserialize: deserialize_supervisor_RespondRequest,
184
+ responseSerialize: serialize_supervisor_RespondResponse,
185
+ responseDeserialize: deserialize_supervisor_RespondResponse,
186
+ },
187
+ // Called by the IDE to inform supervisor about which is the latest client
188
+ // actively used by the user. We consider active the last IDE with focus.
189
+ // Only 1 stream is kept open at any given time. A new subscription
190
+ // overrides the previous one, causing the stream to close.
191
+ // Supervisor will respond with a stream to which the IDE will listen
192
+ // waiting to receive actions to run, for example: `open` or `preview`
193
+ subscribeActive: {
194
+ path: '/supervisor.NotificationService/SubscribeActive',
195
+ requestStream: false,
196
+ responseStream: true,
197
+ requestType: notification_pb.SubscribeActiveRequest,
198
+ responseType: notification_pb.SubscribeActiveResponse,
199
+ requestSerialize: serialize_supervisor_SubscribeActiveRequest,
200
+ requestDeserialize: deserialize_supervisor_SubscribeActiveRequest,
201
+ responseSerialize: serialize_supervisor_SubscribeActiveResponse,
202
+ responseDeserialize: deserialize_supervisor_SubscribeActiveResponse,
203
+ },
204
+ // Used by gp-cli to ask supervisor to request the active client
205
+ // to run a given command (eg. open or preview)
206
+ notifyActive: {
207
+ path: '/supervisor.NotificationService/NotifyActive',
208
+ requestStream: false,
209
+ responseStream: false,
210
+ requestType: notification_pb.NotifyActiveRequest,
211
+ responseType: notification_pb.NotifyActiveResponse,
212
+ requestSerialize: serialize_supervisor_NotifyActiveRequest,
213
+ requestDeserialize: deserialize_supervisor_NotifyActiveRequest,
214
+ responseSerialize: serialize_supervisor_NotifyActiveResponse,
215
+ responseDeserialize: deserialize_supervisor_NotifyActiveResponse,
216
+ },
217
+ // Used by the IDE to inform supervisor about the result (eg. success or
218
+ // failure) of the action (eg. open or preview) requested via NotifyActive
219
+ notifyActiveRespond: {
220
+ path: '/supervisor.NotificationService/NotifyActiveRespond',
221
+ requestStream: false,
222
+ responseStream: false,
223
+ requestType: notification_pb.NotifyActiveRespondRequest,
224
+ responseType: notification_pb.NotifyActiveRespondResponse,
225
+ requestSerialize: serialize_supervisor_NotifyActiveRespondRequest,
226
+ requestDeserialize: deserialize_supervisor_NotifyActiveRespondRequest,
227
+ responseSerialize: serialize_supervisor_NotifyActiveRespondResponse,
228
+ responseDeserialize: deserialize_supervisor_NotifyActiveRespondResponse,
229
+ },
230
+ };
231
+
232
+ exports.NotificationServiceClient = grpc.makeGenericClientConstructor(NotificationServiceService);