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 Oct 14, 2024
1 parent 5292824 commit 82681c0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions api/v1/capsule/pipeline/status_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
import { Message, proto3, protoInt64, Timestamp } from "@bufbuild/protobuf";
import { Pipeline } from "../../../../model/pipeline_pb.js";

/**
* @generated from enum api.v1.capsule.pipeline.State
Expand Down Expand Up @@ -146,6 +147,13 @@ export class Status extends Message<Status> {
*/
currentPhase = 0;

/**
* the configured pipeline
*
* @generated from field: model.Pipeline config = 9;
*/
config?: Pipeline;

constructor(data?: PartialMessage<Status>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -162,6 +170,7 @@ export class Status extends Message<Status> {
{ no: 6, name: "started_at", kind: "message", T: Timestamp },
{ no: 7, name: "updated_at", kind: "message", T: Timestamp },
{ no: 8, name: "current_phase", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
{ no: 9, name: "config", kind: "message", T: Pipeline },
]);

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

0 comments on commit 82681c0

Please sign in to comment.