@sniipwebmaster/kyc-client-grpcweb 21.9.228 → 21.9.236
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.
|
@@ -145,6 +145,61 @@ proto.kycserviceapi.KYCServiceAPIServicePromiseClient.prototype.deleteDocument =
|
|
|
145
145
|
};
|
|
146
146
|
|
|
147
147
|
|
|
148
|
+
/**
|
|
149
|
+
* @const
|
|
150
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
151
|
+
* !proto.google.protobuf.Empty,
|
|
152
|
+
* !proto.kycserviceapi.ResponseCode>}
|
|
153
|
+
*/
|
|
154
|
+
const methodInfo_KYCServiceAPIService_DeleteInternalKycAttachmentsDeleteOld = new grpc.web.AbstractClientBase.MethodInfo(
|
|
155
|
+
proto.kycserviceapi.ResponseCode,
|
|
156
|
+
/** @param {!proto.google.protobuf.Empty} request */
|
|
157
|
+
function(request) {
|
|
158
|
+
return request.serializeBinary();
|
|
159
|
+
},
|
|
160
|
+
proto.kycserviceapi.ResponseCode.deserializeBinary
|
|
161
|
+
);
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
166
|
+
* request proto
|
|
167
|
+
* @param {?Object<string, string>} metadata User defined
|
|
168
|
+
* call metadata
|
|
169
|
+
* @param {function(?grpc.web.Error, ?proto.kycserviceapi.ResponseCode)}
|
|
170
|
+
* callback The callback function(error, response)
|
|
171
|
+
* @return {!grpc.web.ClientReadableStream<!proto.kycserviceapi.ResponseCode>|undefined}
|
|
172
|
+
* The XHR Node Readable Stream
|
|
173
|
+
*/
|
|
174
|
+
proto.kycserviceapi.KYCServiceAPIServiceClient.prototype.deleteInternalKycAttachmentsDeleteOld =
|
|
175
|
+
function(request, metadata, callback) {
|
|
176
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
177
|
+
'/kycserviceapi.KYCServiceAPIService/DeleteInternalKycAttachmentsDeleteOld',
|
|
178
|
+
request,
|
|
179
|
+
metadata || {},
|
|
180
|
+
methodInfo_KYCServiceAPIService_DeleteInternalKycAttachmentsDeleteOld,
|
|
181
|
+
callback);
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
187
|
+
* request proto
|
|
188
|
+
* @param {?Object<string, string>} metadata User defined
|
|
189
|
+
* call metadata
|
|
190
|
+
* @return {!Promise<!proto.kycserviceapi.ResponseCode>}
|
|
191
|
+
* A native promise that resolves to the response
|
|
192
|
+
*/
|
|
193
|
+
proto.kycserviceapi.KYCServiceAPIServicePromiseClient.prototype.deleteInternalKycAttachmentsDeleteOld =
|
|
194
|
+
function(request, metadata) {
|
|
195
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
196
|
+
'/kycserviceapi.KYCServiceAPIService/DeleteInternalKycAttachmentsDeleteOld',
|
|
197
|
+
request,
|
|
198
|
+
metadata || {},
|
|
199
|
+
methodInfo_KYCServiceAPIService_DeleteInternalKycAttachmentsDeleteOld);
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
|
|
148
203
|
/**
|
|
149
204
|
* @const
|
|
150
205
|
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|