Skip to content

Commit

Permalink
DATA-3251 - Change TabularDataByMQL & SQL to return raw BSON (#568)
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
dmhilly and github-actions[bot] authored Oct 21, 2024
1 parent ee61810 commit 1013a48
Show file tree
Hide file tree
Showing 15 changed files with 702 additions and 518 deletions.
954 changes: 487 additions & 467 deletions app/data/v1/data.pb.go

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions component/base/v1/base.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/gantry/v1/gantry.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.

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

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

16 changes: 16 additions & 0 deletions gen/js/app/data/v1/data_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,13 @@ export class TabularDataBySQLResponse extends jspb.Message {
setDataList(value: Array<google_protobuf_struct_pb.Struct>): void;
addData(value?: google_protobuf_struct_pb.Struct, index?: number): google_protobuf_struct_pb.Struct;

clearRawDataList(): void;
getRawDataList(): Array<Uint8Array | string>;
getRawDataList_asU8(): Array<Uint8Array>;
getRawDataList_asB64(): Array<string>;
setRawDataList(value: Array<Uint8Array | string>): void;
addRawData(value: Uint8Array | string, index?: number): Uint8Array | string;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): TabularDataBySQLResponse.AsObject;
static toObject(includeInstance: boolean, msg: TabularDataBySQLResponse): TabularDataBySQLResponse.AsObject;
Expand All @@ -394,6 +401,7 @@ export class TabularDataBySQLResponse extends jspb.Message {
export namespace TabularDataBySQLResponse {
export type AsObject = {
dataList: Array<google_protobuf_struct_pb.Struct.AsObject>,
rawDataList: Array<Uint8Array | string>,
}
}

Expand Down Expand Up @@ -431,6 +439,13 @@ export class TabularDataByMQLResponse extends jspb.Message {
setDataList(value: Array<google_protobuf_struct_pb.Struct>): void;
addData(value?: google_protobuf_struct_pb.Struct, index?: number): google_protobuf_struct_pb.Struct;

clearRawDataList(): void;
getRawDataList(): Array<Uint8Array | string>;
getRawDataList_asU8(): Array<Uint8Array>;
getRawDataList_asB64(): Array<string>;
setRawDataList(value: Array<Uint8Array | string>): void;
addRawData(value: Uint8Array | string, index?: number): Uint8Array | string;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): TabularDataByMQLResponse.AsObject;
static toObject(includeInstance: boolean, msg: TabularDataByMQLResponse): TabularDataByMQLResponse.AsObject;
Expand All @@ -444,6 +459,7 @@ export class TabularDataByMQLResponse extends jspb.Message {
export namespace TabularDataByMQLResponse {
export type AsObject = {
dataList: Array<google_protobuf_struct_pb.Struct.AsObject>,
rawDataList: Array<Uint8Array | string>,
}
}

Expand Down
Loading

0 comments on commit 1013a48

Please sign in to comment.