@justins-home/types 1.1.69 → 1.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/api-types.ts +1462 -582
- package/package.json +1 -1
package/generated/api-types.ts
CHANGED
|
@@ -3260,10 +3260,10 @@ export interface paths {
|
|
|
3260
3260
|
get?: never;
|
|
3261
3261
|
put?: never;
|
|
3262
3262
|
/**
|
|
3263
|
-
*
|
|
3263
|
+
* confirmAppointment
|
|
3264
3264
|
* @description cancel an appointment proposal for a listing.
|
|
3265
3265
|
*/
|
|
3266
|
-
post: operations["
|
|
3266
|
+
post: operations["confirmAppointment"];
|
|
3267
3267
|
delete?: never;
|
|
3268
3268
|
options?: never;
|
|
3269
3269
|
head?: never;
|
|
@@ -3283,10 +3283,10 @@ export interface paths {
|
|
|
3283
3283
|
get?: never;
|
|
3284
3284
|
put?: never;
|
|
3285
3285
|
/**
|
|
3286
|
-
*
|
|
3286
|
+
* cancelAppointment
|
|
3287
3287
|
* @description Confirms an appointment proposal for a listing.
|
|
3288
3288
|
*/
|
|
3289
|
-
post: operations["
|
|
3289
|
+
post: operations["cancelAppointment"];
|
|
3290
3290
|
delete?: never;
|
|
3291
3291
|
options?: never;
|
|
3292
3292
|
head?: never;
|
|
@@ -3711,6 +3711,29 @@ export interface paths {
|
|
|
3711
3711
|
patch?: never;
|
|
3712
3712
|
trace?: never;
|
|
3713
3713
|
};
|
|
3714
|
+
"/api/v1/public/inspection/fetch-one/{uid}": {
|
|
3715
|
+
parameters: {
|
|
3716
|
+
query?: never;
|
|
3717
|
+
header?: never;
|
|
3718
|
+
path: {
|
|
3719
|
+
/** @description The unique UID of the inspection. */
|
|
3720
|
+
uid: string;
|
|
3721
|
+
};
|
|
3722
|
+
cookie?: never;
|
|
3723
|
+
};
|
|
3724
|
+
/**
|
|
3725
|
+
* fetchInspection
|
|
3726
|
+
* @description Fetch a single inspection by UID.
|
|
3727
|
+
*/
|
|
3728
|
+
get: operations["fetchInspection"];
|
|
3729
|
+
put?: never;
|
|
3730
|
+
post?: never;
|
|
3731
|
+
delete?: never;
|
|
3732
|
+
options?: never;
|
|
3733
|
+
head?: never;
|
|
3734
|
+
patch?: never;
|
|
3735
|
+
trace?: never;
|
|
3736
|
+
};
|
|
3714
3737
|
"/api/v1/public/inspection/listing/{listing_uid}": {
|
|
3715
3738
|
parameters: {
|
|
3716
3739
|
query?: never;
|
|
@@ -3967,6 +3990,26 @@ export interface paths {
|
|
|
3967
3990
|
patch?: never;
|
|
3968
3991
|
trace?: never;
|
|
3969
3992
|
};
|
|
3993
|
+
"/api/v1/portal/landlord/reviews/fetch-all": {
|
|
3994
|
+
parameters: {
|
|
3995
|
+
query?: never;
|
|
3996
|
+
header?: never;
|
|
3997
|
+
path?: never;
|
|
3998
|
+
cookie?: never;
|
|
3999
|
+
};
|
|
4000
|
+
/**
|
|
4001
|
+
* fetchLandlordListingReviews
|
|
4002
|
+
* @description Retrieve reviews for listings owned by the authenticated landlord.
|
|
4003
|
+
*/
|
|
4004
|
+
get: operations["fetchLandlordListingReviews"];
|
|
4005
|
+
put?: never;
|
|
4006
|
+
post?: never;
|
|
4007
|
+
delete?: never;
|
|
4008
|
+
options?: never;
|
|
4009
|
+
head?: never;
|
|
4010
|
+
patch?: never;
|
|
4011
|
+
trace?: never;
|
|
4012
|
+
};
|
|
3970
4013
|
"/api/v1/portal/landlord/listing": {
|
|
3971
4014
|
parameters: {
|
|
3972
4015
|
query?: never;
|
|
@@ -4776,6 +4819,29 @@ export interface paths {
|
|
|
4776
4819
|
patch?: never;
|
|
4777
4820
|
trace?: never;
|
|
4778
4821
|
};
|
|
4822
|
+
"/api/v1/public/maintenance/fetch-one/{uid}": {
|
|
4823
|
+
parameters: {
|
|
4824
|
+
query?: never;
|
|
4825
|
+
header?: never;
|
|
4826
|
+
path: {
|
|
4827
|
+
/** @description The UID of the maintenance request. */
|
|
4828
|
+
uid: string;
|
|
4829
|
+
};
|
|
4830
|
+
cookie?: never;
|
|
4831
|
+
};
|
|
4832
|
+
/**
|
|
4833
|
+
* fetchMaintenanceRequest
|
|
4834
|
+
* @description Fetch a single maintenance request by UID.
|
|
4835
|
+
*/
|
|
4836
|
+
get: operations["fetchMaintenanceRequest"];
|
|
4837
|
+
put?: never;
|
|
4838
|
+
post?: never;
|
|
4839
|
+
delete?: never;
|
|
4840
|
+
options?: never;
|
|
4841
|
+
head?: never;
|
|
4842
|
+
patch?: never;
|
|
4843
|
+
trace?: never;
|
|
4844
|
+
};
|
|
4779
4845
|
"/api/v1/public/maintenance/report": {
|
|
4780
4846
|
parameters: {
|
|
4781
4847
|
query?: never;
|
|
@@ -5197,6 +5263,49 @@ export interface paths {
|
|
|
5197
5263
|
patch?: never;
|
|
5198
5264
|
trace?: never;
|
|
5199
5265
|
};
|
|
5266
|
+
"/api/v1/public/review/fetch-one/{review_id}": {
|
|
5267
|
+
parameters: {
|
|
5268
|
+
query?: never;
|
|
5269
|
+
header?: never;
|
|
5270
|
+
path: {
|
|
5271
|
+
/** @description The ID of the review. */
|
|
5272
|
+
review_id: number;
|
|
5273
|
+
};
|
|
5274
|
+
cookie?: never;
|
|
5275
|
+
};
|
|
5276
|
+
/**
|
|
5277
|
+
* fetchOneReview
|
|
5278
|
+
* @description Retrieve a single visible review by its ID.
|
|
5279
|
+
*/
|
|
5280
|
+
get: operations["fetchOneReview"];
|
|
5281
|
+
put?: never;
|
|
5282
|
+
post?: never;
|
|
5283
|
+
delete?: never;
|
|
5284
|
+
options?: never;
|
|
5285
|
+
head?: never;
|
|
5286
|
+
patch?: never;
|
|
5287
|
+
trace?: never;
|
|
5288
|
+
};
|
|
5289
|
+
"/api/v1/public/review/fetch-all-by-reviewable": {
|
|
5290
|
+
parameters: {
|
|
5291
|
+
query?: never;
|
|
5292
|
+
header?: never;
|
|
5293
|
+
path?: never;
|
|
5294
|
+
cookie?: never;
|
|
5295
|
+
};
|
|
5296
|
+
/**
|
|
5297
|
+
* fetchAllReviewForReviewable
|
|
5298
|
+
* @description Retrieve all reviews for a specific reviewable entity.
|
|
5299
|
+
*/
|
|
5300
|
+
get: operations["fetchAllReviewForReviewable"];
|
|
5301
|
+
put?: never;
|
|
5302
|
+
post?: never;
|
|
5303
|
+
delete?: never;
|
|
5304
|
+
options?: never;
|
|
5305
|
+
head?: never;
|
|
5306
|
+
patch?: never;
|
|
5307
|
+
trace?: never;
|
|
5308
|
+
};
|
|
5200
5309
|
"/api/v1/public/review/summary": {
|
|
5201
5310
|
parameters: {
|
|
5202
5311
|
query?: never;
|
|
@@ -5337,7 +5446,7 @@ export interface paths {
|
|
|
5337
5446
|
put?: never;
|
|
5338
5447
|
/**
|
|
5339
5448
|
* createTenancy
|
|
5340
|
-
* @description Create a new tenancy.
|
|
5449
|
+
* @description Create a new tenancy from listing and tenant UIDs.
|
|
5341
5450
|
*/
|
|
5342
5451
|
post: operations["createTenancy"];
|
|
5343
5452
|
delete?: never;
|
|
@@ -5397,7 +5506,7 @@ export interface paths {
|
|
|
5397
5506
|
query?: never;
|
|
5398
5507
|
header?: never;
|
|
5399
5508
|
path: {
|
|
5400
|
-
/** @description
|
|
5509
|
+
/** @description The ID of the tenancy to renew. */
|
|
5401
5510
|
tenancy_uid: string;
|
|
5402
5511
|
};
|
|
5403
5512
|
cookie?: never;
|
|
@@ -5423,8 +5532,8 @@ export interface paths {
|
|
|
5423
5532
|
query?: never;
|
|
5424
5533
|
header?: never;
|
|
5425
5534
|
path: {
|
|
5426
|
-
/** @description The
|
|
5427
|
-
tenancy_uid:
|
|
5535
|
+
/** @description The UID of the tenancy to convert. */
|
|
5536
|
+
tenancy_uid: string;
|
|
5428
5537
|
};
|
|
5429
5538
|
cookie?: never;
|
|
5430
5539
|
};
|
|
@@ -6099,15 +6208,15 @@ export interface operations {
|
|
|
6099
6208
|
content: {
|
|
6100
6209
|
"application/json": {
|
|
6101
6210
|
data?: {
|
|
6102
|
-
/** @example
|
|
6211
|
+
/** @example 201c5697-7310-443b-8973-66180760fad0 */
|
|
6103
6212
|
uid?: string;
|
|
6104
|
-
/** @example
|
|
6213
|
+
/** @example Emily Reid */
|
|
6105
6214
|
username?: string;
|
|
6106
6215
|
/** @example null */
|
|
6107
6216
|
first_name?: string | null;
|
|
6108
6217
|
/** @example null */
|
|
6109
6218
|
last_name?: string | null;
|
|
6110
|
-
/** @example
|
|
6219
|
+
/** @example leo42@example.com */
|
|
6111
6220
|
email?: string;
|
|
6112
6221
|
/** @example null */
|
|
6113
6222
|
phone?: string | null;
|
|
@@ -6129,7 +6238,7 @@ export interface operations {
|
|
|
6129
6238
|
timezone?: string;
|
|
6130
6239
|
/** @example Customer */
|
|
6131
6240
|
user_type?: string;
|
|
6132
|
-
/** @example
|
|
6241
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
6133
6242
|
created?: string;
|
|
6134
6243
|
/** @example 0 seconds ago */
|
|
6135
6244
|
email_verified_at?: string;
|
|
@@ -6222,24 +6331,18 @@ export interface operations {
|
|
|
6222
6331
|
reservedBookingsAdmin: {
|
|
6223
6332
|
parameters: {
|
|
6224
6333
|
query?: {
|
|
6334
|
+
/** @description Filter bookings by tenant/guest name. Must not be greater than 255 characters. */
|
|
6335
|
+
tenant_name?: string | null;
|
|
6225
6336
|
/** @description Number of bookings per page. */
|
|
6226
|
-
per_page?: number;
|
|
6337
|
+
per_page?: number | null;
|
|
6338
|
+
/** @description Current page number. Must be at least 1. */
|
|
6339
|
+
page?: number | null;
|
|
6227
6340
|
};
|
|
6228
6341
|
header?: never;
|
|
6229
6342
|
path?: never;
|
|
6230
6343
|
cookie?: never;
|
|
6231
6344
|
};
|
|
6232
|
-
requestBody?:
|
|
6233
|
-
content: {
|
|
6234
|
-
"application/json": {
|
|
6235
|
-
/**
|
|
6236
|
-
* @description Must be at least 1. Must not be greater than 100.
|
|
6237
|
-
* @example 1
|
|
6238
|
-
*/
|
|
6239
|
-
per_page?: number | null;
|
|
6240
|
-
};
|
|
6241
|
-
};
|
|
6242
|
-
};
|
|
6345
|
+
requestBody?: never;
|
|
6243
6346
|
responses: {
|
|
6244
6347
|
/** @description Retrieve all reserved bookings for admin oversight */
|
|
6245
6348
|
200: {
|
|
@@ -6770,12 +6873,12 @@ export interface operations {
|
|
|
6770
6873
|
*/
|
|
6771
6874
|
search?: string | null;
|
|
6772
6875
|
/**
|
|
6773
|
-
* @example
|
|
6876
|
+
* @example pending
|
|
6774
6877
|
* @enum {string|null}
|
|
6775
6878
|
*/
|
|
6776
6879
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
6777
6880
|
/**
|
|
6778
|
-
* @example
|
|
6881
|
+
* @example admin
|
|
6779
6882
|
* @enum {string|null}
|
|
6780
6883
|
*/
|
|
6781
6884
|
source?: "tenant" | "landlord" | "admin" | null;
|
|
@@ -7009,7 +7112,7 @@ export interface operations {
|
|
|
7009
7112
|
content: {
|
|
7010
7113
|
"application/json": {
|
|
7011
7114
|
data?: {
|
|
7012
|
-
/** @example
|
|
7115
|
+
/** @example fde8a17a-7b5d-4616-8273-6c7a4be4341c */
|
|
7013
7116
|
uid?: string;
|
|
7014
7117
|
/** @example JH-APP-2026-589365 */
|
|
7015
7118
|
application_ref?: string;
|
|
@@ -7030,7 +7133,7 @@ export interface operations {
|
|
|
7030
7133
|
/** @example null */
|
|
7031
7134
|
rejection_reason?: string | null;
|
|
7032
7135
|
timeline?: {
|
|
7033
|
-
/** @example
|
|
7136
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
7034
7137
|
created_at?: string;
|
|
7035
7138
|
/** @example null */
|
|
7036
7139
|
approved_at?: string | null;
|
|
@@ -7064,7 +7167,7 @@ export interface operations {
|
|
|
7064
7167
|
content: {
|
|
7065
7168
|
"application/json": {
|
|
7066
7169
|
data?: {
|
|
7067
|
-
/** @example
|
|
7170
|
+
/** @example fcdfd191-5e08-41c7-9a38-42d3b6590d9d */
|
|
7068
7171
|
uid?: string;
|
|
7069
7172
|
/** @example JH-APP-2026-933724 */
|
|
7070
7173
|
application_ref?: string;
|
|
@@ -7085,7 +7188,7 @@ export interface operations {
|
|
|
7085
7188
|
/** @example null */
|
|
7086
7189
|
rejection_reason?: string | null;
|
|
7087
7190
|
timeline?: {
|
|
7088
|
-
/** @example
|
|
7191
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
7089
7192
|
created_at?: string;
|
|
7090
7193
|
/** @example null */
|
|
7091
7194
|
approved_at?: string | null;
|
|
@@ -7119,7 +7222,7 @@ export interface operations {
|
|
|
7119
7222
|
content: {
|
|
7120
7223
|
"application/json": {
|
|
7121
7224
|
data?: {
|
|
7122
|
-
/** @example
|
|
7225
|
+
/** @example 79fc9359-4f1d-4b87-9951-e590b1951eba */
|
|
7123
7226
|
uid?: string;
|
|
7124
7227
|
/** @example JH-APP-2026-450949 */
|
|
7125
7228
|
application_ref?: string;
|
|
@@ -7140,7 +7243,7 @@ export interface operations {
|
|
|
7140
7243
|
/** @example null */
|
|
7141
7244
|
rejection_reason?: string | null;
|
|
7142
7245
|
timeline?: {
|
|
7143
|
-
/** @example
|
|
7246
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
7144
7247
|
created_at?: string;
|
|
7145
7248
|
/** @example null */
|
|
7146
7249
|
approved_at?: string | null;
|
|
@@ -7184,7 +7287,7 @@ export interface operations {
|
|
|
7184
7287
|
content: {
|
|
7185
7288
|
"application/json": {
|
|
7186
7289
|
data?: {
|
|
7187
|
-
/** @example
|
|
7290
|
+
/** @example 61e3e33c-eadc-4621-9682-896f0fb3136d */
|
|
7188
7291
|
uid?: string;
|
|
7189
7292
|
/** @example JH-APP-2026-026316 */
|
|
7190
7293
|
application_ref?: string;
|
|
@@ -7205,7 +7308,7 @@ export interface operations {
|
|
|
7205
7308
|
/** @example null */
|
|
7206
7309
|
rejection_reason?: string | null;
|
|
7207
7310
|
timeline?: {
|
|
7208
|
-
/** @example
|
|
7311
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
7209
7312
|
created_at?: string;
|
|
7210
7313
|
/** @example null */
|
|
7211
7314
|
approved_at?: string | null;
|
|
@@ -7249,7 +7352,7 @@ export interface operations {
|
|
|
7249
7352
|
content: {
|
|
7250
7353
|
"application/json": {
|
|
7251
7354
|
data?: {
|
|
7252
|
-
/** @example
|
|
7355
|
+
/** @example 2ad2d18e-3e8a-4463-8899-57933bee2a88 */
|
|
7253
7356
|
uid?: string;
|
|
7254
7357
|
/** @example JH-APP-2026-000564 */
|
|
7255
7358
|
application_ref?: string;
|
|
@@ -7270,7 +7373,7 @@ export interface operations {
|
|
|
7270
7373
|
/** @example null */
|
|
7271
7374
|
rejection_reason?: string | null;
|
|
7272
7375
|
timeline?: {
|
|
7273
|
-
/** @example
|
|
7376
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
7274
7377
|
created_at?: string;
|
|
7275
7378
|
/** @example null */
|
|
7276
7379
|
approved_at?: string | null;
|
|
@@ -7304,7 +7407,7 @@ export interface operations {
|
|
|
7304
7407
|
content: {
|
|
7305
7408
|
"application/json": {
|
|
7306
7409
|
data?: {
|
|
7307
|
-
/** @example
|
|
7410
|
+
/** @example 4124196c-02cc-46ec-96f0-4526df7e2984 */
|
|
7308
7411
|
uid?: string;
|
|
7309
7412
|
/** @example 4881.50 */
|
|
7310
7413
|
rent_amount?: string;
|
|
@@ -7312,9 +7415,9 @@ export interface operations {
|
|
|
7312
7415
|
deposit_amount?: string;
|
|
7313
7416
|
/** @example offer_accepted */
|
|
7314
7417
|
state?: string;
|
|
7315
|
-
/** @example 2025-08-
|
|
7418
|
+
/** @example 2025-08-29T00:00:00.000000Z */
|
|
7316
7419
|
start_date?: string;
|
|
7317
|
-
/** @example 2026-08-
|
|
7420
|
+
/** @example 2026-08-29T00:00:00.000000Z */
|
|
7318
7421
|
end_date?: string;
|
|
7319
7422
|
/** @example false */
|
|
7320
7423
|
is_periodic?: boolean;
|
|
@@ -7322,7 +7425,7 @@ export interface operations {
|
|
|
7322
7425
|
company_name?: string | null;
|
|
7323
7426
|
/** @example null */
|
|
7324
7427
|
company_registration_number?: string | null;
|
|
7325
|
-
/** @example 2026-05-
|
|
7428
|
+
/** @example 2026-05-06T12:40:03.000000Z */
|
|
7326
7429
|
created_at?: string;
|
|
7327
7430
|
};
|
|
7328
7431
|
};
|
|
@@ -7768,15 +7871,15 @@ export interface operations {
|
|
|
7768
7871
|
content: {
|
|
7769
7872
|
"application/json": {
|
|
7770
7873
|
data?: {
|
|
7771
|
-
/** @example
|
|
7874
|
+
/** @example 94ba1861-71cf-4919-bfb3-1158f40ca013 */
|
|
7772
7875
|
uid?: string;
|
|
7773
|
-
/** @example
|
|
7876
|
+
/** @example Emily Reid */
|
|
7774
7877
|
username?: string;
|
|
7775
7878
|
/** @example null */
|
|
7776
7879
|
first_name?: string | null;
|
|
7777
7880
|
/** @example null */
|
|
7778
7881
|
last_name?: string | null;
|
|
7779
|
-
/** @example
|
|
7882
|
+
/** @example robinson.jim@example.com */
|
|
7780
7883
|
email?: string;
|
|
7781
7884
|
/** @example null */
|
|
7782
7885
|
phone?: string | null;
|
|
@@ -7798,7 +7901,7 @@ export interface operations {
|
|
|
7798
7901
|
timezone?: string;
|
|
7799
7902
|
/** @example Customer */
|
|
7800
7903
|
user_type?: string;
|
|
7801
|
-
/** @example
|
|
7904
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
7802
7905
|
created?: string;
|
|
7803
7906
|
/** @example 0 seconds ago */
|
|
7804
7907
|
email_verified_at?: string;
|
|
@@ -8188,11 +8291,11 @@ export interface operations {
|
|
|
8188
8291
|
content: {
|
|
8189
8292
|
"application/json": {
|
|
8190
8293
|
data?: {
|
|
8191
|
-
/** @example New For Rent Property draft •
|
|
8294
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
8192
8295
|
draft_name?: string;
|
|
8193
|
-
/** @example LST-PRP-LTR-
|
|
8296
|
+
/** @example LST-PRP-LTR-MOU1OPH1QRX */
|
|
8194
8297
|
sku?: string;
|
|
8195
|
-
/** @example
|
|
8298
|
+
/** @example 8ce952a5-be6b-4cc5-b35f-49b3695ec15f */
|
|
8196
8299
|
uid?: string;
|
|
8197
8300
|
/** @example Rent */
|
|
8198
8301
|
listing_type?: string;
|
|
@@ -9604,7 +9707,7 @@ export interface operations {
|
|
|
9604
9707
|
content: {
|
|
9605
9708
|
"application/json": {
|
|
9606
9709
|
/**
|
|
9607
|
-
* @example
|
|
9710
|
+
* @example Dormant
|
|
9608
9711
|
* @enum {string}
|
|
9609
9712
|
*/
|
|
9610
9713
|
status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
|
|
@@ -9619,15 +9722,15 @@ export interface operations {
|
|
|
9619
9722
|
content: {
|
|
9620
9723
|
"application/json": {
|
|
9621
9724
|
data?: {
|
|
9622
|
-
/** @example
|
|
9725
|
+
/** @example 4fcdb7ad-11e7-47d6-b533-d2eee7784157 */
|
|
9623
9726
|
uid?: string;
|
|
9624
|
-
/** @example
|
|
9727
|
+
/** @example Connor Richards */
|
|
9625
9728
|
username?: string;
|
|
9626
9729
|
/** @example null */
|
|
9627
9730
|
first_name?: string | null;
|
|
9628
9731
|
/** @example null */
|
|
9629
9732
|
last_name?: string | null;
|
|
9630
|
-
/** @example
|
|
9733
|
+
/** @example williams.eva@example.com */
|
|
9631
9734
|
email?: string;
|
|
9632
9735
|
/** @example null */
|
|
9633
9736
|
phone?: string | null;
|
|
@@ -9649,7 +9752,7 @@ export interface operations {
|
|
|
9649
9752
|
timezone?: string;
|
|
9650
9753
|
/** @example Customer */
|
|
9651
9754
|
user_type?: string;
|
|
9652
|
-
/** @example
|
|
9755
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
9653
9756
|
created?: string;
|
|
9654
9757
|
/** @example 0 seconds ago */
|
|
9655
9758
|
email_verified_at?: string;
|
|
@@ -10358,11 +10461,11 @@ export interface operations {
|
|
|
10358
10461
|
content: {
|
|
10359
10462
|
"application/json": {
|
|
10360
10463
|
data?: {
|
|
10361
|
-
/** @example New For Rent Property draft •
|
|
10464
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
10362
10465
|
draft_name?: string;
|
|
10363
|
-
/** @example LST-PRP-LTR-
|
|
10466
|
+
/** @example LST-PRP-LTR-MOU1OPJZWJP */
|
|
10364
10467
|
sku?: string;
|
|
10365
|
-
/** @example
|
|
10468
|
+
/** @example 76f72397-5d33-4078-910a-b5e470f733d9 */
|
|
10366
10469
|
uid?: string;
|
|
10367
10470
|
/** @example Rent */
|
|
10368
10471
|
listing_type?: string;
|
|
@@ -10802,7 +10905,7 @@ export interface operations {
|
|
|
10802
10905
|
content: {
|
|
10803
10906
|
"application/json": {
|
|
10804
10907
|
data?: {
|
|
10805
|
-
/** @example
|
|
10908
|
+
/** @example 27bb365b-2f76-4ed8-b9f7-dee495355b20 */
|
|
10806
10909
|
uid?: string;
|
|
10807
10910
|
/** @example photo */
|
|
10808
10911
|
media_type?: string;
|
|
@@ -11109,10 +11212,10 @@ export interface operations {
|
|
|
11109
11212
|
/**
|
|
11110
11213
|
* @example [
|
|
11111
11214
|
* {
|
|
11112
|
-
* "draft_name": "New
|
|
11113
|
-
* "sku": "LST-PRP-
|
|
11114
|
-
* "uid": "
|
|
11115
|
-
* "listing_type": "
|
|
11215
|
+
* "draft_name": "New For Sale Property draft • 6 May 2026, 12:40 PM",
|
|
11216
|
+
* "sku": "LST-PRP-SAL-MOU1OPLIQGQ",
|
|
11217
|
+
* "uid": "306df068-fcc2-4af8-a6cc-926258757787",
|
|
11218
|
+
* "listing_type": "Sale",
|
|
11116
11219
|
* "vertical": "Property",
|
|
11117
11220
|
* "arrangement_type": "short_term_managed",
|
|
11118
11221
|
* "arrangement_type_label": "Short Term Managed",
|
|
@@ -11128,32 +11231,34 @@ export interface operations {
|
|
|
11128
11231
|
* "media": []
|
|
11129
11232
|
* },
|
|
11130
11233
|
* {
|
|
11131
|
-
* "draft_name": "New For Sale
|
|
11132
|
-
* "sku": "LST-
|
|
11133
|
-
* "uid": "
|
|
11234
|
+
* "draft_name": "New For Sale Property draft • 6 May 2026, 12:40 PM",
|
|
11235
|
+
* "sku": "LST-PRP-SAL-MOU1OPLKU9U",
|
|
11236
|
+
* "uid": "121ea428-0ffc-4486-8465-230e353847df",
|
|
11134
11237
|
* "listing_type": "Sale",
|
|
11135
|
-
* "vertical": "
|
|
11136
|
-
* "arrangement_type":
|
|
11137
|
-
* "arrangement_type_label":
|
|
11238
|
+
* "vertical": "Property",
|
|
11239
|
+
* "arrangement_type": "short_term_managed",
|
|
11240
|
+
* "arrangement_type_label": "Short Term Managed",
|
|
11138
11241
|
* "price": null,
|
|
11139
11242
|
* "state": "draft",
|
|
11140
11243
|
* "published_at": null,
|
|
11141
11244
|
* "published_since": null,
|
|
11142
11245
|
* "is_visible": false,
|
|
11143
|
-
* "summary":
|
|
11246
|
+
* "summary": {
|
|
11247
|
+
* "availability": null
|
|
11248
|
+
* },
|
|
11144
11249
|
* "workflow": [],
|
|
11145
11250
|
* "media": []
|
|
11146
11251
|
* }
|
|
11147
11252
|
* ]
|
|
11148
11253
|
*/
|
|
11149
11254
|
data?: {
|
|
11150
|
-
/** @example New
|
|
11255
|
+
/** @example New For Sale Property draft • 6 May 2026, 12:40 PM */
|
|
11151
11256
|
draft_name?: string;
|
|
11152
|
-
/** @example LST-PRP-
|
|
11257
|
+
/** @example LST-PRP-SAL-MOU1OPLIQGQ */
|
|
11153
11258
|
sku?: string;
|
|
11154
|
-
/** @example
|
|
11259
|
+
/** @example 306df068-fcc2-4af8-a6cc-926258757787 */
|
|
11155
11260
|
uid?: string;
|
|
11156
|
-
/** @example
|
|
11261
|
+
/** @example Sale */
|
|
11157
11262
|
listing_type?: string;
|
|
11158
11263
|
/** @example Property */
|
|
11159
11264
|
vertical?: string;
|
|
@@ -11346,11 +11451,11 @@ export interface operations {
|
|
|
11346
11451
|
content: {
|
|
11347
11452
|
"application/json": {
|
|
11348
11453
|
data?: {
|
|
11349
|
-
/** @example New For Rent Property draft •
|
|
11454
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
11350
11455
|
draft_name?: string;
|
|
11351
|
-
/** @example LST-PRP-LTR-
|
|
11456
|
+
/** @example LST-PRP-LTR-MOU1OPLVJJ1 */
|
|
11352
11457
|
sku?: string;
|
|
11353
|
-
/** @example
|
|
11458
|
+
/** @example d03186f4-f714-4bb2-bb24-698f298dca2f */
|
|
11354
11459
|
uid?: string;
|
|
11355
11460
|
/** @example Rent */
|
|
11356
11461
|
listing_type?: string;
|
|
@@ -11413,11 +11518,11 @@ export interface operations {
|
|
|
11413
11518
|
content: {
|
|
11414
11519
|
"application/json": {
|
|
11415
11520
|
data?: {
|
|
11416
|
-
/** @example New For Rent Property draft •
|
|
11521
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
11417
11522
|
draft_name?: string;
|
|
11418
|
-
/** @example LST-PRP-LTR-
|
|
11523
|
+
/** @example LST-PRP-LTR-MOU1OPM1WEL */
|
|
11419
11524
|
sku?: string;
|
|
11420
|
-
/** @example
|
|
11525
|
+
/** @example d5d7d5fa-efb5-4269-8da6-228cf689229e */
|
|
11421
11526
|
uid?: string;
|
|
11422
11527
|
/** @example Rent */
|
|
11423
11528
|
listing_type?: string;
|
|
@@ -11470,11 +11575,11 @@ export interface operations {
|
|
|
11470
11575
|
content: {
|
|
11471
11576
|
"application/json": {
|
|
11472
11577
|
data?: {
|
|
11473
|
-
/** @example New For Rent Property draft •
|
|
11578
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
11474
11579
|
draft_name?: string;
|
|
11475
|
-
/** @example LST-PRP-LTR-
|
|
11580
|
+
/** @example LST-PRP-LTR-MOU1OPM7WMR */
|
|
11476
11581
|
sku?: string;
|
|
11477
|
-
/** @example
|
|
11582
|
+
/** @example 393116ae-f26d-42fa-a4e4-b49393e3e5f2 */
|
|
11478
11583
|
uid?: string;
|
|
11479
11584
|
/** @example Rent */
|
|
11480
11585
|
listing_type?: string;
|
|
@@ -11527,11 +11632,11 @@ export interface operations {
|
|
|
11527
11632
|
content: {
|
|
11528
11633
|
"application/json": {
|
|
11529
11634
|
data?: {
|
|
11530
|
-
/** @example New For Rent Property draft •
|
|
11635
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
11531
11636
|
draft_name?: string;
|
|
11532
|
-
/** @example LST-PRP-LTR-
|
|
11637
|
+
/** @example LST-PRP-LTR-MOU1OPMCPYE */
|
|
11533
11638
|
sku?: string;
|
|
11534
|
-
/** @example
|
|
11639
|
+
/** @example 4db47508-59a6-49e1-a2eb-15d640faf192 */
|
|
11535
11640
|
uid?: string;
|
|
11536
11641
|
/** @example Rent */
|
|
11537
11642
|
listing_type?: string;
|
|
@@ -11725,7 +11830,7 @@ export interface operations {
|
|
|
11725
11830
|
content: {
|
|
11726
11831
|
"application/json": {
|
|
11727
11832
|
data?: {
|
|
11728
|
-
/** @example
|
|
11833
|
+
/** @example 49 */
|
|
11729
11834
|
id?: number;
|
|
11730
11835
|
/** @example 1 */
|
|
11731
11836
|
category_id?: number;
|
|
@@ -11799,7 +11904,7 @@ export interface operations {
|
|
|
11799
11904
|
content: {
|
|
11800
11905
|
"application/json": {
|
|
11801
11906
|
data?: {
|
|
11802
|
-
/** @example
|
|
11907
|
+
/** @example 50 */
|
|
11803
11908
|
id?: number;
|
|
11804
11909
|
/** @example 1 */
|
|
11805
11910
|
category_id?: number;
|
|
@@ -11838,7 +11943,7 @@ export interface operations {
|
|
|
11838
11943
|
content: {
|
|
11839
11944
|
"application/json": {
|
|
11840
11945
|
data?: {
|
|
11841
|
-
/** @example
|
|
11946
|
+
/** @example 51 */
|
|
11842
11947
|
id?: number;
|
|
11843
11948
|
/** @example 1 */
|
|
11844
11949
|
category_id?: number;
|
|
@@ -11876,7 +11981,7 @@ export interface operations {
|
|
|
11876
11981
|
/**
|
|
11877
11982
|
* @example [
|
|
11878
11983
|
* {
|
|
11879
|
-
* "id":
|
|
11984
|
+
* "id": 25,
|
|
11880
11985
|
* "name": "Exterior",
|
|
11881
11986
|
* "description": "For Exterior categories",
|
|
11882
11987
|
* "display_order": 1,
|
|
@@ -11886,7 +11991,7 @@ export interface operations {
|
|
|
11886
11991
|
* "is_active": true
|
|
11887
11992
|
* },
|
|
11888
11993
|
* {
|
|
11889
|
-
* "id":
|
|
11994
|
+
* "id": 26,
|
|
11890
11995
|
* "name": "Exterior",
|
|
11891
11996
|
* "description": "For Exterior categories",
|
|
11892
11997
|
* "display_order": 1,
|
|
@@ -11898,7 +12003,7 @@ export interface operations {
|
|
|
11898
12003
|
* ]
|
|
11899
12004
|
*/
|
|
11900
12005
|
data?: {
|
|
11901
|
-
/** @example
|
|
12006
|
+
/** @example 25 */
|
|
11902
12007
|
id?: number;
|
|
11903
12008
|
/** @example Exterior */
|
|
11904
12009
|
name?: string;
|
|
@@ -11962,7 +12067,7 @@ export interface operations {
|
|
|
11962
12067
|
content: {
|
|
11963
12068
|
"application/json": {
|
|
11964
12069
|
data?: {
|
|
11965
|
-
/** @example
|
|
12070
|
+
/** @example 27 */
|
|
11966
12071
|
id?: number;
|
|
11967
12072
|
/** @example Exterior */
|
|
11968
12073
|
name?: string;
|
|
@@ -12029,7 +12134,7 @@ export interface operations {
|
|
|
12029
12134
|
content: {
|
|
12030
12135
|
"application/json": {
|
|
12031
12136
|
data?: {
|
|
12032
|
-
/** @example
|
|
12137
|
+
/** @example 28 */
|
|
12033
12138
|
id?: number;
|
|
12034
12139
|
/** @example Exterior */
|
|
12035
12140
|
name?: string;
|
|
@@ -12070,7 +12175,7 @@ export interface operations {
|
|
|
12070
12175
|
content: {
|
|
12071
12176
|
"application/json": {
|
|
12072
12177
|
data?: {
|
|
12073
|
-
/** @example
|
|
12178
|
+
/** @example 29 */
|
|
12074
12179
|
id?: number;
|
|
12075
12180
|
/** @example Exterior */
|
|
12076
12181
|
name?: string;
|
|
@@ -12333,13 +12438,13 @@ export interface operations {
|
|
|
12333
12438
|
content: {
|
|
12334
12439
|
"application/json": {
|
|
12335
12440
|
data?: {
|
|
12336
|
-
/** @example
|
|
12441
|
+
/** @example 19 */
|
|
12337
12442
|
id?: number;
|
|
12338
12443
|
/** @example email_fa_0 */
|
|
12339
12444
|
key?: string;
|
|
12340
|
-
/** @example
|
|
12445
|
+
/** @example Andrew Khan */
|
|
12341
12446
|
name?: string;
|
|
12342
|
-
/** @example
|
|
12447
|
+
/** @example Commodi incidunt iure odit et et. */
|
|
12343
12448
|
description?: string;
|
|
12344
12449
|
/** @example true */
|
|
12345
12450
|
requires_review?: boolean;
|
|
@@ -12347,9 +12452,9 @@ export interface operations {
|
|
|
12347
12452
|
metadata_schema?: unknown[];
|
|
12348
12453
|
/** @example true */
|
|
12349
12454
|
is_active?: boolean;
|
|
12350
|
-
/** @example 2026-05-
|
|
12455
|
+
/** @example 2026-05-06T12:40:04.000000Z */
|
|
12351
12456
|
created_at?: string;
|
|
12352
|
-
/** @example 2026-05-
|
|
12457
|
+
/** @example 2026-05-06T12:40:04.000000Z */
|
|
12353
12458
|
updated_at?: string;
|
|
12354
12459
|
};
|
|
12355
12460
|
};
|
|
@@ -12409,13 +12514,13 @@ export interface operations {
|
|
|
12409
12514
|
content: {
|
|
12410
12515
|
"application/json": {
|
|
12411
12516
|
data?: {
|
|
12412
|
-
/** @example
|
|
12517
|
+
/** @example 20 */
|
|
12413
12518
|
id?: number;
|
|
12414
12519
|
/** @example email_fa_0 */
|
|
12415
12520
|
key?: string;
|
|
12416
|
-
/** @example
|
|
12521
|
+
/** @example Andrew Khan */
|
|
12417
12522
|
name?: string;
|
|
12418
|
-
/** @example
|
|
12523
|
+
/** @example Commodi incidunt iure odit et et. */
|
|
12419
12524
|
description?: string;
|
|
12420
12525
|
/** @example true */
|
|
12421
12526
|
requires_review?: boolean;
|
|
@@ -12423,9 +12528,9 @@ export interface operations {
|
|
|
12423
12528
|
metadata_schema?: unknown[];
|
|
12424
12529
|
/** @example true */
|
|
12425
12530
|
is_active?: boolean;
|
|
12426
|
-
/** @example 2026-05-
|
|
12531
|
+
/** @example 2026-05-06T12:40:04.000000Z */
|
|
12427
12532
|
created_at?: string;
|
|
12428
|
-
/** @example 2026-05-
|
|
12533
|
+
/** @example 2026-05-06T12:40:04.000000Z */
|
|
12429
12534
|
updated_at?: string;
|
|
12430
12535
|
};
|
|
12431
12536
|
};
|
|
@@ -13691,25 +13796,25 @@ export interface operations {
|
|
|
13691
13796
|
/**
|
|
13692
13797
|
* @example [
|
|
13693
13798
|
* {
|
|
13694
|
-
* "key": "
|
|
13695
|
-
* "name": "
|
|
13696
|
-
* "description": "
|
|
13799
|
+
* "key": "nostrum",
|
|
13800
|
+
* "name": "facilis",
|
|
13801
|
+
* "description": "Velit aut natus consectetur et est quaerat.",
|
|
13697
13802
|
* "value_type": "string"
|
|
13698
13803
|
* },
|
|
13699
13804
|
* {
|
|
13700
|
-
* "key": "
|
|
13701
|
-
* "name": "
|
|
13702
|
-
* "description": "
|
|
13805
|
+
* "key": "dolor",
|
|
13806
|
+
* "name": "qui",
|
|
13807
|
+
* "description": "Eos rerum earum ullam fugiat incidunt.",
|
|
13703
13808
|
* "value_type": "string"
|
|
13704
13809
|
* }
|
|
13705
13810
|
* ]
|
|
13706
13811
|
*/
|
|
13707
13812
|
data?: {
|
|
13708
|
-
/** @example
|
|
13813
|
+
/** @example nostrum */
|
|
13709
13814
|
key?: string;
|
|
13710
|
-
/** @example
|
|
13815
|
+
/** @example facilis */
|
|
13711
13816
|
name?: string;
|
|
13712
|
-
/** @example
|
|
13817
|
+
/** @example Velit aut natus consectetur et est quaerat. */
|
|
13713
13818
|
description?: string;
|
|
13714
13819
|
/** @example string */
|
|
13715
13820
|
value_type?: string;
|
|
@@ -14951,13 +15056,13 @@ export interface operations {
|
|
|
14951
15056
|
};
|
|
14952
15057
|
} | {
|
|
14953
15058
|
data?: {
|
|
14954
|
-
/** @example
|
|
15059
|
+
/** @example 624d19fc-bf00-4b0c-bd64-03e8ea1e6f34 */
|
|
14955
15060
|
uid?: string;
|
|
14956
15061
|
/** @example follow_up */
|
|
14957
15062
|
inspection_type?: string;
|
|
14958
15063
|
/** @example cancelled */
|
|
14959
15064
|
status?: string;
|
|
14960
|
-
/** @example
|
|
15065
|
+
/** @example 12 May 2026, 02:38 AM */
|
|
14961
15066
|
scheduled_date?: string;
|
|
14962
15067
|
/** @example null */
|
|
14963
15068
|
completed_date?: string | null;
|
|
@@ -14965,11 +15070,11 @@ export interface operations {
|
|
|
14965
15070
|
condition_rating?: string;
|
|
14966
15071
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
14967
15072
|
summary?: string;
|
|
14968
|
-
/** @example
|
|
15073
|
+
/** @example 05 Jul 2026, 11:27 PM */
|
|
14969
15074
|
next_inspection_date?: string;
|
|
14970
|
-
/** @example
|
|
15075
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
14971
15076
|
created_at?: string;
|
|
14972
|
-
/** @example
|
|
15077
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
14973
15078
|
updated_at?: string;
|
|
14974
15079
|
};
|
|
14975
15080
|
};
|
|
@@ -15024,13 +15129,13 @@ export interface operations {
|
|
|
15024
15129
|
content: {
|
|
15025
15130
|
"application/json": {
|
|
15026
15131
|
data?: {
|
|
15027
|
-
/** @example
|
|
15132
|
+
/** @example 14037ee9-946b-4c23-8c19-f2bae1ee401d */
|
|
15028
15133
|
uid?: string;
|
|
15029
15134
|
/** @example follow_up */
|
|
15030
15135
|
inspection_type?: string;
|
|
15031
15136
|
/** @example cancelled */
|
|
15032
15137
|
status?: string;
|
|
15033
|
-
/** @example
|
|
15138
|
+
/** @example 12 May 2026, 02:38 AM */
|
|
15034
15139
|
scheduled_date?: string;
|
|
15035
15140
|
/** @example null */
|
|
15036
15141
|
completed_date?: string | null;
|
|
@@ -15038,11 +15143,11 @@ export interface operations {
|
|
|
15038
15143
|
condition_rating?: string;
|
|
15039
15144
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
15040
15145
|
summary?: string;
|
|
15041
|
-
/** @example
|
|
15146
|
+
/** @example 05 Jul 2026, 11:27 PM */
|
|
15042
15147
|
next_inspection_date?: string;
|
|
15043
|
-
/** @example
|
|
15148
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15044
15149
|
created_at?: string;
|
|
15045
|
-
/** @example
|
|
15150
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15046
15151
|
updated_at?: string;
|
|
15047
15152
|
};
|
|
15048
15153
|
};
|
|
@@ -15084,18 +15189,18 @@ export interface operations {
|
|
|
15084
15189
|
content: {
|
|
15085
15190
|
"application/json": {
|
|
15086
15191
|
data?: {
|
|
15087
|
-
/** @example
|
|
15088
|
-
uid?: string;
|
|
15089
|
-
/** @example
|
|
15090
|
-
file_type?: string;
|
|
15091
|
-
/** @example
|
|
15092
|
-
caption?: string;
|
|
15093
|
-
/** @example
|
|
15094
|
-
storage_path?: string;
|
|
15095
|
-
/** @example
|
|
15096
|
-
url?: string;
|
|
15097
|
-
/** @example
|
|
15098
|
-
created_at?: string;
|
|
15192
|
+
/** @example null */
|
|
15193
|
+
uid?: string | null;
|
|
15194
|
+
/** @example null */
|
|
15195
|
+
file_type?: string | null;
|
|
15196
|
+
/** @example null */
|
|
15197
|
+
caption?: string | null;
|
|
15198
|
+
/** @example null */
|
|
15199
|
+
storage_path?: string | null;
|
|
15200
|
+
/** @example null */
|
|
15201
|
+
url?: string | null;
|
|
15202
|
+
/** @example null */
|
|
15203
|
+
created_at?: string | null;
|
|
15099
15204
|
};
|
|
15100
15205
|
};
|
|
15101
15206
|
};
|
|
@@ -15137,13 +15242,13 @@ export interface operations {
|
|
|
15137
15242
|
content: {
|
|
15138
15243
|
"application/json": {
|
|
15139
15244
|
data?: {
|
|
15140
|
-
/** @example
|
|
15245
|
+
/** @example 9552c926-7357-4908-903d-8440ea726b32 */
|
|
15141
15246
|
uid?: string;
|
|
15142
15247
|
/** @example follow_up */
|
|
15143
15248
|
inspection_type?: string;
|
|
15144
15249
|
/** @example cancelled */
|
|
15145
15250
|
status?: string;
|
|
15146
|
-
/** @example
|
|
15251
|
+
/** @example 30 Apr 2026, 12:04 AM */
|
|
15147
15252
|
scheduled_date?: string;
|
|
15148
15253
|
/** @example null */
|
|
15149
15254
|
completed_date?: string | null;
|
|
@@ -15151,11 +15256,11 @@ export interface operations {
|
|
|
15151
15256
|
condition_rating?: string;
|
|
15152
15257
|
/** @example Et animi quos velit et fugiat. */
|
|
15153
15258
|
summary?: string;
|
|
15154
|
-
/** @example
|
|
15259
|
+
/** @example 09 Aug 2026, 07:58 AM */
|
|
15155
15260
|
next_inspection_date?: string;
|
|
15156
|
-
/** @example
|
|
15261
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15157
15262
|
created_at?: string;
|
|
15158
|
-
/** @example
|
|
15263
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15159
15264
|
updated_at?: string;
|
|
15160
15265
|
};
|
|
15161
15266
|
};
|
|
@@ -15192,13 +15297,13 @@ export interface operations {
|
|
|
15192
15297
|
content: {
|
|
15193
15298
|
"application/json": {
|
|
15194
15299
|
data?: {
|
|
15195
|
-
/** @example
|
|
15300
|
+
/** @example 15d62cb7-113c-4202-a8b0-26467c836d65 */
|
|
15196
15301
|
uid?: string;
|
|
15197
15302
|
/** @example follow_up */
|
|
15198
15303
|
inspection_type?: string;
|
|
15199
15304
|
/** @example cancelled */
|
|
15200
15305
|
status?: string;
|
|
15201
|
-
/** @example
|
|
15306
|
+
/** @example 12 May 2026, 02:38 AM */
|
|
15202
15307
|
scheduled_date?: string;
|
|
15203
15308
|
/** @example null */
|
|
15204
15309
|
completed_date?: string | null;
|
|
@@ -15206,11 +15311,11 @@ export interface operations {
|
|
|
15206
15311
|
condition_rating?: string;
|
|
15207
15312
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
15208
15313
|
summary?: string;
|
|
15209
|
-
/** @example
|
|
15314
|
+
/** @example 05 Jul 2026, 11:27 PM */
|
|
15210
15315
|
next_inspection_date?: string;
|
|
15211
|
-
/** @example
|
|
15316
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15212
15317
|
created_at?: string;
|
|
15213
|
-
/** @example
|
|
15318
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15214
15319
|
updated_at?: string;
|
|
15215
15320
|
};
|
|
15216
15321
|
};
|
|
@@ -15247,13 +15352,13 @@ export interface operations {
|
|
|
15247
15352
|
content: {
|
|
15248
15353
|
"application/json": {
|
|
15249
15354
|
data?: {
|
|
15250
|
-
/** @example
|
|
15355
|
+
/** @example a982e697-82bc-452a-9d53-9940816c415f */
|
|
15251
15356
|
uid?: string;
|
|
15252
15357
|
/** @example follow_up */
|
|
15253
15358
|
inspection_type?: string;
|
|
15254
15359
|
/** @example cancelled */
|
|
15255
15360
|
status?: string;
|
|
15256
|
-
/** @example
|
|
15361
|
+
/** @example 30 Apr 2026, 12:04 AM */
|
|
15257
15362
|
scheduled_date?: string;
|
|
15258
15363
|
/** @example null */
|
|
15259
15364
|
completed_date?: string | null;
|
|
@@ -15261,11 +15366,11 @@ export interface operations {
|
|
|
15261
15366
|
condition_rating?: string;
|
|
15262
15367
|
/** @example Et animi quos velit et fugiat. */
|
|
15263
15368
|
summary?: string;
|
|
15264
|
-
/** @example
|
|
15369
|
+
/** @example 09 Aug 2026, 07:58 AM */
|
|
15265
15370
|
next_inspection_date?: string;
|
|
15266
|
-
/** @example
|
|
15371
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15267
15372
|
created_at?: string;
|
|
15268
|
-
/** @example
|
|
15373
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15269
15374
|
updated_at?: string;
|
|
15270
15375
|
};
|
|
15271
15376
|
};
|
|
@@ -15392,29 +15497,29 @@ export interface operations {
|
|
|
15392
15497
|
};
|
|
15393
15498
|
} | {
|
|
15394
15499
|
data?: {
|
|
15395
|
-
/** @example
|
|
15500
|
+
/** @example d6640ece-8797-482a-bc50-df2b31cd116c */
|
|
15396
15501
|
uid?: string;
|
|
15397
15502
|
/** @example 1 */
|
|
15398
15503
|
tenancy_id?: number;
|
|
15399
|
-
/** @example
|
|
15504
|
+
/** @example Consequatur voluptatibus quis et. */
|
|
15400
15505
|
title?: string;
|
|
15401
|
-
/** @example
|
|
15506
|
+
/** @example Fugiat atque eveniet iure dolor perferendis est. Optio delectus qui consectetur cumque. Nisi molestiae sequi sed aut iusto. */
|
|
15402
15507
|
description?: string;
|
|
15403
|
-
/** @example
|
|
15508
|
+
/** @example reported */
|
|
15404
15509
|
status?: string;
|
|
15405
15510
|
/** @example low */
|
|
15406
15511
|
priority?: string;
|
|
15407
|
-
/** @example
|
|
15512
|
+
/** @example 03 May 2026, 08:45 PM */
|
|
15408
15513
|
reported_at?: string;
|
|
15409
|
-
/** @example
|
|
15410
|
-
assigned_at?: string
|
|
15514
|
+
/** @example 03 May 2026, 08:57 PM */
|
|
15515
|
+
assigned_at?: string;
|
|
15411
15516
|
/** @example null */
|
|
15412
15517
|
completed_at?: string | null;
|
|
15413
|
-
/** @example
|
|
15518
|
+
/** @example 06 May 2026, 03:15 PM */
|
|
15414
15519
|
sla_deadline?: string;
|
|
15415
|
-
/** @example
|
|
15520
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15416
15521
|
created_at?: string;
|
|
15417
|
-
/** @example
|
|
15522
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15418
15523
|
updated_at?: string;
|
|
15419
15524
|
};
|
|
15420
15525
|
};
|
|
@@ -15451,7 +15556,7 @@ export interface operations {
|
|
|
15451
15556
|
content: {
|
|
15452
15557
|
"application/json": {
|
|
15453
15558
|
data?: {
|
|
15454
|
-
/** @example
|
|
15559
|
+
/** @example 771d14be-7658-4f6f-9965-cadeeb18dd0f */
|
|
15455
15560
|
uid?: string;
|
|
15456
15561
|
/** @example 1 */
|
|
15457
15562
|
tenancy_id?: number;
|
|
@@ -15463,17 +15568,17 @@ export interface operations {
|
|
|
15463
15568
|
status?: string;
|
|
15464
15569
|
/** @example low */
|
|
15465
15570
|
priority?: string;
|
|
15466
|
-
/** @example
|
|
15571
|
+
/** @example 05 May 2026, 02:08 AM */
|
|
15467
15572
|
reported_at?: string;
|
|
15468
15573
|
/** @example null */
|
|
15469
15574
|
assigned_at?: string | null;
|
|
15470
15575
|
/** @example null */
|
|
15471
15576
|
completed_at?: string | null;
|
|
15472
|
-
/** @example
|
|
15577
|
+
/** @example 07 May 2026, 10:33 PM */
|
|
15473
15578
|
sla_deadline?: string;
|
|
15474
|
-
/** @example
|
|
15579
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15475
15580
|
created_at?: string;
|
|
15476
|
-
/** @example
|
|
15581
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15477
15582
|
updated_at?: string;
|
|
15478
15583
|
};
|
|
15479
15584
|
};
|
|
@@ -15510,7 +15615,7 @@ export interface operations {
|
|
|
15510
15615
|
content: {
|
|
15511
15616
|
"application/json": {
|
|
15512
15617
|
data?: {
|
|
15513
|
-
/** @example
|
|
15618
|
+
/** @example d6c6ec0a-a2c6-473d-bebb-f89260573824 */
|
|
15514
15619
|
uid?: string;
|
|
15515
15620
|
/** @example 1 */
|
|
15516
15621
|
tenancy_id?: number;
|
|
@@ -15522,17 +15627,17 @@ export interface operations {
|
|
|
15522
15627
|
status?: string;
|
|
15523
15628
|
/** @example emergency */
|
|
15524
15629
|
priority?: string;
|
|
15525
|
-
/** @example
|
|
15630
|
+
/** @example 29 Apr 2026, 11:53 PM */
|
|
15526
15631
|
reported_at?: string;
|
|
15527
|
-
/** @example
|
|
15632
|
+
/** @example 04 May 2026, 08:13 PM */
|
|
15528
15633
|
assigned_at?: string;
|
|
15529
15634
|
/** @example null */
|
|
15530
15635
|
completed_at?: string | null;
|
|
15531
|
-
/** @example
|
|
15636
|
+
/** @example 08 May 2026, 01:35 AM */
|
|
15532
15637
|
sla_deadline?: string;
|
|
15533
|
-
/** @example
|
|
15638
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15534
15639
|
created_at?: string;
|
|
15535
|
-
/** @example
|
|
15640
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15536
15641
|
updated_at?: string;
|
|
15537
15642
|
};
|
|
15538
15643
|
};
|
|
@@ -15569,7 +15674,7 @@ export interface operations {
|
|
|
15569
15674
|
content: {
|
|
15570
15675
|
"application/json": {
|
|
15571
15676
|
data?: {
|
|
15572
|
-
/** @example
|
|
15677
|
+
/** @example 3d72092b-14d9-46fb-9d2d-fa767a102fce */
|
|
15573
15678
|
uid?: string;
|
|
15574
15679
|
/** @example 1 */
|
|
15575
15680
|
tenancy_id?: number;
|
|
@@ -15581,17 +15686,17 @@ export interface operations {
|
|
|
15581
15686
|
status?: string;
|
|
15582
15687
|
/** @example emergency */
|
|
15583
15688
|
priority?: string;
|
|
15584
|
-
/** @example
|
|
15689
|
+
/** @example 29 Apr 2026, 11:53 PM */
|
|
15585
15690
|
reported_at?: string;
|
|
15586
|
-
/** @example
|
|
15691
|
+
/** @example 04 May 2026, 08:13 PM */
|
|
15587
15692
|
assigned_at?: string;
|
|
15588
15693
|
/** @example null */
|
|
15589
15694
|
completed_at?: string | null;
|
|
15590
|
-
/** @example
|
|
15695
|
+
/** @example 08 May 2026, 01:35 AM */
|
|
15591
15696
|
sla_deadline?: string;
|
|
15592
|
-
/** @example
|
|
15697
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15593
15698
|
created_at?: string;
|
|
15594
|
-
/** @example
|
|
15699
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15595
15700
|
updated_at?: string;
|
|
15596
15701
|
};
|
|
15597
15702
|
};
|
|
@@ -15628,7 +15733,7 @@ export interface operations {
|
|
|
15628
15733
|
content: {
|
|
15629
15734
|
"application/json": {
|
|
15630
15735
|
data?: {
|
|
15631
|
-
/** @example
|
|
15736
|
+
/** @example 4569d6b7-0dc6-4e02-9f3b-55b7aee6e611 */
|
|
15632
15737
|
uid?: string;
|
|
15633
15738
|
/** @example 1 */
|
|
15634
15739
|
tenancy_id?: number;
|
|
@@ -15640,17 +15745,17 @@ export interface operations {
|
|
|
15640
15745
|
status?: string;
|
|
15641
15746
|
/** @example emergency */
|
|
15642
15747
|
priority?: string;
|
|
15643
|
-
/** @example
|
|
15748
|
+
/** @example 29 Apr 2026, 11:53 PM */
|
|
15644
15749
|
reported_at?: string;
|
|
15645
|
-
/** @example
|
|
15750
|
+
/** @example 04 May 2026, 08:13 PM */
|
|
15646
15751
|
assigned_at?: string;
|
|
15647
15752
|
/** @example null */
|
|
15648
15753
|
completed_at?: string | null;
|
|
15649
|
-
/** @example
|
|
15754
|
+
/** @example 08 May 2026, 01:35 AM */
|
|
15650
15755
|
sla_deadline?: string;
|
|
15651
|
-
/** @example
|
|
15756
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15652
15757
|
created_at?: string;
|
|
15653
|
-
/** @example
|
|
15758
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
15654
15759
|
updated_at?: string;
|
|
15655
15760
|
};
|
|
15656
15761
|
};
|
|
@@ -15723,7 +15828,9 @@ export interface operations {
|
|
|
15723
15828
|
* "tenant": {
|
|
15724
15829
|
* "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
|
|
15725
15830
|
* "name": "Sarah Jenkins",
|
|
15726
|
-
* "email": "sarah@example.com"
|
|
15831
|
+
* "email": "sarah@example.com",
|
|
15832
|
+
* "phone": "+447700900123",
|
|
15833
|
+
* "address": "10 Oxford Street, London, W1"
|
|
15727
15834
|
* },
|
|
15728
15835
|
* "compliance_status": {
|
|
15729
15836
|
* "overall": "compliant",
|
|
@@ -15780,6 +15887,10 @@ export interface operations {
|
|
|
15780
15887
|
name?: string;
|
|
15781
15888
|
/** @example sarah@example.com */
|
|
15782
15889
|
email?: string;
|
|
15890
|
+
/** @example +447700900123 */
|
|
15891
|
+
phone?: string;
|
|
15892
|
+
/** @example 10 Oxford Street, London, W1 */
|
|
15893
|
+
address?: string;
|
|
15783
15894
|
};
|
|
15784
15895
|
compliance_status?: {
|
|
15785
15896
|
/** @example compliant */
|
|
@@ -15883,7 +15994,9 @@ export interface operations {
|
|
|
15883
15994
|
* "tenant": {
|
|
15884
15995
|
* "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
|
|
15885
15996
|
* "name": "Sarah Jenkins",
|
|
15886
|
-
* "email": "sarah@example.com"
|
|
15997
|
+
* "email": "sarah@example.com",
|
|
15998
|
+
* "phone": "+447700900123",
|
|
15999
|
+
* "address": "10 Oxford Street, London, W1"
|
|
15887
16000
|
* },
|
|
15888
16001
|
* "compliance_status": {
|
|
15889
16002
|
* "overall": "compliant",
|
|
@@ -15940,6 +16053,10 @@ export interface operations {
|
|
|
15940
16053
|
name?: string;
|
|
15941
16054
|
/** @example sarah@example.com */
|
|
15942
16055
|
email?: string;
|
|
16056
|
+
/** @example +447700900123 */
|
|
16057
|
+
phone?: string;
|
|
16058
|
+
/** @example 10 Oxford Street, London, W1 */
|
|
16059
|
+
address?: string;
|
|
15943
16060
|
};
|
|
15944
16061
|
compliance_status?: {
|
|
15945
16062
|
/** @example compliant */
|
|
@@ -15990,12 +16107,12 @@ export interface operations {
|
|
|
15990
16107
|
data?: {
|
|
15991
16108
|
/** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
|
|
15992
16109
|
uid?: string;
|
|
15993
|
-
/** @example
|
|
15994
|
-
|
|
15995
|
-
/** @example
|
|
15996
|
-
|
|
15997
|
-
/** @example
|
|
15998
|
-
|
|
16110
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
16111
|
+
listing_uid?: string;
|
|
16112
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
16113
|
+
landlord_uid?: string;
|
|
16114
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
16115
|
+
tenant_uid?: string;
|
|
15999
16116
|
/** @example 1500.00 */
|
|
16000
16117
|
rent_amount?: string;
|
|
16001
16118
|
/** @example 1500.00 */
|
|
@@ -16059,6 +16176,10 @@ export interface operations {
|
|
|
16059
16176
|
name?: string;
|
|
16060
16177
|
/** @example sarah@example.com */
|
|
16061
16178
|
email?: string;
|
|
16179
|
+
/** @example +447700900123 */
|
|
16180
|
+
phone?: string;
|
|
16181
|
+
/** @example 10 Oxford Street, London, W1 */
|
|
16182
|
+
address?: string;
|
|
16062
16183
|
};
|
|
16063
16184
|
/**
|
|
16064
16185
|
* @example [
|
|
@@ -17399,7 +17520,7 @@ export interface operations {
|
|
|
17399
17520
|
};
|
|
17400
17521
|
};
|
|
17401
17522
|
};
|
|
17402
|
-
|
|
17523
|
+
confirmAppointment: {
|
|
17403
17524
|
parameters: {
|
|
17404
17525
|
query?: never;
|
|
17405
17526
|
header?: never;
|
|
@@ -17624,7 +17745,7 @@ export interface operations {
|
|
|
17624
17745
|
};
|
|
17625
17746
|
};
|
|
17626
17747
|
};
|
|
17627
|
-
|
|
17748
|
+
cancelAppointment: {
|
|
17628
17749
|
parameters: {
|
|
17629
17750
|
query?: never;
|
|
17630
17751
|
header?: never;
|
|
@@ -18719,6 +18840,107 @@ export interface operations {
|
|
|
18719
18840
|
};
|
|
18720
18841
|
};
|
|
18721
18842
|
};
|
|
18843
|
+
fetchInspection: {
|
|
18844
|
+
parameters: {
|
|
18845
|
+
query?: never;
|
|
18846
|
+
header?: never;
|
|
18847
|
+
path: {
|
|
18848
|
+
/** @description The unique UID of the inspection. */
|
|
18849
|
+
uid: string;
|
|
18850
|
+
};
|
|
18851
|
+
cookie?: never;
|
|
18852
|
+
};
|
|
18853
|
+
requestBody?: never;
|
|
18854
|
+
responses: {
|
|
18855
|
+
200: {
|
|
18856
|
+
headers: {
|
|
18857
|
+
[name: string]: unknown;
|
|
18858
|
+
};
|
|
18859
|
+
content: {
|
|
18860
|
+
"application/json": {
|
|
18861
|
+
/** @example Inspection fetched successfully */
|
|
18862
|
+
message?: string;
|
|
18863
|
+
/** @example null */
|
|
18864
|
+
event?: string | null;
|
|
18865
|
+
data?: {
|
|
18866
|
+
/** @example insp_34fda1 */
|
|
18867
|
+
uid?: string;
|
|
18868
|
+
/** @example routine */
|
|
18869
|
+
inspection_type?: string;
|
|
18870
|
+
/** @example scheduled */
|
|
18871
|
+
status?: string;
|
|
18872
|
+
/** @example 10 Apr, 2026 10:30 AM */
|
|
18873
|
+
scheduled_date?: string;
|
|
18874
|
+
/** @example null */
|
|
18875
|
+
completed_date?: string | null;
|
|
18876
|
+
/** @example null */
|
|
18877
|
+
condition_rating?: string | null;
|
|
18878
|
+
/** @example null */
|
|
18879
|
+
summary?: string | null;
|
|
18880
|
+
/** @example 10 Jun, 2026 10:30 AM */
|
|
18881
|
+
next_inspection_date?: string;
|
|
18882
|
+
inspector?: {
|
|
18883
|
+
/** @example 12 */
|
|
18884
|
+
id?: number;
|
|
18885
|
+
/** @example Inspector Jane Doe */
|
|
18886
|
+
name?: string;
|
|
18887
|
+
};
|
|
18888
|
+
/**
|
|
18889
|
+
* @example [
|
|
18890
|
+
* {
|
|
18891
|
+
* "uid": "ism_34fda1",
|
|
18892
|
+
* "file_type": "image/jpeg",
|
|
18893
|
+
* "caption": "Kitchen leak evidence",
|
|
18894
|
+
* "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
|
|
18895
|
+
* "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
|
|
18896
|
+
* }
|
|
18897
|
+
* ]
|
|
18898
|
+
*/
|
|
18899
|
+
media?: {
|
|
18900
|
+
/** @example ism_34fda1 */
|
|
18901
|
+
uid?: string;
|
|
18902
|
+
/** @example image/jpeg */
|
|
18903
|
+
file_type?: string;
|
|
18904
|
+
/** @example Kitchen leak evidence */
|
|
18905
|
+
caption?: string;
|
|
18906
|
+
/** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
|
|
18907
|
+
path?: string;
|
|
18908
|
+
/** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
|
|
18909
|
+
url?: string;
|
|
18910
|
+
}[];
|
|
18911
|
+
/** @example 01 Apr, 2026 09:00 AM */
|
|
18912
|
+
created_at?: string;
|
|
18913
|
+
/** @example 01 Apr, 2026 09:00 AM */
|
|
18914
|
+
updated_at?: string;
|
|
18915
|
+
};
|
|
18916
|
+
} | {
|
|
18917
|
+
data?: {
|
|
18918
|
+
/** @example 4a955316-2003-42fb-8533-d9fd1c59b19d */
|
|
18919
|
+
uid?: string;
|
|
18920
|
+
/** @example follow_up */
|
|
18921
|
+
inspection_type?: string;
|
|
18922
|
+
/** @example cancelled */
|
|
18923
|
+
status?: string;
|
|
18924
|
+
/** @example 12 May 2026, 02:38 AM */
|
|
18925
|
+
scheduled_date?: string;
|
|
18926
|
+
/** @example null */
|
|
18927
|
+
completed_date?: string | null;
|
|
18928
|
+
/** @example attention_required */
|
|
18929
|
+
condition_rating?: string;
|
|
18930
|
+
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
18931
|
+
summary?: string;
|
|
18932
|
+
/** @example 05 Jul 2026, 11:27 PM */
|
|
18933
|
+
next_inspection_date?: string;
|
|
18934
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
18935
|
+
created_at?: string;
|
|
18936
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
18937
|
+
updated_at?: string;
|
|
18938
|
+
};
|
|
18939
|
+
};
|
|
18940
|
+
};
|
|
18941
|
+
};
|
|
18942
|
+
};
|
|
18943
|
+
};
|
|
18722
18944
|
listingHistoryInspection: {
|
|
18723
18945
|
parameters: {
|
|
18724
18946
|
query?: {
|
|
@@ -18904,15 +19126,15 @@ export interface operations {
|
|
|
18904
19126
|
content: {
|
|
18905
19127
|
"application/json": {
|
|
18906
19128
|
data?: {
|
|
18907
|
-
/** @example
|
|
19129
|
+
/** @example d2b8caa3-3d1e-4f9a-916b-cdef7b3b2893 */
|
|
18908
19130
|
uid?: string;
|
|
18909
|
-
/** @example
|
|
19131
|
+
/** @example Emily Reid */
|
|
18910
19132
|
username?: string;
|
|
18911
19133
|
/** @example null */
|
|
18912
19134
|
first_name?: string | null;
|
|
18913
19135
|
/** @example null */
|
|
18914
19136
|
last_name?: string | null;
|
|
18915
|
-
/** @example
|
|
19137
|
+
/** @example anthony.khan@example.com */
|
|
18916
19138
|
email?: string;
|
|
18917
19139
|
/** @example null */
|
|
18918
19140
|
phone?: string | null;
|
|
@@ -18934,7 +19156,7 @@ export interface operations {
|
|
|
18934
19156
|
timezone?: string;
|
|
18935
19157
|
/** @example Customer */
|
|
18936
19158
|
user_type?: string;
|
|
18937
|
-
/** @example
|
|
19159
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
18938
19160
|
created?: string;
|
|
18939
19161
|
/** @example 1 second ago */
|
|
18940
19162
|
email_verified_at?: string;
|
|
@@ -19403,15 +19625,15 @@ export interface operations {
|
|
|
19403
19625
|
content: {
|
|
19404
19626
|
"application/json": {
|
|
19405
19627
|
data?: {
|
|
19406
|
-
/** @example
|
|
19628
|
+
/** @example 6d65980c-e379-419d-aeed-6b3569c63783 */
|
|
19407
19629
|
uid?: string;
|
|
19408
|
-
/** @example
|
|
19630
|
+
/** @example Emily Reid */
|
|
19409
19631
|
username?: string;
|
|
19410
19632
|
/** @example null */
|
|
19411
19633
|
first_name?: string | null;
|
|
19412
19634
|
/** @example null */
|
|
19413
19635
|
last_name?: string | null;
|
|
19414
|
-
/** @example
|
|
19636
|
+
/** @example jbailey@example.org */
|
|
19415
19637
|
email?: string;
|
|
19416
19638
|
/** @example null */
|
|
19417
19639
|
phone?: string | null;
|
|
@@ -19433,7 +19655,7 @@ export interface operations {
|
|
|
19433
19655
|
timezone?: string;
|
|
19434
19656
|
/** @example Customer */
|
|
19435
19657
|
user_type?: string;
|
|
19436
|
-
/** @example
|
|
19658
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
19437
19659
|
created?: string;
|
|
19438
19660
|
/** @example 0 seconds ago */
|
|
19439
19661
|
email_verified_at?: string;
|
|
@@ -19518,24 +19740,18 @@ export interface operations {
|
|
|
19518
19740
|
reservedBookingsLandlord: {
|
|
19519
19741
|
parameters: {
|
|
19520
19742
|
query?: {
|
|
19743
|
+
/** @description Filter bookings by tenant/guest name. */
|
|
19744
|
+
tenant_name?: string | null;
|
|
19521
19745
|
/** @description Number of bookings per page. */
|
|
19522
|
-
per_page?: number;
|
|
19746
|
+
per_page?: number | null;
|
|
19747
|
+
/** @description Current page number. */
|
|
19748
|
+
page?: number | null;
|
|
19523
19749
|
};
|
|
19524
19750
|
header?: never;
|
|
19525
19751
|
path?: never;
|
|
19526
19752
|
cookie?: never;
|
|
19527
19753
|
};
|
|
19528
|
-
requestBody?:
|
|
19529
|
-
content: {
|
|
19530
|
-
"application/json": {
|
|
19531
|
-
/**
|
|
19532
|
-
* @description Must be at least 1. Must not be greater than 100.
|
|
19533
|
-
* @example 1
|
|
19534
|
-
*/
|
|
19535
|
-
per_page?: number | null;
|
|
19536
|
-
};
|
|
19537
|
-
};
|
|
19538
|
-
};
|
|
19754
|
+
requestBody?: never;
|
|
19539
19755
|
responses: {
|
|
19540
19756
|
/** @description Retrieve landlord reserved bookings */
|
|
19541
19757
|
200: {
|
|
@@ -19587,7 +19803,8 @@ export interface operations {
|
|
|
19587
19803
|
* "end_date": "13 Jun 2026",
|
|
19588
19804
|
* "nights": 3,
|
|
19589
19805
|
* "status": "pending",
|
|
19590
|
-
* "total_price": "450.00"
|
|
19806
|
+
* "total_price": "450.00",
|
|
19807
|
+
* "created_at": "06 May, 2026 10:30 AM"
|
|
19591
19808
|
* }
|
|
19592
19809
|
* ]
|
|
19593
19810
|
*/
|
|
@@ -19654,6 +19871,8 @@ export interface operations {
|
|
|
19654
19871
|
status?: string;
|
|
19655
19872
|
/** @example 450.00 */
|
|
19656
19873
|
total_price?: string;
|
|
19874
|
+
/** @example 06 May, 2026 10:30 AM */
|
|
19875
|
+
created_at?: string;
|
|
19657
19876
|
}[];
|
|
19658
19877
|
pagination?: {
|
|
19659
19878
|
/** @example 1 */
|
|
@@ -20060,12 +20279,12 @@ export interface operations {
|
|
|
20060
20279
|
*/
|
|
20061
20280
|
search?: string | null;
|
|
20062
20281
|
/**
|
|
20063
|
-
* @example
|
|
20282
|
+
* @example pending
|
|
20064
20283
|
* @enum {string|null}
|
|
20065
20284
|
*/
|
|
20066
20285
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
20067
20286
|
/**
|
|
20068
|
-
* @example
|
|
20287
|
+
* @example landlord
|
|
20069
20288
|
* @enum {string|null}
|
|
20070
20289
|
*/
|
|
20071
20290
|
source?: "tenant" | "landlord" | "admin" | null;
|
|
@@ -20294,7 +20513,7 @@ export interface operations {
|
|
|
20294
20513
|
content: {
|
|
20295
20514
|
"application/json": {
|
|
20296
20515
|
data?: {
|
|
20297
|
-
/** @example
|
|
20516
|
+
/** @example 33558df4-9c27-4a93-bdd9-9b0c75526a65 */
|
|
20298
20517
|
uid?: string;
|
|
20299
20518
|
/** @example JH-APP-2026-936806 */
|
|
20300
20519
|
application_ref?: string;
|
|
@@ -20315,7 +20534,7 @@ export interface operations {
|
|
|
20315
20534
|
/** @example null */
|
|
20316
20535
|
rejection_reason?: string | null;
|
|
20317
20536
|
timeline?: {
|
|
20318
|
-
/** @example
|
|
20537
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
20319
20538
|
created_at?: string;
|
|
20320
20539
|
/** @example null */
|
|
20321
20540
|
approved_at?: string | null;
|
|
@@ -20349,7 +20568,7 @@ export interface operations {
|
|
|
20349
20568
|
content: {
|
|
20350
20569
|
"application/json": {
|
|
20351
20570
|
data?: {
|
|
20352
|
-
/** @example
|
|
20571
|
+
/** @example dce4eae5-3bbd-4b7b-a56d-f9b160778610 */
|
|
20353
20572
|
uid?: string;
|
|
20354
20573
|
/** @example JH-APP-2026-757680 */
|
|
20355
20574
|
application_ref?: string;
|
|
@@ -20370,7 +20589,7 @@ export interface operations {
|
|
|
20370
20589
|
/** @example null */
|
|
20371
20590
|
rejection_reason?: string | null;
|
|
20372
20591
|
timeline?: {
|
|
20373
|
-
/** @example
|
|
20592
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
20374
20593
|
created_at?: string;
|
|
20375
20594
|
/** @example null */
|
|
20376
20595
|
approved_at?: string | null;
|
|
@@ -20414,7 +20633,7 @@ export interface operations {
|
|
|
20414
20633
|
content: {
|
|
20415
20634
|
"application/json": {
|
|
20416
20635
|
data?: {
|
|
20417
|
-
/** @example
|
|
20636
|
+
/** @example 36450514-6654-45bd-b39a-1e5c8ce0013f */
|
|
20418
20637
|
uid?: string;
|
|
20419
20638
|
/** @example JH-APP-2026-449171 */
|
|
20420
20639
|
application_ref?: string;
|
|
@@ -20435,7 +20654,7 @@ export interface operations {
|
|
|
20435
20654
|
/** @example null */
|
|
20436
20655
|
rejection_reason?: string | null;
|
|
20437
20656
|
timeline?: {
|
|
20438
|
-
/** @example
|
|
20657
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
20439
20658
|
created_at?: string;
|
|
20440
20659
|
/** @example null */
|
|
20441
20660
|
approved_at?: string | null;
|
|
@@ -20469,7 +20688,7 @@ export interface operations {
|
|
|
20469
20688
|
content: {
|
|
20470
20689
|
"application/json": {
|
|
20471
20690
|
data?: {
|
|
20472
|
-
/** @example
|
|
20691
|
+
/** @example 6100d114-3776-40d3-9d77-1720a7a60821 */
|
|
20473
20692
|
uid?: string;
|
|
20474
20693
|
/** @example 4881.50 */
|
|
20475
20694
|
rent_amount?: string;
|
|
@@ -20477,9 +20696,9 @@ export interface operations {
|
|
|
20477
20696
|
deposit_amount?: string;
|
|
20478
20697
|
/** @example offer_accepted */
|
|
20479
20698
|
state?: string;
|
|
20480
|
-
/** @example 2025-08-
|
|
20699
|
+
/** @example 2025-08-29T00:00:00.000000Z */
|
|
20481
20700
|
start_date?: string;
|
|
20482
|
-
/** @example 2026-08-
|
|
20701
|
+
/** @example 2026-08-29T00:00:00.000000Z */
|
|
20483
20702
|
end_date?: string;
|
|
20484
20703
|
/** @example false */
|
|
20485
20704
|
is_periodic?: boolean;
|
|
@@ -20487,7 +20706,7 @@ export interface operations {
|
|
|
20487
20706
|
company_name?: string | null;
|
|
20488
20707
|
/** @example null */
|
|
20489
20708
|
company_registration_number?: string | null;
|
|
20490
|
-
/** @example 2026-05-
|
|
20709
|
+
/** @example 2026-05-06T12:40:03.000000Z */
|
|
20491
20710
|
created_at?: string;
|
|
20492
20711
|
};
|
|
20493
20712
|
};
|
|
@@ -20495,6 +20714,88 @@ export interface operations {
|
|
|
20495
20714
|
};
|
|
20496
20715
|
};
|
|
20497
20716
|
};
|
|
20717
|
+
fetchLandlordListingReviews: {
|
|
20718
|
+
parameters: {
|
|
20719
|
+
query?: {
|
|
20720
|
+
/** @description Number of records per page. */
|
|
20721
|
+
per_page?: number;
|
|
20722
|
+
/** @description Current page number. */
|
|
20723
|
+
page?: number;
|
|
20724
|
+
};
|
|
20725
|
+
header?: never;
|
|
20726
|
+
path?: never;
|
|
20727
|
+
cookie?: never;
|
|
20728
|
+
};
|
|
20729
|
+
requestBody?: never;
|
|
20730
|
+
responses: {
|
|
20731
|
+
/** @description Retrieve reviews for listings owned by the authenticated landlord */
|
|
20732
|
+
200: {
|
|
20733
|
+
headers: {
|
|
20734
|
+
[name: string]: unknown;
|
|
20735
|
+
};
|
|
20736
|
+
content: {
|
|
20737
|
+
"application/json": {
|
|
20738
|
+
/** @example Review retrieved successfully */
|
|
20739
|
+
message?: string;
|
|
20740
|
+
/** @example null */
|
|
20741
|
+
event?: string | null;
|
|
20742
|
+
data?: {
|
|
20743
|
+
/**
|
|
20744
|
+
* @example [
|
|
20745
|
+
* {
|
|
20746
|
+
* "id": 1,
|
|
20747
|
+
* "rating": 5,
|
|
20748
|
+
* "comment": "Excellent service.",
|
|
20749
|
+
* "reviewable_type": "listing",
|
|
20750
|
+
* "reviewer": {
|
|
20751
|
+
* "uid": "aja asjas",
|
|
20752
|
+
* "name": "Sarah Jenkins"
|
|
20753
|
+
* },
|
|
20754
|
+
* "created_at": "28 Apr, 2026 09:00 AM",
|
|
20755
|
+
* "updated_at": "28 Apr, 2026 09:00 AM"
|
|
20756
|
+
* }
|
|
20757
|
+
* ]
|
|
20758
|
+
*/
|
|
20759
|
+
items?: {
|
|
20760
|
+
/** @example 1 */
|
|
20761
|
+
id?: number;
|
|
20762
|
+
/** @example 5 */
|
|
20763
|
+
rating?: number;
|
|
20764
|
+
/** @example Excellent service. */
|
|
20765
|
+
comment?: string;
|
|
20766
|
+
/** @example listing */
|
|
20767
|
+
reviewable_type?: string;
|
|
20768
|
+
reviewer?: {
|
|
20769
|
+
/** @example aja asjas */
|
|
20770
|
+
uid?: string;
|
|
20771
|
+
/** @example Sarah Jenkins */
|
|
20772
|
+
name?: string;
|
|
20773
|
+
};
|
|
20774
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
20775
|
+
created_at?: string;
|
|
20776
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
20777
|
+
updated_at?: string;
|
|
20778
|
+
}[];
|
|
20779
|
+
pagination?: {
|
|
20780
|
+
/** @example 1 */
|
|
20781
|
+
current_page?: number;
|
|
20782
|
+
/** @example 15 */
|
|
20783
|
+
per_page?: number;
|
|
20784
|
+
/** @example 0 */
|
|
20785
|
+
total?: number;
|
|
20786
|
+
/** @example 1 */
|
|
20787
|
+
last_page?: number;
|
|
20788
|
+
/** @example null */
|
|
20789
|
+
from?: string | null;
|
|
20790
|
+
/** @example null */
|
|
20791
|
+
to?: string | null;
|
|
20792
|
+
};
|
|
20793
|
+
};
|
|
20794
|
+
};
|
|
20795
|
+
};
|
|
20796
|
+
};
|
|
20797
|
+
};
|
|
20798
|
+
};
|
|
20498
20799
|
createListingDraft: {
|
|
20499
20800
|
parameters: {
|
|
20500
20801
|
query?: never;
|
|
@@ -20534,19 +20835,19 @@ export interface operations {
|
|
|
20534
20835
|
content: {
|
|
20535
20836
|
"application/json": {
|
|
20536
20837
|
data?: {
|
|
20537
|
-
/** @example New
|
|
20838
|
+
/** @example New Short Let Property draft • 6 May 2026, 12:40 PM */
|
|
20538
20839
|
draft_name?: string;
|
|
20539
|
-
/** @example LST-PRP-
|
|
20840
|
+
/** @example LST-PRP-SHL-MOU1OP89WN1 */
|
|
20540
20841
|
sku?: string;
|
|
20541
|
-
/** @example
|
|
20842
|
+
/** @example 33f08212-1954-4b4c-82ac-45438709a580 */
|
|
20542
20843
|
uid?: string;
|
|
20543
|
-
/** @example
|
|
20844
|
+
/** @example Short Let */
|
|
20544
20845
|
listing_type?: string;
|
|
20545
20846
|
/** @example Property */
|
|
20546
20847
|
vertical?: string;
|
|
20547
|
-
/** @example
|
|
20848
|
+
/** @example standard_residential */
|
|
20548
20849
|
arrangement_type?: string;
|
|
20549
|
-
/** @example
|
|
20850
|
+
/** @example Standard Residential */
|
|
20550
20851
|
arrangement_type_label?: string;
|
|
20551
20852
|
/** @example null */
|
|
20552
20853
|
price?: string | null;
|
|
@@ -20662,9 +20963,9 @@ export interface operations {
|
|
|
20662
20963
|
/**
|
|
20663
20964
|
* @example [
|
|
20664
20965
|
* {
|
|
20665
|
-
* "draft_name": "New For Rent Property draft •
|
|
20666
|
-
* "sku": "LST-PRP-LTR-
|
|
20667
|
-
* "uid": "
|
|
20966
|
+
* "draft_name": "New For Rent Property draft • 6 May 2026, 12:40 PM",
|
|
20967
|
+
* "sku": "LST-PRP-LTR-MOU1OP90DG1",
|
|
20968
|
+
* "uid": "143debde-0b24-4ec3-904d-77c0cb9bf26d",
|
|
20668
20969
|
* "listing_type": "Rent",
|
|
20669
20970
|
* "vertical": "Property",
|
|
20670
20971
|
* "arrangement_type": "let_to_let",
|
|
@@ -20681,9 +20982,9 @@ export interface operations {
|
|
|
20681
20982
|
* "media": []
|
|
20682
20983
|
* },
|
|
20683
20984
|
* {
|
|
20684
|
-
* "draft_name": "New Short Let Property draft •
|
|
20685
|
-
* "sku": "LST-PRP-SHL-
|
|
20686
|
-
* "uid": "
|
|
20985
|
+
* "draft_name": "New Short Let Property draft • 6 May 2026, 12:40 PM",
|
|
20986
|
+
* "sku": "LST-PRP-SHL-MOU1OP93YCV",
|
|
20987
|
+
* "uid": "dfb45784-f15f-43e3-aa69-e212f2100d20",
|
|
20687
20988
|
* "listing_type": "Short Let",
|
|
20688
20989
|
* "vertical": "Property",
|
|
20689
20990
|
* "arrangement_type": "short_term_managed",
|
|
@@ -20702,11 +21003,11 @@ export interface operations {
|
|
|
20702
21003
|
* ]
|
|
20703
21004
|
*/
|
|
20704
21005
|
data?: {
|
|
20705
|
-
/** @example New For Rent Property draft •
|
|
21006
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
20706
21007
|
draft_name?: string;
|
|
20707
|
-
/** @example LST-PRP-LTR-
|
|
21008
|
+
/** @example LST-PRP-LTR-MOU1OP90DG1 */
|
|
20708
21009
|
sku?: string;
|
|
20709
|
-
/** @example
|
|
21010
|
+
/** @example 143debde-0b24-4ec3-904d-77c0cb9bf26d */
|
|
20710
21011
|
uid?: string;
|
|
20711
21012
|
/** @example Rent */
|
|
20712
21013
|
listing_type?: string;
|
|
@@ -20816,9 +21117,9 @@ export interface operations {
|
|
|
20816
21117
|
/**
|
|
20817
21118
|
* @example [
|
|
20818
21119
|
* {
|
|
20819
|
-
* "draft_name": "New For Rent Property draft •
|
|
20820
|
-
* "sku": "LST-PRP-LTR-
|
|
20821
|
-
* "uid": "
|
|
21120
|
+
* "draft_name": "New For Rent Property draft • 6 May 2026, 12:40 PM",
|
|
21121
|
+
* "sku": "LST-PRP-LTR-MOU1OP9AJIC",
|
|
21122
|
+
* "uid": "762dd4b9-291f-4403-998b-57ffc8ba7b54",
|
|
20822
21123
|
* "listing_type": "Rent",
|
|
20823
21124
|
* "vertical": "Property",
|
|
20824
21125
|
* "arrangement_type": "let_to_let",
|
|
@@ -20835,9 +21136,9 @@ export interface operations {
|
|
|
20835
21136
|
* "media": []
|
|
20836
21137
|
* },
|
|
20837
21138
|
* {
|
|
20838
|
-
* "draft_name": "New Short Let Property draft •
|
|
20839
|
-
* "sku": "LST-PRP-SHL-
|
|
20840
|
-
* "uid": "
|
|
21139
|
+
* "draft_name": "New Short Let Property draft • 6 May 2026, 12:40 PM",
|
|
21140
|
+
* "sku": "LST-PRP-SHL-MOU1OP9DQMZ",
|
|
21141
|
+
* "uid": "c5544dae-8d55-4a1b-ad69-e4cdb19e2984",
|
|
20841
21142
|
* "listing_type": "Short Let",
|
|
20842
21143
|
* "vertical": "Property",
|
|
20843
21144
|
* "arrangement_type": "short_term_managed",
|
|
@@ -20856,11 +21157,11 @@ export interface operations {
|
|
|
20856
21157
|
* ]
|
|
20857
21158
|
*/
|
|
20858
21159
|
data?: {
|
|
20859
|
-
/** @example New For Rent Property draft •
|
|
21160
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
20860
21161
|
draft_name?: string;
|
|
20861
|
-
/** @example LST-PRP-LTR-
|
|
21162
|
+
/** @example LST-PRP-LTR-MOU1OP9AJIC */
|
|
20862
21163
|
sku?: string;
|
|
20863
|
-
/** @example
|
|
21164
|
+
/** @example 762dd4b9-291f-4403-998b-57ffc8ba7b54 */
|
|
20864
21165
|
uid?: string;
|
|
20865
21166
|
/** @example Rent */
|
|
20866
21167
|
listing_type?: string;
|
|
@@ -22109,7 +22410,7 @@ export interface operations {
|
|
|
22109
22410
|
content: {
|
|
22110
22411
|
"application/json": {
|
|
22111
22412
|
data?: {
|
|
22112
|
-
/** @example
|
|
22413
|
+
/** @example ed611ad2-c75b-455f-a4af-4d3ca42efbf3 */
|
|
22113
22414
|
uid?: string;
|
|
22114
22415
|
/** @example photo */
|
|
22115
22416
|
media_type?: string;
|
|
@@ -22258,11 +22559,11 @@ export interface operations {
|
|
|
22258
22559
|
content: {
|
|
22259
22560
|
"application/json": {
|
|
22260
22561
|
data?: {
|
|
22261
|
-
/** @example New For Rent Property draft •
|
|
22562
|
+
/** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
|
|
22262
22563
|
draft_name?: string;
|
|
22263
|
-
/** @example LST-PRP-LTR-
|
|
22564
|
+
/** @example LST-PRP-LTR-MOU1OPBOISI */
|
|
22264
22565
|
sku?: string;
|
|
22265
|
-
/** @example
|
|
22566
|
+
/** @example 71d32b1f-8666-4504-b641-6d052a352a53 */
|
|
22266
22567
|
uid?: string;
|
|
22267
22568
|
/** @example Rent */
|
|
22268
22569
|
listing_type?: string;
|
|
@@ -22422,7 +22723,7 @@ export interface operations {
|
|
|
22422
22723
|
content: {
|
|
22423
22724
|
"application/json": {
|
|
22424
22725
|
data?: {
|
|
22425
|
-
/** @example
|
|
22726
|
+
/** @example 858fa05f-1c50-4af4-912d-56871b32f32b */
|
|
22426
22727
|
uid?: string;
|
|
22427
22728
|
/** @example null */
|
|
22428
22729
|
compliances?: string | null;
|
|
@@ -22473,7 +22774,7 @@ export interface operations {
|
|
|
22473
22774
|
content: {
|
|
22474
22775
|
"application/json": {
|
|
22475
22776
|
data?: {
|
|
22476
|
-
/** @example
|
|
22777
|
+
/** @example 79 */
|
|
22477
22778
|
id?: number;
|
|
22478
22779
|
compliance?: {
|
|
22479
22780
|
/** @example 1 */
|
|
@@ -22495,7 +22796,7 @@ export interface operations {
|
|
|
22495
22796
|
reviewed_by?: number;
|
|
22496
22797
|
/** @example null */
|
|
22497
22798
|
reviewed_at?: string | null;
|
|
22498
|
-
/** @example 2026-05-
|
|
22799
|
+
/** @example 2026-05-06T12:40:03.000000Z */
|
|
22499
22800
|
created_at?: string;
|
|
22500
22801
|
};
|
|
22501
22802
|
};
|
|
@@ -22534,12 +22835,173 @@ export interface operations {
|
|
|
22534
22835
|
};
|
|
22535
22836
|
getLandlordTenancies: {
|
|
22536
22837
|
parameters: {
|
|
22537
|
-
query?:
|
|
22838
|
+
query?: {
|
|
22839
|
+
/** @description Filter by tenant name. */
|
|
22840
|
+
tenant_name?: string | null;
|
|
22841
|
+
/** @description Filter by tenancy state. */
|
|
22842
|
+
state?: string | null;
|
|
22843
|
+
/** @description Number of records per page. */
|
|
22844
|
+
per_page?: number | null;
|
|
22845
|
+
/** @description Current page number. */
|
|
22846
|
+
page?: number | null;
|
|
22847
|
+
};
|
|
22538
22848
|
header?: never;
|
|
22539
22849
|
path?: never;
|
|
22540
22850
|
cookie?: never;
|
|
22541
22851
|
};
|
|
22542
22852
|
requestBody?: never;
|
|
22853
|
+
responses: {
|
|
22854
|
+
/** @description Retrieve tenancies for the authenticated landlord */
|
|
22855
|
+
200: {
|
|
22856
|
+
headers: {
|
|
22857
|
+
[name: string]: unknown;
|
|
22858
|
+
};
|
|
22859
|
+
content: {
|
|
22860
|
+
"application/json": {
|
|
22861
|
+
/** @example Tenancies fetched */
|
|
22862
|
+
message?: string;
|
|
22863
|
+
/** @example null */
|
|
22864
|
+
event?: string | null;
|
|
22865
|
+
data?: {
|
|
22866
|
+
/**
|
|
22867
|
+
* @example [
|
|
22868
|
+
* {
|
|
22869
|
+
* "tenancy_uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
|
|
22870
|
+
* "listing": {
|
|
22871
|
+
* "cover": {
|
|
22872
|
+
* "uid": "lm_34fda1",
|
|
22873
|
+
* "media_type": "image/jpeg",
|
|
22874
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a/cover.jpg",
|
|
22875
|
+
* "order_index": 0,
|
|
22876
|
+
* "is_cover": true
|
|
22877
|
+
* },
|
|
22878
|
+
* "details": {
|
|
22879
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
22880
|
+
* "title": "24 Windsor Court",
|
|
22881
|
+
* "type": "Rent"
|
|
22882
|
+
* },
|
|
22883
|
+
* "owner": {
|
|
22884
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
22885
|
+
* "name": "Alice Taylor"
|
|
22886
|
+
* }
|
|
22887
|
+
* },
|
|
22888
|
+
* "rent_amount": "1500.00",
|
|
22889
|
+
* "deposit_amount": "1500.00",
|
|
22890
|
+
* "tenant": {
|
|
22891
|
+
* "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
|
|
22892
|
+
* "name": "Sarah Jenkins",
|
|
22893
|
+
* "email": "sarah@example.com",
|
|
22894
|
+
* "phone": "+447700900123",
|
|
22895
|
+
* "address": "10 Oxford Street, London, W1"
|
|
22896
|
+
* },
|
|
22897
|
+
* "compliance_status": {
|
|
22898
|
+
* "overall": "compliant",
|
|
22899
|
+
* "label": "Compliant"
|
|
22900
|
+
* },
|
|
22901
|
+
* "state": {
|
|
22902
|
+
* "value": "active",
|
|
22903
|
+
* "label": "Active"
|
|
22904
|
+
* },
|
|
22905
|
+
* "start_date": "2026-03-01",
|
|
22906
|
+
* "end_date": "2027-02-28"
|
|
22907
|
+
* }
|
|
22908
|
+
* ]
|
|
22909
|
+
*/
|
|
22910
|
+
items?: {
|
|
22911
|
+
/** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
|
|
22912
|
+
tenancy_uid?: string;
|
|
22913
|
+
listing?: {
|
|
22914
|
+
cover?: {
|
|
22915
|
+
/** @example lm_34fda1 */
|
|
22916
|
+
uid?: string;
|
|
22917
|
+
/** @example image/jpeg */
|
|
22918
|
+
media_type?: string;
|
|
22919
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a/cover.jpg */
|
|
22920
|
+
storage_path?: string;
|
|
22921
|
+
/** @example 0 */
|
|
22922
|
+
order_index?: number;
|
|
22923
|
+
/** @example true */
|
|
22924
|
+
is_cover?: boolean;
|
|
22925
|
+
};
|
|
22926
|
+
details?: {
|
|
22927
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
22928
|
+
address?: string;
|
|
22929
|
+
/** @example 24 Windsor Court */
|
|
22930
|
+
title?: string;
|
|
22931
|
+
/** @example Rent */
|
|
22932
|
+
type?: string;
|
|
22933
|
+
};
|
|
22934
|
+
owner?: {
|
|
22935
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
22936
|
+
uid?: string;
|
|
22937
|
+
/** @example Alice Taylor */
|
|
22938
|
+
name?: string;
|
|
22939
|
+
};
|
|
22940
|
+
};
|
|
22941
|
+
/** @example 1500.00 */
|
|
22942
|
+
rent_amount?: string;
|
|
22943
|
+
/** @example 1500.00 */
|
|
22944
|
+
deposit_amount?: string;
|
|
22945
|
+
tenant?: {
|
|
22946
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
22947
|
+
uid?: string;
|
|
22948
|
+
/** @example Sarah Jenkins */
|
|
22949
|
+
name?: string;
|
|
22950
|
+
/** @example sarah@example.com */
|
|
22951
|
+
email?: string;
|
|
22952
|
+
/** @example +447700900123 */
|
|
22953
|
+
phone?: string;
|
|
22954
|
+
/** @example 10 Oxford Street, London, W1 */
|
|
22955
|
+
address?: string;
|
|
22956
|
+
};
|
|
22957
|
+
compliance_status?: {
|
|
22958
|
+
/** @example compliant */
|
|
22959
|
+
overall?: string;
|
|
22960
|
+
/** @example Compliant */
|
|
22961
|
+
label?: string;
|
|
22962
|
+
};
|
|
22963
|
+
state?: {
|
|
22964
|
+
/** @example active */
|
|
22965
|
+
value?: string;
|
|
22966
|
+
/** @example Active */
|
|
22967
|
+
label?: string;
|
|
22968
|
+
};
|
|
22969
|
+
/** @example 2026-03-01 */
|
|
22970
|
+
start_date?: string;
|
|
22971
|
+
/** @example 2027-02-28 */
|
|
22972
|
+
end_date?: string;
|
|
22973
|
+
}[];
|
|
22974
|
+
pagination?: {
|
|
22975
|
+
/** @example 1 */
|
|
22976
|
+
current_page?: number;
|
|
22977
|
+
/** @example 15 */
|
|
22978
|
+
per_page?: number;
|
|
22979
|
+
/** @example 1240 */
|
|
22980
|
+
total?: number;
|
|
22981
|
+
/** @example 83 */
|
|
22982
|
+
last_page?: number;
|
|
22983
|
+
/** @example 1 */
|
|
22984
|
+
from?: number;
|
|
22985
|
+
/** @example 15 */
|
|
22986
|
+
to?: number;
|
|
22987
|
+
};
|
|
22988
|
+
};
|
|
22989
|
+
};
|
|
22990
|
+
};
|
|
22991
|
+
};
|
|
22992
|
+
};
|
|
22993
|
+
};
|
|
22994
|
+
getLandlordListingTenancies: {
|
|
22995
|
+
parameters: {
|
|
22996
|
+
query?: never;
|
|
22997
|
+
header?: never;
|
|
22998
|
+
path: {
|
|
22999
|
+
/** @description The UID of the listing. */
|
|
23000
|
+
listing_uid: string;
|
|
23001
|
+
};
|
|
23002
|
+
cookie?: never;
|
|
23003
|
+
};
|
|
23004
|
+
requestBody?: never;
|
|
22543
23005
|
responses: {
|
|
22544
23006
|
200: {
|
|
22545
23007
|
headers: {
|
|
@@ -22550,33 +23012,33 @@ export interface operations {
|
|
|
22550
23012
|
/**
|
|
22551
23013
|
* @example [
|
|
22552
23014
|
* {
|
|
22553
|
-
* "uid": "
|
|
23015
|
+
* "uid": "1a394692-b0f9-4a23-938e-ddde231b6984",
|
|
22554
23016
|
* "rent_amount": "4881.50",
|
|
22555
23017
|
* "deposit_amount": "2151.17",
|
|
22556
23018
|
* "state": "offer_accepted",
|
|
22557
|
-
* "start_date": "2025-08-
|
|
22558
|
-
* "end_date": "2026-08-
|
|
23019
|
+
* "start_date": "2025-08-29T00:00:00.000000Z",
|
|
23020
|
+
* "end_date": "2026-08-29T00:00:00.000000Z",
|
|
22559
23021
|
* "is_periodic": false,
|
|
22560
23022
|
* "company_name": null,
|
|
22561
23023
|
* "company_registration_number": null,
|
|
22562
|
-
* "created_at": "2026-05-
|
|
23024
|
+
* "created_at": "2026-05-06T12:40:03.000000Z"
|
|
22563
23025
|
* },
|
|
22564
23026
|
* {
|
|
22565
|
-
* "uid": "
|
|
23027
|
+
* "uid": "cb74714e-6cef-491f-859f-7ec1db0a2adf",
|
|
22566
23028
|
* "rent_amount": "3832.26",
|
|
22567
23029
|
* "deposit_amount": "1384.27",
|
|
22568
23030
|
* "state": "terminated",
|
|
22569
|
-
* "start_date": "2025-06-
|
|
22570
|
-
* "end_date": "2026-06-
|
|
23031
|
+
* "start_date": "2025-06-09T00:00:00.000000Z",
|
|
23032
|
+
* "end_date": "2026-06-09T00:00:00.000000Z",
|
|
22571
23033
|
* "is_periodic": false,
|
|
22572
23034
|
* "company_name": null,
|
|
22573
23035
|
* "company_registration_number": null,
|
|
22574
|
-
* "created_at": "2026-05-
|
|
23036
|
+
* "created_at": "2026-05-06T12:40:03.000000Z"
|
|
22575
23037
|
* }
|
|
22576
23038
|
* ]
|
|
22577
23039
|
*/
|
|
22578
23040
|
data?: {
|
|
22579
|
-
/** @example
|
|
23041
|
+
/** @example 1a394692-b0f9-4a23-938e-ddde231b6984 */
|
|
22580
23042
|
uid?: string;
|
|
22581
23043
|
/** @example 4881.50 */
|
|
22582
23044
|
rent_amount?: string;
|
|
@@ -22584,9 +23046,9 @@ export interface operations {
|
|
|
22584
23046
|
deposit_amount?: string;
|
|
22585
23047
|
/** @example offer_accepted */
|
|
22586
23048
|
state?: string;
|
|
22587
|
-
/** @example 2025-08-
|
|
23049
|
+
/** @example 2025-08-29T00:00:00.000000Z */
|
|
22588
23050
|
start_date?: string;
|
|
22589
|
-
/** @example 2026-08-
|
|
23051
|
+
/** @example 2026-08-29T00:00:00.000000Z */
|
|
22590
23052
|
end_date?: string;
|
|
22591
23053
|
/** @example false */
|
|
22592
23054
|
is_periodic?: boolean;
|
|
@@ -22594,7 +23056,7 @@ export interface operations {
|
|
|
22594
23056
|
company_name?: string | null;
|
|
22595
23057
|
/** @example null */
|
|
22596
23058
|
company_registration_number?: string | null;
|
|
22597
|
-
/** @example 2026-05-
|
|
23059
|
+
/** @example 2026-05-06T12:40:03.000000Z */
|
|
22598
23060
|
created_at?: string;
|
|
22599
23061
|
}[];
|
|
22600
23062
|
links?: {
|
|
@@ -22660,144 +23122,13 @@ export interface operations {
|
|
|
22660
23122
|
};
|
|
22661
23123
|
};
|
|
22662
23124
|
};
|
|
22663
|
-
|
|
23125
|
+
submitTenancyCompliance: {
|
|
22664
23126
|
parameters: {
|
|
22665
23127
|
query?: never;
|
|
22666
23128
|
header?: never;
|
|
22667
23129
|
path: {
|
|
22668
|
-
/** @description The UID of the
|
|
22669
|
-
|
|
22670
|
-
};
|
|
22671
|
-
cookie?: never;
|
|
22672
|
-
};
|
|
22673
|
-
requestBody?: never;
|
|
22674
|
-
responses: {
|
|
22675
|
-
200: {
|
|
22676
|
-
headers: {
|
|
22677
|
-
[name: string]: unknown;
|
|
22678
|
-
};
|
|
22679
|
-
content: {
|
|
22680
|
-
"application/json": {
|
|
22681
|
-
/**
|
|
22682
|
-
* @example [
|
|
22683
|
-
* {
|
|
22684
|
-
* "uid": "77e91a77-48bd-4735-998c-54dc62e725cd",
|
|
22685
|
-
* "rent_amount": "4881.50",
|
|
22686
|
-
* "deposit_amount": "2151.17",
|
|
22687
|
-
* "state": "offer_accepted",
|
|
22688
|
-
* "start_date": "2025-08-24T00:00:00.000000Z",
|
|
22689
|
-
* "end_date": "2026-08-24T00:00:00.000000Z",
|
|
22690
|
-
* "is_periodic": false,
|
|
22691
|
-
* "company_name": null,
|
|
22692
|
-
* "company_registration_number": null,
|
|
22693
|
-
* "created_at": "2026-05-01T15:19:25.000000Z"
|
|
22694
|
-
* },
|
|
22695
|
-
* {
|
|
22696
|
-
* "uid": "43bab06f-eff8-47cd-b426-974e156c17d7",
|
|
22697
|
-
* "rent_amount": "3832.26",
|
|
22698
|
-
* "deposit_amount": "1384.27",
|
|
22699
|
-
* "state": "terminated",
|
|
22700
|
-
* "start_date": "2025-06-05T00:00:00.000000Z",
|
|
22701
|
-
* "end_date": "2026-06-05T00:00:00.000000Z",
|
|
22702
|
-
* "is_periodic": false,
|
|
22703
|
-
* "company_name": null,
|
|
22704
|
-
* "company_registration_number": null,
|
|
22705
|
-
* "created_at": "2026-05-01T15:19:25.000000Z"
|
|
22706
|
-
* }
|
|
22707
|
-
* ]
|
|
22708
|
-
*/
|
|
22709
|
-
data?: {
|
|
22710
|
-
/** @example 77e91a77-48bd-4735-998c-54dc62e725cd */
|
|
22711
|
-
uid?: string;
|
|
22712
|
-
/** @example 4881.50 */
|
|
22713
|
-
rent_amount?: string;
|
|
22714
|
-
/** @example 2151.17 */
|
|
22715
|
-
deposit_amount?: string;
|
|
22716
|
-
/** @example offer_accepted */
|
|
22717
|
-
state?: string;
|
|
22718
|
-
/** @example 2025-08-24T00:00:00.000000Z */
|
|
22719
|
-
start_date?: string;
|
|
22720
|
-
/** @example 2026-08-24T00:00:00.000000Z */
|
|
22721
|
-
end_date?: string;
|
|
22722
|
-
/** @example false */
|
|
22723
|
-
is_periodic?: boolean;
|
|
22724
|
-
/** @example null */
|
|
22725
|
-
company_name?: string | null;
|
|
22726
|
-
/** @example null */
|
|
22727
|
-
company_registration_number?: string | null;
|
|
22728
|
-
/** @example 2026-05-01T15:19:25.000000Z */
|
|
22729
|
-
created_at?: string;
|
|
22730
|
-
}[];
|
|
22731
|
-
links?: {
|
|
22732
|
-
/** @example /?page=1 */
|
|
22733
|
-
first?: string;
|
|
22734
|
-
/** @example /?page=1 */
|
|
22735
|
-
last?: string;
|
|
22736
|
-
/** @example null */
|
|
22737
|
-
prev?: string | null;
|
|
22738
|
-
/** @example null */
|
|
22739
|
-
next?: string | null;
|
|
22740
|
-
};
|
|
22741
|
-
meta?: {
|
|
22742
|
-
/** @example 1 */
|
|
22743
|
-
current_page?: number;
|
|
22744
|
-
/** @example 1 */
|
|
22745
|
-
from?: number;
|
|
22746
|
-
/** @example 1 */
|
|
22747
|
-
last_page?: number;
|
|
22748
|
-
/**
|
|
22749
|
-
* @example [
|
|
22750
|
-
* {
|
|
22751
|
-
* "url": null,
|
|
22752
|
-
* "label": "« Previous",
|
|
22753
|
-
* "page": null,
|
|
22754
|
-
* "active": false
|
|
22755
|
-
* },
|
|
22756
|
-
* {
|
|
22757
|
-
* "url": "/?page=1",
|
|
22758
|
-
* "label": "1",
|
|
22759
|
-
* "page": 1,
|
|
22760
|
-
* "active": true
|
|
22761
|
-
* },
|
|
22762
|
-
* {
|
|
22763
|
-
* "url": null,
|
|
22764
|
-
* "label": "Next »",
|
|
22765
|
-
* "page": null,
|
|
22766
|
-
* "active": false
|
|
22767
|
-
* }
|
|
22768
|
-
* ]
|
|
22769
|
-
*/
|
|
22770
|
-
links?: {
|
|
22771
|
-
/** @example null */
|
|
22772
|
-
url?: string | null;
|
|
22773
|
-
/** @example « Previous */
|
|
22774
|
-
label?: string;
|
|
22775
|
-
/** @example null */
|
|
22776
|
-
page?: string | null;
|
|
22777
|
-
/** @example false */
|
|
22778
|
-
active?: boolean;
|
|
22779
|
-
}[];
|
|
22780
|
-
/** @example / */
|
|
22781
|
-
path?: string;
|
|
22782
|
-
/** @example 10 */
|
|
22783
|
-
per_page?: number;
|
|
22784
|
-
/** @example 2 */
|
|
22785
|
-
to?: number;
|
|
22786
|
-
/** @example 2 */
|
|
22787
|
-
total?: number;
|
|
22788
|
-
};
|
|
22789
|
-
};
|
|
22790
|
-
};
|
|
22791
|
-
};
|
|
22792
|
-
};
|
|
22793
|
-
};
|
|
22794
|
-
submitTenancyCompliance: {
|
|
22795
|
-
parameters: {
|
|
22796
|
-
query?: never;
|
|
22797
|
-
header?: never;
|
|
22798
|
-
path: {
|
|
22799
|
-
/** @description The UID of the tenancy. */
|
|
22800
|
-
tenancy_uid: string;
|
|
23130
|
+
/** @description The UID of the tenancy. */
|
|
23131
|
+
tenancy_uid: string;
|
|
22801
23132
|
};
|
|
22802
23133
|
cookie?: never;
|
|
22803
23134
|
};
|
|
@@ -22832,7 +23163,7 @@ export interface operations {
|
|
|
22832
23163
|
content: {
|
|
22833
23164
|
"application/json": {
|
|
22834
23165
|
data?: {
|
|
22835
|
-
/** @example
|
|
23166
|
+
/** @example 85 */
|
|
22836
23167
|
id?: number;
|
|
22837
23168
|
compliance?: {
|
|
22838
23169
|
/** @example 1 */
|
|
@@ -22852,9 +23183,9 @@ export interface operations {
|
|
|
22852
23183
|
rejection_reason?: string | null;
|
|
22853
23184
|
/** @example 1 */
|
|
22854
23185
|
reviewed_by?: number;
|
|
22855
|
-
/** @example 2026-05-
|
|
23186
|
+
/** @example 2026-05-06T12:40:03.000000Z */
|
|
22856
23187
|
reviewed_at?: string;
|
|
22857
|
-
/** @example 2026-05-
|
|
23188
|
+
/** @example 2026-05-06T12:40:03.000000Z */
|
|
22858
23189
|
created_at?: string;
|
|
22859
23190
|
};
|
|
22860
23191
|
};
|
|
@@ -22881,7 +23212,7 @@ export interface operations {
|
|
|
22881
23212
|
content: {
|
|
22882
23213
|
"application/json": {
|
|
22883
23214
|
data?: {
|
|
22884
|
-
/** @example
|
|
23215
|
+
/** @example 86 */
|
|
22885
23216
|
id?: number;
|
|
22886
23217
|
compliance?: {
|
|
22887
23218
|
/** @example 1 */
|
|
@@ -22901,9 +23232,9 @@ export interface operations {
|
|
|
22901
23232
|
rejection_reason?: string | null;
|
|
22902
23233
|
/** @example 1 */
|
|
22903
23234
|
reviewed_by?: number;
|
|
22904
|
-
/** @example 2026-05-
|
|
23235
|
+
/** @example 2026-05-06T12:40:03.000000Z */
|
|
22905
23236
|
reviewed_at?: string;
|
|
22906
|
-
/** @example 2026-05-
|
|
23237
|
+
/** @example 2026-05-06T12:40:03.000000Z */
|
|
22907
23238
|
created_at?: string;
|
|
22908
23239
|
};
|
|
22909
23240
|
};
|
|
@@ -23785,17 +24116,17 @@ export interface operations {
|
|
|
23785
24116
|
content: {
|
|
23786
24117
|
"application/json": {
|
|
23787
24118
|
data?: {
|
|
23788
|
-
/** @example
|
|
24119
|
+
/** @example 6b4e9a1a-067d-47d2-abf7-156406afe774 */
|
|
23789
24120
|
uid?: string;
|
|
23790
|
-
/** @example
|
|
24121
|
+
/** @example Dolor ea natus vel. */
|
|
23791
24122
|
note?: string;
|
|
23792
24123
|
user?: {
|
|
23793
|
-
/** @example
|
|
24124
|
+
/** @example 9 */
|
|
23794
24125
|
id?: number;
|
|
23795
|
-
/** @example
|
|
24126
|
+
/** @example Carrie Johnson */
|
|
23796
24127
|
name?: string;
|
|
23797
24128
|
};
|
|
23798
|
-
/** @example 2026-04-
|
|
24129
|
+
/** @example 2026-04-27 22:15:17 */
|
|
23799
24130
|
created_at?: string;
|
|
23800
24131
|
};
|
|
23801
24132
|
};
|
|
@@ -23986,6 +24317,155 @@ export interface operations {
|
|
|
23986
24317
|
};
|
|
23987
24318
|
};
|
|
23988
24319
|
};
|
|
24320
|
+
fetchMaintenanceRequest: {
|
|
24321
|
+
parameters: {
|
|
24322
|
+
query?: never;
|
|
24323
|
+
header?: never;
|
|
24324
|
+
path: {
|
|
24325
|
+
/** @description The UID of the maintenance request. */
|
|
24326
|
+
uid: string;
|
|
24327
|
+
};
|
|
24328
|
+
cookie?: never;
|
|
24329
|
+
};
|
|
24330
|
+
requestBody?: never;
|
|
24331
|
+
responses: {
|
|
24332
|
+
200: {
|
|
24333
|
+
headers: {
|
|
24334
|
+
[name: string]: unknown;
|
|
24335
|
+
};
|
|
24336
|
+
content: {
|
|
24337
|
+
"application/json": {
|
|
24338
|
+
/** @example Maintenance request fetched successfully */
|
|
24339
|
+
message?: string;
|
|
24340
|
+
/** @example null */
|
|
24341
|
+
event?: string | null;
|
|
24342
|
+
data?: {
|
|
24343
|
+
/** @example maint_83fd12 */
|
|
24344
|
+
uid?: string;
|
|
24345
|
+
/** @example Leaking kitchen sink */
|
|
24346
|
+
title?: string;
|
|
24347
|
+
/** @example Water has been dripping continuously under the sink cabinet. */
|
|
24348
|
+
description?: string;
|
|
24349
|
+
/** @example reported */
|
|
24350
|
+
status?: string;
|
|
24351
|
+
/** @example urgent */
|
|
24352
|
+
priority?: string;
|
|
24353
|
+
/** @example 2026-04-01T10:00:00Z */
|
|
24354
|
+
reported_at?: string;
|
|
24355
|
+
/** @example null */
|
|
24356
|
+
assigned_at?: string | null;
|
|
24357
|
+
/** @example null */
|
|
24358
|
+
completed_at?: string | null;
|
|
24359
|
+
/** @example 2026-04-02T10:00:00Z */
|
|
24360
|
+
sla_deadline?: string;
|
|
24361
|
+
listing?: {
|
|
24362
|
+
/** @example 7 */
|
|
24363
|
+
id?: number;
|
|
24364
|
+
/** @example 54c1fd9b-8720-43e6-be3d-d4283477f38b */
|
|
24365
|
+
uid?: string;
|
|
24366
|
+
};
|
|
24367
|
+
reporter?: {
|
|
24368
|
+
/** @example usr_123 */
|
|
24369
|
+
id?: string;
|
|
24370
|
+
/** @example Jane Doe */
|
|
24371
|
+
name?: string;
|
|
24372
|
+
};
|
|
24373
|
+
/** @example null */
|
|
24374
|
+
technician?: string | null;
|
|
24375
|
+
/**
|
|
24376
|
+
* @example [
|
|
24377
|
+
* {
|
|
24378
|
+
* "uid": "mu_34fda1",
|
|
24379
|
+
* "note": "Inspection visit scheduled.",
|
|
24380
|
+
* "user": {
|
|
24381
|
+
* "id": 12,
|
|
24382
|
+
* "name": "Inspector Jane Doe"
|
|
24383
|
+
* },
|
|
24384
|
+
* "created_at": "2026-04-01T09:30:00Z"
|
|
24385
|
+
* }
|
|
24386
|
+
* ]
|
|
24387
|
+
*/
|
|
24388
|
+
updates?: {
|
|
24389
|
+
/** @example mu_34fda1 */
|
|
24390
|
+
uid?: string;
|
|
24391
|
+
/** @example Inspection visit scheduled. */
|
|
24392
|
+
note?: string;
|
|
24393
|
+
user?: {
|
|
24394
|
+
/** @example 12 */
|
|
24395
|
+
id?: number;
|
|
24396
|
+
/** @example Inspector Jane Doe */
|
|
24397
|
+
name?: string;
|
|
24398
|
+
};
|
|
24399
|
+
/** @example 2026-04-01T09:30:00Z */
|
|
24400
|
+
created_at?: string;
|
|
24401
|
+
}[];
|
|
24402
|
+
/**
|
|
24403
|
+
* @example [
|
|
24404
|
+
* {
|
|
24405
|
+
* "uid": "mnt_34fda1",
|
|
24406
|
+
* "file_type": "image/jpeg",
|
|
24407
|
+
* "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
|
|
24408
|
+
* "uploaded_by": {
|
|
24409
|
+
* "id": 12,
|
|
24410
|
+
* "name": "Inspector Jane Doe"
|
|
24411
|
+
* },
|
|
24412
|
+
* "created_at": "2026-04-01T09:15:00Z"
|
|
24413
|
+
* }
|
|
24414
|
+
* ]
|
|
24415
|
+
*/
|
|
24416
|
+
attachments?: {
|
|
24417
|
+
/** @example mnt_34fda1 */
|
|
24418
|
+
uid?: string;
|
|
24419
|
+
/** @example image/jpeg */
|
|
24420
|
+
file_type?: string;
|
|
24421
|
+
/** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
|
|
24422
|
+
url?: string;
|
|
24423
|
+
uploaded_by?: {
|
|
24424
|
+
/** @example 12 */
|
|
24425
|
+
id?: number;
|
|
24426
|
+
/** @example Inspector Jane Doe */
|
|
24427
|
+
name?: string;
|
|
24428
|
+
};
|
|
24429
|
+
/** @example 2026-04-01T09:15:00Z */
|
|
24430
|
+
created_at?: string;
|
|
24431
|
+
}[];
|
|
24432
|
+
/** @example 2026-04-01T10:00:00Z */
|
|
24433
|
+
created_at?: string;
|
|
24434
|
+
/** @example 2026-04-01T10:00:00Z */
|
|
24435
|
+
updated_at?: string;
|
|
24436
|
+
};
|
|
24437
|
+
} | {
|
|
24438
|
+
data?: {
|
|
24439
|
+
/** @example 1e8fabeb-ab64-4e60-ad99-bf5a7d297680 */
|
|
24440
|
+
uid?: string;
|
|
24441
|
+
/** @example 1 */
|
|
24442
|
+
tenancy_id?: number;
|
|
24443
|
+
/** @example Qui commodi incidunt iure. */
|
|
24444
|
+
title?: string;
|
|
24445
|
+
/** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
|
|
24446
|
+
description?: string;
|
|
24447
|
+
/** @example breach */
|
|
24448
|
+
status?: string;
|
|
24449
|
+
/** @example low */
|
|
24450
|
+
priority?: string;
|
|
24451
|
+
/** @example 05 May 2026, 02:08 AM */
|
|
24452
|
+
reported_at?: string;
|
|
24453
|
+
/** @example null */
|
|
24454
|
+
assigned_at?: string | null;
|
|
24455
|
+
/** @example null */
|
|
24456
|
+
completed_at?: string | null;
|
|
24457
|
+
/** @example 07 May 2026, 10:33 PM */
|
|
24458
|
+
sla_deadline?: string;
|
|
24459
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
24460
|
+
created_at?: string;
|
|
24461
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
24462
|
+
updated_at?: string;
|
|
24463
|
+
};
|
|
24464
|
+
};
|
|
24465
|
+
};
|
|
24466
|
+
};
|
|
24467
|
+
};
|
|
24468
|
+
};
|
|
23989
24469
|
reportMaintenance: {
|
|
23990
24470
|
parameters: {
|
|
23991
24471
|
query?: never;
|
|
@@ -24035,37 +24515,37 @@ export interface operations {
|
|
|
24035
24515
|
/**
|
|
24036
24516
|
* @example [
|
|
24037
24517
|
* {
|
|
24038
|
-
* "uid": "
|
|
24518
|
+
* "uid": "e779bbe7-4f17-4116-9a99-5c088e04b8a2",
|
|
24039
24519
|
* "tenancy_id": 1,
|
|
24040
24520
|
* "title": "Quos velit et fugiat sunt nihil.",
|
|
24041
24521
|
* "description": "Mollitia modi deserunt aut ab provident perspiciatis quo. Nostrum aut adipisci quidem nostrum. Commodi incidunt iure odit. Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora.",
|
|
24042
24522
|
* "status": "reported",
|
|
24043
24523
|
* "priority": "emergency",
|
|
24044
|
-
* "reported_at": "
|
|
24045
|
-
* "assigned_at": "
|
|
24524
|
+
* "reported_at": "29 Apr 2026, 11:53 PM",
|
|
24525
|
+
* "assigned_at": "04 May 2026, 08:13 PM",
|
|
24046
24526
|
* "completed_at": null,
|
|
24047
|
-
* "sla_deadline": "
|
|
24048
|
-
* "created_at": "
|
|
24049
|
-
* "updated_at": "
|
|
24527
|
+
* "sla_deadline": "08 May 2026, 01:35 AM",
|
|
24528
|
+
* "created_at": "06 May 2026, 12:40 PM",
|
|
24529
|
+
* "updated_at": "06 May 2026, 12:40 PM"
|
|
24050
24530
|
* },
|
|
24051
24531
|
* {
|
|
24052
|
-
* "uid": "
|
|
24532
|
+
* "uid": "651d8e66-4b59-4082-bda1-31d55c3df60e",
|
|
24053
24533
|
* "tenancy_id": 1,
|
|
24054
24534
|
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
24055
24535
|
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
24056
24536
|
* "status": "completed",
|
|
24057
24537
|
* "priority": "normal",
|
|
24058
|
-
* "reported_at": "
|
|
24538
|
+
* "reported_at": "02 May 2026, 12:32 PM",
|
|
24059
24539
|
* "assigned_at": null,
|
|
24060
24540
|
* "completed_at": null,
|
|
24061
|
-
* "sla_deadline": "
|
|
24062
|
-
* "created_at": "
|
|
24063
|
-
* "updated_at": "
|
|
24541
|
+
* "sla_deadline": "09 May 2026, 09:35 AM",
|
|
24542
|
+
* "created_at": "06 May 2026, 12:40 PM",
|
|
24543
|
+
* "updated_at": "06 May 2026, 12:40 PM"
|
|
24064
24544
|
* }
|
|
24065
24545
|
* ]
|
|
24066
24546
|
*/
|
|
24067
24547
|
data?: {
|
|
24068
|
-
/** @example
|
|
24548
|
+
/** @example e779bbe7-4f17-4116-9a99-5c088e04b8a2 */
|
|
24069
24549
|
uid?: string;
|
|
24070
24550
|
/** @example 1 */
|
|
24071
24551
|
tenancy_id?: number;
|
|
@@ -24077,17 +24557,17 @@ export interface operations {
|
|
|
24077
24557
|
status?: string;
|
|
24078
24558
|
/** @example emergency */
|
|
24079
24559
|
priority?: string;
|
|
24080
|
-
/** @example
|
|
24560
|
+
/** @example 29 Apr 2026, 11:53 PM */
|
|
24081
24561
|
reported_at?: string;
|
|
24082
|
-
/** @example
|
|
24562
|
+
/** @example 04 May 2026, 08:13 PM */
|
|
24083
24563
|
assigned_at?: string;
|
|
24084
24564
|
/** @example null */
|
|
24085
24565
|
completed_at?: string | null;
|
|
24086
|
-
/** @example
|
|
24566
|
+
/** @example 08 May 2026, 01:35 AM */
|
|
24087
24567
|
sla_deadline?: string;
|
|
24088
|
-
/** @example
|
|
24568
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
24089
24569
|
created_at?: string;
|
|
24090
|
-
/** @example
|
|
24570
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
24091
24571
|
updated_at?: string;
|
|
24092
24572
|
}[];
|
|
24093
24573
|
links?: {
|
|
@@ -24203,13 +24683,13 @@ export interface operations {
|
|
|
24203
24683
|
};
|
|
24204
24684
|
} | {
|
|
24205
24685
|
data?: {
|
|
24206
|
-
/** @example
|
|
24686
|
+
/** @example 267bf2ab-7ae4-49f2-94e8-e2b4388afcbd */
|
|
24207
24687
|
uid?: string;
|
|
24208
24688
|
/** @example image */
|
|
24209
24689
|
file_type?: string;
|
|
24210
24690
|
/** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
24211
24691
|
url?: string;
|
|
24212
|
-
/** @example 2026-05-
|
|
24692
|
+
/** @example 2026-05-06T12:40:04.000000Z */
|
|
24213
24693
|
created_at?: string;
|
|
24214
24694
|
};
|
|
24215
24695
|
};
|
|
@@ -24254,7 +24734,7 @@ export interface operations {
|
|
|
24254
24734
|
content: {
|
|
24255
24735
|
"application/json": {
|
|
24256
24736
|
data?: {
|
|
24257
|
-
/** @example
|
|
24737
|
+
/** @example 4 */
|
|
24258
24738
|
id?: number;
|
|
24259
24739
|
type?: {
|
|
24260
24740
|
/** @example property_inquiry */
|
|
@@ -24262,25 +24742,28 @@ export interface operations {
|
|
|
24262
24742
|
/** @example Property Inquiry */
|
|
24263
24743
|
label?: string;
|
|
24264
24744
|
};
|
|
24265
|
-
/** @example
|
|
24745
|
+
/** @example c9ae501b-2616-4ed1-b4ff-1255918fbd5f */
|
|
24266
24746
|
listing_uid?: string;
|
|
24267
24747
|
listing?: {
|
|
24268
|
-
/** @example
|
|
24748
|
+
/** @example c9ae501b-2616-4ed1-b4ff-1255918fbd5f */
|
|
24269
24749
|
uid?: string;
|
|
24270
|
-
/** @example
|
|
24750
|
+
/** @example Excepturi voluptatum qui sed. */
|
|
24271
24751
|
title?: string;
|
|
24272
|
-
/**
|
|
24752
|
+
/**
|
|
24753
|
+
* @example Studio 13
|
|
24754
|
+
* Darren Cliff
|
|
24755
|
+
*/
|
|
24273
24756
|
address?: string;
|
|
24274
|
-
/** @example
|
|
24757
|
+
/** @example sale */
|
|
24275
24758
|
listing_type?: string;
|
|
24276
|
-
/** @example
|
|
24759
|
+
/** @example Sale */
|
|
24277
24760
|
listing_type_label?: string;
|
|
24278
24761
|
cover?: {
|
|
24279
|
-
/** @example
|
|
24762
|
+
/** @example 52eb0be2-684f-4759-8111-de65806fd34a */
|
|
24280
24763
|
uid?: string;
|
|
24281
24764
|
/** @example photo */
|
|
24282
24765
|
media_type?: string;
|
|
24283
|
-
/** @example http://justinshome-backendcore.test/storage/listings/
|
|
24766
|
+
/** @example http://justinshome-backendcore.test/storage/listings/property-sale-placeholder.png */
|
|
24284
24767
|
storage_path?: string;
|
|
24285
24768
|
/** @example 1 */
|
|
24286
24769
|
order_index?: number;
|
|
@@ -24288,15 +24771,15 @@ export interface operations {
|
|
|
24288
24771
|
is_cover?: boolean;
|
|
24289
24772
|
};
|
|
24290
24773
|
owner?: {
|
|
24291
|
-
/** @example
|
|
24774
|
+
/** @example 6 */
|
|
24292
24775
|
id?: number;
|
|
24293
|
-
/** @example
|
|
24776
|
+
/** @example eb392d5c-1dcf-43a6-a000-a27d8b68f9c5 */
|
|
24294
24777
|
uid?: string;
|
|
24295
|
-
/** @example
|
|
24778
|
+
/** @example Yvonne Moore */
|
|
24296
24779
|
name?: string;
|
|
24297
|
-
/** @example
|
|
24780
|
+
/** @example landlord5@justinshome.test */
|
|
24298
24781
|
email?: string;
|
|
24299
|
-
/** @example
|
|
24782
|
+
/** @example 08092300754 */
|
|
24300
24783
|
phone?: string;
|
|
24301
24784
|
/** @example null */
|
|
24302
24785
|
avatar_path?: string | null;
|
|
@@ -24305,14 +24788,14 @@ export interface operations {
|
|
|
24305
24788
|
created_by?: {
|
|
24306
24789
|
/** @example 2 */
|
|
24307
24790
|
id?: number;
|
|
24308
|
-
/** @example
|
|
24791
|
+
/** @example 326eb529-3699-47bd-9969-b49e75937175 */
|
|
24309
24792
|
uid?: string;
|
|
24310
|
-
/** @example
|
|
24793
|
+
/** @example Vicky Ross */
|
|
24311
24794
|
name?: string;
|
|
24312
24795
|
};
|
|
24313
24796
|
/** @example null */
|
|
24314
24797
|
last_message_at?: string | null;
|
|
24315
|
-
/** @example
|
|
24798
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
24316
24799
|
created_at?: string;
|
|
24317
24800
|
};
|
|
24318
24801
|
};
|
|
@@ -24764,7 +25247,7 @@ export interface operations {
|
|
|
24764
25247
|
};
|
|
24765
25248
|
content: {
|
|
24766
25249
|
"application/json": {
|
|
24767
|
-
/** @example
|
|
25250
|
+
/** @example d36488e0-31b0-466d-9e98-d5bc28c06a85 */
|
|
24768
25251
|
id?: string;
|
|
24769
25252
|
/** @example APPOINTMENT_CREATED */
|
|
24770
25253
|
type?: string;
|
|
@@ -24776,7 +25259,7 @@ export interface operations {
|
|
|
24776
25259
|
data?: unknown[];
|
|
24777
25260
|
/** @example null */
|
|
24778
25261
|
read_at?: string | null;
|
|
24779
|
-
/** @example
|
|
25262
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
24780
25263
|
created_at?: string;
|
|
24781
25264
|
};
|
|
24782
25265
|
};
|
|
@@ -24882,9 +25365,9 @@ export interface operations {
|
|
|
24882
25365
|
content: {
|
|
24883
25366
|
"application/json": {
|
|
24884
25367
|
data?: {
|
|
24885
|
-
/** @example
|
|
25368
|
+
/** @example aut */
|
|
24886
25369
|
key?: string;
|
|
24887
|
-
/** @example
|
|
25370
|
+
/** @example adipisci */
|
|
24888
25371
|
name?: string;
|
|
24889
25372
|
/** @example soft */
|
|
24890
25373
|
enforcement_mode?: string;
|
|
@@ -25022,7 +25505,7 @@ export interface operations {
|
|
|
25022
25505
|
content: {
|
|
25023
25506
|
"application/json": {
|
|
25024
25507
|
data?: {
|
|
25025
|
-
/** @example
|
|
25508
|
+
/** @example 88e1141f-fe47-4d83-bbee-5551dec0ca21 */
|
|
25026
25509
|
uid?: string;
|
|
25027
25510
|
/** @example JH-APP-2026-089432 */
|
|
25028
25511
|
application_ref?: string;
|
|
@@ -25043,7 +25526,7 @@ export interface operations {
|
|
|
25043
25526
|
/** @example null */
|
|
25044
25527
|
rejection_reason?: string | null;
|
|
25045
25528
|
timeline?: {
|
|
25046
|
-
/** @example
|
|
25529
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25047
25530
|
created_at?: string;
|
|
25048
25531
|
/** @example null */
|
|
25049
25532
|
approved_at?: string | null;
|
|
@@ -25083,12 +25566,12 @@ export interface operations {
|
|
|
25083
25566
|
*/
|
|
25084
25567
|
search?: string | null;
|
|
25085
25568
|
/**
|
|
25086
|
-
* @example
|
|
25569
|
+
* @example rejected
|
|
25087
25570
|
* @enum {string|null}
|
|
25088
25571
|
*/
|
|
25089
25572
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
25090
25573
|
/**
|
|
25091
|
-
* @example
|
|
25574
|
+
* @example admin
|
|
25092
25575
|
* @enum {string|null}
|
|
25093
25576
|
*/
|
|
25094
25577
|
source?: "tenant" | "landlord" | "admin" | null;
|
|
@@ -25406,7 +25889,7 @@ export interface operations {
|
|
|
25406
25889
|
content: {
|
|
25407
25890
|
"application/json": {
|
|
25408
25891
|
data?: {
|
|
25409
|
-
/** @example
|
|
25892
|
+
/** @example 43cc677f-7b83-4823-b1fb-a438d959b72e */
|
|
25410
25893
|
uid?: string;
|
|
25411
25894
|
/** @example JH-APP-2026-700432 */
|
|
25412
25895
|
application_ref?: string;
|
|
@@ -25427,7 +25910,7 @@ export interface operations {
|
|
|
25427
25910
|
/** @example null */
|
|
25428
25911
|
rejection_reason?: string | null;
|
|
25429
25912
|
timeline?: {
|
|
25430
|
-
/** @example
|
|
25913
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25431
25914
|
created_at?: string;
|
|
25432
25915
|
/** @example null */
|
|
25433
25916
|
approved_at?: string | null;
|
|
@@ -25444,7 +25927,14 @@ export interface operations {
|
|
|
25444
25927
|
};
|
|
25445
25928
|
fetchAllReview: {
|
|
25446
25929
|
parameters: {
|
|
25447
|
-
query
|
|
25930
|
+
query: {
|
|
25931
|
+
/** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
|
|
25932
|
+
reviewable_type: string;
|
|
25933
|
+
/** @description Number of records per page. */
|
|
25934
|
+
per_page?: number;
|
|
25935
|
+
/** @description Current page number. */
|
|
25936
|
+
page?: number;
|
|
25937
|
+
};
|
|
25448
25938
|
header?: never;
|
|
25449
25939
|
path?: never;
|
|
25450
25940
|
cookie?: never;
|
|
@@ -25485,12 +25975,13 @@ export interface operations {
|
|
|
25485
25975
|
* "id": 1,
|
|
25486
25976
|
* "rating": 5,
|
|
25487
25977
|
* "comment": "Excellent service.",
|
|
25978
|
+
* "reviewable_type": "listing",
|
|
25488
25979
|
* "reviewer": {
|
|
25489
25980
|
* "id": 20,
|
|
25490
25981
|
* "name": "Sarah Jenkins"
|
|
25491
25982
|
* },
|
|
25492
|
-
* "created_at": "2026
|
|
25493
|
-
* "updated_at": "2026
|
|
25983
|
+
* "created_at": "28 Apr, 2026 09:00 AM",
|
|
25984
|
+
* "updated_at": "28 Apr, 2026 09:00 AM"
|
|
25494
25985
|
* }
|
|
25495
25986
|
* ]
|
|
25496
25987
|
*/
|
|
@@ -25501,15 +25992,17 @@ export interface operations {
|
|
|
25501
25992
|
rating?: number;
|
|
25502
25993
|
/** @example Excellent service. */
|
|
25503
25994
|
comment?: string;
|
|
25995
|
+
/** @example listing */
|
|
25996
|
+
reviewable_type?: string;
|
|
25504
25997
|
reviewer?: {
|
|
25505
25998
|
/** @example 20 */
|
|
25506
25999
|
id?: number;
|
|
25507
26000
|
/** @example Sarah Jenkins */
|
|
25508
26001
|
name?: string;
|
|
25509
26002
|
};
|
|
25510
|
-
/** @example 2026
|
|
26003
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
25511
26004
|
created_at?: string;
|
|
25512
|
-
/** @example 2026
|
|
26005
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
25513
26006
|
updated_at?: string;
|
|
25514
26007
|
}[];
|
|
25515
26008
|
pagination?: {
|
|
@@ -25532,35 +26025,189 @@ export interface operations {
|
|
|
25532
26025
|
};
|
|
25533
26026
|
};
|
|
25534
26027
|
};
|
|
25535
|
-
|
|
26028
|
+
fetchOneReview: {
|
|
25536
26029
|
parameters: {
|
|
25537
26030
|
query?: never;
|
|
25538
26031
|
header?: never;
|
|
26032
|
+
path: {
|
|
26033
|
+
/** @description The ID of the review. */
|
|
26034
|
+
review_id: number;
|
|
26035
|
+
};
|
|
26036
|
+
cookie?: never;
|
|
26037
|
+
};
|
|
26038
|
+
requestBody?: never;
|
|
26039
|
+
responses: {
|
|
26040
|
+
/** @description Retrieve a single review */
|
|
26041
|
+
200: {
|
|
26042
|
+
headers: {
|
|
26043
|
+
[name: string]: unknown;
|
|
26044
|
+
};
|
|
26045
|
+
content: {
|
|
26046
|
+
"application/json": {
|
|
26047
|
+
/** @example Review retrieved successfully */
|
|
26048
|
+
message?: string;
|
|
26049
|
+
/** @example null */
|
|
26050
|
+
event?: string | null;
|
|
26051
|
+
data?: {
|
|
26052
|
+
/** @example 15 */
|
|
26053
|
+
id?: number;
|
|
26054
|
+
/** @example 5 */
|
|
26055
|
+
rating?: number;
|
|
26056
|
+
/** @example Excellent service. */
|
|
26057
|
+
comment?: string;
|
|
26058
|
+
/** @example listing */
|
|
26059
|
+
reviewable_type?: string;
|
|
26060
|
+
reviewable?: {
|
|
26061
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
26062
|
+
uid?: string;
|
|
26063
|
+
/** @example 24 Windsor Court */
|
|
26064
|
+
title?: string;
|
|
26065
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
26066
|
+
address?: string;
|
|
26067
|
+
cover?: {
|
|
26068
|
+
/** @example lm_34fda1 */
|
|
26069
|
+
uid?: string;
|
|
26070
|
+
/** @example image/jpeg */
|
|
26071
|
+
media_type?: string;
|
|
26072
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
26073
|
+
storage_path?: string;
|
|
26074
|
+
/** @example 0 */
|
|
26075
|
+
order_index?: number;
|
|
26076
|
+
/** @example true */
|
|
26077
|
+
is_cover?: boolean;
|
|
26078
|
+
};
|
|
26079
|
+
type?: {
|
|
26080
|
+
/** @example long_term_rent */
|
|
26081
|
+
value?: string;
|
|
26082
|
+
/** @example Rent */
|
|
26083
|
+
label?: string;
|
|
26084
|
+
};
|
|
26085
|
+
vertical?: {
|
|
26086
|
+
/** @example property */
|
|
26087
|
+
value?: string;
|
|
26088
|
+
/** @example Property */
|
|
26089
|
+
label?: string;
|
|
26090
|
+
};
|
|
26091
|
+
};
|
|
26092
|
+
reviewer?: {
|
|
26093
|
+
/** @example user_ajka asjkasj */
|
|
26094
|
+
uid?: string;
|
|
26095
|
+
/** @example Sarah Jenkins */
|
|
26096
|
+
name?: string;
|
|
26097
|
+
};
|
|
26098
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
26099
|
+
created_at?: string;
|
|
26100
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
26101
|
+
updated_at?: string;
|
|
26102
|
+
};
|
|
26103
|
+
};
|
|
26104
|
+
};
|
|
26105
|
+
};
|
|
26106
|
+
};
|
|
26107
|
+
};
|
|
26108
|
+
fetchAllReviewForReviewable: {
|
|
26109
|
+
parameters: {
|
|
26110
|
+
query: {
|
|
26111
|
+
/** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
|
|
26112
|
+
reviewable_type: string;
|
|
26113
|
+
/** @description UID of the reviewable entity. */
|
|
26114
|
+
reviewable_uid: string;
|
|
26115
|
+
/** @description Number of records per page. */
|
|
26116
|
+
per_page?: number;
|
|
26117
|
+
/** @description Current page number. */
|
|
26118
|
+
page?: number;
|
|
26119
|
+
};
|
|
26120
|
+
header?: never;
|
|
25539
26121
|
path?: never;
|
|
25540
26122
|
cookie?: never;
|
|
25541
26123
|
};
|
|
25542
|
-
requestBody
|
|
25543
|
-
|
|
25544
|
-
|
|
25545
|
-
|
|
25546
|
-
|
|
25547
|
-
|
|
25548
|
-
|
|
25549
|
-
|
|
25550
|
-
|
|
25551
|
-
|
|
25552
|
-
|
|
25553
|
-
|
|
25554
|
-
|
|
25555
|
-
|
|
25556
|
-
|
|
25557
|
-
|
|
25558
|
-
|
|
25559
|
-
|
|
25560
|
-
|
|
26124
|
+
requestBody?: never;
|
|
26125
|
+
responses: {
|
|
26126
|
+
/** @description Retrieve all reviews for a specific reviewable entity */
|
|
26127
|
+
200: {
|
|
26128
|
+
headers: {
|
|
26129
|
+
[name: string]: unknown;
|
|
26130
|
+
};
|
|
26131
|
+
content: {
|
|
26132
|
+
"application/json": {
|
|
26133
|
+
/** @example Review retrieved successfully */
|
|
26134
|
+
message?: string;
|
|
26135
|
+
/** @example null */
|
|
26136
|
+
event?: string | null;
|
|
26137
|
+
data?: {
|
|
26138
|
+
/**
|
|
26139
|
+
* @example [
|
|
26140
|
+
* {
|
|
26141
|
+
* "id": 1,
|
|
26142
|
+
* "rating": 5,
|
|
26143
|
+
* "comment": "Excellent service.",
|
|
26144
|
+
* "reviewable_type": "listing",
|
|
26145
|
+
* "reviewer": {
|
|
26146
|
+
* "uid": "sj akjasas",
|
|
26147
|
+
* "name": "Sarah Jenkins"
|
|
26148
|
+
* },
|
|
26149
|
+
* "created_at": "28 Apr, 2026 09:00 AM",
|
|
26150
|
+
* "updated_at": "28 Apr, 2026 09:00 AM"
|
|
26151
|
+
* }
|
|
26152
|
+
* ]
|
|
26153
|
+
*/
|
|
26154
|
+
items?: {
|
|
26155
|
+
/** @example 1 */
|
|
26156
|
+
id?: number;
|
|
26157
|
+
/** @example 5 */
|
|
26158
|
+
rating?: number;
|
|
26159
|
+
/** @example Excellent service. */
|
|
26160
|
+
comment?: string;
|
|
26161
|
+
/** @example listing */
|
|
26162
|
+
reviewable_type?: string;
|
|
26163
|
+
reviewer?: {
|
|
26164
|
+
/** @example sj akjasas */
|
|
26165
|
+
uid?: string;
|
|
26166
|
+
/** @example Sarah Jenkins */
|
|
26167
|
+
name?: string;
|
|
26168
|
+
};
|
|
26169
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
26170
|
+
created_at?: string;
|
|
26171
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
26172
|
+
updated_at?: string;
|
|
26173
|
+
}[];
|
|
26174
|
+
pagination?: {
|
|
26175
|
+
/** @example 1 */
|
|
26176
|
+
current_page?: number;
|
|
26177
|
+
/** @example 15 */
|
|
26178
|
+
per_page?: number;
|
|
26179
|
+
/** @example 0 */
|
|
26180
|
+
total?: number;
|
|
26181
|
+
/** @example 1 */
|
|
26182
|
+
last_page?: number;
|
|
26183
|
+
/** @example null */
|
|
26184
|
+
from?: string | null;
|
|
26185
|
+
/** @example null */
|
|
26186
|
+
to?: string | null;
|
|
26187
|
+
};
|
|
26188
|
+
};
|
|
26189
|
+
};
|
|
25561
26190
|
};
|
|
25562
26191
|
};
|
|
25563
26192
|
};
|
|
26193
|
+
};
|
|
26194
|
+
ratingSummaryReview: {
|
|
26195
|
+
parameters: {
|
|
26196
|
+
query: {
|
|
26197
|
+
/** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
|
|
26198
|
+
reviewable_type: string;
|
|
26199
|
+
/** @description UID of the reviewable entity. */
|
|
26200
|
+
reviewable_uid: string;
|
|
26201
|
+
/** @description Number of records per page. Must be between 1 and 100. */
|
|
26202
|
+
per_page?: number;
|
|
26203
|
+
/** @description Current page number. Must be at least 1. */
|
|
26204
|
+
page?: number;
|
|
26205
|
+
};
|
|
26206
|
+
header?: never;
|
|
26207
|
+
path?: never;
|
|
26208
|
+
cookie?: never;
|
|
26209
|
+
};
|
|
26210
|
+
requestBody?: never;
|
|
25564
26211
|
responses: {
|
|
25565
26212
|
/** @description Rating summary retrieved successfully */
|
|
25566
26213
|
200: {
|
|
@@ -25574,7 +26221,7 @@ export interface operations {
|
|
|
25574
26221
|
/** @example null */
|
|
25575
26222
|
event?: string | null;
|
|
25576
26223
|
data?: {
|
|
25577
|
-
/** @example 4 */
|
|
26224
|
+
/** @example 4.5 */
|
|
25578
26225
|
average_rating?: number;
|
|
25579
26226
|
/** @example 3 */
|
|
25580
26227
|
reviews_count?: number;
|
|
@@ -25620,21 +26267,23 @@ export interface operations {
|
|
|
25620
26267
|
content: {
|
|
25621
26268
|
"application/json": {
|
|
25622
26269
|
data?: {
|
|
25623
|
-
/** @example
|
|
26270
|
+
/** @example 13 */
|
|
25624
26271
|
id?: number;
|
|
25625
26272
|
/** @example 1 */
|
|
25626
26273
|
rating?: number;
|
|
25627
26274
|
/** @example Nice Listing */
|
|
25628
26275
|
comment?: string;
|
|
26276
|
+
/** @example listing */
|
|
26277
|
+
reviewable_type?: string;
|
|
25629
26278
|
reviewer?: {
|
|
25630
|
-
/** @example
|
|
25631
|
-
|
|
25632
|
-
/** @example
|
|
26279
|
+
/** @example eb392d5c-1dcf-43a6-a000-a27d8b68f9c5 */
|
|
26280
|
+
uid?: string;
|
|
26281
|
+
/** @example Yvonne Moore */
|
|
25633
26282
|
name?: string;
|
|
25634
26283
|
};
|
|
25635
|
-
/** @example
|
|
26284
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25636
26285
|
created_at?: string;
|
|
25637
|
-
/** @example
|
|
26286
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25638
26287
|
updated_at?: string;
|
|
25639
26288
|
};
|
|
25640
26289
|
};
|
|
@@ -25678,21 +26327,23 @@ export interface operations {
|
|
|
25678
26327
|
content: {
|
|
25679
26328
|
"application/json": {
|
|
25680
26329
|
data?: {
|
|
25681
|
-
/** @example
|
|
26330
|
+
/** @example 14 */
|
|
25682
26331
|
id?: number;
|
|
25683
26332
|
/** @example 1 */
|
|
25684
26333
|
rating?: number;
|
|
25685
26334
|
/** @example Nice Listing */
|
|
25686
26335
|
comment?: string;
|
|
26336
|
+
/** @example listing */
|
|
26337
|
+
reviewable_type?: string;
|
|
25687
26338
|
reviewer?: {
|
|
25688
|
-
/** @example
|
|
25689
|
-
|
|
25690
|
-
/** @example
|
|
26339
|
+
/** @example 131677ca-833e-422a-b76a-3a39e42f1a67 */
|
|
26340
|
+
uid?: string;
|
|
26341
|
+
/** @example Ella Smith */
|
|
25691
26342
|
name?: string;
|
|
25692
26343
|
};
|
|
25693
|
-
/** @example
|
|
26344
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25694
26345
|
created_at?: string;
|
|
25695
|
-
/** @example
|
|
26346
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25696
26347
|
updated_at?: string;
|
|
25697
26348
|
};
|
|
25698
26349
|
};
|
|
@@ -25734,21 +26385,23 @@ export interface operations {
|
|
|
25734
26385
|
content: {
|
|
25735
26386
|
"application/json": {
|
|
25736
26387
|
data?: {
|
|
25737
|
-
/** @example
|
|
26388
|
+
/** @example 15 */
|
|
25738
26389
|
id?: number;
|
|
25739
26390
|
/** @example 1 */
|
|
25740
26391
|
rating?: number;
|
|
25741
26392
|
/** @example Nice Listing */
|
|
25742
26393
|
comment?: string;
|
|
26394
|
+
/** @example listing */
|
|
26395
|
+
reviewable_type?: string;
|
|
25743
26396
|
reviewer?: {
|
|
25744
|
-
/** @example
|
|
25745
|
-
|
|
25746
|
-
/** @example
|
|
26397
|
+
/** @example f2bb2422-f911-4b99-b0ab-1aae03b107ad */
|
|
26398
|
+
uid?: string;
|
|
26399
|
+
/** @example Dave Edwards */
|
|
25747
26400
|
name?: string;
|
|
25748
26401
|
};
|
|
25749
|
-
/** @example
|
|
26402
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25750
26403
|
created_at?: string;
|
|
25751
|
-
/** @example
|
|
26404
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25752
26405
|
updated_at?: string;
|
|
25753
26406
|
};
|
|
25754
26407
|
};
|
|
@@ -25775,21 +26428,23 @@ export interface operations {
|
|
|
25775
26428
|
content: {
|
|
25776
26429
|
"application/json": {
|
|
25777
26430
|
data?: {
|
|
25778
|
-
/** @example
|
|
26431
|
+
/** @example 16 */
|
|
25779
26432
|
id?: number;
|
|
25780
26433
|
/** @example 1 */
|
|
25781
26434
|
rating?: number;
|
|
25782
26435
|
/** @example Nice Listing */
|
|
25783
26436
|
comment?: string;
|
|
26437
|
+
/** @example listing */
|
|
26438
|
+
reviewable_type?: string;
|
|
25784
26439
|
reviewer?: {
|
|
25785
|
-
/** @example
|
|
25786
|
-
|
|
25787
|
-
/** @example
|
|
26440
|
+
/** @example 2adce2cc-cc87-45b5-ab8c-be773aacf3f1 */
|
|
26441
|
+
uid?: string;
|
|
26442
|
+
/** @example Kyle Hunter */
|
|
25788
26443
|
name?: string;
|
|
25789
26444
|
};
|
|
25790
|
-
/** @example
|
|
26445
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25791
26446
|
created_at?: string;
|
|
25792
|
-
/** @example
|
|
26447
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
25793
26448
|
updated_at?: string;
|
|
25794
26449
|
};
|
|
25795
26450
|
};
|
|
@@ -25809,24 +26464,35 @@ export interface operations {
|
|
|
25809
26464
|
};
|
|
25810
26465
|
requestBody?: never;
|
|
25811
26466
|
responses: {
|
|
26467
|
+
/** @description Retrieve a single tenancy */
|
|
25812
26468
|
200: {
|
|
25813
26469
|
headers: {
|
|
25814
26470
|
[name: string]: unknown;
|
|
25815
26471
|
};
|
|
25816
26472
|
content: {
|
|
25817
26473
|
"application/json": {
|
|
26474
|
+
/** @example Tenancy fetched */
|
|
26475
|
+
message?: string;
|
|
26476
|
+
/** @example null */
|
|
26477
|
+
event?: string | null;
|
|
25818
26478
|
data?: {
|
|
25819
|
-
/** @example
|
|
26479
|
+
/** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
|
|
25820
26480
|
uid?: string;
|
|
25821
|
-
/** @example
|
|
26481
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
26482
|
+
listing_uid?: string;
|
|
26483
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
26484
|
+
landlord_uid?: string;
|
|
26485
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
26486
|
+
tenant_uid?: string;
|
|
26487
|
+
/** @example 1500.00 */
|
|
25822
26488
|
rent_amount?: string;
|
|
25823
|
-
/** @example
|
|
26489
|
+
/** @example 1500.00 */
|
|
25824
26490
|
deposit_amount?: string;
|
|
25825
|
-
/** @example
|
|
26491
|
+
/** @example active */
|
|
25826
26492
|
state?: string;
|
|
25827
|
-
/** @example
|
|
26493
|
+
/** @example 2026-03-01 */
|
|
25828
26494
|
start_date?: string;
|
|
25829
|
-
/** @example
|
|
26495
|
+
/** @example 2027-02-28 */
|
|
25830
26496
|
end_date?: string;
|
|
25831
26497
|
/** @example false */
|
|
25832
26498
|
is_periodic?: boolean;
|
|
@@ -25834,12 +26500,218 @@ export interface operations {
|
|
|
25834
26500
|
company_name?: string | null;
|
|
25835
26501
|
/** @example null */
|
|
25836
26502
|
company_registration_number?: string | null;
|
|
25837
|
-
/** @example 2026-
|
|
26503
|
+
/** @example 2026-03-01T10:00:00.000000Z */
|
|
25838
26504
|
created_at?: string;
|
|
25839
|
-
|
|
25840
|
-
|
|
26505
|
+
listing?: {
|
|
26506
|
+
cover?: {
|
|
26507
|
+
/** @example lm_34fda1 */
|
|
26508
|
+
uid?: string;
|
|
26509
|
+
/** @example image/jpeg */
|
|
26510
|
+
media_type?: string;
|
|
26511
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
26512
|
+
storage_path?: string;
|
|
26513
|
+
/** @example 0 */
|
|
26514
|
+
order_index?: number;
|
|
26515
|
+
/** @example true */
|
|
26516
|
+
is_cover?: boolean;
|
|
26517
|
+
};
|
|
26518
|
+
details?: {
|
|
26519
|
+
/** @example 24 Windsor Court */
|
|
26520
|
+
address?: string;
|
|
26521
|
+
/** @example 24 Windsor Court */
|
|
26522
|
+
title?: string;
|
|
26523
|
+
/** @example Rent */
|
|
26524
|
+
type?: string;
|
|
26525
|
+
};
|
|
26526
|
+
owner?: {
|
|
26527
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
26528
|
+
uid?: string;
|
|
26529
|
+
/** @example Alice Taylor */
|
|
26530
|
+
name?: string;
|
|
26531
|
+
/** @example alice@example.com */
|
|
26532
|
+
email?: string;
|
|
26533
|
+
};
|
|
26534
|
+
};
|
|
26535
|
+
landlord?: {
|
|
26536
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
26537
|
+
uid?: string;
|
|
26538
|
+
/** @example Alice Taylor */
|
|
26539
|
+
name?: string;
|
|
26540
|
+
/** @example alice@example.com */
|
|
26541
|
+
email?: string;
|
|
26542
|
+
};
|
|
26543
|
+
tenant?: {
|
|
26544
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
26545
|
+
uid?: string;
|
|
26546
|
+
/** @example Sarah Jenkins */
|
|
26547
|
+
name?: string;
|
|
26548
|
+
/** @example sarah@example.com */
|
|
26549
|
+
email?: string;
|
|
26550
|
+
/** @example +447700900123 */
|
|
26551
|
+
phone?: string;
|
|
26552
|
+
/** @example 10 Oxford Street, London, W1 */
|
|
26553
|
+
address?: string;
|
|
26554
|
+
};
|
|
26555
|
+
/**
|
|
26556
|
+
* @example [
|
|
26557
|
+
* {
|
|
26558
|
+
* "uid": "maint_83fd12",
|
|
26559
|
+
* "tenancy_id": 1,
|
|
26560
|
+
* "title": "Leaking kitchen sink",
|
|
26561
|
+
* "description": "Water has been dripping continuously under the sink cabinet.",
|
|
26562
|
+
* "status": "reported",
|
|
26563
|
+
* "priority": "urgent",
|
|
26564
|
+
* "reported_at": "2026-04-01T10:00:00Z",
|
|
26565
|
+
* "assigned_at": null,
|
|
26566
|
+
* "completed_at": null,
|
|
26567
|
+
* "sla_deadline": "2026-04-02T10:00:00Z"
|
|
26568
|
+
* }
|
|
26569
|
+
* ]
|
|
26570
|
+
*/
|
|
26571
|
+
maintenance_requests?: {
|
|
26572
|
+
/** @example maint_83fd12 */
|
|
26573
|
+
uid?: string;
|
|
26574
|
+
/** @example 1 */
|
|
26575
|
+
tenancy_id?: number;
|
|
26576
|
+
/** @example Leaking kitchen sink */
|
|
26577
|
+
title?: string;
|
|
26578
|
+
/** @example Water has been dripping continuously under the sink cabinet. */
|
|
26579
|
+
description?: string;
|
|
26580
|
+
/** @example reported */
|
|
26581
|
+
status?: string;
|
|
26582
|
+
/** @example urgent */
|
|
26583
|
+
priority?: string;
|
|
26584
|
+
/** @example 2026-04-01T10:00:00Z */
|
|
26585
|
+
reported_at?: string;
|
|
26586
|
+
/** @example null */
|
|
26587
|
+
assigned_at?: string | null;
|
|
26588
|
+
/** @example null */
|
|
26589
|
+
completed_at?: string | null;
|
|
26590
|
+
/** @example 2026-04-02T10:00:00Z */
|
|
26591
|
+
sla_deadline?: string;
|
|
26592
|
+
}[];
|
|
26593
|
+
/**
|
|
26594
|
+
* @example [
|
|
26595
|
+
* {
|
|
26596
|
+
* "from_state": "pending",
|
|
26597
|
+
* "to_state": "active",
|
|
26598
|
+
* "changed_by_user_id": 1,
|
|
26599
|
+
* "changed_by_name": "System Admin",
|
|
26600
|
+
* "comment": "Tenancy activated",
|
|
26601
|
+
* "created_at": "2026-03-01T10:00:00Z"
|
|
26602
|
+
* }
|
|
26603
|
+
* ]
|
|
26604
|
+
*/
|
|
26605
|
+
state_transitions?: {
|
|
26606
|
+
/** @example pending */
|
|
26607
|
+
from_state?: string;
|
|
26608
|
+
/** @example active */
|
|
26609
|
+
to_state?: string;
|
|
26610
|
+
/** @example 1 */
|
|
26611
|
+
changed_by_user_id?: number;
|
|
26612
|
+
/** @example System Admin */
|
|
26613
|
+
changed_by_name?: string;
|
|
26614
|
+
/** @example Tenancy activated */
|
|
26615
|
+
comment?: string;
|
|
26616
|
+
/** @example 2026-03-01T10:00:00Z */
|
|
26617
|
+
created_at?: string;
|
|
26618
|
+
}[];
|
|
26619
|
+
/**
|
|
26620
|
+
* @example [
|
|
26621
|
+
* {
|
|
26622
|
+
* "id": 1,
|
|
26623
|
+
* "compliance": {
|
|
26624
|
+
* "id": 10,
|
|
26625
|
+
* "key": "gas_safety_certificate",
|
|
26626
|
+
* "name": "Gas Safety Certificate"
|
|
26627
|
+
* },
|
|
26628
|
+
* "verification_layer_key": "gas_certificate",
|
|
26629
|
+
* "status": "submitted",
|
|
26630
|
+
* "submitted_data": {
|
|
26631
|
+
* "document_file": {
|
|
26632
|
+
* "file_name": "cover.pdf",
|
|
26633
|
+
* "storage_path": "tenancy_compliance/cover.pdf",
|
|
26634
|
+
* "view_url": "https://api.example.com/api/v1/portal/admin/documents/view?expires=1774863000&signature=abc",
|
|
26635
|
+
* "download_url": "https://api.example.com/api/v1/portal/admin/documents/download?expires=1774863000&signature=abc",
|
|
26636
|
+
* "disk": "verification_documents"
|
|
26637
|
+
* }
|
|
26638
|
+
* },
|
|
26639
|
+
* "rejection_reason": null,
|
|
26640
|
+
* "reviewed_by": null,
|
|
26641
|
+
* "reviewed_at": null,
|
|
26642
|
+
* "created_at": "2026-04-01T09:30:00Z"
|
|
26643
|
+
* }
|
|
26644
|
+
* ]
|
|
26645
|
+
*/
|
|
26646
|
+
compliance_submissions?: {
|
|
26647
|
+
/** @example 1 */
|
|
26648
|
+
id?: number;
|
|
26649
|
+
compliance?: {
|
|
26650
|
+
/** @example 10 */
|
|
26651
|
+
id?: number;
|
|
26652
|
+
/** @example gas_safety_certificate */
|
|
26653
|
+
key?: string;
|
|
26654
|
+
/** @example Gas Safety Certificate */
|
|
26655
|
+
name?: string;
|
|
26656
|
+
};
|
|
26657
|
+
/** @example gas_certificate */
|
|
26658
|
+
verification_layer_key?: string;
|
|
26659
|
+
/** @example submitted */
|
|
26660
|
+
status?: string;
|
|
26661
|
+
submitted_data?: {
|
|
26662
|
+
document_file?: {
|
|
26663
|
+
/** @example cover.pdf */
|
|
26664
|
+
file_name?: string;
|
|
26665
|
+
/** @example tenancy_compliance/cover.pdf */
|
|
26666
|
+
storage_path?: string;
|
|
26667
|
+
/** @example https://api.example.com/api/v1/portal/admin/documents/view?expires=1774863000&signature=abc */
|
|
26668
|
+
view_url?: string;
|
|
26669
|
+
/** @example https://api.example.com/api/v1/portal/admin/documents/download?expires=1774863000&signature=abc */
|
|
26670
|
+
download_url?: string;
|
|
26671
|
+
/** @example verification_documents */
|
|
26672
|
+
disk?: string;
|
|
26673
|
+
};
|
|
26674
|
+
};
|
|
26675
|
+
/** @example null */
|
|
26676
|
+
rejection_reason?: string | null;
|
|
26677
|
+
/** @example null */
|
|
26678
|
+
reviewed_by?: string | null;
|
|
26679
|
+
/** @example null */
|
|
26680
|
+
reviewed_at?: string | null;
|
|
26681
|
+
/** @example 2026-04-01T09:30:00Z */
|
|
26682
|
+
created_at?: string;
|
|
26683
|
+
}[];
|
|
26684
|
+
/**
|
|
26685
|
+
* @example [
|
|
26686
|
+
* {
|
|
26687
|
+
* "id": 10,
|
|
26688
|
+
* "responsible_party": "landlord",
|
|
26689
|
+
* "responsible_party_label": "Landlord",
|
|
26690
|
+
* "liability_exclusion_flag": false,
|
|
26691
|
+
* "requirements": [
|
|
26692
|
+
* "gas_certificate"
|
|
26693
|
+
* ]
|
|
26694
|
+
* }
|
|
26695
|
+
* ]
|
|
26696
|
+
*/
|
|
26697
|
+
compliances?: {
|
|
26698
|
+
/** @example 10 */
|
|
26699
|
+
id?: number;
|
|
26700
|
+
/** @example landlord */
|
|
26701
|
+
responsible_party?: string;
|
|
26702
|
+
/** @example Landlord */
|
|
26703
|
+
responsible_party_label?: string;
|
|
26704
|
+
/** @example false */
|
|
26705
|
+
liability_exclusion_flag?: boolean;
|
|
26706
|
+
/**
|
|
26707
|
+
* @example [
|
|
26708
|
+
* "gas_certificate"
|
|
26709
|
+
* ]
|
|
26710
|
+
*/
|
|
26711
|
+
requirements?: string[];
|
|
26712
|
+
}[];
|
|
25841
26713
|
compliance_status?: {
|
|
25842
|
-
/** @example
|
|
26714
|
+
/** @example compliant */
|
|
25843
26715
|
overall?: string;
|
|
25844
26716
|
/** @example [] */
|
|
25845
26717
|
breakdown?: unknown[];
|
|
@@ -25861,15 +26733,15 @@ export interface operations {
|
|
|
25861
26733
|
content: {
|
|
25862
26734
|
"application/json": {
|
|
25863
26735
|
/**
|
|
25864
|
-
* @description
|
|
25865
|
-
* @example
|
|
26736
|
+
* @description UID of the listing for which the tenancy is being created. The <code>uid</code> of an existing record in the listings table.
|
|
26737
|
+
* @example 55178b5b-ca29-41a2-a9da-f51cb257e328
|
|
25866
26738
|
*/
|
|
25867
|
-
|
|
26739
|
+
listing_uid: string;
|
|
25868
26740
|
/**
|
|
25869
|
-
* @description
|
|
25870
|
-
* @example
|
|
26741
|
+
* @description UID of the user who will be the tenant. The <code>uid</code> of an existing record in the users table.
|
|
26742
|
+
* @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df
|
|
25871
26743
|
*/
|
|
25872
|
-
|
|
26744
|
+
tenant_uid: string;
|
|
25873
26745
|
/**
|
|
25874
26746
|
* @description Monthly rent amount for the tenancy. Must be at least 1.
|
|
25875
26747
|
* @example 1200
|
|
@@ -25904,32 +26776,43 @@ export interface operations {
|
|
|
25904
26776
|
};
|
|
25905
26777
|
};
|
|
25906
26778
|
responses: {
|
|
26779
|
+
/** @description Tenancy created successfully */
|
|
25907
26780
|
200: {
|
|
25908
26781
|
headers: {
|
|
25909
26782
|
[name: string]: unknown;
|
|
25910
26783
|
};
|
|
25911
26784
|
content: {
|
|
25912
26785
|
"application/json": {
|
|
26786
|
+
/** @example Tenancy created successfully */
|
|
26787
|
+
message?: string;
|
|
26788
|
+
/** @example null */
|
|
26789
|
+
event?: string | null;
|
|
25913
26790
|
data?: {
|
|
25914
|
-
/** @example
|
|
26791
|
+
/** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
|
|
25915
26792
|
uid?: string;
|
|
25916
|
-
/** @example
|
|
26793
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
26794
|
+
listing_uid?: string;
|
|
26795
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
26796
|
+
landlord_uid?: string;
|
|
26797
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
26798
|
+
tenant_uid?: string;
|
|
26799
|
+
/** @example 1500.00 */
|
|
25917
26800
|
rent_amount?: string;
|
|
25918
|
-
/** @example
|
|
26801
|
+
/** @example 1500.00 */
|
|
25919
26802
|
deposit_amount?: string;
|
|
25920
|
-
/** @example
|
|
26803
|
+
/** @example pending */
|
|
25921
26804
|
state?: string;
|
|
25922
|
-
/** @example
|
|
26805
|
+
/** @example 2026-06-01 */
|
|
25923
26806
|
start_date?: string;
|
|
25924
|
-
/** @example
|
|
26807
|
+
/** @example 2027-05-31 */
|
|
25925
26808
|
end_date?: string;
|
|
25926
|
-
/** @example
|
|
26809
|
+
/** @example false */
|
|
25927
26810
|
is_periodic?: boolean;
|
|
25928
26811
|
/** @example null */
|
|
25929
26812
|
company_name?: string | null;
|
|
25930
26813
|
/** @example null */
|
|
25931
26814
|
company_registration_number?: string | null;
|
|
25932
|
-
/** @example 2026-05-
|
|
26815
|
+
/** @example 2026-05-06T10:30:00.000000Z */
|
|
25933
26816
|
created_at?: string;
|
|
25934
26817
|
};
|
|
25935
26818
|
};
|
|
@@ -26038,7 +26921,7 @@ export interface operations {
|
|
|
26038
26921
|
query?: never;
|
|
26039
26922
|
header?: never;
|
|
26040
26923
|
path: {
|
|
26041
|
-
/** @description
|
|
26924
|
+
/** @description The ID of the tenancy to renew. */
|
|
26042
26925
|
tenancy_uid: string;
|
|
26043
26926
|
};
|
|
26044
26927
|
cookie?: never;
|
|
@@ -26070,8 +26953,8 @@ export interface operations {
|
|
|
26070
26953
|
query?: never;
|
|
26071
26954
|
header?: never;
|
|
26072
26955
|
path: {
|
|
26073
|
-
/** @description The
|
|
26074
|
-
tenancy_uid:
|
|
26956
|
+
/** @description The UID of the tenancy to convert. */
|
|
26957
|
+
tenancy_uid: string;
|
|
26075
26958
|
};
|
|
26076
26959
|
cookie?: never;
|
|
26077
26960
|
};
|
|
@@ -26221,17 +27104,17 @@ export interface operations {
|
|
|
26221
27104
|
* "from_state": "enquiry",
|
|
26222
27105
|
* "to_state": "pre_move_in_ready",
|
|
26223
27106
|
* "changed_by_user_id": 3,
|
|
26224
|
-
* "changed_by_name": "
|
|
27107
|
+
* "changed_by_name": "Bruce Parker",
|
|
26225
27108
|
* "comment": "Qui commodi incidunt iure odit.",
|
|
26226
|
-
* "created_at": "2026-01-
|
|
27109
|
+
* "created_at": "2026-01-13T23:27:03.000000Z"
|
|
26227
27110
|
* },
|
|
26228
27111
|
* {
|
|
26229
|
-
* "from_state": "
|
|
26230
|
-
* "to_state": "
|
|
27112
|
+
* "from_state": "pre_move_in_ready",
|
|
27113
|
+
* "to_state": "periodic",
|
|
26231
27114
|
* "changed_by_user_id": 3,
|
|
26232
|
-
* "changed_by_name": "
|
|
27115
|
+
* "changed_by_name": "Bruce Parker",
|
|
26233
27116
|
* "comment": null,
|
|
26234
|
-
* "created_at": "
|
|
27117
|
+
* "created_at": "2025-11-21T07:22:43.000000Z"
|
|
26235
27118
|
* }
|
|
26236
27119
|
* ]
|
|
26237
27120
|
*/
|
|
@@ -26242,11 +27125,11 @@ export interface operations {
|
|
|
26242
27125
|
to_state?: string;
|
|
26243
27126
|
/** @example 3 */
|
|
26244
27127
|
changed_by_user_id?: number;
|
|
26245
|
-
/** @example
|
|
27128
|
+
/** @example Bruce Parker */
|
|
26246
27129
|
changed_by_name?: string;
|
|
26247
27130
|
/** @example Qui commodi incidunt iure odit. */
|
|
26248
27131
|
comment?: string;
|
|
26249
|
-
/** @example 2026-01-
|
|
27132
|
+
/** @example 2026-01-13T23:27:03.000000Z */
|
|
26250
27133
|
created_at?: string;
|
|
26251
27134
|
}[];
|
|
26252
27135
|
};
|
|
@@ -26631,15 +27514,15 @@ export interface operations {
|
|
|
26631
27514
|
content: {
|
|
26632
27515
|
"application/json": {
|
|
26633
27516
|
data?: {
|
|
26634
|
-
/** @example
|
|
27517
|
+
/** @example aec9af45-4e38-4603-bff8-2b94a7293e04 */
|
|
26635
27518
|
uid?: string;
|
|
26636
|
-
/** @example
|
|
27519
|
+
/** @example Emily Reid */
|
|
26637
27520
|
username?: string;
|
|
26638
27521
|
/** @example null */
|
|
26639
27522
|
first_name?: string | null;
|
|
26640
27523
|
/** @example null */
|
|
26641
27524
|
last_name?: string | null;
|
|
26642
|
-
/** @example
|
|
27525
|
+
/** @example reid.francesca@example.org */
|
|
26643
27526
|
email?: string;
|
|
26644
27527
|
/** @example null */
|
|
26645
27528
|
phone?: string | null;
|
|
@@ -26661,7 +27544,7 @@ export interface operations {
|
|
|
26661
27544
|
timezone?: string;
|
|
26662
27545
|
/** @example Customer */
|
|
26663
27546
|
user_type?: string;
|
|
26664
|
-
/** @example
|
|
27547
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
26665
27548
|
created?: string;
|
|
26666
27549
|
/** @example 0 seconds ago */
|
|
26667
27550
|
email_verified_at?: string;
|
|
@@ -26726,24 +27609,18 @@ export interface operations {
|
|
|
26726
27609
|
reservedBookingsTenants: {
|
|
26727
27610
|
parameters: {
|
|
26728
27611
|
query?: {
|
|
27612
|
+
/** @description Filter bookings by tenant/guest name. */
|
|
27613
|
+
tenant_name?: string | null;
|
|
26729
27614
|
/** @description Number of bookings per page. */
|
|
26730
|
-
per_page?: number;
|
|
27615
|
+
per_page?: number | null;
|
|
27616
|
+
/** @description Current page number. */
|
|
27617
|
+
page?: number | null;
|
|
26731
27618
|
};
|
|
26732
27619
|
header?: never;
|
|
26733
27620
|
path?: never;
|
|
26734
27621
|
cookie?: never;
|
|
26735
27622
|
};
|
|
26736
|
-
requestBody?:
|
|
26737
|
-
content: {
|
|
26738
|
-
"application/json": {
|
|
26739
|
-
/**
|
|
26740
|
-
* @description Must be at least 1. Must not be greater than 100.
|
|
26741
|
-
* @example 1
|
|
26742
|
-
*/
|
|
26743
|
-
per_page?: number | null;
|
|
26744
|
-
};
|
|
26745
|
-
};
|
|
26746
|
-
};
|
|
27623
|
+
requestBody?: never;
|
|
26747
27624
|
responses: {
|
|
26748
27625
|
/** @description Retrieve tenant reserved bookings */
|
|
26749
27626
|
200: {
|
|
@@ -26795,7 +27672,8 @@ export interface operations {
|
|
|
26795
27672
|
* "end_date": "13 Jun 2026",
|
|
26796
27673
|
* "nights": 3,
|
|
26797
27674
|
* "status": "pending",
|
|
26798
|
-
* "total_price": "450.00"
|
|
27675
|
+
* "total_price": "450.00",
|
|
27676
|
+
* "created_at": "06 May, 2026 10:30 AM"
|
|
26799
27677
|
* }
|
|
26800
27678
|
* ]
|
|
26801
27679
|
*/
|
|
@@ -26862,6 +27740,8 @@ export interface operations {
|
|
|
26862
27740
|
status?: string;
|
|
26863
27741
|
/** @example 450.00 */
|
|
26864
27742
|
total_price?: string;
|
|
27743
|
+
/** @example 06 May, 2026 10:30 AM */
|
|
27744
|
+
created_at?: string;
|
|
26865
27745
|
}[];
|
|
26866
27746
|
pagination?: {
|
|
26867
27747
|
/** @example 1 */
|
|
@@ -26936,15 +27816,15 @@ export interface operations {
|
|
|
26936
27816
|
content: {
|
|
26937
27817
|
"application/json": {
|
|
26938
27818
|
data?: {
|
|
26939
|
-
/** @example
|
|
27819
|
+
/** @example 95509340-354a-4151-bc49-b46f21c2ce48 */
|
|
26940
27820
|
uid?: string;
|
|
26941
|
-
/** @example
|
|
27821
|
+
/** @example Connor Richards */
|
|
26942
27822
|
username?: string;
|
|
26943
27823
|
/** @example null */
|
|
26944
27824
|
first_name?: string | null;
|
|
26945
27825
|
/** @example null */
|
|
26946
27826
|
last_name?: string | null;
|
|
26947
|
-
/** @example
|
|
27827
|
+
/** @example igreen@example.org */
|
|
26948
27828
|
email?: string;
|
|
26949
27829
|
/** @example null */
|
|
26950
27830
|
phone?: string | null;
|
|
@@ -26966,7 +27846,7 @@ export interface operations {
|
|
|
26966
27846
|
timezone?: string;
|
|
26967
27847
|
/** @example Customer */
|
|
26968
27848
|
user_type?: string;
|
|
26969
|
-
/** @example
|
|
27849
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
26970
27850
|
created?: string;
|
|
26971
27851
|
/** @example 0 seconds ago */
|
|
26972
27852
|
email_verified_at?: string;
|
|
@@ -27038,15 +27918,15 @@ export interface operations {
|
|
|
27038
27918
|
content: {
|
|
27039
27919
|
"application/json": {
|
|
27040
27920
|
data?: {
|
|
27041
|
-
/** @example
|
|
27921
|
+
/** @example aa40d6cc-65a0-4b72-90fb-b73d78487954 */
|
|
27042
27922
|
uid?: string;
|
|
27043
|
-
/** @example
|
|
27923
|
+
/** @example Emily Reid */
|
|
27044
27924
|
username?: string;
|
|
27045
27925
|
/** @example null */
|
|
27046
27926
|
first_name?: string | null;
|
|
27047
27927
|
/** @example null */
|
|
27048
27928
|
last_name?: string | null;
|
|
27049
|
-
/** @example
|
|
27929
|
+
/** @example wscott@example.net */
|
|
27050
27930
|
email?: string;
|
|
27051
27931
|
/** @example null */
|
|
27052
27932
|
phone?: string | null;
|
|
@@ -27068,7 +27948,7 @@ export interface operations {
|
|
|
27068
27948
|
timezone?: string;
|
|
27069
27949
|
/** @example Customer */
|
|
27070
27950
|
user_type?: string;
|
|
27071
|
-
/** @example
|
|
27951
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
27072
27952
|
created?: string;
|
|
27073
27953
|
/** @example 0 seconds ago */
|
|
27074
27954
|
email_verified_at?: string;
|
|
@@ -27322,7 +28202,7 @@ export interface operations {
|
|
|
27322
28202
|
completed_layers?: number;
|
|
27323
28203
|
/** @example 4 */
|
|
27324
28204
|
pending_layers?: number;
|
|
27325
|
-
/** @example
|
|
28205
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
27326
28206
|
last_calculated_at?: string;
|
|
27327
28207
|
};
|
|
27328
28208
|
};
|
|
@@ -27370,7 +28250,7 @@ export interface operations {
|
|
|
27370
28250
|
completed_layers?: number;
|
|
27371
28251
|
/** @example 4 */
|
|
27372
28252
|
pending_layers?: number;
|
|
27373
|
-
/** @example
|
|
28253
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
27374
28254
|
last_calculated_at?: string;
|
|
27375
28255
|
};
|
|
27376
28256
|
};
|
|
@@ -27404,14 +28284,14 @@ export interface operations {
|
|
|
27404
28284
|
content: {
|
|
27405
28285
|
"application/json": {
|
|
27406
28286
|
data?: {
|
|
27407
|
-
/** @example
|
|
28287
|
+
/** @example efd85376-ff0d-46e3-949b-966233a0de88 */
|
|
27408
28288
|
wishlist_uid?: string;
|
|
27409
28289
|
listing?: {
|
|
27410
|
-
/** @example New For Sale Used Item draft •
|
|
28290
|
+
/** @example New For Sale Used Item draft • 6 May 2026, 12:40 PM */
|
|
27411
28291
|
draft_name?: string;
|
|
27412
|
-
/** @example LST-UIT-SAL-
|
|
28292
|
+
/** @example LST-UIT-SAL-MOU1OQ7UHWH */
|
|
27413
28293
|
sku?: string;
|
|
27414
|
-
/** @example
|
|
28294
|
+
/** @example 1cdc5e7b-7ee3-4485-a36f-c941c8a2c55d */
|
|
27415
28295
|
uid?: string;
|
|
27416
28296
|
/** @example Sale */
|
|
27417
28297
|
listing_type?: string;
|
|
@@ -27758,17 +28638,17 @@ export interface operations {
|
|
|
27758
28638
|
content: {
|
|
27759
28639
|
"application/json": {
|
|
27760
28640
|
data?: {
|
|
27761
|
-
/** @example
|
|
28641
|
+
/** @example 6b4e9a1a-067d-47d2-abf7-156406afe774 */
|
|
27762
28642
|
uid?: string;
|
|
27763
|
-
/** @example
|
|
28643
|
+
/** @example Dolor ea natus vel. */
|
|
27764
28644
|
note?: string;
|
|
27765
28645
|
user?: {
|
|
27766
|
-
/** @example
|
|
28646
|
+
/** @example 9 */
|
|
27767
28647
|
id?: number;
|
|
27768
|
-
/** @example
|
|
28648
|
+
/** @example Carrie Johnson */
|
|
27769
28649
|
name?: string;
|
|
27770
28650
|
};
|
|
27771
|
-
/** @example 2026-04-
|
|
28651
|
+
/** @example 2026-04-27 22:15:17 */
|
|
27772
28652
|
created_at?: string;
|
|
27773
28653
|
};
|
|
27774
28654
|
};
|
|
@@ -27798,7 +28678,7 @@ export interface operations {
|
|
|
27798
28678
|
completed_layers?: number;
|
|
27799
28679
|
/** @example 4 */
|
|
27800
28680
|
pending_layers?: number;
|
|
27801
|
-
/** @example
|
|
28681
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
27802
28682
|
last_calculated_at?: string;
|
|
27803
28683
|
};
|
|
27804
28684
|
};
|
|
@@ -28040,7 +28920,7 @@ export interface operations {
|
|
|
28040
28920
|
completed_layers?: number;
|
|
28041
28921
|
/** @example 4 */
|
|
28042
28922
|
pending_layers?: number;
|
|
28043
|
-
/** @example
|
|
28923
|
+
/** @example 06 May 2026, 12:40 PM */
|
|
28044
28924
|
last_calculated_at?: string;
|
|
28045
28925
|
};
|
|
28046
28926
|
};
|