@devopness/sdk-js 2.163.5 → 2.163.7
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.
|
@@ -19,6 +19,12 @@ import { ActionTargetData } from './action-target-data';
|
|
|
19
19
|
* @interface ActionTarget
|
|
20
20
|
*/
|
|
21
21
|
export interface ActionTarget {
|
|
22
|
+
/**
|
|
23
|
+
* The ID of the action target
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof ActionTarget
|
|
26
|
+
*/
|
|
27
|
+
id?: number;
|
|
22
28
|
/**
|
|
23
29
|
* The type of the cloud resource on which the action must be performed
|
|
24
30
|
* @type {string}
|
|
@@ -29,6 +29,7 @@ var ActionType;
|
|
|
29
29
|
ActionType["Reload"] = "reload";
|
|
30
30
|
ActionType["Remove"] = "remove";
|
|
31
31
|
ActionType["Restart"] = "restart";
|
|
32
|
+
ActionType["RotateKey"] = "rotate_key";
|
|
32
33
|
ActionType["Start"] = "start";
|
|
33
34
|
ActionType["Stop"] = "stop";
|
|
34
35
|
})(ActionType || (exports.ActionType = ActionType = {}));
|
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.163.
|
|
4
|
+
"version": "2.163.7",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"@eslint/js": "^9.26.0",
|
|
55
55
|
"@openapitools/openapi-generator-cli": "^2.20.0",
|
|
56
56
|
"@types/jest": "^29.5.12",
|
|
57
|
-
"@typescript-eslint/parser": "^8.
|
|
57
|
+
"@typescript-eslint/parser": "^8.32.0",
|
|
58
58
|
"axios-mock-adapter": "^2.1.0",
|
|
59
|
-
"eslint": "^9.
|
|
59
|
+
"eslint": "^9.26.0",
|
|
60
60
|
"eslint-import-resolver-typescript": "^4.3.4",
|
|
61
61
|
"eslint-plugin-import": "^2.31.0",
|
|
62
62
|
"eslint-plugin-n": "^17.17.0",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"husky": "9.1.7",
|
|
65
65
|
"jest": "^29.7.0",
|
|
66
66
|
"ts-jest": "^29.3.2",
|
|
67
|
-
"typedoc": "^0.28.
|
|
67
|
+
"typedoc": "^0.28.4",
|
|
68
68
|
"typescript": "^5.8.3",
|
|
69
|
-
"typescript-eslint": "^8.
|
|
69
|
+
"typescript-eslint": "^8.32.0"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@types/parse-link-header": "^2.0.3",
|