diff --git a/.yarn/cache/@esbuild-darwin-arm64-npm-0.17.19-64d69299ed-10.zip b/.yarn/cache/@esbuild-darwin-arm64-npm-0.17.19-64d69299ed-10.zip deleted file mode 100644 index a8f1e57ef1..0000000000 Binary files a/.yarn/cache/@esbuild-darwin-arm64-npm-0.17.19-64d69299ed-10.zip and /dev/null differ diff --git a/.yarn/cache/@esbuild-darwin-arm64-npm-0.19.12-09699ac6cb-10.zip b/.yarn/cache/@esbuild-darwin-arm64-npm-0.19.12-09699ac6cb-10.zip deleted file mode 100644 index ce7ca3e983..0000000000 Binary files a/.yarn/cache/@esbuild-darwin-arm64-npm-0.19.12-09699ac6cb-10.zip and /dev/null differ diff --git a/.yarn/cache/@esbuild-linux-x64-npm-0.17.19-08a7136aa6-10.zip b/.yarn/cache/@esbuild-linux-x64-npm-0.17.19-08a7136aa6-10.zip new file mode 100644 index 0000000000..ee6c567a81 Binary files /dev/null and b/.yarn/cache/@esbuild-linux-x64-npm-0.17.19-08a7136aa6-10.zip differ diff --git a/.yarn/cache/@esbuild-linux-x64-npm-0.19.12-59062fdb38-10.zip b/.yarn/cache/@esbuild-linux-x64-npm-0.19.12-59062fdb38-10.zip new file mode 100644 index 0000000000..2f5ee528ff Binary files /dev/null and b/.yarn/cache/@esbuild-linux-x64-npm-0.19.12-59062fdb38-10.zip differ diff --git a/.yarn/cache/@rollup-rollup-darwin-arm64-npm-4.13.0-31260831e3-10.zip b/.yarn/cache/@rollup-rollup-darwin-arm64-npm-4.13.0-31260831e3-10.zip deleted file mode 100644 index 65d3f28529..0000000000 Binary files a/.yarn/cache/@rollup-rollup-darwin-arm64-npm-4.13.0-31260831e3-10.zip and /dev/null differ diff --git a/.yarn/cache/@rollup-rollup-linux-x64-gnu-npm-4.13.0-834923f1a9-10.zip b/.yarn/cache/@rollup-rollup-linux-x64-gnu-npm-4.13.0-834923f1a9-10.zip new file mode 100644 index 0000000000..e71a6fd405 Binary files /dev/null and b/.yarn/cache/@rollup-rollup-linux-x64-gnu-npm-4.13.0-834923f1a9-10.zip differ diff --git a/.yarn/cache/@sentry-cli-darwin-npm-2.30.2-5fe0149778-10.zip b/.yarn/cache/@sentry-cli-darwin-npm-2.30.2-5fe0149778-10.zip deleted file mode 100644 index a0d84c6180..0000000000 Binary files a/.yarn/cache/@sentry-cli-darwin-npm-2.30.2-5fe0149778-10.zip and /dev/null differ diff --git a/.yarn/cache/@sentry-cli-linux-x64-npm-2.30.2-d10723557a-10.zip b/.yarn/cache/@sentry-cli-linux-x64-npm-2.30.2-d10723557a-10.zip new file mode 100644 index 0000000000..03ef962c1f Binary files /dev/null and b/.yarn/cache/@sentry-cli-linux-x64-npm-2.30.2-d10723557a-10.zip differ diff --git a/.yarn/cache/@swc-core-darwin-arm64-npm-1.4.8-6193726d0f-10.zip b/.yarn/cache/@swc-core-linux-x64-gnu-npm-1.4.8-3a20ef526a-10.zip similarity index 57% rename from .yarn/cache/@swc-core-darwin-arm64-npm-1.4.8-6193726d0f-10.zip rename to .yarn/cache/@swc-core-linux-x64-gnu-npm-1.4.8-3a20ef526a-10.zip index 40b3676717..77269ea9df 100644 Binary files a/.yarn/cache/@swc-core-darwin-arm64-npm-1.4.8-6193726d0f-10.zip and b/.yarn/cache/@swc-core-linux-x64-gnu-npm-1.4.8-3a20ef526a-10.zip differ diff --git a/.yarn/cache/fsevents-patch-19706e7e35-10.zip b/.yarn/cache/fsevents-patch-19706e7e35-10.zip deleted file mode 100644 index aff1ab12ce..0000000000 Binary files a/.yarn/cache/fsevents-patch-19706e7e35-10.zip and /dev/null differ diff --git a/.yarn/cache/fsevents-patch-6b67494872-10.zip b/.yarn/cache/fsevents-patch-6b67494872-10.zip deleted file mode 100644 index 9887ada72d..0000000000 Binary files a/.yarn/cache/fsevents-patch-6b67494872-10.zip and /dev/null differ diff --git a/packages/foundations-ts-definitions/types/platform-schema.ts b/packages/foundations-ts-definitions/types/platform-schema.ts index 06e5fc296a..490aea39bc 100644 --- a/packages/foundations-ts-definitions/types/platform-schema.ts +++ b/packages/foundations-ts-definitions/types/platform-schema.ts @@ -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 */ @@ -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 */