@sniipwebmaster/realtime-message-client-grpcweb 24.3.543 → 24.3.551

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.
@@ -141,6 +141,67 @@ proto.realtimemessageapi.RealTimeMessageServicePromiseClient.prototype.health =
141
141
  };
142
142
 
143
143
 
144
+ /**
145
+ * @const
146
+ * @type {!grpc.web.MethodDescriptor<
147
+ * !proto.google.protobuf.Empty,
148
+ * !proto.realtimemessageapi.ResponseCode>}
149
+ */
150
+ const methodDescriptor_RealTimeMessageService_AddTestMessage = new grpc.web.MethodDescriptor(
151
+ '/realtimemessageapi.RealTimeMessageService/AddTestMessage',
152
+ grpc.web.MethodType.UNARY,
153
+ google_protobuf_empty_pb.Empty,
154
+ proto.realtimemessageapi.ResponseCode,
155
+ /**
156
+ * @param {!proto.google.protobuf.Empty} request
157
+ * @return {!Uint8Array}
158
+ */
159
+ function(request) {
160
+ return request.serializeBinary();
161
+ },
162
+ proto.realtimemessageapi.ResponseCode.deserializeBinary
163
+ );
164
+
165
+
166
+ /**
167
+ * @param {!proto.google.protobuf.Empty} request The
168
+ * request proto
169
+ * @param {?Object<string, string>} metadata User defined
170
+ * call metadata
171
+ * @param {function(?grpc.web.RpcError, ?proto.realtimemessageapi.ResponseCode)}
172
+ * callback The callback function(error, response)
173
+ * @return {!grpc.web.ClientReadableStream<!proto.realtimemessageapi.ResponseCode>|undefined}
174
+ * The XHR Node Readable Stream
175
+ */
176
+ proto.realtimemessageapi.RealTimeMessageServiceClient.prototype.addTestMessage =
177
+ function(request, metadata, callback) {
178
+ return this.client_.rpcCall(this.hostname_ +
179
+ '/realtimemessageapi.RealTimeMessageService/AddTestMessage',
180
+ request,
181
+ metadata || {},
182
+ methodDescriptor_RealTimeMessageService_AddTestMessage,
183
+ callback);
184
+ };
185
+
186
+
187
+ /**
188
+ * @param {!proto.google.protobuf.Empty} request The
189
+ * request proto
190
+ * @param {?Object<string, string>=} metadata User defined
191
+ * call metadata
192
+ * @return {!Promise<!proto.realtimemessageapi.ResponseCode>}
193
+ * Promise that resolves to the response
194
+ */
195
+ proto.realtimemessageapi.RealTimeMessageServicePromiseClient.prototype.addTestMessage =
196
+ function(request, metadata) {
197
+ return this.client_.unaryCall(this.hostname_ +
198
+ '/realtimemessageapi.RealTimeMessageService/AddTestMessage',
199
+ request,
200
+ metadata || {},
201
+ methodDescriptor_RealTimeMessageService_AddTestMessage);
202
+ };
203
+
204
+
144
205
  /**
145
206
  * @const
146
207
  * @type {!grpc.web.MethodDescriptor<
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/realtime-message-client-grpcweb",
3
- "version": "24.3.543",
3
+ "version": "24.3.551",
4
4
  "description": "realtime-message-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",