Skip to content

Commit

Permalink
Update ts definitions (#10656)
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 Feb 1, 2024
1 parent eb5a654 commit 8b5ed9b
Showing 1 changed file with 30 additions and 6 deletions.
36 changes: 30 additions & 6 deletions packages/foundations-ts-definitions/types/platform-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1808,6 +1808,10 @@ export interface AppointmentModel {
fromArchive?: boolean
}[]
}
/**
* The attendance status of the appointment (notSet/noShow/attended)
*/
attended?: string
/**
* A flag denoting whether or not the appointment will be accompanied by one or more negotiators
*/
Expand Down Expand Up @@ -2011,6 +2015,10 @@ export interface AppointmentModelPagedResult {
fromArchive?: boolean
}[]
}
/**
* The attendance status of the appointment (notSet/noShow/attended)
*/
attended?: string
/**
* A flag denoting whether or not the appointment will be accompanied by one or more negotiators
*/
Expand Down Expand Up @@ -5164,6 +5172,10 @@ export interface CreateAppointmentModel {
* A flag denoting whether or not the appointment is a subsequent appointment to a previous one (a repeat appointment for the same attendee)
*/
isRepeat?: boolean
/**
* The attendance status of the appointment (notSet/noShow/attended)
*/
attended?: string
/**
* Details of an appointment's recurrence pattern
*/
Expand Down Expand Up @@ -7987,23 +7999,23 @@ export interface CreateReferralModel {
/**
* The unique identifier of the referral type
*/
referralTypeId?: string
referralTypeId: string
/**
* The unique identifier of the Negotiator
* The unique identifier of the negotiator creating the referral
*/
negotiatorId?: string
/**
* The unique identifier of the Property
* The unique identifier of the property
*/
propertyId?: string
/**
* The unique identifier of the Applicant
* The unique identifier of the applicant
*/
applicantId?: string
/**
* The unique identifier of the Contact
* The unique identifier of the contact that has been referred
*/
contactId?: string
contactId: string
/**
* The amount paid to the agent for the referral
*/
Expand Down Expand Up @@ -16551,6 +16563,10 @@ export interface StaffModel {
* The staff member's email
*/
email?: string
/**
* The staff member's preferred salutation
*/
salutation?: string
}
export interface StaffModelPagedResult {
_embedded?: {
Expand Down Expand Up @@ -16578,6 +16594,10 @@ export interface StaffModelPagedResult {
* The staff member's email
*/
email?: string
/**
* The staff member's preferred salutation
*/
salutation?: string
}[]
pageNumber?: number // int32
pageSize?: number // int32
Expand Down Expand Up @@ -20434,6 +20454,10 @@ export interface UpdateAppointmentModel {
* A flag denoting whether or not the property and/or property's vendor has confirmed their attendance
*/
propertyConfirmed?: boolean
/**
* The attendance status of the appointment (notSet/noShow/attended)
*/
attended?: string
/**
* Represents the follow up information on a single appointment
*/
Expand Down

0 comments on commit 8b5ed9b

Please sign in to comment.