Skip to content

Commit

Permalink
DATA-2153 - Change TabularDataByQuery API to accept list of BSON docs…
Browse files Browse the repository at this point in the history
… rather than strings (#400)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
dmhilly and github-actions[bot] authored Nov 28, 2023
1 parent ee4649c commit 45a17ef
Show file tree
Hide file tree
Showing 14 changed files with 581 additions and 478 deletions.
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

0 comments on commit 45a17ef

Please sign in to comment.