diff --git a/api/v1/capsule/pipeline/status_pb.ts b/api/v1/capsule/pipeline/status_pb.ts index 55d9f8f..4fb9dcd 100644 --- a/api/v1/capsule/pipeline/status_pb.ts +++ b/api/v1/capsule/pipeline/status_pb.ts @@ -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 @@ -146,6 +147,13 @@ export class Status extends Message { */ currentPhase = 0; + /** + * the configured pipeline + * + * @generated from field: model.Pipeline config = 9; + */ + config?: Pipeline; + constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); @@ -162,6 +170,7 @@ export class Status extends Message { { 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): Status {