Skip to content

Commit

Permalink
update fields
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayvuyyuru committed Feb 19, 2025
1 parent f3d55b8 commit f5aa482
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions proto/viam/app/data/v1/data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ message BinaryMetadata {
string uri = 7;
Annotations annotations = 8;
repeated string dataset_ids = 9;
string binary_data_id = 10;
}

// DeleteTabularDataRequest deletes the data from the organization that is older than `delete_older_than_days`
Expand Down
3 changes: 3 additions & 0 deletions proto/viam/app/datasync/v1/data_sync.proto
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ message DataCaptureUploadRequest {
// DataCaptureUploadResponse returns the file id of the uploaded contents and metadata for tabular data.
message DataCaptureUploadResponse {
string file_id = 1;
string binary_data_id = 2;
}

// FileUploadRequest requests to upload the contents and metadata for binary (image + file) data.
Expand All @@ -50,6 +51,7 @@ message FileUploadRequest {
// FileUploadResponse returns the file id of the uploaded contents and metadata for binary (image + file) data.
message FileUploadResponse {
string file_id = 1;
string binary_data_id = 2;
}

// StreamingDataCaptureUploadRequest requests to upload the contents and metadata for streaming binary (image + file) data.
Expand All @@ -64,6 +66,7 @@ message StreamingDataCaptureUploadRequest {
// StreamingDataCaptureUploadResponse returns the file id of the uploaded contents and metadata for streaming binary (image + file) data.
message StreamingDataCaptureUploadResponse {
string file_id = 1;
string binary_data_id = 2;
}

enum MimeType {
Expand Down

0 comments on commit f5aa482

Please sign in to comment.