@sniipwebmaster/biller-service-client-grpcweb 25.3.8487 → 25.5.8511
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.
|
@@ -200,6 +200,67 @@ proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.abnLookupInter
|
|
|
200
200
|
};
|
|
201
201
|
|
|
202
202
|
|
|
203
|
+
/**
|
|
204
|
+
* @const
|
|
205
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
206
|
+
* !proto.sniipbillerapi.AbnLookupRequest,
|
|
207
|
+
* !proto.sniipbillerapi.AbnLookupResponse>}
|
|
208
|
+
*/
|
|
209
|
+
const methodDescriptor_SniipBillerAPIService_DetailedAbnLookup = new grpc.web.MethodDescriptor(
|
|
210
|
+
'/sniipbillerapi.SniipBillerAPIService/DetailedAbnLookup',
|
|
211
|
+
grpc.web.MethodType.UNARY,
|
|
212
|
+
proto.sniipbillerapi.AbnLookupRequest,
|
|
213
|
+
proto.sniipbillerapi.AbnLookupResponse,
|
|
214
|
+
/**
|
|
215
|
+
* @param {!proto.sniipbillerapi.AbnLookupRequest} request
|
|
216
|
+
* @return {!Uint8Array}
|
|
217
|
+
*/
|
|
218
|
+
function(request) {
|
|
219
|
+
return request.serializeBinary();
|
|
220
|
+
},
|
|
221
|
+
proto.sniipbillerapi.AbnLookupResponse.deserializeBinary
|
|
222
|
+
);
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* @param {!proto.sniipbillerapi.AbnLookupRequest} request The
|
|
227
|
+
* request proto
|
|
228
|
+
* @param {?Object<string, string>} metadata User defined
|
|
229
|
+
* call metadata
|
|
230
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniipbillerapi.AbnLookupResponse)}
|
|
231
|
+
* callback The callback function(error, response)
|
|
232
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.AbnLookupResponse>|undefined}
|
|
233
|
+
* The XHR Node Readable Stream
|
|
234
|
+
*/
|
|
235
|
+
proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.detailedAbnLookup =
|
|
236
|
+
function(request, metadata, callback) {
|
|
237
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
238
|
+
'/sniipbillerapi.SniipBillerAPIService/DetailedAbnLookup',
|
|
239
|
+
request,
|
|
240
|
+
metadata || {},
|
|
241
|
+
methodDescriptor_SniipBillerAPIService_DetailedAbnLookup,
|
|
242
|
+
callback);
|
|
243
|
+
};
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @param {!proto.sniipbillerapi.AbnLookupRequest} request The
|
|
248
|
+
* request proto
|
|
249
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
250
|
+
* call metadata
|
|
251
|
+
* @return {!Promise<!proto.sniipbillerapi.AbnLookupResponse>}
|
|
252
|
+
* Promise that resolves to the response
|
|
253
|
+
*/
|
|
254
|
+
proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.detailedAbnLookup =
|
|
255
|
+
function(request, metadata) {
|
|
256
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
257
|
+
'/sniipbillerapi.SniipBillerAPIService/DetailedAbnLookup',
|
|
258
|
+
request,
|
|
259
|
+
metadata || {},
|
|
260
|
+
methodDescriptor_SniipBillerAPIService_DetailedAbnLookup);
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
|
|
203
264
|
/**
|
|
204
265
|
* @const
|
|
205
266
|
* @type {!grpc.web.MethodDescriptor<
|