@sniipwebmaster/payment-methods-client-grpcweb 26.9.9051 → 26.9.9070
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.
- package/dependancies/service_grpc_web_pb.js +244 -0
- package/dependancies/service_pb.js +2262 -0
- package/package.json +1 -1
|
@@ -566,6 +566,250 @@ proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseC
|
|
|
566
566
|
};
|
|
567
567
|
|
|
568
568
|
|
|
569
|
+
/**
|
|
570
|
+
* @const
|
|
571
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
572
|
+
* !proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacRequest,
|
|
573
|
+
* !proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacResponse>}
|
|
574
|
+
*/
|
|
575
|
+
const methodDescriptor_SniipPaymentMethodsServiceAPIService_BackfillMasterBinHmac = new grpc.web.MethodDescriptor(
|
|
576
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/BackfillMasterBinHmac',
|
|
577
|
+
grpc.web.MethodType.UNARY,
|
|
578
|
+
proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacRequest,
|
|
579
|
+
proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacResponse,
|
|
580
|
+
/**
|
|
581
|
+
* @param {!proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacRequest} request
|
|
582
|
+
* @return {!Uint8Array}
|
|
583
|
+
*/
|
|
584
|
+
function(request) {
|
|
585
|
+
return request.serializeBinary();
|
|
586
|
+
},
|
|
587
|
+
proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacResponse.deserializeBinary
|
|
588
|
+
);
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* @param {!proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacRequest} request The
|
|
593
|
+
* request proto
|
|
594
|
+
* @param {?Object<string, string>} metadata User defined
|
|
595
|
+
* call metadata
|
|
596
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacResponse)}
|
|
597
|
+
* callback The callback function(error, response)
|
|
598
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacResponse>|undefined}
|
|
599
|
+
* The XHR Node Readable Stream
|
|
600
|
+
*/
|
|
601
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServiceClient.prototype.backfillMasterBinHmac =
|
|
602
|
+
function(request, metadata, callback) {
|
|
603
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
604
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/BackfillMasterBinHmac',
|
|
605
|
+
request,
|
|
606
|
+
metadata || {},
|
|
607
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_BackfillMasterBinHmac,
|
|
608
|
+
callback);
|
|
609
|
+
};
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* @param {!proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacRequest} request The
|
|
614
|
+
* request proto
|
|
615
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
616
|
+
* call metadata
|
|
617
|
+
* @return {!Promise<!proto.sniippaymentmethodsserviceapi.BackfillMasterBinHmacResponse>}
|
|
618
|
+
* Promise that resolves to the response
|
|
619
|
+
*/
|
|
620
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseClient.prototype.backfillMasterBinHmac =
|
|
621
|
+
function(request, metadata) {
|
|
622
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
623
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/BackfillMasterBinHmac',
|
|
624
|
+
request,
|
|
625
|
+
metadata || {},
|
|
626
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_BackfillMasterBinHmac);
|
|
627
|
+
};
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* @const
|
|
632
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
633
|
+
* !proto.sniippaymentmethodsserviceapi.GetBinLookupsRequest,
|
|
634
|
+
* !proto.sniippaymentmethodsserviceapi.GetBinLookupsResponse>}
|
|
635
|
+
*/
|
|
636
|
+
const methodDescriptor_SniipPaymentMethodsServiceAPIService_GetBinLookups = new grpc.web.MethodDescriptor(
|
|
637
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/GetBinLookups',
|
|
638
|
+
grpc.web.MethodType.UNARY,
|
|
639
|
+
proto.sniippaymentmethodsserviceapi.GetBinLookupsRequest,
|
|
640
|
+
proto.sniippaymentmethodsserviceapi.GetBinLookupsResponse,
|
|
641
|
+
/**
|
|
642
|
+
* @param {!proto.sniippaymentmethodsserviceapi.GetBinLookupsRequest} request
|
|
643
|
+
* @return {!Uint8Array}
|
|
644
|
+
*/
|
|
645
|
+
function(request) {
|
|
646
|
+
return request.serializeBinary();
|
|
647
|
+
},
|
|
648
|
+
proto.sniippaymentmethodsserviceapi.GetBinLookupsResponse.deserializeBinary
|
|
649
|
+
);
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
/**
|
|
653
|
+
* @param {!proto.sniippaymentmethodsserviceapi.GetBinLookupsRequest} request The
|
|
654
|
+
* request proto
|
|
655
|
+
* @param {?Object<string, string>} metadata User defined
|
|
656
|
+
* call metadata
|
|
657
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniippaymentmethodsserviceapi.GetBinLookupsResponse)}
|
|
658
|
+
* callback The callback function(error, response)
|
|
659
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniippaymentmethodsserviceapi.GetBinLookupsResponse>|undefined}
|
|
660
|
+
* The XHR Node Readable Stream
|
|
661
|
+
*/
|
|
662
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServiceClient.prototype.getBinLookups =
|
|
663
|
+
function(request, metadata, callback) {
|
|
664
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
665
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/GetBinLookups',
|
|
666
|
+
request,
|
|
667
|
+
metadata || {},
|
|
668
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_GetBinLookups,
|
|
669
|
+
callback);
|
|
670
|
+
};
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
/**
|
|
674
|
+
* @param {!proto.sniippaymentmethodsserviceapi.GetBinLookupsRequest} request The
|
|
675
|
+
* request proto
|
|
676
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
677
|
+
* call metadata
|
|
678
|
+
* @return {!Promise<!proto.sniippaymentmethodsserviceapi.GetBinLookupsResponse>}
|
|
679
|
+
* Promise that resolves to the response
|
|
680
|
+
*/
|
|
681
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseClient.prototype.getBinLookups =
|
|
682
|
+
function(request, metadata) {
|
|
683
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
684
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/GetBinLookups',
|
|
685
|
+
request,
|
|
686
|
+
metadata || {},
|
|
687
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_GetBinLookups);
|
|
688
|
+
};
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* @const
|
|
693
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
694
|
+
* !proto.sniippaymentmethodsserviceapi.RevealBinLookupRequest,
|
|
695
|
+
* !proto.sniippaymentmethodsserviceapi.RevealBinLookupResponse>}
|
|
696
|
+
*/
|
|
697
|
+
const methodDescriptor_SniipPaymentMethodsServiceAPIService_RevealBinLookup = new grpc.web.MethodDescriptor(
|
|
698
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/RevealBinLookup',
|
|
699
|
+
grpc.web.MethodType.UNARY,
|
|
700
|
+
proto.sniippaymentmethodsserviceapi.RevealBinLookupRequest,
|
|
701
|
+
proto.sniippaymentmethodsserviceapi.RevealBinLookupResponse,
|
|
702
|
+
/**
|
|
703
|
+
* @param {!proto.sniippaymentmethodsserviceapi.RevealBinLookupRequest} request
|
|
704
|
+
* @return {!Uint8Array}
|
|
705
|
+
*/
|
|
706
|
+
function(request) {
|
|
707
|
+
return request.serializeBinary();
|
|
708
|
+
},
|
|
709
|
+
proto.sniippaymentmethodsserviceapi.RevealBinLookupResponse.deserializeBinary
|
|
710
|
+
);
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
/**
|
|
714
|
+
* @param {!proto.sniippaymentmethodsserviceapi.RevealBinLookupRequest} request The
|
|
715
|
+
* request proto
|
|
716
|
+
* @param {?Object<string, string>} metadata User defined
|
|
717
|
+
* call metadata
|
|
718
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniippaymentmethodsserviceapi.RevealBinLookupResponse)}
|
|
719
|
+
* callback The callback function(error, response)
|
|
720
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniippaymentmethodsserviceapi.RevealBinLookupResponse>|undefined}
|
|
721
|
+
* The XHR Node Readable Stream
|
|
722
|
+
*/
|
|
723
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServiceClient.prototype.revealBinLookup =
|
|
724
|
+
function(request, metadata, callback) {
|
|
725
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
726
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/RevealBinLookup',
|
|
727
|
+
request,
|
|
728
|
+
metadata || {},
|
|
729
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_RevealBinLookup,
|
|
730
|
+
callback);
|
|
731
|
+
};
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
/**
|
|
735
|
+
* @param {!proto.sniippaymentmethodsserviceapi.RevealBinLookupRequest} request The
|
|
736
|
+
* request proto
|
|
737
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
738
|
+
* call metadata
|
|
739
|
+
* @return {!Promise<!proto.sniippaymentmethodsserviceapi.RevealBinLookupResponse>}
|
|
740
|
+
* Promise that resolves to the response
|
|
741
|
+
*/
|
|
742
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseClient.prototype.revealBinLookup =
|
|
743
|
+
function(request, metadata) {
|
|
744
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
745
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/RevealBinLookup',
|
|
746
|
+
request,
|
|
747
|
+
metadata || {},
|
|
748
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_RevealBinLookup);
|
|
749
|
+
};
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* @const
|
|
754
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
755
|
+
* !proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsRequest,
|
|
756
|
+
* !proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsResponse>}
|
|
757
|
+
*/
|
|
758
|
+
const methodDescriptor_SniipPaymentMethodsServiceAPIService_EncryptBinLookupPayloads = new grpc.web.MethodDescriptor(
|
|
759
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/EncryptBinLookupPayloads',
|
|
760
|
+
grpc.web.MethodType.UNARY,
|
|
761
|
+
proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsRequest,
|
|
762
|
+
proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsResponse,
|
|
763
|
+
/**
|
|
764
|
+
* @param {!proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsRequest} request
|
|
765
|
+
* @return {!Uint8Array}
|
|
766
|
+
*/
|
|
767
|
+
function(request) {
|
|
768
|
+
return request.serializeBinary();
|
|
769
|
+
},
|
|
770
|
+
proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsResponse.deserializeBinary
|
|
771
|
+
);
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
/**
|
|
775
|
+
* @param {!proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsRequest} request The
|
|
776
|
+
* request proto
|
|
777
|
+
* @param {?Object<string, string>} metadata User defined
|
|
778
|
+
* call metadata
|
|
779
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsResponse)}
|
|
780
|
+
* callback The callback function(error, response)
|
|
781
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsResponse>|undefined}
|
|
782
|
+
* The XHR Node Readable Stream
|
|
783
|
+
*/
|
|
784
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServiceClient.prototype.encryptBinLookupPayloads =
|
|
785
|
+
function(request, metadata, callback) {
|
|
786
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
787
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/EncryptBinLookupPayloads',
|
|
788
|
+
request,
|
|
789
|
+
metadata || {},
|
|
790
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_EncryptBinLookupPayloads,
|
|
791
|
+
callback);
|
|
792
|
+
};
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* @param {!proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsRequest} request The
|
|
797
|
+
* request proto
|
|
798
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
799
|
+
* call metadata
|
|
800
|
+
* @return {!Promise<!proto.sniippaymentmethodsserviceapi.EncryptBinLookupPayloadsResponse>}
|
|
801
|
+
* Promise that resolves to the response
|
|
802
|
+
*/
|
|
803
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseClient.prototype.encryptBinLookupPayloads =
|
|
804
|
+
function(request, metadata) {
|
|
805
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
806
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/EncryptBinLookupPayloads',
|
|
807
|
+
request,
|
|
808
|
+
metadata || {},
|
|
809
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_EncryptBinLookupPayloads);
|
|
810
|
+
};
|
|
811
|
+
|
|
812
|
+
|
|
569
813
|
/**
|
|
570
814
|
* @const
|
|
571
815
|
* @type {!grpc.web.MethodDescriptor<
|