@sniipwebmaster/transaction-service-client-grpcweb-ts 26.6.15045 → 26.6.15067
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.
|
@@ -621,6 +621,49 @@ export class SniipTransactionAPIServiceClient {
|
|
|
621
621
|
this.methodDescriptorExportReceiptsCsvForTransactionIdsInternal);
|
|
622
622
|
}
|
|
623
623
|
|
|
624
|
+
methodDescriptorFlushScheduledPaymentAlerts = new grpcWeb.MethodDescriptor(
|
|
625
|
+
'/sniiptransactionapi.SniipTransactionAPIService/FlushScheduledPaymentAlerts',
|
|
626
|
+
grpcWeb.MethodType.UNARY,
|
|
627
|
+
google_protobuf_empty_pb.Empty,
|
|
628
|
+
service_pb.ResponseCode,
|
|
629
|
+
(request: google_protobuf_empty_pb.Empty) => {
|
|
630
|
+
return request.serializeBinary();
|
|
631
|
+
},
|
|
632
|
+
service_pb.ResponseCode.deserializeBinary
|
|
633
|
+
);
|
|
634
|
+
|
|
635
|
+
flushScheduledPaymentAlerts(
|
|
636
|
+
request: google_protobuf_empty_pb.Empty,
|
|
637
|
+
metadata?: grpcWeb.Metadata | null): Promise<service_pb.ResponseCode>;
|
|
638
|
+
|
|
639
|
+
flushScheduledPaymentAlerts(
|
|
640
|
+
request: google_protobuf_empty_pb.Empty,
|
|
641
|
+
metadata: grpcWeb.Metadata | null,
|
|
642
|
+
callback: (err: grpcWeb.RpcError,
|
|
643
|
+
response: service_pb.ResponseCode) => void): grpcWeb.ClientReadableStream<service_pb.ResponseCode>;
|
|
644
|
+
|
|
645
|
+
flushScheduledPaymentAlerts(
|
|
646
|
+
request: google_protobuf_empty_pb.Empty,
|
|
647
|
+
metadata?: grpcWeb.Metadata | null,
|
|
648
|
+
callback?: (err: grpcWeb.RpcError,
|
|
649
|
+
response: service_pb.ResponseCode) => void) {
|
|
650
|
+
if (callback !== undefined) {
|
|
651
|
+
return this.client_.rpcCall(
|
|
652
|
+
this.hostname_ +
|
|
653
|
+
'/sniiptransactionapi.SniipTransactionAPIService/FlushScheduledPaymentAlerts',
|
|
654
|
+
request,
|
|
655
|
+
metadata || {},
|
|
656
|
+
this.methodDescriptorFlushScheduledPaymentAlerts,
|
|
657
|
+
callback);
|
|
658
|
+
}
|
|
659
|
+
return this.client_.unaryCall(
|
|
660
|
+
this.hostname_ +
|
|
661
|
+
'/sniiptransactionapi.SniipTransactionAPIService/FlushScheduledPaymentAlerts',
|
|
662
|
+
request,
|
|
663
|
+
metadata || {},
|
|
664
|
+
this.methodDescriptorFlushScheduledPaymentAlerts);
|
|
665
|
+
}
|
|
666
|
+
|
|
624
667
|
methodDescriptorGetBankProcesingTransactions = new grpcWeb.MethodDescriptor(
|
|
625
668
|
'/sniiptransactionapi.SniipTransactionAPIService/GetBankProcesingTransactions',
|
|
626
669
|
grpcWeb.MethodType.UNARY,
|