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 b0af54b commit cf3c17eCopy full SHA for cf3c17e
src/services/Pipelines.ts
@@ -31,7 +31,7 @@ class Pipelines extends BaseService {
31
return RequestHelper.post(this, `projects/${pId}/pipelines/${pipelineId}/cancel`, options);
32
}
33
34
- showJobs(projectId: ProjectId, pipelineId: PipelineId, options: { scope: JobScope } & Sudo) {
+ showJobs(projectId: ProjectId, pipelineId: PipelineId, options?: { scope: JobScope } & Sudo) {
35
const pId = encodeURIComponent(projectId);
36
37
return RequestHelper.get(this, `projects/${pId}/pipelines/${pipelineId}/jobs`, options);
0 commit comments