@devopness/sdk-js 2.138.0 → 2.140.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.
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { ActionRelation } from './action-relation';
13
13
  import { ApplicationRelation } from './application-relation';
14
+ import { UserRelation } from './user-relation';
14
15
  /**
15
16
  *
16
17
  * @export
@@ -71,6 +72,12 @@ export interface DaemonRelation {
71
72
  * @memberof DaemonRelation
72
73
  */
73
74
  application: ApplicationRelation | null;
75
+ /**
76
+ *
77
+ * @type {UserRelation}
78
+ * @memberof DaemonRelation
79
+ */
80
+ created_by_user: UserRelation;
74
81
  /**
75
82
  * The date and time when the record was created
76
83
  * @type {string}
@@ -14,6 +14,7 @@ import { ApplicationRelation } from './application-relation';
14
14
  import { EnvironmentRelation } from './environment-relation';
15
15
  import { ProjectRelation } from './project-relation';
16
16
  import { ServerRelation } from './server-relation';
17
+ import { UserRelation } from './user-relation';
17
18
  /**
18
19
  *
19
20
  * @export
@@ -92,6 +93,12 @@ export interface Daemon {
92
93
  * @memberof Daemon
93
94
  */
94
95
  servers: Array<ServerRelation>;
96
+ /**
97
+ *
98
+ * @type {UserRelation}
99
+ * @memberof Daemon
100
+ */
101
+ created_by_user: UserRelation;
95
102
  /**
96
103
  * The date and time when the record was created
97
104
  * @type {string}
@@ -40,6 +40,12 @@ export interface OperatingSystemVersion {
40
40
  * @memberof OperatingSystemVersion
41
41
  */
42
42
  os_version_code: CloudOsVersionCode | null;
43
+ /**
44
+ * Human readable version of the operating system version
45
+ * @type {string}
46
+ * @memberof OperatingSystemVersion
47
+ */
48
+ os_version_code_human_readable?: string;
43
49
  /**
44
50
  * Release date
45
51
  * @type {string}
@@ -13,6 +13,7 @@ import { ActionRelation } from './action-relation';
13
13
  import { ActionStatus } from './action-status';
14
14
  import { CloudOsVersionCode } from './cloud-os-version-code';
15
15
  import { EnvironmentRelation } from './environment-relation';
16
+ import { OperatingSystemVersion } from './operating-system-version';
16
17
  import { ProjectRelation } from './project-relation';
17
18
  import { ServerBlueprint } from './server-blueprint';
18
19
  import { ServerCloudServiceCode } from './server-cloud-service-code';
@@ -78,6 +79,12 @@ export interface Server {
78
79
  * @memberof Server
79
80
  */
80
81
  ssh_port: number;
82
+ /**
83
+ *
84
+ * @type {OperatingSystemVersion}
85
+ * @memberof Server
86
+ */
87
+ os: OperatingSystemVersion;
81
88
  /**
82
89
  *
83
90
  * @type {CloudOsVersionCode}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.138.0",
3
+ "version": "2.140.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },