@devopness/sdk-js 2.78.0 → 2.79.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.
@@ -12,6 +12,7 @@
12
12
  import { ApplicationRelation } from './application-relation';
13
13
  import { CronJobRelation } from './cron-job-relation';
14
14
  import { DaemonRelation } from './daemon-relation';
15
+ import { NetworkRelation } from './network-relation';
15
16
  import { NetworkRuleRelation } from './network-rule-relation';
16
17
  import { ResourceType } from './resource-type';
17
18
  import { ServerRelation } from './server-relation';
@@ -44,8 +45,8 @@ export interface ActionResource {
44
45
  type_human_readable: string;
45
46
  /**
46
47
  * The resource data of type specified on `resource.type`
47
- * @type {ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation}
48
+ * @type {ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation}
48
49
  * @memberof ActionResource
49
50
  */
50
- data?: ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | null;
51
+ data?: ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | null;
51
52
  }
@@ -13,6 +13,7 @@ import { ApplicationRelation } from './application-relation';
13
13
  import { CronJobRelation } from './cron-job-relation';
14
14
  import { DaemonRelation } from './daemon-relation';
15
15
  import { EnvironmentType } from './environment-type';
16
+ import { NetworkRelation } from './network-relation';
16
17
  import { NetworkRuleRelation } from './network-rule-relation';
17
18
  import { ServerRelation } from './server-relation';
18
19
  import { ServiceRelation } from './service-relation';
@@ -73,6 +74,12 @@ export interface Environment {
73
74
  * @memberof Environment
74
75
  */
75
76
  daemons: Array<DaemonRelation>;
77
+ /**
78
+ *
79
+ * @type {Array<NetworkRelation>}
80
+ * @memberof Environment
81
+ */
82
+ networks: Array<NetworkRelation>;
76
83
  /**
77
84
  *
78
85
  * @type {Array<NetworkRuleRelation>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.78.0",
3
+ "version": "2.79.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },