@sniipwebmaster/kyc-client-grpcweb 25.3.1249 → 25.3.1261
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.
|
@@ -993,6 +993,67 @@ proto.kycserviceapi.KYCServiceAPIServicePromiseClient.prototype.getExternalKycUr
|
|
|
993
993
|
};
|
|
994
994
|
|
|
995
995
|
|
|
996
|
+
/**
|
|
997
|
+
* @const
|
|
998
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
999
|
+
* !proto.google.protobuf.Empty,
|
|
1000
|
+
* !proto.kycserviceapi.ResponseCode>}
|
|
1001
|
+
*/
|
|
1002
|
+
const methodDescriptor_KYCServiceAPIService_UpdateExternalKycStatus = new grpc.web.MethodDescriptor(
|
|
1003
|
+
'/kycserviceapi.KYCServiceAPIService/UpdateExternalKycStatus',
|
|
1004
|
+
grpc.web.MethodType.UNARY,
|
|
1005
|
+
google_protobuf_empty_pb.Empty,
|
|
1006
|
+
proto.kycserviceapi.ResponseCode,
|
|
1007
|
+
/**
|
|
1008
|
+
* @param {!proto.google.protobuf.Empty} request
|
|
1009
|
+
* @return {!Uint8Array}
|
|
1010
|
+
*/
|
|
1011
|
+
function(request) {
|
|
1012
|
+
return request.serializeBinary();
|
|
1013
|
+
},
|
|
1014
|
+
proto.kycserviceapi.ResponseCode.deserializeBinary
|
|
1015
|
+
);
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
/**
|
|
1019
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
1020
|
+
* request proto
|
|
1021
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1022
|
+
* call metadata
|
|
1023
|
+
* @param {function(?grpc.web.RpcError, ?proto.kycserviceapi.ResponseCode)}
|
|
1024
|
+
* callback The callback function(error, response)
|
|
1025
|
+
* @return {!grpc.web.ClientReadableStream<!proto.kycserviceapi.ResponseCode>|undefined}
|
|
1026
|
+
* The XHR Node Readable Stream
|
|
1027
|
+
*/
|
|
1028
|
+
proto.kycserviceapi.KYCServiceAPIServiceClient.prototype.updateExternalKycStatus =
|
|
1029
|
+
function(request, metadata, callback) {
|
|
1030
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1031
|
+
'/kycserviceapi.KYCServiceAPIService/UpdateExternalKycStatus',
|
|
1032
|
+
request,
|
|
1033
|
+
metadata || {},
|
|
1034
|
+
methodDescriptor_KYCServiceAPIService_UpdateExternalKycStatus,
|
|
1035
|
+
callback);
|
|
1036
|
+
};
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
1041
|
+
* request proto
|
|
1042
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
1043
|
+
* call metadata
|
|
1044
|
+
* @return {!Promise<!proto.kycserviceapi.ResponseCode>}
|
|
1045
|
+
* Promise that resolves to the response
|
|
1046
|
+
*/
|
|
1047
|
+
proto.kycserviceapi.KYCServiceAPIServicePromiseClient.prototype.updateExternalKycStatus =
|
|
1048
|
+
function(request, metadata) {
|
|
1049
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1050
|
+
'/kycserviceapi.KYCServiceAPIService/UpdateExternalKycStatus',
|
|
1051
|
+
request,
|
|
1052
|
+
metadata || {},
|
|
1053
|
+
methodDescriptor_KYCServiceAPIService_UpdateExternalKycStatus);
|
|
1054
|
+
};
|
|
1055
|
+
|
|
1056
|
+
|
|
996
1057
|
/**
|
|
997
1058
|
* @const
|
|
998
1059
|
* @type {!grpc.web.MethodDescriptor<
|