@devopness/sdk-js 2.159.0 → 2.160.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,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { EnvironmentType } from './environment-type';
|
|
13
13
|
import { ProjectRelation } from './project-relation';
|
|
14
|
-
import {
|
|
14
|
+
import { ResourceSummaryItem } from './resource-summary-item';
|
|
15
15
|
/**
|
|
16
16
|
*
|
|
17
17
|
* @export
|
|
@@ -54,6 +54,12 @@ export interface ArchivedEnvironmentRelation {
|
|
|
54
54
|
* @memberof ArchivedEnvironmentRelation
|
|
55
55
|
*/
|
|
56
56
|
used_credits?: number;
|
|
57
|
+
/**
|
|
58
|
+
* Summary of the resource
|
|
59
|
+
* @type {Array<ResourceSummaryItem>}
|
|
60
|
+
* @memberof ArchivedEnvironmentRelation
|
|
61
|
+
*/
|
|
62
|
+
resource_summary?: Array<ResourceSummaryItem>;
|
|
57
63
|
/**
|
|
58
64
|
* The date and time when the record was created
|
|
59
65
|
* @type {string}
|
|
@@ -78,10 +84,4 @@ export interface ArchivedEnvironmentRelation {
|
|
|
78
84
|
* @memberof ArchivedEnvironmentRelation
|
|
79
85
|
*/
|
|
80
86
|
project: ProjectRelation | null;
|
|
81
|
-
/**
|
|
82
|
-
*
|
|
83
|
-
* @type {Array<TeamMembershipRelation>}
|
|
84
|
-
* @memberof ArchivedEnvironmentRelation
|
|
85
|
-
*/
|
|
86
|
-
team_memberships?: Array<TeamMembershipRelation>;
|
|
87
87
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { EnvironmentType } from './environment-type';
|
|
13
13
|
import { ProjectRelation } from './project-relation';
|
|
14
|
-
import {
|
|
14
|
+
import { ResourceSummaryItem } from './resource-summary-item';
|
|
15
15
|
/**
|
|
16
16
|
*
|
|
17
17
|
* @export
|
|
@@ -54,6 +54,12 @@ export interface EnvironmentRelation {
|
|
|
54
54
|
* @memberof EnvironmentRelation
|
|
55
55
|
*/
|
|
56
56
|
used_credits?: number;
|
|
57
|
+
/**
|
|
58
|
+
* Summary of the resource
|
|
59
|
+
* @type {Array<ResourceSummaryItem>}
|
|
60
|
+
* @memberof EnvironmentRelation
|
|
61
|
+
*/
|
|
62
|
+
resource_summary?: Array<ResourceSummaryItem>;
|
|
57
63
|
/**
|
|
58
64
|
* The date and time when the record was created
|
|
59
65
|
* @type {string}
|
|
@@ -78,10 +84,4 @@ export interface EnvironmentRelation {
|
|
|
78
84
|
* @memberof EnvironmentRelation
|
|
79
85
|
*/
|
|
80
86
|
project: ProjectRelation | null;
|
|
81
|
-
/**
|
|
82
|
-
*
|
|
83
|
-
* @type {Array<TeamMembershipRelation>}
|
|
84
|
-
* @memberof EnvironmentRelation
|
|
85
|
-
*/
|
|
86
|
-
team_memberships?: Array<TeamMembershipRelation>;
|
|
87
87
|
}
|