Skip to content

Commit

Permalink
push latest version of APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
rig-bot committed Jan 16, 2024
1 parent 882b8de commit e028c48
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions api/v1/environment/environment_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ export class Environment extends Message<Environment> {
*/
default = false;

/**
* @generated from field: string operator_version = 3;
*/
operatorVersion = "";

constructor(data?: PartialMessage<Environment>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -30,6 +35,7 @@ export class Environment extends Message<Environment> {
static readonly fields: FieldList = proto3.util.newFieldList(() => [
{ no: 1, name: "environment_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 2, name: "default", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
{ no: 3, name: "operator_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
]);

static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Environment {
Expand Down
6 changes: 6 additions & 0 deletions api/v1/environment/service_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ export class ListResponse extends Message<ListResponse> {
*/
environments: Environment[] = [];

/**
* @generated from field: string platform_verison = 2;
*/
platformVerison = "";

constructor(data?: PartialMessage<ListResponse>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -63,6 +68,7 @@ export class ListResponse extends Message<ListResponse> {
static readonly typeName = "api.v1.environment.ListResponse";
static readonly fields: FieldList = proto3.util.newFieldList(() => [
{ no: 1, name: "environments", kind: "message", T: Environment, repeated: true },
{ no: 2, name: "platform_verison", kind: "scalar", T: 9 /* ScalarType.STRING */ },
]);

static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListResponse {
Expand Down

0 comments on commit e028c48

Please sign in to comment.