Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DATA-3440 Add ExportTabularData + deprecate TabularDataByFilter #595

Merged
merged 6 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading