@devopness/sdk-js 2.88.0 → 2.89.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.
@@ -19,6 +19,7 @@ import { ServerRelation } from './server-relation';
19
19
  import { ServiceRelation } from './service-relation';
20
20
  import { SshKeyRelation } from './ssh-key-relation';
21
21
  import { SslCertificateRelation } from './ssl-certificate-relation';
22
+ import { SubnetRelation } from './subnet-relation';
22
23
  /**
23
24
  * The resource that triggered an action
24
25
  * @export
@@ -45,8 +46,8 @@ export interface ActionResource {
45
46
  type_human_readable: string;
46
47
  /**
47
48
  * The resource data of type specified on `resource.type`
48
- * @type {ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation}
49
+ * @type {ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | SubnetRelation}
49
50
  * @memberof ActionResource
50
51
  */
51
- data?: ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | null;
52
+ data?: ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | SubnetRelation | null;
52
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.88.0",
3
+ "version": "2.89.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },