Skip to content

Commit

Permalink
Update ts definitions (#9053)
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 May 15, 2023
1 parent 73a38b9 commit 1a37937
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions packages/foundations-ts-definitions/types/platform-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2342,6 +2342,25 @@ export interface CheckInKeyModel {
*/
checkInNegotiatorId?: string
}
/**
* Representation of a check list item
*/
export interface CheckListItemModel {
/**
* The name of the check list item
*/
name?: string
/**
* A flag to determine if the item is completed
*/
completed?: boolean
/**
* The date when the item was completed
* example:
* 2019-08-14
*/
completedDate?: string // date
}
export interface Companies {
pageSize?: number
pageNumber?: number
Expand Down Expand Up @@ -4022,6 +4041,25 @@ export interface ConveyancingModel {
* 2019-08-14
*/
completion?: string // date
/**
* Check list items to be completed as part of the sales progression process
*/
checkListItems?: {
/**
* The name of the check list item
*/
name?: string
/**
* A flag to determine if the item is completed
*/
completed?: boolean
/**
* The date when the item was completed
* example:
* 2019-08-14
*/
completedDate?: string // date
}[]
/**
* The ETag for the current version of this conveyancing record. Used for managing update concurrency
*/
Expand Down Expand Up @@ -4259,6 +4297,25 @@ export interface ConveyancingModelPagedResult {
* 2019-08-14
*/
completion?: string // date
/**
* Check list items to be completed as part of the sales progression process
*/
checkListItems?: {
/**
* The name of the check list item
*/
name?: string
/**
* A flag to determine if the item is completed
*/
completed?: boolean
/**
* The date when the item was completed
* example:
* 2019-08-14
*/
completedDate?: string // date
}[]
/**
* The ETag for the current version of this conveyancing record. Used for managing update concurrency
*/
Expand Down

0 comments on commit 1a37937

Please sign in to comment.