@@ -1764,14 +1764,14 @@ export interface AuditTrailEvent {
1764
1764
*/
1765
1765
created_at ?: string
1766
1766
data ?: Data1
1767
- enterprise_account ?: EnterpriseAccount
1767
+ enterprise_account ?: AuditTrailEnterpriseAccount
1768
1768
/**
1769
1769
* unique identifier of event
1770
1770
*/
1771
1771
id ?: string
1772
1772
owner ?: Owner1
1773
1773
request ?: Request
1774
- team ?: Team
1774
+ team ?: AuditTrailTeam
1775
1775
/**
1776
1776
* type of event
1777
1777
*/
@@ -1804,15 +1804,15 @@ export interface Owner1 {
1804
1804
/**
1805
1805
* enterprise account on which the event happened
1806
1806
*/
1807
- export interface EnterpriseAccount {
1807
+ export interface AuditTrailEnterpriseAccount {
1808
1808
[ k : string ] : unknown
1809
1809
id ?: string
1810
1810
name ?: string
1811
1811
}
1812
1812
/**
1813
1813
* team on which the event happened
1814
1814
*/
1815
- export interface Team {
1815
+ export interface AuditTrailTeam {
1816
1816
[ k : string ] : unknown
1817
1817
id ?: string
1818
1818
name ?: string
@@ -3978,7 +3978,7 @@ export interface SpaceTopology {
3978
3978
/**
3979
3979
* formations for application
3980
3980
*/
3981
- formation ?: Formation [ ]
3981
+ formation ?: SpaceTopologyFormation [ ]
3982
3982
/**
3983
3983
* unique identifier of app
3984
3984
*/
@@ -3992,12 +3992,12 @@ export interface SpaceTopology {
3992
3992
/**
3993
3993
* formations for application
3994
3994
*/
3995
- export interface Formation {
3995
+ export interface SpaceTopologyFormation {
3996
3996
[ k : string ] : unknown
3997
3997
/**
3998
3998
* Current dynos for application
3999
3999
*/
4000
- dynos ?: Dyno [ ]
4000
+ dynos ?: FormationDyno [ ]
4001
4001
/**
4002
4002
* unique identifier of this process type
4003
4003
*/
@@ -4010,7 +4010,7 @@ export interface Formation {
4010
4010
/**
4011
4011
* A dyno
4012
4012
*/
4013
- export interface Dyno {
4013
+ export interface FormationDyno {
4014
4014
[ k : string ] : unknown
4015
4015
/**
4016
4016
* localspace hostname of resource
0 commit comments