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-2153 - Change TabularDataByQuery API to accept list of BSON docs rather than strings #400

Merged
merged 3 commits into from
Nov 28, 2023
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
868 changes: 440 additions & 428 deletions app/data/v1/data.pb.go

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions component/audioinput/v1/audioinput.pb.gw.go

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

10 changes: 5 additions & 5 deletions component/encoder/v1/encoder.pb.gw.go

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

10 changes: 5 additions & 5 deletions component/gripper/v1/gripper.pb.gw.go

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

10 changes: 5 additions & 5 deletions component/motor/v1/motor.pb.gw.go

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

10 changes: 5 additions & 5 deletions component/posetracker/v1/pose_tracker.pb.gw.go

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

14 changes: 7 additions & 7 deletions component/sensor/v1/sensor.pb.gw.go

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

10 changes: 5 additions & 5 deletions component/servo/v1/servo.pb.gw.go

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

8 changes: 8 additions & 0 deletions gen/js/app/data/v1/data_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,13 @@ export class TabularDataByMQLRequest extends jspb.Message {
getMqlQuery(): string;
setMqlQuery(value: string): void;

clearMqlBinaryList(): void;
getMqlBinaryList(): Array<Uint8Array | string>;
getMqlBinaryList_asU8(): Array<Uint8Array>;
getMqlBinaryList_asB64(): Array<string>;
setMqlBinaryList(value: Array<Uint8Array | string>): void;
addMqlBinary(value: Uint8Array | string, index?: number): Uint8Array | string;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): TabularDataByMQLRequest.AsObject;
static toObject(includeInstance: boolean, msg: TabularDataByMQLRequest): TabularDataByMQLRequest.AsObject;
Expand All @@ -418,6 +425,7 @@ export namespace TabularDataByMQLRequest {
export type AsObject = {
organizationId: string,
mqlQuery: string,
mqlBinaryList: Array<Uint8Array | string>,
}
}

Expand Down
Loading
Loading