Skip to content

Commit

Permalink
RSDK-5277: Add log configuration to robot proto. (#401)
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
dgottlieb and github-actions[bot] committed Nov 27, 2023
1 parent b9a833e commit 44cd69b
Show file tree
Hide file tree
Showing 11 changed files with 852 additions and 542 deletions.
1,092 changes: 584 additions & 508 deletions app/v1/robot.pb.go

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions component/arm/v1/arm.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/inputcontroller/v1/input_controller.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.

26 changes: 26 additions & 0 deletions gen/js/app/v1/robot_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,11 @@ export class ComponentConfig extends jspb.Message {
getApi(): string;
setApi(value: string): void;

hasLogConfiguration(): boolean;
clearLogConfiguration(): void;
getLogConfiguration(): LogConfiguration | undefined;
setLogConfiguration(value?: LogConfiguration): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): ComponentConfig.AsObject;
static toObject(includeInstance: boolean, msg: ComponentConfig): ComponentConfig.AsObject;
Expand All @@ -245,6 +250,7 @@ export namespace ComponentConfig {
serviceConfigsList: Array<ResourceLevelServiceConfig.AsObject>,
attributes?: google_protobuf_struct_pb.Struct.AsObject,
api: string,
logConfiguration?: LogConfiguration.AsObject,
}
}

Expand Down Expand Up @@ -585,6 +591,26 @@ export namespace Frame {
}
}

export class LogConfiguration extends jspb.Message {
getLevel(): string;
setLevel(value: string): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): LogConfiguration.AsObject;
static toObject(includeInstance: boolean, msg: LogConfiguration): LogConfiguration.AsObject;
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
static serializeBinaryToWriter(message: LogConfiguration, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): LogConfiguration;
static deserializeBinaryFromReader(message: LogConfiguration, reader: jspb.BinaryReader): LogConfiguration;
}

export namespace LogConfiguration {
export type AsObject = {
level: string,
}
}

export class Translation extends jspb.Message {
getX(): number;
setX(value: number): void;
Expand Down
Loading

0 comments on commit 44cd69b

Please sign in to comment.