@sniipwebmaster/payment-methods-client-grpcweb 21.13.3340 → 21.13.3358
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.
|
@@ -475,6 +475,61 @@ proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseC
|
|
|
475
475
|
};
|
|
476
476
|
|
|
477
477
|
|
|
478
|
+
/**
|
|
479
|
+
* @const
|
|
480
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
481
|
+
* !proto.google.protobuf.Empty,
|
|
482
|
+
* !proto.sniippaymentmethodsserviceapi.ResponseCode>}
|
|
483
|
+
*/
|
|
484
|
+
const methodInfo_SniipPaymentMethodsServiceAPIService_EftposBinUpdate = new grpc.web.AbstractClientBase.MethodInfo(
|
|
485
|
+
proto.sniippaymentmethodsserviceapi.ResponseCode,
|
|
486
|
+
/** @param {!proto.google.protobuf.Empty} request */
|
|
487
|
+
function(request) {
|
|
488
|
+
return request.serializeBinary();
|
|
489
|
+
},
|
|
490
|
+
proto.sniippaymentmethodsserviceapi.ResponseCode.deserializeBinary
|
|
491
|
+
);
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
496
|
+
* request proto
|
|
497
|
+
* @param {?Object<string, string>} metadata User defined
|
|
498
|
+
* call metadata
|
|
499
|
+
* @param {function(?grpc.web.Error, ?proto.sniippaymentmethodsserviceapi.ResponseCode)}
|
|
500
|
+
* callback The callback function(error, response)
|
|
501
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniippaymentmethodsserviceapi.ResponseCode>|undefined}
|
|
502
|
+
* The XHR Node Readable Stream
|
|
503
|
+
*/
|
|
504
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServiceClient.prototype.eftposBinUpdate =
|
|
505
|
+
function(request, metadata, callback) {
|
|
506
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
507
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/EftposBinUpdate',
|
|
508
|
+
request,
|
|
509
|
+
metadata || {},
|
|
510
|
+
methodInfo_SniipPaymentMethodsServiceAPIService_EftposBinUpdate,
|
|
511
|
+
callback);
|
|
512
|
+
};
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
517
|
+
* request proto
|
|
518
|
+
* @param {?Object<string, string>} metadata User defined
|
|
519
|
+
* call metadata
|
|
520
|
+
* @return {!Promise<!proto.sniippaymentmethodsserviceapi.ResponseCode>}
|
|
521
|
+
* A native promise that resolves to the response
|
|
522
|
+
*/
|
|
523
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseClient.prototype.eftposBinUpdate =
|
|
524
|
+
function(request, metadata) {
|
|
525
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
526
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/EftposBinUpdate',
|
|
527
|
+
request,
|
|
528
|
+
metadata || {},
|
|
529
|
+
methodInfo_SniipPaymentMethodsServiceAPIService_EftposBinUpdate);
|
|
530
|
+
};
|
|
531
|
+
|
|
532
|
+
|
|
478
533
|
/**
|
|
479
534
|
* @const
|
|
480
535
|
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|