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 11, 2024
1 parent 8e72df3 commit 4bde4c3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 12 additions & 0 deletions api/v1/capsule/instance/status_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -835,6 +835,16 @@ export class ReadyStep extends Message<ReadyStep> {
*/
state = ReadyState.UNSPECIFIED;

/**
* @generated from field: google.protobuf.Timestamp failed_at = 3;
*/
failedAt?: Timestamp;

/**
* @generated from field: uint32 fail_count = 4;
*/
failCount = 0;

constructor(data?: PartialMessage<ReadyStep>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -845,6 +855,8 @@ export class ReadyStep extends Message<ReadyStep> {
static readonly fields: FieldList = proto3.util.newFieldList(() => [
{ no: 1, name: "info", kind: "message", T: StepInfo },
{ no: 2, name: "state", kind: "enum", T: proto3.getEnumType(ReadyState) },
{ no: 3, name: "failed_at", kind: "message", T: Timestamp },
{ no: 4, name: "fail_count", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
]);

static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ReadyStep {
Expand Down
6 changes: 0 additions & 6 deletions api/v1/project/service_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,11 +333,6 @@ export class ListRequest extends Message<ListRequest> {
*/
pagination?: Pagination;

/**
* @generated from field: string project_id = 2;
*/
projectId = "";

constructor(data?: PartialMessage<ListRequest>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -347,7 +342,6 @@ export class ListRequest extends Message<ListRequest> {
static readonly typeName = "api.v1.project.ListRequest";
static readonly fields: FieldList = proto3.util.newFieldList(() => [
{ no: 1, name: "pagination", kind: "message", T: Pagination },
{ no: 2, name: "project_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
]);

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

0 comments on commit 4bde4c3

Please sign in to comment.