@devopness/sdk-js 2.19.0 → 2.20.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.
@@ -29,16 +29,16 @@ export declare class PipelinesStepsApiService extends ApiBaseService {
29
29
  *
30
30
  * @summary Link a step to a Pipeline
31
31
  * @param {number} pipelineId The ID of the pipeline.
32
- * @param {string} stepId The ID of the step.
32
+ * @param {number} stepId The ID of the step.
33
33
  */
34
- linkPipelineStepToPipeline(pipelineId: number, stepId: string): Promise<ApiResponse<void>>;
34
+ linkPipelineStepToPipeline(pipelineId: number, stepId: number): Promise<ApiResponse<void>>;
35
35
  /**
36
36
  *
37
37
  * @summary Unlink a step from a Pipeline
38
38
  * @param {number} pipelineId The ID of the pipeline.
39
- * @param {string} stepId The ID of the step.
39
+ * @param {number} stepId The ID of the step.
40
40
  */
41
- unlinkPipelineStepFromPipeline(pipelineId: number, stepId: string): Promise<ApiResponse<void>>;
41
+ unlinkPipelineStepFromPipeline(pipelineId: number, stepId: number): Promise<ApiResponse<void>>;
42
42
  /**
43
43
  *
44
44
  * @summary Update an existing Pipeline Step
@@ -53,7 +53,7 @@ class PipelinesStepsApiService extends ApiBaseService_1.ApiBaseService {
53
53
  *
54
54
  * @summary Link a step to a Pipeline
55
55
  * @param {number} pipelineId The ID of the pipeline.
56
- * @param {string} stepId The ID of the step.
56
+ * @param {number} stepId The ID of the step.
57
57
  */
58
58
  linkPipelineStepToPipeline(pipelineId, stepId) {
59
59
  return __awaiter(this, void 0, void 0, function* () {
@@ -73,7 +73,7 @@ class PipelinesStepsApiService extends ApiBaseService_1.ApiBaseService {
73
73
  *
74
74
  * @summary Unlink a step from a Pipeline
75
75
  * @param {number} pipelineId The ID of the pipeline.
76
- * @param {string} stepId The ID of the step.
76
+ * @param {number} stepId The ID of the step.
77
77
  */
78
78
  unlinkPipelineStepFromPipeline(pipelineId, stepId) {
79
79
  return __awaiter(this, void 0, void 0, function* () {
@@ -15,6 +15,12 @@
15
15
  * @interface DaemonUpdate
16
16
  */
17
17
  export interface DaemonUpdate {
18
+ /**
19
+ * The unique ID of the given daemon.
20
+ * @type {number}
21
+ * @memberof DaemonUpdate
22
+ */
23
+ id: number;
18
24
  /**
19
25
  * The command line to be executed to start the daemon. Must not be greater than 255 characters.
20
26
  * @type {string}
@@ -17,6 +17,12 @@ import { VariableType } from './variable-type';
17
17
  * @interface VariableUpdate
18
18
  */
19
19
  export interface VariableUpdate {
20
+ /**
21
+ * The unique ID of the variable.
22
+ * @type {number}
23
+ * @memberof VariableUpdate
24
+ */
25
+ id: number;
20
26
  /**
21
27
  * The unique key used to identify the variable on the target. When variable is of type `file`, this is the relative path to the file within the application directory. Must not be greater than 100 characters.
22
28
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.19.0",
3
+ "version": "2.20.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },