Skip to content

Commit

Permalink
DATA-3440 Add ExportTabularData + deprecate TabularDataByFilter (#595)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
katiepeters and github-actions[bot] authored Nov 22, 2024
1 parent e277fcc commit d7436a9
Show file tree
Hide file tree
Showing 9 changed files with 2,387 additions and 828 deletions.
1,952 changes: 1,126 additions & 826 deletions app/data/v1/data.pb.go

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions app/data/v1/data.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

71 changes: 70 additions & 1 deletion app/data/v1/data_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 56 additions & 0 deletions gen/js/app/data/v1/data_grpc_web_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,62 @@ proto.viam.app.data.v1.DataServicePromiseClient.prototype.tabularDataByMQL =
};


/**
* @const
* @type {!grpc.web.MethodDescriptor<
* !proto.viam.app.data.v1.ExportTabularDataRequest,
* !proto.viam.app.data.v1.ExportTabularDataResponse>}
*/
const methodDescriptor_DataService_ExportTabularData = new grpc.web.MethodDescriptor(
'/viam.app.data.v1.DataService/ExportTabularData',
grpc.web.MethodType.SERVER_STREAMING,
proto.viam.app.data.v1.ExportTabularDataRequest,
proto.viam.app.data.v1.ExportTabularDataResponse,
/**
* @param {!proto.viam.app.data.v1.ExportTabularDataRequest} request
* @return {!Uint8Array}
*/
function(request) {
return request.serializeBinary();
},
proto.viam.app.data.v1.ExportTabularDataResponse.deserializeBinary
);


/**
* @param {!proto.viam.app.data.v1.ExportTabularDataRequest} request The request proto
* @param {?Object<string, string>=} metadata User defined
* call metadata
* @return {!grpc.web.ClientReadableStream<!proto.viam.app.data.v1.ExportTabularDataResponse>}
* The XHR Node Readable Stream
*/
proto.viam.app.data.v1.DataServiceClient.prototype.exportTabularData =
function(request, metadata) {
return this.client_.serverStreaming(this.hostname_ +
'/viam.app.data.v1.DataService/ExportTabularData',
request,
metadata || {},
methodDescriptor_DataService_ExportTabularData);
};


/**
* @param {!proto.viam.app.data.v1.ExportTabularDataRequest} request The request proto
* @param {?Object<string, string>=} metadata User defined
* call metadata
* @return {!grpc.web.ClientReadableStream<!proto.viam.app.data.v1.ExportTabularDataResponse>}
* The XHR Node Readable Stream
*/
proto.viam.app.data.v1.DataServicePromiseClient.prototype.exportTabularData =
function(request, metadata) {
return this.client_.serverStreaming(this.hostname_ +
'/viam.app.data.v1.DataService/ExportTabularData',
request,
metadata || {},
methodDescriptor_DataService_ExportTabularData);
};


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

0 comments on commit d7436a9

Please sign in to comment.