Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cs3org-bot committed Apr 3, 2024
1 parent 8cb03b4 commit b36dce1
Show file tree
Hide file tree
Showing 19 changed files with 3,994 additions and 500 deletions.
62 changes: 62 additions & 0 deletions cs3/gateway/v1beta1/gateway_api_grpc_web_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ goog.require('proto.cs3.gateway.v1beta1.GetQuotaRequest');
goog.require('proto.cs3.gateway.v1beta1.InitiateFileDownloadResponse');
goog.require('proto.cs3.gateway.v1beta1.InitiateFileUploadResponse');
goog.require('proto.cs3.gateway.v1beta1.ListAuthProvidersResponse');
goog.require('proto.cs3.gateway.v1beta1.ListExistingReceivedSharesResponse');
goog.require('proto.cs3.gateway.v1beta1.OpenInAppRequest');
goog.require('proto.cs3.gateway.v1beta1.WhoAmIRequest');
goog.require('proto.cs3.gateway.v1beta1.WhoAmIResponse');
Expand Down Expand Up @@ -2829,6 +2830,67 @@ proto.cs3.gateway.v1beta1.GatewayAPIPromiseClient.prototype.listReceivedShares =
};


/**
* @const
* @type {!grpc.web.MethodDescriptor<
* !proto.cs3.sharing.collaboration.v1beta1.ListReceivedSharesRequest,
* !proto.cs3.gateway.v1beta1.ListExistingReceivedSharesResponse>}
*/
const methodDescriptor_GatewayAPI_ListExistingReceivedShares = new grpc.web.MethodDescriptor(
'/cs3.gateway.v1beta1.GatewayAPI/ListExistingReceivedShares',
grpc.web.MethodType.UNARY,
proto.cs3.sharing.collaboration.v1beta1.ListReceivedSharesRequest,
proto.cs3.gateway.v1beta1.ListExistingReceivedSharesResponse,
/**
* @param {!proto.cs3.sharing.collaboration.v1beta1.ListReceivedSharesRequest} request
* @return {!Uint8Array}
*/
function(request) {
return request.serializeBinary();
},
proto.cs3.gateway.v1beta1.ListExistingReceivedSharesResponse.deserializeBinary
);


/**
* @param {!proto.cs3.sharing.collaboration.v1beta1.ListReceivedSharesRequest} request The
* request proto
* @param {?Object<string, string>} metadata User defined
* call metadata
* @param {function(?grpc.web.RpcError, ?proto.cs3.gateway.v1beta1.ListExistingReceivedSharesResponse)}
* callback The callback function(error, response)
* @return {!grpc.web.ClientReadableStream<!proto.cs3.gateway.v1beta1.ListExistingReceivedSharesResponse>|undefined}
* The XHR Node Readable Stream
*/
proto.cs3.gateway.v1beta1.GatewayAPIClient.prototype.listExistingReceivedShares =
function(request, metadata, callback) {
return this.client_.rpcCall(this.hostname_ +
'/cs3.gateway.v1beta1.GatewayAPI/ListExistingReceivedShares',
request,
metadata || {},
methodDescriptor_GatewayAPI_ListExistingReceivedShares,
callback);
};


/**
* @param {!proto.cs3.sharing.collaboration.v1beta1.ListReceivedSharesRequest} request The
* request proto
* @param {?Object<string, string>=} metadata User defined
* call metadata
* @return {!Promise<!proto.cs3.gateway.v1beta1.ListExistingReceivedSharesResponse>}
* Promise that resolves to the response
*/
proto.cs3.gateway.v1beta1.GatewayAPIPromiseClient.prototype.listExistingReceivedShares =
function(request, metadata) {
return this.client_.unaryCall(this.hostname_ +
'/cs3.gateway.v1beta1.GatewayAPI/ListExistingReceivedShares',
request,
metadata || {},
methodDescriptor_GatewayAPI_ListExistingReceivedShares);
};


/**
* @const
* @type {!grpc.web.MethodDescriptor<
Expand Down
Loading

0 comments on commit b36dce1

Please sign in to comment.