@devopness/sdk-js 2.154.1 → 2.155.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.
@@ -71,12 +71,6 @@ export interface PipelineRelation {
71
71
  * @memberof PipelineRelation
72
72
  */
73
73
  operation_human_readable: string;
74
- /**
75
- * Indicates if the pipeline was auto_generated by `Devopness` itself
76
- * @type {boolean}
77
- * @memberof PipelineRelation
78
- */
79
- is_auto_generated: boolean;
80
74
  /**
81
75
  * Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline.
82
76
  * @type {number}
@@ -24,11 +24,11 @@ export interface PipelineSettings {
24
24
  */
25
25
  max_pipelines_per_resource?: number;
26
26
  /**
27
- *
27
+ * Indicates whether the user has permission to manage the pipeline for the resource operation
28
28
  * @type {boolean}
29
29
  * @memberof PipelineSettings
30
30
  */
31
- allow_custom_steps?: boolean;
31
+ is_user_managed?: boolean;
32
32
  /**
33
33
  * The list of pipeline setting stage
34
34
  * @type {Array<PipelineSettingsStage>}
@@ -73,12 +73,6 @@ export interface Pipeline {
73
73
  * @memberof Pipeline
74
74
  */
75
75
  operation_human_readable: string;
76
- /**
77
- * Indicates if the pipeline was auto_generated by `Devopness` itself
78
- * @type {boolean}
79
- * @memberof Pipeline
80
- */
81
- is_auto_generated: boolean;
82
76
  /**
83
77
  * Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline.
84
78
  * @type {number}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@devopness/sdk-js",
4
- "version": "2.154.1",
4
+ "version": "2.155.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },