Skip to content

Commit

Permalink
Update ts definitions (#10544)
Browse files Browse the repository at this point in the history
Co-authored-by: willmcvay <[email protected]>
Co-authored-by: Will McVay <[email protected]>
  • Loading branch information
3 people authored Jan 5, 2024
1 parent 1d71d1d commit 23b23ab
Showing 1 changed file with 27 additions and 51 deletions.
78 changes: 27 additions & 51 deletions packages/foundations-ts-definitions/types/platform-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2652,6 +2652,15 @@ export interface CompanyModel {
*/
country?: string
}
/**
* Representation of the payments and terms configuration for a company
*/
payments?: {
/**
* The identifier of the nominal code selected in the payments and terms configuration
*/
nominalAccountId?: string
}
/**
* A collection of additional contact details
*/
Expand Down Expand Up @@ -2846,6 +2855,15 @@ export interface CompanyModelPagedResult {
*/
country?: string
}
/**
* Representation of the payments and terms configuration for a company
*/
payments?: {
/**
* The identifier of the nominal code selected in the payments and terms configuration
*/
nominalAccountId?: string
}
/**
* A collection of additional contact details
*/
Expand Down Expand Up @@ -2934,6 +2952,15 @@ export interface CompanyModelPagedResult {
}
}
}
/**
* Representation of the payments and terms configuration for a company
*/
export interface CompanyPaymentsModel {
/**
* The identifier of the nominal code selected in the payments and terms configuration
*/
nominalAccountId?: string
}
/**
* Representation of the roles that an individual companies possesses
*/
Expand Down Expand Up @@ -10023,18 +10050,6 @@ export interface GuarantorModel {
* The identifier for the guarantor record
*/
id?: string
/**
* The date and time when the guarantor record was created
* example:
* 2019-08-14T12:30:02Z
*/
created?: string // date-time
/**
* The date and time when the guarantor record was last modified
* example:
* 2019-08-14T12:30:02Z
*/
modified?: string // date-time
/**
* The identifier for the contact record associated with the guarantor
*/
Expand All @@ -10047,11 +10062,6 @@ export interface GuarantorModel {
* The status of the reference requested from the guarantor (notSet/requested/received)
*/
referenceStatus?: string
/**
* The ETag for the current version of the guarantor record.
* Used for managing update concurrency
*/
readonly _eTag?: string
}
/**
* Any specific details relating to the marketing of a property in Guernsey
Expand Down Expand Up @@ -17852,18 +17862,6 @@ export interface TenancyContactRelationshipModel {
* The identifier for the guarantor record
*/
id?: string
/**
* The date and time when the guarantor record was created
* example:
* 2019-08-14T12:30:02Z
*/
created?: string // date-time
/**
* The date and time when the guarantor record was last modified
* example:
* 2019-08-14T12:30:02Z
*/
modified?: string // date-time
/**
* The identifier for the contact record associated with the guarantor
*/
Expand All @@ -17876,11 +17874,6 @@ export interface TenancyContactRelationshipModel {
* The status of the reference requested from the guarantor (notSet/requested/received)
*/
referenceStatus?: string
/**
* The ETag for the current version of the guarantor record.
* Used for managing update concurrency
*/
readonly _eTag?: string
}[]
/**
* Collection of references recorded for this relationship
Expand Down Expand Up @@ -17966,18 +17959,6 @@ export interface TenancyContactRelationshipModelPagedResult {
* The identifier for the guarantor record
*/
id?: string
/**
* The date and time when the guarantor record was created
* example:
* 2019-08-14T12:30:02Z
*/
created?: string // date-time
/**
* The date and time when the guarantor record was last modified
* example:
* 2019-08-14T12:30:02Z
*/
modified?: string // date-time
/**
* The identifier for the contact record associated with the guarantor
*/
Expand All @@ -17990,11 +17971,6 @@ export interface TenancyContactRelationshipModelPagedResult {
* The status of the reference requested from the guarantor (notSet/requested/received)
*/
referenceStatus?: string
/**
* The ETag for the current version of the guarantor record.
* Used for managing update concurrency
*/
readonly _eTag?: string
}[]
/**
* Collection of references recorded for this relationship
Expand Down

0 comments on commit 23b23ab

Please sign in to comment.