@sniipwebmaster/agent-billing-client-grpcweb 26.3.5059 → 26.3.5081
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.
|
@@ -2091,6 +2091,67 @@ proto.agentbillingserviceapi.AgentBillingServiceAPIServicePromiseClient.prototyp
|
|
|
2091
2091
|
};
|
|
2092
2092
|
|
|
2093
2093
|
|
|
2094
|
+
/**
|
|
2095
|
+
* @const
|
|
2096
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
2097
|
+
* !proto.agentbillingserviceapi.GetDeliveryBatchContentsToPayRequest,
|
|
2098
|
+
* !proto.agentbillingserviceapi.GetDeliveryBatchContentsResponse>}
|
|
2099
|
+
*/
|
|
2100
|
+
const methodDescriptor_AgentBillingServiceAPIService_GetPayrollDeliveryBatchContent = new grpc.web.MethodDescriptor(
|
|
2101
|
+
'/agentbillingserviceapi.AgentBillingServiceAPIService/GetPayrollDeliveryBatchContent',
|
|
2102
|
+
grpc.web.MethodType.UNARY,
|
|
2103
|
+
proto.agentbillingserviceapi.GetDeliveryBatchContentsToPayRequest,
|
|
2104
|
+
proto.agentbillingserviceapi.GetDeliveryBatchContentsResponse,
|
|
2105
|
+
/**
|
|
2106
|
+
* @param {!proto.agentbillingserviceapi.GetDeliveryBatchContentsToPayRequest} request
|
|
2107
|
+
* @return {!Uint8Array}
|
|
2108
|
+
*/
|
|
2109
|
+
function(request) {
|
|
2110
|
+
return request.serializeBinary();
|
|
2111
|
+
},
|
|
2112
|
+
proto.agentbillingserviceapi.GetDeliveryBatchContentsResponse.deserializeBinary
|
|
2113
|
+
);
|
|
2114
|
+
|
|
2115
|
+
|
|
2116
|
+
/**
|
|
2117
|
+
* @param {!proto.agentbillingserviceapi.GetDeliveryBatchContentsToPayRequest} request The
|
|
2118
|
+
* request proto
|
|
2119
|
+
* @param {?Object<string, string>} metadata User defined
|
|
2120
|
+
* call metadata
|
|
2121
|
+
* @param {function(?grpc.web.RpcError, ?proto.agentbillingserviceapi.GetDeliveryBatchContentsResponse)}
|
|
2122
|
+
* callback The callback function(error, response)
|
|
2123
|
+
* @return {!grpc.web.ClientReadableStream<!proto.agentbillingserviceapi.GetDeliveryBatchContentsResponse>|undefined}
|
|
2124
|
+
* The XHR Node Readable Stream
|
|
2125
|
+
*/
|
|
2126
|
+
proto.agentbillingserviceapi.AgentBillingServiceAPIServiceClient.prototype.getPayrollDeliveryBatchContent =
|
|
2127
|
+
function(request, metadata, callback) {
|
|
2128
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
2129
|
+
'/agentbillingserviceapi.AgentBillingServiceAPIService/GetPayrollDeliveryBatchContent',
|
|
2130
|
+
request,
|
|
2131
|
+
metadata || {},
|
|
2132
|
+
methodDescriptor_AgentBillingServiceAPIService_GetPayrollDeliveryBatchContent,
|
|
2133
|
+
callback);
|
|
2134
|
+
};
|
|
2135
|
+
|
|
2136
|
+
|
|
2137
|
+
/**
|
|
2138
|
+
* @param {!proto.agentbillingserviceapi.GetDeliveryBatchContentsToPayRequest} request The
|
|
2139
|
+
* request proto
|
|
2140
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
2141
|
+
* call metadata
|
|
2142
|
+
* @return {!Promise<!proto.agentbillingserviceapi.GetDeliveryBatchContentsResponse>}
|
|
2143
|
+
* Promise that resolves to the response
|
|
2144
|
+
*/
|
|
2145
|
+
proto.agentbillingserviceapi.AgentBillingServiceAPIServicePromiseClient.prototype.getPayrollDeliveryBatchContent =
|
|
2146
|
+
function(request, metadata) {
|
|
2147
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
2148
|
+
'/agentbillingserviceapi.AgentBillingServiceAPIService/GetPayrollDeliveryBatchContent',
|
|
2149
|
+
request,
|
|
2150
|
+
metadata || {},
|
|
2151
|
+
methodDescriptor_AgentBillingServiceAPIService_GetPayrollDeliveryBatchContent);
|
|
2152
|
+
};
|
|
2153
|
+
|
|
2154
|
+
|
|
2094
2155
|
/**
|
|
2095
2156
|
* @const
|
|
2096
2157
|
* @type {!grpc.web.MethodDescriptor<
|