Skip to content

Commit

Permalink
Update ts definitions (#11021)
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 Apr 16, 2024
1 parent 662e8a3 commit 4171653
Show file tree
Hide file tree
Showing 12 changed files with 98 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/fsevents-patch-19706e7e35-10.zip
Binary file not shown.
Binary file removed .yarn/cache/fsevents-patch-6b67494872-10.zip
Binary file not shown.
98 changes: 98 additions & 0 deletions packages/foundations-ts-definitions/types/platform-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11156,6 +11156,17 @@ export interface JournalEntries {
createdFrom?: string
createdTo?: string
}
export interface JournalEntriesLandlords {
pageSize?: number
pageNumber?: number
sortBy?: string
landlordId?: string[]
negotiatorId?: string[]
propertyId?: string[]
type?: string
createdFrom?: string
createdTo?: string
}
/**
* Representation of a journal entry
*/
Expand Down Expand Up @@ -11772,6 +11783,93 @@ export interface LandlordContactRelationshipModelPagedResult {
}
}
}
/**
* Representation of a landlord related journal entry
*/
export interface LandlordJournalEntryModel {
readonly _links?: {
[name: string]: {
href?: string
}
}
readonly _embedded?: {
[name: string]: any
}
/**
* The date and time when the journal entry was created
* example:
* 2019-08-14T12:30:02Z
*/
created?: string // date-time
/**
* The unique identifier of the property the journal entry is related to. Can additionally be associated to another type
*/
propertyId?: string
/**
* The unique identifier of the landlord the journal entry is related to.
*/
landlordId?: string
/**
* The type of journal entry
*/
type?: string
/**
* The unique identifier of the negotiator that created the entry
*/
negotiatorId?: string
/**
* The textual description of the journal entry event
*/
description?: string
}
export interface LandlordJournalEntryModelPagedResult {
_embedded?: {
readonly _links?: {
[name: string]: {
href?: string
}
}
readonly _embedded?: {
[name: string]: any
}
/**
* The date and time when the journal entry was created
* example:
* 2019-08-14T12:30:02Z
*/
created?: string // date-time
/**
* The unique identifier of the property the journal entry is related to. Can additionally be associated to another type
*/
propertyId?: string
/**
* The unique identifier of the landlord the journal entry is related to.
*/
landlordId?: string
/**
* The type of journal entry
*/
type?: string
/**
* The unique identifier of the negotiator that created the entry
*/
negotiatorId?: string
/**
* The textual description of the journal entry event
*/
description?: string
}[]
pageNumber?: number // int32
pageSize?: number // int32
pageCount?: number // int32
totalPageCount?: number // int32
totalCount?: number // int32
_links?: {
[name: string]: {
href?: string
}
}
}
/**
* Representation of a landlord
*/
Expand Down

0 comments on commit 4171653

Please sign in to comment.