@justins-home/types 1.1.56 → 1.1.58

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.
Files changed (2) hide show
  1. package/generated/api-types.ts +1522 -473
  2. package/package.json +1 -1
@@ -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;
@@ -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 91339df8-ce4f-4bdb-a718-abc447df8f0f */
5764
+ /** @example e842962f-a456-46f1-83e1-46d505103e6a */
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 29 Apr 2026, 11:13 PM */
5794
+ /** @example 30 Apr 2026, 05:15 AM */
5715
5795
  created?: string;
5716
5796
  /** @example 0 seconds ago */
5717
5797
  email_verified_at?: string;
@@ -5801,150 +5881,560 @@ export interface operations {
5801
5881
  };
5802
5882
  };
5803
5883
  };
5804
- dashboardStatsAdmin: {
5884
+ reservedBookingsAdmin: {
5805
5885
  parameters: {
5806
- query?: never;
5886
+ query?: {
5887
+ /** @description Number of bookings per page. */
5888
+ per_page?: number;
5889
+ };
5807
5890
  header?: never;
5808
5891
  path?: never;
5809
5892
  cookie?: never;
5810
5893
  };
5811
- requestBody?: never;
5812
- responses: {
5813
- /** @description Retrieve admin dashboard stats */
5814
- 200: {
5815
- headers: {
5816
- [name: string]: unknown;
5817
- };
5818
- content: {
5819
- "application/json": {
5820
- /** @example Dashboard stats fetched */
5821
- message?: string;
5822
- /** @example null */
5823
- event?: string | null;
5824
- data?: {
5825
- system_scale?: {
5826
- /** @example 1240 */
5827
- total_users?: number;
5828
- /** @example 312 */
5829
- active_landlords?: number;
5830
- /** @example 845 */
5831
- total_properties?: number;
5832
- /** @example 780 */
5833
- active_tenancies?: number;
5834
- };
5835
- operational_health?: {
5836
- /** @example 156 */
5837
- inspections_this_month?: number;
5838
- /** @example 12 */
5839
- overdue_inspections?: number;
5840
- /** @example 48 */
5841
- open_maintenance?: number;
5842
- /** @example 98.2 */
5843
- sla_24h?: number;
5844
- };
5845
- financial?: {
5846
- /** @example 142000 */
5847
- revenue_mtd?: number;
5848
- /** @example 2.4 */
5849
- vacancy_rate?: number;
5850
- /** @example 18500 */
5851
- arrears_total?: number;
5852
- /** @example 8.2 */
5853
- maintenance_ratio?: number;
5854
- };
5855
- };
5856
- };
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;
5857
5902
  };
5858
5903
  };
5859
5904
  };
5860
- };
5861
- inventoryOverviewAdmin: {
5862
- parameters: {
5863
- query?: never;
5864
- header?: never;
5865
- path?: never;
5866
- cookie?: never;
5867
- };
5868
- requestBody?: never;
5869
5905
  responses: {
5870
- /** @description Retrieve admin inventory overview stats */
5906
+ /** @description Retrieve all reserved bookings for admin oversight */
5871
5907
  200: {
5872
5908
  headers: {
5873
5909
  [name: string]: unknown;
5874
5910
  };
5875
5911
  content: {
5876
5912
  "application/json": {
5877
- /** @example Inventory overview fetched */
5913
+ /** @example Reserved bookings fetched successfully */
5878
5914
  message?: string;
5879
5915
  /** @example null */
5880
5916
  event?: string | null;
5881
5917
  data?: {
5882
- /** @example 12842 */
5883
- total_inventory?: number;
5884
- /** @example 89 */
5885
- under_review?: number;
5886
- /** @example 11204 */
5887
- verified_units?: number;
5888
- /** @example 24 */
5889
- compliance_risks?: number;
5890
- /** @example 1244 */
5891
- short_let_portfolio?: number;
5892
- /** @example 6812 */
5893
- long_term_rent?: number;
5894
- /** @example 464 */
5895
- sales_pipeline?: number;
5918
+ /**
5919
+ * @example [
5920
+ * {
5921
+ * "id": 12,
5922
+ * "listing": {
5923
+ * "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
5924
+ * "cover": {
5925
+ * "uid": "lm_34fda1",
5926
+ * "media_type": "image/jpeg",
5927
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
5928
+ * "order_index": 0,
5929
+ * "is_cover": true
5930
+ * },
5931
+ * "details": {
5932
+ * "address": "24 Windsor Court, London, SW1",
5933
+ * "title": "24 Windsor Court",
5934
+ * "type": "Rent"
5935
+ * }
5936
+ * },
5937
+ * "guest": {
5938
+ * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
5939
+ * "name": "Dominic Thomas",
5940
+ * "email": "tenant3@justinshome.test",
5941
+ * "avatar_path": null
5942
+ * },
5943
+ * "host": {
5944
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
5945
+ * "name": "Alice Taylor",
5946
+ * "email": "alice@example.com",
5947
+ * "avatar_path": null
5948
+ * },
5949
+ * "nights": 3,
5950
+ * "status": "pending",
5951
+ * "total_price": "450.00"
5952
+ * }
5953
+ * ]
5954
+ */
5955
+ items?: {
5956
+ /** @example 12 */
5957
+ id?: number;
5958
+ listing?: {
5959
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
5960
+ listing_uid?: string;
5961
+ cover?: {
5962
+ /** @example lm_34fda1 */
5963
+ uid?: string;
5964
+ /** @example image/jpeg */
5965
+ media_type?: string;
5966
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
5967
+ storage_path?: string;
5968
+ /** @example 0 */
5969
+ order_index?: number;
5970
+ /** @example true */
5971
+ is_cover?: boolean;
5972
+ };
5973
+ details?: {
5974
+ /** @example 24 Windsor Court, London, SW1 */
5975
+ address?: string;
5976
+ /** @example 24 Windsor Court */
5977
+ title?: string;
5978
+ /** @example Rent */
5979
+ type?: string;
5980
+ };
5981
+ };
5982
+ guest?: {
5983
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
5984
+ uid?: string;
5985
+ /** @example Dominic Thomas */
5986
+ name?: string;
5987
+ /** @example tenant3@justinshome.test */
5988
+ email?: string;
5989
+ /** @example null */
5990
+ avatar_path?: string | null;
5991
+ };
5992
+ host?: {
5993
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
5994
+ uid?: string;
5995
+ /** @example Alice Taylor */
5996
+ name?: string;
5997
+ /** @example alice@example.com */
5998
+ email?: string;
5999
+ /** @example null */
6000
+ avatar_path?: string | null;
6001
+ };
6002
+ /** @example 3 */
6003
+ nights?: number;
6004
+ /** @example pending */
6005
+ status?: string;
6006
+ /** @example 450.00 */
6007
+ total_price?: string;
6008
+ }[];
6009
+ pagination?: {
6010
+ /** @example 1 */
6011
+ current_page?: number;
6012
+ /** @example 15 */
6013
+ per_page?: number;
6014
+ /** @example 1 */
6015
+ total?: number;
6016
+ /** @example 1 */
6017
+ last_page?: number;
6018
+ /** @example 1 */
6019
+ from?: number;
6020
+ /** @example 1 */
6021
+ to?: number;
6022
+ };
5896
6023
  };
5897
6024
  };
5898
6025
  };
5899
6026
  };
5900
6027
  };
5901
6028
  };
5902
- planDistribution: {
6029
+ fetchAllAppointmentAdmin: {
5903
6030
  parameters: {
5904
- query?: never;
6031
+ query?: {
6032
+ /** @description Number of appointments per page. */
6033
+ per_page?: number;
6034
+ /** @description Page number. */
6035
+ page?: number;
6036
+ };
5905
6037
  header?: never;
5906
6038
  path?: never;
5907
6039
  cookie?: never;
5908
6040
  };
5909
6041
  requestBody?: never;
5910
6042
  responses: {
5911
- /** @description Retrieve admin plan distribution */
6043
+ /** @description Retrieve all appointments for admin oversight */
5912
6044
  200: {
5913
6045
  headers: {
5914
6046
  [name: string]: unknown;
5915
6047
  };
5916
6048
  content: {
5917
6049
  "application/json": {
5918
- /** @example Plan distribution fetched */
6050
+ /** @example Appointments retrieve successfully */
5919
6051
  message?: string;
5920
6052
  /** @example null */
5921
6053
  event?: string | null;
5922
6054
  data?: {
5923
- /** @example 1200 */
5924
- total?: number;
5925
- /** @example FY24 Q3 */
5926
- period?: string;
5927
6055
  /**
5928
6056
  * @example [
5929
6057
  * {
5930
- * "plan": "enterprise",
5931
- * "label": "Enterprise",
5932
- * "count": 780,
5933
- * "percentage": 65
5934
- * },
5935
- * {
5936
- * "plan": "standard",
5937
- * "label": "Standard",
5938
- * "count": 240,
5939
- * "percentage": 20
5940
- * },
5941
- * {
5942
- * "plan": "trial",
5943
- * "label": "Trial",
5944
- * "count": 180,
5945
- * "percentage": 15
5946
- * }
5947
- * ]
6058
+ * "id": 12,
6059
+ * "listing_id": 32,
6060
+ * "listing": {
6061
+ * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
6062
+ * "sku": "LST-PRP-LTR-260405-A1B2",
6063
+ * "details": {
6064
+ * "address": "24 Windsor Court, London, SW1",
6065
+ * "title": "24 Windsor Court",
6066
+ * "type": "Rent"
6067
+ * },
6068
+ * "owner": {
6069
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
6070
+ * "name": "Alice Taylor",
6071
+ * "phone": "+2348012345678",
6072
+ * "email": "alice@example.com",
6073
+ * "avatar": null,
6074
+ * "plan": null
6075
+ * },
6076
+ * "created_by": {
6077
+ * "uid": "b4afc948-66b3-415c-8287-b5f1a0728e22",
6078
+ * "name": "System Admin",
6079
+ * "phone": null,
6080
+ * "email": "admin@example.com",
6081
+ * "avatar": null,
6082
+ * "plan": null
6083
+ * },
6084
+ * "state": "published",
6085
+ * "published_at": "2026-04-25T10:00:00Z",
6086
+ * "published_since": "2 days ago",
6087
+ * "is_visible": true,
6088
+ * "summary": {
6089
+ * "property_type": "residential",
6090
+ * "bedrooms": 2,
6091
+ * "bathrooms": 1,
6092
+ * "size": "85 sqm",
6093
+ * "availability": "available"
6094
+ * },
6095
+ * "workflow": {
6096
+ * "current_step": "media",
6097
+ * "can_submit": true,
6098
+ * "missing_requirements": [],
6099
+ * "next_step": "publish",
6100
+ * "progress": {
6101
+ * "completed": 8,
6102
+ * "total": 8,
6103
+ * "percentage": 100
6104
+ * }
6105
+ * },
6106
+ * "media": {
6107
+ * "gallery": [
6108
+ * {
6109
+ * "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
6110
+ * "media_type": "image/jpeg",
6111
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
6112
+ * "order_index": 0,
6113
+ * "is_cover": true
6114
+ * }
6115
+ * ],
6116
+ * "cover": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
6117
+ * "count": 1
6118
+ * }
6119
+ * },
6120
+ * "status": "pending",
6121
+ * "scheduled": {
6122
+ * "start": "2026-05-01T09:00:00Z",
6123
+ * "end": "2026-05-01T10:00:00Z"
6124
+ * },
6125
+ * "customer": {
6126
+ * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
6127
+ * "name": "Dominic Thomas"
6128
+ * },
6129
+ * "landlord": {
6130
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
6131
+ * "name": "Alice Taylor"
6132
+ * },
6133
+ * "created_at": "2026-04-30T00:00:00Z"
6134
+ * }
6135
+ * ]
6136
+ */
6137
+ items?: {
6138
+ /** @example 12 */
6139
+ id?: number;
6140
+ /** @example 32 */
6141
+ listing_id?: number;
6142
+ listing?: {
6143
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
6144
+ uid?: string;
6145
+ /** @example LST-PRP-LTR-260405-A1B2 */
6146
+ sku?: string;
6147
+ details?: {
6148
+ /** @example 24 Windsor Court, London, SW1 */
6149
+ address?: string;
6150
+ /** @example 24 Windsor Court */
6151
+ title?: string;
6152
+ /** @example Rent */
6153
+ type?: string;
6154
+ };
6155
+ owner?: {
6156
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
6157
+ uid?: string;
6158
+ /** @example Alice Taylor */
6159
+ name?: string;
6160
+ /** @example +2348012345678 */
6161
+ phone?: string;
6162
+ /** @example alice@example.com */
6163
+ email?: string;
6164
+ /** @example null */
6165
+ avatar?: string | null;
6166
+ /** @example null */
6167
+ plan?: string | null;
6168
+ };
6169
+ created_by?: {
6170
+ /** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
6171
+ uid?: string;
6172
+ /** @example System Admin */
6173
+ name?: string;
6174
+ /** @example null */
6175
+ phone?: string | null;
6176
+ /** @example admin@example.com */
6177
+ email?: string;
6178
+ /** @example null */
6179
+ avatar?: string | null;
6180
+ /** @example null */
6181
+ plan?: string | null;
6182
+ };
6183
+ /** @example published */
6184
+ state?: string;
6185
+ /** @example 2026-04-25T10:00:00Z */
6186
+ published_at?: string;
6187
+ /** @example 2 days ago */
6188
+ published_since?: string;
6189
+ /** @example true */
6190
+ is_visible?: boolean;
6191
+ summary?: {
6192
+ /** @example residential */
6193
+ property_type?: string;
6194
+ /** @example 2 */
6195
+ bedrooms?: number;
6196
+ /** @example 1 */
6197
+ bathrooms?: number;
6198
+ /** @example 85 sqm */
6199
+ size?: string;
6200
+ /** @example available */
6201
+ availability?: string;
6202
+ };
6203
+ workflow?: {
6204
+ /** @example media */
6205
+ current_step?: string;
6206
+ /** @example true */
6207
+ can_submit?: boolean;
6208
+ /** @example [] */
6209
+ missing_requirements?: unknown[];
6210
+ /** @example publish */
6211
+ next_step?: string;
6212
+ progress?: {
6213
+ /** @example 8 */
6214
+ completed?: number;
6215
+ /** @example 8 */
6216
+ total?: number;
6217
+ /** @example 100 */
6218
+ percentage?: number;
6219
+ };
6220
+ };
6221
+ media?: {
6222
+ /**
6223
+ * @example [
6224
+ * {
6225
+ * "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
6226
+ * "media_type": "image/jpeg",
6227
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
6228
+ * "order_index": 0,
6229
+ * "is_cover": true
6230
+ * }
6231
+ * ]
6232
+ */
6233
+ gallery?: {
6234
+ /** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
6235
+ uid?: string;
6236
+ /** @example image/jpeg */
6237
+ media_type?: string;
6238
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
6239
+ storage_path?: string;
6240
+ /** @example 0 */
6241
+ order_index?: number;
6242
+ /** @example true */
6243
+ is_cover?: boolean;
6244
+ }[];
6245
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
6246
+ cover?: string;
6247
+ /** @example 1 */
6248
+ count?: number;
6249
+ };
6250
+ };
6251
+ /** @example pending */
6252
+ status?: string;
6253
+ scheduled?: {
6254
+ /** @example 2026-05-01T09:00:00Z */
6255
+ start?: string;
6256
+ /** @example 2026-05-01T10:00:00Z */
6257
+ end?: string;
6258
+ };
6259
+ customer?: {
6260
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
6261
+ uid?: string;
6262
+ /** @example Dominic Thomas */
6263
+ name?: string;
6264
+ };
6265
+ landlord?: {
6266
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
6267
+ uid?: string;
6268
+ /** @example Alice Taylor */
6269
+ name?: string;
6270
+ };
6271
+ /** @example 2026-04-30T00:00:00Z */
6272
+ created_at?: string;
6273
+ }[];
6274
+ pagination?: {
6275
+ /** @example 1 */
6276
+ current_page?: number;
6277
+ /** @example 15 */
6278
+ per_page?: number;
6279
+ /** @example 1 */
6280
+ total?: number;
6281
+ /** @example 1 */
6282
+ last_page?: number;
6283
+ /** @example 1 */
6284
+ from?: number;
6285
+ /** @example 1 */
6286
+ to?: number;
6287
+ };
6288
+ };
6289
+ };
6290
+ };
6291
+ };
6292
+ };
6293
+ };
6294
+ dashboardStatsAdmin: {
6295
+ parameters: {
6296
+ query?: never;
6297
+ header?: never;
6298
+ path?: never;
6299
+ cookie?: never;
6300
+ };
6301
+ requestBody?: never;
6302
+ responses: {
6303
+ /** @description Retrieve admin dashboard stats */
6304
+ 200: {
6305
+ headers: {
6306
+ [name: string]: unknown;
6307
+ };
6308
+ content: {
6309
+ "application/json": {
6310
+ /** @example Dashboard stats fetched */
6311
+ message?: string;
6312
+ /** @example null */
6313
+ event?: string | null;
6314
+ data?: {
6315
+ system_scale?: {
6316
+ /** @example 1240 */
6317
+ total_users?: number;
6318
+ /** @example 312 */
6319
+ active_landlords?: number;
6320
+ /** @example 845 */
6321
+ total_properties?: number;
6322
+ /** @example 780 */
6323
+ active_tenancies?: number;
6324
+ };
6325
+ operational_health?: {
6326
+ /** @example 156 */
6327
+ inspections_this_month?: number;
6328
+ /** @example 12 */
6329
+ overdue_inspections?: number;
6330
+ /** @example 48 */
6331
+ open_maintenance?: number;
6332
+ /** @example 98.2 */
6333
+ sla_24h?: number;
6334
+ };
6335
+ financial?: {
6336
+ /** @example 142000 */
6337
+ revenue_mtd?: number;
6338
+ /** @example 2.4 */
6339
+ vacancy_rate?: number;
6340
+ /** @example 18500 */
6341
+ arrears_total?: number;
6342
+ /** @example 8.2 */
6343
+ maintenance_ratio?: number;
6344
+ };
6345
+ };
6346
+ };
6347
+ };
6348
+ };
6349
+ };
6350
+ };
6351
+ inventoryOverviewAdmin: {
6352
+ parameters: {
6353
+ query?: never;
6354
+ header?: never;
6355
+ path?: never;
6356
+ cookie?: never;
6357
+ };
6358
+ requestBody?: never;
6359
+ responses: {
6360
+ /** @description Retrieve admin inventory overview stats */
6361
+ 200: {
6362
+ headers: {
6363
+ [name: string]: unknown;
6364
+ };
6365
+ content: {
6366
+ "application/json": {
6367
+ /** @example Inventory overview fetched */
6368
+ message?: string;
6369
+ /** @example null */
6370
+ event?: string | null;
6371
+ data?: {
6372
+ /** @example 12842 */
6373
+ total_inventory?: number;
6374
+ /** @example 89 */
6375
+ under_review?: number;
6376
+ /** @example 11204 */
6377
+ verified_units?: number;
6378
+ /** @example 24 */
6379
+ compliance_risks?: number;
6380
+ /** @example 1244 */
6381
+ short_let_portfolio?: number;
6382
+ /** @example 6812 */
6383
+ long_term_rent?: number;
6384
+ /** @example 464 */
6385
+ sales_pipeline?: number;
6386
+ };
6387
+ };
6388
+ };
6389
+ };
6390
+ };
6391
+ };
6392
+ planDistribution: {
6393
+ parameters: {
6394
+ query?: never;
6395
+ header?: never;
6396
+ path?: never;
6397
+ cookie?: never;
6398
+ };
6399
+ requestBody?: never;
6400
+ responses: {
6401
+ /** @description Retrieve admin plan distribution */
6402
+ 200: {
6403
+ headers: {
6404
+ [name: string]: unknown;
6405
+ };
6406
+ content: {
6407
+ "application/json": {
6408
+ /** @example Plan distribution fetched */
6409
+ message?: string;
6410
+ /** @example null */
6411
+ event?: string | null;
6412
+ data?: {
6413
+ /** @example 1200 */
6414
+ total?: number;
6415
+ /** @example FY24 Q3 */
6416
+ period?: string;
6417
+ /**
6418
+ * @example [
6419
+ * {
6420
+ * "plan": "enterprise",
6421
+ * "label": "Enterprise",
6422
+ * "count": 780,
6423
+ * "percentage": 65
6424
+ * },
6425
+ * {
6426
+ * "plan": "standard",
6427
+ * "label": "Standard",
6428
+ * "count": 240,
6429
+ * "percentage": 20
6430
+ * },
6431
+ * {
6432
+ * "plan": "trial",
6433
+ * "label": "Trial",
6434
+ * "count": 180,
6435
+ * "percentage": 15
6436
+ * }
6437
+ * ]
5948
6438
  */
5949
6439
  distribution?: {
5950
6440
  /** @example enterprise */
@@ -6239,7 +6729,7 @@ export interface operations {
6239
6729
  content: {
6240
6730
  "application/json": {
6241
6731
  data?: {
6242
- /** @example f4cc34e3-5f26-4878-afc7-5e780b59d1c5 */
6732
+ /** @example 26c7ddac-8201-4c59-b93c-8e11a59f2e6c */
6243
6733
  uid?: string;
6244
6734
  /** @example Ms. Audra Crooks II */
6245
6735
  username?: string;
@@ -6269,7 +6759,7 @@ export interface operations {
6269
6759
  timezone?: string;
6270
6760
  /** @example Customer */
6271
6761
  user_type?: string;
6272
- /** @example 29 Apr 2026, 11:13 PM */
6762
+ /** @example 30 Apr 2026, 05:15 AM */
6273
6763
  created?: string;
6274
6764
  /** @example 0 seconds ago */
6275
6765
  email_verified_at?: string;
@@ -6659,11 +7149,11 @@ export interface operations {
6659
7149
  content: {
6660
7150
  "application/json": {
6661
7151
  data?: {
6662
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
7152
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
6663
7153
  draft_name?: string;
6664
- /** @example LST-PRP-LTR-MOKO8SI4PLW */
7154
+ /** @example LST-PRP-LTR-MOL16FLL7N4 */
6665
7155
  sku?: string;
6666
- /** @example c7a05b63-3c5d-4db8-a539-7364d9c3d615 */
7156
+ /** @example a9227367-a7b5-4fd8-80c3-68d843ce7dc8 */
6667
7157
  uid?: string;
6668
7158
  /** @example Rent */
6669
7159
  listing_type?: string;
@@ -8075,7 +8565,7 @@ export interface operations {
8075
8565
  content: {
8076
8566
  "application/json": {
8077
8567
  /**
8078
- * @example Active
8568
+ * @example Pending
8079
8569
  * @enum {string}
8080
8570
  */
8081
8571
  status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
@@ -8090,7 +8580,7 @@ export interface operations {
8090
8580
  content: {
8091
8581
  "application/json": {
8092
8582
  data?: {
8093
- /** @example 43b7dcae-cbad-41ec-9e42-ef657296cb9e */
8583
+ /** @example 08060b78-ef2d-4965-b265-9df93e8d4a05 */
8094
8584
  uid?: string;
8095
8585
  /** @example Morgan Hirthe */
8096
8586
  username?: string;
@@ -8120,7 +8610,7 @@ export interface operations {
8120
8610
  timezone?: string;
8121
8611
  /** @example Customer */
8122
8612
  user_type?: string;
8123
- /** @example 29 Apr 2026, 11:13 PM */
8613
+ /** @example 30 Apr 2026, 05:15 AM */
8124
8614
  created?: string;
8125
8615
  /** @example 0 seconds ago */
8126
8616
  email_verified_at?: string;
@@ -8829,11 +9319,11 @@ export interface operations {
8829
9319
  content: {
8830
9320
  "application/json": {
8831
9321
  data?: {
8832
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
9322
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
8833
9323
  draft_name?: string;
8834
- /** @example LST-PRP-LTR-MOKO8SL5PZN */
9324
+ /** @example LST-PRP-LTR-MOL16FOS6NF */
8835
9325
  sku?: string;
8836
- /** @example 16c29009-9346-462c-b9f2-0f4a9d2bfc9d */
9326
+ /** @example 32b9c6af-44db-4ac5-b7fa-9eadcb0aea36 */
8837
9327
  uid?: string;
8838
9328
  /** @example Rent */
8839
9329
  listing_type?: string;
@@ -9273,7 +9763,7 @@ export interface operations {
9273
9763
  content: {
9274
9764
  "application/json": {
9275
9765
  data?: {
9276
- /** @example 0a82de28-8be5-41f1-bd1a-24ff57adaadc */
9766
+ /** @example 4e9e4d0c-bfec-4613-9166-07f34d57028f */
9277
9767
  uid?: string;
9278
9768
  /** @example photo */
9279
9769
  media_type?: string;
@@ -9580,32 +10070,30 @@ export interface operations {
9580
10070
  /**
9581
10071
  * @example [
9582
10072
  * {
9583
- * "draft_name": "New Short Let Property draft • 29 Apr 2026, 11:13 PM",
9584
- * "sku": "LST-PRP-SHL-MOKO8SMNOEP",
9585
- * "uid": "3167d314-db52-4412-ab5f-3342b6e93b8e",
9586
- * "listing_type": "Short Let",
9587
- * "vertical": "Property",
9588
- * "arrangement_type": "let_to_let",
9589
- * "arrangement_type_label": "Let to Let",
10073
+ * "draft_name": "New For Sale Used Item draft • 30 Apr 2026, 5:15 AM",
10074
+ * "sku": "LST-UIT-SAL-MOL16FQ8HSP",
10075
+ * "uid": "4eb6e1c5-c65b-43ba-b66d-01372118d019",
10076
+ * "listing_type": "Sale",
10077
+ * "vertical": "Used Item",
10078
+ * "arrangement_type": null,
10079
+ * "arrangement_type_label": null,
9590
10080
  * "price": null,
9591
10081
  * "state": "draft",
9592
10082
  * "published_at": null,
9593
10083
  * "published_since": null,
9594
10084
  * "is_visible": false,
9595
- * "summary": {
9596
- * "availability": null
9597
- * },
10085
+ * "summary": [],
9598
10086
  * "workflow": [],
9599
10087
  * "media": []
9600
10088
  * },
9601
10089
  * {
9602
- * "draft_name": "New Short Let Property draft • 29 Apr 2026, 11:13 PM",
9603
- * "sku": "LST-PRP-SHL-MOKO8SMQBCO",
9604
- * "uid": "c65f6fa8-400c-4b77-a96b-15baddb3a407",
9605
- * "listing_type": "Short Let",
10090
+ * "draft_name": "New For Sale Property draft • 30 Apr 2026, 5:15 AM",
10091
+ * "sku": "LST-PRP-SAL-MOL16FQAQ2H",
10092
+ * "uid": "597092f5-f09a-4736-853d-49a79ceff657",
10093
+ * "listing_type": "Sale",
9606
10094
  * "vertical": "Property",
9607
- * "arrangement_type": "let_to_let",
9608
- * "arrangement_type_label": "Let to Let",
10095
+ * "arrangement_type": "standard_residential",
10096
+ * "arrangement_type_label": "Standard Residential",
9609
10097
  * "price": null,
9610
10098
  * "state": "draft",
9611
10099
  * "published_at": null,
@@ -9620,20 +10108,20 @@ export interface operations {
9620
10108
  * ]
9621
10109
  */
9622
10110
  data?: {
9623
- /** @example New Short Let Property draft • 29 Apr 2026, 11:13 PM */
10111
+ /** @example New For Sale Used Item draft • 30 Apr 2026, 5:15 AM */
9624
10112
  draft_name?: string;
9625
- /** @example LST-PRP-SHL-MOKO8SMNOEP */
10113
+ /** @example LST-UIT-SAL-MOL16FQ8HSP */
9626
10114
  sku?: string;
9627
- /** @example 3167d314-db52-4412-ab5f-3342b6e93b8e */
10115
+ /** @example 4eb6e1c5-c65b-43ba-b66d-01372118d019 */
9628
10116
  uid?: string;
9629
- /** @example Short Let */
10117
+ /** @example Sale */
9630
10118
  listing_type?: string;
9631
- /** @example Property */
10119
+ /** @example Used Item */
9632
10120
  vertical?: string;
9633
- /** @example let_to_let */
9634
- arrangement_type?: string;
9635
- /** @example Let to Let */
9636
- arrangement_type_label?: string;
10121
+ /** @example null */
10122
+ arrangement_type?: string | null;
10123
+ /** @example null */
10124
+ arrangement_type_label?: string | null;
9637
10125
  /** @example null */
9638
10126
  price?: string | null;
9639
10127
  /** @example draft */
@@ -9644,10 +10132,8 @@ export interface operations {
9644
10132
  published_since?: string | null;
9645
10133
  /** @example false */
9646
10134
  is_visible?: boolean;
9647
- summary?: {
9648
- /** @example null */
9649
- availability?: string | null;
9650
- };
10135
+ /** @example [] */
10136
+ summary?: unknown[];
9651
10137
  /** @example [] */
9652
10138
  workflow?: unknown[];
9653
10139
  /** @example [] */
@@ -9819,11 +10305,11 @@ export interface operations {
9819
10305
  content: {
9820
10306
  "application/json": {
9821
10307
  data?: {
9822
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
10308
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
9823
10309
  draft_name?: string;
9824
- /** @example LST-PRP-LTR-MOKO8SN2RCD */
10310
+ /** @example LST-PRP-LTR-MOL16FQJFLK */
9825
10311
  sku?: string;
9826
- /** @example 2b2dd5e0-9390-4fa6-82c0-fe8a31f7958e */
10312
+ /** @example 44bb6532-64db-4361-8918-1d26a7b1a523 */
9827
10313
  uid?: string;
9828
10314
  /** @example Rent */
9829
10315
  listing_type?: string;
@@ -9886,11 +10372,11 @@ export interface operations {
9886
10372
  content: {
9887
10373
  "application/json": {
9888
10374
  data?: {
9889
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
10375
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
9890
10376
  draft_name?: string;
9891
- /** @example LST-PRP-LTR-MOKO8SN73WW */
10377
+ /** @example LST-PRP-LTR-MOL16FQOMGH */
9892
10378
  sku?: string;
9893
- /** @example 93c29bc3-4fa8-4b4f-9742-01073265e239 */
10379
+ /** @example c89189b1-c907-41a1-833e-3a9015f12839 */
9894
10380
  uid?: string;
9895
10381
  /** @example Rent */
9896
10382
  listing_type?: string;
@@ -9943,11 +10429,11 @@ export interface operations {
9943
10429
  content: {
9944
10430
  "application/json": {
9945
10431
  data?: {
9946
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
10432
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
9947
10433
  draft_name?: string;
9948
- /** @example LST-PRP-LTR-MOKO8SNCJGL */
10434
+ /** @example LST-PRP-LTR-MOL16FQUH0F */
9949
10435
  sku?: string;
9950
- /** @example aa62209a-94b5-4c12-8bf9-e8e1dc9094b0 */
10436
+ /** @example f1abfcf4-3b57-40d6-8bb4-e241e502690f */
9951
10437
  uid?: string;
9952
10438
  /** @example Rent */
9953
10439
  listing_type?: string;
@@ -10000,11 +10486,11 @@ export interface operations {
10000
10486
  content: {
10001
10487
  "application/json": {
10002
10488
  data?: {
10003
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
10489
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
10004
10490
  draft_name?: string;
10005
- /** @example LST-PRP-LTR-MOKO8SNJCYN */
10491
+ /** @example LST-PRP-LTR-MOL16FQZCN6 */
10006
10492
  sku?: string;
10007
- /** @example e9df8d3d-8f88-4f01-9eff-6960ec06e7dc */
10493
+ /** @example 6c00f00b-d438-4699-942b-5869d61f3a0a */
10008
10494
  uid?: string;
10009
10495
  /** @example Rent */
10010
10496
  listing_type?: string;
@@ -10198,7 +10684,7 @@ export interface operations {
10198
10684
  content: {
10199
10685
  "application/json": {
10200
10686
  data?: {
10201
- /** @example 235 */
10687
+ /** @example 250 */
10202
10688
  id?: number;
10203
10689
  /** @example 1 */
10204
10690
  category_id?: number;
@@ -10272,7 +10758,7 @@ export interface operations {
10272
10758
  content: {
10273
10759
  "application/json": {
10274
10760
  data?: {
10275
- /** @example 236 */
10761
+ /** @example 251 */
10276
10762
  id?: number;
10277
10763
  /** @example 1 */
10278
10764
  category_id?: number;
@@ -10311,7 +10797,7 @@ export interface operations {
10311
10797
  content: {
10312
10798
  "application/json": {
10313
10799
  data?: {
10314
- /** @example 237 */
10800
+ /** @example 252 */
10315
10801
  id?: number;
10316
10802
  /** @example 1 */
10317
10803
  category_id?: number;
@@ -10349,7 +10835,7 @@ export interface operations {
10349
10835
  /**
10350
10836
  * @example [
10351
10837
  * {
10352
- * "id": 335,
10838
+ * "id": 360,
10353
10839
  * "name": "Exterior",
10354
10840
  * "description": "For Exterior categories",
10355
10841
  * "display_order": 1,
@@ -10359,7 +10845,7 @@ export interface operations {
10359
10845
  * "is_active": true
10360
10846
  * },
10361
10847
  * {
10362
- * "id": 336,
10848
+ * "id": 361,
10363
10849
  * "name": "Exterior",
10364
10850
  * "description": "For Exterior categories",
10365
10851
  * "display_order": 1,
@@ -10371,7 +10857,7 @@ export interface operations {
10371
10857
  * ]
10372
10858
  */
10373
10859
  data?: {
10374
- /** @example 335 */
10860
+ /** @example 360 */
10375
10861
  id?: number;
10376
10862
  /** @example Exterior */
10377
10863
  name?: string;
@@ -10435,7 +10921,7 @@ export interface operations {
10435
10921
  content: {
10436
10922
  "application/json": {
10437
10923
  data?: {
10438
- /** @example 337 */
10924
+ /** @example 362 */
10439
10925
  id?: number;
10440
10926
  /** @example Exterior */
10441
10927
  name?: string;
@@ -10502,7 +10988,7 @@ export interface operations {
10502
10988
  content: {
10503
10989
  "application/json": {
10504
10990
  data?: {
10505
- /** @example 338 */
10991
+ /** @example 363 */
10506
10992
  id?: number;
10507
10993
  /** @example Exterior */
10508
10994
  name?: string;
@@ -10543,7 +11029,7 @@ export interface operations {
10543
11029
  content: {
10544
11030
  "application/json": {
10545
11031
  data?: {
10546
- /** @example 339 */
11032
+ /** @example 364 */
10547
11033
  id?: number;
10548
11034
  /** @example Exterior */
10549
11035
  name?: string;
@@ -10806,7 +11292,7 @@ export interface operations {
10806
11292
  content: {
10807
11293
  "application/json": {
10808
11294
  data?: {
10809
- /** @example 145 */
11295
+ /** @example 155 */
10810
11296
  id?: number;
10811
11297
  /** @example email_fa_0 */
10812
11298
  key?: string;
@@ -10820,9 +11306,9 @@ export interface operations {
10820
11306
  metadata_schema?: unknown[];
10821
11307
  /** @example true */
10822
11308
  is_active?: boolean;
10823
- /** @example 2026-04-29T23:13:50.000000Z */
11309
+ /** @example 2026-04-30T05:15:55.000000Z */
10824
11310
  created_at?: string;
10825
- /** @example 2026-04-29T23:13:50.000000Z */
11311
+ /** @example 2026-04-30T05:15:55.000000Z */
10826
11312
  updated_at?: string;
10827
11313
  };
10828
11314
  };
@@ -10882,7 +11368,7 @@ export interface operations {
10882
11368
  content: {
10883
11369
  "application/json": {
10884
11370
  data?: {
10885
- /** @example 146 */
11371
+ /** @example 156 */
10886
11372
  id?: number;
10887
11373
  /** @example email_fa_0 */
10888
11374
  key?: string;
@@ -10896,9 +11382,9 @@ export interface operations {
10896
11382
  metadata_schema?: unknown[];
10897
11383
  /** @example true */
10898
11384
  is_active?: boolean;
10899
- /** @example 2026-04-29T23:13:50.000000Z */
11385
+ /** @example 2026-04-30T05:15:55.000000Z */
10900
11386
  created_at?: string;
10901
- /** @example 2026-04-29T23:13:50.000000Z */
11387
+ /** @example 2026-04-30T05:15:55.000000Z */
10902
11388
  updated_at?: string;
10903
11389
  };
10904
11390
  };
@@ -12164,25 +12650,25 @@ export interface operations {
12164
12650
  /**
12165
12651
  * @example [
12166
12652
  * {
12167
- * "key": "culpa",
12168
- * "name": "earum",
12169
- * "description": "A natus quisquam qui accusamus.",
12653
+ * "key": "reiciendis",
12654
+ * "name": "quas",
12655
+ * "description": "Omnis cum deleniti aut voluptatum.",
12170
12656
  * "value_type": "string"
12171
12657
  * },
12172
12658
  * {
12173
- * "key": "veritatis",
12174
- * "name": "voluptas",
12175
- * "description": "Sit accusamus quibusdam non et aliquam ut.",
12659
+ * "key": "voluptatem",
12660
+ * "name": "cupiditate",
12661
+ * "description": "Dolor illum rerum rerum occaecati necessitatibus.",
12176
12662
  * "value_type": "string"
12177
12663
  * }
12178
12664
  * ]
12179
12665
  */
12180
12666
  data?: {
12181
- /** @example culpa */
12667
+ /** @example reiciendis */
12182
12668
  key?: string;
12183
- /** @example earum */
12669
+ /** @example quas */
12184
12670
  name?: string;
12185
- /** @example A natus quisquam qui accusamus. */
12671
+ /** @example Omnis cum deleniti aut voluptatum. */
12186
12672
  description?: string;
12187
12673
  /** @example string */
12188
12674
  value_type?: string;
@@ -13424,13 +13910,13 @@ export interface operations {
13424
13910
  };
13425
13911
  } | {
13426
13912
  data?: {
13427
- /** @example 7a630af5-a874-4884-9253-2509ebad3f5f */
13913
+ /** @example f324b6eb-bea7-4747-b83b-e1e8f71d24f8 */
13428
13914
  uid?: string;
13429
13915
  /** @example follow_up */
13430
13916
  inspection_type?: string;
13431
13917
  /** @example cancelled */
13432
13918
  status?: string;
13433
- /** @example 05 May 2026, 01:12 PM */
13919
+ /** @example 05 May 2026, 07:14 PM */
13434
13920
  scheduled_date?: string;
13435
13921
  /** @example null */
13436
13922
  completed_date?: string | null;
@@ -13438,11 +13924,11 @@ export interface operations {
13438
13924
  condition_rating?: string;
13439
13925
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
13440
13926
  summary?: string;
13441
- /** @example 28 Jun 2026, 10:00 AM */
13927
+ /** @example 28 Jun 2026, 04:02 PM */
13442
13928
  next_inspection_date?: string;
13443
- /** @example 29 Apr 2026, 11:13 PM */
13929
+ /** @example 30 Apr 2026, 05:15 AM */
13444
13930
  created_at?: string;
13445
- /** @example 29 Apr 2026, 11:13 PM */
13931
+ /** @example 30 Apr 2026, 05:15 AM */
13446
13932
  updated_at?: string;
13447
13933
  };
13448
13934
  };
@@ -13497,13 +13983,13 @@ export interface operations {
13497
13983
  content: {
13498
13984
  "application/json": {
13499
13985
  data?: {
13500
- /** @example c1c53cf8-b38b-44b5-8156-05487d4cda62 */
13986
+ /** @example d80a0f16-da27-4b61-9a64-87354e2651f8 */
13501
13987
  uid?: string;
13502
13988
  /** @example follow_up */
13503
13989
  inspection_type?: string;
13504
13990
  /** @example cancelled */
13505
13991
  status?: string;
13506
- /** @example 05 May 2026, 01:12 PM */
13992
+ /** @example 05 May 2026, 07:14 PM */
13507
13993
  scheduled_date?: string;
13508
13994
  /** @example null */
13509
13995
  completed_date?: string | null;
@@ -13511,11 +13997,11 @@ export interface operations {
13511
13997
  condition_rating?: string;
13512
13998
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
13513
13999
  summary?: string;
13514
- /** @example 28 Jun 2026, 10:00 AM */
14000
+ /** @example 28 Jun 2026, 04:02 PM */
13515
14001
  next_inspection_date?: string;
13516
- /** @example 29 Apr 2026, 11:13 PM */
14002
+ /** @example 30 Apr 2026, 05:15 AM */
13517
14003
  created_at?: string;
13518
- /** @example 29 Apr 2026, 11:13 PM */
14004
+ /** @example 30 Apr 2026, 05:15 AM */
13519
14005
  updated_at?: string;
13520
14006
  };
13521
14007
  };
@@ -13610,13 +14096,13 @@ export interface operations {
13610
14096
  content: {
13611
14097
  "application/json": {
13612
14098
  data?: {
13613
- /** @example cf9f55ab-23d6-48ac-994a-1e4ae1c732d8 */
14099
+ /** @example cecb73b7-2cf0-48dc-9278-d1928c85eb80 */
13614
14100
  uid?: string;
13615
14101
  /** @example follow_up */
13616
14102
  inspection_type?: string;
13617
14103
  /** @example cancelled */
13618
14104
  status?: string;
13619
- /** @example 23 Apr 2026, 10:38 AM */
14105
+ /** @example 23 Apr 2026, 04:40 PM */
13620
14106
  scheduled_date?: string;
13621
14107
  /** @example null */
13622
14108
  completed_date?: string | null;
@@ -13624,11 +14110,11 @@ export interface operations {
13624
14110
  condition_rating?: string;
13625
14111
  /** @example Et animi quos velit et fugiat. */
13626
14112
  summary?: string;
13627
- /** @example 01 Aug 2026, 06:32 PM */
14113
+ /** @example 02 Aug 2026, 12:34 AM */
13628
14114
  next_inspection_date?: string;
13629
- /** @example 29 Apr 2026, 11:13 PM */
14115
+ /** @example 30 Apr 2026, 05:15 AM */
13630
14116
  created_at?: string;
13631
- /** @example 29 Apr 2026, 11:13 PM */
14117
+ /** @example 30 Apr 2026, 05:15 AM */
13632
14118
  updated_at?: string;
13633
14119
  };
13634
14120
  };
@@ -13665,13 +14151,13 @@ export interface operations {
13665
14151
  content: {
13666
14152
  "application/json": {
13667
14153
  data?: {
13668
- /** @example 1baa64c0-1e75-4871-a86a-854bb3cfd97a */
14154
+ /** @example 7a403a9e-852d-4cc1-b2dc-fc71ad212df3 */
13669
14155
  uid?: string;
13670
14156
  /** @example follow_up */
13671
14157
  inspection_type?: string;
13672
14158
  /** @example cancelled */
13673
14159
  status?: string;
13674
- /** @example 05 May 2026, 01:12 PM */
14160
+ /** @example 05 May 2026, 07:14 PM */
13675
14161
  scheduled_date?: string;
13676
14162
  /** @example null */
13677
14163
  completed_date?: string | null;
@@ -13679,11 +14165,11 @@ export interface operations {
13679
14165
  condition_rating?: string;
13680
14166
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
13681
14167
  summary?: string;
13682
- /** @example 28 Jun 2026, 10:00 AM */
14168
+ /** @example 28 Jun 2026, 04:02 PM */
13683
14169
  next_inspection_date?: string;
13684
- /** @example 29 Apr 2026, 11:13 PM */
14170
+ /** @example 30 Apr 2026, 05:15 AM */
13685
14171
  created_at?: string;
13686
- /** @example 29 Apr 2026, 11:13 PM */
14172
+ /** @example 30 Apr 2026, 05:15 AM */
13687
14173
  updated_at?: string;
13688
14174
  };
13689
14175
  };
@@ -13720,13 +14206,13 @@ export interface operations {
13720
14206
  content: {
13721
14207
  "application/json": {
13722
14208
  data?: {
13723
- /** @example a3c01cf2-cf82-4248-ba15-a11df580d67d */
14209
+ /** @example 22f0cbf3-eab7-4f89-9d4b-cf8d5d72009b */
13724
14210
  uid?: string;
13725
14211
  /** @example follow_up */
13726
14212
  inspection_type?: string;
13727
14213
  /** @example cancelled */
13728
14214
  status?: string;
13729
- /** @example 23 Apr 2026, 10:38 AM */
14215
+ /** @example 23 Apr 2026, 04:40 PM */
13730
14216
  scheduled_date?: string;
13731
14217
  /** @example null */
13732
14218
  completed_date?: string | null;
@@ -13734,11 +14220,11 @@ export interface operations {
13734
14220
  condition_rating?: string;
13735
14221
  /** @example Et animi quos velit et fugiat. */
13736
14222
  summary?: string;
13737
- /** @example 01 Aug 2026, 06:32 PM */
14223
+ /** @example 02 Aug 2026, 12:34 AM */
13738
14224
  next_inspection_date?: string;
13739
- /** @example 29 Apr 2026, 11:13 PM */
14225
+ /** @example 30 Apr 2026, 05:15 AM */
13740
14226
  created_at?: string;
13741
- /** @example 29 Apr 2026, 11:13 PM */
14227
+ /** @example 30 Apr 2026, 05:15 AM */
13742
14228
  updated_at?: string;
13743
14229
  };
13744
14230
  };
@@ -13865,7 +14351,7 @@ export interface operations {
13865
14351
  };
13866
14352
  } | {
13867
14353
  data?: {
13868
- /** @example 354bf8c0-93be-482d-9fc6-074b12d43a2a */
14354
+ /** @example 9e87ff69-e0d4-4c54-8afc-615c74cd09ba */
13869
14355
  uid?: string;
13870
14356
  /** @example 1 */
13871
14357
  tenancy_id?: number;
@@ -13877,17 +14363,17 @@ export interface operations {
13877
14363
  status?: string;
13878
14364
  /** @example low */
13879
14365
  priority?: string;
13880
- /** @example 28 Apr 2026, 12:42 PM */
14366
+ /** @example 28 Apr 2026, 06:44 PM */
13881
14367
  reported_at?: string;
13882
14368
  /** @example null */
13883
14369
  assigned_at?: string | null;
13884
14370
  /** @example null */
13885
14371
  completed_at?: string | null;
13886
- /** @example 01 May 2026, 09:07 AM */
14372
+ /** @example 01 May 2026, 03:09 PM */
13887
14373
  sla_deadline?: string;
13888
- /** @example 29 Apr 2026, 11:13 PM */
14374
+ /** @example 30 Apr 2026, 05:15 AM */
13889
14375
  created_at?: string;
13890
- /** @example 29 Apr 2026, 11:13 PM */
14376
+ /** @example 30 Apr 2026, 05:15 AM */
13891
14377
  updated_at?: string;
13892
14378
  };
13893
14379
  };
@@ -13924,7 +14410,7 @@ export interface operations {
13924
14410
  content: {
13925
14411
  "application/json": {
13926
14412
  data?: {
13927
- /** @example 058d8c98-3661-4dc1-a73e-9a020c9af955 */
14413
+ /** @example 55ffb8e1-c332-4a93-b1cb-1c4df498cc8b */
13928
14414
  uid?: string;
13929
14415
  /** @example 1 */
13930
14416
  tenancy_id?: number;
@@ -13936,17 +14422,17 @@ export interface operations {
13936
14422
  status?: string;
13937
14423
  /** @example low */
13938
14424
  priority?: string;
13939
- /** @example 28 Apr 2026, 12:42 PM */
14425
+ /** @example 28 Apr 2026, 06:44 PM */
13940
14426
  reported_at?: string;
13941
14427
  /** @example null */
13942
14428
  assigned_at?: string | null;
13943
14429
  /** @example null */
13944
14430
  completed_at?: string | null;
13945
- /** @example 01 May 2026, 09:07 AM */
14431
+ /** @example 01 May 2026, 03:09 PM */
13946
14432
  sla_deadline?: string;
13947
- /** @example 29 Apr 2026, 11:13 PM */
14433
+ /** @example 30 Apr 2026, 05:15 AM */
13948
14434
  created_at?: string;
13949
- /** @example 29 Apr 2026, 11:13 PM */
14435
+ /** @example 30 Apr 2026, 05:15 AM */
13950
14436
  updated_at?: string;
13951
14437
  };
13952
14438
  };
@@ -13983,7 +14469,7 @@ export interface operations {
13983
14469
  content: {
13984
14470
  "application/json": {
13985
14471
  data?: {
13986
- /** @example 829d5d4c-e0d5-4542-92e0-6384981bcc13 */
14472
+ /** @example b8acd57f-fa50-4e75-97fc-741ee2acb556 */
13987
14473
  uid?: string;
13988
14474
  /** @example 1 */
13989
14475
  tenancy_id?: number;
@@ -13995,17 +14481,17 @@ export interface operations {
13995
14481
  status?: string;
13996
14482
  /** @example emergency */
13997
14483
  priority?: string;
13998
- /** @example 23 Apr 2026, 10:27 AM */
14484
+ /** @example 23 Apr 2026, 04:29 PM */
13999
14485
  reported_at?: string;
14000
- /** @example 28 Apr 2026, 06:47 AM */
14486
+ /** @example 28 Apr 2026, 12:49 PM */
14001
14487
  assigned_at?: string;
14002
14488
  /** @example null */
14003
14489
  completed_at?: string | null;
14004
- /** @example 01 May 2026, 12:09 PM */
14490
+ /** @example 01 May 2026, 06:11 PM */
14005
14491
  sla_deadline?: string;
14006
- /** @example 29 Apr 2026, 11:13 PM */
14492
+ /** @example 30 Apr 2026, 05:15 AM */
14007
14493
  created_at?: string;
14008
- /** @example 29 Apr 2026, 11:13 PM */
14494
+ /** @example 30 Apr 2026, 05:15 AM */
14009
14495
  updated_at?: string;
14010
14496
  };
14011
14497
  };
@@ -14042,7 +14528,7 @@ export interface operations {
14042
14528
  content: {
14043
14529
  "application/json": {
14044
14530
  data?: {
14045
- /** @example 84ed1d4f-3afa-405a-af3c-6acbf4abf970 */
14531
+ /** @example 74dd39a8-b6d5-4519-bd1f-a4f2bf84d3d9 */
14046
14532
  uid?: string;
14047
14533
  /** @example 1 */
14048
14534
  tenancy_id?: number;
@@ -14054,17 +14540,17 @@ export interface operations {
14054
14540
  status?: string;
14055
14541
  /** @example emergency */
14056
14542
  priority?: string;
14057
- /** @example 23 Apr 2026, 10:27 AM */
14543
+ /** @example 23 Apr 2026, 04:29 PM */
14058
14544
  reported_at?: string;
14059
- /** @example 28 Apr 2026, 06:47 AM */
14545
+ /** @example 28 Apr 2026, 12:49 PM */
14060
14546
  assigned_at?: string;
14061
14547
  /** @example null */
14062
14548
  completed_at?: string | null;
14063
- /** @example 01 May 2026, 12:09 PM */
14549
+ /** @example 01 May 2026, 06:11 PM */
14064
14550
  sla_deadline?: string;
14065
- /** @example 29 Apr 2026, 11:13 PM */
14551
+ /** @example 30 Apr 2026, 05:15 AM */
14066
14552
  created_at?: string;
14067
- /** @example 29 Apr 2026, 11:13 PM */
14553
+ /** @example 30 Apr 2026, 05:15 AM */
14068
14554
  updated_at?: string;
14069
14555
  };
14070
14556
  };
@@ -14101,7 +14587,7 @@ export interface operations {
14101
14587
  content: {
14102
14588
  "application/json": {
14103
14589
  data?: {
14104
- /** @example 4fb179af-0d3f-4efc-b78a-f946cb861732 */
14590
+ /** @example 329d1594-8cb7-4377-a027-64621a2ceb81 */
14105
14591
  uid?: string;
14106
14592
  /** @example 1 */
14107
14593
  tenancy_id?: number;
@@ -14113,17 +14599,17 @@ export interface operations {
14113
14599
  status?: string;
14114
14600
  /** @example emergency */
14115
14601
  priority?: string;
14116
- /** @example 23 Apr 2026, 10:27 AM */
14602
+ /** @example 23 Apr 2026, 04:29 PM */
14117
14603
  reported_at?: string;
14118
- /** @example 28 Apr 2026, 06:47 AM */
14604
+ /** @example 28 Apr 2026, 12:49 PM */
14119
14605
  assigned_at?: string;
14120
14606
  /** @example null */
14121
14607
  completed_at?: string | null;
14122
- /** @example 01 May 2026, 12:09 PM */
14608
+ /** @example 01 May 2026, 06:11 PM */
14123
14609
  sla_deadline?: string;
14124
- /** @example 29 Apr 2026, 11:13 PM */
14610
+ /** @example 30 Apr 2026, 05:15 AM */
14125
14611
  created_at?: string;
14126
- /** @example 29 Apr 2026, 11:13 PM */
14612
+ /** @example 30 Apr 2026, 05:15 AM */
14127
14613
  updated_at?: string;
14128
14614
  };
14129
14615
  };
@@ -14823,7 +15309,7 @@ export interface operations {
14823
15309
  content: {
14824
15310
  "application/json": {
14825
15311
  data?: {
14826
- /** @example 418 */
15312
+ /** @example 443 */
14827
15313
  id?: number;
14828
15314
  /** @example 2 */
14829
15315
  listing_id?: number;
@@ -14879,7 +15365,7 @@ export interface operations {
14879
15365
  /** @example dogunfx */
14880
15366
  name?: string;
14881
15367
  };
14882
- /** @example 2026-04-29T23:13:51.000000Z */
15368
+ /** @example 2026-04-30T05:15:56.000000Z */
14883
15369
  created_at?: string;
14884
15370
  };
14885
15371
  };
@@ -14906,7 +15392,7 @@ export interface operations {
14906
15392
  content: {
14907
15393
  "application/json": {
14908
15394
  data?: {
14909
- /** @example 419 */
15395
+ /** @example 444 */
14910
15396
  id?: number;
14911
15397
  /** @example 2 */
14912
15398
  listing_id?: number;
@@ -14937,61 +15423,304 @@ export interface operations {
14937
15423
  /** @example null */
14938
15424
  availability?: string | null;
14939
15425
  };
14940
- /** @example [] */
14941
- workflow?: unknown[];
14942
- /** @example [] */
14943
- media?: unknown[];
14944
- };
14945
- /** @example completed */
14946
- status?: string;
14947
- scheduled?: {
14948
- /** @example 1981-11-10T00:00:00.000000Z */
14949
- start?: string;
14950
- /** @example 1979-12-07T00:00:00.000000Z */
14951
- end?: string;
14952
- };
14953
- customer?: {
14954
- /** @example af3a7981-f613-4482-898d-09ac3fab930b */
14955
- uid?: string;
14956
- /** @example Teagan King */
14957
- name?: string;
14958
- };
14959
- landlord?: {
14960
- /** @example bf1a9d08-45a1-474c-b494-5e7be7b71aa8 */
14961
- uid?: string;
14962
- /** @example dogunfx */
14963
- name?: string;
15426
+ /** @example [] */
15427
+ workflow?: unknown[];
15428
+ /** @example [] */
15429
+ media?: unknown[];
15430
+ };
15431
+ /** @example completed */
15432
+ status?: string;
15433
+ scheduled?: {
15434
+ /** @example 1981-11-10T00:00:00.000000Z */
15435
+ start?: string;
15436
+ /** @example 1979-12-07T00:00:00.000000Z */
15437
+ end?: string;
15438
+ };
15439
+ customer?: {
15440
+ /** @example af3a7981-f613-4482-898d-09ac3fab930b */
15441
+ uid?: string;
15442
+ /** @example Teagan King */
15443
+ name?: string;
15444
+ };
15445
+ landlord?: {
15446
+ /** @example bf1a9d08-45a1-474c-b494-5e7be7b71aa8 */
15447
+ uid?: string;
15448
+ /** @example dogunfx */
15449
+ name?: string;
15450
+ };
15451
+ /** @example 2026-04-30T05:15:56.000000Z */
15452
+ created_at?: string;
15453
+ };
15454
+ };
15455
+ };
15456
+ };
15457
+ };
15458
+ };
15459
+ fetchAllAppointment: {
15460
+ parameters: {
15461
+ query?: {
15462
+ /** @description Number of appointments per page. */
15463
+ per_page?: number;
15464
+ /** @description Page number. */
15465
+ page?: number;
15466
+ };
15467
+ header?: never;
15468
+ path?: never;
15469
+ cookie?: never;
15470
+ };
15471
+ requestBody?: never;
15472
+ responses: {
15473
+ /** @description Retrieve all appointments for the authenticated customer */
15474
+ 200: {
15475
+ headers: {
15476
+ [name: string]: unknown;
15477
+ };
15478
+ content: {
15479
+ "application/json": {
15480
+ /** @example Appointments retrieve successfully */
15481
+ message?: string;
15482
+ /** @example null */
15483
+ event?: string | null;
15484
+ data?: {
15485
+ /**
15486
+ * @example [
15487
+ * {
15488
+ * "id": 12,
15489
+ * "listing_id": 32,
15490
+ * "listing": {
15491
+ * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
15492
+ * "sku": "LST-PRP-LTR-260405-A1B2",
15493
+ * "details": {
15494
+ * "address": "24 Windsor Court, London, SW1",
15495
+ * "title": "24 Windsor Court",
15496
+ * "type": "Rent"
15497
+ * },
15498
+ * "owner": {
15499
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
15500
+ * "name": "Alice Taylor",
15501
+ * "phone": "+2348012345678",
15502
+ * "email": "alice@example.com",
15503
+ * "avatar": null,
15504
+ * "plan": null
15505
+ * },
15506
+ * "created_by": {
15507
+ * "uid": "b4afc948-66b3-415c-8287-b5f1a0728e22",
15508
+ * "name": "System Admin",
15509
+ * "phone": null,
15510
+ * "email": "admin@example.com",
15511
+ * "avatar": null,
15512
+ * "plan": null
15513
+ * },
15514
+ * "state": "published",
15515
+ * "published_at": "2026-04-25T10:00:00Z",
15516
+ * "published_since": "2 days ago",
15517
+ * "is_visible": true,
15518
+ * "summary": {
15519
+ * "property_type": "residential",
15520
+ * "bedrooms": 2,
15521
+ * "bathrooms": 1,
15522
+ * "size": "85 sqm",
15523
+ * "availability": "available"
15524
+ * },
15525
+ * "workflow": {
15526
+ * "current_step": "media",
15527
+ * "can_submit": true,
15528
+ * "missing_requirements": [],
15529
+ * "next_step": "publish",
15530
+ * "progress": {
15531
+ * "completed": 8,
15532
+ * "total": 8,
15533
+ * "percentage": 100
15534
+ * }
15535
+ * },
15536
+ * "media": {
15537
+ * "gallery": [
15538
+ * {
15539
+ * "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
15540
+ * "media_type": "image/jpeg",
15541
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
15542
+ * "order_index": 0,
15543
+ * "is_cover": true
15544
+ * }
15545
+ * ],
15546
+ * "cover": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
15547
+ * "count": 1
15548
+ * }
15549
+ * },
15550
+ * "status": "pending",
15551
+ * "scheduled": {
15552
+ * "start": "2026-05-01T09:00:00Z",
15553
+ * "end": "2026-05-01T10:00:00Z"
15554
+ * },
15555
+ * "customer": {
15556
+ * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
15557
+ * "name": "Dominic Thomas"
15558
+ * },
15559
+ * "landlord": {
15560
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
15561
+ * "name": "Alice Taylor"
15562
+ * },
15563
+ * "created_at": "2026-04-30T00:00:00Z"
15564
+ * }
15565
+ * ]
15566
+ */
15567
+ items?: {
15568
+ /** @example 12 */
15569
+ id?: number;
15570
+ /** @example 32 */
15571
+ listing_id?: number;
15572
+ listing?: {
15573
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
15574
+ uid?: string;
15575
+ /** @example LST-PRP-LTR-260405-A1B2 */
15576
+ sku?: string;
15577
+ details?: {
15578
+ /** @example 24 Windsor Court, London, SW1 */
15579
+ address?: string;
15580
+ /** @example 24 Windsor Court */
15581
+ title?: string;
15582
+ /** @example Rent */
15583
+ type?: string;
15584
+ };
15585
+ owner?: {
15586
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
15587
+ uid?: string;
15588
+ /** @example Alice Taylor */
15589
+ name?: string;
15590
+ /** @example +2348012345678 */
15591
+ phone?: string;
15592
+ /** @example alice@example.com */
15593
+ email?: string;
15594
+ /** @example null */
15595
+ avatar?: string | null;
15596
+ /** @example null */
15597
+ plan?: string | null;
15598
+ };
15599
+ created_by?: {
15600
+ /** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
15601
+ uid?: string;
15602
+ /** @example System Admin */
15603
+ name?: string;
15604
+ /** @example null */
15605
+ phone?: string | null;
15606
+ /** @example admin@example.com */
15607
+ email?: string;
15608
+ /** @example null */
15609
+ avatar?: string | null;
15610
+ /** @example null */
15611
+ plan?: string | null;
15612
+ };
15613
+ /** @example published */
15614
+ state?: string;
15615
+ /** @example 2026-04-25T10:00:00Z */
15616
+ published_at?: string;
15617
+ /** @example 2 days ago */
15618
+ published_since?: string;
15619
+ /** @example true */
15620
+ is_visible?: boolean;
15621
+ summary?: {
15622
+ /** @example residential */
15623
+ property_type?: string;
15624
+ /** @example 2 */
15625
+ bedrooms?: number;
15626
+ /** @example 1 */
15627
+ bathrooms?: number;
15628
+ /** @example 85 sqm */
15629
+ size?: string;
15630
+ /** @example available */
15631
+ availability?: string;
15632
+ };
15633
+ workflow?: {
15634
+ /** @example media */
15635
+ current_step?: string;
15636
+ /** @example true */
15637
+ can_submit?: boolean;
15638
+ /** @example [] */
15639
+ missing_requirements?: unknown[];
15640
+ /** @example publish */
15641
+ next_step?: string;
15642
+ progress?: {
15643
+ /** @example 8 */
15644
+ completed?: number;
15645
+ /** @example 8 */
15646
+ total?: number;
15647
+ /** @example 100 */
15648
+ percentage?: number;
15649
+ };
15650
+ };
15651
+ media?: {
15652
+ /**
15653
+ * @example [
15654
+ * {
15655
+ * "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
15656
+ * "media_type": "image/jpeg",
15657
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
15658
+ * "order_index": 0,
15659
+ * "is_cover": true
15660
+ * }
15661
+ * ]
15662
+ */
15663
+ gallery?: {
15664
+ /** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
15665
+ uid?: string;
15666
+ /** @example image/jpeg */
15667
+ media_type?: string;
15668
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
15669
+ storage_path?: string;
15670
+ /** @example 0 */
15671
+ order_index?: number;
15672
+ /** @example true */
15673
+ is_cover?: boolean;
15674
+ }[];
15675
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
15676
+ cover?: string;
15677
+ /** @example 1 */
15678
+ count?: number;
15679
+ };
15680
+ };
15681
+ /** @example pending */
15682
+ status?: string;
15683
+ scheduled?: {
15684
+ /** @example 2026-05-01T09:00:00Z */
15685
+ start?: string;
15686
+ /** @example 2026-05-01T10:00:00Z */
15687
+ end?: string;
15688
+ };
15689
+ customer?: {
15690
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
15691
+ uid?: string;
15692
+ /** @example Dominic Thomas */
15693
+ name?: string;
15694
+ };
15695
+ landlord?: {
15696
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
15697
+ uid?: string;
15698
+ /** @example Alice Taylor */
15699
+ name?: string;
15700
+ };
15701
+ /** @example 2026-04-30T00:00:00Z */
15702
+ created_at?: string;
15703
+ }[];
15704
+ pagination?: {
15705
+ /** @example 1 */
15706
+ current_page?: number;
15707
+ /** @example 15 */
15708
+ per_page?: number;
15709
+ /** @example 1 */
15710
+ total?: number;
15711
+ /** @example 1 */
15712
+ last_page?: number;
15713
+ /** @example 1 */
15714
+ from?: number;
15715
+ /** @example 1 */
15716
+ to?: number;
14964
15717
  };
14965
- /** @example 2026-04-29T23:13:51.000000Z */
14966
- created_at?: string;
14967
15718
  };
14968
15719
  };
14969
15720
  };
14970
15721
  };
14971
15722
  };
14972
15723
  };
14973
- fetchAllAppointment: {
14974
- parameters: {
14975
- query?: never;
14976
- header?: never;
14977
- path?: never;
14978
- cookie?: never;
14979
- };
14980
- requestBody?: never;
14981
- responses: {
14982
- 401: {
14983
- headers: {
14984
- [name: string]: unknown;
14985
- };
14986
- content: {
14987
- "application/json": {
14988
- /** @example Unauthenticated. */
14989
- message?: string;
14990
- };
14991
- };
14992
- };
14993
- };
14994
- };
14995
15724
  rescheduleAppointment: {
14996
15725
  parameters: {
14997
15726
  query?: never;
@@ -15026,7 +15755,7 @@ export interface operations {
15026
15755
  content: {
15027
15756
  "application/json": {
15028
15757
  data?: {
15029
- /** @example 420 */
15758
+ /** @example 445 */
15030
15759
  id?: number;
15031
15760
  /** @example 2 */
15032
15761
  listing_id?: number;
@@ -15082,7 +15811,7 @@ export interface operations {
15082
15811
  /** @example dogunfx */
15083
15812
  name?: string;
15084
15813
  };
15085
- /** @example 2026-04-29T23:13:51.000000Z */
15814
+ /** @example 2026-04-30T05:15:56.000000Z */
15086
15815
  created_at?: string;
15087
15816
  };
15088
15817
  };
@@ -15109,7 +15838,7 @@ export interface operations {
15109
15838
  content: {
15110
15839
  "application/json": {
15111
15840
  data?: {
15112
- /** @example 421 */
15841
+ /** @example 446 */
15113
15842
  id?: number;
15114
15843
  /** @example 2 */
15115
15844
  listing_id?: number;
@@ -15165,7 +15894,7 @@ export interface operations {
15165
15894
  /** @example dogunfx */
15166
15895
  name?: string;
15167
15896
  };
15168
- /** @example 2026-04-29T23:13:51.000000Z */
15897
+ /** @example 2026-04-30T05:15:56.000000Z */
15169
15898
  created_at?: string;
15170
15899
  };
15171
15900
  };
@@ -15192,7 +15921,7 @@ export interface operations {
15192
15921
  content: {
15193
15922
  "application/json": {
15194
15923
  data?: {
15195
- /** @example 422 */
15924
+ /** @example 447 */
15196
15925
  id?: number;
15197
15926
  /** @example 2 */
15198
15927
  listing_id?: number;
@@ -15248,7 +15977,7 @@ export interface operations {
15248
15977
  /** @example dogunfx */
15249
15978
  name?: string;
15250
15979
  };
15251
- /** @example 2026-04-29T23:13:51.000000Z */
15980
+ /** @example 2026-04-30T05:15:56.000000Z */
15252
15981
  created_at?: string;
15253
15982
  };
15254
15983
  };
@@ -16265,7 +16994,7 @@ export interface operations {
16265
16994
  content: {
16266
16995
  "application/json": {
16267
16996
  data?: {
16268
- /** @example aa18d9c3-8b58-4633-bc3a-6ff8488be7b6 */
16997
+ /** @example 37e8e7e6-a759-4398-a968-017e7a463a9d */
16269
16998
  uid?: string;
16270
16999
  /** @example Ms. Audra Crooks II */
16271
17000
  username?: string;
@@ -16295,7 +17024,7 @@ export interface operations {
16295
17024
  timezone?: string;
16296
17025
  /** @example Customer */
16297
17026
  user_type?: string;
16298
- /** @example 29 Apr 2026, 11:13 PM */
17027
+ /** @example 30 Apr 2026, 05:15 AM */
16299
17028
  created?: string;
16300
17029
  /** @example 1 second ago */
16301
17030
  email_verified_at?: string;
@@ -16764,7 +17493,7 @@ export interface operations {
16764
17493
  content: {
16765
17494
  "application/json": {
16766
17495
  data?: {
16767
- /** @example 3f7f1071-93fa-4347-b9d1-0b4247b6e27e */
17496
+ /** @example bed2f257-6451-4150-9bad-7f10389f5687 */
16768
17497
  uid?: string;
16769
17498
  /** @example Ms. Audra Crooks II */
16770
17499
  username?: string;
@@ -16794,7 +17523,7 @@ export interface operations {
16794
17523
  timezone?: string;
16795
17524
  /** @example Customer */
16796
17525
  user_type?: string;
16797
- /** @example 29 Apr 2026, 11:13 PM */
17526
+ /** @example 30 Apr 2026, 05:15 AM */
16798
17527
  created?: string;
16799
17528
  /** @example 0 seconds ago */
16800
17529
  email_verified_at?: string;
@@ -16834,42 +17563,187 @@ export interface operations {
16834
17563
  state?: string;
16835
17564
  }[];
16836
17565
  };
16837
- /** @example null */
16838
- address?: string | null;
16839
- /** @example null */
16840
- address_line_2?: string | null;
16841
- /** @example null */
16842
- legal_full_name?: string | null;
16843
- /** @example null */
16844
- date_of_birth?: string | null;
16845
- /** @example null */
16846
- nationality?: string | null;
16847
- /** @example null */
16848
- landlord_type?: string | null;
16849
- /** @example null */
16850
- company_name?: string | null;
16851
- /** @example null */
16852
- company_registration_number?: string | null;
16853
- /** @example null */
16854
- city?: string | null;
16855
- /** @example null */
16856
- postcode?: string | null;
16857
- /** @example null */
16858
- country?: string | null;
16859
- /** @example null */
16860
- accepts_supported_housing?: string | null;
16861
- /** @example null */
16862
- accepts_company_lets?: string | null;
16863
- /** @example null */
16864
- accepts_pets?: string | null;
16865
- /** @example null */
16866
- accepts_dss?: string | null;
16867
- /** @example null */
16868
- maintenance_contact_type?: string | null;
16869
- /** @example null */
16870
- prefers_email_contact?: string | null;
16871
- /** @example null */
16872
- prefers_sms_contact?: string | null;
17566
+ /** @example null */
17567
+ address?: string | null;
17568
+ /** @example null */
17569
+ address_line_2?: string | null;
17570
+ /** @example null */
17571
+ legal_full_name?: string | null;
17572
+ /** @example null */
17573
+ date_of_birth?: string | null;
17574
+ /** @example null */
17575
+ nationality?: string | null;
17576
+ /** @example null */
17577
+ landlord_type?: string | null;
17578
+ /** @example null */
17579
+ company_name?: string | null;
17580
+ /** @example null */
17581
+ company_registration_number?: string | null;
17582
+ /** @example null */
17583
+ city?: string | null;
17584
+ /** @example null */
17585
+ postcode?: string | null;
17586
+ /** @example null */
17587
+ country?: string | null;
17588
+ /** @example null */
17589
+ accepts_supported_housing?: string | null;
17590
+ /** @example null */
17591
+ accepts_company_lets?: string | null;
17592
+ /** @example null */
17593
+ accepts_pets?: string | null;
17594
+ /** @example null */
17595
+ accepts_dss?: string | null;
17596
+ /** @example null */
17597
+ maintenance_contact_type?: string | null;
17598
+ /** @example null */
17599
+ prefers_email_contact?: string | null;
17600
+ /** @example null */
17601
+ prefers_sms_contact?: string | null;
17602
+ };
17603
+ };
17604
+ };
17605
+ };
17606
+ };
17607
+ };
17608
+ reservedBookingsLandlord: {
17609
+ parameters: {
17610
+ query?: {
17611
+ /** @description Number of bookings per page. */
17612
+ per_page?: number;
17613
+ };
17614
+ header?: never;
17615
+ path?: never;
17616
+ cookie?: never;
17617
+ };
17618
+ requestBody?: {
17619
+ content: {
17620
+ "application/json": {
17621
+ /**
17622
+ * @description Must be at least 1. Must not be greater than 100.
17623
+ * @example 1
17624
+ */
17625
+ per_page?: number | null;
17626
+ };
17627
+ };
17628
+ };
17629
+ responses: {
17630
+ /** @description Retrieve landlord reserved bookings */
17631
+ 200: {
17632
+ headers: {
17633
+ [name: string]: unknown;
17634
+ };
17635
+ content: {
17636
+ "application/json": {
17637
+ /** @example Reserved bookings fetched successfully */
17638
+ message?: string;
17639
+ /** @example null */
17640
+ event?: string | null;
17641
+ data?: {
17642
+ /**
17643
+ * @example [
17644
+ * {
17645
+ * "id": 12,
17646
+ * "listing": {
17647
+ * "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
17648
+ * "cover": {
17649
+ * "uid": "lm_34fda1",
17650
+ * "media_type": "image/jpeg",
17651
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
17652
+ * "order_index": 0,
17653
+ * "is_cover": true
17654
+ * },
17655
+ * "details": {
17656
+ * "address": "24 Windsor Court, London, SW1",
17657
+ * "title": "24 Windsor Court",
17658
+ * "type": "Rent"
17659
+ * }
17660
+ * },
17661
+ * "guest": {
17662
+ * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
17663
+ * "name": "Dominic Thomas",
17664
+ * "email": "tenant3@justinshome.test",
17665
+ * "avatar_path": null
17666
+ * },
17667
+ * "host": {
17668
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
17669
+ * "name": "Alice Taylor",
17670
+ * "email": "alice@example.com",
17671
+ * "avatar_path": null
17672
+ * },
17673
+ * "nights": 3,
17674
+ * "status": "pending",
17675
+ * "total_price": "450.00"
17676
+ * }
17677
+ * ]
17678
+ */
17679
+ items?: {
17680
+ /** @example 12 */
17681
+ id?: number;
17682
+ listing?: {
17683
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
17684
+ listing_uid?: string;
17685
+ cover?: {
17686
+ /** @example lm_34fda1 */
17687
+ uid?: string;
17688
+ /** @example image/jpeg */
17689
+ media_type?: string;
17690
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
17691
+ storage_path?: string;
17692
+ /** @example 0 */
17693
+ order_index?: number;
17694
+ /** @example true */
17695
+ is_cover?: boolean;
17696
+ };
17697
+ details?: {
17698
+ /** @example 24 Windsor Court, London, SW1 */
17699
+ address?: string;
17700
+ /** @example 24 Windsor Court */
17701
+ title?: string;
17702
+ /** @example Rent */
17703
+ type?: string;
17704
+ };
17705
+ };
17706
+ guest?: {
17707
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
17708
+ uid?: string;
17709
+ /** @example Dominic Thomas */
17710
+ name?: string;
17711
+ /** @example tenant3@justinshome.test */
17712
+ email?: string;
17713
+ /** @example null */
17714
+ avatar_path?: string | null;
17715
+ };
17716
+ host?: {
17717
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
17718
+ uid?: string;
17719
+ /** @example Alice Taylor */
17720
+ name?: string;
17721
+ /** @example alice@example.com */
17722
+ email?: string;
17723
+ /** @example null */
17724
+ avatar_path?: string | null;
17725
+ };
17726
+ /** @example 3 */
17727
+ nights?: number;
17728
+ /** @example pending */
17729
+ status?: string;
17730
+ /** @example 450.00 */
17731
+ total_price?: string;
17732
+ }[];
17733
+ pagination?: {
17734
+ /** @example 1 */
17735
+ current_page?: number;
17736
+ /** @example 15 */
17737
+ per_page?: number;
17738
+ /** @example 1 */
17739
+ total?: number;
17740
+ /** @example 1 */
17741
+ last_page?: number;
17742
+ /** @example 1 */
17743
+ from?: number;
17744
+ /** @example 1 */
17745
+ to?: number;
17746
+ };
16873
17747
  };
16874
17748
  };
16875
17749
  };
@@ -16915,11 +17789,11 @@ export interface operations {
16915
17789
  content: {
16916
17790
  "application/json": {
16917
17791
  data?: {
16918
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
17792
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
16919
17793
  draft_name?: string;
16920
- /** @example LST-PRP-LTR-MOKO8S9PGJT */
17794
+ /** @example LST-PRP-LTR-MOL16FDOTDG */
16921
17795
  sku?: string;
16922
- /** @example 04d9e615-b868-4b23-9447-73ceb0b00b3f */
17796
+ /** @example 40528962-3ce0-4c25-9bf6-f77f793aa506 */
16923
17797
  uid?: string;
16924
17798
  /** @example Rent */
16925
17799
  listing_type?: string;
@@ -17043,9 +17917,9 @@ export interface operations {
17043
17917
  /**
17044
17918
  * @example [
17045
17919
  * {
17046
- * "draft_name": "New For Rent Property draft • 29 Apr 2026, 11:13 PM",
17047
- * "sku": "LST-PRP-LTR-MOKO8SAOQES",
17048
- * "uid": "13b0afdb-9734-4d39-aa3d-ae3f6e807d4d",
17920
+ * "draft_name": "New For Rent Property draft • 30 Apr 2026, 5:15 AM",
17921
+ * "sku": "LST-PRP-LTR-MOL16FEL8YW",
17922
+ * "uid": "e92b6ba2-ee42-4865-9a29-1320e765e67a",
17049
17923
  * "listing_type": "Rent",
17050
17924
  * "vertical": "Property",
17051
17925
  * "arrangement_type": "let_to_let",
@@ -17062,9 +17936,9 @@ export interface operations {
17062
17936
  * "media": []
17063
17937
  * },
17064
17938
  * {
17065
- * "draft_name": "New Short Let Property draft • 29 Apr 2026, 11:13 PM",
17066
- * "sku": "LST-PRP-SHL-MOKO8SARAGI",
17067
- * "uid": "0b5ab724-954c-4e44-98a8-1c95c69050d2",
17939
+ * "draft_name": "New Short Let Property draft • 30 Apr 2026, 5:15 AM",
17940
+ * "sku": "LST-PRP-SHL-MOL16FEMGZ8",
17941
+ * "uid": "df173b18-c4aa-4a44-8a02-78dfde409cb9",
17068
17942
  * "listing_type": "Short Let",
17069
17943
  * "vertical": "Property",
17070
17944
  * "arrangement_type": "short_term_managed",
@@ -17083,11 +17957,11 @@ export interface operations {
17083
17957
  * ]
17084
17958
  */
17085
17959
  data?: {
17086
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
17960
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
17087
17961
  draft_name?: string;
17088
- /** @example LST-PRP-LTR-MOKO8SAOQES */
17962
+ /** @example LST-PRP-LTR-MOL16FEL8YW */
17089
17963
  sku?: string;
17090
- /** @example 13b0afdb-9734-4d39-aa3d-ae3f6e807d4d */
17964
+ /** @example e92b6ba2-ee42-4865-9a29-1320e765e67a */
17091
17965
  uid?: string;
17092
17966
  /** @example Rent */
17093
17967
  listing_type?: string;
@@ -17197,9 +18071,9 @@ export interface operations {
17197
18071
  /**
17198
18072
  * @example [
17199
18073
  * {
17200
- * "draft_name": "New For Rent Property draft • 29 Apr 2026, 11:13 PM",
17201
- * "sku": "LST-PRP-LTR-MOKO8SAX6YO",
17202
- * "uid": "0f49d773-b9c0-4e44-b4b2-64440e410f53",
18074
+ * "draft_name": "New For Rent Property draft • 30 Apr 2026, 5:15 AM",
18075
+ * "sku": "LST-PRP-LTR-MOL16FEUHXK",
18076
+ * "uid": "e5b382f5-7f9e-4abf-b74a-c01f85d35fad",
17203
18077
  * "listing_type": "Rent",
17204
18078
  * "vertical": "Property",
17205
18079
  * "arrangement_type": "let_to_let",
@@ -17216,9 +18090,9 @@ export interface operations {
17216
18090
  * "media": []
17217
18091
  * },
17218
18092
  * {
17219
- * "draft_name": "New Short Let Property draft • 29 Apr 2026, 11:13 PM",
17220
- * "sku": "LST-PRP-SHL-MOKO8SAZYAW",
17221
- * "uid": "cd598853-80bd-409b-812c-6d5eb670db46",
18093
+ * "draft_name": "New Short Let Property draft • 30 Apr 2026, 5:15 AM",
18094
+ * "sku": "LST-PRP-SHL-MOL16FEXFKG",
18095
+ * "uid": "990874e8-0cde-4c9d-b495-acd0eaa2184c",
17222
18096
  * "listing_type": "Short Let",
17223
18097
  * "vertical": "Property",
17224
18098
  * "arrangement_type": "short_term_managed",
@@ -17237,11 +18111,11 @@ export interface operations {
17237
18111
  * ]
17238
18112
  */
17239
18113
  data?: {
17240
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
18114
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
17241
18115
  draft_name?: string;
17242
- /** @example LST-PRP-LTR-MOKO8SAX6YO */
18116
+ /** @example LST-PRP-LTR-MOL16FEUHXK */
17243
18117
  sku?: string;
17244
- /** @example 0f49d773-b9c0-4e44-b4b2-64440e410f53 */
18118
+ /** @example e5b382f5-7f9e-4abf-b74a-c01f85d35fad */
17245
18119
  uid?: string;
17246
18120
  /** @example Rent */
17247
18121
  listing_type?: string;
@@ -18490,7 +19364,7 @@ export interface operations {
18490
19364
  content: {
18491
19365
  "application/json": {
18492
19366
  data?: {
18493
- /** @example b522382e-7d9b-4be8-92c6-b81fd3c49e72 */
19367
+ /** @example 922fc02a-9067-4986-b810-4a567ec99a8c */
18494
19368
  uid?: string;
18495
19369
  /** @example photo */
18496
19370
  media_type?: string;
@@ -18639,11 +19513,11 @@ export interface operations {
18639
19513
  content: {
18640
19514
  "application/json": {
18641
19515
  data?: {
18642
- /** @example New For Rent Property draft • 29 Apr 2026, 11:13 PM */
19516
+ /** @example New For Rent Property draft • 30 Apr 2026, 5:15 AM */
18643
19517
  draft_name?: string;
18644
- /** @example LST-PRP-LTR-MOKO8SDFB06 */
19518
+ /** @example LST-PRP-LTR-MOL16FHG1FQ */
18645
19519
  sku?: string;
18646
- /** @example 5e7f7b66-93b2-41dc-ac66-243b4ef5cf5f */
19520
+ /** @example c150e9cc-6b87-40e7-87e2-e6151555dee4 */
18647
19521
  uid?: string;
18648
19522
  /** @example Rent */
18649
19523
  listing_type?: string;
@@ -18803,7 +19677,7 @@ export interface operations {
18803
19677
  content: {
18804
19678
  "application/json": {
18805
19679
  data?: {
18806
- /** @example d0609156-1ea3-4959-aaee-22c06f00be59 */
19680
+ /** @example a1a8e057-c91d-475d-91ec-cf251c26b2ad */
18807
19681
  uid?: string;
18808
19682
  /** @example null */
18809
19683
  compliances?: string | null;
@@ -18854,7 +19728,7 @@ export interface operations {
18854
19728
  content: {
18855
19729
  "application/json": {
18856
19730
  data?: {
18857
- /** @example 151 */
19731
+ /** @example 156 */
18858
19732
  id?: number;
18859
19733
  compliance?: {
18860
19734
  /** @example 1 */
@@ -18876,7 +19750,7 @@ export interface operations {
18876
19750
  reviewed_by?: number;
18877
19751
  /** @example null */
18878
19752
  reviewed_at?: string | null;
18879
- /** @example 2026-04-29T23:13:50.000000Z */
19753
+ /** @example 2026-04-30T05:15:55.000000Z */
18880
19754
  created_at?: string;
18881
19755
  };
18882
19756
  };
@@ -18931,7 +19805,7 @@ export interface operations {
18931
19805
  /**
18932
19806
  * @example [
18933
19807
  * {
18934
- * "uid": "77d3b5ee-f74b-4578-8c74-447e8f3c6d1a",
19808
+ * "uid": "a30c7428-3eea-4f4f-b99b-f1008a2fdeee",
18935
19809
  * "listing_id": 1,
18936
19810
  * "landlord_id": 2,
18937
19811
  * "tenant_id": 2,
@@ -18943,10 +19817,10 @@ export interface operations {
18943
19817
  * "is_periodic": false,
18944
19818
  * "company_name": null,
18945
19819
  * "company_registration_number": null,
18946
- * "created_at": "2026-04-29T23:13:50.000000Z"
19820
+ * "created_at": "2026-04-30T05:15:55.000000Z"
18947
19821
  * },
18948
19822
  * {
18949
- * "uid": "c0552fd4-01de-463a-a4cf-f3945ee1dca4",
19823
+ * "uid": "edcc86e1-a05f-492e-a825-3a551b29fa91",
18950
19824
  * "listing_id": 1,
18951
19825
  * "landlord_id": 2,
18952
19826
  * "tenant_id": 2,
@@ -18958,12 +19832,12 @@ export interface operations {
18958
19832
  * "is_periodic": false,
18959
19833
  * "company_name": null,
18960
19834
  * "company_registration_number": null,
18961
- * "created_at": "2026-04-29T23:13:50.000000Z"
19835
+ * "created_at": "2026-04-30T05:15:55.000000Z"
18962
19836
  * }
18963
19837
  * ]
18964
19838
  */
18965
19839
  data?: {
18966
- /** @example 77d3b5ee-f74b-4578-8c74-447e8f3c6d1a */
19840
+ /** @example a30c7428-3eea-4f4f-b99b-f1008a2fdeee */
18967
19841
  uid?: string;
18968
19842
  /** @example 1 */
18969
19843
  listing_id?: number;
@@ -18987,7 +19861,7 @@ export interface operations {
18987
19861
  company_name?: string | null;
18988
19862
  /** @example null */
18989
19863
  company_registration_number?: string | null;
18990
- /** @example 2026-04-29T23:13:50.000000Z */
19864
+ /** @example 2026-04-30T05:15:55.000000Z */
18991
19865
  created_at?: string;
18992
19866
  }[];
18993
19867
  links?: {
@@ -19074,7 +19948,7 @@ export interface operations {
19074
19948
  /**
19075
19949
  * @example [
19076
19950
  * {
19077
- * "uid": "8ac571d2-3164-4e67-9a70-560433802b36",
19951
+ * "uid": "dc7cd96e-fa33-4550-b246-02334feebefb",
19078
19952
  * "listing_id": 1,
19079
19953
  * "landlord_id": 2,
19080
19954
  * "tenant_id": 2,
@@ -19086,10 +19960,10 @@ export interface operations {
19086
19960
  * "is_periodic": false,
19087
19961
  * "company_name": null,
19088
19962
  * "company_registration_number": null,
19089
- * "created_at": "2026-04-29T23:13:50.000000Z"
19963
+ * "created_at": "2026-04-30T05:15:55.000000Z"
19090
19964
  * },
19091
19965
  * {
19092
- * "uid": "f84b8cd5-1a12-441f-bff4-86f39e5caf44",
19966
+ * "uid": "3544417a-db48-45ba-8342-c812b45f484e",
19093
19967
  * "listing_id": 1,
19094
19968
  * "landlord_id": 2,
19095
19969
  * "tenant_id": 2,
@@ -19101,12 +19975,12 @@ export interface operations {
19101
19975
  * "is_periodic": false,
19102
19976
  * "company_name": null,
19103
19977
  * "company_registration_number": null,
19104
- * "created_at": "2026-04-29T23:13:50.000000Z"
19978
+ * "created_at": "2026-04-30T05:15:55.000000Z"
19105
19979
  * }
19106
19980
  * ]
19107
19981
  */
19108
19982
  data?: {
19109
- /** @example 8ac571d2-3164-4e67-9a70-560433802b36 */
19983
+ /** @example dc7cd96e-fa33-4550-b246-02334feebefb */
19110
19984
  uid?: string;
19111
19985
  /** @example 1 */
19112
19986
  listing_id?: number;
@@ -19130,7 +20004,7 @@ export interface operations {
19130
20004
  company_name?: string | null;
19131
20005
  /** @example null */
19132
20006
  company_registration_number?: string | null;
19133
- /** @example 2026-04-29T23:13:50.000000Z */
20007
+ /** @example 2026-04-30T05:15:55.000000Z */
19134
20008
  created_at?: string;
19135
20009
  }[];
19136
20010
  links?: {
@@ -19237,7 +20111,7 @@ export interface operations {
19237
20111
  content: {
19238
20112
  "application/json": {
19239
20113
  data?: {
19240
- /** @example 221 */
20114
+ /** @example 231 */
19241
20115
  id?: number;
19242
20116
  compliance?: {
19243
20117
  /** @example 1 */
@@ -19257,9 +20131,9 @@ export interface operations {
19257
20131
  rejection_reason?: string | null;
19258
20132
  /** @example 1 */
19259
20133
  reviewed_by?: number;
19260
- /** @example 2026-04-29T23:13:50.000000Z */
20134
+ /** @example 2026-04-30T05:15:55.000000Z */
19261
20135
  reviewed_at?: string;
19262
- /** @example 2026-04-29T23:13:50.000000Z */
20136
+ /** @example 2026-04-30T05:15:55.000000Z */
19263
20137
  created_at?: string;
19264
20138
  };
19265
20139
  };
@@ -19286,7 +20160,7 @@ export interface operations {
19286
20160
  content: {
19287
20161
  "application/json": {
19288
20162
  data?: {
19289
- /** @example 222 */
20163
+ /** @example 232 */
19290
20164
  id?: number;
19291
20165
  compliance?: {
19292
20166
  /** @example 1 */
@@ -19306,9 +20180,9 @@ export interface operations {
19306
20180
  rejection_reason?: string | null;
19307
20181
  /** @example 1 */
19308
20182
  reviewed_by?: number;
19309
- /** @example 2026-04-29T23:13:50.000000Z */
20183
+ /** @example 2026-04-30T05:15:55.000000Z */
19310
20184
  reviewed_at?: string;
19311
- /** @example 2026-04-29T23:13:50.000000Z */
20185
+ /** @example 2026-04-30T05:15:55.000000Z */
19312
20186
  created_at?: string;
19313
20187
  };
19314
20188
  };
@@ -20440,37 +21314,37 @@ export interface operations {
20440
21314
  /**
20441
21315
  * @example [
20442
21316
  * {
20443
- * "uid": "8fc3c007-8088-463d-aaa2-50480327d33a",
21317
+ * "uid": "e7f33de9-3ec5-4850-920d-ab8c8a960a19",
20444
21318
  * "tenancy_id": 1,
20445
21319
  * "title": "Quos velit et fugiat sunt nihil.",
20446
21320
  * "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.",
20447
21321
  * "status": "reported",
20448
21322
  * "priority": "emergency",
20449
- * "reported_at": "23 Apr 2026, 10:27 AM",
20450
- * "assigned_at": "28 Apr 2026, 06:47 AM",
21323
+ * "reported_at": "23 Apr 2026, 04:29 PM",
21324
+ * "assigned_at": "28 Apr 2026, 12:49 PM",
20451
21325
  * "completed_at": null,
20452
- * "sla_deadline": "01 May 2026, 12:09 PM",
20453
- * "created_at": "29 Apr 2026, 11:13 PM",
20454
- * "updated_at": "29 Apr 2026, 11:13 PM"
21326
+ * "sla_deadline": "01 May 2026, 06:11 PM",
21327
+ * "created_at": "30 Apr 2026, 05:15 AM",
21328
+ * "updated_at": "30 Apr 2026, 05:15 AM"
20455
21329
  * },
20456
21330
  * {
20457
- * "uid": "b584085e-5f7e-49fe-8f85-5c0b8ca12c45",
21331
+ * "uid": "2eee3e8c-ff8f-4ba5-ac3a-3ad7bf0f0900",
20458
21332
  * "tenancy_id": 1,
20459
21333
  * "title": "Fugit deleniti distinctio eum doloremque.",
20460
21334
  * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
20461
21335
  * "status": "completed",
20462
21336
  * "priority": "normal",
20463
- * "reported_at": "25 Apr 2026, 11:05 PM",
21337
+ * "reported_at": "26 Apr 2026, 05:07 AM",
20464
21338
  * "assigned_at": null,
20465
21339
  * "completed_at": null,
20466
- * "sla_deadline": "02 May 2026, 08:09 PM",
20467
- * "created_at": "29 Apr 2026, 11:13 PM",
20468
- * "updated_at": "29 Apr 2026, 11:13 PM"
21340
+ * "sla_deadline": "03 May 2026, 02:11 AM",
21341
+ * "created_at": "30 Apr 2026, 05:15 AM",
21342
+ * "updated_at": "30 Apr 2026, 05:15 AM"
20469
21343
  * }
20470
21344
  * ]
20471
21345
  */
20472
21346
  data?: {
20473
- /** @example 8fc3c007-8088-463d-aaa2-50480327d33a */
21347
+ /** @example e7f33de9-3ec5-4850-920d-ab8c8a960a19 */
20474
21348
  uid?: string;
20475
21349
  /** @example 1 */
20476
21350
  tenancy_id?: number;
@@ -20482,17 +21356,17 @@ export interface operations {
20482
21356
  status?: string;
20483
21357
  /** @example emergency */
20484
21358
  priority?: string;
20485
- /** @example 23 Apr 2026, 10:27 AM */
21359
+ /** @example 23 Apr 2026, 04:29 PM */
20486
21360
  reported_at?: string;
20487
- /** @example 28 Apr 2026, 06:47 AM */
21361
+ /** @example 28 Apr 2026, 12:49 PM */
20488
21362
  assigned_at?: string;
20489
21363
  /** @example null */
20490
21364
  completed_at?: string | null;
20491
- /** @example 01 May 2026, 12:09 PM */
21365
+ /** @example 01 May 2026, 06:11 PM */
20492
21366
  sla_deadline?: string;
20493
- /** @example 29 Apr 2026, 11:13 PM */
21367
+ /** @example 30 Apr 2026, 05:15 AM */
20494
21368
  created_at?: string;
20495
- /** @example 29 Apr 2026, 11:13 PM */
21369
+ /** @example 30 Apr 2026, 05:15 AM */
20496
21370
  updated_at?: string;
20497
21371
  }[];
20498
21372
  links?: {
@@ -20608,13 +21482,13 @@ export interface operations {
20608
21482
  };
20609
21483
  } | {
20610
21484
  data?: {
20611
- /** @example 464ef9a2-3c6e-4170-9c34-5bce4dc874d0 */
21485
+ /** @example 4ea24962-4b02-4df8-961b-8f287e014837 */
20612
21486
  uid?: string;
20613
21487
  /** @example image */
20614
21488
  file_type?: string;
20615
21489
  /** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
20616
21490
  url?: string;
20617
- /** @example 2026-04-29T23:13:51.000000Z */
21491
+ /** @example 2026-04-30T05:15:56.000000Z */
20618
21492
  created_at?: string;
20619
21493
  };
20620
21494
  };
@@ -20659,7 +21533,7 @@ export interface operations {
20659
21533
  content: {
20660
21534
  "application/json": {
20661
21535
  data?: {
20662
- /** @example 159 */
21536
+ /** @example 164 */
20663
21537
  id?: number;
20664
21538
  /** @example property_inquiry */
20665
21539
  type?: string;
@@ -20675,7 +21549,7 @@ export interface operations {
20675
21549
  };
20676
21550
  /** @example null */
20677
21551
  last_message_at?: string | null;
20678
- /** @example 2026-04-29T23:13:51.000000Z */
21552
+ /** @example 2026-04-30T05:15:56.000000Z */
20679
21553
  created_at?: string;
20680
21554
  };
20681
21555
  };
@@ -21086,7 +21960,7 @@ export interface operations {
21086
21960
  };
21087
21961
  content: {
21088
21962
  "application/json": {
21089
- /** @example f8f909d9-eae3-4df9-92ab-3bfe6ab9b33c */
21963
+ /** @example 185b69d6-1893-4466-8361-3efd48c1b747 */
21090
21964
  id?: string;
21091
21965
  /** @example APPOINTMENT_CREATED */
21092
21966
  type?: string;
@@ -21098,7 +21972,7 @@ export interface operations {
21098
21972
  data?: unknown[];
21099
21973
  /** @example null */
21100
21974
  read_at?: string | null;
21101
- /** @example 2026-04-29T23:13:51.000000Z */
21975
+ /** @example 2026-04-30T05:15:56.000000Z */
21102
21976
  created_at?: string;
21103
21977
  };
21104
21978
  };
@@ -21491,21 +22365,21 @@ export interface operations {
21491
22365
  content: {
21492
22366
  "application/json": {
21493
22367
  data?: {
21494
- /** @example 353 */
22368
+ /** @example 373 */
21495
22369
  id?: number;
21496
22370
  /** @example 1 */
21497
22371
  rating?: number;
21498
22372
  /** @example Nice Listing */
21499
22373
  comment?: string;
21500
22374
  reviewer?: {
21501
- /** @example 7 */
22375
+ /** @example 12 */
21502
22376
  id?: number;
21503
- /** @example Sienna Palmer */
22377
+ /** @example Tara Marshall */
21504
22378
  name?: string;
21505
22379
  };
21506
- /** @example 29 Apr 2026, 11:13 PM */
22380
+ /** @example 30 Apr 2026, 05:15 AM */
21507
22381
  created_at?: string;
21508
- /** @example 29 Apr 2026, 11:13 PM */
22382
+ /** @example 30 Apr 2026, 05:15 AM */
21509
22383
  updated_at?: string;
21510
22384
  };
21511
22385
  };
@@ -21549,21 +22423,21 @@ export interface operations {
21549
22423
  content: {
21550
22424
  "application/json": {
21551
22425
  data?: {
21552
- /** @example 354 */
22426
+ /** @example 374 */
21553
22427
  id?: number;
21554
22428
  /** @example 1 */
21555
22429
  rating?: number;
21556
22430
  /** @example Nice Listing */
21557
22431
  comment?: string;
21558
22432
  reviewer?: {
21559
- /** @example 1 */
22433
+ /** @example 26 */
21560
22434
  id?: number;
21561
- /** @example System Admin */
22435
+ /** @example Arthur Reid */
21562
22436
  name?: string;
21563
22437
  };
21564
- /** @example 29 Apr 2026, 11:13 PM */
22438
+ /** @example 30 Apr 2026, 05:15 AM */
21565
22439
  created_at?: string;
21566
- /** @example 29 Apr 2026, 11:13 PM */
22440
+ /** @example 30 Apr 2026, 05:15 AM */
21567
22441
  updated_at?: string;
21568
22442
  };
21569
22443
  };
@@ -21605,21 +22479,21 @@ export interface operations {
21605
22479
  content: {
21606
22480
  "application/json": {
21607
22481
  data?: {
21608
- /** @example 355 */
22482
+ /** @example 375 */
21609
22483
  id?: number;
21610
22484
  /** @example 1 */
21611
22485
  rating?: number;
21612
22486
  /** @example Nice Listing */
21613
22487
  comment?: string;
21614
22488
  reviewer?: {
21615
- /** @example 15 */
22489
+ /** @example 26 */
21616
22490
  id?: number;
21617
- /** @example Sabrina Owen */
22491
+ /** @example Arthur Reid */
21618
22492
  name?: string;
21619
22493
  };
21620
- /** @example 29 Apr 2026, 11:13 PM */
22494
+ /** @example 30 Apr 2026, 05:15 AM */
21621
22495
  created_at?: string;
21622
- /** @example 29 Apr 2026, 11:13 PM */
22496
+ /** @example 30 Apr 2026, 05:15 AM */
21623
22497
  updated_at?: string;
21624
22498
  };
21625
22499
  };
@@ -21646,21 +22520,21 @@ export interface operations {
21646
22520
  content: {
21647
22521
  "application/json": {
21648
22522
  data?: {
21649
- /** @example 356 */
22523
+ /** @example 376 */
21650
22524
  id?: number;
21651
22525
  /** @example 1 */
21652
22526
  rating?: number;
21653
22527
  /** @example Nice Listing */
21654
22528
  comment?: string;
21655
22529
  reviewer?: {
21656
- /** @example 13 */
22530
+ /** @example 6 */
21657
22531
  id?: number;
21658
- /** @example Matthew Campbell */
22532
+ /** @example Rowena Patel */
21659
22533
  name?: string;
21660
22534
  };
21661
- /** @example 29 Apr 2026, 11:13 PM */
22535
+ /** @example 30 Apr 2026, 05:15 AM */
21662
22536
  created_at?: string;
21663
- /** @example 29 Apr 2026, 11:13 PM */
22537
+ /** @example 30 Apr 2026, 05:15 AM */
21664
22538
  updated_at?: string;
21665
22539
  };
21666
22540
  };
@@ -21687,7 +22561,7 @@ export interface operations {
21687
22561
  content: {
21688
22562
  "application/json": {
21689
22563
  data?: {
21690
- /** @example 5db55135-8c68-4b2b-b911-f5bbfb1eab2a */
22564
+ /** @example e4c48ced-19f5-4a69-9f3e-aa5f779ecaa0 */
21691
22565
  uid?: string;
21692
22566
  /** @example 1 */
21693
22567
  listing_id?: number;
@@ -21695,15 +22569,15 @@ export interface operations {
21695
22569
  landlord_id?: number;
21696
22570
  /** @example 2 */
21697
22571
  tenant_id?: number;
21698
- /** @example 4881.50 */
22572
+ /** @example 3953.32 */
21699
22573
  rent_amount?: string;
21700
- /** @example 2151.17 */
22574
+ /** @example 2975.75 */
21701
22575
  deposit_amount?: string;
21702
- /** @example offer_accepted */
22576
+ /** @example periodic */
21703
22577
  state?: string;
21704
- /** @example 2025-11-04T00:00:00.000000Z */
22578
+ /** @example 2025-07-14T00:00:00.000000Z */
21705
22579
  start_date?: string;
21706
- /** @example 2026-11-04T00:00:00.000000Z */
22580
+ /** @example 2026-07-14T00:00:00.000000Z */
21707
22581
  end_date?: string;
21708
22582
  /** @example false */
21709
22583
  is_periodic?: boolean;
@@ -21711,7 +22585,7 @@ export interface operations {
21711
22585
  company_name?: string | null;
21712
22586
  /** @example null */
21713
22587
  company_registration_number?: string | null;
21714
- /** @example 2026-04-29T23:13:51.000000Z */
22588
+ /** @example 2026-04-30T05:15:56.000000Z */
21715
22589
  created_at?: string;
21716
22590
  /** @example [] */
21717
22591
  compliances?: unknown[];
@@ -21788,7 +22662,7 @@ export interface operations {
21788
22662
  content: {
21789
22663
  "application/json": {
21790
22664
  data?: {
21791
- /** @example 51751717-e5f2-422f-aebe-fded079e38c5 */
22665
+ /** @example a41ff5eb-5da1-497d-9d43-f60d7014b2a1 */
21792
22666
  uid?: string;
21793
22667
  /** @example 1 */
21794
22668
  listing_id?: number;
@@ -21812,7 +22686,7 @@ export interface operations {
21812
22686
  company_name?: string | null;
21813
22687
  /** @example null */
21814
22688
  company_registration_number?: string | null;
21815
- /** @example 2026-04-29T23:13:51.000000Z */
22689
+ /** @example 2026-04-30T05:15:56.000000Z */
21816
22690
  created_at?: string;
21817
22691
  };
21818
22692
  };
@@ -22106,7 +22980,7 @@ export interface operations {
22106
22980
  * "changed_by_user_id": 3,
22107
22981
  * "changed_by_name": "Teagan King",
22108
22982
  * "comment": "Qui commodi incidunt iure odit.",
22109
- * "created_at": "2025-12-22T10:00:50.000000Z"
22983
+ * "created_at": "2025-12-22T16:02:55.000000Z"
22110
22984
  * },
22111
22985
  * {
22112
22986
  * "from_state": "pre_move_in_ready",
@@ -22114,7 +22988,7 @@ export interface operations {
22114
22988
  * "changed_by_user_id": 3,
22115
22989
  * "changed_by_name": "Teagan King",
22116
22990
  * "comment": null,
22117
- * "created_at": "2025-11-07T17:56:30.000000Z"
22991
+ * "created_at": "2025-11-07T23:58:35.000000Z"
22118
22992
  * }
22119
22993
  * ]
22120
22994
  */
@@ -22129,7 +23003,7 @@ export interface operations {
22129
23003
  changed_by_name?: string;
22130
23004
  /** @example Qui commodi incidunt iure odit. */
22131
23005
  comment?: string;
22132
- /** @example 2025-12-22T10:00:50.000000Z */
23006
+ /** @example 2025-12-22T16:02:55.000000Z */
22133
23007
  created_at?: string;
22134
23008
  }[];
22135
23009
  };
@@ -22326,50 +23200,80 @@ export interface operations {
22326
23200
  };
22327
23201
  content: {
22328
23202
  "application/json": {
22329
- /** @example Landlord dashboard stats */
23203
+ /** @example Tenant profile */
22330
23204
  message?: string;
22331
23205
  /** @example null */
22332
23206
  event?: string | null;
22333
23207
  data?: {
22334
- /** @example null */
22335
- uid?: string | null;
22336
- /** @example null */
22337
- username?: string | null;
23208
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
23209
+ uid?: string;
23210
+ /** @example Dominic Thomas */
23211
+ username?: string;
22338
23212
  /** @example null */
22339
23213
  first_name?: string | null;
22340
23214
  /** @example null */
22341
23215
  last_name?: string | null;
22342
- /** @example null */
22343
- email?: string | null;
22344
- /** @example null */
22345
- phone?: string | null;
22346
- /** @example null */
22347
- status?: string | null;
22348
- /** @example null */
22349
- user_mode?: string | null;
22350
- /** @example null */
22351
- last_login_at?: string | null;
22352
- /** @example null */
22353
- last_login_ip?: string | null;
22354
- /** @example null */
22355
- two_factor_enabled?: string | null;
23216
+ /** @example tenant3@justinshome.test */
23217
+ email?: string;
23218
+ /** @example 08099327560 */
23219
+ phone?: string;
23220
+ /** @example active */
23221
+ status?: string;
23222
+ /** @example form */
23223
+ user_mode?: string;
23224
+ /** @example 7 hours ago */
23225
+ last_login_at?: string;
23226
+ /** @example 127.0.0.1 */
23227
+ last_login_ip?: string;
23228
+ /** @example false */
23229
+ two_factor_enabled?: boolean;
22356
23230
  /** @example null */
22357
23231
  avatar_path?: string | null;
22358
- /** @example null */
22359
- language?: string | null;
22360
- /** @example null */
22361
- timezone?: string | null;
22362
- /** @example Customer */
23232
+ /** @example en-GB */
23233
+ language?: string;
23234
+ /** @example Europe/London */
23235
+ timezone?: string;
23236
+ /** @example Tenant */
22363
23237
  user_type?: string;
22364
- /** @example null */
22365
- created?: string | null;
23238
+ /** @example 20 Apr 2026, 10:45 PM */
23239
+ created?: string;
22366
23240
  /** @example null */
22367
23241
  email_verified_at?: string | null;
22368
23242
  verification_status?: {
22369
23243
  /** @example not_verified */
22370
23244
  overall?: string;
22371
- /** @example [] */
22372
- breakdown?: unknown[];
23245
+ /**
23246
+ * @example [
23247
+ * {
23248
+ * "verification_name": "Email Verification",
23249
+ * "verification_description": "Verify the user's email address",
23250
+ * "verification_key": "email_verified",
23251
+ * "state": "not_verified"
23252
+ * },
23253
+ * {
23254
+ * "verification_name": "Phone Number Verification",
23255
+ * "verification_description": "Verify the user's phone number via OTP",
23256
+ * "verification_key": "phone_verified",
23257
+ * "state": "not_verified"
23258
+ * },
23259
+ * {
23260
+ * "verification_name": "Government ID Verification",
23261
+ * "verification_description": "Upload government ID",
23262
+ * "verification_key": "id_document",
23263
+ * "state": "not_verified"
23264
+ * }
23265
+ * ]
23266
+ */
23267
+ breakdown?: {
23268
+ /** @example Email Verification */
23269
+ verification_name?: string;
23270
+ /** @example Verify the user's email address */
23271
+ verification_description?: string;
23272
+ /** @example email_verified */
23273
+ verification_key?: string;
23274
+ /** @example not_verified */
23275
+ state?: string;
23276
+ }[];
22373
23277
  };
22374
23278
  /** @example null */
22375
23279
  address?: string | null;
@@ -22484,7 +23388,7 @@ export interface operations {
22484
23388
  content: {
22485
23389
  "application/json": {
22486
23390
  data?: {
22487
- /** @example 035e3d0d-691b-4c25-a8c4-24ee1ca41a8e */
23391
+ /** @example 22176dd0-b89b-406e-8361-59f0ead31a9d */
22488
23392
  uid?: string;
22489
23393
  /** @example Ms. Audra Crooks II */
22490
23394
  username?: string;
@@ -22514,7 +23418,7 @@ export interface operations {
22514
23418
  timezone?: string;
22515
23419
  /** @example Customer */
22516
23420
  user_type?: string;
22517
- /** @example 29 Apr 2026, 11:13 PM */
23421
+ /** @example 30 Apr 2026, 05:15 AM */
22518
23422
  created?: string;
22519
23423
  /** @example 0 seconds ago */
22520
23424
  email_verified_at?: string;
@@ -22576,6 +23480,151 @@ export interface operations {
22576
23480
  };
22577
23481
  };
22578
23482
  };
23483
+ reservedBookingsTenants: {
23484
+ parameters: {
23485
+ query?: {
23486
+ /** @description Number of bookings per page. */
23487
+ per_page?: number;
23488
+ };
23489
+ header?: never;
23490
+ path?: never;
23491
+ cookie?: never;
23492
+ };
23493
+ requestBody?: {
23494
+ content: {
23495
+ "application/json": {
23496
+ /**
23497
+ * @description Must be at least 1. Must not be greater than 100.
23498
+ * @example 1
23499
+ */
23500
+ per_page?: number | null;
23501
+ };
23502
+ };
23503
+ };
23504
+ responses: {
23505
+ /** @description Retrieve tenant reserved bookings */
23506
+ 200: {
23507
+ headers: {
23508
+ [name: string]: unknown;
23509
+ };
23510
+ content: {
23511
+ "application/json": {
23512
+ /** @example Reserved bookings fetched successfully */
23513
+ message?: string;
23514
+ /** @example null */
23515
+ event?: string | null;
23516
+ data?: {
23517
+ /**
23518
+ * @example [
23519
+ * {
23520
+ * "id": 12,
23521
+ * "listing": {
23522
+ * "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
23523
+ * "cover": {
23524
+ * "uid": "lm_34fda1",
23525
+ * "media_type": "image/jpeg",
23526
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
23527
+ * "order_index": 0,
23528
+ * "is_cover": true
23529
+ * },
23530
+ * "details": {
23531
+ * "address": "24 Windsor Court, London, SW1",
23532
+ * "title": "24 Windsor Court",
23533
+ * "type": "Rent"
23534
+ * }
23535
+ * },
23536
+ * "guest": {
23537
+ * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
23538
+ * "name": "Dominic Thomas",
23539
+ * "email": "tenant3@justinshome.test",
23540
+ * "avatar_path": null
23541
+ * },
23542
+ * "host": {
23543
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
23544
+ * "name": "Alice Taylor",
23545
+ * "email": "alice@example.com",
23546
+ * "avatar_path": null
23547
+ * },
23548
+ * "nights": 3,
23549
+ * "status": "pending",
23550
+ * "total_price": "450.00"
23551
+ * }
23552
+ * ]
23553
+ */
23554
+ items?: {
23555
+ /** @example 12 */
23556
+ id?: number;
23557
+ listing?: {
23558
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
23559
+ listing_uid?: string;
23560
+ cover?: {
23561
+ /** @example lm_34fda1 */
23562
+ uid?: string;
23563
+ /** @example image/jpeg */
23564
+ media_type?: string;
23565
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
23566
+ storage_path?: string;
23567
+ /** @example 0 */
23568
+ order_index?: number;
23569
+ /** @example true */
23570
+ is_cover?: boolean;
23571
+ };
23572
+ details?: {
23573
+ /** @example 24 Windsor Court, London, SW1 */
23574
+ address?: string;
23575
+ /** @example 24 Windsor Court */
23576
+ title?: string;
23577
+ /** @example Rent */
23578
+ type?: string;
23579
+ };
23580
+ };
23581
+ guest?: {
23582
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
23583
+ uid?: string;
23584
+ /** @example Dominic Thomas */
23585
+ name?: string;
23586
+ /** @example tenant3@justinshome.test */
23587
+ email?: string;
23588
+ /** @example null */
23589
+ avatar_path?: string | null;
23590
+ };
23591
+ host?: {
23592
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
23593
+ uid?: string;
23594
+ /** @example Alice Taylor */
23595
+ name?: string;
23596
+ /** @example alice@example.com */
23597
+ email?: string;
23598
+ /** @example null */
23599
+ avatar_path?: string | null;
23600
+ };
23601
+ /** @example 3 */
23602
+ nights?: number;
23603
+ /** @example pending */
23604
+ status?: string;
23605
+ /** @example 450.00 */
23606
+ total_price?: string;
23607
+ }[];
23608
+ pagination?: {
23609
+ /** @example 1 */
23610
+ current_page?: number;
23611
+ /** @example 15 */
23612
+ per_page?: number;
23613
+ /** @example 1 */
23614
+ total?: number;
23615
+ /** @example 1 */
23616
+ last_page?: number;
23617
+ /** @example 1 */
23618
+ from?: number;
23619
+ /** @example 1 */
23620
+ to?: number;
23621
+ };
23622
+ };
23623
+ };
23624
+ };
23625
+ };
23626
+ };
23627
+ };
22579
23628
  sendTwoFactorToggleOtp: {
22580
23629
  parameters: {
22581
23630
  query?: never;
@@ -22629,7 +23678,7 @@ export interface operations {
22629
23678
  content: {
22630
23679
  "application/json": {
22631
23680
  data?: {
22632
- /** @example de313091-ec8e-4721-83c6-6a86cbc8b698 */
23681
+ /** @example f8e9bf52-e99c-424a-b572-1b40d6e27c78 */
22633
23682
  uid?: string;
22634
23683
  /** @example Morgan Hirthe */
22635
23684
  username?: string;
@@ -22659,7 +23708,7 @@ export interface operations {
22659
23708
  timezone?: string;
22660
23709
  /** @example Customer */
22661
23710
  user_type?: string;
22662
- /** @example 29 Apr 2026, 11:13 PM */
23711
+ /** @example 30 Apr 2026, 05:15 AM */
22663
23712
  created?: string;
22664
23713
  /** @example 0 seconds ago */
22665
23714
  email_verified_at?: string;
@@ -22731,7 +23780,7 @@ export interface operations {
22731
23780
  content: {
22732
23781
  "application/json": {
22733
23782
  data?: {
22734
- /** @example 5e95a61b-40a3-43ca-b9ba-1bdd1d2c2e2d */
23783
+ /** @example 56291317-86be-4686-bb95-14155d4fdc67 */
22735
23784
  uid?: string;
22736
23785
  /** @example Ms. Audra Crooks II */
22737
23786
  username?: string;
@@ -22761,7 +23810,7 @@ export interface operations {
22761
23810
  timezone?: string;
22762
23811
  /** @example Customer */
22763
23812
  user_type?: string;
22764
- /** @example 29 Apr 2026, 11:13 PM */
23813
+ /** @example 30 Apr 2026, 05:15 AM */
22765
23814
  created?: string;
22766
23815
  /** @example 0 seconds ago */
22767
23816
  email_verified_at?: string;
@@ -22995,13 +24044,13 @@ export interface operations {
22995
24044
  content: {
22996
24045
  "application/json": {
22997
24046
  data?: {
22998
- /** @example 0 */
24047
+ /** @example 2 */
22999
24048
  current_level?: number;
23000
24049
  /** @example 3 */
23001
24050
  completed_layers?: number;
23002
- /** @example 4 */
24051
+ /** @example 0 */
23003
24052
  pending_layers?: number;
23004
- /** @example 29 Apr 2026, 11:13 PM */
24053
+ /** @example 30 Apr 2026, 05:15 AM */
23005
24054
  last_calculated_at?: string;
23006
24055
  };
23007
24056
  };
@@ -23049,7 +24098,7 @@ export interface operations {
23049
24098
  completed_layers?: number;
23050
24099
  /** @example 4 */
23051
24100
  pending_layers?: number;
23052
- /** @example 29 Apr 2026, 11:13 PM */
24101
+ /** @example 30 Apr 2026, 05:15 AM */
23053
24102
  last_calculated_at?: string;
23054
24103
  };
23055
24104
  };
@@ -23083,14 +24132,14 @@ export interface operations {
23083
24132
  content: {
23084
24133
  "application/json": {
23085
24134
  data?: {
23086
- /** @example d5930fbf-ded8-4d34-beb0-e07ee275a72d */
24135
+ /** @example e72bf4cb-c518-43af-a8d3-f151f791ac0f */
23087
24136
  wishlist_uid?: string;
23088
24137
  listing?: {
23089
- /** @example New For Sale Used Item draft • 29 Apr 2026, 11:13 PM */
24138
+ /** @example New For Sale Used Item draft • 30 Apr 2026, 5:15 AM */
23090
24139
  draft_name?: string;
23091
- /** @example LST-UIT-SAL-MOKO8TCM7UQ */
24140
+ /** @example LST-UIT-SAL-MOL16GC9FYZ */
23092
24141
  sku?: string;
23093
- /** @example 7534d1a1-5227-4ad1-a6bb-4e14f2d5d0f0 */
24142
+ /** @example 189a5e61-3773-4648-a3a2-3d346596ccde */
23094
24143
  uid?: string;
23095
24144
  /** @example Sale */
23096
24145
  listing_type?: string;
@@ -23477,7 +24526,7 @@ export interface operations {
23477
24526
  completed_layers?: number;
23478
24527
  /** @example 4 */
23479
24528
  pending_layers?: number;
23480
- /** @example 29 Apr 2026, 11:13 PM */
24529
+ /** @example 30 Apr 2026, 05:15 AM */
23481
24530
  last_calculated_at?: string;
23482
24531
  };
23483
24532
  };
@@ -23719,7 +24768,7 @@ export interface operations {
23719
24768
  completed_layers?: number;
23720
24769
  /** @example 4 */
23721
24770
  pending_layers?: number;
23722
- /** @example 29 Apr 2026, 11:13 PM */
24771
+ /** @example 30 Apr 2026, 05:15 AM */
23723
24772
  last_calculated_at?: string;
23724
24773
  };
23725
24774
  };