@sniipwebmaster/user-service-client-grpcweb 24.16.12160 → 24.16.12181
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.
|
@@ -4043,6 +4043,67 @@ proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.linkPasspo
|
|
|
4043
4043
|
};
|
|
4044
4044
|
|
|
4045
4045
|
|
|
4046
|
+
/**
|
|
4047
|
+
* @const
|
|
4048
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
4049
|
+
* !proto.google.protobuf.Empty,
|
|
4050
|
+
* !proto.sniipuserservice.ResponseCode>}
|
|
4051
|
+
*/
|
|
4052
|
+
const methodDescriptor_SniipUserServiceService_TokenKeepAlive = new grpc.web.MethodDescriptor(
|
|
4053
|
+
'/sniipuserservice.SniipUserServiceService/TokenKeepAlive',
|
|
4054
|
+
grpc.web.MethodType.UNARY,
|
|
4055
|
+
google_protobuf_empty_pb.Empty,
|
|
4056
|
+
proto.sniipuserservice.ResponseCode,
|
|
4057
|
+
/**
|
|
4058
|
+
* @param {!proto.google.protobuf.Empty} request
|
|
4059
|
+
* @return {!Uint8Array}
|
|
4060
|
+
*/
|
|
4061
|
+
function(request) {
|
|
4062
|
+
return request.serializeBinary();
|
|
4063
|
+
},
|
|
4064
|
+
proto.sniipuserservice.ResponseCode.deserializeBinary
|
|
4065
|
+
);
|
|
4066
|
+
|
|
4067
|
+
|
|
4068
|
+
/**
|
|
4069
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
4070
|
+
* request proto
|
|
4071
|
+
* @param {?Object<string, string>} metadata User defined
|
|
4072
|
+
* call metadata
|
|
4073
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniipuserservice.ResponseCode)}
|
|
4074
|
+
* callback The callback function(error, response)
|
|
4075
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipuserservice.ResponseCode>|undefined}
|
|
4076
|
+
* The XHR Node Readable Stream
|
|
4077
|
+
*/
|
|
4078
|
+
proto.sniipuserservice.SniipUserServiceServiceClient.prototype.tokenKeepAlive =
|
|
4079
|
+
function(request, metadata, callback) {
|
|
4080
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
4081
|
+
'/sniipuserservice.SniipUserServiceService/TokenKeepAlive',
|
|
4082
|
+
request,
|
|
4083
|
+
metadata || {},
|
|
4084
|
+
methodDescriptor_SniipUserServiceService_TokenKeepAlive,
|
|
4085
|
+
callback);
|
|
4086
|
+
};
|
|
4087
|
+
|
|
4088
|
+
|
|
4089
|
+
/**
|
|
4090
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
4091
|
+
* request proto
|
|
4092
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
4093
|
+
* call metadata
|
|
4094
|
+
* @return {!Promise<!proto.sniipuserservice.ResponseCode>}
|
|
4095
|
+
* Promise that resolves to the response
|
|
4096
|
+
*/
|
|
4097
|
+
proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.tokenKeepAlive =
|
|
4098
|
+
function(request, metadata) {
|
|
4099
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
4100
|
+
'/sniipuserservice.SniipUserServiceService/TokenKeepAlive',
|
|
4101
|
+
request,
|
|
4102
|
+
metadata || {},
|
|
4103
|
+
methodDescriptor_SniipUserServiceService_TokenKeepAlive);
|
|
4104
|
+
};
|
|
4105
|
+
|
|
4106
|
+
|
|
4046
4107
|
/**
|
|
4047
4108
|
* @const
|
|
4048
4109
|
* @type {!grpc.web.MethodDescriptor<
|