@sniipwebmaster/payment-methods-client-grpcweb 0.2.1303 → 0.2.1321
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.
|
@@ -310,6 +310,61 @@ proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseC
|
|
|
310
310
|
};
|
|
311
311
|
|
|
312
312
|
|
|
313
|
+
/**
|
|
314
|
+
* @const
|
|
315
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
316
|
+
* !proto.google.protobuf.Empty,
|
|
317
|
+
* !proto.sniippaymentmethodsserviceapi.ResponseCode>}
|
|
318
|
+
*/
|
|
319
|
+
const methodInfo_SniipPaymentMethodsServiceAPIService_BinLookupForSuccessfulTransactions = new grpc.web.AbstractClientBase.MethodInfo(
|
|
320
|
+
proto.sniippaymentmethodsserviceapi.ResponseCode,
|
|
321
|
+
/** @param {!proto.google.protobuf.Empty} request */
|
|
322
|
+
function(request) {
|
|
323
|
+
return request.serializeBinary();
|
|
324
|
+
},
|
|
325
|
+
proto.sniippaymentmethodsserviceapi.ResponseCode.deserializeBinary
|
|
326
|
+
);
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
331
|
+
* request proto
|
|
332
|
+
* @param {?Object<string, string>} metadata User defined
|
|
333
|
+
* call metadata
|
|
334
|
+
* @param {function(?grpc.web.Error, ?proto.sniippaymentmethodsserviceapi.ResponseCode)}
|
|
335
|
+
* callback The callback function(error, response)
|
|
336
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniippaymentmethodsserviceapi.ResponseCode>|undefined}
|
|
337
|
+
* The XHR Node Readable Stream
|
|
338
|
+
*/
|
|
339
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServiceClient.prototype.binLookupForSuccessfulTransactions =
|
|
340
|
+
function(request, metadata, callback) {
|
|
341
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
342
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/BinLookupForSuccessfulTransactions',
|
|
343
|
+
request,
|
|
344
|
+
metadata || {},
|
|
345
|
+
methodInfo_SniipPaymentMethodsServiceAPIService_BinLookupForSuccessfulTransactions,
|
|
346
|
+
callback);
|
|
347
|
+
};
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
352
|
+
* request proto
|
|
353
|
+
* @param {?Object<string, string>} metadata User defined
|
|
354
|
+
* call metadata
|
|
355
|
+
* @return {!Promise<!proto.sniippaymentmethodsserviceapi.ResponseCode>}
|
|
356
|
+
* A native promise that resolves to the response
|
|
357
|
+
*/
|
|
358
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseClient.prototype.binLookupForSuccessfulTransactions =
|
|
359
|
+
function(request, metadata) {
|
|
360
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
361
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/BinLookupForSuccessfulTransactions',
|
|
362
|
+
request,
|
|
363
|
+
metadata || {},
|
|
364
|
+
methodInfo_SniipPaymentMethodsServiceAPIService_BinLookupForSuccessfulTransactions);
|
|
365
|
+
};
|
|
366
|
+
|
|
367
|
+
|
|
313
368
|
/**
|
|
314
369
|
* @const
|
|
315
370
|
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|