Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update TS Definitions #10656

Merged
merged 2 commits into from
Feb 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading