@devopness/sdk-js 2.154.1 → 2.156.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.
- package/dist/api/generated/models/application-relation.d.ts +12 -0
- package/dist/api/generated/models/application.d.ts +12 -0
- package/dist/api/generated/models/pipeline-relation.d.ts +0 -6
- package/dist/api/generated/models/pipeline-settings.d.ts +2 -2
- package/dist/api/generated/models/pipeline.d.ts +0 -6
- package/package.json +6 -6
|
@@ -77,6 +77,12 @@ export interface ApplicationRelation {
|
|
|
77
77
|
* @memberof ApplicationRelation
|
|
78
78
|
*/
|
|
79
79
|
programming_language: string;
|
|
80
|
+
/**
|
|
81
|
+
* The human readable version of the programming language of the application.
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof ApplicationRelation
|
|
84
|
+
*/
|
|
85
|
+
programming_language_human_readable: string;
|
|
80
86
|
/**
|
|
81
87
|
* The language runtime engine version to be used to execute this application on the deployed servers
|
|
82
88
|
* @type {string}
|
|
@@ -89,6 +95,12 @@ export interface ApplicationRelation {
|
|
|
89
95
|
* @memberof ApplicationRelation
|
|
90
96
|
*/
|
|
91
97
|
framework: string;
|
|
98
|
+
/**
|
|
99
|
+
* The human readable version of the framework of the application.
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof ApplicationRelation
|
|
102
|
+
*/
|
|
103
|
+
framework_human_readable: string;
|
|
92
104
|
/**
|
|
93
105
|
* The relative directory where package manager\'s manifest files (`package.json`, `composer.json`, `yarn.lock`, etc) are located. It needs to be set for applications where the actual source code is not located in the top level directory of the repository.
|
|
94
106
|
* @type {string}
|
|
@@ -82,6 +82,12 @@ export interface Application {
|
|
|
82
82
|
* @memberof Application
|
|
83
83
|
*/
|
|
84
84
|
programming_language: string;
|
|
85
|
+
/**
|
|
86
|
+
* The human readable version of the programming language of the application.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof Application
|
|
89
|
+
*/
|
|
90
|
+
programming_language_human_readable: string;
|
|
85
91
|
/**
|
|
86
92
|
* The language runtime engine version to be used to execute this application on the deployed servers
|
|
87
93
|
* @type {string}
|
|
@@ -94,6 +100,12 @@ export interface Application {
|
|
|
94
100
|
* @memberof Application
|
|
95
101
|
*/
|
|
96
102
|
framework: string;
|
|
103
|
+
/**
|
|
104
|
+
* The human readable version of the framework of the application.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof Application
|
|
107
|
+
*/
|
|
108
|
+
framework_human_readable: string;
|
|
97
109
|
/**
|
|
98
110
|
* The relative directory where package manager\'s manifest files (`package.json`, `composer.json`, `yarn.lock`, etc) are located. It needs to be set for applications where the actual source code is not located in the top level directory of the repository.
|
|
99
111
|
* @type {string}
|
|
@@ -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
|
-
|
|
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.
|
|
4
|
+
"version": "2.156.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
},
|
|
52
52
|
"homepage": "https://github.com/devopness/devopness#readme",
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@eslint/js": "^9.
|
|
54
|
+
"@eslint/js": "^9.20.0",
|
|
55
55
|
"@openapitools/openapi-generator-cli": "^2.16.3",
|
|
56
56
|
"@types/jest": "^29.5.12",
|
|
57
|
-
"@typescript-eslint/parser": "^8.
|
|
57
|
+
"@typescript-eslint/parser": "^8.24.0",
|
|
58
58
|
"axios-mock-adapter": "^2.1.0",
|
|
59
|
-
"eslint": "^9.
|
|
59
|
+
"eslint": "^9.20.1",
|
|
60
60
|
"eslint-import-resolver-typescript": "^3.7.0",
|
|
61
61
|
"eslint-plugin-import": "^2.31.0",
|
|
62
62
|
"eslint-plugin-n": "^17.15.1",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"husky": "9.1.7",
|
|
65
65
|
"jest": "^29.7.0",
|
|
66
66
|
"ts-jest": "^29.2.3",
|
|
67
|
-
"typedoc": "^0.27.
|
|
67
|
+
"typedoc": "^0.27.7",
|
|
68
68
|
"typescript": "^5.7.3",
|
|
69
|
-
"typescript-eslint": "^8.
|
|
69
|
+
"typescript-eslint": "^8.24.0"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@types/parse-link-header": "^2.0.3",
|