Skip to content

Commit

Permalink
Update ts definitions (#9987)
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 Oct 19, 2023
1 parent 01dcaf5 commit 553b47d
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions packages/foundations-ts-definitions/types/platform-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11139,6 +11139,7 @@ export interface Landlords {
embed?: ('appointments' | 'documents' | 'office' | 'properties' | 'solicitor' | 'source')[]
id?: string[]
email?: string[]
officeId?: string[]
extrasField?: string[]
active?: boolean
address?: string
Expand Down Expand Up @@ -11327,6 +11328,19 @@ export interface NegotiatorModel {
* A flag determining whether or not the negotiator is active
*/
active?: boolean
/**
* A collection of additional contact details
*/
additionalContactDetails?: {
/**
* The type of contact detail
*/
type?: string
/**
* The contact detail
*/
value?: string
}[]
/**
* App specific metadata that has been set against the negotiator
*/
Expand Down Expand Up @@ -11396,6 +11410,19 @@ export interface NegotiatorModelPagedResult {
* A flag determining whether or not the negotiator is active
*/
active?: boolean
/**
* A collection of additional contact details
*/
additionalContactDetails?: {
/**
* The type of contact detail
*/
type?: string
/**
* The contact detail
*/
value?: string
}[]
/**
* App specific metadata that has been set against the negotiator
*/
Expand Down Expand Up @@ -16930,6 +16957,10 @@ export interface TenancyArrearsModel {
* A flag determining whether or not tenancy arrears should be chased
*/
chaseArrears?: boolean
/**
* Indicates whether or not a payment plan is set up for a tenancy in arrears (no/yes/negotiating)
*/
paymentPlan?: string
}
/**
* Representation of a tenancy break clauses break from details
Expand Down Expand Up @@ -18150,6 +18181,10 @@ export interface TenancyModel {
* A flag determining whether or not tenancy arrears should be chased
*/
chaseArrears?: boolean
/**
* Indicates whether or not a payment plan is set up for a tenancy in arrears (no/yes/negotiating)
*/
paymentPlan?: string
}
/**
* The ETag for the current version of the tenancy. Used for managing update concurrency
Expand Down Expand Up @@ -18507,6 +18542,10 @@ export interface TenancyModelPagedResult {
* A flag determining whether or not tenancy arrears should be chased
*/
chaseArrears?: boolean
/**
* Indicates whether or not a payment plan is set up for a tenancy in arrears (no/yes/negotiating)
*/
paymentPlan?: string
}
/**
* The ETag for the current version of the tenancy. Used for managing update concurrency
Expand Down

0 comments on commit 553b47d

Please sign in to comment.