@devopness/sdk-js 2.155.0 → 2.157.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.
|
@@ -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}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { BlueprintService } from './blueprint-service';
|
|
13
|
+
import { ResourceToBeLinked } from './resource-to-be-linked';
|
|
13
14
|
import { ServerProvisionInput } from './server-provision-input';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
@@ -17,6 +18,12 @@ import { ServerProvisionInput } from './server-provision-input';
|
|
|
17
18
|
* @interface ServerEnvironmentCreate
|
|
18
19
|
*/
|
|
19
20
|
export interface ServerEnvironmentCreate {
|
|
21
|
+
/**
|
|
22
|
+
* The resources to be linked with this resource
|
|
23
|
+
* @type {Array<ResourceToBeLinked>}
|
|
24
|
+
* @memberof ServerEnvironmentCreate
|
|
25
|
+
*/
|
|
26
|
+
linked_resources?: Array<ResourceToBeLinked>;
|
|
20
27
|
/**
|
|
21
28
|
* The hostname to be set on Linux servers. Accepts numbers (0-9), dash (-) and lower case non accented characters. Must not be greater than 60 characters.
|
|
22
29
|
* @type {string}
|
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.157.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -51,22 +51,22 @@
|
|
|
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.
|
|
60
|
-
"eslint-import-resolver-typescript": "^3.
|
|
59
|
+
"eslint": "^9.20.1",
|
|
60
|
+
"eslint-import-resolver-typescript": "^3.8.2",
|
|
61
61
|
"eslint-plugin-import": "^2.31.0",
|
|
62
62
|
"eslint-plugin-n": "^17.15.1",
|
|
63
63
|
"eslint-plugin-promise": "^7.2.1",
|
|
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.1"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@types/parse-link-header": "^2.0.3",
|