@justins-home/types 1.1.70 → 1.1.72
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 +1691 -769
- package/package.json +1 -1
package/generated/api-types.ts
CHANGED
|
@@ -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 a1b62292-76ef-4d50-8ae2-2eacdcef9ae3 */
|
|
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, 01:59 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,7 +6873,7 @@ export interface operations {
|
|
|
6770
6873
|
*/
|
|
6771
6874
|
search?: string | null;
|
|
6772
6875
|
/**
|
|
6773
|
-
* @example
|
|
6876
|
+
* @example approved
|
|
6774
6877
|
* @enum {string|null}
|
|
6775
6878
|
*/
|
|
6776
6879
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
@@ -7009,7 +7112,7 @@ export interface operations {
|
|
|
7009
7112
|
content: {
|
|
7010
7113
|
"application/json": {
|
|
7011
7114
|
data?: {
|
|
7012
|
-
/** @example
|
|
7115
|
+
/** @example 4030f9d1-3ac9-424d-8ec5-3790bff1960b */
|
|
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, 01:59 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 ee0e1cea-9938-4a13-b30d-4be495701892 */
|
|
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, 01:59 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 8ccbbc8c-7367-440d-80be-01200f390ddb */
|
|
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, 01:59 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 7cd27356-d57a-4773-ae01-84730af6e6f3 */
|
|
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, 01:59 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 3d3b7165-c0d5-4f3c-96c6-6588591c8b65 */
|
|
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, 01:59 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 16b5bbfc-b5c0-4f75-b3ba-db316898362f */
|
|
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-06T13:59:06.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 5696744c-f5e4-4c6f-b30e-1d9b1d7747e5 */
|
|
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, 01:59 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, 1:59 PM */
|
|
8192
8295
|
draft_name?: string;
|
|
8193
|
-
/** @example LST-PRP-LTR-
|
|
8296
|
+
/** @example LST-PRP-LTR-MOU4ID1HS4V */
|
|
8194
8297
|
sku?: string;
|
|
8195
|
-
/** @example
|
|
8298
|
+
/** @example 0709afbe-986b-4bc4-bf57-2e52abe932b1 */
|
|
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 Unverified
|
|
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 2ac1cbde-e670-4f2e-a124-692f5501f231 */
|
|
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, 01:59 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, 1:59 PM */
|
|
10362
10465
|
draft_name?: string;
|
|
10363
|
-
/** @example LST-PRP-LTR-
|
|
10466
|
+
/** @example LST-PRP-LTR-MOU4ID4AFZK */
|
|
10364
10467
|
sku?: string;
|
|
10365
|
-
/** @example
|
|
10468
|
+
/** @example 92e26c32-f79e-4fad-bf8b-c13498883559 */
|
|
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 3d6832e2-8dc9-4563-a5f8-ca34435da88c */
|
|
10806
10909
|
uid?: string;
|
|
10807
10910
|
/** @example photo */
|
|
10808
10911
|
media_type?: string;
|
|
@@ -11109,13 +11212,13 @@ export interface operations {
|
|
|
11109
11212
|
/**
|
|
11110
11213
|
* @example [
|
|
11111
11214
|
* {
|
|
11112
|
-
* "draft_name": "New For
|
|
11113
|
-
* "sku": "LST-PRP-
|
|
11114
|
-
* "uid": "
|
|
11115
|
-
* "listing_type": "
|
|
11215
|
+
* "draft_name": "New For Sale Property draft • 6 May 2026, 1:59 PM",
|
|
11216
|
+
* "sku": "LST-PRP-SAL-MOU4ID5ZGYJ",
|
|
11217
|
+
* "uid": "87d0c1e7-7c95-402c-870d-e87578f95889",
|
|
11218
|
+
* "listing_type": "Sale",
|
|
11116
11219
|
* "vertical": "Property",
|
|
11117
|
-
* "arrangement_type": "
|
|
11118
|
-
* "arrangement_type_label": "
|
|
11220
|
+
* "arrangement_type": "company_lease",
|
|
11221
|
+
* "arrangement_type_label": "Company Lease",
|
|
11119
11222
|
* "price": null,
|
|
11120
11223
|
* "state": "draft",
|
|
11121
11224
|
* "published_at": null,
|
|
@@ -11128,38 +11231,40 @@ export interface operations {
|
|
|
11128
11231
|
* "media": []
|
|
11129
11232
|
* },
|
|
11130
11233
|
* {
|
|
11131
|
-
* "draft_name": "New For
|
|
11132
|
-
* "sku": "LST-
|
|
11133
|
-
* "uid": "
|
|
11134
|
-
* "listing_type": "
|
|
11135
|
-
* "vertical": "
|
|
11136
|
-
* "arrangement_type":
|
|
11137
|
-
* "arrangement_type_label":
|
|
11234
|
+
* "draft_name": "New For Rent Property draft • 6 May 2026, 1:59 PM",
|
|
11235
|
+
* "sku": "LST-PRP-LTR-MOU4ID63KJS",
|
|
11236
|
+
* "uid": "eeeb01c3-0cc4-4b17-8f66-44aa40b15395",
|
|
11237
|
+
* "listing_type": "Rent",
|
|
11238
|
+
* "vertical": "Property",
|
|
11239
|
+
* "arrangement_type": "standard_residential",
|
|
11240
|
+
* "arrangement_type_label": "Standard Residential",
|
|
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 For
|
|
11255
|
+
/** @example New For Sale Property draft • 6 May 2026, 1:59 PM */
|
|
11151
11256
|
draft_name?: string;
|
|
11152
|
-
/** @example LST-PRP-
|
|
11257
|
+
/** @example LST-PRP-SAL-MOU4ID5ZGYJ */
|
|
11153
11258
|
sku?: string;
|
|
11154
|
-
/** @example
|
|
11259
|
+
/** @example 87d0c1e7-7c95-402c-870d-e87578f95889 */
|
|
11155
11260
|
uid?: string;
|
|
11156
|
-
/** @example
|
|
11261
|
+
/** @example Sale */
|
|
11157
11262
|
listing_type?: string;
|
|
11158
11263
|
/** @example Property */
|
|
11159
11264
|
vertical?: string;
|
|
11160
|
-
/** @example
|
|
11265
|
+
/** @example company_lease */
|
|
11161
11266
|
arrangement_type?: string;
|
|
11162
|
-
/** @example
|
|
11267
|
+
/** @example Company Lease */
|
|
11163
11268
|
arrangement_type_label?: string;
|
|
11164
11269
|
/** @example null */
|
|
11165
11270
|
price?: string | null;
|
|
@@ -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, 1:59 PM */
|
|
11350
11455
|
draft_name?: string;
|
|
11351
|
-
/** @example LST-PRP-LTR-
|
|
11456
|
+
/** @example LST-PRP-LTR-MOU4ID6CYJG */
|
|
11352
11457
|
sku?: string;
|
|
11353
|
-
/** @example
|
|
11458
|
+
/** @example 497049e3-2ad6-4db8-87fc-ea3740320795 */
|
|
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, 1:59 PM */
|
|
11417
11522
|
draft_name?: string;
|
|
11418
|
-
/** @example LST-PRP-LTR-
|
|
11523
|
+
/** @example LST-PRP-LTR-MOU4ID6J9QG */
|
|
11419
11524
|
sku?: string;
|
|
11420
|
-
/** @example
|
|
11525
|
+
/** @example 5ec70e87-8c53-4285-8e4e-945e89159961 */
|
|
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, 1:59 PM */
|
|
11474
11579
|
draft_name?: string;
|
|
11475
|
-
/** @example LST-PRP-LTR-
|
|
11580
|
+
/** @example LST-PRP-LTR-MOU4ID6OGLW */
|
|
11476
11581
|
sku?: string;
|
|
11477
|
-
/** @example
|
|
11582
|
+
/** @example b0dcea80-8e59-4a20-806f-02e7e961d9aa */
|
|
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, 1:59 PM */
|
|
11531
11636
|
draft_name?: string;
|
|
11532
|
-
/** @example LST-PRP-LTR-
|
|
11637
|
+
/** @example LST-PRP-LTR-MOU4ID6VNAG */
|
|
11533
11638
|
sku?: string;
|
|
11534
|
-
/** @example
|
|
11639
|
+
/** @example ee87be07-5bb8-42c7-b79b-c64ee875f872 */
|
|
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 52 */
|
|
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 53 */
|
|
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 54 */
|
|
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": 30,
|
|
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": 31,
|
|
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 30 */
|
|
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 32 */
|
|
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 33 */
|
|
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 34 */
|
|
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 21 */
|
|
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-06T13:59:06.000000Z */
|
|
12351
12456
|
created_at?: string;
|
|
12352
|
-
/** @example 2026-05-
|
|
12457
|
+
/** @example 2026-05-06T13:59:06.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 22 */
|
|
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-06T13:59:06.000000Z */
|
|
12427
12532
|
created_at?: string;
|
|
12428
|
-
/** @example 2026-05-
|
|
12533
|
+
/** @example 2026-05-06T13:59:06.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": "aut",
|
|
13800
|
+
* "name": "repellat",
|
|
13801
|
+
* "description": "Ipsam veniam animi reprehenderit voluptas.",
|
|
13697
13802
|
* "value_type": "string"
|
|
13698
13803
|
* },
|
|
13699
13804
|
* {
|
|
13700
|
-
* "key": "
|
|
13701
|
-
* "name": "
|
|
13702
|
-
* "description": "
|
|
13805
|
+
* "key": "quidem",
|
|
13806
|
+
* "name": "tempora",
|
|
13807
|
+
* "description": "Iste nesciunt aut voluptas.",
|
|
13703
13808
|
* "value_type": "string"
|
|
13704
13809
|
* }
|
|
13705
13810
|
* ]
|
|
13706
13811
|
*/
|
|
13707
13812
|
data?: {
|
|
13708
|
-
/** @example
|
|
13813
|
+
/** @example aut */
|
|
13709
13814
|
key?: string;
|
|
13710
|
-
/** @example
|
|
13815
|
+
/** @example repellat */
|
|
13711
13816
|
name?: string;
|
|
13712
|
-
/** @example
|
|
13817
|
+
/** @example Ipsam veniam animi reprehenderit voluptas. */
|
|
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 16a03152-cded-4625-aa16-20308515af79 */
|
|
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, 03:57 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 06 Jul 2026, 12:46 AM */
|
|
14969
15074
|
next_inspection_date?: string;
|
|
14970
|
-
/** @example
|
|
15075
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
14971
15076
|
created_at?: string;
|
|
14972
|
-
/** @example
|
|
15077
|
+
/** @example 06 May 2026, 01:59 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 5b7d0af9-6281-4b8d-a485-89f62eefc595 */
|
|
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, 03:57 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 06 Jul 2026, 12:46 AM */
|
|
15042
15147
|
next_inspection_date?: string;
|
|
15043
|
-
/** @example
|
|
15148
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15044
15149
|
created_at?: string;
|
|
15045
|
-
/** @example
|
|
15150
|
+
/** @example 06 May 2026, 01:59 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 0349979f-2b93-4915-82f7-d7866fda7965 */
|
|
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, 01:24 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, 09:17 AM */
|
|
15155
15260
|
next_inspection_date?: string;
|
|
15156
|
-
/** @example
|
|
15261
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15157
15262
|
created_at?: string;
|
|
15158
|
-
/** @example
|
|
15263
|
+
/** @example 06 May 2026, 01:59 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 c634101a-8b89-4c78-b3fa-f27f8f56fcd4 */
|
|
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, 03:57 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 06 Jul 2026, 12:46 AM */
|
|
15210
15315
|
next_inspection_date?: string;
|
|
15211
|
-
/** @example
|
|
15316
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15212
15317
|
created_at?: string;
|
|
15213
|
-
/** @example
|
|
15318
|
+
/** @example 06 May 2026, 01:59 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 f606983a-7fa4-456d-810e-d3ecee55eeaf */
|
|
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, 01:24 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, 09:17 AM */
|
|
15265
15370
|
next_inspection_date?: string;
|
|
15266
|
-
/** @example
|
|
15371
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15267
15372
|
created_at?: string;
|
|
15268
|
-
/** @example
|
|
15373
|
+
/** @example 06 May 2026, 01:59 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 3108b07f-253b-4e13-ad99-71c239b00ec7 */
|
|
15396
15501
|
uid?: string;
|
|
15397
15502
|
/** @example 1 */
|
|
15398
15503
|
tenancy_id?: number;
|
|
15399
|
-
/** @example
|
|
15504
|
+
/** @example Exercitationem non aut autem cumque. */
|
|
15400
15505
|
title?: string;
|
|
15401
|
-
/** @example
|
|
15506
|
+
/** @example Aut amet veniam sit molestias occaecati. Quaerat et placeat reiciendis eligendi. Qui veniam provident est facilis. */
|
|
15402
15507
|
description?: string;
|
|
15403
15508
|
/** @example in_progress */
|
|
15404
15509
|
status?: string;
|
|
15405
|
-
/** @example
|
|
15510
|
+
/** @example low */
|
|
15406
15511
|
priority?: string;
|
|
15407
|
-
/** @example
|
|
15512
|
+
/** @example 01 May 2026, 03:13 PM */
|
|
15408
15513
|
reported_at?: string;
|
|
15409
15514
|
/** @example null */
|
|
15410
15515
|
assigned_at?: string | null;
|
|
15411
15516
|
/** @example null */
|
|
15412
15517
|
completed_at?: string | null;
|
|
15413
|
-
/** @example
|
|
15518
|
+
/** @example 09 May 2026, 09:45 PM */
|
|
15414
15519
|
sla_deadline?: string;
|
|
15415
|
-
/** @example
|
|
15520
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15416
15521
|
created_at?: string;
|
|
15417
|
-
/** @example
|
|
15522
|
+
/** @example 06 May 2026, 01:59 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 6fee8479-1938-4340-ac8e-5cda6bf50dc8 */
|
|
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, 03:27 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, 11:52 PM */
|
|
15473
15578
|
sla_deadline?: string;
|
|
15474
|
-
/** @example
|
|
15579
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15475
15580
|
created_at?: string;
|
|
15476
|
-
/** @example
|
|
15581
|
+
/** @example 06 May 2026, 01:59 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 82e520cc-97c0-4890-af2f-f0e19d2b1fd6 */
|
|
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 30 Apr 2026, 01:12 AM */
|
|
15526
15631
|
reported_at?: string;
|
|
15527
|
-
/** @example
|
|
15632
|
+
/** @example 04 May 2026, 09:32 PM */
|
|
15528
15633
|
assigned_at?: string;
|
|
15529
15634
|
/** @example null */
|
|
15530
15635
|
completed_at?: string | null;
|
|
15531
|
-
/** @example
|
|
15636
|
+
/** @example 08 May 2026, 02:54 AM */
|
|
15532
15637
|
sla_deadline?: string;
|
|
15533
|
-
/** @example
|
|
15638
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15534
15639
|
created_at?: string;
|
|
15535
|
-
/** @example
|
|
15640
|
+
/** @example 06 May 2026, 01:59 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 91e1b8e8-e288-47a2-af16-0df9b52ba751 */
|
|
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 30 Apr 2026, 01:12 AM */
|
|
15585
15690
|
reported_at?: string;
|
|
15586
|
-
/** @example
|
|
15691
|
+
/** @example 04 May 2026, 09:32 PM */
|
|
15587
15692
|
assigned_at?: string;
|
|
15588
15693
|
/** @example null */
|
|
15589
15694
|
completed_at?: string | null;
|
|
15590
|
-
/** @example
|
|
15695
|
+
/** @example 08 May 2026, 02:54 AM */
|
|
15591
15696
|
sla_deadline?: string;
|
|
15592
|
-
/** @example
|
|
15697
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15593
15698
|
created_at?: string;
|
|
15594
|
-
/** @example
|
|
15699
|
+
/** @example 06 May 2026, 01:59 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 50b2774d-0ad0-4c5b-a061-fd6f09929c53 */
|
|
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 30 Apr 2026, 01:12 AM */
|
|
15644
15749
|
reported_at?: string;
|
|
15645
|
-
/** @example
|
|
15750
|
+
/** @example 04 May 2026, 09:32 PM */
|
|
15646
15751
|
assigned_at?: string;
|
|
15647
15752
|
/** @example null */
|
|
15648
15753
|
completed_at?: string | null;
|
|
15649
|
-
/** @example
|
|
15754
|
+
/** @example 08 May 2026, 02:54 AM */
|
|
15650
15755
|
sla_deadline?: string;
|
|
15651
|
-
/** @example
|
|
15756
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
15652
15757
|
created_at?: string;
|
|
15653
|
-
/** @example
|
|
15758
|
+
/** @example 06 May 2026, 01:59 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 [
|
|
@@ -16221,8 +16342,28 @@ export interface operations {
|
|
|
16221
16342
|
compliance_status?: {
|
|
16222
16343
|
/** @example compliant */
|
|
16223
16344
|
overall?: string;
|
|
16224
|
-
/**
|
|
16225
|
-
|
|
16345
|
+
/**
|
|
16346
|
+
* @example [
|
|
16347
|
+
* {
|
|
16348
|
+
* "compliance_key": "gas_safety_certificate",
|
|
16349
|
+
* "state": "compliant",
|
|
16350
|
+
* "valid_until": "2027-03-01"
|
|
16351
|
+
* },
|
|
16352
|
+
* {
|
|
16353
|
+
* "compliance_key": "electrical_installation_condition_report",
|
|
16354
|
+
* "state": "non_compliant",
|
|
16355
|
+
* "valid_until": null
|
|
16356
|
+
* }
|
|
16357
|
+
* ]
|
|
16358
|
+
*/
|
|
16359
|
+
breakdown?: {
|
|
16360
|
+
/** @example gas_safety_certificate */
|
|
16361
|
+
compliance_key?: string;
|
|
16362
|
+
/** @example compliant */
|
|
16363
|
+
state?: string;
|
|
16364
|
+
/** @example 2027-03-01 */
|
|
16365
|
+
valid_until?: string;
|
|
16366
|
+
}[];
|
|
16226
16367
|
};
|
|
16227
16368
|
};
|
|
16228
16369
|
};
|
|
@@ -18719,84 +18860,185 @@ export interface operations {
|
|
|
18719
18860
|
};
|
|
18720
18861
|
};
|
|
18721
18862
|
};
|
|
18722
|
-
|
|
18863
|
+
fetchInspection: {
|
|
18723
18864
|
parameters: {
|
|
18724
|
-
query?:
|
|
18725
|
-
/** @description Number of records per page. Must be at least 1. Must not be greater than 100. */
|
|
18726
|
-
per_page?: number | null;
|
|
18727
|
-
/** @description The current page number. Must be at least 1. */
|
|
18728
|
-
page?: number | null;
|
|
18729
|
-
};
|
|
18865
|
+
query?: never;
|
|
18730
18866
|
header?: never;
|
|
18731
18867
|
path: {
|
|
18732
|
-
/** @description
|
|
18733
|
-
|
|
18868
|
+
/** @description The unique UID of the inspection. */
|
|
18869
|
+
uid: string;
|
|
18734
18870
|
};
|
|
18735
18871
|
cookie?: never;
|
|
18736
18872
|
};
|
|
18737
18873
|
requestBody?: never;
|
|
18738
18874
|
responses: {
|
|
18739
|
-
/** @description Retrieve inspections history for a given listing */
|
|
18740
18875
|
200: {
|
|
18741
18876
|
headers: {
|
|
18742
18877
|
[name: string]: unknown;
|
|
18743
18878
|
};
|
|
18744
18879
|
content: {
|
|
18745
18880
|
"application/json": {
|
|
18746
|
-
/** @example
|
|
18881
|
+
/** @example Inspection fetched successfully */
|
|
18747
18882
|
message?: string;
|
|
18748
18883
|
/** @example null */
|
|
18749
18884
|
event?: string | null;
|
|
18750
18885
|
data?: {
|
|
18886
|
+
/** @example insp_34fda1 */
|
|
18887
|
+
uid?: string;
|
|
18888
|
+
/** @example routine */
|
|
18889
|
+
inspection_type?: string;
|
|
18890
|
+
/** @example scheduled */
|
|
18891
|
+
status?: string;
|
|
18892
|
+
/** @example 10 Apr, 2026 10:30 AM */
|
|
18893
|
+
scheduled_date?: string;
|
|
18894
|
+
/** @example null */
|
|
18895
|
+
completed_date?: string | null;
|
|
18896
|
+
/** @example null */
|
|
18897
|
+
condition_rating?: string | null;
|
|
18898
|
+
/** @example null */
|
|
18899
|
+
summary?: string | null;
|
|
18900
|
+
/** @example 10 Jun, 2026 10:30 AM */
|
|
18901
|
+
next_inspection_date?: string;
|
|
18902
|
+
inspector?: {
|
|
18903
|
+
/** @example 12 */
|
|
18904
|
+
id?: number;
|
|
18905
|
+
/** @example Inspector Jane Doe */
|
|
18906
|
+
name?: string;
|
|
18907
|
+
};
|
|
18751
18908
|
/**
|
|
18752
18909
|
* @example [
|
|
18753
18910
|
* {
|
|
18754
|
-
* "uid": "
|
|
18755
|
-
* "
|
|
18756
|
-
* "
|
|
18757
|
-
* "
|
|
18758
|
-
* "
|
|
18759
|
-
* "condition_rating": null,
|
|
18760
|
-
* "summary": null,
|
|
18761
|
-
* "next_inspection_date": "2026-06-10T10:30:00Z",
|
|
18762
|
-
* "inspector": {
|
|
18763
|
-
* "id": 12,
|
|
18764
|
-
* "name": "Inspector Jane Doe"
|
|
18765
|
-
* },
|
|
18766
|
-
* "media": [
|
|
18767
|
-
* {
|
|
18768
|
-
* "uid": "ism_34fda1",
|
|
18769
|
-
* "file_type": "image/jpeg",
|
|
18770
|
-
* "caption": "Kitchen leak evidence",
|
|
18771
|
-
* "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
|
|
18772
|
-
* "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
|
|
18773
|
-
* }
|
|
18774
|
-
* ],
|
|
18775
|
-
* "created_at": "2026-04-01T09:00:00Z",
|
|
18776
|
-
* "updated_at": "2026-04-01T09:00:00Z"
|
|
18911
|
+
* "uid": "ism_34fda1",
|
|
18912
|
+
* "file_type": "image/jpeg",
|
|
18913
|
+
* "caption": "Kitchen leak evidence",
|
|
18914
|
+
* "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
|
|
18915
|
+
* "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
|
|
18777
18916
|
* }
|
|
18778
18917
|
* ]
|
|
18779
18918
|
*/
|
|
18780
|
-
|
|
18781
|
-
/** @example
|
|
18919
|
+
media?: {
|
|
18920
|
+
/** @example ism_34fda1 */
|
|
18782
18921
|
uid?: string;
|
|
18783
|
-
/** @example
|
|
18784
|
-
|
|
18785
|
-
/** @example
|
|
18786
|
-
|
|
18787
|
-
/** @example
|
|
18788
|
-
|
|
18789
|
-
/** @example
|
|
18790
|
-
|
|
18791
|
-
|
|
18792
|
-
|
|
18793
|
-
|
|
18794
|
-
|
|
18795
|
-
|
|
18796
|
-
|
|
18797
|
-
|
|
18798
|
-
|
|
18799
|
-
|
|
18922
|
+
/** @example image/jpeg */
|
|
18923
|
+
file_type?: string;
|
|
18924
|
+
/** @example Kitchen leak evidence */
|
|
18925
|
+
caption?: string;
|
|
18926
|
+
/** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
|
|
18927
|
+
path?: string;
|
|
18928
|
+
/** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
|
|
18929
|
+
url?: string;
|
|
18930
|
+
}[];
|
|
18931
|
+
/** @example 01 Apr, 2026 09:00 AM */
|
|
18932
|
+
created_at?: string;
|
|
18933
|
+
/** @example 01 Apr, 2026 09:00 AM */
|
|
18934
|
+
updated_at?: string;
|
|
18935
|
+
};
|
|
18936
|
+
} | {
|
|
18937
|
+
data?: {
|
|
18938
|
+
/** @example 028fe024-251e-4852-bc78-c1e756fea5a4 */
|
|
18939
|
+
uid?: string;
|
|
18940
|
+
/** @example follow_up */
|
|
18941
|
+
inspection_type?: string;
|
|
18942
|
+
/** @example cancelled */
|
|
18943
|
+
status?: string;
|
|
18944
|
+
/** @example 12 May 2026, 03:57 AM */
|
|
18945
|
+
scheduled_date?: string;
|
|
18946
|
+
/** @example null */
|
|
18947
|
+
completed_date?: string | null;
|
|
18948
|
+
/** @example attention_required */
|
|
18949
|
+
condition_rating?: string;
|
|
18950
|
+
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
18951
|
+
summary?: string;
|
|
18952
|
+
/** @example 06 Jul 2026, 12:46 AM */
|
|
18953
|
+
next_inspection_date?: string;
|
|
18954
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
18955
|
+
created_at?: string;
|
|
18956
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
18957
|
+
updated_at?: string;
|
|
18958
|
+
};
|
|
18959
|
+
};
|
|
18960
|
+
};
|
|
18961
|
+
};
|
|
18962
|
+
};
|
|
18963
|
+
};
|
|
18964
|
+
listingHistoryInspection: {
|
|
18965
|
+
parameters: {
|
|
18966
|
+
query?: {
|
|
18967
|
+
/** @description Number of records per page. Must be at least 1. Must not be greater than 100. */
|
|
18968
|
+
per_page?: number | null;
|
|
18969
|
+
/** @description The current page number. Must be at least 1. */
|
|
18970
|
+
page?: number | null;
|
|
18971
|
+
};
|
|
18972
|
+
header?: never;
|
|
18973
|
+
path: {
|
|
18974
|
+
/** @description Optional parameter. uuid required The uid of listing. */
|
|
18975
|
+
listing_uid: string;
|
|
18976
|
+
};
|
|
18977
|
+
cookie?: never;
|
|
18978
|
+
};
|
|
18979
|
+
requestBody?: never;
|
|
18980
|
+
responses: {
|
|
18981
|
+
/** @description Retrieve inspections history for a given listing */
|
|
18982
|
+
200: {
|
|
18983
|
+
headers: {
|
|
18984
|
+
[name: string]: unknown;
|
|
18985
|
+
};
|
|
18986
|
+
content: {
|
|
18987
|
+
"application/json": {
|
|
18988
|
+
/** @example Listing inspection fetched successfully */
|
|
18989
|
+
message?: string;
|
|
18990
|
+
/** @example null */
|
|
18991
|
+
event?: string | null;
|
|
18992
|
+
data?: {
|
|
18993
|
+
/**
|
|
18994
|
+
* @example [
|
|
18995
|
+
* {
|
|
18996
|
+
* "uid": "insp_34fda1",
|
|
18997
|
+
* "inspection_type": "routine",
|
|
18998
|
+
* "status": "scheduled",
|
|
18999
|
+
* "scheduled_date": "2026-04-10T10:30:00Z",
|
|
19000
|
+
* "completed_date": null,
|
|
19001
|
+
* "condition_rating": null,
|
|
19002
|
+
* "summary": null,
|
|
19003
|
+
* "next_inspection_date": "2026-06-10T10:30:00Z",
|
|
19004
|
+
* "inspector": {
|
|
19005
|
+
* "id": 12,
|
|
19006
|
+
* "name": "Inspector Jane Doe"
|
|
19007
|
+
* },
|
|
19008
|
+
* "media": [
|
|
19009
|
+
* {
|
|
19010
|
+
* "uid": "ism_34fda1",
|
|
19011
|
+
* "file_type": "image/jpeg",
|
|
19012
|
+
* "caption": "Kitchen leak evidence",
|
|
19013
|
+
* "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
|
|
19014
|
+
* "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
|
|
19015
|
+
* }
|
|
19016
|
+
* ],
|
|
19017
|
+
* "created_at": "2026-04-01T09:00:00Z",
|
|
19018
|
+
* "updated_at": "2026-04-01T09:00:00Z"
|
|
19019
|
+
* }
|
|
19020
|
+
* ]
|
|
19021
|
+
*/
|
|
19022
|
+
items?: {
|
|
19023
|
+
/** @example insp_34fda1 */
|
|
19024
|
+
uid?: string;
|
|
19025
|
+
/** @example routine */
|
|
19026
|
+
inspection_type?: string;
|
|
19027
|
+
/** @example scheduled */
|
|
19028
|
+
status?: string;
|
|
19029
|
+
/** @example 2026-04-10T10:30:00Z */
|
|
19030
|
+
scheduled_date?: string;
|
|
19031
|
+
/** @example null */
|
|
19032
|
+
completed_date?: string | null;
|
|
19033
|
+
/** @example null */
|
|
19034
|
+
condition_rating?: string | null;
|
|
19035
|
+
/** @example null */
|
|
19036
|
+
summary?: string | null;
|
|
19037
|
+
/** @example 2026-06-10T10:30:00Z */
|
|
19038
|
+
next_inspection_date?: string;
|
|
19039
|
+
inspector?: {
|
|
19040
|
+
/** @example 12 */
|
|
19041
|
+
id?: number;
|
|
18800
19042
|
/** @example Inspector Jane Doe */
|
|
18801
19043
|
name?: string;
|
|
18802
19044
|
};
|
|
@@ -18904,15 +19146,15 @@ export interface operations {
|
|
|
18904
19146
|
content: {
|
|
18905
19147
|
"application/json": {
|
|
18906
19148
|
data?: {
|
|
18907
|
-
/** @example
|
|
19149
|
+
/** @example c8c525a7-c4df-484b-b864-04ab9cd07ef0 */
|
|
18908
19150
|
uid?: string;
|
|
18909
|
-
/** @example
|
|
19151
|
+
/** @example Emily Reid */
|
|
18910
19152
|
username?: string;
|
|
18911
19153
|
/** @example null */
|
|
18912
19154
|
first_name?: string | null;
|
|
18913
19155
|
/** @example null */
|
|
18914
19156
|
last_name?: string | null;
|
|
18915
|
-
/** @example
|
|
19157
|
+
/** @example anthony.khan@example.com */
|
|
18916
19158
|
email?: string;
|
|
18917
19159
|
/** @example null */
|
|
18918
19160
|
phone?: string | null;
|
|
@@ -18934,9 +19176,9 @@ export interface operations {
|
|
|
18934
19176
|
timezone?: string;
|
|
18935
19177
|
/** @example Customer */
|
|
18936
19178
|
user_type?: string;
|
|
18937
|
-
/** @example
|
|
19179
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
18938
19180
|
created?: string;
|
|
18939
|
-
/** @example
|
|
19181
|
+
/** @example 1 second ago */
|
|
18940
19182
|
email_verified_at?: string;
|
|
18941
19183
|
verification_status?: {
|
|
18942
19184
|
/** @example not_verified */
|
|
@@ -19403,15 +19645,15 @@ export interface operations {
|
|
|
19403
19645
|
content: {
|
|
19404
19646
|
"application/json": {
|
|
19405
19647
|
data?: {
|
|
19406
|
-
/** @example
|
|
19648
|
+
/** @example ddca238b-5370-4c44-b7e3-1c9e7083033e */
|
|
19407
19649
|
uid?: string;
|
|
19408
|
-
/** @example
|
|
19650
|
+
/** @example Emily Reid */
|
|
19409
19651
|
username?: string;
|
|
19410
19652
|
/** @example null */
|
|
19411
19653
|
first_name?: string | null;
|
|
19412
19654
|
/** @example null */
|
|
19413
19655
|
last_name?: string | null;
|
|
19414
|
-
/** @example
|
|
19656
|
+
/** @example jbailey@example.org */
|
|
19415
19657
|
email?: string;
|
|
19416
19658
|
/** @example null */
|
|
19417
19659
|
phone?: string | null;
|
|
@@ -19433,7 +19675,7 @@ export interface operations {
|
|
|
19433
19675
|
timezone?: string;
|
|
19434
19676
|
/** @example Customer */
|
|
19435
19677
|
user_type?: string;
|
|
19436
|
-
/** @example
|
|
19678
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
19437
19679
|
created?: string;
|
|
19438
19680
|
/** @example 0 seconds ago */
|
|
19439
19681
|
email_verified_at?: string;
|
|
@@ -19518,24 +19760,18 @@ export interface operations {
|
|
|
19518
19760
|
reservedBookingsLandlord: {
|
|
19519
19761
|
parameters: {
|
|
19520
19762
|
query?: {
|
|
19763
|
+
/** @description Filter bookings by tenant/guest name. */
|
|
19764
|
+
tenant_name?: string | null;
|
|
19521
19765
|
/** @description Number of bookings per page. */
|
|
19522
|
-
per_page?: number;
|
|
19766
|
+
per_page?: number | null;
|
|
19767
|
+
/** @description Current page number. */
|
|
19768
|
+
page?: number | null;
|
|
19523
19769
|
};
|
|
19524
19770
|
header?: never;
|
|
19525
19771
|
path?: never;
|
|
19526
19772
|
cookie?: never;
|
|
19527
19773
|
};
|
|
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
|
-
};
|
|
19774
|
+
requestBody?: never;
|
|
19539
19775
|
responses: {
|
|
19540
19776
|
/** @description Retrieve landlord reserved bookings */
|
|
19541
19777
|
200: {
|
|
@@ -19587,7 +19823,8 @@ export interface operations {
|
|
|
19587
19823
|
* "end_date": "13 Jun 2026",
|
|
19588
19824
|
* "nights": 3,
|
|
19589
19825
|
* "status": "pending",
|
|
19590
|
-
* "total_price": "450.00"
|
|
19826
|
+
* "total_price": "450.00",
|
|
19827
|
+
* "created_at": "06 May, 2026 10:30 AM"
|
|
19591
19828
|
* }
|
|
19592
19829
|
* ]
|
|
19593
19830
|
*/
|
|
@@ -19654,6 +19891,8 @@ export interface operations {
|
|
|
19654
19891
|
status?: string;
|
|
19655
19892
|
/** @example 450.00 */
|
|
19656
19893
|
total_price?: string;
|
|
19894
|
+
/** @example 06 May, 2026 10:30 AM */
|
|
19895
|
+
created_at?: string;
|
|
19657
19896
|
}[];
|
|
19658
19897
|
pagination?: {
|
|
19659
19898
|
/** @example 1 */
|
|
@@ -20065,7 +20304,7 @@ export interface operations {
|
|
|
20065
20304
|
*/
|
|
20066
20305
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
20067
20306
|
/**
|
|
20068
|
-
* @example
|
|
20307
|
+
* @example tenant
|
|
20069
20308
|
* @enum {string|null}
|
|
20070
20309
|
*/
|
|
20071
20310
|
source?: "tenant" | "landlord" | "admin" | null;
|
|
@@ -20294,7 +20533,7 @@ export interface operations {
|
|
|
20294
20533
|
content: {
|
|
20295
20534
|
"application/json": {
|
|
20296
20535
|
data?: {
|
|
20297
|
-
/** @example
|
|
20536
|
+
/** @example b08e4df0-aa92-48f6-93d7-fb4c8f32f8e8 */
|
|
20298
20537
|
uid?: string;
|
|
20299
20538
|
/** @example JH-APP-2026-936806 */
|
|
20300
20539
|
application_ref?: string;
|
|
@@ -20315,7 +20554,7 @@ export interface operations {
|
|
|
20315
20554
|
/** @example null */
|
|
20316
20555
|
rejection_reason?: string | null;
|
|
20317
20556
|
timeline?: {
|
|
20318
|
-
/** @example
|
|
20557
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
20319
20558
|
created_at?: string;
|
|
20320
20559
|
/** @example null */
|
|
20321
20560
|
approved_at?: string | null;
|
|
@@ -20349,7 +20588,7 @@ export interface operations {
|
|
|
20349
20588
|
content: {
|
|
20350
20589
|
"application/json": {
|
|
20351
20590
|
data?: {
|
|
20352
|
-
/** @example
|
|
20591
|
+
/** @example 552526c7-c37c-4392-8489-1030c8aadb7d */
|
|
20353
20592
|
uid?: string;
|
|
20354
20593
|
/** @example JH-APP-2026-757680 */
|
|
20355
20594
|
application_ref?: string;
|
|
@@ -20370,7 +20609,7 @@ export interface operations {
|
|
|
20370
20609
|
/** @example null */
|
|
20371
20610
|
rejection_reason?: string | null;
|
|
20372
20611
|
timeline?: {
|
|
20373
|
-
/** @example
|
|
20612
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
20374
20613
|
created_at?: string;
|
|
20375
20614
|
/** @example null */
|
|
20376
20615
|
approved_at?: string | null;
|
|
@@ -20414,7 +20653,7 @@ export interface operations {
|
|
|
20414
20653
|
content: {
|
|
20415
20654
|
"application/json": {
|
|
20416
20655
|
data?: {
|
|
20417
|
-
/** @example
|
|
20656
|
+
/** @example ebe6c30c-8049-40c4-92d5-802e605e1f0c */
|
|
20418
20657
|
uid?: string;
|
|
20419
20658
|
/** @example JH-APP-2026-449171 */
|
|
20420
20659
|
application_ref?: string;
|
|
@@ -20435,7 +20674,7 @@ export interface operations {
|
|
|
20435
20674
|
/** @example null */
|
|
20436
20675
|
rejection_reason?: string | null;
|
|
20437
20676
|
timeline?: {
|
|
20438
|
-
/** @example
|
|
20677
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
20439
20678
|
created_at?: string;
|
|
20440
20679
|
/** @example null */
|
|
20441
20680
|
approved_at?: string | null;
|
|
@@ -20469,7 +20708,7 @@ export interface operations {
|
|
|
20469
20708
|
content: {
|
|
20470
20709
|
"application/json": {
|
|
20471
20710
|
data?: {
|
|
20472
|
-
/** @example
|
|
20711
|
+
/** @example 5cd2a453-b7e3-4137-beeb-df569bf9b8a1 */
|
|
20473
20712
|
uid?: string;
|
|
20474
20713
|
/** @example 4881.50 */
|
|
20475
20714
|
rent_amount?: string;
|
|
@@ -20477,9 +20716,9 @@ export interface operations {
|
|
|
20477
20716
|
deposit_amount?: string;
|
|
20478
20717
|
/** @example offer_accepted */
|
|
20479
20718
|
state?: string;
|
|
20480
|
-
/** @example 2025-08-
|
|
20719
|
+
/** @example 2025-08-29T00:00:00.000000Z */
|
|
20481
20720
|
start_date?: string;
|
|
20482
|
-
/** @example 2026-08-
|
|
20721
|
+
/** @example 2026-08-29T00:00:00.000000Z */
|
|
20483
20722
|
end_date?: string;
|
|
20484
20723
|
/** @example false */
|
|
20485
20724
|
is_periodic?: boolean;
|
|
@@ -20487,7 +20726,7 @@ export interface operations {
|
|
|
20487
20726
|
company_name?: string | null;
|
|
20488
20727
|
/** @example null */
|
|
20489
20728
|
company_registration_number?: string | null;
|
|
20490
|
-
/** @example 2026-05-
|
|
20729
|
+
/** @example 2026-05-06T13:59:06.000000Z */
|
|
20491
20730
|
created_at?: string;
|
|
20492
20731
|
};
|
|
20493
20732
|
};
|
|
@@ -20495,6 +20734,88 @@ export interface operations {
|
|
|
20495
20734
|
};
|
|
20496
20735
|
};
|
|
20497
20736
|
};
|
|
20737
|
+
fetchLandlordListingReviews: {
|
|
20738
|
+
parameters: {
|
|
20739
|
+
query?: {
|
|
20740
|
+
/** @description Number of records per page. */
|
|
20741
|
+
per_page?: number;
|
|
20742
|
+
/** @description Current page number. */
|
|
20743
|
+
page?: number;
|
|
20744
|
+
};
|
|
20745
|
+
header?: never;
|
|
20746
|
+
path?: never;
|
|
20747
|
+
cookie?: never;
|
|
20748
|
+
};
|
|
20749
|
+
requestBody?: never;
|
|
20750
|
+
responses: {
|
|
20751
|
+
/** @description Retrieve reviews for listings owned by the authenticated landlord */
|
|
20752
|
+
200: {
|
|
20753
|
+
headers: {
|
|
20754
|
+
[name: string]: unknown;
|
|
20755
|
+
};
|
|
20756
|
+
content: {
|
|
20757
|
+
"application/json": {
|
|
20758
|
+
/** @example Review retrieved successfully */
|
|
20759
|
+
message?: string;
|
|
20760
|
+
/** @example null */
|
|
20761
|
+
event?: string | null;
|
|
20762
|
+
data?: {
|
|
20763
|
+
/**
|
|
20764
|
+
* @example [
|
|
20765
|
+
* {
|
|
20766
|
+
* "id": 1,
|
|
20767
|
+
* "rating": 5,
|
|
20768
|
+
* "comment": "Excellent service.",
|
|
20769
|
+
* "reviewable_type": "listing",
|
|
20770
|
+
* "reviewer": {
|
|
20771
|
+
* "uid": "aja asjas",
|
|
20772
|
+
* "name": "Sarah Jenkins"
|
|
20773
|
+
* },
|
|
20774
|
+
* "created_at": "28 Apr, 2026 09:00 AM",
|
|
20775
|
+
* "updated_at": "28 Apr, 2026 09:00 AM"
|
|
20776
|
+
* }
|
|
20777
|
+
* ]
|
|
20778
|
+
*/
|
|
20779
|
+
items?: {
|
|
20780
|
+
/** @example 1 */
|
|
20781
|
+
id?: number;
|
|
20782
|
+
/** @example 5 */
|
|
20783
|
+
rating?: number;
|
|
20784
|
+
/** @example Excellent service. */
|
|
20785
|
+
comment?: string;
|
|
20786
|
+
/** @example listing */
|
|
20787
|
+
reviewable_type?: string;
|
|
20788
|
+
reviewer?: {
|
|
20789
|
+
/** @example aja asjas */
|
|
20790
|
+
uid?: string;
|
|
20791
|
+
/** @example Sarah Jenkins */
|
|
20792
|
+
name?: string;
|
|
20793
|
+
};
|
|
20794
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
20795
|
+
created_at?: string;
|
|
20796
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
20797
|
+
updated_at?: string;
|
|
20798
|
+
}[];
|
|
20799
|
+
pagination?: {
|
|
20800
|
+
/** @example 1 */
|
|
20801
|
+
current_page?: number;
|
|
20802
|
+
/** @example 15 */
|
|
20803
|
+
per_page?: number;
|
|
20804
|
+
/** @example 0 */
|
|
20805
|
+
total?: number;
|
|
20806
|
+
/** @example 1 */
|
|
20807
|
+
last_page?: number;
|
|
20808
|
+
/** @example null */
|
|
20809
|
+
from?: string | null;
|
|
20810
|
+
/** @example null */
|
|
20811
|
+
to?: string | null;
|
|
20812
|
+
};
|
|
20813
|
+
};
|
|
20814
|
+
};
|
|
20815
|
+
};
|
|
20816
|
+
};
|
|
20817
|
+
};
|
|
20818
|
+
};
|
|
20498
20819
|
createListingDraft: {
|
|
20499
20820
|
parameters: {
|
|
20500
20821
|
query?: never;
|
|
@@ -20534,20 +20855,20 @@ export interface operations {
|
|
|
20534
20855
|
content: {
|
|
20535
20856
|
"application/json": {
|
|
20536
20857
|
data?: {
|
|
20537
|
-
/** @example New For Sale
|
|
20858
|
+
/** @example New For Sale Property draft • 6 May 2026, 1:59 PM */
|
|
20538
20859
|
draft_name?: string;
|
|
20539
|
-
/** @example LST-
|
|
20860
|
+
/** @example LST-PRP-SAL-MOU4ICTRTDL */
|
|
20540
20861
|
sku?: string;
|
|
20541
|
-
/** @example
|
|
20862
|
+
/** @example 8eff4c43-938a-48d8-bbc3-89dbdd2a85e6 */
|
|
20542
20863
|
uid?: string;
|
|
20543
20864
|
/** @example Sale */
|
|
20544
20865
|
listing_type?: string;
|
|
20545
|
-
/** @example
|
|
20866
|
+
/** @example Property */
|
|
20546
20867
|
vertical?: string;
|
|
20547
|
-
/** @example
|
|
20548
|
-
arrangement_type?: string
|
|
20549
|
-
/** @example
|
|
20550
|
-
arrangement_type_label?: string
|
|
20868
|
+
/** @example let_to_let */
|
|
20869
|
+
arrangement_type?: string;
|
|
20870
|
+
/** @example Let to Let */
|
|
20871
|
+
arrangement_type_label?: string;
|
|
20551
20872
|
/** @example null */
|
|
20552
20873
|
price?: string | null;
|
|
20553
20874
|
/** @example draft */
|
|
@@ -20558,8 +20879,10 @@ export interface operations {
|
|
|
20558
20879
|
published_since?: string | null;
|
|
20559
20880
|
/** @example false */
|
|
20560
20881
|
is_visible?: boolean;
|
|
20561
|
-
|
|
20562
|
-
|
|
20882
|
+
summary?: {
|
|
20883
|
+
/** @example null */
|
|
20884
|
+
availability?: string | null;
|
|
20885
|
+
};
|
|
20563
20886
|
/** @example [] */
|
|
20564
20887
|
workflow?: unknown[];
|
|
20565
20888
|
/** @example [] */
|
|
@@ -20660,9 +20983,9 @@ export interface operations {
|
|
|
20660
20983
|
/**
|
|
20661
20984
|
* @example [
|
|
20662
20985
|
* {
|
|
20663
|
-
* "draft_name": "New For Rent Property draft •
|
|
20664
|
-
* "sku": "LST-PRP-LTR-
|
|
20665
|
-
* "uid": "
|
|
20986
|
+
* "draft_name": "New For Rent Property draft • 6 May 2026, 1:59 PM",
|
|
20987
|
+
* "sku": "LST-PRP-LTR-MOU4ICUGHDW",
|
|
20988
|
+
* "uid": "e08b3f88-b72f-4aae-82c1-3003f47e9961",
|
|
20666
20989
|
* "listing_type": "Rent",
|
|
20667
20990
|
* "vertical": "Property",
|
|
20668
20991
|
* "arrangement_type": "let_to_let",
|
|
@@ -20679,9 +21002,9 @@ export interface operations {
|
|
|
20679
21002
|
* "media": []
|
|
20680
21003
|
* },
|
|
20681
21004
|
* {
|
|
20682
|
-
* "draft_name": "New Short Let Property draft •
|
|
20683
|
-
* "sku": "LST-PRP-SHL-
|
|
20684
|
-
* "uid": "
|
|
21005
|
+
* "draft_name": "New Short Let Property draft • 6 May 2026, 1:59 PM",
|
|
21006
|
+
* "sku": "LST-PRP-SHL-MOU4ICUIR1M",
|
|
21007
|
+
* "uid": "8a6004fe-6a28-4ba1-b8b1-937345dae119",
|
|
20685
21008
|
* "listing_type": "Short Let",
|
|
20686
21009
|
* "vertical": "Property",
|
|
20687
21010
|
* "arrangement_type": "short_term_managed",
|
|
@@ -20700,11 +21023,11 @@ export interface operations {
|
|
|
20700
21023
|
* ]
|
|
20701
21024
|
*/
|
|
20702
21025
|
data?: {
|
|
20703
|
-
/** @example New For Rent Property draft •
|
|
21026
|
+
/** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
|
|
20704
21027
|
draft_name?: string;
|
|
20705
|
-
/** @example LST-PRP-LTR-
|
|
21028
|
+
/** @example LST-PRP-LTR-MOU4ICUGHDW */
|
|
20706
21029
|
sku?: string;
|
|
20707
|
-
/** @example
|
|
21030
|
+
/** @example e08b3f88-b72f-4aae-82c1-3003f47e9961 */
|
|
20708
21031
|
uid?: string;
|
|
20709
21032
|
/** @example Rent */
|
|
20710
21033
|
listing_type?: string;
|
|
@@ -20814,9 +21137,9 @@ export interface operations {
|
|
|
20814
21137
|
/**
|
|
20815
21138
|
* @example [
|
|
20816
21139
|
* {
|
|
20817
|
-
* "draft_name": "New For Rent Property draft •
|
|
20818
|
-
* "sku": "LST-PRP-LTR-
|
|
20819
|
-
* "uid": "
|
|
21140
|
+
* "draft_name": "New For Rent Property draft • 6 May 2026, 1:59 PM",
|
|
21141
|
+
* "sku": "LST-PRP-LTR-MOU4ICUQEYM",
|
|
21142
|
+
* "uid": "167e95a0-9827-4bc6-afb2-4a1cec5dddc8",
|
|
20820
21143
|
* "listing_type": "Rent",
|
|
20821
21144
|
* "vertical": "Property",
|
|
20822
21145
|
* "arrangement_type": "let_to_let",
|
|
@@ -20833,9 +21156,9 @@ export interface operations {
|
|
|
20833
21156
|
* "media": []
|
|
20834
21157
|
* },
|
|
20835
21158
|
* {
|
|
20836
|
-
* "draft_name": "New Short Let Property draft •
|
|
20837
|
-
* "sku": "LST-PRP-SHL-
|
|
20838
|
-
* "uid": "
|
|
21159
|
+
* "draft_name": "New Short Let Property draft • 6 May 2026, 1:59 PM",
|
|
21160
|
+
* "sku": "LST-PRP-SHL-MOU4ICUT8TP",
|
|
21161
|
+
* "uid": "7fae2697-03ab-49c1-9b2b-615a96245aa1",
|
|
20839
21162
|
* "listing_type": "Short Let",
|
|
20840
21163
|
* "vertical": "Property",
|
|
20841
21164
|
* "arrangement_type": "short_term_managed",
|
|
@@ -20854,11 +21177,11 @@ export interface operations {
|
|
|
20854
21177
|
* ]
|
|
20855
21178
|
*/
|
|
20856
21179
|
data?: {
|
|
20857
|
-
/** @example New For Rent Property draft •
|
|
21180
|
+
/** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
|
|
20858
21181
|
draft_name?: string;
|
|
20859
|
-
/** @example LST-PRP-LTR-
|
|
21182
|
+
/** @example LST-PRP-LTR-MOU4ICUQEYM */
|
|
20860
21183
|
sku?: string;
|
|
20861
|
-
/** @example
|
|
21184
|
+
/** @example 167e95a0-9827-4bc6-afb2-4a1cec5dddc8 */
|
|
20862
21185
|
uid?: string;
|
|
20863
21186
|
/** @example Rent */
|
|
20864
21187
|
listing_type?: string;
|
|
@@ -22107,7 +22430,7 @@ export interface operations {
|
|
|
22107
22430
|
content: {
|
|
22108
22431
|
"application/json": {
|
|
22109
22432
|
data?: {
|
|
22110
|
-
/** @example
|
|
22433
|
+
/** @example 8bfafb9f-8c16-4be7-b8fe-b11c85639050 */
|
|
22111
22434
|
uid?: string;
|
|
22112
22435
|
/** @example photo */
|
|
22113
22436
|
media_type?: string;
|
|
@@ -22256,11 +22579,11 @@ export interface operations {
|
|
|
22256
22579
|
content: {
|
|
22257
22580
|
"application/json": {
|
|
22258
22581
|
data?: {
|
|
22259
|
-
/** @example New For Rent Property draft •
|
|
22582
|
+
/** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
|
|
22260
22583
|
draft_name?: string;
|
|
22261
|
-
/** @example LST-PRP-LTR-
|
|
22584
|
+
/** @example LST-PRP-LTR-MOU4ICX5A7N */
|
|
22262
22585
|
sku?: string;
|
|
22263
|
-
/** @example
|
|
22586
|
+
/** @example 61ec0313-59d9-4742-87c8-4a8c4eac5270 */
|
|
22264
22587
|
uid?: string;
|
|
22265
22588
|
/** @example Rent */
|
|
22266
22589
|
listing_type?: string;
|
|
@@ -22420,7 +22743,7 @@ export interface operations {
|
|
|
22420
22743
|
content: {
|
|
22421
22744
|
"application/json": {
|
|
22422
22745
|
data?: {
|
|
22423
|
-
/** @example
|
|
22746
|
+
/** @example 23feb2fd-a67e-4ccc-8fb9-f39b6d039af4 */
|
|
22424
22747
|
uid?: string;
|
|
22425
22748
|
/** @example null */
|
|
22426
22749
|
compliances?: string | null;
|
|
@@ -22471,7 +22794,7 @@ export interface operations {
|
|
|
22471
22794
|
content: {
|
|
22472
22795
|
"application/json": {
|
|
22473
22796
|
data?: {
|
|
22474
|
-
/** @example
|
|
22797
|
+
/** @example 80 */
|
|
22475
22798
|
id?: number;
|
|
22476
22799
|
compliance?: {
|
|
22477
22800
|
/** @example 1 */
|
|
@@ -22493,7 +22816,7 @@ export interface operations {
|
|
|
22493
22816
|
reviewed_by?: number;
|
|
22494
22817
|
/** @example null */
|
|
22495
22818
|
reviewed_at?: string | null;
|
|
22496
|
-
/** @example 2026-05-
|
|
22819
|
+
/** @example 2026-05-06T13:59:06.000000Z */
|
|
22497
22820
|
created_at?: string;
|
|
22498
22821
|
};
|
|
22499
22822
|
};
|
|
@@ -22532,126 +22855,156 @@ export interface operations {
|
|
|
22532
22855
|
};
|
|
22533
22856
|
getLandlordTenancies: {
|
|
22534
22857
|
parameters: {
|
|
22535
|
-
query?:
|
|
22858
|
+
query?: {
|
|
22859
|
+
/** @description Filter by tenant name. */
|
|
22860
|
+
tenant_name?: string | null;
|
|
22861
|
+
/** @description Filter by tenancy state. */
|
|
22862
|
+
state?: string | null;
|
|
22863
|
+
/** @description Number of records per page. */
|
|
22864
|
+
per_page?: number | null;
|
|
22865
|
+
/** @description Current page number. */
|
|
22866
|
+
page?: number | null;
|
|
22867
|
+
};
|
|
22536
22868
|
header?: never;
|
|
22537
22869
|
path?: never;
|
|
22538
22870
|
cookie?: never;
|
|
22539
22871
|
};
|
|
22540
22872
|
requestBody?: never;
|
|
22541
22873
|
responses: {
|
|
22874
|
+
/** @description Retrieve tenancies for the authenticated landlord */
|
|
22542
22875
|
200: {
|
|
22543
22876
|
headers: {
|
|
22544
22877
|
[name: string]: unknown;
|
|
22545
22878
|
};
|
|
22546
22879
|
content: {
|
|
22547
22880
|
"application/json": {
|
|
22548
|
-
/**
|
|
22549
|
-
|
|
22550
|
-
|
|
22551
|
-
|
|
22552
|
-
* "rent_amount": "4881.50",
|
|
22553
|
-
* "deposit_amount": "2151.17",
|
|
22554
|
-
* "state": "offer_accepted",
|
|
22555
|
-
* "start_date": "2025-08-24T00:00:00.000000Z",
|
|
22556
|
-
* "end_date": "2026-08-24T00:00:00.000000Z",
|
|
22557
|
-
* "is_periodic": false,
|
|
22558
|
-
* "company_name": null,
|
|
22559
|
-
* "company_registration_number": null,
|
|
22560
|
-
* "created_at": "2026-05-01T20:09:06.000000Z"
|
|
22561
|
-
* },
|
|
22562
|
-
* {
|
|
22563
|
-
* "uid": "570b2693-6eaf-498f-966f-d1397ee5a56c",
|
|
22564
|
-
* "rent_amount": "3832.26",
|
|
22565
|
-
* "deposit_amount": "1384.27",
|
|
22566
|
-
* "state": "terminated",
|
|
22567
|
-
* "start_date": "2025-06-05T00:00:00.000000Z",
|
|
22568
|
-
* "end_date": "2026-06-05T00:00:00.000000Z",
|
|
22569
|
-
* "is_periodic": false,
|
|
22570
|
-
* "company_name": null,
|
|
22571
|
-
* "company_registration_number": null,
|
|
22572
|
-
* "created_at": "2026-05-01T20:09:07.000000Z"
|
|
22573
|
-
* }
|
|
22574
|
-
* ]
|
|
22575
|
-
*/
|
|
22881
|
+
/** @example Tenancies fetched */
|
|
22882
|
+
message?: string;
|
|
22883
|
+
/** @example null */
|
|
22884
|
+
event?: string | null;
|
|
22576
22885
|
data?: {
|
|
22577
|
-
/** @example cded9829-09b6-4309-9667-eb281402416f */
|
|
22578
|
-
uid?: string;
|
|
22579
|
-
/** @example 4881.50 */
|
|
22580
|
-
rent_amount?: string;
|
|
22581
|
-
/** @example 2151.17 */
|
|
22582
|
-
deposit_amount?: string;
|
|
22583
|
-
/** @example offer_accepted */
|
|
22584
|
-
state?: string;
|
|
22585
|
-
/** @example 2025-08-24T00:00:00.000000Z */
|
|
22586
|
-
start_date?: string;
|
|
22587
|
-
/** @example 2026-08-24T00:00:00.000000Z */
|
|
22588
|
-
end_date?: string;
|
|
22589
|
-
/** @example false */
|
|
22590
|
-
is_periodic?: boolean;
|
|
22591
|
-
/** @example null */
|
|
22592
|
-
company_name?: string | null;
|
|
22593
|
-
/** @example null */
|
|
22594
|
-
company_registration_number?: string | null;
|
|
22595
|
-
/** @example 2026-05-01T20:09:06.000000Z */
|
|
22596
|
-
created_at?: string;
|
|
22597
|
-
}[];
|
|
22598
|
-
links?: {
|
|
22599
|
-
/** @example /?page=1 */
|
|
22600
|
-
first?: string;
|
|
22601
|
-
/** @example /?page=1 */
|
|
22602
|
-
last?: string;
|
|
22603
|
-
/** @example null */
|
|
22604
|
-
prev?: string | null;
|
|
22605
|
-
/** @example null */
|
|
22606
|
-
next?: string | null;
|
|
22607
|
-
};
|
|
22608
|
-
meta?: {
|
|
22609
|
-
/** @example 1 */
|
|
22610
|
-
current_page?: number;
|
|
22611
|
-
/** @example 1 */
|
|
22612
|
-
from?: number;
|
|
22613
|
-
/** @example 1 */
|
|
22614
|
-
last_page?: number;
|
|
22615
22886
|
/**
|
|
22616
22887
|
* @example [
|
|
22617
22888
|
* {
|
|
22618
|
-
* "
|
|
22619
|
-
* "
|
|
22620
|
-
*
|
|
22621
|
-
*
|
|
22622
|
-
*
|
|
22623
|
-
*
|
|
22624
|
-
*
|
|
22625
|
-
*
|
|
22626
|
-
*
|
|
22627
|
-
*
|
|
22628
|
-
*
|
|
22629
|
-
*
|
|
22630
|
-
*
|
|
22631
|
-
*
|
|
22632
|
-
*
|
|
22633
|
-
*
|
|
22889
|
+
* "tenancy_uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
|
|
22890
|
+
* "listing": {
|
|
22891
|
+
* "cover": {
|
|
22892
|
+
* "uid": "lm_34fda1",
|
|
22893
|
+
* "media_type": "image/jpeg",
|
|
22894
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a/cover.jpg",
|
|
22895
|
+
* "order_index": 0,
|
|
22896
|
+
* "is_cover": true
|
|
22897
|
+
* },
|
|
22898
|
+
* "details": {
|
|
22899
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
22900
|
+
* "title": "24 Windsor Court",
|
|
22901
|
+
* "type": "Rent"
|
|
22902
|
+
* },
|
|
22903
|
+
* "owner": {
|
|
22904
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
22905
|
+
* "name": "Alice Taylor"
|
|
22906
|
+
* }
|
|
22907
|
+
* },
|
|
22908
|
+
* "rent_amount": "1500.00",
|
|
22909
|
+
* "deposit_amount": "1500.00",
|
|
22910
|
+
* "tenant": {
|
|
22911
|
+
* "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
|
|
22912
|
+
* "name": "Sarah Jenkins",
|
|
22913
|
+
* "email": "sarah@example.com",
|
|
22914
|
+
* "phone": "+447700900123",
|
|
22915
|
+
* "address": "10 Oxford Street, London, W1"
|
|
22916
|
+
* },
|
|
22917
|
+
* "compliance_status": {
|
|
22918
|
+
* "overall": "compliant",
|
|
22919
|
+
* "label": "Compliant"
|
|
22920
|
+
* },
|
|
22921
|
+
* "state": {
|
|
22922
|
+
* "value": "active",
|
|
22923
|
+
* "label": "Active"
|
|
22924
|
+
* },
|
|
22925
|
+
* "start_date": "2026-03-01",
|
|
22926
|
+
* "end_date": "2027-02-28"
|
|
22634
22927
|
* }
|
|
22635
22928
|
* ]
|
|
22636
22929
|
*/
|
|
22637
|
-
|
|
22638
|
-
/** @example
|
|
22639
|
-
|
|
22640
|
-
|
|
22641
|
-
|
|
22642
|
-
|
|
22643
|
-
|
|
22644
|
-
|
|
22645
|
-
|
|
22930
|
+
items?: {
|
|
22931
|
+
/** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
|
|
22932
|
+
tenancy_uid?: string;
|
|
22933
|
+
listing?: {
|
|
22934
|
+
cover?: {
|
|
22935
|
+
/** @example lm_34fda1 */
|
|
22936
|
+
uid?: string;
|
|
22937
|
+
/** @example image/jpeg */
|
|
22938
|
+
media_type?: string;
|
|
22939
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a/cover.jpg */
|
|
22940
|
+
storage_path?: string;
|
|
22941
|
+
/** @example 0 */
|
|
22942
|
+
order_index?: number;
|
|
22943
|
+
/** @example true */
|
|
22944
|
+
is_cover?: boolean;
|
|
22945
|
+
};
|
|
22946
|
+
details?: {
|
|
22947
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
22948
|
+
address?: string;
|
|
22949
|
+
/** @example 24 Windsor Court */
|
|
22950
|
+
title?: string;
|
|
22951
|
+
/** @example Rent */
|
|
22952
|
+
type?: string;
|
|
22953
|
+
};
|
|
22954
|
+
owner?: {
|
|
22955
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
22956
|
+
uid?: string;
|
|
22957
|
+
/** @example Alice Taylor */
|
|
22958
|
+
name?: string;
|
|
22959
|
+
};
|
|
22960
|
+
};
|
|
22961
|
+
/** @example 1500.00 */
|
|
22962
|
+
rent_amount?: string;
|
|
22963
|
+
/** @example 1500.00 */
|
|
22964
|
+
deposit_amount?: string;
|
|
22965
|
+
tenant?: {
|
|
22966
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
22967
|
+
uid?: string;
|
|
22968
|
+
/** @example Sarah Jenkins */
|
|
22969
|
+
name?: string;
|
|
22970
|
+
/** @example sarah@example.com */
|
|
22971
|
+
email?: string;
|
|
22972
|
+
/** @example +447700900123 */
|
|
22973
|
+
phone?: string;
|
|
22974
|
+
/** @example 10 Oxford Street, London, W1 */
|
|
22975
|
+
address?: string;
|
|
22976
|
+
};
|
|
22977
|
+
compliance_status?: {
|
|
22978
|
+
/** @example compliant */
|
|
22979
|
+
overall?: string;
|
|
22980
|
+
/** @example Compliant */
|
|
22981
|
+
label?: string;
|
|
22982
|
+
};
|
|
22983
|
+
state?: {
|
|
22984
|
+
/** @example active */
|
|
22985
|
+
value?: string;
|
|
22986
|
+
/** @example Active */
|
|
22987
|
+
label?: string;
|
|
22988
|
+
};
|
|
22989
|
+
/** @example 2026-03-01 */
|
|
22990
|
+
start_date?: string;
|
|
22991
|
+
/** @example 2027-02-28 */
|
|
22992
|
+
end_date?: string;
|
|
22646
22993
|
}[];
|
|
22647
|
-
|
|
22648
|
-
|
|
22649
|
-
|
|
22650
|
-
|
|
22651
|
-
|
|
22652
|
-
|
|
22653
|
-
|
|
22654
|
-
|
|
22994
|
+
pagination?: {
|
|
22995
|
+
/** @example 1 */
|
|
22996
|
+
current_page?: number;
|
|
22997
|
+
/** @example 15 */
|
|
22998
|
+
per_page?: number;
|
|
22999
|
+
/** @example 1240 */
|
|
23000
|
+
total?: number;
|
|
23001
|
+
/** @example 83 */
|
|
23002
|
+
last_page?: number;
|
|
23003
|
+
/** @example 1 */
|
|
23004
|
+
from?: number;
|
|
23005
|
+
/** @example 15 */
|
|
23006
|
+
to?: number;
|
|
23007
|
+
};
|
|
22655
23008
|
};
|
|
22656
23009
|
};
|
|
22657
23010
|
};
|
|
@@ -22679,33 +23032,33 @@ export interface operations {
|
|
|
22679
23032
|
/**
|
|
22680
23033
|
* @example [
|
|
22681
23034
|
* {
|
|
22682
|
-
* "uid": "
|
|
23035
|
+
* "uid": "7194e598-c16a-484a-ac5f-2a3c843ed903",
|
|
22683
23036
|
* "rent_amount": "4881.50",
|
|
22684
23037
|
* "deposit_amount": "2151.17",
|
|
22685
23038
|
* "state": "offer_accepted",
|
|
22686
|
-
* "start_date": "2025-08-
|
|
22687
|
-
* "end_date": "2026-08-
|
|
23039
|
+
* "start_date": "2025-08-29T00:00:00.000000Z",
|
|
23040
|
+
* "end_date": "2026-08-29T00:00:00.000000Z",
|
|
22688
23041
|
* "is_periodic": false,
|
|
22689
23042
|
* "company_name": null,
|
|
22690
23043
|
* "company_registration_number": null,
|
|
22691
|
-
* "created_at": "2026-05-
|
|
23044
|
+
* "created_at": "2026-05-06T13:59:06.000000Z"
|
|
22692
23045
|
* },
|
|
22693
23046
|
* {
|
|
22694
|
-
* "uid": "
|
|
23047
|
+
* "uid": "cfabaed9-edd0-430b-906f-507928adbefd",
|
|
22695
23048
|
* "rent_amount": "3832.26",
|
|
22696
23049
|
* "deposit_amount": "1384.27",
|
|
22697
23050
|
* "state": "terminated",
|
|
22698
|
-
* "start_date": "2025-06-
|
|
22699
|
-
* "end_date": "2026-06-
|
|
23051
|
+
* "start_date": "2025-06-10T00:00:00.000000Z",
|
|
23052
|
+
* "end_date": "2026-06-10T00:00:00.000000Z",
|
|
22700
23053
|
* "is_periodic": false,
|
|
22701
23054
|
* "company_name": null,
|
|
22702
23055
|
* "company_registration_number": null,
|
|
22703
|
-
* "created_at": "2026-05-
|
|
23056
|
+
* "created_at": "2026-05-06T13:59:06.000000Z"
|
|
22704
23057
|
* }
|
|
22705
23058
|
* ]
|
|
22706
23059
|
*/
|
|
22707
23060
|
data?: {
|
|
22708
|
-
/** @example
|
|
23061
|
+
/** @example 7194e598-c16a-484a-ac5f-2a3c843ed903 */
|
|
22709
23062
|
uid?: string;
|
|
22710
23063
|
/** @example 4881.50 */
|
|
22711
23064
|
rent_amount?: string;
|
|
@@ -22713,9 +23066,9 @@ export interface operations {
|
|
|
22713
23066
|
deposit_amount?: string;
|
|
22714
23067
|
/** @example offer_accepted */
|
|
22715
23068
|
state?: string;
|
|
22716
|
-
/** @example 2025-08-
|
|
23069
|
+
/** @example 2025-08-29T00:00:00.000000Z */
|
|
22717
23070
|
start_date?: string;
|
|
22718
|
-
/** @example 2026-08-
|
|
23071
|
+
/** @example 2026-08-29T00:00:00.000000Z */
|
|
22719
23072
|
end_date?: string;
|
|
22720
23073
|
/** @example false */
|
|
22721
23074
|
is_periodic?: boolean;
|
|
@@ -22723,7 +23076,7 @@ export interface operations {
|
|
|
22723
23076
|
company_name?: string | null;
|
|
22724
23077
|
/** @example null */
|
|
22725
23078
|
company_registration_number?: string | null;
|
|
22726
|
-
/** @example 2026-05-
|
|
23079
|
+
/** @example 2026-05-06T13:59:06.000000Z */
|
|
22727
23080
|
created_at?: string;
|
|
22728
23081
|
}[];
|
|
22729
23082
|
links?: {
|
|
@@ -22830,7 +23183,7 @@ export interface operations {
|
|
|
22830
23183
|
content: {
|
|
22831
23184
|
"application/json": {
|
|
22832
23185
|
data?: {
|
|
22833
|
-
/** @example
|
|
23186
|
+
/** @example 87 */
|
|
22834
23187
|
id?: number;
|
|
22835
23188
|
compliance?: {
|
|
22836
23189
|
/** @example 1 */
|
|
@@ -22850,9 +23203,9 @@ export interface operations {
|
|
|
22850
23203
|
rejection_reason?: string | null;
|
|
22851
23204
|
/** @example 1 */
|
|
22852
23205
|
reviewed_by?: number;
|
|
22853
|
-
/** @example 2026-05-
|
|
23206
|
+
/** @example 2026-05-06T13:59:06.000000Z */
|
|
22854
23207
|
reviewed_at?: string;
|
|
22855
|
-
/** @example 2026-05-
|
|
23208
|
+
/** @example 2026-05-06T13:59:06.000000Z */
|
|
22856
23209
|
created_at?: string;
|
|
22857
23210
|
};
|
|
22858
23211
|
};
|
|
@@ -22879,7 +23232,7 @@ export interface operations {
|
|
|
22879
23232
|
content: {
|
|
22880
23233
|
"application/json": {
|
|
22881
23234
|
data?: {
|
|
22882
|
-
/** @example
|
|
23235
|
+
/** @example 88 */
|
|
22883
23236
|
id?: number;
|
|
22884
23237
|
compliance?: {
|
|
22885
23238
|
/** @example 1 */
|
|
@@ -22899,9 +23252,9 @@ export interface operations {
|
|
|
22899
23252
|
rejection_reason?: string | null;
|
|
22900
23253
|
/** @example 1 */
|
|
22901
23254
|
reviewed_by?: number;
|
|
22902
|
-
/** @example 2026-05-
|
|
23255
|
+
/** @example 2026-05-06T13:59:06.000000Z */
|
|
22903
23256
|
reviewed_at?: string;
|
|
22904
|
-
/** @example 2026-05-
|
|
23257
|
+
/** @example 2026-05-06T13:59:06.000000Z */
|
|
22905
23258
|
created_at?: string;
|
|
22906
23259
|
};
|
|
22907
23260
|
};
|
|
@@ -23783,17 +24136,17 @@ export interface operations {
|
|
|
23783
24136
|
content: {
|
|
23784
24137
|
"application/json": {
|
|
23785
24138
|
data?: {
|
|
23786
|
-
/** @example
|
|
24139
|
+
/** @example 6b4e9a1a-067d-47d2-abf7-156406afe774 */
|
|
23787
24140
|
uid?: string;
|
|
23788
|
-
/** @example
|
|
24141
|
+
/** @example Dolor ea natus vel. */
|
|
23789
24142
|
note?: string;
|
|
23790
24143
|
user?: {
|
|
23791
|
-
/** @example
|
|
24144
|
+
/** @example 9 */
|
|
23792
24145
|
id?: number;
|
|
23793
|
-
/** @example
|
|
24146
|
+
/** @example Carrie Johnson */
|
|
23794
24147
|
name?: string;
|
|
23795
24148
|
};
|
|
23796
|
-
/** @example 2026-04-
|
|
24149
|
+
/** @example 2026-04-27 22:15:17 */
|
|
23797
24150
|
created_at?: string;
|
|
23798
24151
|
};
|
|
23799
24152
|
};
|
|
@@ -23984,45 +24337,17 @@ export interface operations {
|
|
|
23984
24337
|
};
|
|
23985
24338
|
};
|
|
23986
24339
|
};
|
|
23987
|
-
|
|
24340
|
+
fetchMaintenanceRequest: {
|
|
23988
24341
|
parameters: {
|
|
23989
24342
|
query?: never;
|
|
23990
24343
|
header?: never;
|
|
23991
|
-
path
|
|
23992
|
-
|
|
23993
|
-
|
|
23994
|
-
requestBody: {
|
|
23995
|
-
content: {
|
|
23996
|
-
"application/json": {
|
|
23997
|
-
/**
|
|
23998
|
-
* @description UID of the listing where the maintenance issue occurred. The <code>uid</code> of an existing record in the listings table.
|
|
23999
|
-
* @example 54c1fd9b-8720-43e6-be3d-d4283477f38b
|
|
24000
|
-
*/
|
|
24001
|
-
listing_uid: string;
|
|
24002
|
-
/**
|
|
24003
|
-
* @description UID of the tenancy related to the maintenance issue (if applicable). The <code>uid</code> of an existing record in the tenancies table.
|
|
24004
|
-
* @example a1b2c3d4-9e87-41b6-8d6f-91e5c6fcd1e2
|
|
24005
|
-
*/
|
|
24006
|
-
tenancy_uid?: string | null;
|
|
24007
|
-
/**
|
|
24008
|
-
* @description Priority level of the maintenance request.
|
|
24009
|
-
* @example high
|
|
24010
|
-
* @enum {string}
|
|
24011
|
-
*/
|
|
24012
|
-
priority: "low" | "normal" | "urgent" | "emergency";
|
|
24013
|
-
/**
|
|
24014
|
-
* @description Short title summarizing the maintenance issue. Must not be greater than 255 characters.
|
|
24015
|
-
* @example Leaking kitchen sink
|
|
24016
|
-
*/
|
|
24017
|
-
title: string;
|
|
24018
|
-
/**
|
|
24019
|
-
* @description Detailed explanation of the maintenance problem. Must not be greater than 5000 characters.
|
|
24020
|
-
* @example The kitchen sink has been leaking continuously for two days and water is pooling under the cabinet.
|
|
24021
|
-
*/
|
|
24022
|
-
description: string;
|
|
24023
|
-
};
|
|
24344
|
+
path: {
|
|
24345
|
+
/** @description The UID of the maintenance request. */
|
|
24346
|
+
uid: string;
|
|
24024
24347
|
};
|
|
24348
|
+
cookie?: never;
|
|
24025
24349
|
};
|
|
24350
|
+
requestBody?: never;
|
|
24026
24351
|
responses: {
|
|
24027
24352
|
200: {
|
|
24028
24353
|
headers: {
|
|
@@ -24030,76 +24355,253 @@ export interface operations {
|
|
|
24030
24355
|
};
|
|
24031
24356
|
content: {
|
|
24032
24357
|
"application/json": {
|
|
24033
|
-
/**
|
|
24034
|
-
|
|
24035
|
-
|
|
24036
|
-
|
|
24037
|
-
* "tenancy_id": 1,
|
|
24038
|
-
* "title": "Quos velit et fugiat sunt nihil.",
|
|
24039
|
-
* "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.",
|
|
24040
|
-
* "status": "reported",
|
|
24041
|
-
* "priority": "emergency",
|
|
24042
|
-
* "reported_at": "25 Apr 2026, 07:22 AM",
|
|
24043
|
-
* "assigned_at": "30 Apr 2026, 03:42 AM",
|
|
24044
|
-
* "completed_at": null,
|
|
24045
|
-
* "sla_deadline": "03 May 2026, 09:04 AM",
|
|
24046
|
-
* "created_at": "01 May 2026, 08:09 PM",
|
|
24047
|
-
* "updated_at": "01 May 2026, 08:09 PM"
|
|
24048
|
-
* },
|
|
24049
|
-
* {
|
|
24050
|
-
* "uid": "8445fba5-b568-4700-bb28-e2ec902e757d",
|
|
24051
|
-
* "tenancy_id": 1,
|
|
24052
|
-
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
24053
|
-
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
24054
|
-
* "status": "completed",
|
|
24055
|
-
* "priority": "normal",
|
|
24056
|
-
* "reported_at": "27 Apr 2026, 08:01 PM",
|
|
24057
|
-
* "assigned_at": null,
|
|
24058
|
-
* "completed_at": null,
|
|
24059
|
-
* "sla_deadline": "04 May 2026, 05:04 PM",
|
|
24060
|
-
* "created_at": "01 May 2026, 08:09 PM",
|
|
24061
|
-
* "updated_at": "01 May 2026, 08:09 PM"
|
|
24062
|
-
* }
|
|
24063
|
-
* ]
|
|
24064
|
-
*/
|
|
24358
|
+
/** @example Maintenance request fetched successfully */
|
|
24359
|
+
message?: string;
|
|
24360
|
+
/** @example null */
|
|
24361
|
+
event?: string | null;
|
|
24065
24362
|
data?: {
|
|
24066
|
-
/** @example
|
|
24363
|
+
/** @example maint_83fd12 */
|
|
24067
24364
|
uid?: string;
|
|
24068
|
-
/** @example
|
|
24069
|
-
tenancy_id?: number;
|
|
24070
|
-
/** @example Quos velit et fugiat sunt nihil. */
|
|
24365
|
+
/** @example Leaking kitchen sink */
|
|
24071
24366
|
title?: string;
|
|
24072
|
-
/** @example
|
|
24367
|
+
/** @example Water has been dripping continuously under the sink cabinet. */
|
|
24073
24368
|
description?: string;
|
|
24074
24369
|
/** @example reported */
|
|
24075
24370
|
status?: string;
|
|
24076
|
-
/** @example
|
|
24371
|
+
/** @example urgent */
|
|
24077
24372
|
priority?: string;
|
|
24078
|
-
/** @example
|
|
24373
|
+
/** @example 2026-04-01T10:00:00Z */
|
|
24079
24374
|
reported_at?: string;
|
|
24080
|
-
/** @example
|
|
24081
|
-
assigned_at?: string;
|
|
24375
|
+
/** @example null */
|
|
24376
|
+
assigned_at?: string | null;
|
|
24082
24377
|
/** @example null */
|
|
24083
24378
|
completed_at?: string | null;
|
|
24084
|
-
/** @example
|
|
24379
|
+
/** @example 2026-04-02T10:00:00Z */
|
|
24085
24380
|
sla_deadline?: string;
|
|
24086
|
-
|
|
24087
|
-
|
|
24088
|
-
|
|
24089
|
-
|
|
24090
|
-
|
|
24091
|
-
|
|
24092
|
-
|
|
24093
|
-
|
|
24094
|
-
|
|
24095
|
-
|
|
24096
|
-
|
|
24097
|
-
|
|
24098
|
-
/** @example null */
|
|
24099
|
-
|
|
24100
|
-
|
|
24101
|
-
|
|
24102
|
-
|
|
24381
|
+
listing?: {
|
|
24382
|
+
/** @example 7 */
|
|
24383
|
+
id?: number;
|
|
24384
|
+
/** @example 54c1fd9b-8720-43e6-be3d-d4283477f38b */
|
|
24385
|
+
uid?: string;
|
|
24386
|
+
};
|
|
24387
|
+
reporter?: {
|
|
24388
|
+
/** @example usr_123 */
|
|
24389
|
+
id?: string;
|
|
24390
|
+
/** @example Jane Doe */
|
|
24391
|
+
name?: string;
|
|
24392
|
+
};
|
|
24393
|
+
/** @example null */
|
|
24394
|
+
technician?: string | null;
|
|
24395
|
+
/**
|
|
24396
|
+
* @example [
|
|
24397
|
+
* {
|
|
24398
|
+
* "uid": "mu_34fda1",
|
|
24399
|
+
* "note": "Inspection visit scheduled.",
|
|
24400
|
+
* "user": {
|
|
24401
|
+
* "id": 12,
|
|
24402
|
+
* "name": "Inspector Jane Doe"
|
|
24403
|
+
* },
|
|
24404
|
+
* "created_at": "2026-04-01T09:30:00Z"
|
|
24405
|
+
* }
|
|
24406
|
+
* ]
|
|
24407
|
+
*/
|
|
24408
|
+
updates?: {
|
|
24409
|
+
/** @example mu_34fda1 */
|
|
24410
|
+
uid?: string;
|
|
24411
|
+
/** @example Inspection visit scheduled. */
|
|
24412
|
+
note?: string;
|
|
24413
|
+
user?: {
|
|
24414
|
+
/** @example 12 */
|
|
24415
|
+
id?: number;
|
|
24416
|
+
/** @example Inspector Jane Doe */
|
|
24417
|
+
name?: string;
|
|
24418
|
+
};
|
|
24419
|
+
/** @example 2026-04-01T09:30:00Z */
|
|
24420
|
+
created_at?: string;
|
|
24421
|
+
}[];
|
|
24422
|
+
/**
|
|
24423
|
+
* @example [
|
|
24424
|
+
* {
|
|
24425
|
+
* "uid": "mnt_34fda1",
|
|
24426
|
+
* "file_type": "image/jpeg",
|
|
24427
|
+
* "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
|
|
24428
|
+
* "uploaded_by": {
|
|
24429
|
+
* "id": 12,
|
|
24430
|
+
* "name": "Inspector Jane Doe"
|
|
24431
|
+
* },
|
|
24432
|
+
* "created_at": "2026-04-01T09:15:00Z"
|
|
24433
|
+
* }
|
|
24434
|
+
* ]
|
|
24435
|
+
*/
|
|
24436
|
+
attachments?: {
|
|
24437
|
+
/** @example mnt_34fda1 */
|
|
24438
|
+
uid?: string;
|
|
24439
|
+
/** @example image/jpeg */
|
|
24440
|
+
file_type?: string;
|
|
24441
|
+
/** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
|
|
24442
|
+
url?: string;
|
|
24443
|
+
uploaded_by?: {
|
|
24444
|
+
/** @example 12 */
|
|
24445
|
+
id?: number;
|
|
24446
|
+
/** @example Inspector Jane Doe */
|
|
24447
|
+
name?: string;
|
|
24448
|
+
};
|
|
24449
|
+
/** @example 2026-04-01T09:15:00Z */
|
|
24450
|
+
created_at?: string;
|
|
24451
|
+
}[];
|
|
24452
|
+
/** @example 2026-04-01T10:00:00Z */
|
|
24453
|
+
created_at?: string;
|
|
24454
|
+
/** @example 2026-04-01T10:00:00Z */
|
|
24455
|
+
updated_at?: string;
|
|
24456
|
+
};
|
|
24457
|
+
} | {
|
|
24458
|
+
data?: {
|
|
24459
|
+
/** @example 4e5ed88b-22dc-47c0-bfd9-e6d74670832a */
|
|
24460
|
+
uid?: string;
|
|
24461
|
+
/** @example 1 */
|
|
24462
|
+
tenancy_id?: number;
|
|
24463
|
+
/** @example Qui commodi incidunt iure. */
|
|
24464
|
+
title?: string;
|
|
24465
|
+
/** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
|
|
24466
|
+
description?: string;
|
|
24467
|
+
/** @example breach */
|
|
24468
|
+
status?: string;
|
|
24469
|
+
/** @example low */
|
|
24470
|
+
priority?: string;
|
|
24471
|
+
/** @example 05 May 2026, 03:27 AM */
|
|
24472
|
+
reported_at?: string;
|
|
24473
|
+
/** @example null */
|
|
24474
|
+
assigned_at?: string | null;
|
|
24475
|
+
/** @example null */
|
|
24476
|
+
completed_at?: string | null;
|
|
24477
|
+
/** @example 07 May 2026, 11:52 PM */
|
|
24478
|
+
sla_deadline?: string;
|
|
24479
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
24480
|
+
created_at?: string;
|
|
24481
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
24482
|
+
updated_at?: string;
|
|
24483
|
+
};
|
|
24484
|
+
};
|
|
24485
|
+
};
|
|
24486
|
+
};
|
|
24487
|
+
};
|
|
24488
|
+
};
|
|
24489
|
+
reportMaintenance: {
|
|
24490
|
+
parameters: {
|
|
24491
|
+
query?: never;
|
|
24492
|
+
header?: never;
|
|
24493
|
+
path?: never;
|
|
24494
|
+
cookie?: never;
|
|
24495
|
+
};
|
|
24496
|
+
requestBody: {
|
|
24497
|
+
content: {
|
|
24498
|
+
"application/json": {
|
|
24499
|
+
/**
|
|
24500
|
+
* @description UID of the listing where the maintenance issue occurred. The <code>uid</code> of an existing record in the listings table.
|
|
24501
|
+
* @example 54c1fd9b-8720-43e6-be3d-d4283477f38b
|
|
24502
|
+
*/
|
|
24503
|
+
listing_uid: string;
|
|
24504
|
+
/**
|
|
24505
|
+
* @description UID of the tenancy related to the maintenance issue (if applicable). The <code>uid</code> of an existing record in the tenancies table.
|
|
24506
|
+
* @example a1b2c3d4-9e87-41b6-8d6f-91e5c6fcd1e2
|
|
24507
|
+
*/
|
|
24508
|
+
tenancy_uid?: string | null;
|
|
24509
|
+
/**
|
|
24510
|
+
* @description Priority level of the maintenance request.
|
|
24511
|
+
* @example high
|
|
24512
|
+
* @enum {string}
|
|
24513
|
+
*/
|
|
24514
|
+
priority: "low" | "normal" | "urgent" | "emergency";
|
|
24515
|
+
/**
|
|
24516
|
+
* @description Short title summarizing the maintenance issue. Must not be greater than 255 characters.
|
|
24517
|
+
* @example Leaking kitchen sink
|
|
24518
|
+
*/
|
|
24519
|
+
title: string;
|
|
24520
|
+
/**
|
|
24521
|
+
* @description Detailed explanation of the maintenance problem. Must not be greater than 5000 characters.
|
|
24522
|
+
* @example The kitchen sink has been leaking continuously for two days and water is pooling under the cabinet.
|
|
24523
|
+
*/
|
|
24524
|
+
description: string;
|
|
24525
|
+
};
|
|
24526
|
+
};
|
|
24527
|
+
};
|
|
24528
|
+
responses: {
|
|
24529
|
+
200: {
|
|
24530
|
+
headers: {
|
|
24531
|
+
[name: string]: unknown;
|
|
24532
|
+
};
|
|
24533
|
+
content: {
|
|
24534
|
+
"application/json": {
|
|
24535
|
+
/**
|
|
24536
|
+
* @example [
|
|
24537
|
+
* {
|
|
24538
|
+
* "uid": "fca22fdd-bcd1-42b4-9354-052e1df88bbb",
|
|
24539
|
+
* "tenancy_id": 1,
|
|
24540
|
+
* "title": "Quos velit et fugiat sunt nihil.",
|
|
24541
|
+
* "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.",
|
|
24542
|
+
* "status": "reported",
|
|
24543
|
+
* "priority": "emergency",
|
|
24544
|
+
* "reported_at": "30 Apr 2026, 01:12 AM",
|
|
24545
|
+
* "assigned_at": "04 May 2026, 09:32 PM",
|
|
24546
|
+
* "completed_at": null,
|
|
24547
|
+
* "sla_deadline": "08 May 2026, 02:54 AM",
|
|
24548
|
+
* "created_at": "06 May 2026, 01:59 PM",
|
|
24549
|
+
* "updated_at": "06 May 2026, 01:59 PM"
|
|
24550
|
+
* },
|
|
24551
|
+
* {
|
|
24552
|
+
* "uid": "875b4255-0eb4-4f90-9a20-60dbacb01eb2",
|
|
24553
|
+
* "tenancy_id": 1,
|
|
24554
|
+
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
24555
|
+
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
24556
|
+
* "status": "completed",
|
|
24557
|
+
* "priority": "normal",
|
|
24558
|
+
* "reported_at": "02 May 2026, 01:51 PM",
|
|
24559
|
+
* "assigned_at": null,
|
|
24560
|
+
* "completed_at": null,
|
|
24561
|
+
* "sla_deadline": "09 May 2026, 10:54 AM",
|
|
24562
|
+
* "created_at": "06 May 2026, 01:59 PM",
|
|
24563
|
+
* "updated_at": "06 May 2026, 01:59 PM"
|
|
24564
|
+
* }
|
|
24565
|
+
* ]
|
|
24566
|
+
*/
|
|
24567
|
+
data?: {
|
|
24568
|
+
/** @example fca22fdd-bcd1-42b4-9354-052e1df88bbb */
|
|
24569
|
+
uid?: string;
|
|
24570
|
+
/** @example 1 */
|
|
24571
|
+
tenancy_id?: number;
|
|
24572
|
+
/** @example Quos velit et fugiat sunt nihil. */
|
|
24573
|
+
title?: string;
|
|
24574
|
+
/** @example 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. */
|
|
24575
|
+
description?: string;
|
|
24576
|
+
/** @example reported */
|
|
24577
|
+
status?: string;
|
|
24578
|
+
/** @example emergency */
|
|
24579
|
+
priority?: string;
|
|
24580
|
+
/** @example 30 Apr 2026, 01:12 AM */
|
|
24581
|
+
reported_at?: string;
|
|
24582
|
+
/** @example 04 May 2026, 09:32 PM */
|
|
24583
|
+
assigned_at?: string;
|
|
24584
|
+
/** @example null */
|
|
24585
|
+
completed_at?: string | null;
|
|
24586
|
+
/** @example 08 May 2026, 02:54 AM */
|
|
24587
|
+
sla_deadline?: string;
|
|
24588
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
24589
|
+
created_at?: string;
|
|
24590
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
24591
|
+
updated_at?: string;
|
|
24592
|
+
}[];
|
|
24593
|
+
links?: {
|
|
24594
|
+
/** @example /?page=1 */
|
|
24595
|
+
first?: string;
|
|
24596
|
+
/** @example /?page=1 */
|
|
24597
|
+
last?: string;
|
|
24598
|
+
/** @example null */
|
|
24599
|
+
prev?: string | null;
|
|
24600
|
+
/** @example null */
|
|
24601
|
+
next?: string | null;
|
|
24602
|
+
};
|
|
24603
|
+
meta?: {
|
|
24604
|
+
/** @example 1 */
|
|
24103
24605
|
current_page?: number;
|
|
24104
24606
|
/** @example 1 */
|
|
24105
24607
|
from?: number;
|
|
@@ -24201,13 +24703,13 @@ export interface operations {
|
|
|
24201
24703
|
};
|
|
24202
24704
|
} | {
|
|
24203
24705
|
data?: {
|
|
24204
|
-
/** @example
|
|
24706
|
+
/** @example 85cb8395-1fde-4dde-b388-2886f203e94a */
|
|
24205
24707
|
uid?: string;
|
|
24206
24708
|
/** @example image */
|
|
24207
24709
|
file_type?: string;
|
|
24208
24710
|
/** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
24209
24711
|
url?: string;
|
|
24210
|
-
/** @example 2026-05-
|
|
24712
|
+
/** @example 2026-05-06T13:59:08.000000Z */
|
|
24211
24713
|
created_at?: string;
|
|
24212
24714
|
};
|
|
24213
24715
|
};
|
|
@@ -24252,7 +24754,7 @@ export interface operations {
|
|
|
24252
24754
|
content: {
|
|
24253
24755
|
"application/json": {
|
|
24254
24756
|
data?: {
|
|
24255
|
-
/** @example
|
|
24757
|
+
/** @example 5 */
|
|
24256
24758
|
id?: number;
|
|
24257
24759
|
type?: {
|
|
24258
24760
|
/** @example property_inquiry */
|
|
@@ -24260,25 +24762,28 @@ export interface operations {
|
|
|
24260
24762
|
/** @example Property Inquiry */
|
|
24261
24763
|
label?: string;
|
|
24262
24764
|
};
|
|
24263
|
-
/** @example
|
|
24765
|
+
/** @example c9ae501b-2616-4ed1-b4ff-1255918fbd5f */
|
|
24264
24766
|
listing_uid?: string;
|
|
24265
24767
|
listing?: {
|
|
24266
|
-
/** @example
|
|
24768
|
+
/** @example c9ae501b-2616-4ed1-b4ff-1255918fbd5f */
|
|
24267
24769
|
uid?: string;
|
|
24268
|
-
/** @example
|
|
24770
|
+
/** @example Excepturi voluptatum qui sed. */
|
|
24269
24771
|
title?: string;
|
|
24270
|
-
/**
|
|
24772
|
+
/**
|
|
24773
|
+
* @example Studio 13
|
|
24774
|
+
* Darren Cliff
|
|
24775
|
+
*/
|
|
24271
24776
|
address?: string;
|
|
24272
|
-
/** @example
|
|
24777
|
+
/** @example sale */
|
|
24273
24778
|
listing_type?: string;
|
|
24274
|
-
/** @example
|
|
24779
|
+
/** @example Sale */
|
|
24275
24780
|
listing_type_label?: string;
|
|
24276
24781
|
cover?: {
|
|
24277
|
-
/** @example
|
|
24782
|
+
/** @example 52eb0be2-684f-4759-8111-de65806fd34a */
|
|
24278
24783
|
uid?: string;
|
|
24279
24784
|
/** @example photo */
|
|
24280
24785
|
media_type?: string;
|
|
24281
|
-
/** @example http://justinshome-backendcore.test/storage/listings/
|
|
24786
|
+
/** @example http://justinshome-backendcore.test/storage/listings/property-sale-placeholder.png */
|
|
24282
24787
|
storage_path?: string;
|
|
24283
24788
|
/** @example 1 */
|
|
24284
24789
|
order_index?: number;
|
|
@@ -24286,15 +24791,15 @@ export interface operations {
|
|
|
24286
24791
|
is_cover?: boolean;
|
|
24287
24792
|
};
|
|
24288
24793
|
owner?: {
|
|
24289
|
-
/** @example
|
|
24794
|
+
/** @example 6 */
|
|
24290
24795
|
id?: number;
|
|
24291
|
-
/** @example
|
|
24796
|
+
/** @example eb392d5c-1dcf-43a6-a000-a27d8b68f9c5 */
|
|
24292
24797
|
uid?: string;
|
|
24293
|
-
/** @example
|
|
24798
|
+
/** @example Yvonne Moore */
|
|
24294
24799
|
name?: string;
|
|
24295
|
-
/** @example
|
|
24800
|
+
/** @example landlord5@justinshome.test */
|
|
24296
24801
|
email?: string;
|
|
24297
|
-
/** @example
|
|
24802
|
+
/** @example 08092300754 */
|
|
24298
24803
|
phone?: string;
|
|
24299
24804
|
/** @example null */
|
|
24300
24805
|
avatar_path?: string | null;
|
|
@@ -24303,14 +24808,14 @@ export interface operations {
|
|
|
24303
24808
|
created_by?: {
|
|
24304
24809
|
/** @example 2 */
|
|
24305
24810
|
id?: number;
|
|
24306
|
-
/** @example
|
|
24811
|
+
/** @example 326eb529-3699-47bd-9969-b49e75937175 */
|
|
24307
24812
|
uid?: string;
|
|
24308
|
-
/** @example
|
|
24813
|
+
/** @example Vicky Ross */
|
|
24309
24814
|
name?: string;
|
|
24310
24815
|
};
|
|
24311
24816
|
/** @example null */
|
|
24312
24817
|
last_message_at?: string | null;
|
|
24313
|
-
/** @example
|
|
24818
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
24314
24819
|
created_at?: string;
|
|
24315
24820
|
};
|
|
24316
24821
|
};
|
|
@@ -24762,7 +25267,7 @@ export interface operations {
|
|
|
24762
25267
|
};
|
|
24763
25268
|
content: {
|
|
24764
25269
|
"application/json": {
|
|
24765
|
-
/** @example
|
|
25270
|
+
/** @example 1bf4890b-abd7-4808-95d7-a6b80477f6fd */
|
|
24766
25271
|
id?: string;
|
|
24767
25272
|
/** @example APPOINTMENT_CREATED */
|
|
24768
25273
|
type?: string;
|
|
@@ -24774,7 +25279,7 @@ export interface operations {
|
|
|
24774
25279
|
data?: unknown[];
|
|
24775
25280
|
/** @example null */
|
|
24776
25281
|
read_at?: string | null;
|
|
24777
|
-
/** @example
|
|
25282
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
24778
25283
|
created_at?: string;
|
|
24779
25284
|
};
|
|
24780
25285
|
};
|
|
@@ -24880,9 +25385,9 @@ export interface operations {
|
|
|
24880
25385
|
content: {
|
|
24881
25386
|
"application/json": {
|
|
24882
25387
|
data?: {
|
|
24883
|
-
/** @example
|
|
25388
|
+
/** @example aut */
|
|
24884
25389
|
key?: string;
|
|
24885
|
-
/** @example
|
|
25390
|
+
/** @example adipisci */
|
|
24886
25391
|
name?: string;
|
|
24887
25392
|
/** @example soft */
|
|
24888
25393
|
enforcement_mode?: string;
|
|
@@ -25020,7 +25525,7 @@ export interface operations {
|
|
|
25020
25525
|
content: {
|
|
25021
25526
|
"application/json": {
|
|
25022
25527
|
data?: {
|
|
25023
|
-
/** @example
|
|
25528
|
+
/** @example 19f3b272-e189-4a09-8779-9e9180509130 */
|
|
25024
25529
|
uid?: string;
|
|
25025
25530
|
/** @example JH-APP-2026-089432 */
|
|
25026
25531
|
application_ref?: string;
|
|
@@ -25041,7 +25546,7 @@ export interface operations {
|
|
|
25041
25546
|
/** @example null */
|
|
25042
25547
|
rejection_reason?: string | null;
|
|
25043
25548
|
timeline?: {
|
|
25044
|
-
/** @example
|
|
25549
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
25045
25550
|
created_at?: string;
|
|
25046
25551
|
/** @example null */
|
|
25047
25552
|
approved_at?: string | null;
|
|
@@ -25081,12 +25586,12 @@ export interface operations {
|
|
|
25081
25586
|
*/
|
|
25082
25587
|
search?: string | null;
|
|
25083
25588
|
/**
|
|
25084
|
-
* @example
|
|
25589
|
+
* @example converted
|
|
25085
25590
|
* @enum {string|null}
|
|
25086
25591
|
*/
|
|
25087
25592
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
25088
25593
|
/**
|
|
25089
|
-
* @example
|
|
25594
|
+
* @example landlord
|
|
25090
25595
|
* @enum {string|null}
|
|
25091
25596
|
*/
|
|
25092
25597
|
source?: "tenant" | "landlord" | "admin" | null;
|
|
@@ -25404,7 +25909,7 @@ export interface operations {
|
|
|
25404
25909
|
content: {
|
|
25405
25910
|
"application/json": {
|
|
25406
25911
|
data?: {
|
|
25407
|
-
/** @example
|
|
25912
|
+
/** @example fc187a11-7378-49d0-a500-8456ae5737af */
|
|
25408
25913
|
uid?: string;
|
|
25409
25914
|
/** @example JH-APP-2026-700432 */
|
|
25410
25915
|
application_ref?: string;
|
|
@@ -25425,7 +25930,7 @@ export interface operations {
|
|
|
25425
25930
|
/** @example null */
|
|
25426
25931
|
rejection_reason?: string | null;
|
|
25427
25932
|
timeline?: {
|
|
25428
|
-
/** @example
|
|
25933
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
25429
25934
|
created_at?: string;
|
|
25430
25935
|
/** @example null */
|
|
25431
25936
|
approved_at?: string | null;
|
|
@@ -25442,7 +25947,14 @@ export interface operations {
|
|
|
25442
25947
|
};
|
|
25443
25948
|
fetchAllReview: {
|
|
25444
25949
|
parameters: {
|
|
25445
|
-
query
|
|
25950
|
+
query: {
|
|
25951
|
+
/** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
|
|
25952
|
+
reviewable_type: string;
|
|
25953
|
+
/** @description Number of records per page. */
|
|
25954
|
+
per_page?: number;
|
|
25955
|
+
/** @description Current page number. */
|
|
25956
|
+
page?: number;
|
|
25957
|
+
};
|
|
25446
25958
|
header?: never;
|
|
25447
25959
|
path?: never;
|
|
25448
25960
|
cookie?: never;
|
|
@@ -25483,12 +25995,13 @@ export interface operations {
|
|
|
25483
25995
|
* "id": 1,
|
|
25484
25996
|
* "rating": 5,
|
|
25485
25997
|
* "comment": "Excellent service.",
|
|
25998
|
+
* "reviewable_type": "listing",
|
|
25486
25999
|
* "reviewer": {
|
|
25487
26000
|
* "id": 20,
|
|
25488
26001
|
* "name": "Sarah Jenkins"
|
|
25489
26002
|
* },
|
|
25490
|
-
* "created_at": "2026
|
|
25491
|
-
* "updated_at": "2026
|
|
26003
|
+
* "created_at": "28 Apr, 2026 09:00 AM",
|
|
26004
|
+
* "updated_at": "28 Apr, 2026 09:00 AM"
|
|
25492
26005
|
* }
|
|
25493
26006
|
* ]
|
|
25494
26007
|
*/
|
|
@@ -25499,15 +26012,17 @@ export interface operations {
|
|
|
25499
26012
|
rating?: number;
|
|
25500
26013
|
/** @example Excellent service. */
|
|
25501
26014
|
comment?: string;
|
|
26015
|
+
/** @example listing */
|
|
26016
|
+
reviewable_type?: string;
|
|
25502
26017
|
reviewer?: {
|
|
25503
26018
|
/** @example 20 */
|
|
25504
26019
|
id?: number;
|
|
25505
26020
|
/** @example Sarah Jenkins */
|
|
25506
26021
|
name?: string;
|
|
25507
26022
|
};
|
|
25508
|
-
/** @example 2026
|
|
26023
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
25509
26024
|
created_at?: string;
|
|
25510
|
-
/** @example 2026
|
|
26025
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
25511
26026
|
updated_at?: string;
|
|
25512
26027
|
}[];
|
|
25513
26028
|
pagination?: {
|
|
@@ -25530,54 +26045,208 @@ export interface operations {
|
|
|
25530
26045
|
};
|
|
25531
26046
|
};
|
|
25532
26047
|
};
|
|
25533
|
-
|
|
26048
|
+
fetchOneReview: {
|
|
25534
26049
|
parameters: {
|
|
25535
26050
|
query?: never;
|
|
25536
26051
|
header?: never;
|
|
25537
|
-
path
|
|
25538
|
-
|
|
25539
|
-
|
|
25540
|
-
requestBody: {
|
|
25541
|
-
content: {
|
|
25542
|
-
"application/json": {
|
|
25543
|
-
/**
|
|
25544
|
-
* @description Reviewable type or entity. Accepts `listing`, `user`, or the full model class name.
|
|
25545
|
-
* @example listing
|
|
25546
|
-
* @enum {string}
|
|
25547
|
-
*/
|
|
25548
|
-
reviewable_type: "App\\Models\\Listing" | "App\\Models\\User" | "App\\Models\\Listing" | "App\\Models\\User";
|
|
25549
|
-
/**
|
|
25550
|
-
* @description Identity of Reviewable type or entity. Must be at least 1.
|
|
25551
|
-
* @example 1
|
|
25552
|
-
*/
|
|
25553
|
-
reviewable_id: number;
|
|
25554
|
-
/**
|
|
25555
|
-
* @description pagination. Must be between 1 and 100.
|
|
25556
|
-
* @example 15
|
|
25557
|
-
*/
|
|
25558
|
-
per_page?: number;
|
|
25559
|
-
};
|
|
26052
|
+
path: {
|
|
26053
|
+
/** @description The ID of the review. */
|
|
26054
|
+
review_id: number;
|
|
25560
26055
|
};
|
|
26056
|
+
cookie?: never;
|
|
25561
26057
|
};
|
|
26058
|
+
requestBody?: never;
|
|
25562
26059
|
responses: {
|
|
25563
|
-
/** @description
|
|
26060
|
+
/** @description Retrieve a single review */
|
|
25564
26061
|
200: {
|
|
25565
26062
|
headers: {
|
|
25566
26063
|
[name: string]: unknown;
|
|
25567
26064
|
};
|
|
25568
26065
|
content: {
|
|
25569
26066
|
"application/json": {
|
|
25570
|
-
/** @example
|
|
26067
|
+
/** @example Review retrieved successfully */
|
|
25571
26068
|
message?: string;
|
|
25572
26069
|
/** @example null */
|
|
25573
26070
|
event?: string | null;
|
|
25574
26071
|
data?: {
|
|
25575
|
-
/** @example
|
|
25576
|
-
|
|
25577
|
-
/** @example
|
|
25578
|
-
|
|
25579
|
-
|
|
25580
|
-
|
|
26072
|
+
/** @example 15 */
|
|
26073
|
+
id?: number;
|
|
26074
|
+
/** @example 5 */
|
|
26075
|
+
rating?: number;
|
|
26076
|
+
/** @example Excellent service. */
|
|
26077
|
+
comment?: string;
|
|
26078
|
+
/** @example listing */
|
|
26079
|
+
reviewable_type?: string;
|
|
26080
|
+
reviewable?: {
|
|
26081
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
26082
|
+
uid?: string;
|
|
26083
|
+
/** @example 24 Windsor Court */
|
|
26084
|
+
title?: string;
|
|
26085
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
26086
|
+
address?: string;
|
|
26087
|
+
cover?: {
|
|
26088
|
+
/** @example lm_34fda1 */
|
|
26089
|
+
uid?: string;
|
|
26090
|
+
/** @example image/jpeg */
|
|
26091
|
+
media_type?: string;
|
|
26092
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
26093
|
+
storage_path?: string;
|
|
26094
|
+
/** @example 0 */
|
|
26095
|
+
order_index?: number;
|
|
26096
|
+
/** @example true */
|
|
26097
|
+
is_cover?: boolean;
|
|
26098
|
+
};
|
|
26099
|
+
type?: {
|
|
26100
|
+
/** @example long_term_rent */
|
|
26101
|
+
value?: string;
|
|
26102
|
+
/** @example Rent */
|
|
26103
|
+
label?: string;
|
|
26104
|
+
};
|
|
26105
|
+
vertical?: {
|
|
26106
|
+
/** @example property */
|
|
26107
|
+
value?: string;
|
|
26108
|
+
/** @example Property */
|
|
26109
|
+
label?: string;
|
|
26110
|
+
};
|
|
26111
|
+
};
|
|
26112
|
+
reviewer?: {
|
|
26113
|
+
/** @example user_ajka asjkasj */
|
|
26114
|
+
uid?: string;
|
|
26115
|
+
/** @example Sarah Jenkins */
|
|
26116
|
+
name?: string;
|
|
26117
|
+
};
|
|
26118
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
26119
|
+
created_at?: string;
|
|
26120
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
26121
|
+
updated_at?: string;
|
|
26122
|
+
};
|
|
26123
|
+
};
|
|
26124
|
+
};
|
|
26125
|
+
};
|
|
26126
|
+
};
|
|
26127
|
+
};
|
|
26128
|
+
fetchAllReviewForReviewable: {
|
|
26129
|
+
parameters: {
|
|
26130
|
+
query: {
|
|
26131
|
+
/** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
|
|
26132
|
+
reviewable_type: string;
|
|
26133
|
+
/** @description UID of the reviewable entity. */
|
|
26134
|
+
reviewable_uid: string;
|
|
26135
|
+
/** @description Number of records per page. */
|
|
26136
|
+
per_page?: number;
|
|
26137
|
+
/** @description Current page number. */
|
|
26138
|
+
page?: number;
|
|
26139
|
+
};
|
|
26140
|
+
header?: never;
|
|
26141
|
+
path?: never;
|
|
26142
|
+
cookie?: never;
|
|
26143
|
+
};
|
|
26144
|
+
requestBody?: never;
|
|
26145
|
+
responses: {
|
|
26146
|
+
/** @description Retrieve all reviews for a specific reviewable entity */
|
|
26147
|
+
200: {
|
|
26148
|
+
headers: {
|
|
26149
|
+
[name: string]: unknown;
|
|
26150
|
+
};
|
|
26151
|
+
content: {
|
|
26152
|
+
"application/json": {
|
|
26153
|
+
/** @example Review retrieved successfully */
|
|
26154
|
+
message?: string;
|
|
26155
|
+
/** @example null */
|
|
26156
|
+
event?: string | null;
|
|
26157
|
+
data?: {
|
|
26158
|
+
/**
|
|
26159
|
+
* @example [
|
|
26160
|
+
* {
|
|
26161
|
+
* "id": 1,
|
|
26162
|
+
* "rating": 5,
|
|
26163
|
+
* "comment": "Excellent service.",
|
|
26164
|
+
* "reviewable_type": "listing",
|
|
26165
|
+
* "reviewer": {
|
|
26166
|
+
* "uid": "sj akjasas",
|
|
26167
|
+
* "name": "Sarah Jenkins"
|
|
26168
|
+
* },
|
|
26169
|
+
* "created_at": "28 Apr, 2026 09:00 AM",
|
|
26170
|
+
* "updated_at": "28 Apr, 2026 09:00 AM"
|
|
26171
|
+
* }
|
|
26172
|
+
* ]
|
|
26173
|
+
*/
|
|
26174
|
+
items?: {
|
|
26175
|
+
/** @example 1 */
|
|
26176
|
+
id?: number;
|
|
26177
|
+
/** @example 5 */
|
|
26178
|
+
rating?: number;
|
|
26179
|
+
/** @example Excellent service. */
|
|
26180
|
+
comment?: string;
|
|
26181
|
+
/** @example listing */
|
|
26182
|
+
reviewable_type?: string;
|
|
26183
|
+
reviewer?: {
|
|
26184
|
+
/** @example sj akjasas */
|
|
26185
|
+
uid?: string;
|
|
26186
|
+
/** @example Sarah Jenkins */
|
|
26187
|
+
name?: string;
|
|
26188
|
+
};
|
|
26189
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
26190
|
+
created_at?: string;
|
|
26191
|
+
/** @example 28 Apr, 2026 09:00 AM */
|
|
26192
|
+
updated_at?: string;
|
|
26193
|
+
}[];
|
|
26194
|
+
pagination?: {
|
|
26195
|
+
/** @example 1 */
|
|
26196
|
+
current_page?: number;
|
|
26197
|
+
/** @example 15 */
|
|
26198
|
+
per_page?: number;
|
|
26199
|
+
/** @example 0 */
|
|
26200
|
+
total?: number;
|
|
26201
|
+
/** @example 1 */
|
|
26202
|
+
last_page?: number;
|
|
26203
|
+
/** @example null */
|
|
26204
|
+
from?: string | null;
|
|
26205
|
+
/** @example null */
|
|
26206
|
+
to?: string | null;
|
|
26207
|
+
};
|
|
26208
|
+
};
|
|
26209
|
+
};
|
|
26210
|
+
};
|
|
26211
|
+
};
|
|
26212
|
+
};
|
|
26213
|
+
};
|
|
26214
|
+
ratingSummaryReview: {
|
|
26215
|
+
parameters: {
|
|
26216
|
+
query: {
|
|
26217
|
+
/** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
|
|
26218
|
+
reviewable_type: string;
|
|
26219
|
+
/** @description UID of the reviewable entity. */
|
|
26220
|
+
reviewable_uid: string;
|
|
26221
|
+
/** @description Number of records per page. Must be between 1 and 100. */
|
|
26222
|
+
per_page?: number;
|
|
26223
|
+
/** @description Current page number. Must be at least 1. */
|
|
26224
|
+
page?: number;
|
|
26225
|
+
};
|
|
26226
|
+
header?: never;
|
|
26227
|
+
path?: never;
|
|
26228
|
+
cookie?: never;
|
|
26229
|
+
};
|
|
26230
|
+
requestBody?: never;
|
|
26231
|
+
responses: {
|
|
26232
|
+
/** @description Rating summary retrieved successfully */
|
|
26233
|
+
200: {
|
|
26234
|
+
headers: {
|
|
26235
|
+
[name: string]: unknown;
|
|
26236
|
+
};
|
|
26237
|
+
content: {
|
|
26238
|
+
"application/json": {
|
|
26239
|
+
/** @example Rating summary retrieved successfully */
|
|
26240
|
+
message?: string;
|
|
26241
|
+
/** @example null */
|
|
26242
|
+
event?: string | null;
|
|
26243
|
+
data?: {
|
|
26244
|
+
/** @example 4.5 */
|
|
26245
|
+
average_rating?: number;
|
|
26246
|
+
/** @example 3 */
|
|
26247
|
+
reviews_count?: number;
|
|
26248
|
+
};
|
|
26249
|
+
};
|
|
25581
26250
|
};
|
|
25582
26251
|
};
|
|
25583
26252
|
};
|
|
@@ -25618,21 +26287,23 @@ export interface operations {
|
|
|
25618
26287
|
content: {
|
|
25619
26288
|
"application/json": {
|
|
25620
26289
|
data?: {
|
|
25621
|
-
/** @example
|
|
26290
|
+
/** @example 17 */
|
|
25622
26291
|
id?: number;
|
|
25623
26292
|
/** @example 1 */
|
|
25624
26293
|
rating?: number;
|
|
25625
26294
|
/** @example Nice Listing */
|
|
25626
26295
|
comment?: string;
|
|
26296
|
+
/** @example listing */
|
|
26297
|
+
reviewable_type?: string;
|
|
25627
26298
|
reviewer?: {
|
|
25628
|
-
/** @example
|
|
25629
|
-
|
|
25630
|
-
/** @example
|
|
26299
|
+
/** @example 3fca80ab-651f-419d-92ce-2f5f9c0f5036 */
|
|
26300
|
+
uid?: string;
|
|
26301
|
+
/** @example Chloe Edwards */
|
|
25631
26302
|
name?: string;
|
|
25632
26303
|
};
|
|
25633
|
-
/** @example
|
|
26304
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
25634
26305
|
created_at?: string;
|
|
25635
|
-
/** @example
|
|
26306
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
25636
26307
|
updated_at?: string;
|
|
25637
26308
|
};
|
|
25638
26309
|
};
|
|
@@ -25676,21 +26347,23 @@ export interface operations {
|
|
|
25676
26347
|
content: {
|
|
25677
26348
|
"application/json": {
|
|
25678
26349
|
data?: {
|
|
25679
|
-
/** @example
|
|
26350
|
+
/** @example 18 */
|
|
25680
26351
|
id?: number;
|
|
25681
26352
|
/** @example 1 */
|
|
25682
26353
|
rating?: number;
|
|
25683
26354
|
/** @example Nice Listing */
|
|
25684
26355
|
comment?: string;
|
|
26356
|
+
/** @example listing */
|
|
26357
|
+
reviewable_type?: string;
|
|
25685
26358
|
reviewer?: {
|
|
25686
|
-
/** @example
|
|
25687
|
-
|
|
25688
|
-
/** @example
|
|
26359
|
+
/** @example 131677ca-833e-422a-b76a-3a39e42f1a67 */
|
|
26360
|
+
uid?: string;
|
|
26361
|
+
/** @example Ella Smith */
|
|
25689
26362
|
name?: string;
|
|
25690
26363
|
};
|
|
25691
|
-
/** @example
|
|
26364
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
25692
26365
|
created_at?: string;
|
|
25693
|
-
/** @example
|
|
26366
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
25694
26367
|
updated_at?: string;
|
|
25695
26368
|
};
|
|
25696
26369
|
};
|
|
@@ -25732,115 +26405,356 @@ export interface operations {
|
|
|
25732
26405
|
content: {
|
|
25733
26406
|
"application/json": {
|
|
25734
26407
|
data?: {
|
|
25735
|
-
/** @example
|
|
26408
|
+
/** @example 19 */
|
|
25736
26409
|
id?: number;
|
|
25737
26410
|
/** @example 1 */
|
|
25738
26411
|
rating?: number;
|
|
25739
26412
|
/** @example Nice Listing */
|
|
25740
26413
|
comment?: string;
|
|
26414
|
+
/** @example listing */
|
|
26415
|
+
reviewable_type?: string;
|
|
25741
26416
|
reviewer?: {
|
|
25742
|
-
/** @example
|
|
26417
|
+
/** @example a529fd57-f123-44e0-892d-d8c8dfcd2796 */
|
|
26418
|
+
uid?: string;
|
|
26419
|
+
/** @example Will Chapman */
|
|
26420
|
+
name?: string;
|
|
26421
|
+
};
|
|
26422
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
26423
|
+
created_at?: string;
|
|
26424
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
26425
|
+
updated_at?: string;
|
|
26426
|
+
};
|
|
26427
|
+
};
|
|
26428
|
+
};
|
|
26429
|
+
};
|
|
26430
|
+
};
|
|
26431
|
+
};
|
|
26432
|
+
deleteReview: {
|
|
26433
|
+
parameters: {
|
|
26434
|
+
query?: never;
|
|
26435
|
+
header?: never;
|
|
26436
|
+
path: {
|
|
26437
|
+
/** @description The ID of the review. */
|
|
26438
|
+
review_id: number;
|
|
26439
|
+
};
|
|
26440
|
+
cookie?: never;
|
|
26441
|
+
};
|
|
26442
|
+
requestBody?: never;
|
|
26443
|
+
responses: {
|
|
26444
|
+
200: {
|
|
26445
|
+
headers: {
|
|
26446
|
+
[name: string]: unknown;
|
|
26447
|
+
};
|
|
26448
|
+
content: {
|
|
26449
|
+
"application/json": {
|
|
26450
|
+
data?: {
|
|
26451
|
+
/** @example 20 */
|
|
26452
|
+
id?: number;
|
|
26453
|
+
/** @example 1 */
|
|
26454
|
+
rating?: number;
|
|
26455
|
+
/** @example Nice Listing */
|
|
26456
|
+
comment?: string;
|
|
26457
|
+
/** @example listing */
|
|
26458
|
+
reviewable_type?: string;
|
|
26459
|
+
reviewer?: {
|
|
26460
|
+
/** @example eb392d5c-1dcf-43a6-a000-a27d8b68f9c5 */
|
|
26461
|
+
uid?: string;
|
|
26462
|
+
/** @example Yvonne Moore */
|
|
26463
|
+
name?: string;
|
|
26464
|
+
};
|
|
26465
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
26466
|
+
created_at?: string;
|
|
26467
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
26468
|
+
updated_at?: string;
|
|
26469
|
+
};
|
|
26470
|
+
};
|
|
26471
|
+
};
|
|
26472
|
+
};
|
|
26473
|
+
};
|
|
26474
|
+
};
|
|
26475
|
+
fetchOneTenancy: {
|
|
26476
|
+
parameters: {
|
|
26477
|
+
query?: never;
|
|
26478
|
+
header?: never;
|
|
26479
|
+
path: {
|
|
26480
|
+
/** @description The UID of the tenancy. */
|
|
26481
|
+
tenancy_uid: string;
|
|
26482
|
+
};
|
|
26483
|
+
cookie?: never;
|
|
26484
|
+
};
|
|
26485
|
+
requestBody?: never;
|
|
26486
|
+
responses: {
|
|
26487
|
+
/** @description Retrieve a single tenancy */
|
|
26488
|
+
200: {
|
|
26489
|
+
headers: {
|
|
26490
|
+
[name: string]: unknown;
|
|
26491
|
+
};
|
|
26492
|
+
content: {
|
|
26493
|
+
"application/json": {
|
|
26494
|
+
/** @example Tenancy fetched */
|
|
26495
|
+
message?: string;
|
|
26496
|
+
/** @example null */
|
|
26497
|
+
event?: string | null;
|
|
26498
|
+
data?: {
|
|
26499
|
+
/** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
|
|
26500
|
+
uid?: string;
|
|
26501
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
26502
|
+
listing_uid?: string;
|
|
26503
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
26504
|
+
landlord_uid?: string;
|
|
26505
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
26506
|
+
tenant_uid?: string;
|
|
26507
|
+
/** @example 1500.00 */
|
|
26508
|
+
rent_amount?: string;
|
|
26509
|
+
/** @example 1500.00 */
|
|
26510
|
+
deposit_amount?: string;
|
|
26511
|
+
/** @example active */
|
|
26512
|
+
state?: string;
|
|
26513
|
+
/** @example 2026-03-01 */
|
|
26514
|
+
start_date?: string;
|
|
26515
|
+
/** @example 2027-02-28 */
|
|
26516
|
+
end_date?: string;
|
|
26517
|
+
/** @example false */
|
|
26518
|
+
is_periodic?: boolean;
|
|
26519
|
+
/** @example null */
|
|
26520
|
+
company_name?: string | null;
|
|
26521
|
+
/** @example null */
|
|
26522
|
+
company_registration_number?: string | null;
|
|
26523
|
+
/** @example 2026-03-01T10:00:00.000000Z */
|
|
26524
|
+
created_at?: string;
|
|
26525
|
+
listing?: {
|
|
26526
|
+
cover?: {
|
|
26527
|
+
/** @example lm_34fda1 */
|
|
26528
|
+
uid?: string;
|
|
26529
|
+
/** @example image/jpeg */
|
|
26530
|
+
media_type?: string;
|
|
26531
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
26532
|
+
storage_path?: string;
|
|
26533
|
+
/** @example 0 */
|
|
26534
|
+
order_index?: number;
|
|
26535
|
+
/** @example true */
|
|
26536
|
+
is_cover?: boolean;
|
|
26537
|
+
};
|
|
26538
|
+
details?: {
|
|
26539
|
+
/** @example 24 Windsor Court */
|
|
26540
|
+
address?: string;
|
|
26541
|
+
/** @example 24 Windsor Court */
|
|
26542
|
+
title?: string;
|
|
26543
|
+
/** @example Rent */
|
|
26544
|
+
type?: string;
|
|
26545
|
+
};
|
|
26546
|
+
owner?: {
|
|
26547
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
26548
|
+
uid?: string;
|
|
26549
|
+
/** @example Alice Taylor */
|
|
26550
|
+
name?: string;
|
|
26551
|
+
/** @example alice@example.com */
|
|
26552
|
+
email?: string;
|
|
26553
|
+
};
|
|
26554
|
+
};
|
|
26555
|
+
landlord?: {
|
|
26556
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
26557
|
+
uid?: string;
|
|
26558
|
+
/** @example Alice Taylor */
|
|
26559
|
+
name?: string;
|
|
26560
|
+
/** @example alice@example.com */
|
|
26561
|
+
email?: string;
|
|
26562
|
+
};
|
|
26563
|
+
tenant?: {
|
|
26564
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
26565
|
+
uid?: string;
|
|
26566
|
+
/** @example Sarah Jenkins */
|
|
26567
|
+
name?: string;
|
|
26568
|
+
/** @example sarah@example.com */
|
|
26569
|
+
email?: string;
|
|
26570
|
+
/** @example +447700900123 */
|
|
26571
|
+
phone?: string;
|
|
26572
|
+
/** @example 10 Oxford Street, London, W1 */
|
|
26573
|
+
address?: string;
|
|
26574
|
+
};
|
|
26575
|
+
/**
|
|
26576
|
+
* @example [
|
|
26577
|
+
* {
|
|
26578
|
+
* "uid": "maint_83fd12",
|
|
26579
|
+
* "tenancy_id": 1,
|
|
26580
|
+
* "title": "Leaking kitchen sink",
|
|
26581
|
+
* "description": "Water has been dripping continuously under the sink cabinet.",
|
|
26582
|
+
* "status": "reported",
|
|
26583
|
+
* "priority": "urgent",
|
|
26584
|
+
* "reported_at": "2026-04-01T10:00:00Z",
|
|
26585
|
+
* "assigned_at": null,
|
|
26586
|
+
* "completed_at": null,
|
|
26587
|
+
* "sla_deadline": "2026-04-02T10:00:00Z"
|
|
26588
|
+
* }
|
|
26589
|
+
* ]
|
|
26590
|
+
*/
|
|
26591
|
+
maintenance_requests?: {
|
|
26592
|
+
/** @example maint_83fd12 */
|
|
26593
|
+
uid?: string;
|
|
26594
|
+
/** @example 1 */
|
|
26595
|
+
tenancy_id?: number;
|
|
26596
|
+
/** @example Leaking kitchen sink */
|
|
26597
|
+
title?: string;
|
|
26598
|
+
/** @example Water has been dripping continuously under the sink cabinet. */
|
|
26599
|
+
description?: string;
|
|
26600
|
+
/** @example reported */
|
|
26601
|
+
status?: string;
|
|
26602
|
+
/** @example urgent */
|
|
26603
|
+
priority?: string;
|
|
26604
|
+
/** @example 2026-04-01T10:00:00Z */
|
|
26605
|
+
reported_at?: string;
|
|
26606
|
+
/** @example null */
|
|
26607
|
+
assigned_at?: string | null;
|
|
26608
|
+
/** @example null */
|
|
26609
|
+
completed_at?: string | null;
|
|
26610
|
+
/** @example 2026-04-02T10:00:00Z */
|
|
26611
|
+
sla_deadline?: string;
|
|
26612
|
+
}[];
|
|
26613
|
+
/**
|
|
26614
|
+
* @example [
|
|
26615
|
+
* {
|
|
26616
|
+
* "from_state": "pending",
|
|
26617
|
+
* "to_state": "active",
|
|
26618
|
+
* "changed_by_user_id": 1,
|
|
26619
|
+
* "changed_by_name": "System Admin",
|
|
26620
|
+
* "comment": "Tenancy activated",
|
|
26621
|
+
* "created_at": "2026-03-01T10:00:00Z"
|
|
26622
|
+
* }
|
|
26623
|
+
* ]
|
|
26624
|
+
*/
|
|
26625
|
+
state_transitions?: {
|
|
26626
|
+
/** @example pending */
|
|
26627
|
+
from_state?: string;
|
|
26628
|
+
/** @example active */
|
|
26629
|
+
to_state?: string;
|
|
26630
|
+
/** @example 1 */
|
|
26631
|
+
changed_by_user_id?: number;
|
|
26632
|
+
/** @example System Admin */
|
|
26633
|
+
changed_by_name?: string;
|
|
26634
|
+
/** @example Tenancy activated */
|
|
26635
|
+
comment?: string;
|
|
26636
|
+
/** @example 2026-03-01T10:00:00Z */
|
|
26637
|
+
created_at?: string;
|
|
26638
|
+
}[];
|
|
26639
|
+
/**
|
|
26640
|
+
* @example [
|
|
26641
|
+
* {
|
|
26642
|
+
* "id": 1,
|
|
26643
|
+
* "compliance": {
|
|
26644
|
+
* "id": 10,
|
|
26645
|
+
* "key": "gas_safety_certificate",
|
|
26646
|
+
* "name": "Gas Safety Certificate"
|
|
26647
|
+
* },
|
|
26648
|
+
* "verification_layer_key": "gas_certificate",
|
|
26649
|
+
* "status": "submitted",
|
|
26650
|
+
* "submitted_data": {
|
|
26651
|
+
* "document_file": {
|
|
26652
|
+
* "file_name": "cover.pdf",
|
|
26653
|
+
* "storage_path": "tenancy_compliance/cover.pdf",
|
|
26654
|
+
* "view_url": "https://api.example.com/api/v1/portal/admin/documents/view?expires=1774863000&signature=abc",
|
|
26655
|
+
* "download_url": "https://api.example.com/api/v1/portal/admin/documents/download?expires=1774863000&signature=abc",
|
|
26656
|
+
* "disk": "verification_documents"
|
|
26657
|
+
* }
|
|
26658
|
+
* },
|
|
26659
|
+
* "rejection_reason": null,
|
|
26660
|
+
* "reviewed_by": null,
|
|
26661
|
+
* "reviewed_at": null,
|
|
26662
|
+
* "created_at": "2026-04-01T09:30:00Z"
|
|
26663
|
+
* }
|
|
26664
|
+
* ]
|
|
26665
|
+
*/
|
|
26666
|
+
compliance_submissions?: {
|
|
26667
|
+
/** @example 1 */
|
|
25743
26668
|
id?: number;
|
|
25744
|
-
|
|
25745
|
-
|
|
25746
|
-
|
|
25747
|
-
|
|
25748
|
-
|
|
25749
|
-
|
|
25750
|
-
|
|
25751
|
-
|
|
25752
|
-
|
|
25753
|
-
|
|
25754
|
-
|
|
25755
|
-
|
|
25756
|
-
|
|
25757
|
-
|
|
25758
|
-
|
|
25759
|
-
|
|
25760
|
-
|
|
25761
|
-
|
|
25762
|
-
|
|
25763
|
-
|
|
25764
|
-
|
|
25765
|
-
|
|
25766
|
-
|
|
25767
|
-
|
|
25768
|
-
|
|
25769
|
-
|
|
25770
|
-
|
|
25771
|
-
|
|
25772
|
-
|
|
25773
|
-
|
|
25774
|
-
|
|
25775
|
-
|
|
25776
|
-
|
|
25777
|
-
|
|
25778
|
-
|
|
25779
|
-
|
|
25780
|
-
|
|
25781
|
-
|
|
25782
|
-
|
|
25783
|
-
|
|
26669
|
+
compliance?: {
|
|
26670
|
+
/** @example 10 */
|
|
26671
|
+
id?: number;
|
|
26672
|
+
/** @example gas_safety_certificate */
|
|
26673
|
+
key?: string;
|
|
26674
|
+
/** @example Gas Safety Certificate */
|
|
26675
|
+
name?: string;
|
|
26676
|
+
};
|
|
26677
|
+
/** @example gas_certificate */
|
|
26678
|
+
verification_layer_key?: string;
|
|
26679
|
+
/** @example submitted */
|
|
26680
|
+
status?: string;
|
|
26681
|
+
submitted_data?: {
|
|
26682
|
+
document_file?: {
|
|
26683
|
+
/** @example cover.pdf */
|
|
26684
|
+
file_name?: string;
|
|
26685
|
+
/** @example tenancy_compliance/cover.pdf */
|
|
26686
|
+
storage_path?: string;
|
|
26687
|
+
/** @example https://api.example.com/api/v1/portal/admin/documents/view?expires=1774863000&signature=abc */
|
|
26688
|
+
view_url?: string;
|
|
26689
|
+
/** @example https://api.example.com/api/v1/portal/admin/documents/download?expires=1774863000&signature=abc */
|
|
26690
|
+
download_url?: string;
|
|
26691
|
+
/** @example verification_documents */
|
|
26692
|
+
disk?: string;
|
|
26693
|
+
};
|
|
26694
|
+
};
|
|
26695
|
+
/** @example null */
|
|
26696
|
+
rejection_reason?: string | null;
|
|
26697
|
+
/** @example null */
|
|
26698
|
+
reviewed_by?: string | null;
|
|
26699
|
+
/** @example null */
|
|
26700
|
+
reviewed_at?: string | null;
|
|
26701
|
+
/** @example 2026-04-01T09:30:00Z */
|
|
26702
|
+
created_at?: string;
|
|
26703
|
+
}[];
|
|
26704
|
+
/**
|
|
26705
|
+
* @example [
|
|
26706
|
+
* {
|
|
26707
|
+
* "id": 10,
|
|
26708
|
+
* "responsible_party": "landlord",
|
|
26709
|
+
* "responsible_party_label": "Landlord",
|
|
26710
|
+
* "liability_exclusion_flag": false,
|
|
26711
|
+
* "requirements": [
|
|
26712
|
+
* "gas_certificate"
|
|
26713
|
+
* ]
|
|
26714
|
+
* }
|
|
26715
|
+
* ]
|
|
26716
|
+
*/
|
|
26717
|
+
compliances?: {
|
|
26718
|
+
/** @example 10 */
|
|
25784
26719
|
id?: number;
|
|
25785
|
-
/** @example
|
|
25786
|
-
|
|
25787
|
-
|
|
25788
|
-
|
|
25789
|
-
|
|
25790
|
-
|
|
25791
|
-
|
|
25792
|
-
|
|
25793
|
-
|
|
25794
|
-
|
|
25795
|
-
|
|
25796
|
-
|
|
25797
|
-
|
|
25798
|
-
fetchOneTenancy: {
|
|
25799
|
-
parameters: {
|
|
25800
|
-
query?: never;
|
|
25801
|
-
header?: never;
|
|
25802
|
-
path: {
|
|
25803
|
-
/** @description The UID of the tenancy. */
|
|
25804
|
-
tenancy_uid: string;
|
|
25805
|
-
};
|
|
25806
|
-
cookie?: never;
|
|
25807
|
-
};
|
|
25808
|
-
requestBody?: never;
|
|
25809
|
-
responses: {
|
|
25810
|
-
200: {
|
|
25811
|
-
headers: {
|
|
25812
|
-
[name: string]: unknown;
|
|
25813
|
-
};
|
|
25814
|
-
content: {
|
|
25815
|
-
"application/json": {
|
|
25816
|
-
data?: {
|
|
25817
|
-
/** @example cec24490-3159-4f8a-ad83-983b9ff68b0f */
|
|
25818
|
-
uid?: string;
|
|
25819
|
-
/** @example 4881.50 */
|
|
25820
|
-
rent_amount?: string;
|
|
25821
|
-
/** @example 2151.17 */
|
|
25822
|
-
deposit_amount?: string;
|
|
25823
|
-
/** @example offer_accepted */
|
|
25824
|
-
state?: string;
|
|
25825
|
-
/** @example 2025-08-24T00:00:00.000000Z */
|
|
25826
|
-
start_date?: string;
|
|
25827
|
-
/** @example 2026-08-24T00:00:00.000000Z */
|
|
25828
|
-
end_date?: string;
|
|
25829
|
-
/** @example false */
|
|
25830
|
-
is_periodic?: boolean;
|
|
25831
|
-
/** @example null */
|
|
25832
|
-
company_name?: string | null;
|
|
25833
|
-
/** @example null */
|
|
25834
|
-
company_registration_number?: string | null;
|
|
25835
|
-
/** @example 2026-05-01T20:09:08.000000Z */
|
|
25836
|
-
created_at?: string;
|
|
25837
|
-
/** @example [] */
|
|
25838
|
-
compliances?: unknown[];
|
|
26720
|
+
/** @example landlord */
|
|
26721
|
+
responsible_party?: string;
|
|
26722
|
+
/** @example Landlord */
|
|
26723
|
+
responsible_party_label?: string;
|
|
26724
|
+
/** @example false */
|
|
26725
|
+
liability_exclusion_flag?: boolean;
|
|
26726
|
+
/**
|
|
26727
|
+
* @example [
|
|
26728
|
+
* "gas_certificate"
|
|
26729
|
+
* ]
|
|
26730
|
+
*/
|
|
26731
|
+
requirements?: string[];
|
|
26732
|
+
}[];
|
|
25839
26733
|
compliance_status?: {
|
|
25840
|
-
/** @example
|
|
26734
|
+
/** @example compliant */
|
|
25841
26735
|
overall?: string;
|
|
25842
|
-
/**
|
|
25843
|
-
|
|
26736
|
+
/**
|
|
26737
|
+
* @example [
|
|
26738
|
+
* {
|
|
26739
|
+
* "compliance_key": "gas_safety_certificate",
|
|
26740
|
+
* "state": "compliant",
|
|
26741
|
+
* "valid_until": "2027-03-01"
|
|
26742
|
+
* },
|
|
26743
|
+
* {
|
|
26744
|
+
* "compliance_key": "electrical_installation_condition_report",
|
|
26745
|
+
* "state": "non_compliant",
|
|
26746
|
+
* "valid_until": null
|
|
26747
|
+
* }
|
|
26748
|
+
* ]
|
|
26749
|
+
*/
|
|
26750
|
+
breakdown?: {
|
|
26751
|
+
/** @example gas_safety_certificate */
|
|
26752
|
+
compliance_key?: string;
|
|
26753
|
+
/** @example compliant */
|
|
26754
|
+
state?: string;
|
|
26755
|
+
/** @example 2027-03-01 */
|
|
26756
|
+
valid_until?: string;
|
|
26757
|
+
}[];
|
|
25844
26758
|
};
|
|
25845
26759
|
};
|
|
25846
26760
|
};
|
|
@@ -25859,15 +26773,15 @@ export interface operations {
|
|
|
25859
26773
|
content: {
|
|
25860
26774
|
"application/json": {
|
|
25861
26775
|
/**
|
|
25862
|
-
* @description
|
|
25863
|
-
* @example
|
|
26776
|
+
* @description UID of the listing for which the tenancy is being created. The <code>uid</code> of an existing record in the listings table.
|
|
26777
|
+
* @example 55178b5b-ca29-41a2-a9da-f51cb257e328
|
|
25864
26778
|
*/
|
|
25865
|
-
|
|
26779
|
+
listing_uid: string;
|
|
25866
26780
|
/**
|
|
25867
|
-
* @description
|
|
25868
|
-
* @example
|
|
26781
|
+
* @description UID of the user who will be the tenant. The <code>uid</code> of an existing record in the users table.
|
|
26782
|
+
* @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df
|
|
25869
26783
|
*/
|
|
25870
|
-
|
|
26784
|
+
tenant_uid: string;
|
|
25871
26785
|
/**
|
|
25872
26786
|
* @description Monthly rent amount for the tenancy. Must be at least 1.
|
|
25873
26787
|
* @example 1200
|
|
@@ -25902,32 +26816,43 @@ export interface operations {
|
|
|
25902
26816
|
};
|
|
25903
26817
|
};
|
|
25904
26818
|
responses: {
|
|
26819
|
+
/** @description Tenancy created successfully */
|
|
25905
26820
|
200: {
|
|
25906
26821
|
headers: {
|
|
25907
26822
|
[name: string]: unknown;
|
|
25908
26823
|
};
|
|
25909
26824
|
content: {
|
|
25910
26825
|
"application/json": {
|
|
26826
|
+
/** @example Tenancy created successfully */
|
|
26827
|
+
message?: string;
|
|
26828
|
+
/** @example null */
|
|
26829
|
+
event?: string | null;
|
|
25911
26830
|
data?: {
|
|
25912
|
-
/** @example
|
|
26831
|
+
/** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
|
|
25913
26832
|
uid?: string;
|
|
25914
|
-
/** @example
|
|
26833
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
26834
|
+
listing_uid?: string;
|
|
26835
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
26836
|
+
landlord_uid?: string;
|
|
26837
|
+
/** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
|
|
26838
|
+
tenant_uid?: string;
|
|
26839
|
+
/** @example 1500.00 */
|
|
25915
26840
|
rent_amount?: string;
|
|
25916
|
-
/** @example
|
|
26841
|
+
/** @example 1500.00 */
|
|
25917
26842
|
deposit_amount?: string;
|
|
25918
|
-
/** @example
|
|
26843
|
+
/** @example pending */
|
|
25919
26844
|
state?: string;
|
|
25920
|
-
/** @example
|
|
26845
|
+
/** @example 2026-06-01 */
|
|
25921
26846
|
start_date?: string;
|
|
25922
|
-
/** @example
|
|
26847
|
+
/** @example 2027-05-31 */
|
|
25923
26848
|
end_date?: string;
|
|
25924
|
-
/** @example
|
|
26849
|
+
/** @example false */
|
|
25925
26850
|
is_periodic?: boolean;
|
|
25926
26851
|
/** @example null */
|
|
25927
26852
|
company_name?: string | null;
|
|
25928
26853
|
/** @example null */
|
|
25929
26854
|
company_registration_number?: string | null;
|
|
25930
|
-
/** @example 2026-05-
|
|
26855
|
+
/** @example 2026-05-06T10:30:00.000000Z */
|
|
25931
26856
|
created_at?: string;
|
|
25932
26857
|
};
|
|
25933
26858
|
};
|
|
@@ -26036,7 +26961,7 @@ export interface operations {
|
|
|
26036
26961
|
query?: never;
|
|
26037
26962
|
header?: never;
|
|
26038
26963
|
path: {
|
|
26039
|
-
/** @description
|
|
26964
|
+
/** @description The ID of the tenancy to renew. */
|
|
26040
26965
|
tenancy_uid: string;
|
|
26041
26966
|
};
|
|
26042
26967
|
cookie?: never;
|
|
@@ -26068,8 +26993,8 @@ export interface operations {
|
|
|
26068
26993
|
query?: never;
|
|
26069
26994
|
header?: never;
|
|
26070
26995
|
path: {
|
|
26071
|
-
/** @description The
|
|
26072
|
-
tenancy_uid:
|
|
26996
|
+
/** @description The UID of the tenancy to convert. */
|
|
26997
|
+
tenancy_uid: string;
|
|
26073
26998
|
};
|
|
26074
26999
|
cookie?: never;
|
|
26075
27000
|
};
|
|
@@ -26219,17 +27144,17 @@ export interface operations {
|
|
|
26219
27144
|
* "from_state": "enquiry",
|
|
26220
27145
|
* "to_state": "pre_move_in_ready",
|
|
26221
27146
|
* "changed_by_user_id": 3,
|
|
26222
|
-
* "changed_by_name": "
|
|
27147
|
+
* "changed_by_name": "Bruce Parker",
|
|
26223
27148
|
* "comment": "Qui commodi incidunt iure odit.",
|
|
26224
|
-
* "created_at": "2026-01-
|
|
27149
|
+
* "created_at": "2026-01-14T00:46:07.000000Z"
|
|
26225
27150
|
* },
|
|
26226
27151
|
* {
|
|
26227
|
-
* "from_state": "
|
|
26228
|
-
* "to_state": "
|
|
27152
|
+
* "from_state": "pre_move_in_ready",
|
|
27153
|
+
* "to_state": "periodic",
|
|
26229
27154
|
* "changed_by_user_id": 3,
|
|
26230
|
-
* "changed_by_name": "
|
|
26231
|
-
* "comment":
|
|
26232
|
-
* "created_at": "2025-11-
|
|
27155
|
+
* "changed_by_name": "Bruce Parker",
|
|
27156
|
+
* "comment": null,
|
|
27157
|
+
* "created_at": "2025-11-21T08:41:47.000000Z"
|
|
26233
27158
|
* }
|
|
26234
27159
|
* ]
|
|
26235
27160
|
*/
|
|
@@ -26240,11 +27165,11 @@ export interface operations {
|
|
|
26240
27165
|
to_state?: string;
|
|
26241
27166
|
/** @example 3 */
|
|
26242
27167
|
changed_by_user_id?: number;
|
|
26243
|
-
/** @example
|
|
27168
|
+
/** @example Bruce Parker */
|
|
26244
27169
|
changed_by_name?: string;
|
|
26245
27170
|
/** @example Qui commodi incidunt iure odit. */
|
|
26246
27171
|
comment?: string;
|
|
26247
|
-
/** @example 2026-01-
|
|
27172
|
+
/** @example 2026-01-14T00:46:07.000000Z */
|
|
26248
27173
|
created_at?: string;
|
|
26249
27174
|
}[];
|
|
26250
27175
|
};
|
|
@@ -26629,15 +27554,15 @@ export interface operations {
|
|
|
26629
27554
|
content: {
|
|
26630
27555
|
"application/json": {
|
|
26631
27556
|
data?: {
|
|
26632
|
-
/** @example
|
|
27557
|
+
/** @example 04101f31-35b3-4d6e-9631-513e9134c3f8 */
|
|
26633
27558
|
uid?: string;
|
|
26634
|
-
/** @example
|
|
27559
|
+
/** @example Emily Reid */
|
|
26635
27560
|
username?: string;
|
|
26636
27561
|
/** @example null */
|
|
26637
27562
|
first_name?: string | null;
|
|
26638
27563
|
/** @example null */
|
|
26639
27564
|
last_name?: string | null;
|
|
26640
|
-
/** @example
|
|
27565
|
+
/** @example reid.francesca@example.org */
|
|
26641
27566
|
email?: string;
|
|
26642
27567
|
/** @example null */
|
|
26643
27568
|
phone?: string | null;
|
|
@@ -26659,7 +27584,7 @@ export interface operations {
|
|
|
26659
27584
|
timezone?: string;
|
|
26660
27585
|
/** @example Customer */
|
|
26661
27586
|
user_type?: string;
|
|
26662
|
-
/** @example
|
|
27587
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
26663
27588
|
created?: string;
|
|
26664
27589
|
/** @example 0 seconds ago */
|
|
26665
27590
|
email_verified_at?: string;
|
|
@@ -26724,24 +27649,18 @@ export interface operations {
|
|
|
26724
27649
|
reservedBookingsTenants: {
|
|
26725
27650
|
parameters: {
|
|
26726
27651
|
query?: {
|
|
27652
|
+
/** @description Filter bookings by tenant/guest name. */
|
|
27653
|
+
tenant_name?: string | null;
|
|
26727
27654
|
/** @description Number of bookings per page. */
|
|
26728
|
-
per_page?: number;
|
|
27655
|
+
per_page?: number | null;
|
|
27656
|
+
/** @description Current page number. */
|
|
27657
|
+
page?: number | null;
|
|
26729
27658
|
};
|
|
26730
27659
|
header?: never;
|
|
26731
27660
|
path?: never;
|
|
26732
27661
|
cookie?: never;
|
|
26733
27662
|
};
|
|
26734
|
-
requestBody?:
|
|
26735
|
-
content: {
|
|
26736
|
-
"application/json": {
|
|
26737
|
-
/**
|
|
26738
|
-
* @description Must be at least 1. Must not be greater than 100.
|
|
26739
|
-
* @example 1
|
|
26740
|
-
*/
|
|
26741
|
-
per_page?: number | null;
|
|
26742
|
-
};
|
|
26743
|
-
};
|
|
26744
|
-
};
|
|
27663
|
+
requestBody?: never;
|
|
26745
27664
|
responses: {
|
|
26746
27665
|
/** @description Retrieve tenant reserved bookings */
|
|
26747
27666
|
200: {
|
|
@@ -26793,7 +27712,8 @@ export interface operations {
|
|
|
26793
27712
|
* "end_date": "13 Jun 2026",
|
|
26794
27713
|
* "nights": 3,
|
|
26795
27714
|
* "status": "pending",
|
|
26796
|
-
* "total_price": "450.00"
|
|
27715
|
+
* "total_price": "450.00",
|
|
27716
|
+
* "created_at": "06 May, 2026 10:30 AM"
|
|
26797
27717
|
* }
|
|
26798
27718
|
* ]
|
|
26799
27719
|
*/
|
|
@@ -26860,6 +27780,8 @@ export interface operations {
|
|
|
26860
27780
|
status?: string;
|
|
26861
27781
|
/** @example 450.00 */
|
|
26862
27782
|
total_price?: string;
|
|
27783
|
+
/** @example 06 May, 2026 10:30 AM */
|
|
27784
|
+
created_at?: string;
|
|
26863
27785
|
}[];
|
|
26864
27786
|
pagination?: {
|
|
26865
27787
|
/** @example 1 */
|
|
@@ -26934,15 +27856,15 @@ export interface operations {
|
|
|
26934
27856
|
content: {
|
|
26935
27857
|
"application/json": {
|
|
26936
27858
|
data?: {
|
|
26937
|
-
/** @example
|
|
27859
|
+
/** @example 2c1e024d-13e5-4686-91f4-11d819a00bf9 */
|
|
26938
27860
|
uid?: string;
|
|
26939
|
-
/** @example
|
|
27861
|
+
/** @example Connor Richards */
|
|
26940
27862
|
username?: string;
|
|
26941
27863
|
/** @example null */
|
|
26942
27864
|
first_name?: string | null;
|
|
26943
27865
|
/** @example null */
|
|
26944
27866
|
last_name?: string | null;
|
|
26945
|
-
/** @example
|
|
27867
|
+
/** @example igreen@example.org */
|
|
26946
27868
|
email?: string;
|
|
26947
27869
|
/** @example null */
|
|
26948
27870
|
phone?: string | null;
|
|
@@ -26964,7 +27886,7 @@ export interface operations {
|
|
|
26964
27886
|
timezone?: string;
|
|
26965
27887
|
/** @example Customer */
|
|
26966
27888
|
user_type?: string;
|
|
26967
|
-
/** @example
|
|
27889
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
26968
27890
|
created?: string;
|
|
26969
27891
|
/** @example 0 seconds ago */
|
|
26970
27892
|
email_verified_at?: string;
|
|
@@ -27036,15 +27958,15 @@ export interface operations {
|
|
|
27036
27958
|
content: {
|
|
27037
27959
|
"application/json": {
|
|
27038
27960
|
data?: {
|
|
27039
|
-
/** @example
|
|
27961
|
+
/** @example f1ee6f9e-4c4b-4fb3-b2a6-70099e9a31e7 */
|
|
27040
27962
|
uid?: string;
|
|
27041
|
-
/** @example
|
|
27963
|
+
/** @example Emily Reid */
|
|
27042
27964
|
username?: string;
|
|
27043
27965
|
/** @example null */
|
|
27044
27966
|
first_name?: string | null;
|
|
27045
27967
|
/** @example null */
|
|
27046
27968
|
last_name?: string | null;
|
|
27047
|
-
/** @example
|
|
27969
|
+
/** @example wscott@example.net */
|
|
27048
27970
|
email?: string;
|
|
27049
27971
|
/** @example null */
|
|
27050
27972
|
phone?: string | null;
|
|
@@ -27066,7 +27988,7 @@ export interface operations {
|
|
|
27066
27988
|
timezone?: string;
|
|
27067
27989
|
/** @example Customer */
|
|
27068
27990
|
user_type?: string;
|
|
27069
|
-
/** @example
|
|
27991
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
27070
27992
|
created?: string;
|
|
27071
27993
|
/** @example 0 seconds ago */
|
|
27072
27994
|
email_verified_at?: string;
|
|
@@ -27320,7 +28242,7 @@ export interface operations {
|
|
|
27320
28242
|
completed_layers?: number;
|
|
27321
28243
|
/** @example 4 */
|
|
27322
28244
|
pending_layers?: number;
|
|
27323
|
-
/** @example
|
|
28245
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
27324
28246
|
last_calculated_at?: string;
|
|
27325
28247
|
};
|
|
27326
28248
|
};
|
|
@@ -27368,7 +28290,7 @@ export interface operations {
|
|
|
27368
28290
|
completed_layers?: number;
|
|
27369
28291
|
/** @example 4 */
|
|
27370
28292
|
pending_layers?: number;
|
|
27371
|
-
/** @example
|
|
28293
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
27372
28294
|
last_calculated_at?: string;
|
|
27373
28295
|
};
|
|
27374
28296
|
};
|
|
@@ -27402,14 +28324,14 @@ export interface operations {
|
|
|
27402
28324
|
content: {
|
|
27403
28325
|
"application/json": {
|
|
27404
28326
|
data?: {
|
|
27405
|
-
/** @example
|
|
28327
|
+
/** @example a253e3d0-8f80-4c36-ad5d-bee1c44aaedb */
|
|
27406
28328
|
wishlist_uid?: string;
|
|
27407
28329
|
listing?: {
|
|
27408
|
-
/** @example New For Sale Used Item draft •
|
|
28330
|
+
/** @example New For Sale Used Item draft • 6 May 2026, 1:59 PM */
|
|
27409
28331
|
draft_name?: string;
|
|
27410
|
-
/** @example LST-UIT-SAL-
|
|
28332
|
+
/** @example LST-UIT-SAL-MOU4IE4CEKY */
|
|
27411
28333
|
sku?: string;
|
|
27412
|
-
/** @example
|
|
28334
|
+
/** @example 7c0f038c-38b7-4279-a818-4d65c0f748db */
|
|
27413
28335
|
uid?: string;
|
|
27414
28336
|
/** @example Sale */
|
|
27415
28337
|
listing_type?: string;
|
|
@@ -27756,17 +28678,17 @@ export interface operations {
|
|
|
27756
28678
|
content: {
|
|
27757
28679
|
"application/json": {
|
|
27758
28680
|
data?: {
|
|
27759
|
-
/** @example
|
|
28681
|
+
/** @example 6b4e9a1a-067d-47d2-abf7-156406afe774 */
|
|
27760
28682
|
uid?: string;
|
|
27761
|
-
/** @example
|
|
28683
|
+
/** @example Dolor ea natus vel. */
|
|
27762
28684
|
note?: string;
|
|
27763
28685
|
user?: {
|
|
27764
|
-
/** @example
|
|
28686
|
+
/** @example 9 */
|
|
27765
28687
|
id?: number;
|
|
27766
|
-
/** @example
|
|
28688
|
+
/** @example Carrie Johnson */
|
|
27767
28689
|
name?: string;
|
|
27768
28690
|
};
|
|
27769
|
-
/** @example 2026-04-
|
|
28691
|
+
/** @example 2026-04-27 22:15:17 */
|
|
27770
28692
|
created_at?: string;
|
|
27771
28693
|
};
|
|
27772
28694
|
};
|
|
@@ -27790,13 +28712,13 @@ export interface operations {
|
|
|
27790
28712
|
content: {
|
|
27791
28713
|
"application/json": {
|
|
27792
28714
|
data?: {
|
|
27793
|
-
/** @example
|
|
28715
|
+
/** @example 0 */
|
|
27794
28716
|
current_level?: number;
|
|
27795
28717
|
/** @example 3 */
|
|
27796
28718
|
completed_layers?: number;
|
|
27797
|
-
/** @example
|
|
28719
|
+
/** @example 4 */
|
|
27798
28720
|
pending_layers?: number;
|
|
27799
|
-
/** @example
|
|
28721
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
27800
28722
|
last_calculated_at?: string;
|
|
27801
28723
|
};
|
|
27802
28724
|
};
|
|
@@ -28038,7 +28960,7 @@ export interface operations {
|
|
|
28038
28960
|
completed_layers?: number;
|
|
28039
28961
|
/** @example 4 */
|
|
28040
28962
|
pending_layers?: number;
|
|
28041
|
-
/** @example
|
|
28963
|
+
/** @example 06 May 2026, 01:59 PM */
|
|
28042
28964
|
last_calculated_at?: string;
|
|
28043
28965
|
};
|
|
28044
28966
|
};
|