@devopness/sdk-js 2.139.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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.139.0",
3
+ "version": "2.140.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },