@devopness/sdk-js 2.80.0 → 2.81.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.
|
@@ -76,12 +76,6 @@ export interface ApplicationUpdate {
|
|
|
76
76
|
* @memberof ApplicationUpdate
|
|
77
77
|
*/
|
|
78
78
|
repository?: string;
|
|
79
|
-
/**
|
|
80
|
-
* Numeric ID of the pipeline used as default on deploy the application.
|
|
81
|
-
* @type {string}
|
|
82
|
-
* @memberof ApplicationUpdate
|
|
83
|
-
*/
|
|
84
|
-
default_pipeline_id?: string;
|
|
85
79
|
/**
|
|
86
80
|
* Numeric ID of the source provider account where the repository is hosted. This field is required when <code>repository</code> is present.
|
|
87
81
|
* @type {number}
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { ApplicationLastDeployments } from './application-last-deployments';
|
|
13
|
-
import { ApplicationPipeline } from './application-pipeline';
|
|
14
13
|
import { ApplicationType } from './application-type';
|
|
15
14
|
import { EnvironmentRelation } from './environment-relation';
|
|
16
15
|
import { ServerRelation } from './server-relation';
|
|
@@ -161,12 +160,6 @@ export interface Application {
|
|
|
161
160
|
* @memberof Application
|
|
162
161
|
*/
|
|
163
162
|
requires_daemon: boolean;
|
|
164
|
-
/**
|
|
165
|
-
*
|
|
166
|
-
* @type {ApplicationPipeline}
|
|
167
|
-
* @memberof Application
|
|
168
|
-
*/
|
|
169
|
-
default_pipeline: ApplicationPipeline | null;
|
|
170
163
|
/**
|
|
171
164
|
*
|
|
172
165
|
* @type {UserRelation}
|
|
@@ -17,6 +17,18 @@ import { PipelineSettingsVariable } from './pipeline-settings-variable';
|
|
|
17
17
|
* @interface PipelineSettings
|
|
18
18
|
*/
|
|
19
19
|
export interface PipelineSettings {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof PipelineSettings
|
|
24
|
+
*/
|
|
25
|
+
max_pipelines_per_resource?: number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof PipelineSettings
|
|
30
|
+
*/
|
|
31
|
+
allow_custom_steps?: boolean;
|
|
20
32
|
/**
|
|
21
33
|
* The list of pipeline setting stage
|
|
22
34
|
* @type {Array<PipelineSettingsStage>}
|