Skip to content

Commit

Permalink
feat(edge_services): add orga id in pipeline message (#1528)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaleway-bot authored Oct 24, 2024
1 parent 4a9227a commit 785855b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ export const unmarshalPipeline = (data: unknown): Pipeline => {
errors: unmarshalArrayOfObject(data.errors, unmarshalPipelineError),
id: data.id,
name: data.name,
organizationId: data.organization_id,
projectId: data.project_id,
status: data.status,
updatedAt: unmarshalDate(data.updated_at),
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/edge_services/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ export interface Pipeline {
errors: PipelineError[]
/** Project ID of the pipeline. */
projectId: string
/** Organization ID of the pipeline. */
organizationId: string
/** Date the pipeline was created. */
createdAt?: Date
/** Date the pipeline was last updated. */
Expand Down

0 comments on commit 785855b

Please sign in to comment.