@sniipwebmaster/payment-methods-client-grpcweb 25.11.7544 → 25.11.7560
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.
|
@@ -2030,6 +2030,67 @@ proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseC
|
|
|
2030
2030
|
};
|
|
2031
2031
|
|
|
2032
2032
|
|
|
2033
|
+
/**
|
|
2034
|
+
* @const
|
|
2035
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
2036
|
+
* !proto.google.protobuf.Empty,
|
|
2037
|
+
* !proto.sniippaymentmethodsserviceapi.ResponseCode>}
|
|
2038
|
+
*/
|
|
2039
|
+
const methodDescriptor_SniipPaymentMethodsServiceAPIService_CancelExpiredPayToAgreements = new grpc.web.MethodDescriptor(
|
|
2040
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/CancelExpiredPayToAgreements',
|
|
2041
|
+
grpc.web.MethodType.UNARY,
|
|
2042
|
+
google_protobuf_empty_pb.Empty,
|
|
2043
|
+
proto.sniippaymentmethodsserviceapi.ResponseCode,
|
|
2044
|
+
/**
|
|
2045
|
+
* @param {!proto.google.protobuf.Empty} request
|
|
2046
|
+
* @return {!Uint8Array}
|
|
2047
|
+
*/
|
|
2048
|
+
function(request) {
|
|
2049
|
+
return request.serializeBinary();
|
|
2050
|
+
},
|
|
2051
|
+
proto.sniippaymentmethodsserviceapi.ResponseCode.deserializeBinary
|
|
2052
|
+
);
|
|
2053
|
+
|
|
2054
|
+
|
|
2055
|
+
/**
|
|
2056
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
2057
|
+
* request proto
|
|
2058
|
+
* @param {?Object<string, string>} metadata User defined
|
|
2059
|
+
* call metadata
|
|
2060
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniippaymentmethodsserviceapi.ResponseCode)}
|
|
2061
|
+
* callback The callback function(error, response)
|
|
2062
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniippaymentmethodsserviceapi.ResponseCode>|undefined}
|
|
2063
|
+
* The XHR Node Readable Stream
|
|
2064
|
+
*/
|
|
2065
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServiceClient.prototype.cancelExpiredPayToAgreements =
|
|
2066
|
+
function(request, metadata, callback) {
|
|
2067
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
2068
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/CancelExpiredPayToAgreements',
|
|
2069
|
+
request,
|
|
2070
|
+
metadata || {},
|
|
2071
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_CancelExpiredPayToAgreements,
|
|
2072
|
+
callback);
|
|
2073
|
+
};
|
|
2074
|
+
|
|
2075
|
+
|
|
2076
|
+
/**
|
|
2077
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
2078
|
+
* request proto
|
|
2079
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
2080
|
+
* call metadata
|
|
2081
|
+
* @return {!Promise<!proto.sniippaymentmethodsserviceapi.ResponseCode>}
|
|
2082
|
+
* Promise that resolves to the response
|
|
2083
|
+
*/
|
|
2084
|
+
proto.sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIServicePromiseClient.prototype.cancelExpiredPayToAgreements =
|
|
2085
|
+
function(request, metadata) {
|
|
2086
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
2087
|
+
'/sniippaymentmethodsserviceapi.SniipPaymentMethodsServiceAPIService/CancelExpiredPayToAgreements',
|
|
2088
|
+
request,
|
|
2089
|
+
metadata || {},
|
|
2090
|
+
methodDescriptor_SniipPaymentMethodsServiceAPIService_CancelExpiredPayToAgreements);
|
|
2091
|
+
};
|
|
2092
|
+
|
|
2093
|
+
|
|
2033
2094
|
/**
|
|
2034
2095
|
* @const
|
|
2035
2096
|
* @type {!grpc.web.MethodDescriptor<
|