@devopness/sdk-js 2.156.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.
@@ -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.156.0",
4
+ "version": "2.157.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -57,7 +57,7 @@
57
57
  "@typescript-eslint/parser": "^8.24.0",
58
58
  "axios-mock-adapter": "^2.1.0",
59
59
  "eslint": "^9.20.1",
60
- "eslint-import-resolver-typescript": "^3.7.0",
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",
@@ -66,7 +66,7 @@
66
66
  "ts-jest": "^29.2.3",
67
67
  "typedoc": "^0.27.7",
68
68
  "typescript": "^5.7.3",
69
- "typescript-eslint": "^8.24.0"
69
+ "typescript-eslint": "^8.24.1"
70
70
  },
71
71
  "dependencies": {
72
72
  "@types/parse-link-header": "^2.0.3",