We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 571e7ff commit 748e4f9Copy full SHA for 748e4f9
packages/clients/src/api/jobs/v1alpha1/marshalling.gen.ts
@@ -82,6 +82,7 @@ export const unmarshalJobRun = (data: unknown): JobRun => {
82
memoryLimit: data.memory_limit,
83
region: data.region,
84
runDuration: data.run_duration,
85
+ startedAt: unmarshalDate(data.started_at),
86
state: data.state,
87
terminatedAt: unmarshalDate(data.terminated_at),
88
updatedAt: unmarshalDate(data.updated_at),
packages/clients/src/api/jobs/v1alpha1/types.gen.ts
@@ -65,6 +65,7 @@ export interface JobRun {
65
command: string
66
environmentVariables: Record<string, string>
67
localStorageCapacity: number
68
+ startedAt?: Date
69
/**
70
* Region to target. If none is passed will use default region from the
71
* config.
0 commit comments