@devopness/sdk-js 2.20.0 → 2.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -43,8 +43,8 @@ export declare class PipelinesStepsApiService extends ApiBaseService {
|
|
|
43
43
|
*
|
|
44
44
|
* @summary Update an existing Pipeline Step
|
|
45
45
|
* @param {number} pipelineId The ID of the pipeline.
|
|
46
|
-
* @param {
|
|
46
|
+
* @param {number} stepId The ID of the step.
|
|
47
47
|
* @param {PipelineStepUpdate} pipelineStepUpdate A JSON object containing the resource data
|
|
48
48
|
*/
|
|
49
|
-
updatePipelinePipelineStep(pipelineId: number, stepId:
|
|
49
|
+
updatePipelinePipelineStep(pipelineId: number, stepId: number, pipelineStepUpdate: PipelineStepUpdate): Promise<ApiResponse<void>>;
|
|
50
50
|
}
|
|
@@ -93,7 +93,7 @@ class PipelinesStepsApiService extends ApiBaseService_1.ApiBaseService {
|
|
|
93
93
|
*
|
|
94
94
|
* @summary Update an existing Pipeline Step
|
|
95
95
|
* @param {number} pipelineId The ID of the pipeline.
|
|
96
|
-
* @param {
|
|
96
|
+
* @param {number} stepId The ID of the step.
|
|
97
97
|
* @param {PipelineStepUpdate} pipelineStepUpdate A JSON object containing the resource data
|
|
98
98
|
*/
|
|
99
99
|
updatePipelinePipelineStep(pipelineId, stepId, pipelineStepUpdate) {
|