@justins-home/types 1.1.57 → 1.1.59
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 +1328 -276
- package/package.json +1 -1
package/generated/api-types.ts
CHANGED
|
@@ -39,6 +39,46 @@ export interface paths {
|
|
|
39
39
|
patch?: never;
|
|
40
40
|
trace?: never;
|
|
41
41
|
};
|
|
42
|
+
"/api/v1/portal/admin/bookings/fetch-all": {
|
|
43
|
+
parameters: {
|
|
44
|
+
query?: never;
|
|
45
|
+
header?: never;
|
|
46
|
+
path?: never;
|
|
47
|
+
cookie?: never;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* reservedBookingsAdmin
|
|
51
|
+
* @description Retrieve all reserved bookings for admin oversight.
|
|
52
|
+
*/
|
|
53
|
+
get: operations["reservedBookingsAdmin"];
|
|
54
|
+
put?: never;
|
|
55
|
+
post?: never;
|
|
56
|
+
delete?: never;
|
|
57
|
+
options?: never;
|
|
58
|
+
head?: never;
|
|
59
|
+
patch?: never;
|
|
60
|
+
trace?: never;
|
|
61
|
+
};
|
|
62
|
+
"/api/v1/portal/admin/appointments/fetch-all": {
|
|
63
|
+
parameters: {
|
|
64
|
+
query?: never;
|
|
65
|
+
header?: never;
|
|
66
|
+
path?: never;
|
|
67
|
+
cookie?: never;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* fetchAllAppointmentAdmin
|
|
71
|
+
* @description Retrieve all appointments for admin oversight.
|
|
72
|
+
*/
|
|
73
|
+
get: operations["fetchAllAppointmentAdmin"];
|
|
74
|
+
put?: never;
|
|
75
|
+
post?: never;
|
|
76
|
+
delete?: never;
|
|
77
|
+
options?: never;
|
|
78
|
+
head?: never;
|
|
79
|
+
patch?: never;
|
|
80
|
+
trace?: never;
|
|
81
|
+
};
|
|
42
82
|
"/api/v1/portal/admin/dashboard/stats": {
|
|
43
83
|
parameters: {
|
|
44
84
|
query?: never;
|
|
@@ -3305,7 +3345,7 @@ export interface paths {
|
|
|
3305
3345
|
header?: never;
|
|
3306
3346
|
path: {
|
|
3307
3347
|
/** @description The ID of the booking. */
|
|
3308
|
-
booking_id:
|
|
3348
|
+
booking_id: string;
|
|
3309
3349
|
};
|
|
3310
3350
|
cookie?: never;
|
|
3311
3351
|
};
|
|
@@ -3655,6 +3695,26 @@ export interface paths {
|
|
|
3655
3695
|
patch?: never;
|
|
3656
3696
|
trace?: never;
|
|
3657
3697
|
};
|
|
3698
|
+
"/api/v1/portal/landlord/bookings/fetch-all": {
|
|
3699
|
+
parameters: {
|
|
3700
|
+
query?: never;
|
|
3701
|
+
header?: never;
|
|
3702
|
+
path?: never;
|
|
3703
|
+
cookie?: never;
|
|
3704
|
+
};
|
|
3705
|
+
/**
|
|
3706
|
+
* reservedBookingsLandlord
|
|
3707
|
+
* @description Retrieve the authenticated landlord's reserved bookings.
|
|
3708
|
+
*/
|
|
3709
|
+
get: operations["reservedBookingsLandlord"];
|
|
3710
|
+
put?: never;
|
|
3711
|
+
post?: never;
|
|
3712
|
+
delete?: never;
|
|
3713
|
+
options?: never;
|
|
3714
|
+
head?: never;
|
|
3715
|
+
patch?: never;
|
|
3716
|
+
trace?: never;
|
|
3717
|
+
};
|
|
3658
3718
|
"/api/v1/portal/landlord/listing": {
|
|
3659
3719
|
parameters: {
|
|
3660
3720
|
query?: never;
|
|
@@ -5258,6 +5318,26 @@ export interface paths {
|
|
|
5258
5318
|
patch?: never;
|
|
5259
5319
|
trace?: never;
|
|
5260
5320
|
};
|
|
5321
|
+
"/api/v1/portal/tenant/bookings/fetch-all": {
|
|
5322
|
+
parameters: {
|
|
5323
|
+
query?: never;
|
|
5324
|
+
header?: never;
|
|
5325
|
+
path?: never;
|
|
5326
|
+
cookie?: never;
|
|
5327
|
+
};
|
|
5328
|
+
/**
|
|
5329
|
+
* reservedBookingsTenants
|
|
5330
|
+
* @description Retrieve the authenticated tenant's reserved bookings.
|
|
5331
|
+
*/
|
|
5332
|
+
get: operations["reservedBookingsTenants"];
|
|
5333
|
+
put?: never;
|
|
5334
|
+
post?: never;
|
|
5335
|
+
delete?: never;
|
|
5336
|
+
options?: never;
|
|
5337
|
+
head?: never;
|
|
5338
|
+
patch?: never;
|
|
5339
|
+
trace?: never;
|
|
5340
|
+
};
|
|
5261
5341
|
"/api/v1/public/user/two-factor/send-otp": {
|
|
5262
5342
|
parameters: {
|
|
5263
5343
|
query?: never;
|
|
@@ -5681,7 +5761,7 @@ export interface operations {
|
|
|
5681
5761
|
content: {
|
|
5682
5762
|
"application/json": {
|
|
5683
5763
|
data?: {
|
|
5684
|
-
/** @example
|
|
5764
|
+
/** @example 2929039b-70c0-4410-b566-160570581a85 */
|
|
5685
5765
|
uid?: string;
|
|
5686
5766
|
/** @example Ms. Audra Crooks II */
|
|
5687
5767
|
username?: string;
|
|
@@ -5711,7 +5791,7 @@ export interface operations {
|
|
|
5711
5791
|
timezone?: string;
|
|
5712
5792
|
/** @example Customer */
|
|
5713
5793
|
user_type?: string;
|
|
5714
|
-
/** @example
|
|
5794
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
5715
5795
|
created?: string;
|
|
5716
5796
|
/** @example 0 seconds ago */
|
|
5717
5797
|
email_verified_at?: string;
|
|
@@ -5801,6 +5881,419 @@ export interface operations {
|
|
|
5801
5881
|
};
|
|
5802
5882
|
};
|
|
5803
5883
|
};
|
|
5884
|
+
reservedBookingsAdmin: {
|
|
5885
|
+
parameters: {
|
|
5886
|
+
query?: {
|
|
5887
|
+
/** @description Number of bookings per page. */
|
|
5888
|
+
per_page?: number;
|
|
5889
|
+
};
|
|
5890
|
+
header?: never;
|
|
5891
|
+
path?: never;
|
|
5892
|
+
cookie?: never;
|
|
5893
|
+
};
|
|
5894
|
+
requestBody?: {
|
|
5895
|
+
content: {
|
|
5896
|
+
"application/json": {
|
|
5897
|
+
/**
|
|
5898
|
+
* @description Must be at least 1. Must not be greater than 100.
|
|
5899
|
+
* @example 1
|
|
5900
|
+
*/
|
|
5901
|
+
per_page?: number | null;
|
|
5902
|
+
};
|
|
5903
|
+
};
|
|
5904
|
+
};
|
|
5905
|
+
responses: {
|
|
5906
|
+
/** @description Retrieve all reserved bookings for admin oversight */
|
|
5907
|
+
200: {
|
|
5908
|
+
headers: {
|
|
5909
|
+
[name: string]: unknown;
|
|
5910
|
+
};
|
|
5911
|
+
content: {
|
|
5912
|
+
"application/json": {
|
|
5913
|
+
/** @example Reserved bookings fetched successfully */
|
|
5914
|
+
message?: string;
|
|
5915
|
+
/** @example null */
|
|
5916
|
+
event?: string | null;
|
|
5917
|
+
data?: {
|
|
5918
|
+
/**
|
|
5919
|
+
* @example [
|
|
5920
|
+
* {
|
|
5921
|
+
* "id": 12,
|
|
5922
|
+
* "booking_ref": "BKG-20260430-ABC123",
|
|
5923
|
+
* "listing": {
|
|
5924
|
+
* "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
5925
|
+
* "cover": {
|
|
5926
|
+
* "uid": "lm_34fda1",
|
|
5927
|
+
* "media_type": "image/jpeg",
|
|
5928
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
5929
|
+
* "order_index": 0,
|
|
5930
|
+
* "is_cover": true
|
|
5931
|
+
* },
|
|
5932
|
+
* "details": {
|
|
5933
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
5934
|
+
* "title": "24 Windsor Court",
|
|
5935
|
+
* "type": "Rent"
|
|
5936
|
+
* }
|
|
5937
|
+
* },
|
|
5938
|
+
* "guest": {
|
|
5939
|
+
* "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
|
|
5940
|
+
* "name": "Dominic Thomas",
|
|
5941
|
+
* "email": "tenant3@justinshome.test",
|
|
5942
|
+
* "avatar_path": null
|
|
5943
|
+
* },
|
|
5944
|
+
* "host": {
|
|
5945
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
5946
|
+
* "name": "Alice Taylor",
|
|
5947
|
+
* "email": "alice@example.com",
|
|
5948
|
+
* "avatar_path": null
|
|
5949
|
+
* },
|
|
5950
|
+
* "nights": 3,
|
|
5951
|
+
* "status": "pending",
|
|
5952
|
+
* "total_price": "450.00"
|
|
5953
|
+
* }
|
|
5954
|
+
* ]
|
|
5955
|
+
*/
|
|
5956
|
+
items?: {
|
|
5957
|
+
/** @example 12 */
|
|
5958
|
+
id?: number;
|
|
5959
|
+
/** @example BKG-20260430-ABC123 */
|
|
5960
|
+
booking_ref?: string;
|
|
5961
|
+
listing?: {
|
|
5962
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
5963
|
+
listing_uid?: string;
|
|
5964
|
+
cover?: {
|
|
5965
|
+
/** @example lm_34fda1 */
|
|
5966
|
+
uid?: string;
|
|
5967
|
+
/** @example image/jpeg */
|
|
5968
|
+
media_type?: string;
|
|
5969
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
5970
|
+
storage_path?: string;
|
|
5971
|
+
/** @example 0 */
|
|
5972
|
+
order_index?: number;
|
|
5973
|
+
/** @example true */
|
|
5974
|
+
is_cover?: boolean;
|
|
5975
|
+
};
|
|
5976
|
+
details?: {
|
|
5977
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
5978
|
+
address?: string;
|
|
5979
|
+
/** @example 24 Windsor Court */
|
|
5980
|
+
title?: string;
|
|
5981
|
+
/** @example Rent */
|
|
5982
|
+
type?: string;
|
|
5983
|
+
};
|
|
5984
|
+
};
|
|
5985
|
+
guest?: {
|
|
5986
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
5987
|
+
uid?: string;
|
|
5988
|
+
/** @example Dominic Thomas */
|
|
5989
|
+
name?: string;
|
|
5990
|
+
/** @example tenant3@justinshome.test */
|
|
5991
|
+
email?: string;
|
|
5992
|
+
/** @example null */
|
|
5993
|
+
avatar_path?: string | null;
|
|
5994
|
+
};
|
|
5995
|
+
host?: {
|
|
5996
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
5997
|
+
uid?: string;
|
|
5998
|
+
/** @example Alice Taylor */
|
|
5999
|
+
name?: string;
|
|
6000
|
+
/** @example alice@example.com */
|
|
6001
|
+
email?: string;
|
|
6002
|
+
/** @example null */
|
|
6003
|
+
avatar_path?: string | null;
|
|
6004
|
+
};
|
|
6005
|
+
/** @example 3 */
|
|
6006
|
+
nights?: number;
|
|
6007
|
+
/** @example pending */
|
|
6008
|
+
status?: string;
|
|
6009
|
+
/** @example 450.00 */
|
|
6010
|
+
total_price?: string;
|
|
6011
|
+
}[];
|
|
6012
|
+
pagination?: {
|
|
6013
|
+
/** @example 1 */
|
|
6014
|
+
current_page?: number;
|
|
6015
|
+
/** @example 15 */
|
|
6016
|
+
per_page?: number;
|
|
6017
|
+
/** @example 1 */
|
|
6018
|
+
total?: number;
|
|
6019
|
+
/** @example 1 */
|
|
6020
|
+
last_page?: number;
|
|
6021
|
+
/** @example 1 */
|
|
6022
|
+
from?: number;
|
|
6023
|
+
/** @example 1 */
|
|
6024
|
+
to?: number;
|
|
6025
|
+
};
|
|
6026
|
+
};
|
|
6027
|
+
};
|
|
6028
|
+
};
|
|
6029
|
+
};
|
|
6030
|
+
};
|
|
6031
|
+
};
|
|
6032
|
+
fetchAllAppointmentAdmin: {
|
|
6033
|
+
parameters: {
|
|
6034
|
+
query?: {
|
|
6035
|
+
/** @description Number of appointments per page. */
|
|
6036
|
+
per_page?: number;
|
|
6037
|
+
/** @description Page number. */
|
|
6038
|
+
page?: number;
|
|
6039
|
+
};
|
|
6040
|
+
header?: never;
|
|
6041
|
+
path?: never;
|
|
6042
|
+
cookie?: never;
|
|
6043
|
+
};
|
|
6044
|
+
requestBody?: never;
|
|
6045
|
+
responses: {
|
|
6046
|
+
/** @description Retrieve all appointments for admin oversight */
|
|
6047
|
+
200: {
|
|
6048
|
+
headers: {
|
|
6049
|
+
[name: string]: unknown;
|
|
6050
|
+
};
|
|
6051
|
+
content: {
|
|
6052
|
+
"application/json": {
|
|
6053
|
+
/** @example Appointments retrieve successfully */
|
|
6054
|
+
message?: string;
|
|
6055
|
+
/** @example null */
|
|
6056
|
+
event?: string | null;
|
|
6057
|
+
data?: {
|
|
6058
|
+
/**
|
|
6059
|
+
* @example [
|
|
6060
|
+
* {
|
|
6061
|
+
* "id": 12,
|
|
6062
|
+
* "listing_id": 32,
|
|
6063
|
+
* "listing": {
|
|
6064
|
+
* "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
6065
|
+
* "sku": "LST-PRP-LTR-260405-A1B2",
|
|
6066
|
+
* "details": {
|
|
6067
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
6068
|
+
* "title": "24 Windsor Court",
|
|
6069
|
+
* "type": "Rent"
|
|
6070
|
+
* },
|
|
6071
|
+
* "owner": {
|
|
6072
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
6073
|
+
* "name": "Alice Taylor",
|
|
6074
|
+
* "phone": "+2348012345678",
|
|
6075
|
+
* "email": "alice@example.com",
|
|
6076
|
+
* "avatar": null,
|
|
6077
|
+
* "plan": null
|
|
6078
|
+
* },
|
|
6079
|
+
* "created_by": {
|
|
6080
|
+
* "uid": "b4afc948-66b3-415c-8287-b5f1a0728e22",
|
|
6081
|
+
* "name": "System Admin",
|
|
6082
|
+
* "phone": null,
|
|
6083
|
+
* "email": "admin@example.com",
|
|
6084
|
+
* "avatar": null,
|
|
6085
|
+
* "plan": null
|
|
6086
|
+
* },
|
|
6087
|
+
* "state": "published",
|
|
6088
|
+
* "published_at": "2026-04-25T10:00:00Z",
|
|
6089
|
+
* "published_since": "2 days ago",
|
|
6090
|
+
* "is_visible": true,
|
|
6091
|
+
* "summary": {
|
|
6092
|
+
* "property_type": "residential",
|
|
6093
|
+
* "bedrooms": 2,
|
|
6094
|
+
* "bathrooms": 1,
|
|
6095
|
+
* "size": "85 sqm",
|
|
6096
|
+
* "availability": "available"
|
|
6097
|
+
* },
|
|
6098
|
+
* "workflow": {
|
|
6099
|
+
* "current_step": "media",
|
|
6100
|
+
* "can_submit": true,
|
|
6101
|
+
* "missing_requirements": [],
|
|
6102
|
+
* "next_step": "publish",
|
|
6103
|
+
* "progress": {
|
|
6104
|
+
* "completed": 8,
|
|
6105
|
+
* "total": 8,
|
|
6106
|
+
* "percentage": 100
|
|
6107
|
+
* }
|
|
6108
|
+
* },
|
|
6109
|
+
* "media": {
|
|
6110
|
+
* "gallery": [
|
|
6111
|
+
* {
|
|
6112
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
6113
|
+
* "media_type": "image/jpeg",
|
|
6114
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
6115
|
+
* "order_index": 0,
|
|
6116
|
+
* "is_cover": true
|
|
6117
|
+
* }
|
|
6118
|
+
* ],
|
|
6119
|
+
* "cover": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
6120
|
+
* "count": 1
|
|
6121
|
+
* }
|
|
6122
|
+
* },
|
|
6123
|
+
* "status": "pending",
|
|
6124
|
+
* "scheduled": {
|
|
6125
|
+
* "start": "2026-05-01T09:00:00Z",
|
|
6126
|
+
* "end": "2026-05-01T10:00:00Z"
|
|
6127
|
+
* },
|
|
6128
|
+
* "customer": {
|
|
6129
|
+
* "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
|
|
6130
|
+
* "name": "Dominic Thomas"
|
|
6131
|
+
* },
|
|
6132
|
+
* "landlord": {
|
|
6133
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
6134
|
+
* "name": "Alice Taylor"
|
|
6135
|
+
* },
|
|
6136
|
+
* "created_at": "2026-04-30T00:00:00Z"
|
|
6137
|
+
* }
|
|
6138
|
+
* ]
|
|
6139
|
+
*/
|
|
6140
|
+
items?: {
|
|
6141
|
+
/** @example 12 */
|
|
6142
|
+
id?: number;
|
|
6143
|
+
/** @example 32 */
|
|
6144
|
+
listing_id?: number;
|
|
6145
|
+
listing?: {
|
|
6146
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
6147
|
+
uid?: string;
|
|
6148
|
+
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
6149
|
+
sku?: string;
|
|
6150
|
+
details?: {
|
|
6151
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
6152
|
+
address?: string;
|
|
6153
|
+
/** @example 24 Windsor Court */
|
|
6154
|
+
title?: string;
|
|
6155
|
+
/** @example Rent */
|
|
6156
|
+
type?: string;
|
|
6157
|
+
};
|
|
6158
|
+
owner?: {
|
|
6159
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
6160
|
+
uid?: string;
|
|
6161
|
+
/** @example Alice Taylor */
|
|
6162
|
+
name?: string;
|
|
6163
|
+
/** @example +2348012345678 */
|
|
6164
|
+
phone?: string;
|
|
6165
|
+
/** @example alice@example.com */
|
|
6166
|
+
email?: string;
|
|
6167
|
+
/** @example null */
|
|
6168
|
+
avatar?: string | null;
|
|
6169
|
+
/** @example null */
|
|
6170
|
+
plan?: string | null;
|
|
6171
|
+
};
|
|
6172
|
+
created_by?: {
|
|
6173
|
+
/** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
|
|
6174
|
+
uid?: string;
|
|
6175
|
+
/** @example System Admin */
|
|
6176
|
+
name?: string;
|
|
6177
|
+
/** @example null */
|
|
6178
|
+
phone?: string | null;
|
|
6179
|
+
/** @example admin@example.com */
|
|
6180
|
+
email?: string;
|
|
6181
|
+
/** @example null */
|
|
6182
|
+
avatar?: string | null;
|
|
6183
|
+
/** @example null */
|
|
6184
|
+
plan?: string | null;
|
|
6185
|
+
};
|
|
6186
|
+
/** @example published */
|
|
6187
|
+
state?: string;
|
|
6188
|
+
/** @example 2026-04-25T10:00:00Z */
|
|
6189
|
+
published_at?: string;
|
|
6190
|
+
/** @example 2 days ago */
|
|
6191
|
+
published_since?: string;
|
|
6192
|
+
/** @example true */
|
|
6193
|
+
is_visible?: boolean;
|
|
6194
|
+
summary?: {
|
|
6195
|
+
/** @example residential */
|
|
6196
|
+
property_type?: string;
|
|
6197
|
+
/** @example 2 */
|
|
6198
|
+
bedrooms?: number;
|
|
6199
|
+
/** @example 1 */
|
|
6200
|
+
bathrooms?: number;
|
|
6201
|
+
/** @example 85 sqm */
|
|
6202
|
+
size?: string;
|
|
6203
|
+
/** @example available */
|
|
6204
|
+
availability?: string;
|
|
6205
|
+
};
|
|
6206
|
+
workflow?: {
|
|
6207
|
+
/** @example media */
|
|
6208
|
+
current_step?: string;
|
|
6209
|
+
/** @example true */
|
|
6210
|
+
can_submit?: boolean;
|
|
6211
|
+
/** @example [] */
|
|
6212
|
+
missing_requirements?: unknown[];
|
|
6213
|
+
/** @example publish */
|
|
6214
|
+
next_step?: string;
|
|
6215
|
+
progress?: {
|
|
6216
|
+
/** @example 8 */
|
|
6217
|
+
completed?: number;
|
|
6218
|
+
/** @example 8 */
|
|
6219
|
+
total?: number;
|
|
6220
|
+
/** @example 100 */
|
|
6221
|
+
percentage?: number;
|
|
6222
|
+
};
|
|
6223
|
+
};
|
|
6224
|
+
media?: {
|
|
6225
|
+
/**
|
|
6226
|
+
* @example [
|
|
6227
|
+
* {
|
|
6228
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
6229
|
+
* "media_type": "image/jpeg",
|
|
6230
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
6231
|
+
* "order_index": 0,
|
|
6232
|
+
* "is_cover": true
|
|
6233
|
+
* }
|
|
6234
|
+
* ]
|
|
6235
|
+
*/
|
|
6236
|
+
gallery?: {
|
|
6237
|
+
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
6238
|
+
uid?: string;
|
|
6239
|
+
/** @example image/jpeg */
|
|
6240
|
+
media_type?: string;
|
|
6241
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
6242
|
+
storage_path?: string;
|
|
6243
|
+
/** @example 0 */
|
|
6244
|
+
order_index?: number;
|
|
6245
|
+
/** @example true */
|
|
6246
|
+
is_cover?: boolean;
|
|
6247
|
+
}[];
|
|
6248
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
6249
|
+
cover?: string;
|
|
6250
|
+
/** @example 1 */
|
|
6251
|
+
count?: number;
|
|
6252
|
+
};
|
|
6253
|
+
};
|
|
6254
|
+
/** @example pending */
|
|
6255
|
+
status?: string;
|
|
6256
|
+
scheduled?: {
|
|
6257
|
+
/** @example 2026-05-01T09:00:00Z */
|
|
6258
|
+
start?: string;
|
|
6259
|
+
/** @example 2026-05-01T10:00:00Z */
|
|
6260
|
+
end?: string;
|
|
6261
|
+
};
|
|
6262
|
+
customer?: {
|
|
6263
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
6264
|
+
uid?: string;
|
|
6265
|
+
/** @example Dominic Thomas */
|
|
6266
|
+
name?: string;
|
|
6267
|
+
};
|
|
6268
|
+
landlord?: {
|
|
6269
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
6270
|
+
uid?: string;
|
|
6271
|
+
/** @example Alice Taylor */
|
|
6272
|
+
name?: string;
|
|
6273
|
+
};
|
|
6274
|
+
/** @example 2026-04-30T00:00:00Z */
|
|
6275
|
+
created_at?: string;
|
|
6276
|
+
}[];
|
|
6277
|
+
pagination?: {
|
|
6278
|
+
/** @example 1 */
|
|
6279
|
+
current_page?: number;
|
|
6280
|
+
/** @example 15 */
|
|
6281
|
+
per_page?: number;
|
|
6282
|
+
/** @example 1 */
|
|
6283
|
+
total?: number;
|
|
6284
|
+
/** @example 1 */
|
|
6285
|
+
last_page?: number;
|
|
6286
|
+
/** @example 1 */
|
|
6287
|
+
from?: number;
|
|
6288
|
+
/** @example 1 */
|
|
6289
|
+
to?: number;
|
|
6290
|
+
};
|
|
6291
|
+
};
|
|
6292
|
+
};
|
|
6293
|
+
};
|
|
6294
|
+
};
|
|
6295
|
+
};
|
|
6296
|
+
};
|
|
5804
6297
|
dashboardStatsAdmin: {
|
|
5805
6298
|
parameters: {
|
|
5806
6299
|
query?: never;
|
|
@@ -6239,7 +6732,7 @@ export interface operations {
|
|
|
6239
6732
|
content: {
|
|
6240
6733
|
"application/json": {
|
|
6241
6734
|
data?: {
|
|
6242
|
-
/** @example
|
|
6735
|
+
/** @example 5bee7718-4c75-4f03-a327-e7c5280a3dd5 */
|
|
6243
6736
|
uid?: string;
|
|
6244
6737
|
/** @example Ms. Audra Crooks II */
|
|
6245
6738
|
username?: string;
|
|
@@ -6269,7 +6762,7 @@ export interface operations {
|
|
|
6269
6762
|
timezone?: string;
|
|
6270
6763
|
/** @example Customer */
|
|
6271
6764
|
user_type?: string;
|
|
6272
|
-
/** @example
|
|
6765
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
6273
6766
|
created?: string;
|
|
6274
6767
|
/** @example 0 seconds ago */
|
|
6275
6768
|
email_verified_at?: string;
|
|
@@ -6659,11 +7152,11 @@ export interface operations {
|
|
|
6659
7152
|
content: {
|
|
6660
7153
|
"application/json": {
|
|
6661
7154
|
data?: {
|
|
6662
|
-
/** @example New For Rent Property draft •
|
|
7155
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
6663
7156
|
draft_name?: string;
|
|
6664
|
-
/** @example LST-PRP-LTR-
|
|
7157
|
+
/** @example LST-PRP-LTR-MOL2MRJWDDK */
|
|
6665
7158
|
sku?: string;
|
|
6666
|
-
/** @example
|
|
7159
|
+
/** @example d176378b-d8f2-444e-b2ea-60b8fdfd820d */
|
|
6667
7160
|
uid?: string;
|
|
6668
7161
|
/** @example Rent */
|
|
6669
7162
|
listing_type?: string;
|
|
@@ -8075,7 +8568,7 @@ export interface operations {
|
|
|
8075
8568
|
content: {
|
|
8076
8569
|
"application/json": {
|
|
8077
8570
|
/**
|
|
8078
|
-
* @example
|
|
8571
|
+
* @example Unverified
|
|
8079
8572
|
* @enum {string}
|
|
8080
8573
|
*/
|
|
8081
8574
|
status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
|
|
@@ -8090,7 +8583,7 @@ export interface operations {
|
|
|
8090
8583
|
content: {
|
|
8091
8584
|
"application/json": {
|
|
8092
8585
|
data?: {
|
|
8093
|
-
/** @example
|
|
8586
|
+
/** @example 652f94ea-4542-42f4-b811-9edb2be05d89 */
|
|
8094
8587
|
uid?: string;
|
|
8095
8588
|
/** @example Morgan Hirthe */
|
|
8096
8589
|
username?: string;
|
|
@@ -8120,7 +8613,7 @@ export interface operations {
|
|
|
8120
8613
|
timezone?: string;
|
|
8121
8614
|
/** @example Customer */
|
|
8122
8615
|
user_type?: string;
|
|
8123
|
-
/** @example
|
|
8616
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
8124
8617
|
created?: string;
|
|
8125
8618
|
/** @example 0 seconds ago */
|
|
8126
8619
|
email_verified_at?: string;
|
|
@@ -8829,11 +9322,11 @@ export interface operations {
|
|
|
8829
9322
|
content: {
|
|
8830
9323
|
"application/json": {
|
|
8831
9324
|
data?: {
|
|
8832
|
-
/** @example New For Rent Property draft •
|
|
9325
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
8833
9326
|
draft_name?: string;
|
|
8834
|
-
/** @example LST-PRP-LTR-
|
|
9327
|
+
/** @example LST-PRP-LTR-MOL2MRMVNTS */
|
|
8835
9328
|
sku?: string;
|
|
8836
|
-
/** @example
|
|
9329
|
+
/** @example 9354b62c-4fd2-4e16-8a11-a9199629074c */
|
|
8837
9330
|
uid?: string;
|
|
8838
9331
|
/** @example Rent */
|
|
8839
9332
|
listing_type?: string;
|
|
@@ -9273,7 +9766,7 @@ export interface operations {
|
|
|
9273
9766
|
content: {
|
|
9274
9767
|
"application/json": {
|
|
9275
9768
|
data?: {
|
|
9276
|
-
/** @example
|
|
9769
|
+
/** @example 2d59546e-3db0-4170-aa80-2830b3f05d9d */
|
|
9277
9770
|
uid?: string;
|
|
9278
9771
|
/** @example photo */
|
|
9279
9772
|
media_type?: string;
|
|
@@ -9580,9 +10073,9 @@ export interface operations {
|
|
|
9580
10073
|
/**
|
|
9581
10074
|
* @example [
|
|
9582
10075
|
* {
|
|
9583
|
-
* "draft_name": "New For Sale Used Item draft •
|
|
9584
|
-
* "sku": "LST-UIT-SAL-
|
|
9585
|
-
* "uid": "
|
|
10076
|
+
* "draft_name": "New For Sale Used Item draft • 30 Apr 2026, 5:56 AM",
|
|
10077
|
+
* "sku": "LST-UIT-SAL-MOL2MROQKBY",
|
|
10078
|
+
* "uid": "88ec73ec-141e-4897-bb4b-20903d2764d7",
|
|
9586
10079
|
* "listing_type": "Sale",
|
|
9587
10080
|
* "vertical": "Used Item",
|
|
9588
10081
|
* "arrangement_type": null,
|
|
@@ -9597,30 +10090,32 @@ export interface operations {
|
|
|
9597
10090
|
* "media": []
|
|
9598
10091
|
* },
|
|
9599
10092
|
* {
|
|
9600
|
-
* "draft_name": "New
|
|
9601
|
-
* "sku": "LST-
|
|
9602
|
-
* "uid": "
|
|
9603
|
-
* "listing_type": "
|
|
9604
|
-
* "vertical": "
|
|
9605
|
-
* "arrangement_type":
|
|
9606
|
-
* "arrangement_type_label":
|
|
10093
|
+
* "draft_name": "New Short Let Property draft • 30 Apr 2026, 5:56 AM",
|
|
10094
|
+
* "sku": "LST-PRP-SHL-MOL2MROTVNV",
|
|
10095
|
+
* "uid": "045be89c-d495-4f3b-baef-c65d72d7d563",
|
|
10096
|
+
* "listing_type": "Short Let",
|
|
10097
|
+
* "vertical": "Property",
|
|
10098
|
+
* "arrangement_type": "short_term_managed",
|
|
10099
|
+
* "arrangement_type_label": "Short Term Managed",
|
|
9607
10100
|
* "price": null,
|
|
9608
10101
|
* "state": "draft",
|
|
9609
10102
|
* "published_at": null,
|
|
9610
10103
|
* "published_since": null,
|
|
9611
10104
|
* "is_visible": false,
|
|
9612
|
-
* "summary":
|
|
10105
|
+
* "summary": {
|
|
10106
|
+
* "availability": null
|
|
10107
|
+
* },
|
|
9613
10108
|
* "workflow": [],
|
|
9614
10109
|
* "media": []
|
|
9615
10110
|
* }
|
|
9616
10111
|
* ]
|
|
9617
10112
|
*/
|
|
9618
10113
|
data?: {
|
|
9619
|
-
/** @example New For Sale Used Item draft •
|
|
10114
|
+
/** @example New For Sale Used Item draft • 30 Apr 2026, 5:56 AM */
|
|
9620
10115
|
draft_name?: string;
|
|
9621
|
-
/** @example LST-UIT-SAL-
|
|
10116
|
+
/** @example LST-UIT-SAL-MOL2MROQKBY */
|
|
9622
10117
|
sku?: string;
|
|
9623
|
-
/** @example
|
|
10118
|
+
/** @example 88ec73ec-141e-4897-bb4b-20903d2764d7 */
|
|
9624
10119
|
uid?: string;
|
|
9625
10120
|
/** @example Sale */
|
|
9626
10121
|
listing_type?: string;
|
|
@@ -9813,11 +10308,11 @@ export interface operations {
|
|
|
9813
10308
|
content: {
|
|
9814
10309
|
"application/json": {
|
|
9815
10310
|
data?: {
|
|
9816
|
-
/** @example New For Rent Property draft •
|
|
10311
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
9817
10312
|
draft_name?: string;
|
|
9818
|
-
/** @example LST-PRP-LTR-
|
|
10313
|
+
/** @example LST-PRP-LTR-MOL2MRP2WDF */
|
|
9819
10314
|
sku?: string;
|
|
9820
|
-
/** @example
|
|
10315
|
+
/** @example 9ac90be2-b88b-477e-8968-9fa87b410ea7 */
|
|
9821
10316
|
uid?: string;
|
|
9822
10317
|
/** @example Rent */
|
|
9823
10318
|
listing_type?: string;
|
|
@@ -9880,11 +10375,11 @@ export interface operations {
|
|
|
9880
10375
|
content: {
|
|
9881
10376
|
"application/json": {
|
|
9882
10377
|
data?: {
|
|
9883
|
-
/** @example New For Rent Property draft •
|
|
10378
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
9884
10379
|
draft_name?: string;
|
|
9885
|
-
/** @example LST-PRP-LTR-
|
|
10380
|
+
/** @example LST-PRP-LTR-MOL2MRP9LK5 */
|
|
9886
10381
|
sku?: string;
|
|
9887
|
-
/** @example
|
|
10382
|
+
/** @example 879cd880-b6bf-46ff-8a53-427bcd2149f7 */
|
|
9888
10383
|
uid?: string;
|
|
9889
10384
|
/** @example Rent */
|
|
9890
10385
|
listing_type?: string;
|
|
@@ -9937,11 +10432,11 @@ export interface operations {
|
|
|
9937
10432
|
content: {
|
|
9938
10433
|
"application/json": {
|
|
9939
10434
|
data?: {
|
|
9940
|
-
/** @example New For Rent Property draft •
|
|
10435
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
9941
10436
|
draft_name?: string;
|
|
9942
|
-
/** @example LST-PRP-LTR-
|
|
10437
|
+
/** @example LST-PRP-LTR-MOL2MRPFDA2 */
|
|
9943
10438
|
sku?: string;
|
|
9944
|
-
/** @example
|
|
10439
|
+
/** @example 7911107a-332a-4ad1-84be-5742b315e40d */
|
|
9945
10440
|
uid?: string;
|
|
9946
10441
|
/** @example Rent */
|
|
9947
10442
|
listing_type?: string;
|
|
@@ -9994,11 +10489,11 @@ export interface operations {
|
|
|
9994
10489
|
content: {
|
|
9995
10490
|
"application/json": {
|
|
9996
10491
|
data?: {
|
|
9997
|
-
/** @example New For Rent Property draft •
|
|
10492
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
9998
10493
|
draft_name?: string;
|
|
9999
|
-
/** @example LST-PRP-LTR-
|
|
10494
|
+
/** @example LST-PRP-LTR-MOL2MRPMOHV */
|
|
10000
10495
|
sku?: string;
|
|
10001
|
-
/** @example
|
|
10496
|
+
/** @example d65b6578-8d4c-4bf3-af43-4068fd2b1068 */
|
|
10002
10497
|
uid?: string;
|
|
10003
10498
|
/** @example Rent */
|
|
10004
10499
|
listing_type?: string;
|
|
@@ -10192,7 +10687,7 @@ export interface operations {
|
|
|
10192
10687
|
content: {
|
|
10193
10688
|
"application/json": {
|
|
10194
10689
|
data?: {
|
|
10195
|
-
/** @example
|
|
10690
|
+
/** @example 253 */
|
|
10196
10691
|
id?: number;
|
|
10197
10692
|
/** @example 1 */
|
|
10198
10693
|
category_id?: number;
|
|
@@ -10266,7 +10761,7 @@ export interface operations {
|
|
|
10266
10761
|
content: {
|
|
10267
10762
|
"application/json": {
|
|
10268
10763
|
data?: {
|
|
10269
|
-
/** @example
|
|
10764
|
+
/** @example 254 */
|
|
10270
10765
|
id?: number;
|
|
10271
10766
|
/** @example 1 */
|
|
10272
10767
|
category_id?: number;
|
|
@@ -10305,7 +10800,7 @@ export interface operations {
|
|
|
10305
10800
|
content: {
|
|
10306
10801
|
"application/json": {
|
|
10307
10802
|
data?: {
|
|
10308
|
-
/** @example
|
|
10803
|
+
/** @example 255 */
|
|
10309
10804
|
id?: number;
|
|
10310
10805
|
/** @example 1 */
|
|
10311
10806
|
category_id?: number;
|
|
@@ -10343,7 +10838,7 @@ export interface operations {
|
|
|
10343
10838
|
/**
|
|
10344
10839
|
* @example [
|
|
10345
10840
|
* {
|
|
10346
|
-
* "id":
|
|
10841
|
+
* "id": 365,
|
|
10347
10842
|
* "name": "Exterior",
|
|
10348
10843
|
* "description": "For Exterior categories",
|
|
10349
10844
|
* "display_order": 1,
|
|
@@ -10353,7 +10848,7 @@ export interface operations {
|
|
|
10353
10848
|
* "is_active": true
|
|
10354
10849
|
* },
|
|
10355
10850
|
* {
|
|
10356
|
-
* "id":
|
|
10851
|
+
* "id": 366,
|
|
10357
10852
|
* "name": "Exterior",
|
|
10358
10853
|
* "description": "For Exterior categories",
|
|
10359
10854
|
* "display_order": 1,
|
|
@@ -10365,7 +10860,7 @@ export interface operations {
|
|
|
10365
10860
|
* ]
|
|
10366
10861
|
*/
|
|
10367
10862
|
data?: {
|
|
10368
|
-
/** @example
|
|
10863
|
+
/** @example 365 */
|
|
10369
10864
|
id?: number;
|
|
10370
10865
|
/** @example Exterior */
|
|
10371
10866
|
name?: string;
|
|
@@ -10429,7 +10924,7 @@ export interface operations {
|
|
|
10429
10924
|
content: {
|
|
10430
10925
|
"application/json": {
|
|
10431
10926
|
data?: {
|
|
10432
|
-
/** @example
|
|
10927
|
+
/** @example 367 */
|
|
10433
10928
|
id?: number;
|
|
10434
10929
|
/** @example Exterior */
|
|
10435
10930
|
name?: string;
|
|
@@ -10496,7 +10991,7 @@ export interface operations {
|
|
|
10496
10991
|
content: {
|
|
10497
10992
|
"application/json": {
|
|
10498
10993
|
data?: {
|
|
10499
|
-
/** @example
|
|
10994
|
+
/** @example 368 */
|
|
10500
10995
|
id?: number;
|
|
10501
10996
|
/** @example Exterior */
|
|
10502
10997
|
name?: string;
|
|
@@ -10537,7 +11032,7 @@ export interface operations {
|
|
|
10537
11032
|
content: {
|
|
10538
11033
|
"application/json": {
|
|
10539
11034
|
data?: {
|
|
10540
|
-
/** @example
|
|
11035
|
+
/** @example 369 */
|
|
10541
11036
|
id?: number;
|
|
10542
11037
|
/** @example Exterior */
|
|
10543
11038
|
name?: string;
|
|
@@ -10800,7 +11295,7 @@ export interface operations {
|
|
|
10800
11295
|
content: {
|
|
10801
11296
|
"application/json": {
|
|
10802
11297
|
data?: {
|
|
10803
|
-
/** @example
|
|
11298
|
+
/** @example 157 */
|
|
10804
11299
|
id?: number;
|
|
10805
11300
|
/** @example email_fa_0 */
|
|
10806
11301
|
key?: string;
|
|
@@ -10814,9 +11309,9 @@ export interface operations {
|
|
|
10814
11309
|
metadata_schema?: unknown[];
|
|
10815
11310
|
/** @example true */
|
|
10816
11311
|
is_active?: boolean;
|
|
10817
|
-
/** @example 2026-04-
|
|
11312
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
10818
11313
|
created_at?: string;
|
|
10819
|
-
/** @example 2026-04-
|
|
11314
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
10820
11315
|
updated_at?: string;
|
|
10821
11316
|
};
|
|
10822
11317
|
};
|
|
@@ -10876,7 +11371,7 @@ export interface operations {
|
|
|
10876
11371
|
content: {
|
|
10877
11372
|
"application/json": {
|
|
10878
11373
|
data?: {
|
|
10879
|
-
/** @example
|
|
11374
|
+
/** @example 158 */
|
|
10880
11375
|
id?: number;
|
|
10881
11376
|
/** @example email_fa_0 */
|
|
10882
11377
|
key?: string;
|
|
@@ -10890,9 +11385,9 @@ export interface operations {
|
|
|
10890
11385
|
metadata_schema?: unknown[];
|
|
10891
11386
|
/** @example true */
|
|
10892
11387
|
is_active?: boolean;
|
|
10893
|
-
/** @example 2026-04-
|
|
11388
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
10894
11389
|
created_at?: string;
|
|
10895
|
-
/** @example 2026-04-
|
|
11390
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
10896
11391
|
updated_at?: string;
|
|
10897
11392
|
};
|
|
10898
11393
|
};
|
|
@@ -12158,25 +12653,25 @@ export interface operations {
|
|
|
12158
12653
|
/**
|
|
12159
12654
|
* @example [
|
|
12160
12655
|
* {
|
|
12161
|
-
* "key": "
|
|
12162
|
-
* "name": "
|
|
12163
|
-
* "description": "
|
|
12656
|
+
* "key": "dolorem",
|
|
12657
|
+
* "name": "unde",
|
|
12658
|
+
* "description": "Voluptates culpa iure magnam iusto vero inventore debitis culpa.",
|
|
12164
12659
|
* "value_type": "string"
|
|
12165
12660
|
* },
|
|
12166
12661
|
* {
|
|
12167
|
-
* "key": "
|
|
12168
|
-
* "name": "
|
|
12169
|
-
* "description": "
|
|
12662
|
+
* "key": "consequatur",
|
|
12663
|
+
* "name": "harum",
|
|
12664
|
+
* "description": "Natus qui nobis iste consequatur autem libero.",
|
|
12170
12665
|
* "value_type": "string"
|
|
12171
12666
|
* }
|
|
12172
12667
|
* ]
|
|
12173
12668
|
*/
|
|
12174
12669
|
data?: {
|
|
12175
|
-
/** @example
|
|
12670
|
+
/** @example dolorem */
|
|
12176
12671
|
key?: string;
|
|
12177
|
-
/** @example
|
|
12672
|
+
/** @example unde */
|
|
12178
12673
|
name?: string;
|
|
12179
|
-
/** @example
|
|
12674
|
+
/** @example Voluptates culpa iure magnam iusto vero inventore debitis culpa. */
|
|
12180
12675
|
description?: string;
|
|
12181
12676
|
/** @example string */
|
|
12182
12677
|
value_type?: string;
|
|
@@ -13418,13 +13913,13 @@ export interface operations {
|
|
|
13418
13913
|
};
|
|
13419
13914
|
} | {
|
|
13420
13915
|
data?: {
|
|
13421
|
-
/** @example
|
|
13916
|
+
/** @example 4ea8e511-7b46-44a1-965f-0028f78c9591 */
|
|
13422
13917
|
uid?: string;
|
|
13423
13918
|
/** @example follow_up */
|
|
13424
13919
|
inspection_type?: string;
|
|
13425
13920
|
/** @example cancelled */
|
|
13426
13921
|
status?: string;
|
|
13427
|
-
/** @example 05 May 2026,
|
|
13922
|
+
/** @example 05 May 2026, 07:54 PM */
|
|
13428
13923
|
scheduled_date?: string;
|
|
13429
13924
|
/** @example null */
|
|
13430
13925
|
completed_date?: string | null;
|
|
@@ -13432,11 +13927,11 @@ export interface operations {
|
|
|
13432
13927
|
condition_rating?: string;
|
|
13433
13928
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13434
13929
|
summary?: string;
|
|
13435
|
-
/** @example 28 Jun 2026,
|
|
13930
|
+
/** @example 28 Jun 2026, 04:43 PM */
|
|
13436
13931
|
next_inspection_date?: string;
|
|
13437
|
-
/** @example
|
|
13932
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13438
13933
|
created_at?: string;
|
|
13439
|
-
/** @example
|
|
13934
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13440
13935
|
updated_at?: string;
|
|
13441
13936
|
};
|
|
13442
13937
|
};
|
|
@@ -13491,13 +13986,13 @@ export interface operations {
|
|
|
13491
13986
|
content: {
|
|
13492
13987
|
"application/json": {
|
|
13493
13988
|
data?: {
|
|
13494
|
-
/** @example
|
|
13989
|
+
/** @example 5c16f094-8abc-4d43-8006-117135993a19 */
|
|
13495
13990
|
uid?: string;
|
|
13496
13991
|
/** @example follow_up */
|
|
13497
13992
|
inspection_type?: string;
|
|
13498
13993
|
/** @example cancelled */
|
|
13499
13994
|
status?: string;
|
|
13500
|
-
/** @example 05 May 2026,
|
|
13995
|
+
/** @example 05 May 2026, 07:54 PM */
|
|
13501
13996
|
scheduled_date?: string;
|
|
13502
13997
|
/** @example null */
|
|
13503
13998
|
completed_date?: string | null;
|
|
@@ -13505,11 +14000,11 @@ export interface operations {
|
|
|
13505
14000
|
condition_rating?: string;
|
|
13506
14001
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13507
14002
|
summary?: string;
|
|
13508
|
-
/** @example 28 Jun 2026,
|
|
14003
|
+
/** @example 28 Jun 2026, 04:43 PM */
|
|
13509
14004
|
next_inspection_date?: string;
|
|
13510
|
-
/** @example
|
|
14005
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13511
14006
|
created_at?: string;
|
|
13512
|
-
/** @example
|
|
14007
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13513
14008
|
updated_at?: string;
|
|
13514
14009
|
};
|
|
13515
14010
|
};
|
|
@@ -13604,13 +14099,13 @@ export interface operations {
|
|
|
13604
14099
|
content: {
|
|
13605
14100
|
"application/json": {
|
|
13606
14101
|
data?: {
|
|
13607
|
-
/** @example
|
|
14102
|
+
/** @example 8d51eea5-972a-4c01-af80-b5a4d409efd7 */
|
|
13608
14103
|
uid?: string;
|
|
13609
14104
|
/** @example follow_up */
|
|
13610
14105
|
inspection_type?: string;
|
|
13611
14106
|
/** @example cancelled */
|
|
13612
14107
|
status?: string;
|
|
13613
|
-
/** @example 23 Apr 2026,
|
|
14108
|
+
/** @example 23 Apr 2026, 05:21 PM */
|
|
13614
14109
|
scheduled_date?: string;
|
|
13615
14110
|
/** @example null */
|
|
13616
14111
|
completed_date?: string | null;
|
|
@@ -13618,11 +14113,11 @@ export interface operations {
|
|
|
13618
14113
|
condition_rating?: string;
|
|
13619
14114
|
/** @example Et animi quos velit et fugiat. */
|
|
13620
14115
|
summary?: string;
|
|
13621
|
-
/** @example
|
|
14116
|
+
/** @example 02 Aug 2026, 01:15 AM */
|
|
13622
14117
|
next_inspection_date?: string;
|
|
13623
|
-
/** @example
|
|
14118
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13624
14119
|
created_at?: string;
|
|
13625
|
-
/** @example
|
|
14120
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13626
14121
|
updated_at?: string;
|
|
13627
14122
|
};
|
|
13628
14123
|
};
|
|
@@ -13659,13 +14154,13 @@ export interface operations {
|
|
|
13659
14154
|
content: {
|
|
13660
14155
|
"application/json": {
|
|
13661
14156
|
data?: {
|
|
13662
|
-
/** @example
|
|
14157
|
+
/** @example 29dad24f-86a9-4d41-9c4f-096afe53f741 */
|
|
13663
14158
|
uid?: string;
|
|
13664
14159
|
/** @example follow_up */
|
|
13665
14160
|
inspection_type?: string;
|
|
13666
14161
|
/** @example cancelled */
|
|
13667
14162
|
status?: string;
|
|
13668
|
-
/** @example 05 May 2026,
|
|
14163
|
+
/** @example 05 May 2026, 07:54 PM */
|
|
13669
14164
|
scheduled_date?: string;
|
|
13670
14165
|
/** @example null */
|
|
13671
14166
|
completed_date?: string | null;
|
|
@@ -13673,11 +14168,11 @@ export interface operations {
|
|
|
13673
14168
|
condition_rating?: string;
|
|
13674
14169
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13675
14170
|
summary?: string;
|
|
13676
|
-
/** @example 28 Jun 2026,
|
|
14171
|
+
/** @example 28 Jun 2026, 04:43 PM */
|
|
13677
14172
|
next_inspection_date?: string;
|
|
13678
|
-
/** @example
|
|
14173
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13679
14174
|
created_at?: string;
|
|
13680
|
-
/** @example
|
|
14175
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13681
14176
|
updated_at?: string;
|
|
13682
14177
|
};
|
|
13683
14178
|
};
|
|
@@ -13714,13 +14209,13 @@ export interface operations {
|
|
|
13714
14209
|
content: {
|
|
13715
14210
|
"application/json": {
|
|
13716
14211
|
data?: {
|
|
13717
|
-
/** @example
|
|
14212
|
+
/** @example 4ff41588-9124-4fe2-8205-1668d846396e */
|
|
13718
14213
|
uid?: string;
|
|
13719
14214
|
/** @example follow_up */
|
|
13720
14215
|
inspection_type?: string;
|
|
13721
14216
|
/** @example cancelled */
|
|
13722
14217
|
status?: string;
|
|
13723
|
-
/** @example 23 Apr 2026,
|
|
14218
|
+
/** @example 23 Apr 2026, 05:21 PM */
|
|
13724
14219
|
scheduled_date?: string;
|
|
13725
14220
|
/** @example null */
|
|
13726
14221
|
completed_date?: string | null;
|
|
@@ -13728,11 +14223,11 @@ export interface operations {
|
|
|
13728
14223
|
condition_rating?: string;
|
|
13729
14224
|
/** @example Et animi quos velit et fugiat. */
|
|
13730
14225
|
summary?: string;
|
|
13731
|
-
/** @example
|
|
14226
|
+
/** @example 02 Aug 2026, 01:15 AM */
|
|
13732
14227
|
next_inspection_date?: string;
|
|
13733
|
-
/** @example
|
|
14228
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13734
14229
|
created_at?: string;
|
|
13735
|
-
/** @example
|
|
14230
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13736
14231
|
updated_at?: string;
|
|
13737
14232
|
};
|
|
13738
14233
|
};
|
|
@@ -13859,7 +14354,7 @@ export interface operations {
|
|
|
13859
14354
|
};
|
|
13860
14355
|
} | {
|
|
13861
14356
|
data?: {
|
|
13862
|
-
/** @example
|
|
14357
|
+
/** @example 948692e5-fe68-42a9-ac98-d00f797d0ec5 */
|
|
13863
14358
|
uid?: string;
|
|
13864
14359
|
/** @example 1 */
|
|
13865
14360
|
tenancy_id?: number;
|
|
@@ -13871,17 +14366,17 @@ export interface operations {
|
|
|
13871
14366
|
status?: string;
|
|
13872
14367
|
/** @example low */
|
|
13873
14368
|
priority?: string;
|
|
13874
|
-
/** @example 28 Apr 2026,
|
|
14369
|
+
/** @example 28 Apr 2026, 07:25 PM */
|
|
13875
14370
|
reported_at?: string;
|
|
13876
14371
|
/** @example null */
|
|
13877
14372
|
assigned_at?: string | null;
|
|
13878
14373
|
/** @example null */
|
|
13879
14374
|
completed_at?: string | null;
|
|
13880
|
-
/** @example 01 May 2026,
|
|
14375
|
+
/** @example 01 May 2026, 03:49 PM */
|
|
13881
14376
|
sla_deadline?: string;
|
|
13882
|
-
/** @example
|
|
14377
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13883
14378
|
created_at?: string;
|
|
13884
|
-
/** @example
|
|
14379
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13885
14380
|
updated_at?: string;
|
|
13886
14381
|
};
|
|
13887
14382
|
};
|
|
@@ -13918,7 +14413,7 @@ export interface operations {
|
|
|
13918
14413
|
content: {
|
|
13919
14414
|
"application/json": {
|
|
13920
14415
|
data?: {
|
|
13921
|
-
/** @example
|
|
14416
|
+
/** @example 66f332f7-1791-43ea-bc6f-0640e28e6e91 */
|
|
13922
14417
|
uid?: string;
|
|
13923
14418
|
/** @example 1 */
|
|
13924
14419
|
tenancy_id?: number;
|
|
@@ -13930,17 +14425,17 @@ export interface operations {
|
|
|
13930
14425
|
status?: string;
|
|
13931
14426
|
/** @example low */
|
|
13932
14427
|
priority?: string;
|
|
13933
|
-
/** @example 28 Apr 2026,
|
|
14428
|
+
/** @example 28 Apr 2026, 07:25 PM */
|
|
13934
14429
|
reported_at?: string;
|
|
13935
14430
|
/** @example null */
|
|
13936
14431
|
assigned_at?: string | null;
|
|
13937
14432
|
/** @example null */
|
|
13938
14433
|
completed_at?: string | null;
|
|
13939
|
-
/** @example 01 May 2026,
|
|
14434
|
+
/** @example 01 May 2026, 03:49 PM */
|
|
13940
14435
|
sla_deadline?: string;
|
|
13941
|
-
/** @example
|
|
14436
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13942
14437
|
created_at?: string;
|
|
13943
|
-
/** @example
|
|
14438
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
13944
14439
|
updated_at?: string;
|
|
13945
14440
|
};
|
|
13946
14441
|
};
|
|
@@ -13977,7 +14472,7 @@ export interface operations {
|
|
|
13977
14472
|
content: {
|
|
13978
14473
|
"application/json": {
|
|
13979
14474
|
data?: {
|
|
13980
|
-
/** @example
|
|
14475
|
+
/** @example 17e45f6f-24ba-4772-82b2-9821ec57208c */
|
|
13981
14476
|
uid?: string;
|
|
13982
14477
|
/** @example 1 */
|
|
13983
14478
|
tenancy_id?: number;
|
|
@@ -13989,17 +14484,17 @@ export interface operations {
|
|
|
13989
14484
|
status?: string;
|
|
13990
14485
|
/** @example emergency */
|
|
13991
14486
|
priority?: string;
|
|
13992
|
-
/** @example 23 Apr 2026,
|
|
14487
|
+
/** @example 23 Apr 2026, 05:10 PM */
|
|
13993
14488
|
reported_at?: string;
|
|
13994
|
-
/** @example 28 Apr 2026,
|
|
14489
|
+
/** @example 28 Apr 2026, 01:30 PM */
|
|
13995
14490
|
assigned_at?: string;
|
|
13996
14491
|
/** @example null */
|
|
13997
14492
|
completed_at?: string | null;
|
|
13998
|
-
/** @example 01 May 2026,
|
|
14493
|
+
/** @example 01 May 2026, 06:52 PM */
|
|
13999
14494
|
sla_deadline?: string;
|
|
14000
|
-
/** @example
|
|
14495
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
14001
14496
|
created_at?: string;
|
|
14002
|
-
/** @example
|
|
14497
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
14003
14498
|
updated_at?: string;
|
|
14004
14499
|
};
|
|
14005
14500
|
};
|
|
@@ -14036,7 +14531,7 @@ export interface operations {
|
|
|
14036
14531
|
content: {
|
|
14037
14532
|
"application/json": {
|
|
14038
14533
|
data?: {
|
|
14039
|
-
/** @example
|
|
14534
|
+
/** @example bcf96ce4-fd9e-4391-9fd2-c451bb1e161d */
|
|
14040
14535
|
uid?: string;
|
|
14041
14536
|
/** @example 1 */
|
|
14042
14537
|
tenancy_id?: number;
|
|
@@ -14048,17 +14543,17 @@ export interface operations {
|
|
|
14048
14543
|
status?: string;
|
|
14049
14544
|
/** @example emergency */
|
|
14050
14545
|
priority?: string;
|
|
14051
|
-
/** @example 23 Apr 2026,
|
|
14546
|
+
/** @example 23 Apr 2026, 05:10 PM */
|
|
14052
14547
|
reported_at?: string;
|
|
14053
|
-
/** @example 28 Apr 2026,
|
|
14548
|
+
/** @example 28 Apr 2026, 01:30 PM */
|
|
14054
14549
|
assigned_at?: string;
|
|
14055
14550
|
/** @example null */
|
|
14056
14551
|
completed_at?: string | null;
|
|
14057
|
-
/** @example 01 May 2026,
|
|
14552
|
+
/** @example 01 May 2026, 06:52 PM */
|
|
14058
14553
|
sla_deadline?: string;
|
|
14059
|
-
/** @example
|
|
14554
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
14060
14555
|
created_at?: string;
|
|
14061
|
-
/** @example
|
|
14556
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
14062
14557
|
updated_at?: string;
|
|
14063
14558
|
};
|
|
14064
14559
|
};
|
|
@@ -14095,7 +14590,7 @@ export interface operations {
|
|
|
14095
14590
|
content: {
|
|
14096
14591
|
"application/json": {
|
|
14097
14592
|
data?: {
|
|
14098
|
-
/** @example
|
|
14593
|
+
/** @example 7bd35afe-e6fc-4003-ac40-6d5af97c2646 */
|
|
14099
14594
|
uid?: string;
|
|
14100
14595
|
/** @example 1 */
|
|
14101
14596
|
tenancy_id?: number;
|
|
@@ -14107,17 +14602,17 @@ export interface operations {
|
|
|
14107
14602
|
status?: string;
|
|
14108
14603
|
/** @example emergency */
|
|
14109
14604
|
priority?: string;
|
|
14110
|
-
/** @example 23 Apr 2026,
|
|
14605
|
+
/** @example 23 Apr 2026, 05:10 PM */
|
|
14111
14606
|
reported_at?: string;
|
|
14112
|
-
/** @example 28 Apr 2026,
|
|
14607
|
+
/** @example 28 Apr 2026, 01:30 PM */
|
|
14113
14608
|
assigned_at?: string;
|
|
14114
14609
|
/** @example null */
|
|
14115
14610
|
completed_at?: string | null;
|
|
14116
|
-
/** @example 01 May 2026,
|
|
14611
|
+
/** @example 01 May 2026, 06:52 PM */
|
|
14117
14612
|
sla_deadline?: string;
|
|
14118
|
-
/** @example
|
|
14613
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
14119
14614
|
created_at?: string;
|
|
14120
|
-
/** @example
|
|
14615
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
14121
14616
|
updated_at?: string;
|
|
14122
14617
|
};
|
|
14123
14618
|
};
|
|
@@ -14817,8 +15312,10 @@ export interface operations {
|
|
|
14817
15312
|
content: {
|
|
14818
15313
|
"application/json": {
|
|
14819
15314
|
data?: {
|
|
14820
|
-
/** @example
|
|
15315
|
+
/** @example 448 */
|
|
14821
15316
|
id?: number;
|
|
15317
|
+
/** @example APT-20260430-IEYFB5 */
|
|
15318
|
+
appointment_ref?: string;
|
|
14822
15319
|
/** @example 2 */
|
|
14823
15320
|
listing_id?: number;
|
|
14824
15321
|
listing?: {
|
|
@@ -14873,7 +15370,7 @@ export interface operations {
|
|
|
14873
15370
|
/** @example dogunfx */
|
|
14874
15371
|
name?: string;
|
|
14875
15372
|
};
|
|
14876
|
-
/** @example 2026-04-
|
|
15373
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
14877
15374
|
created_at?: string;
|
|
14878
15375
|
};
|
|
14879
15376
|
};
|
|
@@ -14900,8 +15397,10 @@ export interface operations {
|
|
|
14900
15397
|
content: {
|
|
14901
15398
|
"application/json": {
|
|
14902
15399
|
data?: {
|
|
14903
|
-
/** @example
|
|
15400
|
+
/** @example 449 */
|
|
14904
15401
|
id?: number;
|
|
15402
|
+
/** @example APT-20260430-ORUFXR */
|
|
15403
|
+
appointment_ref?: string;
|
|
14905
15404
|
/** @example 2 */
|
|
14906
15405
|
listing_id?: number;
|
|
14907
15406
|
listing?: {
|
|
@@ -14956,7 +15455,7 @@ export interface operations {
|
|
|
14956
15455
|
/** @example dogunfx */
|
|
14957
15456
|
name?: string;
|
|
14958
15457
|
};
|
|
14959
|
-
/** @example 2026-04-
|
|
15458
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
14960
15459
|
created_at?: string;
|
|
14961
15460
|
};
|
|
14962
15461
|
};
|
|
@@ -14966,21 +15465,264 @@ export interface operations {
|
|
|
14966
15465
|
};
|
|
14967
15466
|
fetchAllAppointment: {
|
|
14968
15467
|
parameters: {
|
|
14969
|
-
query?:
|
|
15468
|
+
query?: {
|
|
15469
|
+
/** @description Number of appointments per page. */
|
|
15470
|
+
per_page?: number;
|
|
15471
|
+
/** @description Page number. */
|
|
15472
|
+
page?: number;
|
|
15473
|
+
};
|
|
14970
15474
|
header?: never;
|
|
14971
15475
|
path?: never;
|
|
14972
15476
|
cookie?: never;
|
|
14973
15477
|
};
|
|
14974
15478
|
requestBody?: never;
|
|
14975
15479
|
responses: {
|
|
14976
|
-
|
|
15480
|
+
/** @description Retrieve all appointments for the authenticated customer */
|
|
15481
|
+
200: {
|
|
14977
15482
|
headers: {
|
|
14978
15483
|
[name: string]: unknown;
|
|
14979
15484
|
};
|
|
14980
15485
|
content: {
|
|
14981
15486
|
"application/json": {
|
|
14982
|
-
/** @example
|
|
15487
|
+
/** @example Appointments retrieve successfully */
|
|
14983
15488
|
message?: string;
|
|
15489
|
+
/** @example null */
|
|
15490
|
+
event?: string | null;
|
|
15491
|
+
data?: {
|
|
15492
|
+
/**
|
|
15493
|
+
* @example [
|
|
15494
|
+
* {
|
|
15495
|
+
* "id": 12,
|
|
15496
|
+
* "listing_id": 32,
|
|
15497
|
+
* "listing": {
|
|
15498
|
+
* "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
15499
|
+
* "sku": "LST-PRP-LTR-260405-A1B2",
|
|
15500
|
+
* "details": {
|
|
15501
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
15502
|
+
* "title": "24 Windsor Court",
|
|
15503
|
+
* "type": "Rent"
|
|
15504
|
+
* },
|
|
15505
|
+
* "owner": {
|
|
15506
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
15507
|
+
* "name": "Alice Taylor",
|
|
15508
|
+
* "phone": "+2348012345678",
|
|
15509
|
+
* "email": "alice@example.com",
|
|
15510
|
+
* "avatar": null,
|
|
15511
|
+
* "plan": null
|
|
15512
|
+
* },
|
|
15513
|
+
* "created_by": {
|
|
15514
|
+
* "uid": "b4afc948-66b3-415c-8287-b5f1a0728e22",
|
|
15515
|
+
* "name": "System Admin",
|
|
15516
|
+
* "phone": null,
|
|
15517
|
+
* "email": "admin@example.com",
|
|
15518
|
+
* "avatar": null,
|
|
15519
|
+
* "plan": null
|
|
15520
|
+
* },
|
|
15521
|
+
* "state": "published",
|
|
15522
|
+
* "published_at": "2026-04-25T10:00:00Z",
|
|
15523
|
+
* "published_since": "2 days ago",
|
|
15524
|
+
* "is_visible": true,
|
|
15525
|
+
* "summary": {
|
|
15526
|
+
* "property_type": "residential",
|
|
15527
|
+
* "bedrooms": 2,
|
|
15528
|
+
* "bathrooms": 1,
|
|
15529
|
+
* "size": "85 sqm",
|
|
15530
|
+
* "availability": "available"
|
|
15531
|
+
* },
|
|
15532
|
+
* "workflow": {
|
|
15533
|
+
* "current_step": "media",
|
|
15534
|
+
* "can_submit": true,
|
|
15535
|
+
* "missing_requirements": [],
|
|
15536
|
+
* "next_step": "publish",
|
|
15537
|
+
* "progress": {
|
|
15538
|
+
* "completed": 8,
|
|
15539
|
+
* "total": 8,
|
|
15540
|
+
* "percentage": 100
|
|
15541
|
+
* }
|
|
15542
|
+
* },
|
|
15543
|
+
* "media": {
|
|
15544
|
+
* "gallery": [
|
|
15545
|
+
* {
|
|
15546
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
15547
|
+
* "media_type": "image/jpeg",
|
|
15548
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
15549
|
+
* "order_index": 0,
|
|
15550
|
+
* "is_cover": true
|
|
15551
|
+
* }
|
|
15552
|
+
* ],
|
|
15553
|
+
* "cover": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
15554
|
+
* "count": 1
|
|
15555
|
+
* }
|
|
15556
|
+
* },
|
|
15557
|
+
* "status": "pending",
|
|
15558
|
+
* "scheduled": {
|
|
15559
|
+
* "start": "2026-05-01T09:00:00Z",
|
|
15560
|
+
* "end": "2026-05-01T10:00:00Z"
|
|
15561
|
+
* },
|
|
15562
|
+
* "customer": {
|
|
15563
|
+
* "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
|
|
15564
|
+
* "name": "Dominic Thomas"
|
|
15565
|
+
* },
|
|
15566
|
+
* "landlord": {
|
|
15567
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
15568
|
+
* "name": "Alice Taylor"
|
|
15569
|
+
* },
|
|
15570
|
+
* "created_at": "2026-04-30T00:00:00Z"
|
|
15571
|
+
* }
|
|
15572
|
+
* ]
|
|
15573
|
+
*/
|
|
15574
|
+
items?: {
|
|
15575
|
+
/** @example 12 */
|
|
15576
|
+
id?: number;
|
|
15577
|
+
/** @example 32 */
|
|
15578
|
+
listing_id?: number;
|
|
15579
|
+
listing?: {
|
|
15580
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
15581
|
+
uid?: string;
|
|
15582
|
+
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
15583
|
+
sku?: string;
|
|
15584
|
+
details?: {
|
|
15585
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
15586
|
+
address?: string;
|
|
15587
|
+
/** @example 24 Windsor Court */
|
|
15588
|
+
title?: string;
|
|
15589
|
+
/** @example Rent */
|
|
15590
|
+
type?: string;
|
|
15591
|
+
};
|
|
15592
|
+
owner?: {
|
|
15593
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
15594
|
+
uid?: string;
|
|
15595
|
+
/** @example Alice Taylor */
|
|
15596
|
+
name?: string;
|
|
15597
|
+
/** @example +2348012345678 */
|
|
15598
|
+
phone?: string;
|
|
15599
|
+
/** @example alice@example.com */
|
|
15600
|
+
email?: string;
|
|
15601
|
+
/** @example null */
|
|
15602
|
+
avatar?: string | null;
|
|
15603
|
+
/** @example null */
|
|
15604
|
+
plan?: string | null;
|
|
15605
|
+
};
|
|
15606
|
+
created_by?: {
|
|
15607
|
+
/** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
|
|
15608
|
+
uid?: string;
|
|
15609
|
+
/** @example System Admin */
|
|
15610
|
+
name?: string;
|
|
15611
|
+
/** @example null */
|
|
15612
|
+
phone?: string | null;
|
|
15613
|
+
/** @example admin@example.com */
|
|
15614
|
+
email?: string;
|
|
15615
|
+
/** @example null */
|
|
15616
|
+
avatar?: string | null;
|
|
15617
|
+
/** @example null */
|
|
15618
|
+
plan?: string | null;
|
|
15619
|
+
};
|
|
15620
|
+
/** @example published */
|
|
15621
|
+
state?: string;
|
|
15622
|
+
/** @example 2026-04-25T10:00:00Z */
|
|
15623
|
+
published_at?: string;
|
|
15624
|
+
/** @example 2 days ago */
|
|
15625
|
+
published_since?: string;
|
|
15626
|
+
/** @example true */
|
|
15627
|
+
is_visible?: boolean;
|
|
15628
|
+
summary?: {
|
|
15629
|
+
/** @example residential */
|
|
15630
|
+
property_type?: string;
|
|
15631
|
+
/** @example 2 */
|
|
15632
|
+
bedrooms?: number;
|
|
15633
|
+
/** @example 1 */
|
|
15634
|
+
bathrooms?: number;
|
|
15635
|
+
/** @example 85 sqm */
|
|
15636
|
+
size?: string;
|
|
15637
|
+
/** @example available */
|
|
15638
|
+
availability?: string;
|
|
15639
|
+
};
|
|
15640
|
+
workflow?: {
|
|
15641
|
+
/** @example media */
|
|
15642
|
+
current_step?: string;
|
|
15643
|
+
/** @example true */
|
|
15644
|
+
can_submit?: boolean;
|
|
15645
|
+
/** @example [] */
|
|
15646
|
+
missing_requirements?: unknown[];
|
|
15647
|
+
/** @example publish */
|
|
15648
|
+
next_step?: string;
|
|
15649
|
+
progress?: {
|
|
15650
|
+
/** @example 8 */
|
|
15651
|
+
completed?: number;
|
|
15652
|
+
/** @example 8 */
|
|
15653
|
+
total?: number;
|
|
15654
|
+
/** @example 100 */
|
|
15655
|
+
percentage?: number;
|
|
15656
|
+
};
|
|
15657
|
+
};
|
|
15658
|
+
media?: {
|
|
15659
|
+
/**
|
|
15660
|
+
* @example [
|
|
15661
|
+
* {
|
|
15662
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
15663
|
+
* "media_type": "image/jpeg",
|
|
15664
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
15665
|
+
* "order_index": 0,
|
|
15666
|
+
* "is_cover": true
|
|
15667
|
+
* }
|
|
15668
|
+
* ]
|
|
15669
|
+
*/
|
|
15670
|
+
gallery?: {
|
|
15671
|
+
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
15672
|
+
uid?: string;
|
|
15673
|
+
/** @example image/jpeg */
|
|
15674
|
+
media_type?: string;
|
|
15675
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
15676
|
+
storage_path?: string;
|
|
15677
|
+
/** @example 0 */
|
|
15678
|
+
order_index?: number;
|
|
15679
|
+
/** @example true */
|
|
15680
|
+
is_cover?: boolean;
|
|
15681
|
+
}[];
|
|
15682
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
15683
|
+
cover?: string;
|
|
15684
|
+
/** @example 1 */
|
|
15685
|
+
count?: number;
|
|
15686
|
+
};
|
|
15687
|
+
};
|
|
15688
|
+
/** @example pending */
|
|
15689
|
+
status?: string;
|
|
15690
|
+
scheduled?: {
|
|
15691
|
+
/** @example 2026-05-01T09:00:00Z */
|
|
15692
|
+
start?: string;
|
|
15693
|
+
/** @example 2026-05-01T10:00:00Z */
|
|
15694
|
+
end?: string;
|
|
15695
|
+
};
|
|
15696
|
+
customer?: {
|
|
15697
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
15698
|
+
uid?: string;
|
|
15699
|
+
/** @example Dominic Thomas */
|
|
15700
|
+
name?: string;
|
|
15701
|
+
};
|
|
15702
|
+
landlord?: {
|
|
15703
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
15704
|
+
uid?: string;
|
|
15705
|
+
/** @example Alice Taylor */
|
|
15706
|
+
name?: string;
|
|
15707
|
+
};
|
|
15708
|
+
/** @example 2026-04-30T00:00:00Z */
|
|
15709
|
+
created_at?: string;
|
|
15710
|
+
}[];
|
|
15711
|
+
pagination?: {
|
|
15712
|
+
/** @example 1 */
|
|
15713
|
+
current_page?: number;
|
|
15714
|
+
/** @example 15 */
|
|
15715
|
+
per_page?: number;
|
|
15716
|
+
/** @example 1 */
|
|
15717
|
+
total?: number;
|
|
15718
|
+
/** @example 1 */
|
|
15719
|
+
last_page?: number;
|
|
15720
|
+
/** @example 1 */
|
|
15721
|
+
from?: number;
|
|
15722
|
+
/** @example 1 */
|
|
15723
|
+
to?: number;
|
|
15724
|
+
};
|
|
15725
|
+
};
|
|
14984
15726
|
};
|
|
14985
15727
|
};
|
|
14986
15728
|
};
|
|
@@ -15020,8 +15762,10 @@ export interface operations {
|
|
|
15020
15762
|
content: {
|
|
15021
15763
|
"application/json": {
|
|
15022
15764
|
data?: {
|
|
15023
|
-
/** @example
|
|
15765
|
+
/** @example 450 */
|
|
15024
15766
|
id?: number;
|
|
15767
|
+
/** @example APT-20260430-U9KDCD */
|
|
15768
|
+
appointment_ref?: string;
|
|
15025
15769
|
/** @example 2 */
|
|
15026
15770
|
listing_id?: number;
|
|
15027
15771
|
listing?: {
|
|
@@ -15076,7 +15820,7 @@ export interface operations {
|
|
|
15076
15820
|
/** @example dogunfx */
|
|
15077
15821
|
name?: string;
|
|
15078
15822
|
};
|
|
15079
|
-
/** @example 2026-04-
|
|
15823
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
15080
15824
|
created_at?: string;
|
|
15081
15825
|
};
|
|
15082
15826
|
};
|
|
@@ -15103,8 +15847,10 @@ export interface operations {
|
|
|
15103
15847
|
content: {
|
|
15104
15848
|
"application/json": {
|
|
15105
15849
|
data?: {
|
|
15106
|
-
/** @example
|
|
15850
|
+
/** @example 451 */
|
|
15107
15851
|
id?: number;
|
|
15852
|
+
/** @example APT-20260430-CFPTHU */
|
|
15853
|
+
appointment_ref?: string;
|
|
15108
15854
|
/** @example 2 */
|
|
15109
15855
|
listing_id?: number;
|
|
15110
15856
|
listing?: {
|
|
@@ -15159,7 +15905,7 @@ export interface operations {
|
|
|
15159
15905
|
/** @example dogunfx */
|
|
15160
15906
|
name?: string;
|
|
15161
15907
|
};
|
|
15162
|
-
/** @example 2026-04-
|
|
15908
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
15163
15909
|
created_at?: string;
|
|
15164
15910
|
};
|
|
15165
15911
|
};
|
|
@@ -15186,8 +15932,10 @@ export interface operations {
|
|
|
15186
15932
|
content: {
|
|
15187
15933
|
"application/json": {
|
|
15188
15934
|
data?: {
|
|
15189
|
-
/** @example
|
|
15935
|
+
/** @example 452 */
|
|
15190
15936
|
id?: number;
|
|
15937
|
+
/** @example APT-20260430-BERCIA */
|
|
15938
|
+
appointment_ref?: string;
|
|
15191
15939
|
/** @example 2 */
|
|
15192
15940
|
listing_id?: number;
|
|
15193
15941
|
listing?: {
|
|
@@ -15242,7 +15990,7 @@ export interface operations {
|
|
|
15242
15990
|
/** @example dogunfx */
|
|
15243
15991
|
name?: string;
|
|
15244
15992
|
};
|
|
15245
|
-
/** @example 2026-04-
|
|
15993
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
15246
15994
|
created_at?: string;
|
|
15247
15995
|
};
|
|
15248
15996
|
};
|
|
@@ -15626,28 +16374,30 @@ export interface operations {
|
|
|
15626
16374
|
/** @example null */
|
|
15627
16375
|
event?: string | null;
|
|
15628
16376
|
data?: {
|
|
15629
|
-
/** @example
|
|
15630
|
-
id?:
|
|
15631
|
-
/** @example
|
|
15632
|
-
|
|
15633
|
-
/** @example
|
|
15634
|
-
|
|
15635
|
-
/** @example
|
|
15636
|
-
|
|
15637
|
-
/** @example
|
|
15638
|
-
|
|
15639
|
-
/** @example
|
|
15640
|
-
|
|
15641
|
-
/** @example
|
|
15642
|
-
|
|
15643
|
-
/** @example
|
|
15644
|
-
|
|
15645
|
-
/** @example
|
|
15646
|
-
|
|
15647
|
-
/** @example
|
|
15648
|
-
|
|
15649
|
-
/** @example
|
|
15650
|
-
|
|
16377
|
+
/** @example 12 */
|
|
16378
|
+
id?: number;
|
|
16379
|
+
/** @example BKG-20260430-ABC123 */
|
|
16380
|
+
booking_ref?: string;
|
|
16381
|
+
/** @example 32 */
|
|
16382
|
+
listing_id?: number;
|
|
16383
|
+
/** @example 9 */
|
|
16384
|
+
guest_id?: number;
|
|
16385
|
+
/** @example 5 */
|
|
16386
|
+
host_id?: number;
|
|
16387
|
+
/** @example 2 */
|
|
16388
|
+
guest_count?: number;
|
|
16389
|
+
/** @example 2026-06-10T00:00:00.000000Z */
|
|
16390
|
+
start_date?: string;
|
|
16391
|
+
/** @example 2026-06-14T00:00:00.000000Z */
|
|
16392
|
+
end_date?: string;
|
|
16393
|
+
/** @example 4 */
|
|
16394
|
+
nights?: number;
|
|
16395
|
+
/** @example 450.00 */
|
|
16396
|
+
price_total?: string;
|
|
16397
|
+
/** @example pending */
|
|
16398
|
+
status?: string;
|
|
16399
|
+
/** @example 2026-04-30T00:00:00.000000Z */
|
|
16400
|
+
created_at?: string;
|
|
15651
16401
|
};
|
|
15652
16402
|
};
|
|
15653
16403
|
};
|
|
@@ -15660,7 +16410,7 @@ export interface operations {
|
|
|
15660
16410
|
header?: never;
|
|
15661
16411
|
path: {
|
|
15662
16412
|
/** @description The ID of the booking. */
|
|
15663
|
-
booking_id:
|
|
16413
|
+
booking_id: string;
|
|
15664
16414
|
};
|
|
15665
16415
|
cookie?: never;
|
|
15666
16416
|
};
|
|
@@ -15681,6 +16431,8 @@ export interface operations {
|
|
|
15681
16431
|
/** @example null */
|
|
15682
16432
|
id?: string | null;
|
|
15683
16433
|
/** @example null */
|
|
16434
|
+
booking_ref?: string | null;
|
|
16435
|
+
/** @example null */
|
|
15684
16436
|
listing_id?: string | null;
|
|
15685
16437
|
/** @example null */
|
|
15686
16438
|
guest_id?: string | null;
|
|
@@ -15733,6 +16485,8 @@ export interface operations {
|
|
|
15733
16485
|
/** @example null */
|
|
15734
16486
|
id?: string | null;
|
|
15735
16487
|
/** @example null */
|
|
16488
|
+
booking_ref?: string | null;
|
|
16489
|
+
/** @example null */
|
|
15736
16490
|
listing_id?: string | null;
|
|
15737
16491
|
/** @example null */
|
|
15738
16492
|
guest_id?: string | null;
|
|
@@ -15785,6 +16539,8 @@ export interface operations {
|
|
|
15785
16539
|
/** @example null */
|
|
15786
16540
|
id?: string | null;
|
|
15787
16541
|
/** @example null */
|
|
16542
|
+
booking_ref?: string | null;
|
|
16543
|
+
/** @example null */
|
|
15788
16544
|
listing_id?: string | null;
|
|
15789
16545
|
/** @example null */
|
|
15790
16546
|
guest_id?: string | null;
|
|
@@ -16259,7 +17015,7 @@ export interface operations {
|
|
|
16259
17015
|
content: {
|
|
16260
17016
|
"application/json": {
|
|
16261
17017
|
data?: {
|
|
16262
|
-
/** @example
|
|
17018
|
+
/** @example 255e90cb-4a38-40ac-aee3-e0486b9ae8cd */
|
|
16263
17019
|
uid?: string;
|
|
16264
17020
|
/** @example Ms. Audra Crooks II */
|
|
16265
17021
|
username?: string;
|
|
@@ -16289,9 +17045,9 @@ export interface operations {
|
|
|
16289
17045
|
timezone?: string;
|
|
16290
17046
|
/** @example Customer */
|
|
16291
17047
|
user_type?: string;
|
|
16292
|
-
/** @example
|
|
17048
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
16293
17049
|
created?: string;
|
|
16294
|
-
/** @example
|
|
17050
|
+
/** @example 0 seconds ago */
|
|
16295
17051
|
email_verified_at?: string;
|
|
16296
17052
|
verification_status?: {
|
|
16297
17053
|
/** @example not_verified */
|
|
@@ -16758,7 +17514,7 @@ export interface operations {
|
|
|
16758
17514
|
content: {
|
|
16759
17515
|
"application/json": {
|
|
16760
17516
|
data?: {
|
|
16761
|
-
/** @example
|
|
17517
|
+
/** @example 54494dac-b280-41a8-8ac7-21301a574d4e */
|
|
16762
17518
|
uid?: string;
|
|
16763
17519
|
/** @example Ms. Audra Crooks II */
|
|
16764
17520
|
username?: string;
|
|
@@ -16788,7 +17544,7 @@ export interface operations {
|
|
|
16788
17544
|
timezone?: string;
|
|
16789
17545
|
/** @example Customer */
|
|
16790
17546
|
user_type?: string;
|
|
16791
|
-
/** @example
|
|
17547
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
16792
17548
|
created?: string;
|
|
16793
17549
|
/** @example 0 seconds ago */
|
|
16794
17550
|
email_verified_at?: string;
|
|
@@ -16870,6 +17626,154 @@ export interface operations {
|
|
|
16870
17626
|
};
|
|
16871
17627
|
};
|
|
16872
17628
|
};
|
|
17629
|
+
reservedBookingsLandlord: {
|
|
17630
|
+
parameters: {
|
|
17631
|
+
query?: {
|
|
17632
|
+
/** @description Number of bookings per page. */
|
|
17633
|
+
per_page?: number;
|
|
17634
|
+
};
|
|
17635
|
+
header?: never;
|
|
17636
|
+
path?: never;
|
|
17637
|
+
cookie?: never;
|
|
17638
|
+
};
|
|
17639
|
+
requestBody?: {
|
|
17640
|
+
content: {
|
|
17641
|
+
"application/json": {
|
|
17642
|
+
/**
|
|
17643
|
+
* @description Must be at least 1. Must not be greater than 100.
|
|
17644
|
+
* @example 1
|
|
17645
|
+
*/
|
|
17646
|
+
per_page?: number | null;
|
|
17647
|
+
};
|
|
17648
|
+
};
|
|
17649
|
+
};
|
|
17650
|
+
responses: {
|
|
17651
|
+
/** @description Retrieve landlord reserved bookings */
|
|
17652
|
+
200: {
|
|
17653
|
+
headers: {
|
|
17654
|
+
[name: string]: unknown;
|
|
17655
|
+
};
|
|
17656
|
+
content: {
|
|
17657
|
+
"application/json": {
|
|
17658
|
+
/** @example Reserved bookings fetched successfully */
|
|
17659
|
+
message?: string;
|
|
17660
|
+
/** @example null */
|
|
17661
|
+
event?: string | null;
|
|
17662
|
+
data?: {
|
|
17663
|
+
/**
|
|
17664
|
+
* @example [
|
|
17665
|
+
* {
|
|
17666
|
+
* "id": 12,
|
|
17667
|
+
* "booking_ref": "BKG-20260430-ABC123",
|
|
17668
|
+
* "listing": {
|
|
17669
|
+
* "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
17670
|
+
* "cover": {
|
|
17671
|
+
* "uid": "lm_34fda1",
|
|
17672
|
+
* "media_type": "image/jpeg",
|
|
17673
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
17674
|
+
* "order_index": 0,
|
|
17675
|
+
* "is_cover": true
|
|
17676
|
+
* },
|
|
17677
|
+
* "details": {
|
|
17678
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
17679
|
+
* "title": "24 Windsor Court",
|
|
17680
|
+
* "type": "Rent"
|
|
17681
|
+
* }
|
|
17682
|
+
* },
|
|
17683
|
+
* "guest": {
|
|
17684
|
+
* "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
|
|
17685
|
+
* "name": "Dominic Thomas",
|
|
17686
|
+
* "email": "tenant3@justinshome.test",
|
|
17687
|
+
* "avatar_path": null
|
|
17688
|
+
* },
|
|
17689
|
+
* "host": {
|
|
17690
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
17691
|
+
* "name": "Alice Taylor",
|
|
17692
|
+
* "email": "alice@example.com",
|
|
17693
|
+
* "avatar_path": null
|
|
17694
|
+
* },
|
|
17695
|
+
* "nights": 3,
|
|
17696
|
+
* "status": "pending",
|
|
17697
|
+
* "total_price": "450.00"
|
|
17698
|
+
* }
|
|
17699
|
+
* ]
|
|
17700
|
+
*/
|
|
17701
|
+
items?: {
|
|
17702
|
+
/** @example 12 */
|
|
17703
|
+
id?: number;
|
|
17704
|
+
/** @example BKG-20260430-ABC123 */
|
|
17705
|
+
booking_ref?: string;
|
|
17706
|
+
listing?: {
|
|
17707
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
17708
|
+
listing_uid?: string;
|
|
17709
|
+
cover?: {
|
|
17710
|
+
/** @example lm_34fda1 */
|
|
17711
|
+
uid?: string;
|
|
17712
|
+
/** @example image/jpeg */
|
|
17713
|
+
media_type?: string;
|
|
17714
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
17715
|
+
storage_path?: string;
|
|
17716
|
+
/** @example 0 */
|
|
17717
|
+
order_index?: number;
|
|
17718
|
+
/** @example true */
|
|
17719
|
+
is_cover?: boolean;
|
|
17720
|
+
};
|
|
17721
|
+
details?: {
|
|
17722
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
17723
|
+
address?: string;
|
|
17724
|
+
/** @example 24 Windsor Court */
|
|
17725
|
+
title?: string;
|
|
17726
|
+
/** @example Rent */
|
|
17727
|
+
type?: string;
|
|
17728
|
+
};
|
|
17729
|
+
};
|
|
17730
|
+
guest?: {
|
|
17731
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
17732
|
+
uid?: string;
|
|
17733
|
+
/** @example Dominic Thomas */
|
|
17734
|
+
name?: string;
|
|
17735
|
+
/** @example tenant3@justinshome.test */
|
|
17736
|
+
email?: string;
|
|
17737
|
+
/** @example null */
|
|
17738
|
+
avatar_path?: string | null;
|
|
17739
|
+
};
|
|
17740
|
+
host?: {
|
|
17741
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
17742
|
+
uid?: string;
|
|
17743
|
+
/** @example Alice Taylor */
|
|
17744
|
+
name?: string;
|
|
17745
|
+
/** @example alice@example.com */
|
|
17746
|
+
email?: string;
|
|
17747
|
+
/** @example null */
|
|
17748
|
+
avatar_path?: string | null;
|
|
17749
|
+
};
|
|
17750
|
+
/** @example 3 */
|
|
17751
|
+
nights?: number;
|
|
17752
|
+
/** @example pending */
|
|
17753
|
+
status?: string;
|
|
17754
|
+
/** @example 450.00 */
|
|
17755
|
+
total_price?: string;
|
|
17756
|
+
}[];
|
|
17757
|
+
pagination?: {
|
|
17758
|
+
/** @example 1 */
|
|
17759
|
+
current_page?: number;
|
|
17760
|
+
/** @example 15 */
|
|
17761
|
+
per_page?: number;
|
|
17762
|
+
/** @example 1 */
|
|
17763
|
+
total?: number;
|
|
17764
|
+
/** @example 1 */
|
|
17765
|
+
last_page?: number;
|
|
17766
|
+
/** @example 1 */
|
|
17767
|
+
from?: number;
|
|
17768
|
+
/** @example 1 */
|
|
17769
|
+
to?: number;
|
|
17770
|
+
};
|
|
17771
|
+
};
|
|
17772
|
+
};
|
|
17773
|
+
};
|
|
17774
|
+
};
|
|
17775
|
+
};
|
|
17776
|
+
};
|
|
16873
17777
|
createListingDraft: {
|
|
16874
17778
|
parameters: {
|
|
16875
17779
|
query?: never;
|
|
@@ -16909,11 +17813,11 @@ export interface operations {
|
|
|
16909
17813
|
content: {
|
|
16910
17814
|
"application/json": {
|
|
16911
17815
|
data?: {
|
|
16912
|
-
/** @example New For Rent Property draft •
|
|
17816
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
16913
17817
|
draft_name?: string;
|
|
16914
|
-
/** @example LST-PRP-LTR-
|
|
17818
|
+
/** @example LST-PRP-LTR-MOL2MR7OBCE */
|
|
16915
17819
|
sku?: string;
|
|
16916
|
-
/** @example
|
|
17820
|
+
/** @example 0ad081f9-fc42-42b2-a148-4799e274ebc8 */
|
|
16917
17821
|
uid?: string;
|
|
16918
17822
|
/** @example Rent */
|
|
16919
17823
|
listing_type?: string;
|
|
@@ -17037,9 +17941,9 @@ export interface operations {
|
|
|
17037
17941
|
/**
|
|
17038
17942
|
* @example [
|
|
17039
17943
|
* {
|
|
17040
|
-
* "draft_name": "New For Rent Property draft •
|
|
17041
|
-
* "sku": "LST-PRP-LTR-
|
|
17042
|
-
* "uid": "
|
|
17944
|
+
* "draft_name": "New For Rent Property draft • 30 Apr 2026, 5:56 AM",
|
|
17945
|
+
* "sku": "LST-PRP-LTR-MOL2MRA7EPE",
|
|
17946
|
+
* "uid": "97645d0e-81f1-42b9-ba7f-1c2f3c4a15ad",
|
|
17043
17947
|
* "listing_type": "Rent",
|
|
17044
17948
|
* "vertical": "Property",
|
|
17045
17949
|
* "arrangement_type": "let_to_let",
|
|
@@ -17056,9 +17960,9 @@ export interface operations {
|
|
|
17056
17960
|
* "media": []
|
|
17057
17961
|
* },
|
|
17058
17962
|
* {
|
|
17059
|
-
* "draft_name": "New Short Let Property draft •
|
|
17060
|
-
* "sku": "LST-PRP-SHL-
|
|
17061
|
-
* "uid": "
|
|
17963
|
+
* "draft_name": "New Short Let Property draft • 30 Apr 2026, 5:56 AM",
|
|
17964
|
+
* "sku": "LST-PRP-SHL-MOL2MRAA7EN",
|
|
17965
|
+
* "uid": "60a5b904-410a-42a3-b4c4-ff366141e45d",
|
|
17062
17966
|
* "listing_type": "Short Let",
|
|
17063
17967
|
* "vertical": "Property",
|
|
17064
17968
|
* "arrangement_type": "short_term_managed",
|
|
@@ -17077,11 +17981,11 @@ export interface operations {
|
|
|
17077
17981
|
* ]
|
|
17078
17982
|
*/
|
|
17079
17983
|
data?: {
|
|
17080
|
-
/** @example New For Rent Property draft •
|
|
17984
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
17081
17985
|
draft_name?: string;
|
|
17082
|
-
/** @example LST-PRP-LTR-
|
|
17986
|
+
/** @example LST-PRP-LTR-MOL2MRA7EPE */
|
|
17083
17987
|
sku?: string;
|
|
17084
|
-
/** @example
|
|
17988
|
+
/** @example 97645d0e-81f1-42b9-ba7f-1c2f3c4a15ad */
|
|
17085
17989
|
uid?: string;
|
|
17086
17990
|
/** @example Rent */
|
|
17087
17991
|
listing_type?: string;
|
|
@@ -17191,9 +18095,9 @@ export interface operations {
|
|
|
17191
18095
|
/**
|
|
17192
18096
|
* @example [
|
|
17193
18097
|
* {
|
|
17194
|
-
* "draft_name": "New For Rent Property draft •
|
|
17195
|
-
* "sku": "LST-PRP-LTR-
|
|
17196
|
-
* "uid": "
|
|
18098
|
+
* "draft_name": "New For Rent Property draft • 30 Apr 2026, 5:56 AM",
|
|
18099
|
+
* "sku": "LST-PRP-LTR-MOL2MRAKVIE",
|
|
18100
|
+
* "uid": "8db7d703-1a11-49b4-acb9-73e88fe2072d",
|
|
17197
18101
|
* "listing_type": "Rent",
|
|
17198
18102
|
* "vertical": "Property",
|
|
17199
18103
|
* "arrangement_type": "let_to_let",
|
|
@@ -17210,9 +18114,9 @@ export interface operations {
|
|
|
17210
18114
|
* "media": []
|
|
17211
18115
|
* },
|
|
17212
18116
|
* {
|
|
17213
|
-
* "draft_name": "New Short Let Property draft •
|
|
17214
|
-
* "sku": "LST-PRP-SHL-
|
|
17215
|
-
* "uid": "
|
|
18117
|
+
* "draft_name": "New Short Let Property draft • 30 Apr 2026, 5:56 AM",
|
|
18118
|
+
* "sku": "LST-PRP-SHL-MOL2MRANEO0",
|
|
18119
|
+
* "uid": "0146ea96-7066-4b54-8034-b1ea62956666",
|
|
17216
18120
|
* "listing_type": "Short Let",
|
|
17217
18121
|
* "vertical": "Property",
|
|
17218
18122
|
* "arrangement_type": "short_term_managed",
|
|
@@ -17231,11 +18135,11 @@ export interface operations {
|
|
|
17231
18135
|
* ]
|
|
17232
18136
|
*/
|
|
17233
18137
|
data?: {
|
|
17234
|
-
/** @example New For Rent Property draft •
|
|
18138
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
17235
18139
|
draft_name?: string;
|
|
17236
|
-
/** @example LST-PRP-LTR-
|
|
18140
|
+
/** @example LST-PRP-LTR-MOL2MRAKVIE */
|
|
17237
18141
|
sku?: string;
|
|
17238
|
-
/** @example
|
|
18142
|
+
/** @example 8db7d703-1a11-49b4-acb9-73e88fe2072d */
|
|
17239
18143
|
uid?: string;
|
|
17240
18144
|
/** @example Rent */
|
|
17241
18145
|
listing_type?: string;
|
|
@@ -18484,7 +19388,7 @@ export interface operations {
|
|
|
18484
19388
|
content: {
|
|
18485
19389
|
"application/json": {
|
|
18486
19390
|
data?: {
|
|
18487
|
-
/** @example
|
|
19391
|
+
/** @example d488ce9f-31c2-4059-a7e9-3de77ba8183d */
|
|
18488
19392
|
uid?: string;
|
|
18489
19393
|
/** @example photo */
|
|
18490
19394
|
media_type?: string;
|
|
@@ -18633,11 +19537,11 @@ export interface operations {
|
|
|
18633
19537
|
content: {
|
|
18634
19538
|
"application/json": {
|
|
18635
19539
|
data?: {
|
|
18636
|
-
/** @example New For Rent Property draft •
|
|
19540
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
|
|
18637
19541
|
draft_name?: string;
|
|
18638
|
-
/** @example LST-PRP-LTR-
|
|
19542
|
+
/** @example LST-PRP-LTR-MOL2MRE3D6P */
|
|
18639
19543
|
sku?: string;
|
|
18640
|
-
/** @example
|
|
19544
|
+
/** @example 0dd99924-5741-4b82-994d-4f4d60e9ad6d */
|
|
18641
19545
|
uid?: string;
|
|
18642
19546
|
/** @example Rent */
|
|
18643
19547
|
listing_type?: string;
|
|
@@ -18797,7 +19701,7 @@ export interface operations {
|
|
|
18797
19701
|
content: {
|
|
18798
19702
|
"application/json": {
|
|
18799
19703
|
data?: {
|
|
18800
|
-
/** @example
|
|
19704
|
+
/** @example 0b9b047f-3c34-4060-b246-fe1e1d24b3e2 */
|
|
18801
19705
|
uid?: string;
|
|
18802
19706
|
/** @example null */
|
|
18803
19707
|
compliances?: string | null;
|
|
@@ -18848,7 +19752,7 @@ export interface operations {
|
|
|
18848
19752
|
content: {
|
|
18849
19753
|
"application/json": {
|
|
18850
19754
|
data?: {
|
|
18851
|
-
/** @example
|
|
19755
|
+
/** @example 157 */
|
|
18852
19756
|
id?: number;
|
|
18853
19757
|
compliance?: {
|
|
18854
19758
|
/** @example 1 */
|
|
@@ -18870,7 +19774,7 @@ export interface operations {
|
|
|
18870
19774
|
reviewed_by?: number;
|
|
18871
19775
|
/** @example null */
|
|
18872
19776
|
reviewed_at?: string | null;
|
|
18873
|
-
/** @example 2026-04-
|
|
19777
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
18874
19778
|
created_at?: string;
|
|
18875
19779
|
};
|
|
18876
19780
|
};
|
|
@@ -18925,7 +19829,7 @@ export interface operations {
|
|
|
18925
19829
|
/**
|
|
18926
19830
|
* @example [
|
|
18927
19831
|
* {
|
|
18928
|
-
* "uid": "
|
|
19832
|
+
* "uid": "23fd205e-8cf0-45ff-959c-7d2c167596f7",
|
|
18929
19833
|
* "listing_id": 1,
|
|
18930
19834
|
* "landlord_id": 2,
|
|
18931
19835
|
* "tenant_id": 2,
|
|
@@ -18937,10 +19841,10 @@ export interface operations {
|
|
|
18937
19841
|
* "is_periodic": false,
|
|
18938
19842
|
* "company_name": null,
|
|
18939
19843
|
* "company_registration_number": null,
|
|
18940
|
-
* "created_at": "2026-04-
|
|
19844
|
+
* "created_at": "2026-04-30T05:56:37.000000Z"
|
|
18941
19845
|
* },
|
|
18942
19846
|
* {
|
|
18943
|
-
* "uid": "
|
|
19847
|
+
* "uid": "c64e199d-7c5b-4a9b-81db-51e3911a8414",
|
|
18944
19848
|
* "listing_id": 1,
|
|
18945
19849
|
* "landlord_id": 2,
|
|
18946
19850
|
* "tenant_id": 2,
|
|
@@ -18952,12 +19856,12 @@ export interface operations {
|
|
|
18952
19856
|
* "is_periodic": false,
|
|
18953
19857
|
* "company_name": null,
|
|
18954
19858
|
* "company_registration_number": null,
|
|
18955
|
-
* "created_at": "2026-04-
|
|
19859
|
+
* "created_at": "2026-04-30T05:56:37.000000Z"
|
|
18956
19860
|
* }
|
|
18957
19861
|
* ]
|
|
18958
19862
|
*/
|
|
18959
19863
|
data?: {
|
|
18960
|
-
/** @example
|
|
19864
|
+
/** @example 23fd205e-8cf0-45ff-959c-7d2c167596f7 */
|
|
18961
19865
|
uid?: string;
|
|
18962
19866
|
/** @example 1 */
|
|
18963
19867
|
listing_id?: number;
|
|
@@ -18981,7 +19885,7 @@ export interface operations {
|
|
|
18981
19885
|
company_name?: string | null;
|
|
18982
19886
|
/** @example null */
|
|
18983
19887
|
company_registration_number?: string | null;
|
|
18984
|
-
/** @example 2026-04-
|
|
19888
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
18985
19889
|
created_at?: string;
|
|
18986
19890
|
}[];
|
|
18987
19891
|
links?: {
|
|
@@ -19068,7 +19972,7 @@ export interface operations {
|
|
|
19068
19972
|
/**
|
|
19069
19973
|
* @example [
|
|
19070
19974
|
* {
|
|
19071
|
-
* "uid": "
|
|
19975
|
+
* "uid": "099e45c1-864e-40bf-a181-7d000ef55b9b",
|
|
19072
19976
|
* "listing_id": 1,
|
|
19073
19977
|
* "landlord_id": 2,
|
|
19074
19978
|
* "tenant_id": 2,
|
|
@@ -19080,10 +19984,10 @@ export interface operations {
|
|
|
19080
19984
|
* "is_periodic": false,
|
|
19081
19985
|
* "company_name": null,
|
|
19082
19986
|
* "company_registration_number": null,
|
|
19083
|
-
* "created_at": "2026-04-
|
|
19987
|
+
* "created_at": "2026-04-30T05:56:37.000000Z"
|
|
19084
19988
|
* },
|
|
19085
19989
|
* {
|
|
19086
|
-
* "uid": "
|
|
19990
|
+
* "uid": "5b09e356-2b7e-442d-8797-14c0623024f9",
|
|
19087
19991
|
* "listing_id": 1,
|
|
19088
19992
|
* "landlord_id": 2,
|
|
19089
19993
|
* "tenant_id": 2,
|
|
@@ -19095,12 +19999,12 @@ export interface operations {
|
|
|
19095
19999
|
* "is_periodic": false,
|
|
19096
20000
|
* "company_name": null,
|
|
19097
20001
|
* "company_registration_number": null,
|
|
19098
|
-
* "created_at": "2026-04-
|
|
20002
|
+
* "created_at": "2026-04-30T05:56:37.000000Z"
|
|
19099
20003
|
* }
|
|
19100
20004
|
* ]
|
|
19101
20005
|
*/
|
|
19102
20006
|
data?: {
|
|
19103
|
-
/** @example
|
|
20007
|
+
/** @example 099e45c1-864e-40bf-a181-7d000ef55b9b */
|
|
19104
20008
|
uid?: string;
|
|
19105
20009
|
/** @example 1 */
|
|
19106
20010
|
listing_id?: number;
|
|
@@ -19124,7 +20028,7 @@ export interface operations {
|
|
|
19124
20028
|
company_name?: string | null;
|
|
19125
20029
|
/** @example null */
|
|
19126
20030
|
company_registration_number?: string | null;
|
|
19127
|
-
/** @example 2026-04-
|
|
20031
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
19128
20032
|
created_at?: string;
|
|
19129
20033
|
}[];
|
|
19130
20034
|
links?: {
|
|
@@ -19231,7 +20135,7 @@ export interface operations {
|
|
|
19231
20135
|
content: {
|
|
19232
20136
|
"application/json": {
|
|
19233
20137
|
data?: {
|
|
19234
|
-
/** @example
|
|
20138
|
+
/** @example 233 */
|
|
19235
20139
|
id?: number;
|
|
19236
20140
|
compliance?: {
|
|
19237
20141
|
/** @example 1 */
|
|
@@ -19251,9 +20155,9 @@ export interface operations {
|
|
|
19251
20155
|
rejection_reason?: string | null;
|
|
19252
20156
|
/** @example 1 */
|
|
19253
20157
|
reviewed_by?: number;
|
|
19254
|
-
/** @example 2026-04-
|
|
20158
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
19255
20159
|
reviewed_at?: string;
|
|
19256
|
-
/** @example 2026-04-
|
|
20160
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
19257
20161
|
created_at?: string;
|
|
19258
20162
|
};
|
|
19259
20163
|
};
|
|
@@ -19280,7 +20184,7 @@ export interface operations {
|
|
|
19280
20184
|
content: {
|
|
19281
20185
|
"application/json": {
|
|
19282
20186
|
data?: {
|
|
19283
|
-
/** @example
|
|
20187
|
+
/** @example 234 */
|
|
19284
20188
|
id?: number;
|
|
19285
20189
|
compliance?: {
|
|
19286
20190
|
/** @example 1 */
|
|
@@ -19300,9 +20204,9 @@ export interface operations {
|
|
|
19300
20204
|
rejection_reason?: string | null;
|
|
19301
20205
|
/** @example 1 */
|
|
19302
20206
|
reviewed_by?: number;
|
|
19303
|
-
/** @example 2026-04-
|
|
20207
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
19304
20208
|
reviewed_at?: string;
|
|
19305
|
-
/** @example 2026-04-
|
|
20209
|
+
/** @example 2026-04-30T05:56:37.000000Z */
|
|
19306
20210
|
created_at?: string;
|
|
19307
20211
|
};
|
|
19308
20212
|
};
|
|
@@ -20434,37 +21338,37 @@ export interface operations {
|
|
|
20434
21338
|
/**
|
|
20435
21339
|
* @example [
|
|
20436
21340
|
* {
|
|
20437
|
-
* "uid": "
|
|
21341
|
+
* "uid": "6cce02d2-0d17-48c0-9f08-61656c8d9df2",
|
|
20438
21342
|
* "tenancy_id": 1,
|
|
20439
21343
|
* "title": "Quos velit et fugiat sunt nihil.",
|
|
20440
21344
|
* "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.",
|
|
20441
21345
|
* "status": "reported",
|
|
20442
21346
|
* "priority": "emergency",
|
|
20443
|
-
* "reported_at": "23 Apr 2026,
|
|
20444
|
-
* "assigned_at": "28 Apr 2026,
|
|
21347
|
+
* "reported_at": "23 Apr 2026, 05:10 PM",
|
|
21348
|
+
* "assigned_at": "28 Apr 2026, 01:30 PM",
|
|
20445
21349
|
* "completed_at": null,
|
|
20446
|
-
* "sla_deadline": "01 May 2026,
|
|
20447
|
-
* "created_at": "
|
|
20448
|
-
* "updated_at": "
|
|
21350
|
+
* "sla_deadline": "01 May 2026, 06:52 PM",
|
|
21351
|
+
* "created_at": "30 Apr 2026, 05:56 AM",
|
|
21352
|
+
* "updated_at": "30 Apr 2026, 05:56 AM"
|
|
20449
21353
|
* },
|
|
20450
21354
|
* {
|
|
20451
|
-
* "uid": "
|
|
21355
|
+
* "uid": "824a0779-a9b2-41e4-8672-30423fa6cff8",
|
|
20452
21356
|
* "tenancy_id": 1,
|
|
20453
21357
|
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
20454
21358
|
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
20455
21359
|
* "status": "completed",
|
|
20456
21360
|
* "priority": "normal",
|
|
20457
|
-
* "reported_at": "
|
|
21361
|
+
* "reported_at": "26 Apr 2026, 05:48 AM",
|
|
20458
21362
|
* "assigned_at": null,
|
|
20459
21363
|
* "completed_at": null,
|
|
20460
|
-
* "sla_deadline": "
|
|
20461
|
-
* "created_at": "
|
|
20462
|
-
* "updated_at": "
|
|
21364
|
+
* "sla_deadline": "03 May 2026, 02:52 AM",
|
|
21365
|
+
* "created_at": "30 Apr 2026, 05:56 AM",
|
|
21366
|
+
* "updated_at": "30 Apr 2026, 05:56 AM"
|
|
20463
21367
|
* }
|
|
20464
21368
|
* ]
|
|
20465
21369
|
*/
|
|
20466
21370
|
data?: {
|
|
20467
|
-
/** @example
|
|
21371
|
+
/** @example 6cce02d2-0d17-48c0-9f08-61656c8d9df2 */
|
|
20468
21372
|
uid?: string;
|
|
20469
21373
|
/** @example 1 */
|
|
20470
21374
|
tenancy_id?: number;
|
|
@@ -20476,17 +21380,17 @@ export interface operations {
|
|
|
20476
21380
|
status?: string;
|
|
20477
21381
|
/** @example emergency */
|
|
20478
21382
|
priority?: string;
|
|
20479
|
-
/** @example 23 Apr 2026,
|
|
21383
|
+
/** @example 23 Apr 2026, 05:10 PM */
|
|
20480
21384
|
reported_at?: string;
|
|
20481
|
-
/** @example 28 Apr 2026,
|
|
21385
|
+
/** @example 28 Apr 2026, 01:30 PM */
|
|
20482
21386
|
assigned_at?: string;
|
|
20483
21387
|
/** @example null */
|
|
20484
21388
|
completed_at?: string | null;
|
|
20485
|
-
/** @example 01 May 2026,
|
|
21389
|
+
/** @example 01 May 2026, 06:52 PM */
|
|
20486
21390
|
sla_deadline?: string;
|
|
20487
|
-
/** @example
|
|
21391
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
20488
21392
|
created_at?: string;
|
|
20489
|
-
/** @example
|
|
21393
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
20490
21394
|
updated_at?: string;
|
|
20491
21395
|
}[];
|
|
20492
21396
|
links?: {
|
|
@@ -20602,13 +21506,13 @@ export interface operations {
|
|
|
20602
21506
|
};
|
|
20603
21507
|
} | {
|
|
20604
21508
|
data?: {
|
|
20605
|
-
/** @example
|
|
21509
|
+
/** @example 8b928f83-fede-4fdf-a5e9-c4e18d7f796e */
|
|
20606
21510
|
uid?: string;
|
|
20607
21511
|
/** @example image */
|
|
20608
21512
|
file_type?: string;
|
|
20609
21513
|
/** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
20610
21514
|
url?: string;
|
|
20611
|
-
/** @example 2026-04-
|
|
21515
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
20612
21516
|
created_at?: string;
|
|
20613
21517
|
};
|
|
20614
21518
|
};
|
|
@@ -20653,7 +21557,7 @@ export interface operations {
|
|
|
20653
21557
|
content: {
|
|
20654
21558
|
"application/json": {
|
|
20655
21559
|
data?: {
|
|
20656
|
-
/** @example
|
|
21560
|
+
/** @example 165 */
|
|
20657
21561
|
id?: number;
|
|
20658
21562
|
/** @example property_inquiry */
|
|
20659
21563
|
type?: string;
|
|
@@ -20669,7 +21573,7 @@ export interface operations {
|
|
|
20669
21573
|
};
|
|
20670
21574
|
/** @example null */
|
|
20671
21575
|
last_message_at?: string | null;
|
|
20672
|
-
/** @example 2026-04-
|
|
21576
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
20673
21577
|
created_at?: string;
|
|
20674
21578
|
};
|
|
20675
21579
|
};
|
|
@@ -21080,7 +21984,7 @@ export interface operations {
|
|
|
21080
21984
|
};
|
|
21081
21985
|
content: {
|
|
21082
21986
|
"application/json": {
|
|
21083
|
-
/** @example
|
|
21987
|
+
/** @example 93aa0038-1735-4199-8fa3-8d75223cc0d5 */
|
|
21084
21988
|
id?: string;
|
|
21085
21989
|
/** @example APPOINTMENT_CREATED */
|
|
21086
21990
|
type?: string;
|
|
@@ -21092,7 +21996,7 @@ export interface operations {
|
|
|
21092
21996
|
data?: unknown[];
|
|
21093
21997
|
/** @example null */
|
|
21094
21998
|
read_at?: string | null;
|
|
21095
|
-
/** @example 2026-04-
|
|
21999
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
21096
22000
|
created_at?: string;
|
|
21097
22001
|
};
|
|
21098
22002
|
};
|
|
@@ -21485,21 +22389,21 @@ export interface operations {
|
|
|
21485
22389
|
content: {
|
|
21486
22390
|
"application/json": {
|
|
21487
22391
|
data?: {
|
|
21488
|
-
/** @example
|
|
22392
|
+
/** @example 377 */
|
|
21489
22393
|
id?: number;
|
|
21490
22394
|
/** @example 1 */
|
|
21491
22395
|
rating?: number;
|
|
21492
22396
|
/** @example Nice Listing */
|
|
21493
22397
|
comment?: string;
|
|
21494
22398
|
reviewer?: {
|
|
21495
|
-
/** @example
|
|
22399
|
+
/** @example 20 */
|
|
21496
22400
|
id?: number;
|
|
21497
|
-
/** @example
|
|
22401
|
+
/** @example Suzanne Morgan */
|
|
21498
22402
|
name?: string;
|
|
21499
22403
|
};
|
|
21500
|
-
/** @example
|
|
22404
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
21501
22405
|
created_at?: string;
|
|
21502
|
-
/** @example
|
|
22406
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
21503
22407
|
updated_at?: string;
|
|
21504
22408
|
};
|
|
21505
22409
|
};
|
|
@@ -21543,21 +22447,21 @@ export interface operations {
|
|
|
21543
22447
|
content: {
|
|
21544
22448
|
"application/json": {
|
|
21545
22449
|
data?: {
|
|
21546
|
-
/** @example
|
|
22450
|
+
/** @example 378 */
|
|
21547
22451
|
id?: number;
|
|
21548
22452
|
/** @example 1 */
|
|
21549
22453
|
rating?: number;
|
|
21550
22454
|
/** @example Nice Listing */
|
|
21551
22455
|
comment?: string;
|
|
21552
22456
|
reviewer?: {
|
|
21553
|
-
/** @example
|
|
22457
|
+
/** @example 13 */
|
|
21554
22458
|
id?: number;
|
|
21555
|
-
/** @example
|
|
22459
|
+
/** @example Matthew Campbell */
|
|
21556
22460
|
name?: string;
|
|
21557
22461
|
};
|
|
21558
|
-
/** @example
|
|
22462
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
21559
22463
|
created_at?: string;
|
|
21560
|
-
/** @example
|
|
22464
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
21561
22465
|
updated_at?: string;
|
|
21562
22466
|
};
|
|
21563
22467
|
};
|
|
@@ -21599,21 +22503,21 @@ export interface operations {
|
|
|
21599
22503
|
content: {
|
|
21600
22504
|
"application/json": {
|
|
21601
22505
|
data?: {
|
|
21602
|
-
/** @example
|
|
22506
|
+
/** @example 379 */
|
|
21603
22507
|
id?: number;
|
|
21604
22508
|
/** @example 1 */
|
|
21605
22509
|
rating?: number;
|
|
21606
22510
|
/** @example Nice Listing */
|
|
21607
22511
|
comment?: string;
|
|
21608
22512
|
reviewer?: {
|
|
21609
|
-
/** @example
|
|
22513
|
+
/** @example 17 */
|
|
21610
22514
|
id?: number;
|
|
21611
|
-
/** @example
|
|
22515
|
+
/** @example Hannah Ross */
|
|
21612
22516
|
name?: string;
|
|
21613
22517
|
};
|
|
21614
|
-
/** @example
|
|
22518
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
21615
22519
|
created_at?: string;
|
|
21616
|
-
/** @example
|
|
22520
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
21617
22521
|
updated_at?: string;
|
|
21618
22522
|
};
|
|
21619
22523
|
};
|
|
@@ -21640,21 +22544,21 @@ export interface operations {
|
|
|
21640
22544
|
content: {
|
|
21641
22545
|
"application/json": {
|
|
21642
22546
|
data?: {
|
|
21643
|
-
/** @example
|
|
22547
|
+
/** @example 380 */
|
|
21644
22548
|
id?: number;
|
|
21645
22549
|
/** @example 1 */
|
|
21646
22550
|
rating?: number;
|
|
21647
22551
|
/** @example Nice Listing */
|
|
21648
22552
|
comment?: string;
|
|
21649
22553
|
reviewer?: {
|
|
21650
|
-
/** @example
|
|
22554
|
+
/** @example 1 */
|
|
21651
22555
|
id?: number;
|
|
21652
|
-
/** @example
|
|
22556
|
+
/** @example System Admin */
|
|
21653
22557
|
name?: string;
|
|
21654
22558
|
};
|
|
21655
|
-
/** @example
|
|
22559
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
21656
22560
|
created_at?: string;
|
|
21657
|
-
/** @example
|
|
22561
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
21658
22562
|
updated_at?: string;
|
|
21659
22563
|
};
|
|
21660
22564
|
};
|
|
@@ -21681,7 +22585,7 @@ export interface operations {
|
|
|
21681
22585
|
content: {
|
|
21682
22586
|
"application/json": {
|
|
21683
22587
|
data?: {
|
|
21684
|
-
/** @example
|
|
22588
|
+
/** @example 4ff2b6c6-1335-46fd-bd06-bb919ad8399b */
|
|
21685
22589
|
uid?: string;
|
|
21686
22590
|
/** @example 1 */
|
|
21687
22591
|
listing_id?: number;
|
|
@@ -21689,15 +22593,15 @@ export interface operations {
|
|
|
21689
22593
|
landlord_id?: number;
|
|
21690
22594
|
/** @example 2 */
|
|
21691
22595
|
tenant_id?: number;
|
|
21692
|
-
/** @example
|
|
22596
|
+
/** @example 1968.97 */
|
|
21693
22597
|
rent_amount?: string;
|
|
21694
|
-
/** @example
|
|
22598
|
+
/** @example 661.35 */
|
|
21695
22599
|
deposit_amount?: string;
|
|
21696
|
-
/** @example
|
|
22600
|
+
/** @example agreement_signed */
|
|
21697
22601
|
state?: string;
|
|
21698
|
-
/** @example 2025-11-
|
|
22602
|
+
/** @example 2025-11-02T00:00:00.000000Z */
|
|
21699
22603
|
start_date?: string;
|
|
21700
|
-
/** @example 2026-11-
|
|
22604
|
+
/** @example 2026-11-02T00:00:00.000000Z */
|
|
21701
22605
|
end_date?: string;
|
|
21702
22606
|
/** @example false */
|
|
21703
22607
|
is_periodic?: boolean;
|
|
@@ -21705,7 +22609,7 @@ export interface operations {
|
|
|
21705
22609
|
company_name?: string | null;
|
|
21706
22610
|
/** @example null */
|
|
21707
22611
|
company_registration_number?: string | null;
|
|
21708
|
-
/** @example 2026-04-
|
|
22612
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
21709
22613
|
created_at?: string;
|
|
21710
22614
|
/** @example [] */
|
|
21711
22615
|
compliances?: unknown[];
|
|
@@ -21782,7 +22686,7 @@ export interface operations {
|
|
|
21782
22686
|
content: {
|
|
21783
22687
|
"application/json": {
|
|
21784
22688
|
data?: {
|
|
21785
|
-
/** @example
|
|
22689
|
+
/** @example 0bcb6377-7007-4aac-a61b-e105c8fbb63d */
|
|
21786
22690
|
uid?: string;
|
|
21787
22691
|
/** @example 1 */
|
|
21788
22692
|
listing_id?: number;
|
|
@@ -21806,7 +22710,7 @@ export interface operations {
|
|
|
21806
22710
|
company_name?: string | null;
|
|
21807
22711
|
/** @example null */
|
|
21808
22712
|
company_registration_number?: string | null;
|
|
21809
|
-
/** @example 2026-04-
|
|
22713
|
+
/** @example 2026-04-30T05:56:38.000000Z */
|
|
21810
22714
|
created_at?: string;
|
|
21811
22715
|
};
|
|
21812
22716
|
};
|
|
@@ -22100,7 +23004,7 @@ export interface operations {
|
|
|
22100
23004
|
* "changed_by_user_id": 3,
|
|
22101
23005
|
* "changed_by_name": "Teagan King",
|
|
22102
23006
|
* "comment": "Qui commodi incidunt iure odit.",
|
|
22103
|
-
* "created_at": "2025-12-
|
|
23007
|
+
* "created_at": "2025-12-22T16:43:37.000000Z"
|
|
22104
23008
|
* },
|
|
22105
23009
|
* {
|
|
22106
23010
|
* "from_state": "pre_move_in_ready",
|
|
@@ -22108,7 +23012,7 @@ export interface operations {
|
|
|
22108
23012
|
* "changed_by_user_id": 3,
|
|
22109
23013
|
* "changed_by_name": "Teagan King",
|
|
22110
23014
|
* "comment": null,
|
|
22111
|
-
* "created_at": "2025-11-
|
|
23015
|
+
* "created_at": "2025-11-08T00:39:17.000000Z"
|
|
22112
23016
|
* }
|
|
22113
23017
|
* ]
|
|
22114
23018
|
*/
|
|
@@ -22123,7 +23027,7 @@ export interface operations {
|
|
|
22123
23027
|
changed_by_name?: string;
|
|
22124
23028
|
/** @example Qui commodi incidunt iure odit. */
|
|
22125
23029
|
comment?: string;
|
|
22126
|
-
/** @example 2025-12-
|
|
23030
|
+
/** @example 2025-12-22T16:43:37.000000Z */
|
|
22127
23031
|
created_at?: string;
|
|
22128
23032
|
}[];
|
|
22129
23033
|
};
|
|
@@ -22508,7 +23412,7 @@ export interface operations {
|
|
|
22508
23412
|
content: {
|
|
22509
23413
|
"application/json": {
|
|
22510
23414
|
data?: {
|
|
22511
|
-
/** @example
|
|
23415
|
+
/** @example 7211a4c5-718b-45e1-aa0e-311b67be7955 */
|
|
22512
23416
|
uid?: string;
|
|
22513
23417
|
/** @example Ms. Audra Crooks II */
|
|
22514
23418
|
username?: string;
|
|
@@ -22538,7 +23442,7 @@ export interface operations {
|
|
|
22538
23442
|
timezone?: string;
|
|
22539
23443
|
/** @example Customer */
|
|
22540
23444
|
user_type?: string;
|
|
22541
|
-
/** @example
|
|
23445
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
22542
23446
|
created?: string;
|
|
22543
23447
|
/** @example 0 seconds ago */
|
|
22544
23448
|
email_verified_at?: string;
|
|
@@ -22600,6 +23504,154 @@ export interface operations {
|
|
|
22600
23504
|
};
|
|
22601
23505
|
};
|
|
22602
23506
|
};
|
|
23507
|
+
reservedBookingsTenants: {
|
|
23508
|
+
parameters: {
|
|
23509
|
+
query?: {
|
|
23510
|
+
/** @description Number of bookings per page. */
|
|
23511
|
+
per_page?: number;
|
|
23512
|
+
};
|
|
23513
|
+
header?: never;
|
|
23514
|
+
path?: never;
|
|
23515
|
+
cookie?: never;
|
|
23516
|
+
};
|
|
23517
|
+
requestBody?: {
|
|
23518
|
+
content: {
|
|
23519
|
+
"application/json": {
|
|
23520
|
+
/**
|
|
23521
|
+
* @description Must be at least 1. Must not be greater than 100.
|
|
23522
|
+
* @example 1
|
|
23523
|
+
*/
|
|
23524
|
+
per_page?: number | null;
|
|
23525
|
+
};
|
|
23526
|
+
};
|
|
23527
|
+
};
|
|
23528
|
+
responses: {
|
|
23529
|
+
/** @description Retrieve tenant reserved bookings */
|
|
23530
|
+
200: {
|
|
23531
|
+
headers: {
|
|
23532
|
+
[name: string]: unknown;
|
|
23533
|
+
};
|
|
23534
|
+
content: {
|
|
23535
|
+
"application/json": {
|
|
23536
|
+
/** @example Reserved bookings fetched successfully */
|
|
23537
|
+
message?: string;
|
|
23538
|
+
/** @example null */
|
|
23539
|
+
event?: string | null;
|
|
23540
|
+
data?: {
|
|
23541
|
+
/**
|
|
23542
|
+
* @example [
|
|
23543
|
+
* {
|
|
23544
|
+
* "id": 12,
|
|
23545
|
+
* "booking_ref": "BKG-20260430-ABC123",
|
|
23546
|
+
* "listing": {
|
|
23547
|
+
* "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
23548
|
+
* "cover": {
|
|
23549
|
+
* "uid": "lm_34fda1",
|
|
23550
|
+
* "media_type": "image/jpeg",
|
|
23551
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
23552
|
+
* "order_index": 0,
|
|
23553
|
+
* "is_cover": true
|
|
23554
|
+
* },
|
|
23555
|
+
* "details": {
|
|
23556
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
23557
|
+
* "title": "24 Windsor Court",
|
|
23558
|
+
* "type": "Rent"
|
|
23559
|
+
* }
|
|
23560
|
+
* },
|
|
23561
|
+
* "guest": {
|
|
23562
|
+
* "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
|
|
23563
|
+
* "name": "Dominic Thomas",
|
|
23564
|
+
* "email": "tenant3@justinshome.test",
|
|
23565
|
+
* "avatar_path": null
|
|
23566
|
+
* },
|
|
23567
|
+
* "host": {
|
|
23568
|
+
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
23569
|
+
* "name": "Alice Taylor",
|
|
23570
|
+
* "email": "alice@example.com",
|
|
23571
|
+
* "avatar_path": null
|
|
23572
|
+
* },
|
|
23573
|
+
* "nights": 3,
|
|
23574
|
+
* "status": "pending",
|
|
23575
|
+
* "total_price": "450.00"
|
|
23576
|
+
* }
|
|
23577
|
+
* ]
|
|
23578
|
+
*/
|
|
23579
|
+
items?: {
|
|
23580
|
+
/** @example 12 */
|
|
23581
|
+
id?: number;
|
|
23582
|
+
/** @example BKG-20260430-ABC123 */
|
|
23583
|
+
booking_ref?: string;
|
|
23584
|
+
listing?: {
|
|
23585
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
23586
|
+
listing_uid?: string;
|
|
23587
|
+
cover?: {
|
|
23588
|
+
/** @example lm_34fda1 */
|
|
23589
|
+
uid?: string;
|
|
23590
|
+
/** @example image/jpeg */
|
|
23591
|
+
media_type?: string;
|
|
23592
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
23593
|
+
storage_path?: string;
|
|
23594
|
+
/** @example 0 */
|
|
23595
|
+
order_index?: number;
|
|
23596
|
+
/** @example true */
|
|
23597
|
+
is_cover?: boolean;
|
|
23598
|
+
};
|
|
23599
|
+
details?: {
|
|
23600
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
23601
|
+
address?: string;
|
|
23602
|
+
/** @example 24 Windsor Court */
|
|
23603
|
+
title?: string;
|
|
23604
|
+
/** @example Rent */
|
|
23605
|
+
type?: string;
|
|
23606
|
+
};
|
|
23607
|
+
};
|
|
23608
|
+
guest?: {
|
|
23609
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
23610
|
+
uid?: string;
|
|
23611
|
+
/** @example Dominic Thomas */
|
|
23612
|
+
name?: string;
|
|
23613
|
+
/** @example tenant3@justinshome.test */
|
|
23614
|
+
email?: string;
|
|
23615
|
+
/** @example null */
|
|
23616
|
+
avatar_path?: string | null;
|
|
23617
|
+
};
|
|
23618
|
+
host?: {
|
|
23619
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
23620
|
+
uid?: string;
|
|
23621
|
+
/** @example Alice Taylor */
|
|
23622
|
+
name?: string;
|
|
23623
|
+
/** @example alice@example.com */
|
|
23624
|
+
email?: string;
|
|
23625
|
+
/** @example null */
|
|
23626
|
+
avatar_path?: string | null;
|
|
23627
|
+
};
|
|
23628
|
+
/** @example 3 */
|
|
23629
|
+
nights?: number;
|
|
23630
|
+
/** @example pending */
|
|
23631
|
+
status?: string;
|
|
23632
|
+
/** @example 450.00 */
|
|
23633
|
+
total_price?: string;
|
|
23634
|
+
}[];
|
|
23635
|
+
pagination?: {
|
|
23636
|
+
/** @example 1 */
|
|
23637
|
+
current_page?: number;
|
|
23638
|
+
/** @example 15 */
|
|
23639
|
+
per_page?: number;
|
|
23640
|
+
/** @example 1 */
|
|
23641
|
+
total?: number;
|
|
23642
|
+
/** @example 1 */
|
|
23643
|
+
last_page?: number;
|
|
23644
|
+
/** @example 1 */
|
|
23645
|
+
from?: number;
|
|
23646
|
+
/** @example 1 */
|
|
23647
|
+
to?: number;
|
|
23648
|
+
};
|
|
23649
|
+
};
|
|
23650
|
+
};
|
|
23651
|
+
};
|
|
23652
|
+
};
|
|
23653
|
+
};
|
|
23654
|
+
};
|
|
22603
23655
|
sendTwoFactorToggleOtp: {
|
|
22604
23656
|
parameters: {
|
|
22605
23657
|
query?: never;
|
|
@@ -22653,7 +23705,7 @@ export interface operations {
|
|
|
22653
23705
|
content: {
|
|
22654
23706
|
"application/json": {
|
|
22655
23707
|
data?: {
|
|
22656
|
-
/** @example
|
|
23708
|
+
/** @example 74778aec-d667-4dbf-a3c7-8319c9bb8f7c */
|
|
22657
23709
|
uid?: string;
|
|
22658
23710
|
/** @example Morgan Hirthe */
|
|
22659
23711
|
username?: string;
|
|
@@ -22683,7 +23735,7 @@ export interface operations {
|
|
|
22683
23735
|
timezone?: string;
|
|
22684
23736
|
/** @example Customer */
|
|
22685
23737
|
user_type?: string;
|
|
22686
|
-
/** @example
|
|
23738
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
22687
23739
|
created?: string;
|
|
22688
23740
|
/** @example 0 seconds ago */
|
|
22689
23741
|
email_verified_at?: string;
|
|
@@ -22755,7 +23807,7 @@ export interface operations {
|
|
|
22755
23807
|
content: {
|
|
22756
23808
|
"application/json": {
|
|
22757
23809
|
data?: {
|
|
22758
|
-
/** @example
|
|
23810
|
+
/** @example c4de3146-1ee7-4241-9338-c8f04ab20134 */
|
|
22759
23811
|
uid?: string;
|
|
22760
23812
|
/** @example Ms. Audra Crooks II */
|
|
22761
23813
|
username?: string;
|
|
@@ -22785,7 +23837,7 @@ export interface operations {
|
|
|
22785
23837
|
timezone?: string;
|
|
22786
23838
|
/** @example Customer */
|
|
22787
23839
|
user_type?: string;
|
|
22788
|
-
/** @example
|
|
23840
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
22789
23841
|
created?: string;
|
|
22790
23842
|
/** @example 0 seconds ago */
|
|
22791
23843
|
email_verified_at?: string;
|
|
@@ -23019,13 +24071,13 @@ export interface operations {
|
|
|
23019
24071
|
content: {
|
|
23020
24072
|
"application/json": {
|
|
23021
24073
|
data?: {
|
|
23022
|
-
/** @example
|
|
24074
|
+
/** @example 7 */
|
|
23023
24075
|
current_level?: number;
|
|
23024
24076
|
/** @example 3 */
|
|
23025
24077
|
completed_layers?: number;
|
|
23026
|
-
/** @example
|
|
24078
|
+
/** @example 1 */
|
|
23027
24079
|
pending_layers?: number;
|
|
23028
|
-
/** @example
|
|
24080
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
23029
24081
|
last_calculated_at?: string;
|
|
23030
24082
|
};
|
|
23031
24083
|
};
|
|
@@ -23073,7 +24125,7 @@ export interface operations {
|
|
|
23073
24125
|
completed_layers?: number;
|
|
23074
24126
|
/** @example 4 */
|
|
23075
24127
|
pending_layers?: number;
|
|
23076
|
-
/** @example
|
|
24128
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
23077
24129
|
last_calculated_at?: string;
|
|
23078
24130
|
};
|
|
23079
24131
|
};
|
|
@@ -23107,14 +24159,14 @@ export interface operations {
|
|
|
23107
24159
|
content: {
|
|
23108
24160
|
"application/json": {
|
|
23109
24161
|
data?: {
|
|
23110
|
-
/** @example
|
|
24162
|
+
/** @example 539b07d0-92cf-4a24-93b2-0941838685b9 */
|
|
23111
24163
|
wishlist_uid?: string;
|
|
23112
24164
|
listing?: {
|
|
23113
|
-
/** @example New For Sale Used Item draft •
|
|
24165
|
+
/** @example New For Sale Used Item draft • 30 Apr 2026, 5:56 AM */
|
|
23114
24166
|
draft_name?: string;
|
|
23115
|
-
/** @example LST-UIT-SAL-
|
|
24167
|
+
/** @example LST-UIT-SAL-MOL2MSI4P0W */
|
|
23116
24168
|
sku?: string;
|
|
23117
|
-
/** @example
|
|
24169
|
+
/** @example 3dcebea4-9705-4497-8095-0b88defd9b46 */
|
|
23118
24170
|
uid?: string;
|
|
23119
24171
|
/** @example Sale */
|
|
23120
24172
|
listing_type?: string;
|
|
@@ -23501,7 +24553,7 @@ export interface operations {
|
|
|
23501
24553
|
completed_layers?: number;
|
|
23502
24554
|
/** @example 4 */
|
|
23503
24555
|
pending_layers?: number;
|
|
23504
|
-
/** @example
|
|
24556
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
23505
24557
|
last_calculated_at?: string;
|
|
23506
24558
|
};
|
|
23507
24559
|
};
|
|
@@ -23743,7 +24795,7 @@ export interface operations {
|
|
|
23743
24795
|
completed_layers?: number;
|
|
23744
24796
|
/** @example 4 */
|
|
23745
24797
|
pending_layers?: number;
|
|
23746
|
-
/** @example
|
|
24798
|
+
/** @example 30 Apr 2026, 05:56 AM */
|
|
23747
24799
|
last_calculated_at?: string;
|
|
23748
24800
|
};
|
|
23749
24801
|
};
|