@@ -1764,14 +1764,14 @@ export interface AuditTrailEvent {
17641764 */
17651765 created_at ?: string
17661766 data ?: Data1
1767- enterprise_account ?: EnterpriseAccount
1767+ enterprise_account ?: AuditTrailEnterpriseAccount
17681768 /**
17691769 * unique identifier of event
17701770 */
17711771 id ?: string
17721772 owner ?: Owner1
17731773 request ?: Request
1774- team ?: Team
1774+ team ?: AuditTrailTeam
17751775 /**
17761776 * type of event
17771777 */
@@ -1804,15 +1804,15 @@ export interface Owner1 {
18041804/**
18051805 * enterprise account on which the event happened
18061806 */
1807- export interface EnterpriseAccount {
1807+ export interface AuditTrailEnterpriseAccount {
18081808 [ k : string ] : unknown
18091809 id ?: string
18101810 name ?: string
18111811}
18121812/**
18131813 * team on which the event happened
18141814 */
1815- export interface Team {
1815+ export interface AuditTrailTeam {
18161816 [ k : string ] : unknown
18171817 id ?: string
18181818 name ?: string
@@ -3978,7 +3978,7 @@ export interface SpaceTopology {
39783978 /**
39793979 * formations for application
39803980 */
3981- formation ?: Formation [ ]
3981+ formation ?: SpaceTopologyFormation [ ]
39823982 /**
39833983 * unique identifier of app
39843984 */
@@ -3992,12 +3992,12 @@ export interface SpaceTopology {
39923992/**
39933993 * formations for application
39943994 */
3995- export interface Formation {
3995+ export interface SpaceTopologyFormation {
39963996 [ k : string ] : unknown
39973997 /**
39983998 * Current dynos for application
39993999 */
4000- dynos ?: Dyno [ ]
4000+ dynos ?: FormationDyno [ ]
40014001 /**
40024002 * unique identifier of this process type
40034003 */
@@ -4010,7 +4010,7 @@ export interface Formation {
40104010/**
40114011 * A dyno
40124012 */
4013- export interface Dyno {
4013+ export interface FormationDyno {
40144014 [ k : string ] : unknown
40154015 /**
40164016 * localspace hostname of resource
0 commit comments