@justins-home/types 1.1.60 → 1.1.62

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 +2364 -441
  2. package/package.json +1 -1
@@ -79,6 +79,145 @@ export interface paths {
79
79
  patch?: never;
80
80
  trace?: never;
81
81
  };
82
+ "/api/v1/portal/admin/rental-applications": {
83
+ parameters: {
84
+ query?: never;
85
+ header?: never;
86
+ path?: never;
87
+ cookie?: never;
88
+ };
89
+ /**
90
+ * listAdminRentalApplications
91
+ * @description Retrieve all rental applications for the admin dashboard.
92
+ */
93
+ get: operations["listAdminRentalApplications"];
94
+ put?: never;
95
+ /**
96
+ * createAdminRentalApplication
97
+ * @description Create a rental application on behalf of a tenant as an explicit admin-assisted action.
98
+ */
99
+ post: operations["createAdminRentalApplication"];
100
+ delete?: never;
101
+ options?: never;
102
+ head?: never;
103
+ patch?: never;
104
+ trace?: never;
105
+ };
106
+ "/api/v1/portal/admin/rental-applications/{application_uid}": {
107
+ parameters: {
108
+ query?: never;
109
+ header?: never;
110
+ path: {
111
+ /** @description The UID of the rental application. */
112
+ application_uid: string;
113
+ };
114
+ cookie?: never;
115
+ };
116
+ /**
117
+ * fetchAdminRentalApplication
118
+ * @description Retrieve one rental application for admin review.
119
+ */
120
+ get: operations["fetchAdminRentalApplication"];
121
+ put?: never;
122
+ post?: never;
123
+ delete?: never;
124
+ options?: never;
125
+ head?: never;
126
+ patch?: never;
127
+ trace?: never;
128
+ };
129
+ "/api/v1/portal/admin/rental-applications/{application_uid}/approve": {
130
+ parameters: {
131
+ query?: never;
132
+ header?: never;
133
+ path: {
134
+ /** @description The UID of the rental application. */
135
+ application_uid: string;
136
+ };
137
+ cookie?: never;
138
+ };
139
+ get?: never;
140
+ put?: never;
141
+ /**
142
+ * approveAdminRentalApplication
143
+ * @description Approve a pending rental application as an admin oversight action.
144
+ */
145
+ post: operations["approveAdminRentalApplication"];
146
+ delete?: never;
147
+ options?: never;
148
+ head?: never;
149
+ patch?: never;
150
+ trace?: never;
151
+ };
152
+ "/api/v1/portal/admin/rental-applications/{application_uid}/reject": {
153
+ parameters: {
154
+ query?: never;
155
+ header?: never;
156
+ path: {
157
+ /** @description The UID of the rental application. */
158
+ application_uid: string;
159
+ };
160
+ cookie?: never;
161
+ };
162
+ get?: never;
163
+ put?: never;
164
+ /**
165
+ * rejectAdminRentalApplication
166
+ * @description Reject a pending rental application as an admin oversight action.
167
+ */
168
+ post: operations["rejectAdminRentalApplication"];
169
+ delete?: never;
170
+ options?: never;
171
+ head?: never;
172
+ patch?: never;
173
+ trace?: never;
174
+ };
175
+ "/api/v1/portal/admin/rental-applications/{application_uid}/cancel": {
176
+ parameters: {
177
+ query?: never;
178
+ header?: never;
179
+ path: {
180
+ /** @description The UID of the rental application. */
181
+ application_uid: string;
182
+ };
183
+ cookie?: never;
184
+ };
185
+ get?: never;
186
+ put?: never;
187
+ /**
188
+ * cancelAdminRentalApplication
189
+ * @description Administratively cancel a pending or approved rental application.
190
+ */
191
+ post: operations["cancelAdminRentalApplication"];
192
+ delete?: never;
193
+ options?: never;
194
+ head?: never;
195
+ patch?: never;
196
+ trace?: never;
197
+ };
198
+ "/api/v1/portal/admin/rental-applications/{application_uid}/convert-to-tenancy": {
199
+ parameters: {
200
+ query?: never;
201
+ header?: never;
202
+ path: {
203
+ /** @description The UID of the rental application. */
204
+ application_uid: string;
205
+ };
206
+ cookie?: never;
207
+ };
208
+ get?: never;
209
+ put?: never;
210
+ /**
211
+ * convertAdminRentalApplicationToTenancy
212
+ * @description Convert an approved rental application into a tenancy as an admin oversight action.
213
+ */
214
+ post: operations["convertAdminRentalApplicationToTenancy"];
215
+ delete?: never;
216
+ options?: never;
217
+ head?: never;
218
+ patch?: never;
219
+ trace?: never;
220
+ };
82
221
  "/api/v1/portal/admin/dashboard/stats": {
83
222
  parameters: {
84
223
  query?: never;
@@ -3715,6 +3854,99 @@ export interface paths {
3715
3854
  patch?: never;
3716
3855
  trace?: never;
3717
3856
  };
3857
+ "/api/v1/portal/landlord/rental-applications": {
3858
+ parameters: {
3859
+ query?: never;
3860
+ header?: never;
3861
+ path?: never;
3862
+ cookie?: never;
3863
+ };
3864
+ /**
3865
+ * listLandlordRentalApplications
3866
+ * @description Retrieve rental applications for listings owned by the authenticated landlord.
3867
+ */
3868
+ get: operations["listLandlordRentalApplications"];
3869
+ put?: never;
3870
+ /**
3871
+ * createLandlordRentalApplication
3872
+ * @description Create a rental application on behalf of a tenant for one of the landlord's listings.
3873
+ */
3874
+ post: operations["createLandlordRentalApplication"];
3875
+ delete?: never;
3876
+ options?: never;
3877
+ head?: never;
3878
+ patch?: never;
3879
+ trace?: never;
3880
+ };
3881
+ "/api/v1/portal/landlord/rental-applications/{application_uid}/approve": {
3882
+ parameters: {
3883
+ query?: never;
3884
+ header?: never;
3885
+ path: {
3886
+ /** @description The UID of the rental application. */
3887
+ application_uid: string;
3888
+ };
3889
+ cookie?: never;
3890
+ };
3891
+ get?: never;
3892
+ put?: never;
3893
+ /**
3894
+ * approveLandlordRentalApplication
3895
+ * @description Approve a pending rental application for a listing owned by the authenticated landlord.
3896
+ */
3897
+ post: operations["approveLandlordRentalApplication"];
3898
+ delete?: never;
3899
+ options?: never;
3900
+ head?: never;
3901
+ patch?: never;
3902
+ trace?: never;
3903
+ };
3904
+ "/api/v1/portal/landlord/rental-applications/{application_uid}/reject": {
3905
+ parameters: {
3906
+ query?: never;
3907
+ header?: never;
3908
+ path: {
3909
+ /** @description The UID of the rental application. */
3910
+ application_uid: string;
3911
+ };
3912
+ cookie?: never;
3913
+ };
3914
+ get?: never;
3915
+ put?: never;
3916
+ /**
3917
+ * rejectLandlordRentalApplication
3918
+ * @description Reject a pending rental application for a listing owned by the authenticated landlord.
3919
+ */
3920
+ post: operations["rejectLandlordRentalApplication"];
3921
+ delete?: never;
3922
+ options?: never;
3923
+ head?: never;
3924
+ patch?: never;
3925
+ trace?: never;
3926
+ };
3927
+ "/api/v1/portal/landlord/rental-applications/{application_uid}/convert-to-tenancy": {
3928
+ parameters: {
3929
+ query?: never;
3930
+ header?: never;
3931
+ path: {
3932
+ /** @description The UID of the rental application. */
3933
+ application_uid: string;
3934
+ };
3935
+ cookie?: never;
3936
+ };
3937
+ get?: never;
3938
+ put?: never;
3939
+ /**
3940
+ * convertLandlordRentalApplicationToTenancy
3941
+ * @description Convert an approved rental application into a tenancy record.
3942
+ */
3943
+ post: operations["convertLandlordRentalApplicationToTenancy"];
3944
+ delete?: never;
3945
+ options?: never;
3946
+ head?: never;
3947
+ patch?: never;
3948
+ trace?: never;
3949
+ };
3718
3950
  "/api/v1/portal/landlord/listing": {
3719
3951
  parameters: {
3720
3952
  query?: never;
@@ -4839,6 +5071,92 @@ export interface paths {
4839
5071
  patch?: never;
4840
5072
  trace?: never;
4841
5073
  };
5074
+ "/api/v1/public/applications": {
5075
+ parameters: {
5076
+ query?: never;
5077
+ header?: never;
5078
+ path?: never;
5079
+ cookie?: never;
5080
+ };
5081
+ get?: never;
5082
+ put?: never;
5083
+ /**
5084
+ * createRentalApplications
5085
+ * @description Submit a rental application for a published long-term rental property listing.
5086
+ */
5087
+ post: operations["createRentalApplications"];
5088
+ delete?: never;
5089
+ options?: never;
5090
+ head?: never;
5091
+ patch?: never;
5092
+ trace?: never;
5093
+ };
5094
+ "/api/v1/public/applications/my-applications": {
5095
+ parameters: {
5096
+ query?: never;
5097
+ header?: never;
5098
+ path?: never;
5099
+ cookie?: never;
5100
+ };
5101
+ /**
5102
+ * listMyRentalApplications
5103
+ * @description Retrieve rental applications submitted for the authenticated tenant.
5104
+ */
5105
+ get: operations["listMyRentalApplications"];
5106
+ put?: never;
5107
+ post?: never;
5108
+ delete?: never;
5109
+ options?: never;
5110
+ head?: never;
5111
+ patch?: never;
5112
+ trace?: never;
5113
+ };
5114
+ "/api/v1/public/applications/{application_uid}": {
5115
+ parameters: {
5116
+ query?: never;
5117
+ header?: never;
5118
+ path: {
5119
+ /** @description The UID of the rental application. */
5120
+ application_uid: string;
5121
+ };
5122
+ cookie?: never;
5123
+ };
5124
+ /**
5125
+ * fetchMyRentalApplications
5126
+ * @description Retrieve one rental application owned by the authenticated tenant.
5127
+ */
5128
+ get: operations["fetchMyRentalApplications"];
5129
+ put?: never;
5130
+ post?: never;
5131
+ delete?: never;
5132
+ options?: never;
5133
+ head?: never;
5134
+ patch?: never;
5135
+ trace?: never;
5136
+ };
5137
+ "/api/v1/public/applications/{application_uid}/withdraw": {
5138
+ parameters: {
5139
+ query?: never;
5140
+ header?: never;
5141
+ path: {
5142
+ /** @description The UID of the rental application. */
5143
+ application_uid: string;
5144
+ };
5145
+ cookie?: never;
5146
+ };
5147
+ get?: never;
5148
+ put?: never;
5149
+ /**
5150
+ * withdrawRentalApplications
5151
+ * @description Withdraw a pending rental application submitted by the authenticated tenant.
5152
+ */
5153
+ post: operations["withdrawRentalApplications"];
5154
+ delete?: never;
5155
+ options?: never;
5156
+ head?: never;
5157
+ patch?: never;
5158
+ trace?: never;
5159
+ };
4842
5160
  "/api/v1/public/review/fetch-all": {
4843
5161
  parameters: {
4844
5162
  query?: never;
@@ -5761,7 +6079,7 @@ export interface operations {
5761
6079
  content: {
5762
6080
  "application/json": {
5763
6081
  data?: {
5764
- /** @example e5ea8d05-b408-454f-8ae1-8b9a05adb532 */
6082
+ /** @example d667584f-5269-41d9-b927-63d95d5bdee6 */
5765
6083
  uid?: string;
5766
6084
  /** @example Ms. Audra Crooks II */
5767
6085
  username?: string;
@@ -5791,7 +6109,7 @@ export interface operations {
5791
6109
  timezone?: string;
5792
6110
  /** @example Customer */
5793
6111
  user_type?: string;
5794
- /** @example 30 Apr 2026, 06:38 AM */
6112
+ /** @example 30 Apr 2026, 10:55 AM */
5795
6113
  created?: string;
5796
6114
  /** @example 0 seconds ago */
5797
6115
  email_verified_at?: string;
@@ -5932,7 +6250,9 @@ export interface operations {
5932
6250
  * "details": {
5933
6251
  * "address": "24 Windsor Court, London, SW1",
5934
6252
  * "title": "24 Windsor Court",
5935
- * "type": "Rent"
6253
+ * "type": "Rent",
6254
+ * "check_in_time": "02:00 PM",
6255
+ * "check_out_time": "11:00 AM"
5936
6256
  * }
5937
6257
  * },
5938
6258
  * "guest": {
@@ -5947,6 +6267,8 @@ export interface operations {
5947
6267
  * "email": "alice@example.com",
5948
6268
  * "avatar_path": null
5949
6269
  * },
6270
+ * "start_date": "10 Jun 2026",
6271
+ * "end_date": "13 Jun 2026",
5950
6272
  * "nights": 3,
5951
6273
  * "status": "pending",
5952
6274
  * "total_price": "450.00"
@@ -5980,6 +6302,10 @@ export interface operations {
5980
6302
  title?: string;
5981
6303
  /** @example Rent */
5982
6304
  type?: string;
6305
+ /** @example 02:00 PM */
6306
+ check_in_time?: string;
6307
+ /** @example 11:00 AM */
6308
+ check_out_time?: string;
5983
6309
  };
5984
6310
  };
5985
6311
  guest?: {
@@ -6002,6 +6328,10 @@ export interface operations {
6002
6328
  /** @example null */
6003
6329
  avatar_path?: string | null;
6004
6330
  };
6331
+ /** @example 10 Jun 2026 */
6332
+ start_date?: string;
6333
+ /** @example 13 Jun 2026 */
6334
+ end_date?: string;
6005
6335
  /** @example 3 */
6006
6336
  nights?: number;
6007
6337
  /** @example pending */
@@ -6059,6 +6389,12 @@ export interface operations {
6059
6389
  * @example [
6060
6390
  * {
6061
6391
  * "id": 12,
6392
+ * "appointment_ref": "APT-20260430-ABC123",
6393
+ * "title": "Viewing for Riverside Flat",
6394
+ * "appointment_type": {
6395
+ * "value": "property_viewing",
6396
+ * "label": "Property Viewing"
6397
+ * },
6062
6398
  * "listing_id": 32,
6063
6399
  * "listing": {
6064
6400
  * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
@@ -6140,6 +6476,16 @@ export interface operations {
6140
6476
  items?: {
6141
6477
  /** @example 12 */
6142
6478
  id?: number;
6479
+ /** @example APT-20260430-ABC123 */
6480
+ appointment_ref?: string;
6481
+ /** @example Viewing for Riverside Flat */
6482
+ title?: string;
6483
+ appointment_type?: {
6484
+ /** @example property_viewing */
6485
+ value?: string;
6486
+ /** @example Property Viewing */
6487
+ label?: string;
6488
+ };
6143
6489
  /** @example 32 */
6144
6490
  listing_id?: number;
6145
6491
  listing?: {
@@ -6294,20 +6640,619 @@ export interface operations {
6294
6640
  };
6295
6641
  };
6296
6642
  };
6297
- dashboardStatsAdmin: {
6643
+ listAdminRentalApplications: {
6298
6644
  parameters: {
6299
- query?: never;
6645
+ query?: {
6646
+ /** @description Search by application reference, tenant, or listing text. */
6647
+ search?: string;
6648
+ /** @description Filter by application status. */
6649
+ status?: string;
6650
+ /** @description Filter by source: tenant, landlord, or admin. */
6651
+ source?: string;
6652
+ /** @description Filter by listing UID. */
6653
+ listing_uid?: string;
6654
+ /** @description Filter by tenant UID. */
6655
+ tenant_uid?: string;
6656
+ /** @description Filter by landlord UID. */
6657
+ landlord_uid?: string;
6658
+ /** @description Filter by exact application reference. */
6659
+ application_ref?: string;
6660
+ /** @description Number of records per page. */
6661
+ per_page?: number;
6662
+ };
6300
6663
  header?: never;
6301
6664
  path?: never;
6302
6665
  cookie?: never;
6303
6666
  };
6304
- requestBody?: never;
6305
- responses: {
6306
- /** @description Retrieve admin dashboard stats */
6307
- 200: {
6308
- headers: {
6309
- [name: string]: unknown;
6310
- };
6667
+ requestBody?: {
6668
+ content: {
6669
+ "application/json": {
6670
+ /**
6671
+ * @description Must not be greater than 255 characters.
6672
+ * @example b
6673
+ */
6674
+ search?: string | null;
6675
+ /**
6676
+ * @example approved
6677
+ * @enum {string|null}
6678
+ */
6679
+ status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
6680
+ /**
6681
+ * @example tenant
6682
+ * @enum {string|null}
6683
+ */
6684
+ source?: "tenant" | "landlord" | "admin" | null;
6685
+ /**
6686
+ * @description The <code>uid</code> of an existing record in the listings table.
6687
+ * @example architecto
6688
+ */
6689
+ listing_uid?: string | null;
6690
+ /**
6691
+ * @description The <code>uid</code> of an existing record in the users table.
6692
+ * @example architecto
6693
+ */
6694
+ tenant_uid?: string | null;
6695
+ /**
6696
+ * @description The <code>uid</code> of an existing record in the users table.
6697
+ * @example architecto
6698
+ */
6699
+ landlord_uid?: string | null;
6700
+ /**
6701
+ * @description Must not be greater than 255 characters.
6702
+ * @example n
6703
+ */
6704
+ application_ref?: string | null;
6705
+ /**
6706
+ * @description Must be at least 1. Must not be greater than 100.
6707
+ * @example 7
6708
+ */
6709
+ per_page?: number | null;
6710
+ /**
6711
+ * @description Must be at least 1.
6712
+ * @example 66
6713
+ */
6714
+ page?: number | null;
6715
+ };
6716
+ };
6717
+ };
6718
+ responses: {
6719
+ /** @description Retrieve admin rental applications */
6720
+ 200: {
6721
+ headers: {
6722
+ [name: string]: unknown;
6723
+ };
6724
+ content: {
6725
+ "application/json": {
6726
+ /** @example Rental applications fetched successfully */
6727
+ message?: string;
6728
+ /** @example null */
6729
+ event?: string | null;
6730
+ data?: {
6731
+ /**
6732
+ * @example [
6733
+ * {
6734
+ * "uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
6735
+ * "application_ref": "JH-APP-2026-000001",
6736
+ * "status": {
6737
+ * "value": "pending",
6738
+ * "label": "Pending Review"
6739
+ * },
6740
+ * "source": {
6741
+ * "value": "tenant",
6742
+ * "label": "Tenant"
6743
+ * },
6744
+ * "message": "I am interested in renting this property.",
6745
+ * "rejection_reason": null,
6746
+ * "listing": {
6747
+ * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
6748
+ * "title": "Riverside Flat",
6749
+ * "address": "12 River Road",
6750
+ * "listing_type": "long_term_rent",
6751
+ * "listing_vertical": "property",
6752
+ * "cover": {
6753
+ * "uid": "lm_34fda1",
6754
+ * "media_type": "image/jpeg",
6755
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg",
6756
+ * "order_index": 0,
6757
+ * "is_cover": true
6758
+ * }
6759
+ * },
6760
+ * "tenant": {
6761
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
6762
+ * "name": "Jane Tenant",
6763
+ * "email": "jane@example.com"
6764
+ * },
6765
+ * "landlord": {
6766
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
6767
+ * "name": "John Landlord",
6768
+ * "email": "john@example.com"
6769
+ * },
6770
+ * "tenancy": null,
6771
+ * "timeline": {
6772
+ * "created_at": "2026-04-30T10:00:00.000000Z",
6773
+ * "approved_at": null,
6774
+ * "rejected_at": null,
6775
+ * "converted_to_tenancy_at": null
6776
+ * }
6777
+ * }
6778
+ * ]
6779
+ */
6780
+ items?: {
6781
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
6782
+ uid?: string;
6783
+ /** @example JH-APP-2026-000001 */
6784
+ application_ref?: string;
6785
+ status?: {
6786
+ /** @example pending */
6787
+ value?: string;
6788
+ /** @example Pending Review */
6789
+ label?: string;
6790
+ };
6791
+ source?: {
6792
+ /** @example tenant */
6793
+ value?: string;
6794
+ /** @example Tenant */
6795
+ label?: string;
6796
+ };
6797
+ /** @example I am interested in renting this property. */
6798
+ message?: string;
6799
+ /** @example null */
6800
+ rejection_reason?: string | null;
6801
+ listing?: {
6802
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
6803
+ uid?: string;
6804
+ /** @example Riverside Flat */
6805
+ title?: string;
6806
+ /** @example 12 River Road */
6807
+ address?: string;
6808
+ /** @example long_term_rent */
6809
+ listing_type?: string;
6810
+ /** @example property */
6811
+ listing_vertical?: string;
6812
+ cover?: {
6813
+ /** @example lm_34fda1 */
6814
+ uid?: string;
6815
+ /** @example image/jpeg */
6816
+ media_type?: string;
6817
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg */
6818
+ storage_path?: string;
6819
+ /** @example 0 */
6820
+ order_index?: number;
6821
+ /** @example true */
6822
+ is_cover?: boolean;
6823
+ };
6824
+ };
6825
+ tenant?: {
6826
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
6827
+ uid?: string;
6828
+ /** @example Jane Tenant */
6829
+ name?: string;
6830
+ /** @example jane@example.com */
6831
+ email?: string;
6832
+ };
6833
+ landlord?: {
6834
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
6835
+ uid?: string;
6836
+ /** @example John Landlord */
6837
+ name?: string;
6838
+ /** @example john@example.com */
6839
+ email?: string;
6840
+ };
6841
+ /** @example null */
6842
+ tenancy?: string | null;
6843
+ timeline?: {
6844
+ /** @example 2026-04-30T10:00:00.000000Z */
6845
+ created_at?: string;
6846
+ /** @example null */
6847
+ approved_at?: string | null;
6848
+ /** @example null */
6849
+ rejected_at?: string | null;
6850
+ /** @example null */
6851
+ converted_to_tenancy_at?: string | null;
6852
+ };
6853
+ }[];
6854
+ pagination?: {
6855
+ /** @example 1 */
6856
+ current_page?: number;
6857
+ /** @example 15 */
6858
+ per_page?: number;
6859
+ /** @example 1 */
6860
+ total?: number;
6861
+ /** @example 1 */
6862
+ last_page?: number;
6863
+ /** @example 1 */
6864
+ from?: number;
6865
+ /** @example 1 */
6866
+ to?: number;
6867
+ };
6868
+ };
6869
+ };
6870
+ };
6871
+ };
6872
+ };
6873
+ };
6874
+ createAdminRentalApplication: {
6875
+ parameters: {
6876
+ query?: never;
6877
+ header?: never;
6878
+ path?: never;
6879
+ cookie?: never;
6880
+ };
6881
+ requestBody: {
6882
+ content: {
6883
+ "application/json": {
6884
+ /**
6885
+ * @description The UID of the long-term rental listing.
6886
+ * @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a
6887
+ */
6888
+ listing_uid: string;
6889
+ /**
6890
+ * @description The UID of the tenant user.
6891
+ * @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df
6892
+ */
6893
+ tenant_uid: string;
6894
+ /**
6895
+ * @description Optional application note.
6896
+ * @example Application captured from offline request.
6897
+ */
6898
+ message?: string | null;
6899
+ /**
6900
+ * @description Reason for admin-assisted creation.
6901
+ * @example offline_application_entry
6902
+ */
6903
+ admin_reason: string;
6904
+ };
6905
+ };
6906
+ };
6907
+ responses: {
6908
+ 200: {
6909
+ headers: {
6910
+ [name: string]: unknown;
6911
+ };
6912
+ content: {
6913
+ "application/json": {
6914
+ data?: {
6915
+ /** @example 87bdb770-bfe6-459a-9224-a37431cd68d1 */
6916
+ uid?: string;
6917
+ /** @example JH-APP-2026-589365 */
6918
+ application_ref?: string;
6919
+ status?: {
6920
+ /** @example pending */
6921
+ value?: string;
6922
+ /** @example Pending Review */
6923
+ label?: string;
6924
+ };
6925
+ source?: {
6926
+ /** @example tenant */
6927
+ value?: string;
6928
+ /** @example Tenant */
6929
+ label?: string;
6930
+ };
6931
+ /** @example Velit et fugiat sunt nihil accusantium. */
6932
+ message?: string;
6933
+ /** @example null */
6934
+ rejection_reason?: string | null;
6935
+ timeline?: {
6936
+ /** @example 2026-04-30T10:55:43.000000Z */
6937
+ created_at?: string;
6938
+ /** @example null */
6939
+ approved_at?: string | null;
6940
+ /** @example null */
6941
+ rejected_at?: string | null;
6942
+ /** @example null */
6943
+ converted_to_tenancy_at?: string | null;
6944
+ };
6945
+ };
6946
+ };
6947
+ };
6948
+ };
6949
+ };
6950
+ };
6951
+ fetchAdminRentalApplication: {
6952
+ parameters: {
6953
+ query?: never;
6954
+ header?: never;
6955
+ path: {
6956
+ /** @description The UID of the rental application. */
6957
+ application_uid: string;
6958
+ };
6959
+ cookie?: never;
6960
+ };
6961
+ requestBody?: never;
6962
+ responses: {
6963
+ 200: {
6964
+ headers: {
6965
+ [name: string]: unknown;
6966
+ };
6967
+ content: {
6968
+ "application/json": {
6969
+ data?: {
6970
+ /** @example 4cb22cf6-e9f8-440b-bbab-196c7fb626a6 */
6971
+ uid?: string;
6972
+ /** @example JH-APP-2026-933724 */
6973
+ application_ref?: string;
6974
+ status?: {
6975
+ /** @example pending */
6976
+ value?: string;
6977
+ /** @example Pending Review */
6978
+ label?: string;
6979
+ };
6980
+ source?: {
6981
+ /** @example tenant */
6982
+ value?: string;
6983
+ /** @example Tenant */
6984
+ label?: string;
6985
+ };
6986
+ /** @example Nostrum qui commodi incidunt iure. */
6987
+ message?: string;
6988
+ /** @example null */
6989
+ rejection_reason?: string | null;
6990
+ timeline?: {
6991
+ /** @example 2026-04-30T10:55:43.000000Z */
6992
+ created_at?: string;
6993
+ /** @example null */
6994
+ approved_at?: string | null;
6995
+ /** @example null */
6996
+ rejected_at?: string | null;
6997
+ /** @example null */
6998
+ converted_to_tenancy_at?: string | null;
6999
+ };
7000
+ };
7001
+ };
7002
+ };
7003
+ };
7004
+ };
7005
+ };
7006
+ approveAdminRentalApplication: {
7007
+ parameters: {
7008
+ query?: never;
7009
+ header?: never;
7010
+ path: {
7011
+ /** @description The UID of the rental application. */
7012
+ application_uid: string;
7013
+ };
7014
+ cookie?: never;
7015
+ };
7016
+ requestBody?: never;
7017
+ responses: {
7018
+ 200: {
7019
+ headers: {
7020
+ [name: string]: unknown;
7021
+ };
7022
+ content: {
7023
+ "application/json": {
7024
+ data?: {
7025
+ /** @example ba3b6f16-499e-4399-9d44-f3232970c32f */
7026
+ uid?: string;
7027
+ /** @example JH-APP-2026-450949 */
7028
+ application_ref?: string;
7029
+ status?: {
7030
+ /** @example pending */
7031
+ value?: string;
7032
+ /** @example Pending Review */
7033
+ label?: string;
7034
+ };
7035
+ source?: {
7036
+ /** @example tenant */
7037
+ value?: string;
7038
+ /** @example Tenant */
7039
+ label?: string;
7040
+ };
7041
+ /** @example Qui commodi incidunt iure odit. */
7042
+ message?: string;
7043
+ /** @example null */
7044
+ rejection_reason?: string | null;
7045
+ timeline?: {
7046
+ /** @example 2026-04-30T10:55:43.000000Z */
7047
+ created_at?: string;
7048
+ /** @example null */
7049
+ approved_at?: string | null;
7050
+ /** @example null */
7051
+ rejected_at?: string | null;
7052
+ /** @example null */
7053
+ converted_to_tenancy_at?: string | null;
7054
+ };
7055
+ };
7056
+ };
7057
+ };
7058
+ };
7059
+ };
7060
+ };
7061
+ rejectAdminRentalApplication: {
7062
+ parameters: {
7063
+ query?: never;
7064
+ header?: never;
7065
+ path: {
7066
+ /** @description The UID of the rental application. */
7067
+ application_uid: string;
7068
+ };
7069
+ cookie?: never;
7070
+ };
7071
+ requestBody?: {
7072
+ content: {
7073
+ "application/json": {
7074
+ /**
7075
+ * @description Optional rejection reason.
7076
+ * @example Application rejected by admin after review.
7077
+ */
7078
+ reason?: string | null;
7079
+ };
7080
+ };
7081
+ };
7082
+ responses: {
7083
+ 200: {
7084
+ headers: {
7085
+ [name: string]: unknown;
7086
+ };
7087
+ content: {
7088
+ "application/json": {
7089
+ data?: {
7090
+ /** @example 4adfa405-21c7-4a57-87b2-db6e9e076c0e */
7091
+ uid?: string;
7092
+ /** @example JH-APP-2026-026316 */
7093
+ application_ref?: string;
7094
+ status?: {
7095
+ /** @example pending */
7096
+ value?: string;
7097
+ /** @example Pending Review */
7098
+ label?: string;
7099
+ };
7100
+ source?: {
7101
+ /** @example tenant */
7102
+ value?: string;
7103
+ /** @example Tenant */
7104
+ label?: string;
7105
+ };
7106
+ /** @example Et fugiat sunt nihil accusantium. */
7107
+ message?: string;
7108
+ /** @example null */
7109
+ rejection_reason?: string | null;
7110
+ timeline?: {
7111
+ /** @example 2026-04-30T10:55:43.000000Z */
7112
+ created_at?: string;
7113
+ /** @example null */
7114
+ approved_at?: string | null;
7115
+ /** @example null */
7116
+ rejected_at?: string | null;
7117
+ /** @example null */
7118
+ converted_to_tenancy_at?: string | null;
7119
+ };
7120
+ };
7121
+ };
7122
+ };
7123
+ };
7124
+ };
7125
+ };
7126
+ cancelAdminRentalApplication: {
7127
+ parameters: {
7128
+ query?: never;
7129
+ header?: never;
7130
+ path: {
7131
+ /** @description The UID of the rental application. */
7132
+ application_uid: string;
7133
+ };
7134
+ cookie?: never;
7135
+ };
7136
+ requestBody?: {
7137
+ content: {
7138
+ "application/json": {
7139
+ /**
7140
+ * @description Optional cancellation reason.
7141
+ * @example Duplicate application created in error.
7142
+ */
7143
+ reason?: string | null;
7144
+ };
7145
+ };
7146
+ };
7147
+ responses: {
7148
+ 200: {
7149
+ headers: {
7150
+ [name: string]: unknown;
7151
+ };
7152
+ content: {
7153
+ "application/json": {
7154
+ data?: {
7155
+ /** @example c2f3ce93-d94d-44cf-956d-a2bb8a229979 */
7156
+ uid?: string;
7157
+ /** @example JH-APP-2026-000564 */
7158
+ application_ref?: string;
7159
+ status?: {
7160
+ /** @example pending */
7161
+ value?: string;
7162
+ /** @example Pending Review */
7163
+ label?: string;
7164
+ };
7165
+ source?: {
7166
+ /** @example tenant */
7167
+ value?: string;
7168
+ /** @example Tenant */
7169
+ label?: string;
7170
+ };
7171
+ /** @example Fugiat sunt nihil accusantium harum mollitia. */
7172
+ message?: string;
7173
+ /** @example null */
7174
+ rejection_reason?: string | null;
7175
+ timeline?: {
7176
+ /** @example 2026-04-30T10:55:43.000000Z */
7177
+ created_at?: string;
7178
+ /** @example null */
7179
+ approved_at?: string | null;
7180
+ /** @example null */
7181
+ rejected_at?: string | null;
7182
+ /** @example null */
7183
+ converted_to_tenancy_at?: string | null;
7184
+ };
7185
+ };
7186
+ };
7187
+ };
7188
+ };
7189
+ };
7190
+ };
7191
+ convertAdminRentalApplicationToTenancy: {
7192
+ parameters: {
7193
+ query?: never;
7194
+ header?: never;
7195
+ path: {
7196
+ /** @description The UID of the rental application. */
7197
+ application_uid: string;
7198
+ };
7199
+ cookie?: never;
7200
+ };
7201
+ requestBody?: never;
7202
+ responses: {
7203
+ 200: {
7204
+ headers: {
7205
+ [name: string]: unknown;
7206
+ };
7207
+ content: {
7208
+ "application/json": {
7209
+ data?: {
7210
+ /** @example acf6ba83-3f77-4552-bbdd-12b8aea6e2cc */
7211
+ uid?: string;
7212
+ /** @example 1 */
7213
+ listing_id?: number;
7214
+ /** @example 2 */
7215
+ landlord_id?: number;
7216
+ /** @example 2 */
7217
+ tenant_id?: number;
7218
+ /** @example 4881.50 */
7219
+ rent_amount?: string;
7220
+ /** @example 2151.17 */
7221
+ deposit_amount?: string;
7222
+ /** @example offer_accepted */
7223
+ state?: string;
7224
+ /** @example 2025-11-05T00:00:00.000000Z */
7225
+ start_date?: string;
7226
+ /** @example 2026-11-05T00:00:00.000000Z */
7227
+ end_date?: string;
7228
+ /** @example false */
7229
+ is_periodic?: boolean;
7230
+ /** @example null */
7231
+ company_name?: string | null;
7232
+ /** @example null */
7233
+ company_registration_number?: string | null;
7234
+ /** @example 2026-04-30T10:55:43.000000Z */
7235
+ created_at?: string;
7236
+ };
7237
+ };
7238
+ };
7239
+ };
7240
+ };
7241
+ };
7242
+ dashboardStatsAdmin: {
7243
+ parameters: {
7244
+ query?: never;
7245
+ header?: never;
7246
+ path?: never;
7247
+ cookie?: never;
7248
+ };
7249
+ requestBody?: never;
7250
+ responses: {
7251
+ /** @description Retrieve admin dashboard stats */
7252
+ 200: {
7253
+ headers: {
7254
+ [name: string]: unknown;
7255
+ };
6311
7256
  content: {
6312
7257
  "application/json": {
6313
7258
  /** @example Dashboard stats fetched */
@@ -6732,7 +7677,7 @@ export interface operations {
6732
7677
  content: {
6733
7678
  "application/json": {
6734
7679
  data?: {
6735
- /** @example ed1525ad-390e-4e4f-a451-860b7ba518c9 */
7680
+ /** @example 17026fe2-d573-456a-9b90-56dfa33b0d02 */
6736
7681
  uid?: string;
6737
7682
  /** @example Ms. Audra Crooks II */
6738
7683
  username?: string;
@@ -6762,7 +7707,7 @@ export interface operations {
6762
7707
  timezone?: string;
6763
7708
  /** @example Customer */
6764
7709
  user_type?: string;
6765
- /** @example 30 Apr 2026, 06:38 AM */
7710
+ /** @example 30 Apr 2026, 10:55 AM */
6766
7711
  created?: string;
6767
7712
  /** @example 0 seconds ago */
6768
7713
  email_verified_at?: string;
@@ -7152,11 +8097,11 @@ export interface operations {
7152
8097
  content: {
7153
8098
  "application/json": {
7154
8099
  data?: {
7155
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
8100
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
7156
8101
  draft_name?: string;
7157
- /** @example LST-PRP-LTR-MOL44XXAAKX */
8102
+ /** @example LST-PRP-LTR-MOLDBETKXHY */
7158
8103
  sku?: string;
7159
- /** @example 97c1b45c-8246-401e-b325-eb9b5f78f4a8 */
8104
+ /** @example 53ec376d-d90c-4554-8c4f-8c8401346084 */
7160
8105
  uid?: string;
7161
8106
  /** @example Rent */
7162
8107
  listing_type?: string;
@@ -8353,7 +9298,7 @@ export interface operations {
8353
9298
  parameters: {
8354
9299
  query?: {
8355
9300
  /** @description Filter by activity action. */
8356
- action?: "inspection_completed" | "landlord_verified" | "payment_processed" | "New Login" | "Reset Password" | "MAINTENANCE" | "Verification" | "Listing" | "listing_draft_created" | "listing_draft_name_updated" | "listing_arrangement_type_saved" | "listing_details_saved" | "listing_policy_saved" | "listing_property_basics_saved" | "listing_pricing_saved" | "listing_rental_details_saved" | "listing_short_let_details_saved" | "listing_item_details_saved" | "listing_tenant_preferences_saved" | "listing_viewing_availability_saved" | "listing_features_updated" | "listing_media_uploaded" | "listing_media_reordered" | "listing_media_cover_set" | "listing_media_deleted" | "listing_submitted" | "listing_approved" | "listing_rejected" | "listing_unpublished" | "listing_republished" | "listing_compliance_submitted" | "listing_compliance_approved" | "listing_compliance_rejected" | "user_registered" | "user_logged_out" | "user_force_logged_out" | "user_two_factor_otp_requested" | "user_two_factor_enabled" | "user_two_factor_disabled" | "user_avatar_updated" | "user_status_updated" | "user_profile_updated" | "user_email_verification_otp_requested" | "user_email_verified" | "user_verification_submitted" | "user_verification_approved" | "user_verification_rejected" | "user_verification_reset" | "user_plan_assigned" | "user_plan_deactivated" | null;
9301
+ action?: "inspection_completed" | "landlord_verified" | "payment_processed" | "New Login" | "Reset Password" | "MAINTENANCE" | "Verification" | "Listing" | "listing_draft_created" | "listing_draft_name_updated" | "listing_arrangement_type_saved" | "listing_details_saved" | "listing_policy_saved" | "listing_property_basics_saved" | "listing_pricing_saved" | "listing_rental_details_saved" | "listing_short_let_details_saved" | "listing_item_details_saved" | "listing_tenant_preferences_saved" | "listing_viewing_availability_saved" | "listing_features_updated" | "listing_media_uploaded" | "listing_media_reordered" | "listing_media_cover_set" | "listing_media_deleted" | "listing_submitted" | "listing_approved" | "listing_rejected" | "listing_unpublished" | "listing_republished" | "listing_compliance_submitted" | "listing_compliance_approved" | "listing_compliance_rejected" | "user_registered" | "user_logged_out" | "user_force_logged_out" | "user_two_factor_otp_requested" | "user_two_factor_enabled" | "user_two_factor_disabled" | "user_avatar_updated" | "user_status_updated" | "user_profile_updated" | "user_email_verification_otp_requested" | "user_email_verified" | "user_verification_submitted" | "user_verification_approved" | "user_verification_rejected" | "user_verification_reset" | "user_plan_assigned" | "user_plan_deactivated" | "rental_application_created" | "rental_application_approved" | "rental_application_rejected" | "rental_application_withdrawn" | "rental_application_converted_to_tenancy" | "rental_application_cancelled" | null;
8357
9302
  /** @description Filter logs created from this date/time. Must be a valid date. */
8358
9303
  from?: string | null;
8359
9304
  /** @description Filter logs created up to this date/time. Must be a valid date. */
@@ -8442,7 +9387,7 @@ export interface operations {
8442
9387
  fetchUserAuditLogsByActionAdmin: {
8443
9388
  parameters: {
8444
9389
  query: {
8445
- action: "inspection_completed" | "landlord_verified" | "payment_processed" | "New Login" | "Reset Password" | "MAINTENANCE" | "Verification" | "Listing" | "listing_draft_created" | "listing_draft_name_updated" | "listing_arrangement_type_saved" | "listing_details_saved" | "listing_policy_saved" | "listing_property_basics_saved" | "listing_pricing_saved" | "listing_rental_details_saved" | "listing_short_let_details_saved" | "listing_item_details_saved" | "listing_tenant_preferences_saved" | "listing_viewing_availability_saved" | "listing_features_updated" | "listing_media_uploaded" | "listing_media_reordered" | "listing_media_cover_set" | "listing_media_deleted" | "listing_submitted" | "listing_approved" | "listing_rejected" | "listing_unpublished" | "listing_republished" | "listing_compliance_submitted" | "listing_compliance_approved" | "listing_compliance_rejected" | "user_registered" | "user_logged_out" | "user_force_logged_out" | "user_two_factor_otp_requested" | "user_two_factor_enabled" | "user_two_factor_disabled" | "user_avatar_updated" | "user_status_updated" | "user_profile_updated" | "user_email_verification_otp_requested" | "user_email_verified" | "user_verification_submitted" | "user_verification_approved" | "user_verification_rejected" | "user_verification_reset" | "user_plan_assigned" | "user_plan_deactivated";
9390
+ action: "inspection_completed" | "landlord_verified" | "payment_processed" | "New Login" | "Reset Password" | "MAINTENANCE" | "Verification" | "Listing" | "listing_draft_created" | "listing_draft_name_updated" | "listing_arrangement_type_saved" | "listing_details_saved" | "listing_policy_saved" | "listing_property_basics_saved" | "listing_pricing_saved" | "listing_rental_details_saved" | "listing_short_let_details_saved" | "listing_item_details_saved" | "listing_tenant_preferences_saved" | "listing_viewing_availability_saved" | "listing_features_updated" | "listing_media_uploaded" | "listing_media_reordered" | "listing_media_cover_set" | "listing_media_deleted" | "listing_submitted" | "listing_approved" | "listing_rejected" | "listing_unpublished" | "listing_republished" | "listing_compliance_submitted" | "listing_compliance_approved" | "listing_compliance_rejected" | "user_registered" | "user_logged_out" | "user_force_logged_out" | "user_two_factor_otp_requested" | "user_two_factor_enabled" | "user_two_factor_disabled" | "user_avatar_updated" | "user_status_updated" | "user_profile_updated" | "user_email_verification_otp_requested" | "user_email_verified" | "user_verification_submitted" | "user_verification_approved" | "user_verification_rejected" | "user_verification_reset" | "user_plan_assigned" | "user_plan_deactivated" | "rental_application_created" | "rental_application_approved" | "rental_application_rejected" | "rental_application_withdrawn" | "rental_application_converted_to_tenancy" | "rental_application_cancelled";
8446
9391
  /** @description Number of records per page. Must be at least 1. Must not be greater than 100. */
8447
9392
  per_page?: number | null;
8448
9393
  /** @description The current page number. Must be at least 1. */
@@ -8568,7 +9513,7 @@ export interface operations {
8568
9513
  content: {
8569
9514
  "application/json": {
8570
9515
  /**
8571
- * @example Dormant
9516
+ * @example Suspended
8572
9517
  * @enum {string}
8573
9518
  */
8574
9519
  status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
@@ -8583,7 +9528,7 @@ export interface operations {
8583
9528
  content: {
8584
9529
  "application/json": {
8585
9530
  data?: {
8586
- /** @example 2776f773-bc0f-489c-a680-f9ccc035646c */
9531
+ /** @example 1eb4d36e-8f43-4df9-a896-911f17c2bb3b */
8587
9532
  uid?: string;
8588
9533
  /** @example Morgan Hirthe */
8589
9534
  username?: string;
@@ -8613,7 +9558,7 @@ export interface operations {
8613
9558
  timezone?: string;
8614
9559
  /** @example Customer */
8615
9560
  user_type?: string;
8616
- /** @example 30 Apr 2026, 06:38 AM */
9561
+ /** @example 30 Apr 2026, 10:55 AM */
8617
9562
  created?: string;
8618
9563
  /** @example 0 seconds ago */
8619
9564
  email_verified_at?: string;
@@ -9322,11 +10267,11 @@ export interface operations {
9322
10267
  content: {
9323
10268
  "application/json": {
9324
10269
  data?: {
9325
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
10270
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
9326
10271
  draft_name?: string;
9327
- /** @example LST-PRP-LTR-MOL44XZZW3F */
10272
+ /** @example LST-PRP-LTR-MOLDBEW6WIL */
9328
10273
  sku?: string;
9329
- /** @example b5c4b029-7b1c-4443-81bb-754e8ab9143b */
10274
+ /** @example 194f4297-3072-4762-821d-c3ab03d9dc3c */
9330
10275
  uid?: string;
9331
10276
  /** @example Rent */
9332
10277
  listing_type?: string;
@@ -9766,7 +10711,7 @@ export interface operations {
9766
10711
  content: {
9767
10712
  "application/json": {
9768
10713
  data?: {
9769
- /** @example 2cc236a4-55f4-461e-b9a1-d1fe9fe35da5 */
10714
+ /** @example 1e7a5470-29b9-48a7-8a03-cc9b1380751b */
9770
10715
  uid?: string;
9771
10716
  /** @example photo */
9772
10717
  media_type?: string;
@@ -10073,58 +11018,58 @@ export interface operations {
10073
11018
  /**
10074
11019
  * @example [
10075
11020
  * {
10076
- * "draft_name": "New For Sale Used Item draft • 30 Apr 2026, 6:38 AM",
10077
- * "sku": "LST-UIT-SAL-MOL44Y1JCPM",
10078
- * "uid": "f6cc4fd3-ae61-4327-927b-895c21060d9d",
10079
- * "listing_type": "Sale",
10080
- * "vertical": "Used Item",
10081
- * "arrangement_type": null,
10082
- * "arrangement_type_label": null,
11021
+ * "draft_name": "New For Rent Property draft • 30 Apr 2026, 10:55 AM",
11022
+ * "sku": "LST-PRP-LTR-MOLDBEXN2YU",
11023
+ * "uid": "5e5971ab-1178-4d12-bc39-8058e2c3f459",
11024
+ * "listing_type": "Rent",
11025
+ * "vertical": "Property",
11026
+ * "arrangement_type": "standard_residential",
11027
+ * "arrangement_type_label": "Standard Residential",
10083
11028
  * "price": null,
10084
11029
  * "state": "draft",
10085
11030
  * "published_at": null,
10086
11031
  * "published_since": null,
10087
11032
  * "is_visible": false,
10088
- * "summary": [],
11033
+ * "summary": {
11034
+ * "availability": null
11035
+ * },
10089
11036
  * "workflow": [],
10090
11037
  * "media": []
10091
11038
  * },
10092
11039
  * {
10093
- * "draft_name": "New For Rent Property draft • 30 Apr 2026, 6:38 AM",
10094
- * "sku": "LST-PRP-LTR-MOL44Y1LFHB",
10095
- * "uid": "e193d553-d280-44e1-ba4a-a5516a09efbd",
10096
- * "listing_type": "Rent",
10097
- * "vertical": "Property",
10098
- * "arrangement_type": "standard_residential",
10099
- * "arrangement_type_label": "Standard Residential",
11040
+ * "draft_name": "New For Sale Used Item draft • 30 Apr 2026, 10:55 AM",
11041
+ * "sku": "LST-UIT-SAL-MOLDBEXPPKD",
11042
+ * "uid": "60b0633e-dd8a-4d31-a8c8-804ac714f2d6",
11043
+ * "listing_type": "Sale",
11044
+ * "vertical": "Used Item",
11045
+ * "arrangement_type": null,
11046
+ * "arrangement_type_label": null,
10100
11047
  * "price": null,
10101
11048
  * "state": "draft",
10102
11049
  * "published_at": null,
10103
11050
  * "published_since": null,
10104
11051
  * "is_visible": false,
10105
- * "summary": {
10106
- * "availability": null
10107
- * },
11052
+ * "summary": [],
10108
11053
  * "workflow": [],
10109
11054
  * "media": []
10110
11055
  * }
10111
11056
  * ]
10112
11057
  */
10113
11058
  data?: {
10114
- /** @example New For Sale Used Item draft • 30 Apr 2026, 6:38 AM */
11059
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
10115
11060
  draft_name?: string;
10116
- /** @example LST-UIT-SAL-MOL44Y1JCPM */
11061
+ /** @example LST-PRP-LTR-MOLDBEXN2YU */
10117
11062
  sku?: string;
10118
- /** @example f6cc4fd3-ae61-4327-927b-895c21060d9d */
11063
+ /** @example 5e5971ab-1178-4d12-bc39-8058e2c3f459 */
10119
11064
  uid?: string;
10120
- /** @example Sale */
11065
+ /** @example Rent */
10121
11066
  listing_type?: string;
10122
- /** @example Used Item */
11067
+ /** @example Property */
10123
11068
  vertical?: string;
10124
- /** @example null */
10125
- arrangement_type?: string | null;
10126
- /** @example null */
10127
- arrangement_type_label?: string | null;
11069
+ /** @example standard_residential */
11070
+ arrangement_type?: string;
11071
+ /** @example Standard Residential */
11072
+ arrangement_type_label?: string;
10128
11073
  /** @example null */
10129
11074
  price?: string | null;
10130
11075
  /** @example draft */
@@ -10135,8 +11080,10 @@ export interface operations {
10135
11080
  published_since?: string | null;
10136
11081
  /** @example false */
10137
11082
  is_visible?: boolean;
10138
- /** @example [] */
10139
- summary?: unknown[];
11083
+ summary?: {
11084
+ /** @example null */
11085
+ availability?: string | null;
11086
+ };
10140
11087
  /** @example [] */
10141
11088
  workflow?: unknown[];
10142
11089
  /** @example [] */
@@ -10308,11 +11255,11 @@ export interface operations {
10308
11255
  content: {
10309
11256
  "application/json": {
10310
11257
  data?: {
10311
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
11258
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
10312
11259
  draft_name?: string;
10313
- /** @example LST-PRP-LTR-MOL44Y1UZMI */
11260
+ /** @example LST-PRP-LTR-MOLDBEXZGIF */
10314
11261
  sku?: string;
10315
- /** @example aa42e322-a519-4f5d-8821-c26441c28328 */
11262
+ /** @example fbf26b3d-a995-44e0-9dc4-2e73ac31bd14 */
10316
11263
  uid?: string;
10317
11264
  /** @example Rent */
10318
11265
  listing_type?: string;
@@ -10375,11 +11322,11 @@ export interface operations {
10375
11322
  content: {
10376
11323
  "application/json": {
10377
11324
  data?: {
10378
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
11325
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
10379
11326
  draft_name?: string;
10380
- /** @example LST-PRP-LTR-MOL44Y20USN */
11327
+ /** @example LST-PRP-LTR-MOLDBEY6JXM */
10381
11328
  sku?: string;
10382
- /** @example 7d58166d-7b25-4144-9ed2-10ad705ad07f */
11329
+ /** @example 82bcb7b3-15d6-4cb6-8f06-4455f706e65a */
10383
11330
  uid?: string;
10384
11331
  /** @example Rent */
10385
11332
  listing_type?: string;
@@ -10432,11 +11379,11 @@ export interface operations {
10432
11379
  content: {
10433
11380
  "application/json": {
10434
11381
  data?: {
10435
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
11382
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
10436
11383
  draft_name?: string;
10437
- /** @example LST-PRP-LTR-MOL44Y25PFZ */
11384
+ /** @example LST-PRP-LTR-MOLDBEYDK0P */
10438
11385
  sku?: string;
10439
- /** @example 348eddb6-f565-4c7e-af94-1c90d01fe62d */
11386
+ /** @example de654d50-7d98-4f00-9785-e34a6b51f8d0 */
10440
11387
  uid?: string;
10441
11388
  /** @example Rent */
10442
11389
  listing_type?: string;
@@ -10489,11 +11436,11 @@ export interface operations {
10489
11436
  content: {
10490
11437
  "application/json": {
10491
11438
  data?: {
10492
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
11439
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
10493
11440
  draft_name?: string;
10494
- /** @example LST-PRP-LTR-MOL44Y2BGIB */
11441
+ /** @example LST-PRP-LTR-MOLDBEYKZWB */
10495
11442
  sku?: string;
10496
- /** @example 1b8534cc-415e-44c2-95bb-11073f99d766 */
11443
+ /** @example ed71ced2-f42b-499d-94ed-374710bc34f3 */
10497
11444
  uid?: string;
10498
11445
  /** @example Rent */
10499
11446
  listing_type?: string;
@@ -10687,7 +11634,7 @@ export interface operations {
10687
11634
  content: {
10688
11635
  "application/json": {
10689
11636
  data?: {
10690
- /** @example 256 */
11637
+ /** @example 274 */
10691
11638
  id?: number;
10692
11639
  /** @example 1 */
10693
11640
  category_id?: number;
@@ -10761,7 +11708,7 @@ export interface operations {
10761
11708
  content: {
10762
11709
  "application/json": {
10763
11710
  data?: {
10764
- /** @example 257 */
11711
+ /** @example 275 */
10765
11712
  id?: number;
10766
11713
  /** @example 1 */
10767
11714
  category_id?: number;
@@ -10800,7 +11747,7 @@ export interface operations {
10800
11747
  content: {
10801
11748
  "application/json": {
10802
11749
  data?: {
10803
- /** @example 258 */
11750
+ /** @example 276 */
10804
11751
  id?: number;
10805
11752
  /** @example 1 */
10806
11753
  category_id?: number;
@@ -10838,7 +11785,7 @@ export interface operations {
10838
11785
  /**
10839
11786
  * @example [
10840
11787
  * {
10841
- * "id": 370,
11788
+ * "id": 400,
10842
11789
  * "name": "Exterior",
10843
11790
  * "description": "For Exterior categories",
10844
11791
  * "display_order": 1,
@@ -10848,7 +11795,7 @@ export interface operations {
10848
11795
  * "is_active": true
10849
11796
  * },
10850
11797
  * {
10851
- * "id": 371,
11798
+ * "id": 401,
10852
11799
  * "name": "Exterior",
10853
11800
  * "description": "For Exterior categories",
10854
11801
  * "display_order": 1,
@@ -10860,7 +11807,7 @@ export interface operations {
10860
11807
  * ]
10861
11808
  */
10862
11809
  data?: {
10863
- /** @example 370 */
11810
+ /** @example 400 */
10864
11811
  id?: number;
10865
11812
  /** @example Exterior */
10866
11813
  name?: string;
@@ -10924,7 +11871,7 @@ export interface operations {
10924
11871
  content: {
10925
11872
  "application/json": {
10926
11873
  data?: {
10927
- /** @example 372 */
11874
+ /** @example 402 */
10928
11875
  id?: number;
10929
11876
  /** @example Exterior */
10930
11877
  name?: string;
@@ -10991,7 +11938,7 @@ export interface operations {
10991
11938
  content: {
10992
11939
  "application/json": {
10993
11940
  data?: {
10994
- /** @example 373 */
11941
+ /** @example 403 */
10995
11942
  id?: number;
10996
11943
  /** @example Exterior */
10997
11944
  name?: string;
@@ -11032,7 +11979,7 @@ export interface operations {
11032
11979
  content: {
11033
11980
  "application/json": {
11034
11981
  data?: {
11035
- /** @example 374 */
11982
+ /** @example 404 */
11036
11983
  id?: number;
11037
11984
  /** @example Exterior */
11038
11985
  name?: string;
@@ -11295,7 +12242,7 @@ export interface operations {
11295
12242
  content: {
11296
12243
  "application/json": {
11297
12244
  data?: {
11298
- /** @example 159 */
12245
+ /** @example 171 */
11299
12246
  id?: number;
11300
12247
  /** @example email_fa_0 */
11301
12248
  key?: string;
@@ -11309,9 +12256,9 @@ export interface operations {
11309
12256
  metadata_schema?: unknown[];
11310
12257
  /** @example true */
11311
12258
  is_active?: boolean;
11312
- /** @example 2026-04-30T06:38:45.000000Z */
12259
+ /** @example 2026-04-30T10:55:43.000000Z */
11313
12260
  created_at?: string;
11314
- /** @example 2026-04-30T06:38:45.000000Z */
12261
+ /** @example 2026-04-30T10:55:43.000000Z */
11315
12262
  updated_at?: string;
11316
12263
  };
11317
12264
  };
@@ -11371,7 +12318,7 @@ export interface operations {
11371
12318
  content: {
11372
12319
  "application/json": {
11373
12320
  data?: {
11374
- /** @example 160 */
12321
+ /** @example 172 */
11375
12322
  id?: number;
11376
12323
  /** @example email_fa_0 */
11377
12324
  key?: string;
@@ -11385,9 +12332,9 @@ export interface operations {
11385
12332
  metadata_schema?: unknown[];
11386
12333
  /** @example true */
11387
12334
  is_active?: boolean;
11388
- /** @example 2026-04-30T06:38:45.000000Z */
12335
+ /** @example 2026-04-30T10:55:43.000000Z */
11389
12336
  created_at?: string;
11390
- /** @example 2026-04-30T06:38:45.000000Z */
12337
+ /** @example 2026-04-30T10:55:43.000000Z */
11391
12338
  updated_at?: string;
11392
12339
  };
11393
12340
  };
@@ -12653,25 +13600,25 @@ export interface operations {
12653
13600
  /**
12654
13601
  * @example [
12655
13602
  * {
12656
- * "key": "modi",
12657
- * "name": "quia",
12658
- * "description": "Reprehenderit nobis quo recusandae.",
13603
+ * "key": "aut",
13604
+ * "name": "animi",
13605
+ * "description": "Cumque possimus porro et ut deleniti velit eum.",
12659
13606
  * "value_type": "string"
12660
13607
  * },
12661
13608
  * {
12662
- * "key": "quasi",
12663
- * "name": "porro",
12664
- * "description": "Qui et ut consequatur.",
13609
+ * "key": "molestiae",
13610
+ * "name": "aut",
13611
+ * "description": "Sed sit officiis sit et autem fugiat.",
12665
13612
  * "value_type": "string"
12666
13613
  * }
12667
13614
  * ]
12668
13615
  */
12669
13616
  data?: {
12670
- /** @example modi */
13617
+ /** @example aut */
12671
13618
  key?: string;
12672
- /** @example quia */
13619
+ /** @example animi */
12673
13620
  name?: string;
12674
- /** @example Reprehenderit nobis quo recusandae. */
13621
+ /** @example Cumque possimus porro et ut deleniti velit eum. */
12675
13622
  description?: string;
12676
13623
  /** @example string */
12677
13624
  value_type?: string;
@@ -13913,13 +14860,13 @@ export interface operations {
13913
14860
  };
13914
14861
  } | {
13915
14862
  data?: {
13916
- /** @example ea357f6a-b39d-4b49-9815-914c26c2822b */
14863
+ /** @example 48c060ad-6dd5-4fcf-88ef-7edd296426b4 */
13917
14864
  uid?: string;
13918
14865
  /** @example follow_up */
13919
14866
  inspection_type?: string;
13920
14867
  /** @example cancelled */
13921
14868
  status?: string;
13922
- /** @example 05 May 2026, 08:37 PM */
14869
+ /** @example 06 May 2026, 12:54 AM */
13923
14870
  scheduled_date?: string;
13924
14871
  /** @example null */
13925
14872
  completed_date?: string | null;
@@ -13927,11 +14874,11 @@ export interface operations {
13927
14874
  condition_rating?: string;
13928
14875
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
13929
14876
  summary?: string;
13930
- /** @example 28 Jun 2026, 05:25 PM */
14877
+ /** @example 28 Jun 2026, 09:42 PM */
13931
14878
  next_inspection_date?: string;
13932
- /** @example 30 Apr 2026, 06:38 AM */
14879
+ /** @example 30 Apr 2026, 10:55 AM */
13933
14880
  created_at?: string;
13934
- /** @example 30 Apr 2026, 06:38 AM */
14881
+ /** @example 30 Apr 2026, 10:55 AM */
13935
14882
  updated_at?: string;
13936
14883
  };
13937
14884
  };
@@ -13986,13 +14933,13 @@ export interface operations {
13986
14933
  content: {
13987
14934
  "application/json": {
13988
14935
  data?: {
13989
- /** @example be356418-d120-4ef1-9a5d-7424e4b17055 */
14936
+ /** @example 34b5dfd4-33b5-439c-ba65-6d87f20cbcba */
13990
14937
  uid?: string;
13991
14938
  /** @example follow_up */
13992
14939
  inspection_type?: string;
13993
14940
  /** @example cancelled */
13994
14941
  status?: string;
13995
- /** @example 05 May 2026, 08:37 PM */
14942
+ /** @example 06 May 2026, 12:54 AM */
13996
14943
  scheduled_date?: string;
13997
14944
  /** @example null */
13998
14945
  completed_date?: string | null;
@@ -14000,11 +14947,11 @@ export interface operations {
14000
14947
  condition_rating?: string;
14001
14948
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
14002
14949
  summary?: string;
14003
- /** @example 28 Jun 2026, 05:25 PM */
14950
+ /** @example 28 Jun 2026, 09:42 PM */
14004
14951
  next_inspection_date?: string;
14005
- /** @example 30 Apr 2026, 06:38 AM */
14952
+ /** @example 30 Apr 2026, 10:55 AM */
14006
14953
  created_at?: string;
14007
- /** @example 30 Apr 2026, 06:38 AM */
14954
+ /** @example 30 Apr 2026, 10:55 AM */
14008
14955
  updated_at?: string;
14009
14956
  };
14010
14957
  };
@@ -14099,13 +15046,13 @@ export interface operations {
14099
15046
  content: {
14100
15047
  "application/json": {
14101
15048
  data?: {
14102
- /** @example 6f8f2530-9a85-48a6-825a-8abe06f17d05 */
15049
+ /** @example a3619e3c-7783-4675-a721-8de338fe12b9 */
14103
15050
  uid?: string;
14104
15051
  /** @example follow_up */
14105
15052
  inspection_type?: string;
14106
15053
  /** @example cancelled */
14107
15054
  status?: string;
14108
- /** @example 23 Apr 2026, 06:03 PM */
15055
+ /** @example 23 Apr 2026, 10:20 PM */
14109
15056
  scheduled_date?: string;
14110
15057
  /** @example null */
14111
15058
  completed_date?: string | null;
@@ -14113,11 +15060,11 @@ export interface operations {
14113
15060
  condition_rating?: string;
14114
15061
  /** @example Et animi quos velit et fugiat. */
14115
15062
  summary?: string;
14116
- /** @example 02 Aug 2026, 01:57 AM */
15063
+ /** @example 02 Aug 2026, 06:14 AM */
14117
15064
  next_inspection_date?: string;
14118
- /** @example 30 Apr 2026, 06:38 AM */
15065
+ /** @example 30 Apr 2026, 10:55 AM */
14119
15066
  created_at?: string;
14120
- /** @example 30 Apr 2026, 06:38 AM */
15067
+ /** @example 30 Apr 2026, 10:55 AM */
14121
15068
  updated_at?: string;
14122
15069
  };
14123
15070
  };
@@ -14154,13 +15101,13 @@ export interface operations {
14154
15101
  content: {
14155
15102
  "application/json": {
14156
15103
  data?: {
14157
- /** @example 1168d055-e509-4121-b851-c482d7890dcf */
15104
+ /** @example c80f505f-d03b-4fec-96f9-a3874d70ae18 */
14158
15105
  uid?: string;
14159
15106
  /** @example follow_up */
14160
15107
  inspection_type?: string;
14161
15108
  /** @example cancelled */
14162
15109
  status?: string;
14163
- /** @example 05 May 2026, 08:37 PM */
15110
+ /** @example 06 May 2026, 12:54 AM */
14164
15111
  scheduled_date?: string;
14165
15112
  /** @example null */
14166
15113
  completed_date?: string | null;
@@ -14168,11 +15115,11 @@ export interface operations {
14168
15115
  condition_rating?: string;
14169
15116
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
14170
15117
  summary?: string;
14171
- /** @example 28 Jun 2026, 05:25 PM */
15118
+ /** @example 28 Jun 2026, 09:42 PM */
14172
15119
  next_inspection_date?: string;
14173
- /** @example 30 Apr 2026, 06:38 AM */
15120
+ /** @example 30 Apr 2026, 10:55 AM */
14174
15121
  created_at?: string;
14175
- /** @example 30 Apr 2026, 06:38 AM */
15122
+ /** @example 30 Apr 2026, 10:55 AM */
14176
15123
  updated_at?: string;
14177
15124
  };
14178
15125
  };
@@ -14209,13 +15156,13 @@ export interface operations {
14209
15156
  content: {
14210
15157
  "application/json": {
14211
15158
  data?: {
14212
- /** @example c499cf02-942c-44af-bc33-2f192869aadd */
15159
+ /** @example 6bbcd895-ebea-4912-a36d-b7bf5a6d247a */
14213
15160
  uid?: string;
14214
15161
  /** @example follow_up */
14215
15162
  inspection_type?: string;
14216
15163
  /** @example cancelled */
14217
15164
  status?: string;
14218
- /** @example 23 Apr 2026, 06:03 PM */
15165
+ /** @example 23 Apr 2026, 10:20 PM */
14219
15166
  scheduled_date?: string;
14220
15167
  /** @example null */
14221
15168
  completed_date?: string | null;
@@ -14223,11 +15170,11 @@ export interface operations {
14223
15170
  condition_rating?: string;
14224
15171
  /** @example Et animi quos velit et fugiat. */
14225
15172
  summary?: string;
14226
- /** @example 02 Aug 2026, 01:57 AM */
15173
+ /** @example 02 Aug 2026, 06:14 AM */
14227
15174
  next_inspection_date?: string;
14228
- /** @example 30 Apr 2026, 06:38 AM */
15175
+ /** @example 30 Apr 2026, 10:55 AM */
14229
15176
  created_at?: string;
14230
- /** @example 30 Apr 2026, 06:38 AM */
15177
+ /** @example 30 Apr 2026, 10:55 AM */
14231
15178
  updated_at?: string;
14232
15179
  };
14233
15180
  };
@@ -14354,29 +15301,29 @@ export interface operations {
14354
15301
  };
14355
15302
  } | {
14356
15303
  data?: {
14357
- /** @example e242c9c1-2b0e-4357-babb-156cd27c3ca4 */
15304
+ /** @example 1705ee75-d02c-4db2-b668-72cc89d8447d */
14358
15305
  uid?: string;
14359
15306
  /** @example 1 */
14360
15307
  tenancy_id?: number;
14361
- /** @example Qui commodi incidunt iure. */
15308
+ /** @example Quia et animi repudiandae architecto. */
14362
15309
  title?: string;
14363
- /** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
15310
+ /** @example Consequatur odio molestiae atque consectetur aut repudiandae. Voluptas esse libero eum quas ut. Incidunt minus omnis eaque magni. Pariatur consequatur unde voluptas ad quibusdam eaque illum. */
14364
15311
  description?: string;
14365
- /** @example breach */
15312
+ /** @example reported */
14366
15313
  status?: string;
14367
- /** @example low */
15314
+ /** @example emergency */
14368
15315
  priority?: string;
14369
- /** @example 28 Apr 2026, 08:07 PM */
15316
+ /** @example 27 Apr 2026, 04:15 PM */
14370
15317
  reported_at?: string;
14371
- /** @example null */
14372
- assigned_at?: string | null;
15318
+ /** @example 29 Apr 2026, 04:17 PM */
15319
+ assigned_at?: string;
14373
15320
  /** @example null */
14374
15321
  completed_at?: string | null;
14375
- /** @example 01 May 2026, 04:31 PM */
15322
+ /** @example 02 May 2026, 02:53 AM */
14376
15323
  sla_deadline?: string;
14377
- /** @example 30 Apr 2026, 06:38 AM */
15324
+ /** @example 30 Apr 2026, 10:55 AM */
14378
15325
  created_at?: string;
14379
- /** @example 30 Apr 2026, 06:38 AM */
15326
+ /** @example 30 Apr 2026, 10:55 AM */
14380
15327
  updated_at?: string;
14381
15328
  };
14382
15329
  };
@@ -14413,7 +15360,7 @@ export interface operations {
14413
15360
  content: {
14414
15361
  "application/json": {
14415
15362
  data?: {
14416
- /** @example 5cbf569c-22e2-4a41-acc7-5acc27fe8e33 */
15363
+ /** @example 80abd602-cd8d-4735-9b6f-6201703d5ac8 */
14417
15364
  uid?: string;
14418
15365
  /** @example 1 */
14419
15366
  tenancy_id?: number;
@@ -14425,17 +15372,17 @@ export interface operations {
14425
15372
  status?: string;
14426
15373
  /** @example low */
14427
15374
  priority?: string;
14428
- /** @example 28 Apr 2026, 08:07 PM */
15375
+ /** @example 29 Apr 2026, 12:24 AM */
14429
15376
  reported_at?: string;
14430
15377
  /** @example null */
14431
15378
  assigned_at?: string | null;
14432
15379
  /** @example null */
14433
15380
  completed_at?: string | null;
14434
- /** @example 01 May 2026, 04:31 PM */
15381
+ /** @example 01 May 2026, 08:48 PM */
14435
15382
  sla_deadline?: string;
14436
- /** @example 30 Apr 2026, 06:38 AM */
15383
+ /** @example 30 Apr 2026, 10:55 AM */
14437
15384
  created_at?: string;
14438
- /** @example 30 Apr 2026, 06:38 AM */
15385
+ /** @example 30 Apr 2026, 10:55 AM */
14439
15386
  updated_at?: string;
14440
15387
  };
14441
15388
  };
@@ -14472,7 +15419,7 @@ export interface operations {
14472
15419
  content: {
14473
15420
  "application/json": {
14474
15421
  data?: {
14475
- /** @example eed89295-2dd0-4cf0-9bdc-a5a7c510e6c9 */
15422
+ /** @example 5558e402-fe52-4a8f-8f23-4f3479a1f7d3 */
14476
15423
  uid?: string;
14477
15424
  /** @example 1 */
14478
15425
  tenancy_id?: number;
@@ -14484,17 +15431,17 @@ export interface operations {
14484
15431
  status?: string;
14485
15432
  /** @example emergency */
14486
15433
  priority?: string;
14487
- /** @example 23 Apr 2026, 05:52 PM */
15434
+ /** @example 23 Apr 2026, 10:09 PM */
14488
15435
  reported_at?: string;
14489
- /** @example 28 Apr 2026, 02:12 PM */
15436
+ /** @example 28 Apr 2026, 06:29 PM */
14490
15437
  assigned_at?: string;
14491
15438
  /** @example null */
14492
15439
  completed_at?: string | null;
14493
- /** @example 01 May 2026, 07:34 PM */
15440
+ /** @example 01 May 2026, 11:51 PM */
14494
15441
  sla_deadline?: string;
14495
- /** @example 30 Apr 2026, 06:38 AM */
15442
+ /** @example 30 Apr 2026, 10:55 AM */
14496
15443
  created_at?: string;
14497
- /** @example 30 Apr 2026, 06:38 AM */
15444
+ /** @example 30 Apr 2026, 10:55 AM */
14498
15445
  updated_at?: string;
14499
15446
  };
14500
15447
  };
@@ -14531,7 +15478,7 @@ export interface operations {
14531
15478
  content: {
14532
15479
  "application/json": {
14533
15480
  data?: {
14534
- /** @example f96b7a56-96b9-42ff-8776-fd2454f94280 */
15481
+ /** @example 9868cd93-849e-4049-8b03-9557ed030ece */
14535
15482
  uid?: string;
14536
15483
  /** @example 1 */
14537
15484
  tenancy_id?: number;
@@ -14543,17 +15490,17 @@ export interface operations {
14543
15490
  status?: string;
14544
15491
  /** @example emergency */
14545
15492
  priority?: string;
14546
- /** @example 23 Apr 2026, 05:52 PM */
15493
+ /** @example 23 Apr 2026, 10:09 PM */
14547
15494
  reported_at?: string;
14548
- /** @example 28 Apr 2026, 02:12 PM */
15495
+ /** @example 28 Apr 2026, 06:29 PM */
14549
15496
  assigned_at?: string;
14550
15497
  /** @example null */
14551
15498
  completed_at?: string | null;
14552
- /** @example 01 May 2026, 07:34 PM */
15499
+ /** @example 01 May 2026, 11:51 PM */
14553
15500
  sla_deadline?: string;
14554
- /** @example 30 Apr 2026, 06:38 AM */
15501
+ /** @example 30 Apr 2026, 10:55 AM */
14555
15502
  created_at?: string;
14556
- /** @example 30 Apr 2026, 06:38 AM */
15503
+ /** @example 30 Apr 2026, 10:55 AM */
14557
15504
  updated_at?: string;
14558
15505
  };
14559
15506
  };
@@ -14590,7 +15537,7 @@ export interface operations {
14590
15537
  content: {
14591
15538
  "application/json": {
14592
15539
  data?: {
14593
- /** @example d83ef09f-a948-4fc8-842e-dadc51a88dd5 */
15540
+ /** @example b336e6de-ca9d-401b-a2be-73c54480e54c */
14594
15541
  uid?: string;
14595
15542
  /** @example 1 */
14596
15543
  tenancy_id?: number;
@@ -14602,17 +15549,17 @@ export interface operations {
14602
15549
  status?: string;
14603
15550
  /** @example emergency */
14604
15551
  priority?: string;
14605
- /** @example 23 Apr 2026, 05:52 PM */
15552
+ /** @example 23 Apr 2026, 10:09 PM */
14606
15553
  reported_at?: string;
14607
- /** @example 28 Apr 2026, 02:12 PM */
15554
+ /** @example 28 Apr 2026, 06:29 PM */
14608
15555
  assigned_at?: string;
14609
15556
  /** @example null */
14610
15557
  completed_at?: string | null;
14611
- /** @example 01 May 2026, 07:34 PM */
15558
+ /** @example 01 May 2026, 11:51 PM */
14612
15559
  sla_deadline?: string;
14613
- /** @example 30 Apr 2026, 06:38 AM */
15560
+ /** @example 30 Apr 2026, 10:55 AM */
14614
15561
  created_at?: string;
14615
- /** @example 30 Apr 2026, 06:38 AM */
15562
+ /** @example 30 Apr 2026, 10:55 AM */
14616
15563
  updated_at?: string;
14617
15564
  };
14618
15565
  };
@@ -15287,18 +16234,28 @@ export interface operations {
15287
16234
  content: {
15288
16235
  "application/json": {
15289
16236
  /**
15290
- * @description Target listing UID to schedule the appointment for. The <code>uid</code> of an existing record in the listings table.
16237
+ * @description Target listing UID.
15291
16238
  * @example eb5eed63-f76c-476a-b3f0-02a84803b7c9
15292
16239
  */
15293
16240
  listing_uid: string;
15294
16241
  /**
15295
- * @description Appointment start datetime (ISO8601). Must be a valid date.
15296
- * @example 2026-04-01T10:00:00Z
16242
+ * @description Optional human-readable appointment title.
16243
+ * @example Viewing for Riverside Flat
16244
+ */
16245
+ title?: string | null;
16246
+ /**
16247
+ * @description Optional appointment type. Allowed values: property_viewing, virtual_viewing, landlord_meeting, inspection, maintenance. Defaults to property_viewing.
16248
+ * @example property_viewing
16249
+ */
16250
+ appointment_type?: string | null;
16251
+ /**
16252
+ * @description Appointment start datetime.
16253
+ * @example 2026-05-01T09:00:00Z
15297
16254
  */
15298
16255
  scheduled_start: string;
15299
16256
  /**
15300
- * @description Appointment end datetime (must be after start). Must be a valid date. Must be a date after <code>scheduled_start</code>.
15301
- * @example 2026-04-01T11:00:00Z
16257
+ * @description Appointment end datetime.
16258
+ * @example 2026-05-01T10:00:00Z
15302
16259
  */
15303
16260
  scheduled_end: string;
15304
16261
  };
@@ -15312,10 +16269,18 @@ export interface operations {
15312
16269
  content: {
15313
16270
  "application/json": {
15314
16271
  data?: {
15315
- /** @example 454 */
16272
+ /** @example 485 */
15316
16273
  id?: number;
15317
- /** @example APT-20260430-OERCMA */
16274
+ /** @example APT-20260430-P0YTV5 */
15318
16275
  appointment_ref?: string;
16276
+ /** @example Property viewing */
16277
+ title?: string;
16278
+ appointment_type?: {
16279
+ /** @example property_viewing */
16280
+ value?: string;
16281
+ /** @example Property Viewing */
16282
+ label?: string;
16283
+ };
15319
16284
  /** @example 2 */
15320
16285
  listing_id?: number;
15321
16286
  listing?: {
@@ -15353,9 +16318,9 @@ export interface operations {
15353
16318
  /** @example completed */
15354
16319
  status?: string;
15355
16320
  scheduled?: {
15356
- /** @example 1981-11-10T00:00:00.000000Z */
16321
+ /** @example 1996-01-25T00:00:00.000000Z */
15357
16322
  start?: string;
15358
- /** @example 1979-12-07T00:00:00.000000Z */
16323
+ /** @example 1981-05-28T00:00:00.000000Z */
15359
16324
  end?: string;
15360
16325
  };
15361
16326
  customer?: {
@@ -15370,7 +16335,7 @@ export interface operations {
15370
16335
  /** @example dogunfx */
15371
16336
  name?: string;
15372
16337
  };
15373
- /** @example 2026-04-30T06:38:45.000000Z */
16338
+ /** @example 2026-04-30T10:55:44.000000Z */
15374
16339
  created_at?: string;
15375
16340
  };
15376
16341
  };
@@ -15397,10 +16362,18 @@ export interface operations {
15397
16362
  content: {
15398
16363
  "application/json": {
15399
16364
  data?: {
15400
- /** @example 455 */
16365
+ /** @example 486 */
15401
16366
  id?: number;
15402
- /** @example APT-20260430-INXLAL */
16367
+ /** @example APT-20260430-B02R6S */
15403
16368
  appointment_ref?: string;
16369
+ /** @example Property viewing */
16370
+ title?: string;
16371
+ appointment_type?: {
16372
+ /** @example property_viewing */
16373
+ value?: string;
16374
+ /** @example Property Viewing */
16375
+ label?: string;
16376
+ };
15404
16377
  /** @example 2 */
15405
16378
  listing_id?: number;
15406
16379
  listing?: {
@@ -15455,7 +16428,7 @@ export interface operations {
15455
16428
  /** @example dogunfx */
15456
16429
  name?: string;
15457
16430
  };
15458
- /** @example 2026-04-30T06:38:45.000000Z */
16431
+ /** @example 2026-04-30T10:55:44.000000Z */
15459
16432
  created_at?: string;
15460
16433
  };
15461
16434
  };
@@ -15493,6 +16466,12 @@ export interface operations {
15493
16466
  * @example [
15494
16467
  * {
15495
16468
  * "id": 12,
16469
+ * "appointment_ref": "APT-20260430-ABC123",
16470
+ * "title": "Viewing for Riverside Flat",
16471
+ * "appointment_type": {
16472
+ * "value": "property_viewing",
16473
+ * "label": "Property Viewing"
16474
+ * },
15496
16475
  * "listing_id": 32,
15497
16476
  * "listing": {
15498
16477
  * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
@@ -15574,6 +16553,16 @@ export interface operations {
15574
16553
  items?: {
15575
16554
  /** @example 12 */
15576
16555
  id?: number;
16556
+ /** @example APT-20260430-ABC123 */
16557
+ appointment_ref?: string;
16558
+ /** @example Viewing for Riverside Flat */
16559
+ title?: string;
16560
+ appointment_type?: {
16561
+ /** @example property_viewing */
16562
+ value?: string;
16563
+ /** @example Property Viewing */
16564
+ label?: string;
16565
+ };
15577
16566
  /** @example 32 */
15578
16567
  listing_id?: number;
15579
16568
  listing?: {
@@ -15742,13 +16731,23 @@ export interface operations {
15742
16731
  content: {
15743
16732
  "application/json": {
15744
16733
  /**
15745
- * @description Appointment start datetime (ISO8601). Must be a valid date.
15746
- * @example 2026-04-01T10:00:00Z
16734
+ * @description Optional replacement appointment title.
16735
+ * @example Updated viewing for Riverside Flat
16736
+ */
16737
+ title?: string | null;
16738
+ /**
16739
+ * @description Optional replacement appointment type. Allowed values: property_viewing, virtual_viewing, landlord_meeting, inspection, maintenance.
16740
+ * @example virtual_viewing
16741
+ */
16742
+ appointment_type?: string | null;
16743
+ /**
16744
+ * @description Appointment start datetime.
16745
+ * @example 2026-05-01T09:00:00Z
15747
16746
  */
15748
16747
  scheduled_start: string;
15749
16748
  /**
15750
- * @description Appointment end datetime (must be after start). Must be a valid date. Must be a date after <code>scheduled_start</code>.
15751
- * @example 2026-04-01T11:00:00Z
16749
+ * @description Appointment end datetime.
16750
+ * @example 2026-05-01T10:00:00Z
15752
16751
  */
15753
16752
  scheduled_end: string;
15754
16753
  };
@@ -15762,10 +16761,18 @@ export interface operations {
15762
16761
  content: {
15763
16762
  "application/json": {
15764
16763
  data?: {
15765
- /** @example 456 */
16764
+ /** @example 487 */
15766
16765
  id?: number;
15767
- /** @example APT-20260430-58H9ZL */
16766
+ /** @example APT-20260430-VJKO6I */
15768
16767
  appointment_ref?: string;
16768
+ /** @example Property viewing */
16769
+ title?: string;
16770
+ appointment_type?: {
16771
+ /** @example property_viewing */
16772
+ value?: string;
16773
+ /** @example Property Viewing */
16774
+ label?: string;
16775
+ };
15769
16776
  /** @example 2 */
15770
16777
  listing_id?: number;
15771
16778
  listing?: {
@@ -15803,9 +16810,9 @@ export interface operations {
15803
16810
  /** @example completed */
15804
16811
  status?: string;
15805
16812
  scheduled?: {
15806
- /** @example 1981-11-10T00:00:00.000000Z */
16813
+ /** @example 1996-01-25T00:00:00.000000Z */
15807
16814
  start?: string;
15808
- /** @example 1979-12-07T00:00:00.000000Z */
16815
+ /** @example 1981-05-28T00:00:00.000000Z */
15809
16816
  end?: string;
15810
16817
  };
15811
16818
  customer?: {
@@ -15820,7 +16827,7 @@ export interface operations {
15820
16827
  /** @example dogunfx */
15821
16828
  name?: string;
15822
16829
  };
15823
- /** @example 2026-04-30T06:38:45.000000Z */
16830
+ /** @example 2026-04-30T10:55:44.000000Z */
15824
16831
  created_at?: string;
15825
16832
  };
15826
16833
  };
@@ -15847,10 +16854,18 @@ export interface operations {
15847
16854
  content: {
15848
16855
  "application/json": {
15849
16856
  data?: {
15850
- /** @example 457 */
16857
+ /** @example 488 */
15851
16858
  id?: number;
15852
- /** @example APT-20260430-NXAGVL */
16859
+ /** @example APT-20260430-UCCHSR */
15853
16860
  appointment_ref?: string;
16861
+ /** @example Property viewing */
16862
+ title?: string;
16863
+ appointment_type?: {
16864
+ /** @example property_viewing */
16865
+ value?: string;
16866
+ /** @example Property Viewing */
16867
+ label?: string;
16868
+ };
15854
16869
  /** @example 2 */
15855
16870
  listing_id?: number;
15856
16871
  listing?: {
@@ -15905,7 +16920,7 @@ export interface operations {
15905
16920
  /** @example dogunfx */
15906
16921
  name?: string;
15907
16922
  };
15908
- /** @example 2026-04-30T06:38:45.000000Z */
16923
+ /** @example 2026-04-30T10:55:44.000000Z */
15909
16924
  created_at?: string;
15910
16925
  };
15911
16926
  };
@@ -15932,10 +16947,18 @@ export interface operations {
15932
16947
  content: {
15933
16948
  "application/json": {
15934
16949
  data?: {
15935
- /** @example 458 */
16950
+ /** @example 489 */
15936
16951
  id?: number;
15937
- /** @example APT-20260430-OKHHNH */
16952
+ /** @example APT-20260430-JXPKVQ */
15938
16953
  appointment_ref?: string;
16954
+ /** @example Property viewing */
16955
+ title?: string;
16956
+ appointment_type?: {
16957
+ /** @example property_viewing */
16958
+ value?: string;
16959
+ /** @example Property Viewing */
16960
+ label?: string;
16961
+ };
15939
16962
  /** @example 2 */
15940
16963
  listing_id?: number;
15941
16964
  listing?: {
@@ -15990,7 +17013,7 @@ export interface operations {
15990
17013
  /** @example dogunfx */
15991
17014
  name?: string;
15992
17015
  };
15993
- /** @example 2026-04-30T06:38:45.000000Z */
17016
+ /** @example 2026-04-30T10:55:44.000000Z */
15994
17017
  created_at?: string;
15995
17018
  };
15996
17019
  };
@@ -16562,6 +17585,10 @@ export interface operations {
16562
17585
  title?: string;
16563
17586
  /** @example Rent */
16564
17587
  type?: string;
17588
+ /** @example 02:00 PM */
17589
+ check_in_time?: string;
17590
+ /** @example 11:00 AM */
17591
+ check_out_time?: string;
16565
17592
  };
16566
17593
  };
16567
17594
  guest?: {
@@ -16584,6 +17611,10 @@ export interface operations {
16584
17611
  /** @example null */
16585
17612
  avatar_path?: string | null;
16586
17613
  };
17614
+ /** @example 10 Jun 2026 */
17615
+ start_date?: string;
17616
+ /** @example 13 Jun 2026 */
17617
+ end_date?: string;
16587
17618
  /** @example 3 */
16588
17619
  nights?: number;
16589
17620
  /** @example pending */
@@ -17045,7 +18076,7 @@ export interface operations {
17045
18076
  content: {
17046
18077
  "application/json": {
17047
18078
  data?: {
17048
- /** @example 26630001-b7c6-47a2-923c-2a825964bf6c */
18079
+ /** @example e60a529b-8dc3-482f-b2ee-693f7a3419a1 */
17049
18080
  uid?: string;
17050
18081
  /** @example Ms. Audra Crooks II */
17051
18082
  username?: string;
@@ -17075,7 +18106,7 @@ export interface operations {
17075
18106
  timezone?: string;
17076
18107
  /** @example Customer */
17077
18108
  user_type?: string;
17078
- /** @example 30 Apr 2026, 06:38 AM */
18109
+ /** @example 30 Apr 2026, 10:55 AM */
17079
18110
  created?: string;
17080
18111
  /** @example 0 seconds ago */
17081
18112
  email_verified_at?: string;
@@ -17544,7 +18575,7 @@ export interface operations {
17544
18575
  content: {
17545
18576
  "application/json": {
17546
18577
  data?: {
17547
- /** @example fb20a4cd-3a9b-40f8-aa08-95c610275a70 */
18578
+ /** @example 0e6afb0c-aedf-4db7-8d86-53c44218b10c */
17548
18579
  uid?: string;
17549
18580
  /** @example Ms. Audra Crooks II */
17550
18581
  username?: string;
@@ -17574,7 +18605,7 @@ export interface operations {
17574
18605
  timezone?: string;
17575
18606
  /** @example Customer */
17576
18607
  user_type?: string;
17577
- /** @example 30 Apr 2026, 06:38 AM */
18608
+ /** @example 30 Apr 2026, 10:55 AM */
17578
18609
  created?: string;
17579
18610
  /** @example 0 seconds ago */
17580
18611
  email_verified_at?: string;
@@ -17656,10 +18687,178 @@ export interface operations {
17656
18687
  };
17657
18688
  };
17658
18689
  };
17659
- reservedBookingsLandlord: {
18690
+ reservedBookingsLandlord: {
18691
+ parameters: {
18692
+ query?: {
18693
+ /** @description Number of bookings per page. */
18694
+ per_page?: number;
18695
+ };
18696
+ header?: never;
18697
+ path?: never;
18698
+ cookie?: never;
18699
+ };
18700
+ requestBody?: {
18701
+ content: {
18702
+ "application/json": {
18703
+ /**
18704
+ * @description Must be at least 1. Must not be greater than 100.
18705
+ * @example 1
18706
+ */
18707
+ per_page?: number | null;
18708
+ };
18709
+ };
18710
+ };
18711
+ responses: {
18712
+ /** @description Retrieve landlord reserved bookings */
18713
+ 200: {
18714
+ headers: {
18715
+ [name: string]: unknown;
18716
+ };
18717
+ content: {
18718
+ "application/json": {
18719
+ /** @example Reserved bookings fetched successfully */
18720
+ message?: string;
18721
+ /** @example null */
18722
+ event?: string | null;
18723
+ data?: {
18724
+ /**
18725
+ * @example [
18726
+ * {
18727
+ * "id": 12,
18728
+ * "booking_ref": "BKG-20260430-ABC123",
18729
+ * "listing": {
18730
+ * "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
18731
+ * "cover": {
18732
+ * "uid": "lm_34fda1",
18733
+ * "media_type": "image/jpeg",
18734
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
18735
+ * "order_index": 0,
18736
+ * "is_cover": true
18737
+ * },
18738
+ * "details": {
18739
+ * "address": "24 Windsor Court, London, SW1",
18740
+ * "title": "24 Windsor Court",
18741
+ * "type": "Rent",
18742
+ * "check_in_time": "02:00 PM",
18743
+ * "check_out_time": "11:00 AM"
18744
+ * }
18745
+ * },
18746
+ * "guest": {
18747
+ * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
18748
+ * "name": "Dominic Thomas",
18749
+ * "email": "tenant3@justinshome.test",
18750
+ * "avatar_path": null
18751
+ * },
18752
+ * "host": {
18753
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
18754
+ * "name": "Alice Taylor",
18755
+ * "email": "alice@example.com",
18756
+ * "avatar_path": null
18757
+ * },
18758
+ * "start_date": "10 Jun 2026",
18759
+ * "end_date": "13 Jun 2026",
18760
+ * "nights": 3,
18761
+ * "status": "pending",
18762
+ * "total_price": "450.00"
18763
+ * }
18764
+ * ]
18765
+ */
18766
+ items?: {
18767
+ /** @example 12 */
18768
+ id?: number;
18769
+ /** @example BKG-20260430-ABC123 */
18770
+ booking_ref?: string;
18771
+ listing?: {
18772
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
18773
+ listing_uid?: string;
18774
+ cover?: {
18775
+ /** @example lm_34fda1 */
18776
+ uid?: string;
18777
+ /** @example image/jpeg */
18778
+ media_type?: string;
18779
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
18780
+ storage_path?: string;
18781
+ /** @example 0 */
18782
+ order_index?: number;
18783
+ /** @example true */
18784
+ is_cover?: boolean;
18785
+ };
18786
+ details?: {
18787
+ /** @example 24 Windsor Court, London, SW1 */
18788
+ address?: string;
18789
+ /** @example 24 Windsor Court */
18790
+ title?: string;
18791
+ /** @example Rent */
18792
+ type?: string;
18793
+ /** @example 02:00 PM */
18794
+ check_in_time?: string;
18795
+ /** @example 11:00 AM */
18796
+ check_out_time?: string;
18797
+ };
18798
+ };
18799
+ guest?: {
18800
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
18801
+ uid?: string;
18802
+ /** @example Dominic Thomas */
18803
+ name?: string;
18804
+ /** @example tenant3@justinshome.test */
18805
+ email?: string;
18806
+ /** @example null */
18807
+ avatar_path?: string | null;
18808
+ };
18809
+ host?: {
18810
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
18811
+ uid?: string;
18812
+ /** @example Alice Taylor */
18813
+ name?: string;
18814
+ /** @example alice@example.com */
18815
+ email?: string;
18816
+ /** @example null */
18817
+ avatar_path?: string | null;
18818
+ };
18819
+ /** @example 10 Jun 2026 */
18820
+ start_date?: string;
18821
+ /** @example 13 Jun 2026 */
18822
+ end_date?: string;
18823
+ /** @example 3 */
18824
+ nights?: number;
18825
+ /** @example pending */
18826
+ status?: string;
18827
+ /** @example 450.00 */
18828
+ total_price?: string;
18829
+ }[];
18830
+ pagination?: {
18831
+ /** @example 1 */
18832
+ current_page?: number;
18833
+ /** @example 15 */
18834
+ per_page?: number;
18835
+ /** @example 1 */
18836
+ total?: number;
18837
+ /** @example 1 */
18838
+ last_page?: number;
18839
+ /** @example 1 */
18840
+ from?: number;
18841
+ /** @example 1 */
18842
+ to?: number;
18843
+ };
18844
+ };
18845
+ };
18846
+ };
18847
+ };
18848
+ };
18849
+ };
18850
+ listLandlordRentalApplications: {
17660
18851
  parameters: {
17661
18852
  query?: {
17662
- /** @description Number of bookings per page. */
18853
+ /** @description Filter by application status. */
18854
+ status?: string;
18855
+ /** @description Filter by listing UID. */
18856
+ listing_uid?: string;
18857
+ /** @description Filter by tenant UID. */
18858
+ tenant_uid?: string;
18859
+ /** @description Filter by application reference. */
18860
+ application_ref?: string;
18861
+ /** @description Number of records per page. */
17663
18862
  per_page?: number;
17664
18863
  };
17665
18864
  header?: never;
@@ -17669,23 +18868,63 @@ export interface operations {
17669
18868
  requestBody?: {
17670
18869
  content: {
17671
18870
  "application/json": {
18871
+ /**
18872
+ * @description Must not be greater than 255 characters.
18873
+ * @example b
18874
+ */
18875
+ search?: string | null;
18876
+ /**
18877
+ * @example approved
18878
+ * @enum {string|null}
18879
+ */
18880
+ status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
18881
+ /**
18882
+ * @example landlord
18883
+ * @enum {string|null}
18884
+ */
18885
+ source?: "tenant" | "landlord" | "admin" | null;
18886
+ /**
18887
+ * @description The <code>uid</code> of an existing record in the listings table.
18888
+ * @example architecto
18889
+ */
18890
+ listing_uid?: string | null;
18891
+ /**
18892
+ * @description The <code>uid</code> of an existing record in the users table.
18893
+ * @example architecto
18894
+ */
18895
+ tenant_uid?: string | null;
18896
+ /**
18897
+ * @description The <code>uid</code> of an existing record in the users table.
18898
+ * @example architecto
18899
+ */
18900
+ landlord_uid?: string | null;
18901
+ /**
18902
+ * @description Must not be greater than 255 characters.
18903
+ * @example n
18904
+ */
18905
+ application_ref?: string | null;
17672
18906
  /**
17673
18907
  * @description Must be at least 1. Must not be greater than 100.
17674
- * @example 1
18908
+ * @example 7
17675
18909
  */
17676
18910
  per_page?: number | null;
18911
+ /**
18912
+ * @description Must be at least 1.
18913
+ * @example 66
18914
+ */
18915
+ page?: number | null;
17677
18916
  };
17678
18917
  };
17679
18918
  };
17680
18919
  responses: {
17681
- /** @description Retrieve landlord reserved bookings */
18920
+ /** @description Retrieve landlord rental applications */
17682
18921
  200: {
17683
18922
  headers: {
17684
18923
  [name: string]: unknown;
17685
18924
  };
17686
18925
  content: {
17687
18926
  "application/json": {
17688
- /** @example Reserved bookings fetched successfully */
18927
+ /** @example Rental applications fetched successfully */
17689
18928
  message?: string;
17690
18929
  /** @example null */
17691
18930
  event?: string | null;
@@ -17693,110 +18932,331 @@ export interface operations {
17693
18932
  /**
17694
18933
  * @example [
17695
18934
  * {
17696
- * "id": 12,
17697
- * "booking_ref": "BKG-20260430-ABC123",
18935
+ * "uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
18936
+ * "application_ref": "JH-APP-2026-000001",
18937
+ * "status": {
18938
+ * "value": "pending",
18939
+ * "label": "Pending Review"
18940
+ * },
18941
+ * "source": {
18942
+ * "value": "tenant",
18943
+ * "label": "Tenant"
18944
+ * },
18945
+ * "message": "I am interested in renting this property.",
18946
+ * "rejection_reason": null,
17698
18947
  * "listing": {
17699
- * "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
18948
+ * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
18949
+ * "title": "Riverside Flat",
18950
+ * "address": "12 River Road",
18951
+ * "listing_type": "long_term_rent",
18952
+ * "listing_vertical": "property",
17700
18953
  * "cover": {
17701
18954
  * "uid": "lm_34fda1",
17702
18955
  * "media_type": "image/jpeg",
17703
- * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
18956
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg",
17704
18957
  * "order_index": 0,
17705
18958
  * "is_cover": true
17706
- * },
17707
- * "details": {
17708
- * "address": "24 Windsor Court, London, SW1",
17709
- * "title": "24 Windsor Court",
17710
- * "type": "Rent"
17711
18959
  * }
17712
18960
  * },
17713
- * "guest": {
17714
- * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
17715
- * "name": "Dominic Thomas",
17716
- * "email": "tenant3@justinshome.test",
17717
- * "avatar_path": null
18961
+ * "tenant": {
18962
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
18963
+ * "name": "Jane Tenant",
18964
+ * "email": "jane@example.com"
17718
18965
  * },
17719
- * "host": {
18966
+ * "landlord": {
17720
18967
  * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
17721
- * "name": "Alice Taylor",
17722
- * "email": "alice@example.com",
17723
- * "avatar_path": null
18968
+ * "name": "John Landlord",
18969
+ * "email": "john@example.com"
17724
18970
  * },
17725
- * "nights": 3,
17726
- * "status": "pending",
17727
- * "total_price": "450.00"
18971
+ * "tenancy": null,
18972
+ * "timeline": {
18973
+ * "created_at": "2026-04-30T10:00:00.000000Z",
18974
+ * "approved_at": null,
18975
+ * "rejected_at": null,
18976
+ * "converted_to_tenancy_at": null
18977
+ * }
17728
18978
  * }
17729
18979
  * ]
17730
18980
  */
17731
18981
  items?: {
17732
- /** @example 12 */
17733
- id?: number;
17734
- /** @example BKG-20260430-ABC123 */
17735
- booking_ref?: string;
18982
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
18983
+ uid?: string;
18984
+ /** @example JH-APP-2026-000001 */
18985
+ application_ref?: string;
18986
+ status?: {
18987
+ /** @example pending */
18988
+ value?: string;
18989
+ /** @example Pending Review */
18990
+ label?: string;
18991
+ };
18992
+ source?: {
18993
+ /** @example tenant */
18994
+ value?: string;
18995
+ /** @example Tenant */
18996
+ label?: string;
18997
+ };
18998
+ /** @example I am interested in renting this property. */
18999
+ message?: string;
19000
+ /** @example null */
19001
+ rejection_reason?: string | null;
17736
19002
  listing?: {
17737
19003
  /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
17738
- listing_uid?: string;
19004
+ uid?: string;
19005
+ /** @example Riverside Flat */
19006
+ title?: string;
19007
+ /** @example 12 River Road */
19008
+ address?: string;
19009
+ /** @example long_term_rent */
19010
+ listing_type?: string;
19011
+ /** @example property */
19012
+ listing_vertical?: string;
17739
19013
  cover?: {
17740
19014
  /** @example lm_34fda1 */
17741
19015
  uid?: string;
17742
19016
  /** @example image/jpeg */
17743
19017
  media_type?: string;
17744
- /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
19018
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg */
17745
19019
  storage_path?: string;
17746
19020
  /** @example 0 */
17747
19021
  order_index?: number;
17748
19022
  /** @example true */
17749
19023
  is_cover?: boolean;
17750
19024
  };
17751
- details?: {
17752
- /** @example 24 Windsor Court, London, SW1 */
17753
- address?: string;
17754
- /** @example 24 Windsor Court */
17755
- title?: string;
17756
- /** @example Rent */
17757
- type?: string;
17758
- };
17759
19025
  };
17760
- guest?: {
17761
- /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
19026
+ tenant?: {
19027
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
17762
19028
  uid?: string;
17763
- /** @example Dominic Thomas */
19029
+ /** @example Jane Tenant */
17764
19030
  name?: string;
17765
- /** @example tenant3@justinshome.test */
19031
+ /** @example jane@example.com */
17766
19032
  email?: string;
17767
- /** @example null */
17768
- avatar_path?: string | null;
17769
19033
  };
17770
- host?: {
19034
+ landlord?: {
17771
19035
  /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
17772
19036
  uid?: string;
17773
- /** @example Alice Taylor */
19037
+ /** @example John Landlord */
17774
19038
  name?: string;
17775
- /** @example alice@example.com */
19039
+ /** @example john@example.com */
17776
19040
  email?: string;
19041
+ };
19042
+ /** @example null */
19043
+ tenancy?: string | null;
19044
+ timeline?: {
19045
+ /** @example 2026-04-30T10:00:00.000000Z */
19046
+ created_at?: string;
17777
19047
  /** @example null */
17778
- avatar_path?: string | null;
19048
+ approved_at?: string | null;
19049
+ /** @example null */
19050
+ rejected_at?: string | null;
19051
+ /** @example null */
19052
+ converted_to_tenancy_at?: string | null;
17779
19053
  };
17780
- /** @example 3 */
17781
- nights?: number;
19054
+ }[];
19055
+ pagination?: {
19056
+ /** @example 1 */
19057
+ current_page?: number;
19058
+ /** @example 15 */
19059
+ per_page?: number;
19060
+ /** @example 1 */
19061
+ total?: number;
19062
+ /** @example 1 */
19063
+ last_page?: number;
19064
+ /** @example 1 */
19065
+ from?: number;
19066
+ /** @example 1 */
19067
+ to?: number;
19068
+ };
19069
+ };
19070
+ };
19071
+ };
19072
+ };
19073
+ };
19074
+ };
19075
+ createLandlordRentalApplication: {
19076
+ parameters: {
19077
+ query?: never;
19078
+ header?: never;
19079
+ path?: never;
19080
+ cookie?: never;
19081
+ };
19082
+ requestBody: {
19083
+ content: {
19084
+ "application/json": {
19085
+ /**
19086
+ * @description The UID of the landlord-owned listing.
19087
+ * @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a
19088
+ */
19089
+ listing_uid: string;
19090
+ /**
19091
+ * @description The UID of the tenant user.
19092
+ * @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df
19093
+ */
19094
+ tenant_uid: string;
19095
+ /**
19096
+ * @description Optional note for the application.
19097
+ * @example Application created after viewing.
19098
+ */
19099
+ message?: string | null;
19100
+ };
19101
+ };
19102
+ };
19103
+ responses: {
19104
+ 200: {
19105
+ headers: {
19106
+ [name: string]: unknown;
19107
+ };
19108
+ content: {
19109
+ "application/json": {
19110
+ data?: {
19111
+ /** @example 471faec3-4ab5-4930-9630-7ab38e282645 */
19112
+ uid?: string;
19113
+ /** @example JH-APP-2026-936806 */
19114
+ application_ref?: string;
19115
+ status?: {
19116
+ /** @example pending */
19117
+ value?: string;
19118
+ /** @example Pending Review */
19119
+ label?: string;
19120
+ };
19121
+ source?: {
19122
+ /** @example tenant */
19123
+ value?: string;
19124
+ /** @example Tenant */
19125
+ label?: string;
19126
+ };
19127
+ /** @example Quos velit et fugiat sunt nihil accusantium harum. */
19128
+ message?: string;
19129
+ /** @example null */
19130
+ rejection_reason?: string | null;
19131
+ timeline?: {
19132
+ /** @example 2026-04-30T10:55:42.000000Z */
19133
+ created_at?: string;
19134
+ /** @example null */
19135
+ approved_at?: string | null;
19136
+ /** @example null */
19137
+ rejected_at?: string | null;
19138
+ /** @example null */
19139
+ converted_to_tenancy_at?: string | null;
19140
+ };
19141
+ };
19142
+ };
19143
+ };
19144
+ };
19145
+ };
19146
+ };
19147
+ approveLandlordRentalApplication: {
19148
+ parameters: {
19149
+ query?: never;
19150
+ header?: never;
19151
+ path: {
19152
+ /** @description The UID of the rental application. */
19153
+ application_uid: string;
19154
+ };
19155
+ cookie?: never;
19156
+ };
19157
+ requestBody?: never;
19158
+ responses: {
19159
+ 200: {
19160
+ headers: {
19161
+ [name: string]: unknown;
19162
+ };
19163
+ content: {
19164
+ "application/json": {
19165
+ data?: {
19166
+ /** @example 725ec381-6744-4234-9742-fbe45b475ee8 */
19167
+ uid?: string;
19168
+ /** @example JH-APP-2026-757680 */
19169
+ application_ref?: string;
19170
+ status?: {
19171
+ /** @example pending */
19172
+ value?: string;
19173
+ /** @example Pending Review */
19174
+ label?: string;
19175
+ };
19176
+ source?: {
19177
+ /** @example tenant */
19178
+ value?: string;
19179
+ /** @example Tenant */
19180
+ label?: string;
19181
+ };
19182
+ /** @example Quidem nostrum qui commodi incidunt iure odit. */
19183
+ message?: string;
19184
+ /** @example null */
19185
+ rejection_reason?: string | null;
19186
+ timeline?: {
19187
+ /** @example 2026-04-30T10:55:42.000000Z */
19188
+ created_at?: string;
19189
+ /** @example null */
19190
+ approved_at?: string | null;
19191
+ /** @example null */
19192
+ rejected_at?: string | null;
19193
+ /** @example null */
19194
+ converted_to_tenancy_at?: string | null;
19195
+ };
19196
+ };
19197
+ };
19198
+ };
19199
+ };
19200
+ };
19201
+ };
19202
+ rejectLandlordRentalApplication: {
19203
+ parameters: {
19204
+ query?: never;
19205
+ header?: never;
19206
+ path: {
19207
+ /** @description The UID of the rental application. */
19208
+ application_uid: string;
19209
+ };
19210
+ cookie?: never;
19211
+ };
19212
+ requestBody?: {
19213
+ content: {
19214
+ "application/json": {
19215
+ /**
19216
+ * @description Optional rejection reason.
19217
+ * @example Applicant selected another property.
19218
+ */
19219
+ reason?: string | null;
19220
+ };
19221
+ };
19222
+ };
19223
+ responses: {
19224
+ 200: {
19225
+ headers: {
19226
+ [name: string]: unknown;
19227
+ };
19228
+ content: {
19229
+ "application/json": {
19230
+ data?: {
19231
+ /** @example 56226f06-b824-4d75-91b4-7a72c94fbd59 */
19232
+ uid?: string;
19233
+ /** @example JH-APP-2026-449171 */
19234
+ application_ref?: string;
19235
+ status?: {
17782
19236
  /** @example pending */
17783
- status?: string;
17784
- /** @example 450.00 */
17785
- total_price?: string;
17786
- }[];
17787
- pagination?: {
17788
- /** @example 1 */
17789
- current_page?: number;
17790
- /** @example 15 */
17791
- per_page?: number;
17792
- /** @example 1 */
17793
- total?: number;
17794
- /** @example 1 */
17795
- last_page?: number;
17796
- /** @example 1 */
17797
- from?: number;
17798
- /** @example 1 */
17799
- to?: number;
19237
+ value?: string;
19238
+ /** @example Pending Review */
19239
+ label?: string;
19240
+ };
19241
+ source?: {
19242
+ /** @example tenant */
19243
+ value?: string;
19244
+ /** @example Tenant */
19245
+ label?: string;
19246
+ };
19247
+ /** @example Animi quos velit et fugiat. */
19248
+ message?: string;
19249
+ /** @example null */
19250
+ rejection_reason?: string | null;
19251
+ timeline?: {
19252
+ /** @example 2026-04-30T10:55:42.000000Z */
19253
+ created_at?: string;
19254
+ /** @example null */
19255
+ approved_at?: string | null;
19256
+ /** @example null */
19257
+ rejected_at?: string | null;
19258
+ /** @example null */
19259
+ converted_to_tenancy_at?: string | null;
17800
19260
  };
17801
19261
  };
17802
19262
  };
@@ -17804,6 +19264,57 @@ export interface operations {
17804
19264
  };
17805
19265
  };
17806
19266
  };
19267
+ convertLandlordRentalApplicationToTenancy: {
19268
+ parameters: {
19269
+ query?: never;
19270
+ header?: never;
19271
+ path: {
19272
+ /** @description The UID of the rental application. */
19273
+ application_uid: string;
19274
+ };
19275
+ cookie?: never;
19276
+ };
19277
+ requestBody?: never;
19278
+ responses: {
19279
+ 200: {
19280
+ headers: {
19281
+ [name: string]: unknown;
19282
+ };
19283
+ content: {
19284
+ "application/json": {
19285
+ data?: {
19286
+ /** @example b33923f6-44de-490c-963a-bfe74ab28fbe */
19287
+ uid?: string;
19288
+ /** @example 1 */
19289
+ listing_id?: number;
19290
+ /** @example 2 */
19291
+ landlord_id?: number;
19292
+ /** @example 2 */
19293
+ tenant_id?: number;
19294
+ /** @example 4881.50 */
19295
+ rent_amount?: string;
19296
+ /** @example 2151.17 */
19297
+ deposit_amount?: string;
19298
+ /** @example offer_accepted */
19299
+ state?: string;
19300
+ /** @example 2025-11-05T00:00:00.000000Z */
19301
+ start_date?: string;
19302
+ /** @example 2026-11-05T00:00:00.000000Z */
19303
+ end_date?: string;
19304
+ /** @example false */
19305
+ is_periodic?: boolean;
19306
+ /** @example null */
19307
+ company_name?: string | null;
19308
+ /** @example null */
19309
+ company_registration_number?: string | null;
19310
+ /** @example 2026-04-30T10:55:42.000000Z */
19311
+ created_at?: string;
19312
+ };
19313
+ };
19314
+ };
19315
+ };
19316
+ };
19317
+ };
17807
19318
  createListingDraft: {
17808
19319
  parameters: {
17809
19320
  query?: never;
@@ -17843,13 +19354,13 @@ export interface operations {
17843
19354
  content: {
17844
19355
  "application/json": {
17845
19356
  data?: {
17846
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
19357
+ /** @example New Short Let Property draft • 30 Apr 2026, 10:55 AM */
17847
19358
  draft_name?: string;
17848
- /** @example LST-PRP-LTR-MOL44XOOBEA */
19359
+ /** @example LST-PRP-SHL-MOLDBEKFPFE */
17849
19360
  sku?: string;
17850
- /** @example f29f318b-352b-498e-a8f2-bf10f333f1ad */
19361
+ /** @example 7713d766-ca76-4f72-bbce-95434a49dde3 */
17851
19362
  uid?: string;
17852
- /** @example Rent */
19363
+ /** @example Short Let */
17853
19364
  listing_type?: string;
17854
19365
  /** @example Property */
17855
19366
  vertical?: string;
@@ -17971,9 +19482,9 @@ export interface operations {
17971
19482
  /**
17972
19483
  * @example [
17973
19484
  * {
17974
- * "draft_name": "New For Rent Property draft • 30 Apr 2026, 6:38 AM",
17975
- * "sku": "LST-PRP-LTR-MOL44XPVWSY",
17976
- * "uid": "1bc53f7b-e029-4bae-bebd-5d34898269e6",
19485
+ * "draft_name": "New For Rent Property draft • 30 Apr 2026, 10:55 AM",
19486
+ * "sku": "LST-PRP-LTR-MOLDBEL6FAL",
19487
+ * "uid": "4b73d0d2-9ff1-4220-aa1b-f596164c844c",
17977
19488
  * "listing_type": "Rent",
17978
19489
  * "vertical": "Property",
17979
19490
  * "arrangement_type": "let_to_let",
@@ -17990,9 +19501,9 @@ export interface operations {
17990
19501
  * "media": []
17991
19502
  * },
17992
19503
  * {
17993
- * "draft_name": "New Short Let Property draft • 30 Apr 2026, 6:38 AM",
17994
- * "sku": "LST-PRP-SHL-MOL44XQ06HI",
17995
- * "uid": "28e44f9c-aea6-4c55-8900-d159c4e371f1",
19504
+ * "draft_name": "New Short Let Property draft • 30 Apr 2026, 10:55 AM",
19505
+ * "sku": "LST-PRP-SHL-MOLDBEL9SGA",
19506
+ * "uid": "e55a3100-b576-4faf-b9d7-f57f7bb251de",
17996
19507
  * "listing_type": "Short Let",
17997
19508
  * "vertical": "Property",
17998
19509
  * "arrangement_type": "short_term_managed",
@@ -18011,11 +19522,11 @@ export interface operations {
18011
19522
  * ]
18012
19523
  */
18013
19524
  data?: {
18014
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
19525
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
18015
19526
  draft_name?: string;
18016
- /** @example LST-PRP-LTR-MOL44XPVWSY */
19527
+ /** @example LST-PRP-LTR-MOLDBEL6FAL */
18017
19528
  sku?: string;
18018
- /** @example 1bc53f7b-e029-4bae-bebd-5d34898269e6 */
19529
+ /** @example 4b73d0d2-9ff1-4220-aa1b-f596164c844c */
18019
19530
  uid?: string;
18020
19531
  /** @example Rent */
18021
19532
  listing_type?: string;
@@ -18125,9 +19636,9 @@ export interface operations {
18125
19636
  /**
18126
19637
  * @example [
18127
19638
  * {
18128
- * "draft_name": "New For Rent Property draft • 30 Apr 2026, 6:38 AM",
18129
- * "sku": "LST-PRP-LTR-MOL44XQ7ABC",
18130
- * "uid": "2d2cc3b1-d228-4cc1-9fc5-40749a406138",
19639
+ * "draft_name": "New For Rent Property draft • 30 Apr 2026, 10:55 AM",
19640
+ * "sku": "LST-PRP-LTR-MOLDBELGA8M",
19641
+ * "uid": "87fe95e0-658e-420f-978a-bddaf63c8a2d",
18131
19642
  * "listing_type": "Rent",
18132
19643
  * "vertical": "Property",
18133
19644
  * "arrangement_type": "let_to_let",
@@ -18144,9 +19655,9 @@ export interface operations {
18144
19655
  * "media": []
18145
19656
  * },
18146
19657
  * {
18147
- * "draft_name": "New Short Let Property draft • 30 Apr 2026, 6:38 AM",
18148
- * "sku": "LST-PRP-SHL-MOL44XQCSCG",
18149
- * "uid": "5d8cbba1-e62e-4b30-96ee-412d049a7ffb",
19658
+ * "draft_name": "New Short Let Property draft • 30 Apr 2026, 10:55 AM",
19659
+ * "sku": "LST-PRP-SHL-MOLDBELISSZ",
19660
+ * "uid": "ee2d402f-4d05-4c4b-9cfe-98a2f380b4aa",
18150
19661
  * "listing_type": "Short Let",
18151
19662
  * "vertical": "Property",
18152
19663
  * "arrangement_type": "short_term_managed",
@@ -18165,11 +19676,11 @@ export interface operations {
18165
19676
  * ]
18166
19677
  */
18167
19678
  data?: {
18168
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
19679
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
18169
19680
  draft_name?: string;
18170
- /** @example LST-PRP-LTR-MOL44XQ7ABC */
19681
+ /** @example LST-PRP-LTR-MOLDBELGA8M */
18171
19682
  sku?: string;
18172
- /** @example 2d2cc3b1-d228-4cc1-9fc5-40749a406138 */
19683
+ /** @example 87fe95e0-658e-420f-978a-bddaf63c8a2d */
18173
19684
  uid?: string;
18174
19685
  /** @example Rent */
18175
19686
  listing_type?: string;
@@ -19418,7 +20929,7 @@ export interface operations {
19418
20929
  content: {
19419
20930
  "application/json": {
19420
20931
  data?: {
19421
- /** @example af869e40-4a7a-4a12-b64e-158027891a6b */
20932
+ /** @example d9ffa500-17f3-498e-8806-b0e701abfcc4 */
19422
20933
  uid?: string;
19423
20934
  /** @example photo */
19424
20935
  media_type?: string;
@@ -19567,11 +21078,11 @@ export interface operations {
19567
21078
  content: {
19568
21079
  "application/json": {
19569
21080
  data?: {
19570
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
21081
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:55 AM */
19571
21082
  draft_name?: string;
19572
- /** @example LST-PRP-LTR-MOL44XSK1K3 */
21083
+ /** @example LST-PRP-LTR-MOLDBENRTON */
19573
21084
  sku?: string;
19574
- /** @example 24807ca8-0bd8-4d71-970f-ccefc47fb48b */
21085
+ /** @example 6a78208e-4ace-4d9c-8446-a3f3500e893d */
19575
21086
  uid?: string;
19576
21087
  /** @example Rent */
19577
21088
  listing_type?: string;
@@ -19731,7 +21242,7 @@ export interface operations {
19731
21242
  content: {
19732
21243
  "application/json": {
19733
21244
  data?: {
19734
- /** @example 9619f767-a135-41c6-ba71-b2a1ae2a5308 */
21245
+ /** @example 571b1d8c-f877-45cf-9882-06dba7ccebac */
19735
21246
  uid?: string;
19736
21247
  /** @example null */
19737
21248
  compliances?: string | null;
@@ -19782,7 +21293,7 @@ export interface operations {
19782
21293
  content: {
19783
21294
  "application/json": {
19784
21295
  data?: {
19785
- /** @example 158 */
21296
+ /** @example 164 */
19786
21297
  id?: number;
19787
21298
  compliance?: {
19788
21299
  /** @example 1 */
@@ -19804,7 +21315,7 @@ export interface operations {
19804
21315
  reviewed_by?: number;
19805
21316
  /** @example null */
19806
21317
  reviewed_at?: string | null;
19807
- /** @example 2026-04-30T06:38:44.000000Z */
21318
+ /** @example 2026-04-30T10:55:43.000000Z */
19808
21319
  created_at?: string;
19809
21320
  };
19810
21321
  };
@@ -19859,22 +21370,22 @@ export interface operations {
19859
21370
  /**
19860
21371
  * @example [
19861
21372
  * {
19862
- * "uid": "ac4c345a-382f-4da9-ae02-8832c1f54b9a",
21373
+ * "uid": "66ea3f98-3497-4274-8e62-b00518fbc4f7",
19863
21374
  * "listing_id": 1,
19864
21375
  * "landlord_id": 2,
19865
21376
  * "tenant_id": 2,
19866
21377
  * "rent_amount": "4881.50",
19867
21378
  * "deposit_amount": "2151.17",
19868
21379
  * "state": "offer_accepted",
19869
- * "start_date": "2025-11-04T00:00:00.000000Z",
19870
- * "end_date": "2026-11-04T00:00:00.000000Z",
21380
+ * "start_date": "2025-11-05T00:00:00.000000Z",
21381
+ * "end_date": "2026-11-05T00:00:00.000000Z",
19871
21382
  * "is_periodic": false,
19872
21383
  * "company_name": null,
19873
21384
  * "company_registration_number": null,
19874
- * "created_at": "2026-04-30T06:38:44.000000Z"
21385
+ * "created_at": "2026-04-30T10:55:43.000000Z"
19875
21386
  * },
19876
21387
  * {
19877
- * "uid": "c79d21cb-b345-4313-a486-011547e9bf4b",
21388
+ * "uid": "e6f79ce0-afa9-4260-98c6-c52d1a3f854e",
19878
21389
  * "listing_id": 1,
19879
21390
  * "landlord_id": 2,
19880
21391
  * "tenant_id": 2,
@@ -19886,12 +21397,12 @@ export interface operations {
19886
21397
  * "is_periodic": false,
19887
21398
  * "company_name": null,
19888
21399
  * "company_registration_number": null,
19889
- * "created_at": "2026-04-30T06:38:44.000000Z"
21400
+ * "created_at": "2026-04-30T10:55:43.000000Z"
19890
21401
  * }
19891
21402
  * ]
19892
21403
  */
19893
21404
  data?: {
19894
- /** @example ac4c345a-382f-4da9-ae02-8832c1f54b9a */
21405
+ /** @example 66ea3f98-3497-4274-8e62-b00518fbc4f7 */
19895
21406
  uid?: string;
19896
21407
  /** @example 1 */
19897
21408
  listing_id?: number;
@@ -19905,9 +21416,9 @@ export interface operations {
19905
21416
  deposit_amount?: string;
19906
21417
  /** @example offer_accepted */
19907
21418
  state?: string;
19908
- /** @example 2025-11-04T00:00:00.000000Z */
21419
+ /** @example 2025-11-05T00:00:00.000000Z */
19909
21420
  start_date?: string;
19910
- /** @example 2026-11-04T00:00:00.000000Z */
21421
+ /** @example 2026-11-05T00:00:00.000000Z */
19911
21422
  end_date?: string;
19912
21423
  /** @example false */
19913
21424
  is_periodic?: boolean;
@@ -19915,7 +21426,7 @@ export interface operations {
19915
21426
  company_name?: string | null;
19916
21427
  /** @example null */
19917
21428
  company_registration_number?: string | null;
19918
- /** @example 2026-04-30T06:38:44.000000Z */
21429
+ /** @example 2026-04-30T10:55:43.000000Z */
19919
21430
  created_at?: string;
19920
21431
  }[];
19921
21432
  links?: {
@@ -20002,22 +21513,22 @@ export interface operations {
20002
21513
  /**
20003
21514
  * @example [
20004
21515
  * {
20005
- * "uid": "aa0829c1-13ef-43fa-8fe4-d956c84b84ed",
21516
+ * "uid": "cf5ea42d-9b3a-4781-97d9-e2a42d28b120",
20006
21517
  * "listing_id": 1,
20007
21518
  * "landlord_id": 2,
20008
21519
  * "tenant_id": 2,
20009
21520
  * "rent_amount": "4881.50",
20010
21521
  * "deposit_amount": "2151.17",
20011
21522
  * "state": "offer_accepted",
20012
- * "start_date": "2025-11-04T00:00:00.000000Z",
20013
- * "end_date": "2026-11-04T00:00:00.000000Z",
21523
+ * "start_date": "2025-11-05T00:00:00.000000Z",
21524
+ * "end_date": "2026-11-05T00:00:00.000000Z",
20014
21525
  * "is_periodic": false,
20015
21526
  * "company_name": null,
20016
21527
  * "company_registration_number": null,
20017
- * "created_at": "2026-04-30T06:38:44.000000Z"
21528
+ * "created_at": "2026-04-30T10:55:43.000000Z"
20018
21529
  * },
20019
21530
  * {
20020
- * "uid": "26facc6d-b8a3-4d25-a111-301937bd160c",
21531
+ * "uid": "5c65cfb8-439b-48cc-8dc0-ebc9051d9b08",
20021
21532
  * "listing_id": 1,
20022
21533
  * "landlord_id": 2,
20023
21534
  * "tenant_id": 2,
@@ -20029,12 +21540,12 @@ export interface operations {
20029
21540
  * "is_periodic": false,
20030
21541
  * "company_name": null,
20031
21542
  * "company_registration_number": null,
20032
- * "created_at": "2026-04-30T06:38:44.000000Z"
21543
+ * "created_at": "2026-04-30T10:55:43.000000Z"
20033
21544
  * }
20034
21545
  * ]
20035
21546
  */
20036
21547
  data?: {
20037
- /** @example aa0829c1-13ef-43fa-8fe4-d956c84b84ed */
21548
+ /** @example cf5ea42d-9b3a-4781-97d9-e2a42d28b120 */
20038
21549
  uid?: string;
20039
21550
  /** @example 1 */
20040
21551
  listing_id?: number;
@@ -20048,9 +21559,9 @@ export interface operations {
20048
21559
  deposit_amount?: string;
20049
21560
  /** @example offer_accepted */
20050
21561
  state?: string;
20051
- /** @example 2025-11-04T00:00:00.000000Z */
21562
+ /** @example 2025-11-05T00:00:00.000000Z */
20052
21563
  start_date?: string;
20053
- /** @example 2026-11-04T00:00:00.000000Z */
21564
+ /** @example 2026-11-05T00:00:00.000000Z */
20054
21565
  end_date?: string;
20055
21566
  /** @example false */
20056
21567
  is_periodic?: boolean;
@@ -20058,7 +21569,7 @@ export interface operations {
20058
21569
  company_name?: string | null;
20059
21570
  /** @example null */
20060
21571
  company_registration_number?: string | null;
20061
- /** @example 2026-04-30T06:38:44.000000Z */
21572
+ /** @example 2026-04-30T10:55:43.000000Z */
20062
21573
  created_at?: string;
20063
21574
  }[];
20064
21575
  links?: {
@@ -20165,7 +21676,7 @@ export interface operations {
20165
21676
  content: {
20166
21677
  "application/json": {
20167
21678
  data?: {
20168
- /** @example 235 */
21679
+ /** @example 247 */
20169
21680
  id?: number;
20170
21681
  compliance?: {
20171
21682
  /** @example 1 */
@@ -20185,9 +21696,9 @@ export interface operations {
20185
21696
  rejection_reason?: string | null;
20186
21697
  /** @example 1 */
20187
21698
  reviewed_by?: number;
20188
- /** @example 2026-04-30T06:38:44.000000Z */
21699
+ /** @example 2026-04-30T10:55:43.000000Z */
20189
21700
  reviewed_at?: string;
20190
- /** @example 2026-04-30T06:38:44.000000Z */
21701
+ /** @example 2026-04-30T10:55:43.000000Z */
20191
21702
  created_at?: string;
20192
21703
  };
20193
21704
  };
@@ -20214,7 +21725,7 @@ export interface operations {
20214
21725
  content: {
20215
21726
  "application/json": {
20216
21727
  data?: {
20217
- /** @example 236 */
21728
+ /** @example 248 */
20218
21729
  id?: number;
20219
21730
  compliance?: {
20220
21731
  /** @example 1 */
@@ -20234,9 +21745,9 @@ export interface operations {
20234
21745
  rejection_reason?: string | null;
20235
21746
  /** @example 1 */
20236
21747
  reviewed_by?: number;
20237
- /** @example 2026-04-30T06:38:44.000000Z */
21748
+ /** @example 2026-04-30T10:55:43.000000Z */
20238
21749
  reviewed_at?: string;
20239
- /** @example 2026-04-30T06:38:44.000000Z */
21750
+ /** @example 2026-04-30T10:55:43.000000Z */
20240
21751
  created_at?: string;
20241
21752
  };
20242
21753
  };
@@ -21368,37 +22879,37 @@ export interface operations {
21368
22879
  /**
21369
22880
  * @example [
21370
22881
  * {
21371
- * "uid": "216e075a-e2db-43d8-8818-0e7f1f2b3865",
22882
+ * "uid": "f14b2e75-5b2e-48bd-9311-02e27ebb6e65",
21372
22883
  * "tenancy_id": 1,
21373
22884
  * "title": "Quos velit et fugiat sunt nihil.",
21374
22885
  * "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.",
21375
22886
  * "status": "reported",
21376
22887
  * "priority": "emergency",
21377
- * "reported_at": "23 Apr 2026, 05:52 PM",
21378
- * "assigned_at": "28 Apr 2026, 02:12 PM",
22888
+ * "reported_at": "23 Apr 2026, 10:09 PM",
22889
+ * "assigned_at": "28 Apr 2026, 06:29 PM",
21379
22890
  * "completed_at": null,
21380
- * "sla_deadline": "01 May 2026, 07:34 PM",
21381
- * "created_at": "30 Apr 2026, 06:38 AM",
21382
- * "updated_at": "30 Apr 2026, 06:38 AM"
22891
+ * "sla_deadline": "01 May 2026, 11:51 PM",
22892
+ * "created_at": "30 Apr 2026, 10:55 AM",
22893
+ * "updated_at": "30 Apr 2026, 10:55 AM"
21383
22894
  * },
21384
22895
  * {
21385
- * "uid": "786ee815-91ef-4497-bd7b-cceb2aeee9e6",
22896
+ * "uid": "14dff8e2-f7e8-4707-9269-72e7d41e963f",
21386
22897
  * "tenancy_id": 1,
21387
22898
  * "title": "Fugit deleniti distinctio eum doloremque.",
21388
22899
  * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
21389
22900
  * "status": "completed",
21390
22901
  * "priority": "normal",
21391
- * "reported_at": "26 Apr 2026, 06:30 AM",
22902
+ * "reported_at": "26 Apr 2026, 10:47 AM",
21392
22903
  * "assigned_at": null,
21393
22904
  * "completed_at": null,
21394
- * "sla_deadline": "03 May 2026, 03:34 AM",
21395
- * "created_at": "30 Apr 2026, 06:38 AM",
21396
- * "updated_at": "30 Apr 2026, 06:38 AM"
22905
+ * "sla_deadline": "03 May 2026, 07:51 AM",
22906
+ * "created_at": "30 Apr 2026, 10:55 AM",
22907
+ * "updated_at": "30 Apr 2026, 10:55 AM"
21397
22908
  * }
21398
22909
  * ]
21399
22910
  */
21400
22911
  data?: {
21401
- /** @example 216e075a-e2db-43d8-8818-0e7f1f2b3865 */
22912
+ /** @example f14b2e75-5b2e-48bd-9311-02e27ebb6e65 */
21402
22913
  uid?: string;
21403
22914
  /** @example 1 */
21404
22915
  tenancy_id?: number;
@@ -21410,17 +22921,17 @@ export interface operations {
21410
22921
  status?: string;
21411
22922
  /** @example emergency */
21412
22923
  priority?: string;
21413
- /** @example 23 Apr 2026, 05:52 PM */
22924
+ /** @example 23 Apr 2026, 10:09 PM */
21414
22925
  reported_at?: string;
21415
- /** @example 28 Apr 2026, 02:12 PM */
22926
+ /** @example 28 Apr 2026, 06:29 PM */
21416
22927
  assigned_at?: string;
21417
22928
  /** @example null */
21418
22929
  completed_at?: string | null;
21419
- /** @example 01 May 2026, 07:34 PM */
22930
+ /** @example 01 May 2026, 11:51 PM */
21420
22931
  sla_deadline?: string;
21421
- /** @example 30 Apr 2026, 06:38 AM */
22932
+ /** @example 30 Apr 2026, 10:55 AM */
21422
22933
  created_at?: string;
21423
- /** @example 30 Apr 2026, 06:38 AM */
22934
+ /** @example 30 Apr 2026, 10:55 AM */
21424
22935
  updated_at?: string;
21425
22936
  }[];
21426
22937
  links?: {
@@ -21536,13 +23047,13 @@ export interface operations {
21536
23047
  };
21537
23048
  } | {
21538
23049
  data?: {
21539
- /** @example c54a7333-5228-4e7a-a6a4-a2bfe402319b */
23050
+ /** @example 9705eeb3-d0f8-45cb-9ae4-fb428337cf4d */
21540
23051
  uid?: string;
21541
23052
  /** @example image */
21542
23053
  file_type?: string;
21543
23054
  /** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
21544
23055
  url?: string;
21545
- /** @example 2026-04-30T06:38:45.000000Z */
23056
+ /** @example 2026-04-30T10:55:44.000000Z */
21546
23057
  created_at?: string;
21547
23058
  };
21548
23059
  };
@@ -21587,7 +23098,7 @@ export interface operations {
21587
23098
  content: {
21588
23099
  "application/json": {
21589
23100
  data?: {
21590
- /** @example 166 */
23101
+ /** @example 172 */
21591
23102
  id?: number;
21592
23103
  /** @example property_inquiry */
21593
23104
  type?: string;
@@ -21603,7 +23114,7 @@ export interface operations {
21603
23114
  };
21604
23115
  /** @example null */
21605
23116
  last_message_at?: string | null;
21606
- /** @example 2026-04-30T06:38:45.000000Z */
23117
+ /** @example 2026-04-30T10:55:44.000000Z */
21607
23118
  created_at?: string;
21608
23119
  };
21609
23120
  };
@@ -22014,7 +23525,7 @@ export interface operations {
22014
23525
  };
22015
23526
  content: {
22016
23527
  "application/json": {
22017
- /** @example 1e171ada-37f7-47d0-9610-e453a20f8923 */
23528
+ /** @example f383abc2-56e3-4a4f-96e0-425a30681d35 */
22018
23529
  id?: string;
22019
23530
  /** @example APPOINTMENT_CREATED */
22020
23531
  type?: string;
@@ -22026,7 +23537,7 @@ export interface operations {
22026
23537
  data?: unknown[];
22027
23538
  /** @example null */
22028
23539
  read_at?: string | null;
22029
- /** @example 2026-04-30T06:38:45.000000Z */
23540
+ /** @example 2026-04-30T10:55:44.000000Z */
22030
23541
  created_at?: string;
22031
23542
  };
22032
23543
  };
@@ -22116,90 +23627,469 @@ export interface operations {
22116
23627
  };
22117
23628
  };
22118
23629
  };
22119
- userPlan: {
23630
+ userPlan: {
23631
+ parameters: {
23632
+ query?: never;
23633
+ header?: never;
23634
+ path?: never;
23635
+ cookie?: never;
23636
+ };
23637
+ requestBody?: never;
23638
+ responses: {
23639
+ 200: {
23640
+ headers: {
23641
+ [name: string]: unknown;
23642
+ };
23643
+ content: {
23644
+ "application/json": {
23645
+ data?: {
23646
+ /** @example unde */
23647
+ key?: string;
23648
+ /** @example ipsam */
23649
+ name?: string;
23650
+ /** @example soft */
23651
+ enforcement_mode?: string;
23652
+ /** @example Landlord */
23653
+ user_type?: string;
23654
+ /** @example true */
23655
+ is_active?: boolean;
23656
+ };
23657
+ };
23658
+ };
23659
+ };
23660
+ };
23661
+ };
23662
+ myCapabilitiesPlan: {
23663
+ parameters: {
23664
+ query?: never;
23665
+ header?: never;
23666
+ path?: never;
23667
+ cookie?: never;
23668
+ };
23669
+ requestBody?: never;
23670
+ responses: {
23671
+ /** @description capabilities retrieved successfully */
23672
+ 200: {
23673
+ headers: {
23674
+ [name: string]: unknown;
23675
+ };
23676
+ content: {
23677
+ "application/json": {
23678
+ /** @example capabilities retrieved successfully */
23679
+ message?: string;
23680
+ /** @example null */
23681
+ event?: string | null;
23682
+ data?: {
23683
+ create_listing?: {
23684
+ /** @example Creating Listing */
23685
+ name?: string;
23686
+ /** @example Allow user to publish listings */
23687
+ description?: string;
23688
+ /** @example false */
23689
+ allowed?: boolean;
23690
+ /** @example Required verification not completed */
23691
+ reason?: string;
23692
+ /**
23693
+ * @example [
23694
+ * "phone_verified"
23695
+ * ]
23696
+ */
23697
+ missing?: string[];
23698
+ };
23699
+ publish_listing?: {
23700
+ /** @example Publish Listing */
23701
+ name?: string;
23702
+ /** @example null */
23703
+ description?: string | null;
23704
+ /** @example false */
23705
+ allowed?: boolean;
23706
+ /** @example Required verification not completed */
23707
+ reason?: string;
23708
+ /**
23709
+ * @example [
23710
+ * "phone_verified"
23711
+ * ]
23712
+ */
23713
+ missing?: string[];
23714
+ };
23715
+ };
23716
+ };
23717
+ };
23718
+ };
23719
+ };
23720
+ };
23721
+ checkCapabilityPlan: {
23722
+ parameters: {
23723
+ query?: never;
23724
+ header?: never;
23725
+ path: {
23726
+ /** @description The capability to check. Example create_listing */
23727
+ capability: string;
23728
+ };
23729
+ cookie?: never;
23730
+ };
23731
+ requestBody?: never;
23732
+ responses: {
23733
+ /** @description Check completed */
23734
+ 200: {
23735
+ headers: {
23736
+ [name: string]: unknown;
23737
+ };
23738
+ content: {
23739
+ "application/json": {
23740
+ /** @example Check completed */
23741
+ message?: string;
23742
+ /** @example null */
23743
+ event?: string | null;
23744
+ data?: {
23745
+ /** @example */
23746
+ capability?: string;
23747
+ /** @example */
23748
+ allowed?: string;
23749
+ };
23750
+ };
23751
+ };
23752
+ };
23753
+ };
23754
+ };
23755
+ createRentalApplications: {
23756
+ parameters: {
23757
+ query?: never;
23758
+ header?: never;
23759
+ path?: never;
23760
+ cookie?: never;
23761
+ };
23762
+ requestBody: {
23763
+ content: {
23764
+ "application/json": {
23765
+ /**
23766
+ * @description The UID of the long-term rental listing.
23767
+ * @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a
23768
+ */
23769
+ listing_uid: string;
23770
+ /**
23771
+ * @description Optional tenant note for the landlord.
23772
+ * @example I am interested in renting this property.
23773
+ */
23774
+ message?: string | null;
23775
+ };
23776
+ };
23777
+ };
23778
+ responses: {
23779
+ 200: {
23780
+ headers: {
23781
+ [name: string]: unknown;
23782
+ };
23783
+ content: {
23784
+ "application/json": {
23785
+ data?: {
23786
+ /** @example 2cb7a6ba-4e5c-4fbc-acd6-428cf663f321 */
23787
+ uid?: string;
23788
+ /** @example JH-APP-2026-089432 */
23789
+ application_ref?: string;
23790
+ status?: {
23791
+ /** @example pending */
23792
+ value?: string;
23793
+ /** @example Pending Review */
23794
+ label?: string;
23795
+ };
23796
+ source?: {
23797
+ /** @example tenant */
23798
+ value?: string;
23799
+ /** @example Tenant */
23800
+ label?: string;
23801
+ };
23802
+ /** @example Sunt nihil accusantium harum mollitia. */
23803
+ message?: string;
23804
+ /** @example null */
23805
+ rejection_reason?: string | null;
23806
+ timeline?: {
23807
+ /** @example 2026-04-30T10:55:44.000000Z */
23808
+ created_at?: string;
23809
+ /** @example null */
23810
+ approved_at?: string | null;
23811
+ /** @example null */
23812
+ rejected_at?: string | null;
23813
+ /** @example null */
23814
+ converted_to_tenancy_at?: string | null;
23815
+ };
23816
+ };
23817
+ };
23818
+ };
23819
+ };
23820
+ };
23821
+ };
23822
+ listMyRentalApplications: {
22120
23823
  parameters: {
22121
- query?: never;
23824
+ query?: {
23825
+ /** @description Filter by application status. */
23826
+ status?: string;
23827
+ /** @description Filter by listing UID. */
23828
+ listing_uid?: string;
23829
+ /** @description Filter by application reference. */
23830
+ application_ref?: string;
23831
+ /** @description Number of records per page. */
23832
+ per_page?: number;
23833
+ };
22122
23834
  header?: never;
22123
23835
  path?: never;
22124
23836
  cookie?: never;
22125
23837
  };
22126
- requestBody?: never;
23838
+ requestBody?: {
23839
+ content: {
23840
+ "application/json": {
23841
+ /**
23842
+ * @description Must not be greater than 255 characters.
23843
+ * @example b
23844
+ */
23845
+ search?: string | null;
23846
+ /**
23847
+ * @example cancelled
23848
+ * @enum {string|null}
23849
+ */
23850
+ status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
23851
+ /**
23852
+ * @example admin
23853
+ * @enum {string|null}
23854
+ */
23855
+ source?: "tenant" | "landlord" | "admin" | null;
23856
+ /**
23857
+ * @description The <code>uid</code> of an existing record in the listings table.
23858
+ * @example architecto
23859
+ */
23860
+ listing_uid?: string | null;
23861
+ /**
23862
+ * @description The <code>uid</code> of an existing record in the users table.
23863
+ * @example architecto
23864
+ */
23865
+ tenant_uid?: string | null;
23866
+ /**
23867
+ * @description The <code>uid</code> of an existing record in the users table.
23868
+ * @example architecto
23869
+ */
23870
+ landlord_uid?: string | null;
23871
+ /**
23872
+ * @description Must not be greater than 255 characters.
23873
+ * @example n
23874
+ */
23875
+ application_ref?: string | null;
23876
+ /**
23877
+ * @description Must be at least 1. Must not be greater than 100.
23878
+ * @example 7
23879
+ */
23880
+ per_page?: number | null;
23881
+ /**
23882
+ * @description Must be at least 1.
23883
+ * @example 66
23884
+ */
23885
+ page?: number | null;
23886
+ };
23887
+ };
23888
+ };
22127
23889
  responses: {
23890
+ /** @description Retrieve tenant rental applications */
22128
23891
  200: {
22129
23892
  headers: {
22130
23893
  [name: string]: unknown;
22131
23894
  };
22132
23895
  content: {
22133
23896
  "application/json": {
23897
+ /** @example Rental applications fetched successfully */
23898
+ message?: string;
23899
+ /** @example null */
23900
+ event?: string | null;
22134
23901
  data?: {
22135
- /** @example aut */
22136
- key?: string;
22137
- /** @example adipisci */
22138
- name?: string;
22139
- /** @example soft */
22140
- enforcement_mode?: string;
22141
- /** @example Landlord */
22142
- user_type?: string;
22143
- /** @example true */
22144
- is_active?: boolean;
23902
+ /**
23903
+ * @example [
23904
+ * {
23905
+ * "uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
23906
+ * "application_ref": "JH-APP-2026-000001",
23907
+ * "status": {
23908
+ * "value": "pending",
23909
+ * "label": "Pending Review"
23910
+ * },
23911
+ * "source": {
23912
+ * "value": "tenant",
23913
+ * "label": "Tenant"
23914
+ * },
23915
+ * "message": "I am interested in renting this property.",
23916
+ * "rejection_reason": null,
23917
+ * "listing": {
23918
+ * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
23919
+ * "title": "Riverside Flat",
23920
+ * "address": "12 River Road",
23921
+ * "listing_type": "long_term_rent",
23922
+ * "listing_vertical": "property",
23923
+ * "cover": {
23924
+ * "uid": "lm_34fda1",
23925
+ * "media_type": "image/jpeg",
23926
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg",
23927
+ * "order_index": 0,
23928
+ * "is_cover": true
23929
+ * }
23930
+ * },
23931
+ * "tenant": {
23932
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
23933
+ * "name": "Jane Tenant",
23934
+ * "email": "jane@example.com"
23935
+ * },
23936
+ * "landlord": {
23937
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
23938
+ * "name": "John Landlord",
23939
+ * "email": "john@example.com"
23940
+ * },
23941
+ * "tenancy": null,
23942
+ * "timeline": {
23943
+ * "created_at": "2026-04-30T10:00:00.000000Z",
23944
+ * "approved_at": null,
23945
+ * "rejected_at": null,
23946
+ * "converted_to_tenancy_at": null
23947
+ * }
23948
+ * }
23949
+ * ]
23950
+ */
23951
+ items?: {
23952
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
23953
+ uid?: string;
23954
+ /** @example JH-APP-2026-000001 */
23955
+ application_ref?: string;
23956
+ status?: {
23957
+ /** @example pending */
23958
+ value?: string;
23959
+ /** @example Pending Review */
23960
+ label?: string;
23961
+ };
23962
+ source?: {
23963
+ /** @example tenant */
23964
+ value?: string;
23965
+ /** @example Tenant */
23966
+ label?: string;
23967
+ };
23968
+ /** @example I am interested in renting this property. */
23969
+ message?: string;
23970
+ /** @example null */
23971
+ rejection_reason?: string | null;
23972
+ listing?: {
23973
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
23974
+ uid?: string;
23975
+ /** @example Riverside Flat */
23976
+ title?: string;
23977
+ /** @example 12 River Road */
23978
+ address?: string;
23979
+ /** @example long_term_rent */
23980
+ listing_type?: string;
23981
+ /** @example property */
23982
+ listing_vertical?: string;
23983
+ cover?: {
23984
+ /** @example lm_34fda1 */
23985
+ uid?: string;
23986
+ /** @example image/jpeg */
23987
+ media_type?: string;
23988
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg */
23989
+ storage_path?: string;
23990
+ /** @example 0 */
23991
+ order_index?: number;
23992
+ /** @example true */
23993
+ is_cover?: boolean;
23994
+ };
23995
+ };
23996
+ tenant?: {
23997
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
23998
+ uid?: string;
23999
+ /** @example Jane Tenant */
24000
+ name?: string;
24001
+ /** @example jane@example.com */
24002
+ email?: string;
24003
+ };
24004
+ landlord?: {
24005
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
24006
+ uid?: string;
24007
+ /** @example John Landlord */
24008
+ name?: string;
24009
+ /** @example john@example.com */
24010
+ email?: string;
24011
+ };
24012
+ /** @example null */
24013
+ tenancy?: string | null;
24014
+ timeline?: {
24015
+ /** @example 2026-04-30T10:00:00.000000Z */
24016
+ created_at?: string;
24017
+ /** @example null */
24018
+ approved_at?: string | null;
24019
+ /** @example null */
24020
+ rejected_at?: string | null;
24021
+ /** @example null */
24022
+ converted_to_tenancy_at?: string | null;
24023
+ };
24024
+ }[];
24025
+ pagination?: {
24026
+ /** @example 1 */
24027
+ current_page?: number;
24028
+ /** @example 15 */
24029
+ per_page?: number;
24030
+ /** @example 1 */
24031
+ total?: number;
24032
+ /** @example 1 */
24033
+ last_page?: number;
24034
+ /** @example 1 */
24035
+ from?: number;
24036
+ /** @example 1 */
24037
+ to?: number;
24038
+ };
22145
24039
  };
22146
24040
  };
22147
24041
  };
22148
24042
  };
22149
24043
  };
22150
24044
  };
22151
- myCapabilitiesPlan: {
24045
+ fetchMyRentalApplications: {
22152
24046
  parameters: {
22153
24047
  query?: never;
22154
24048
  header?: never;
22155
- path?: never;
24049
+ path: {
24050
+ /** @description The UID of the rental application. */
24051
+ application_uid: string;
24052
+ };
22156
24053
  cookie?: never;
22157
24054
  };
22158
24055
  requestBody?: never;
22159
24056
  responses: {
22160
- /** @description capabilities retrieved successfully */
22161
24057
  200: {
22162
24058
  headers: {
22163
24059
  [name: string]: unknown;
22164
24060
  };
22165
24061
  content: {
22166
24062
  "application/json": {
22167
- /** @example capabilities retrieved successfully */
22168
- message?: string;
22169
- /** @example null */
22170
- event?: string | null;
22171
24063
  data?: {
22172
- create_listing?: {
22173
- /** @example Creating Listing */
22174
- name?: string;
22175
- /** @example Allow user to publish listings */
22176
- description?: string;
22177
- /** @example false */
22178
- allowed?: boolean;
22179
- /** @example Required verification not completed */
22180
- reason?: string;
22181
- /**
22182
- * @example [
22183
- * "phone_verified"
22184
- * ]
22185
- */
22186
- missing?: string[];
24064
+ /** @example 93d38c15-84d6-46e2-a0df-60ae8ed919b5 */
24065
+ uid?: string;
24066
+ /** @example JH-APP-2026-700432 */
24067
+ application_ref?: string;
24068
+ status?: {
24069
+ /** @example pending */
24070
+ value?: string;
24071
+ /** @example Pending Review */
24072
+ label?: string;
22187
24073
  };
22188
- publish_listing?: {
22189
- /** @example Publish Listing */
22190
- name?: string;
24074
+ source?: {
24075
+ /** @example tenant */
24076
+ value?: string;
24077
+ /** @example Tenant */
24078
+ label?: string;
24079
+ };
24080
+ /** @example Commodi incidunt iure odit. */
24081
+ message?: string;
24082
+ /** @example null */
24083
+ rejection_reason?: string | null;
24084
+ timeline?: {
24085
+ /** @example 2026-04-30T10:55:44.000000Z */
24086
+ created_at?: string;
22191
24087
  /** @example null */
22192
- description?: string | null;
22193
- /** @example false */
22194
- allowed?: boolean;
22195
- /** @example Required verification not completed */
22196
- reason?: string;
22197
- /**
22198
- * @example [
22199
- * "phone_verified"
22200
- * ]
22201
- */
22202
- missing?: string[];
24088
+ approved_at?: string | null;
24089
+ /** @example null */
24090
+ rejected_at?: string | null;
24091
+ /** @example null */
24092
+ converted_to_tenancy_at?: string | null;
22203
24093
  };
22204
24094
  };
22205
24095
  };
@@ -22207,34 +24097,55 @@ export interface operations {
22207
24097
  };
22208
24098
  };
22209
24099
  };
22210
- checkCapabilityPlan: {
24100
+ withdrawRentalApplications: {
22211
24101
  parameters: {
22212
24102
  query?: never;
22213
24103
  header?: never;
22214
24104
  path: {
22215
- /** @description The capability to check. Example create_listing */
22216
- capability: string;
24105
+ /** @description The UID of the rental application. */
24106
+ application_uid: string;
22217
24107
  };
22218
24108
  cookie?: never;
22219
24109
  };
22220
24110
  requestBody?: never;
22221
24111
  responses: {
22222
- /** @description Check completed */
22223
24112
  200: {
22224
24113
  headers: {
22225
24114
  [name: string]: unknown;
22226
24115
  };
22227
24116
  content: {
22228
24117
  "application/json": {
22229
- /** @example Check completed */
22230
- message?: string;
22231
- /** @example null */
22232
- event?: string | null;
22233
24118
  data?: {
22234
- /** @example */
22235
- capability?: string;
22236
- /** @example */
22237
- allowed?: string;
24119
+ /** @example 7369cabc-6977-4f73-ac0f-b6ead46ac284 */
24120
+ uid?: string;
24121
+ /** @example JH-APP-2026-031881 */
24122
+ application_ref?: string;
24123
+ status?: {
24124
+ /** @example pending */
24125
+ value?: string;
24126
+ /** @example Pending Review */
24127
+ label?: string;
24128
+ };
24129
+ source?: {
24130
+ /** @example tenant */
24131
+ value?: string;
24132
+ /** @example Tenant */
24133
+ label?: string;
24134
+ };
24135
+ /** @example Incidunt iure odit et et modi ipsum. */
24136
+ message?: string;
24137
+ /** @example null */
24138
+ rejection_reason?: string | null;
24139
+ timeline?: {
24140
+ /** @example 2026-04-30T10:55:44.000000Z */
24141
+ created_at?: string;
24142
+ /** @example null */
24143
+ approved_at?: string | null;
24144
+ /** @example null */
24145
+ rejected_at?: string | null;
24146
+ /** @example null */
24147
+ converted_to_tenancy_at?: string | null;
24148
+ };
22238
24149
  };
22239
24150
  };
22240
24151
  };
@@ -22419,21 +24330,21 @@ export interface operations {
22419
24330
  content: {
22420
24331
  "application/json": {
22421
24332
  data?: {
22422
- /** @example 381 */
24333
+ /** @example 405 */
22423
24334
  id?: number;
22424
24335
  /** @example 1 */
22425
24336
  rating?: number;
22426
24337
  /** @example Nice Listing */
22427
24338
  comment?: string;
22428
24339
  reviewer?: {
22429
- /** @example 3 */
24340
+ /** @example 26 */
22430
24341
  id?: number;
22431
- /** @example Teagan King */
24342
+ /** @example Arthur Reid */
22432
24343
  name?: string;
22433
24344
  };
22434
- /** @example 30 Apr 2026, 06:38 AM */
24345
+ /** @example 30 Apr 2026, 10:55 AM */
22435
24346
  created_at?: string;
22436
- /** @example 30 Apr 2026, 06:38 AM */
24347
+ /** @example 30 Apr 2026, 10:55 AM */
22437
24348
  updated_at?: string;
22438
24349
  };
22439
24350
  };
@@ -22477,21 +24388,21 @@ export interface operations {
22477
24388
  content: {
22478
24389
  "application/json": {
22479
24390
  data?: {
22480
- /** @example 382 */
24391
+ /** @example 406 */
22481
24392
  id?: number;
22482
24393
  /** @example 1 */
22483
24394
  rating?: number;
22484
24395
  /** @example Nice Listing */
22485
24396
  comment?: string;
22486
24397
  reviewer?: {
22487
- /** @example 3 */
24398
+ /** @example 5 */
22488
24399
  id?: number;
22489
- /** @example Teagan King */
24400
+ /** @example Mary Hall */
22490
24401
  name?: string;
22491
24402
  };
22492
- /** @example 30 Apr 2026, 06:38 AM */
24403
+ /** @example 30 Apr 2026, 10:55 AM */
22493
24404
  created_at?: string;
22494
- /** @example 30 Apr 2026, 06:38 AM */
24405
+ /** @example 30 Apr 2026, 10:55 AM */
22495
24406
  updated_at?: string;
22496
24407
  };
22497
24408
  };
@@ -22533,21 +24444,21 @@ export interface operations {
22533
24444
  content: {
22534
24445
  "application/json": {
22535
24446
  data?: {
22536
- /** @example 383 */
24447
+ /** @example 407 */
22537
24448
  id?: number;
22538
24449
  /** @example 1 */
22539
24450
  rating?: number;
22540
24451
  /** @example Nice Listing */
22541
24452
  comment?: string;
22542
24453
  reviewer?: {
22543
- /** @example 18 */
24454
+ /** @example 19 */
22544
24455
  id?: number;
22545
- /** @example Wayne Davies */
24456
+ /** @example John Brown */
22546
24457
  name?: string;
22547
24458
  };
22548
- /** @example 30 Apr 2026, 06:38 AM */
24459
+ /** @example 30 Apr 2026, 10:55 AM */
22549
24460
  created_at?: string;
22550
- /** @example 30 Apr 2026, 06:38 AM */
24461
+ /** @example 30 Apr 2026, 10:55 AM */
22551
24462
  updated_at?: string;
22552
24463
  };
22553
24464
  };
@@ -22574,21 +24485,21 @@ export interface operations {
22574
24485
  content: {
22575
24486
  "application/json": {
22576
24487
  data?: {
22577
- /** @example 384 */
24488
+ /** @example 408 */
22578
24489
  id?: number;
22579
24490
  /** @example 1 */
22580
24491
  rating?: number;
22581
24492
  /** @example Nice Listing */
22582
24493
  comment?: string;
22583
24494
  reviewer?: {
22584
- /** @example 24 */
24495
+ /** @example 26 */
22585
24496
  id?: number;
22586
- /** @example Ethan Green */
24497
+ /** @example Arthur Reid */
22587
24498
  name?: string;
22588
24499
  };
22589
- /** @example 30 Apr 2026, 06:38 AM */
24500
+ /** @example 30 Apr 2026, 10:55 AM */
22590
24501
  created_at?: string;
22591
- /** @example 30 Apr 2026, 06:38 AM */
24502
+ /** @example 30 Apr 2026, 10:55 AM */
22592
24503
  updated_at?: string;
22593
24504
  };
22594
24505
  };
@@ -22615,7 +24526,7 @@ export interface operations {
22615
24526
  content: {
22616
24527
  "application/json": {
22617
24528
  data?: {
22618
- /** @example db748299-fff8-4009-b414-4265f14aba0e */
24529
+ /** @example c2ff3bca-1fb4-456f-a30d-f0b481a7c0a1 */
22619
24530
  uid?: string;
22620
24531
  /** @example 1 */
22621
24532
  listing_id?: number;
@@ -22623,15 +24534,15 @@ export interface operations {
22623
24534
  landlord_id?: number;
22624
24535
  /** @example 2 */
22625
24536
  tenant_id?: number;
22626
- /** @example 4347.44 */
24537
+ /** @example 4881.50 */
22627
24538
  rent_amount?: string;
22628
- /** @example 4823.36 */
24539
+ /** @example 2151.17 */
22629
24540
  deposit_amount?: string;
22630
- /** @example active */
24541
+ /** @example offer_accepted */
22631
24542
  state?: string;
22632
- /** @example 2026-03-16T00:00:00.000000Z */
24543
+ /** @example 2025-11-05T00:00:00.000000Z */
22633
24544
  start_date?: string;
22634
- /** @example 2027-03-16T00:00:00.000000Z */
24545
+ /** @example 2026-11-05T00:00:00.000000Z */
22635
24546
  end_date?: string;
22636
24547
  /** @example false */
22637
24548
  is_periodic?: boolean;
@@ -22639,7 +24550,7 @@ export interface operations {
22639
24550
  company_name?: string | null;
22640
24551
  /** @example null */
22641
24552
  company_registration_number?: string | null;
22642
- /** @example 2026-04-30T06:38:45.000000Z */
24553
+ /** @example 2026-04-30T10:55:44.000000Z */
22643
24554
  created_at?: string;
22644
24555
  /** @example [] */
22645
24556
  compliances?: unknown[];
@@ -22716,7 +24627,7 @@ export interface operations {
22716
24627
  content: {
22717
24628
  "application/json": {
22718
24629
  data?: {
22719
- /** @example 86fb4c35-4fff-462d-a4ec-c2e145edd95c */
24630
+ /** @example a0112344-2733-4c3a-95bf-8965c738d55d */
22720
24631
  uid?: string;
22721
24632
  /** @example 1 */
22722
24633
  listing_id?: number;
@@ -22740,7 +24651,7 @@ export interface operations {
22740
24651
  company_name?: string | null;
22741
24652
  /** @example null */
22742
24653
  company_registration_number?: string | null;
22743
- /** @example 2026-04-30T06:38:46.000000Z */
24654
+ /** @example 2026-04-30T10:55:44.000000Z */
22744
24655
  created_at?: string;
22745
24656
  };
22746
24657
  };
@@ -23034,7 +24945,7 @@ export interface operations {
23034
24945
  * "changed_by_user_id": 3,
23035
24946
  * "changed_by_name": "Teagan King",
23036
24947
  * "comment": "Qui commodi incidunt iure odit.",
23037
- * "created_at": "2025-12-22T17:25:45.000000Z"
24948
+ * "created_at": "2025-12-22T21:42:43.000000Z"
23038
24949
  * },
23039
24950
  * {
23040
24951
  * "from_state": "pre_move_in_ready",
@@ -23042,7 +24953,7 @@ export interface operations {
23042
24953
  * "changed_by_user_id": 3,
23043
24954
  * "changed_by_name": "Teagan King",
23044
24955
  * "comment": null,
23045
- * "created_at": "2025-11-08T01:21:25.000000Z"
24956
+ * "created_at": "2025-11-08T05:38:23.000000Z"
23046
24957
  * }
23047
24958
  * ]
23048
24959
  */
@@ -23057,7 +24968,7 @@ export interface operations {
23057
24968
  changed_by_name?: string;
23058
24969
  /** @example Qui commodi incidunt iure odit. */
23059
24970
  comment?: string;
23060
- /** @example 2025-12-22T17:25:45.000000Z */
24971
+ /** @example 2025-12-22T21:42:43.000000Z */
23061
24972
  created_at?: string;
23062
24973
  }[];
23063
24974
  };
@@ -23442,7 +25353,7 @@ export interface operations {
23442
25353
  content: {
23443
25354
  "application/json": {
23444
25355
  data?: {
23445
- /** @example fda41d8d-bde1-4dc2-856e-5aa53e474139 */
25356
+ /** @example 276a2506-7a01-4816-90ae-94b4fa15aafe */
23446
25357
  uid?: string;
23447
25358
  /** @example Ms. Audra Crooks II */
23448
25359
  username?: string;
@@ -23472,7 +25383,7 @@ export interface operations {
23472
25383
  timezone?: string;
23473
25384
  /** @example Customer */
23474
25385
  user_type?: string;
23475
- /** @example 30 Apr 2026, 06:38 AM */
25386
+ /** @example 30 Apr 2026, 10:55 AM */
23476
25387
  created?: string;
23477
25388
  /** @example 0 seconds ago */
23478
25389
  email_verified_at?: string;
@@ -23585,7 +25496,9 @@ export interface operations {
23585
25496
  * "details": {
23586
25497
  * "address": "24 Windsor Court, London, SW1",
23587
25498
  * "title": "24 Windsor Court",
23588
- * "type": "Rent"
25499
+ * "type": "Rent",
25500
+ * "check_in_time": "02:00 PM",
25501
+ * "check_out_time": "11:00 AM"
23589
25502
  * }
23590
25503
  * },
23591
25504
  * "guest": {
@@ -23600,6 +25513,8 @@ export interface operations {
23600
25513
  * "email": "alice@example.com",
23601
25514
  * "avatar_path": null
23602
25515
  * },
25516
+ * "start_date": "10 Jun 2026",
25517
+ * "end_date": "13 Jun 2026",
23603
25518
  * "nights": 3,
23604
25519
  * "status": "pending",
23605
25520
  * "total_price": "450.00"
@@ -23633,6 +25548,10 @@ export interface operations {
23633
25548
  title?: string;
23634
25549
  /** @example Rent */
23635
25550
  type?: string;
25551
+ /** @example 02:00 PM */
25552
+ check_in_time?: string;
25553
+ /** @example 11:00 AM */
25554
+ check_out_time?: string;
23636
25555
  };
23637
25556
  };
23638
25557
  guest?: {
@@ -23655,6 +25574,10 @@ export interface operations {
23655
25574
  /** @example null */
23656
25575
  avatar_path?: string | null;
23657
25576
  };
25577
+ /** @example 10 Jun 2026 */
25578
+ start_date?: string;
25579
+ /** @example 13 Jun 2026 */
25580
+ end_date?: string;
23658
25581
  /** @example 3 */
23659
25582
  nights?: number;
23660
25583
  /** @example pending */
@@ -23735,7 +25658,7 @@ export interface operations {
23735
25658
  content: {
23736
25659
  "application/json": {
23737
25660
  data?: {
23738
- /** @example 6ee8f557-5fc6-4e6b-8ec5-38f4ecb6b422 */
25661
+ /** @example 94d22abc-c404-44a8-b7ea-2b64d2c69ae4 */
23739
25662
  uid?: string;
23740
25663
  /** @example Morgan Hirthe */
23741
25664
  username?: string;
@@ -23765,7 +25688,7 @@ export interface operations {
23765
25688
  timezone?: string;
23766
25689
  /** @example Customer */
23767
25690
  user_type?: string;
23768
- /** @example 30 Apr 2026, 06:38 AM */
25691
+ /** @example 30 Apr 2026, 10:55 AM */
23769
25692
  created?: string;
23770
25693
  /** @example 0 seconds ago */
23771
25694
  email_verified_at?: string;
@@ -23837,7 +25760,7 @@ export interface operations {
23837
25760
  content: {
23838
25761
  "application/json": {
23839
25762
  data?: {
23840
- /** @example a516d5e0-56fb-4329-82f6-80c52a392a6e */
25763
+ /** @example 239ac7ff-1a56-48d2-9515-37d6641252e4 */
23841
25764
  uid?: string;
23842
25765
  /** @example Ms. Audra Crooks II */
23843
25766
  username?: string;
@@ -23867,7 +25790,7 @@ export interface operations {
23867
25790
  timezone?: string;
23868
25791
  /** @example Customer */
23869
25792
  user_type?: string;
23870
- /** @example 30 Apr 2026, 06:38 AM */
25793
+ /** @example 30 Apr 2026, 10:55 AM */
23871
25794
  created?: string;
23872
25795
  /** @example 0 seconds ago */
23873
25796
  email_verified_at?: string;
@@ -24101,13 +26024,13 @@ export interface operations {
24101
26024
  content: {
24102
26025
  "application/json": {
24103
26026
  data?: {
24104
- /** @example 1 */
26027
+ /** @example 0 */
24105
26028
  current_level?: number;
24106
26029
  /** @example 3 */
24107
26030
  completed_layers?: number;
24108
- /** @example 6 */
26031
+ /** @example 4 */
24109
26032
  pending_layers?: number;
24110
- /** @example 30 Apr 2026, 06:38 AM */
26033
+ /** @example 30 Apr 2026, 10:55 AM */
24111
26034
  last_calculated_at?: string;
24112
26035
  };
24113
26036
  };
@@ -24155,7 +26078,7 @@ export interface operations {
24155
26078
  completed_layers?: number;
24156
26079
  /** @example 4 */
24157
26080
  pending_layers?: number;
24158
- /** @example 30 Apr 2026, 06:38 AM */
26081
+ /** @example 30 Apr 2026, 10:55 AM */
24159
26082
  last_calculated_at?: string;
24160
26083
  };
24161
26084
  };
@@ -24189,14 +26112,14 @@ export interface operations {
24189
26112
  content: {
24190
26113
  "application/json": {
24191
26114
  data?: {
24192
- /** @example 0d2b438f-693a-40b4-a5fa-cb4d5fce1531 */
26115
+ /** @example 1d2cb978-1c29-448b-9e74-7c82070babb2 */
24193
26116
  wishlist_uid?: string;
24194
26117
  listing?: {
24195
- /** @example New For Sale Used Item draft • 30 Apr 2026, 6:38 AM */
26118
+ /** @example New For Sale Used Item draft • 30 Apr 2026, 10:55 AM */
24196
26119
  draft_name?: string;
24197
- /** @example LST-UIT-SAL-MOL44YPEBZS */
26120
+ /** @example LST-UIT-SAL-MOLDBFOISLV */
24198
26121
  sku?: string;
24199
- /** @example 69bcb42b-e652-4506-a470-ebaa590e2854 */
26122
+ /** @example 29050f21-1d0f-484c-b2d9-07004fc9ae32 */
24200
26123
  uid?: string;
24201
26124
  /** @example Sale */
24202
26125
  listing_type?: string;
@@ -24577,13 +26500,13 @@ export interface operations {
24577
26500
  content: {
24578
26501
  "application/json": {
24579
26502
  data?: {
24580
- /** @example 0 */
26503
+ /** @example 9 */
24581
26504
  current_level?: number;
24582
26505
  /** @example 3 */
24583
26506
  completed_layers?: number;
24584
- /** @example 4 */
26507
+ /** @example 2 */
24585
26508
  pending_layers?: number;
24586
- /** @example 30 Apr 2026, 06:38 AM */
26509
+ /** @example 30 Apr 2026, 10:55 AM */
24587
26510
  last_calculated_at?: string;
24588
26511
  };
24589
26512
  };
@@ -24825,7 +26748,7 @@ export interface operations {
24825
26748
  completed_layers?: number;
24826
26749
  /** @example 4 */
24827
26750
  pending_layers?: number;
24828
- /** @example 30 Apr 2026, 06:38 AM */
26751
+ /** @example 30 Apr 2026, 10:55 AM */
24829
26752
  last_calculated_at?: string;
24830
26753
  };
24831
26754
  };