@devopness/sdk-js 2.155.0 → 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.
|
@@ -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}
|
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",
|