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 Dec 18, 2023
1 parent 6ed44d7 commit 50bebde
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/v1/capsule/service_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2230,6 +2230,16 @@ export class GetJobExecutionsRequest extends Message<GetJobExecutionsRequest> {
*/
pagination?: Pagination;

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

/**
* @generated from field: string environment_id = 9;
*/
environmentId = "";

constructor(data?: PartialMessage<GetJobExecutionsRequest>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -2244,6 +2254,8 @@ export class GetJobExecutionsRequest extends Message<GetJobExecutionsRequest> {
{ no: 5, name: "created_from", kind: "message", T: Timestamp },
{ no: 6, name: "created_to", kind: "message", T: Timestamp },
{ no: 7, name: "pagination", kind: "message", T: Pagination },
{ no: 8, name: "project_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 9, name: "environment_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
]);

static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetJobExecutionsRequest {
Expand Down
24 changes: 24 additions & 0 deletions api/v1/project/service_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,16 @@ export class GetCustomObjectMetricsResponse extends Message<GetCustomObjectMetri
*/
metrics: Metric[] = [];

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

/**
* @generated from field: string environment_id = 3;
*/
environmentId = "";

constructor(data?: PartialMessage<GetCustomObjectMetricsResponse>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -711,6 +721,8 @@ export class GetCustomObjectMetricsResponse extends Message<GetCustomObjectMetri
static readonly typeName = "api.v1.project.GetCustomObjectMetricsResponse";
static readonly fields: FieldList = proto3.util.newFieldList(() => [
{ no: 1, name: "metrics", kind: "message", T: Metric, repeated: true },
{ no: 2, name: "project_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 3, name: "environment_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
]);

static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCustomObjectMetricsResponse {
Expand Down Expand Up @@ -787,6 +799,16 @@ export class GetObjectsByKindRequest extends Message<GetObjectsByKindRequest> {
*/
apiVersion = "";

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

/**
* @generated from field: string environment_id = 4;
*/
environmentId = "";

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

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

0 comments on commit 50bebde

Please sign in to comment.