@devopness/sdk-js 2.64.0 → 2.66.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.
@@ -130,10 +130,4 @@ export interface ApplicationEnvironmentCreate {
130
130
  * @memberof ApplicationEnvironmentCreate
131
131
  */
132
132
  requires_daemon: boolean;
133
- /**
134
- * List of valid resource IDs
135
- * @type {Array<number>}
136
- * @memberof ApplicationEnvironmentCreate
137
- */
138
- servers: Array<number>;
139
133
  }
@@ -142,10 +142,4 @@ export interface ApplicationUpdate {
142
142
  * @memberof ApplicationUpdate
143
143
  */
144
144
  requires_daemon: boolean;
145
- /**
146
- * List of valid resource IDs
147
- * @type {Array<number>}
148
- * @memberof ApplicationUpdate
149
- */
150
- servers: Array<number>;
151
145
  }
@@ -1,5 +1,7 @@
1
+ import { PipelinesActionsApiService } from "../api/generated/apis/pipelines-actions-api";
1
2
  import { PipelinesApiService } from "../api/generated/apis/pipelines-api";
2
3
  import { PipelinesStepsApiService } from "../api/generated/apis/pipelines-steps-api";
3
4
  export declare class PipelineService extends PipelinesApiService {
5
+ actions: PipelinesActionsApiService;
4
6
  steps: PipelinesStepsApiService;
5
7
  }
@@ -1,11 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PipelineService = void 0;
4
+ const pipelines_actions_api_1 = require("../api/generated/apis/pipelines-actions-api");
4
5
  const pipelines_api_1 = require("../api/generated/apis/pipelines-api");
5
6
  const pipelines_steps_api_1 = require("../api/generated/apis/pipelines-steps-api");
6
7
  class PipelineService extends pipelines_api_1.PipelinesApiService {
7
8
  constructor() {
8
9
  super(...arguments);
10
+ this.actions = new pipelines_actions_api_1.PipelinesActionsApiService();
9
11
  this.steps = new pipelines_steps_api_1.PipelinesStepsApiService();
10
12
  }
11
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.64.0",
3
+ "version": "2.66.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },