@justins-home/types 1.1.59 → 1.1.61

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 +2378 -471
  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 2929039b-70c0-4410-b566-160570581a85 */
6082
+ /** @example dd64b2e3-4800-4187-aecb-2eeb3387d438 */
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, 05:56 AM */
6112
+ /** @example 30 Apr 2026, 10:00 AM */
5795
6113
  created?: string;
5796
6114
  /** @example 0 seconds ago */
5797
6115
  email_verified_at?: string;
@@ -6059,6 +6377,12 @@ export interface operations {
6059
6377
  * @example [
6060
6378
  * {
6061
6379
  * "id": 12,
6380
+ * "appointment_ref": "APT-20260430-ABC123",
6381
+ * "title": "Viewing for Riverside Flat",
6382
+ * "appointment_type": {
6383
+ * "value": "property_viewing",
6384
+ * "label": "Property Viewing"
6385
+ * },
6062
6386
  * "listing_id": 32,
6063
6387
  * "listing": {
6064
6388
  * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
@@ -6140,6 +6464,16 @@ export interface operations {
6140
6464
  items?: {
6141
6465
  /** @example 12 */
6142
6466
  id?: number;
6467
+ /** @example APT-20260430-ABC123 */
6468
+ appointment_ref?: string;
6469
+ /** @example Viewing for Riverside Flat */
6470
+ title?: string;
6471
+ appointment_type?: {
6472
+ /** @example property_viewing */
6473
+ value?: string;
6474
+ /** @example Property Viewing */
6475
+ label?: string;
6476
+ };
6143
6477
  /** @example 32 */
6144
6478
  listing_id?: number;
6145
6479
  listing?: {
@@ -6294,23 +6628,622 @@ export interface operations {
6294
6628
  };
6295
6629
  };
6296
6630
  };
6297
- dashboardStatsAdmin: {
6631
+ listAdminRentalApplications: {
6298
6632
  parameters: {
6299
- query?: never;
6633
+ query?: {
6634
+ /** @description Search by application reference, tenant, or listing text. */
6635
+ search?: string;
6636
+ /** @description Filter by application status. */
6637
+ status?: string;
6638
+ /** @description Filter by source: tenant, landlord, or admin. */
6639
+ source?: string;
6640
+ /** @description Filter by listing UID. */
6641
+ listing_uid?: string;
6642
+ /** @description Filter by tenant UID. */
6643
+ tenant_uid?: string;
6644
+ /** @description Filter by landlord UID. */
6645
+ landlord_uid?: string;
6646
+ /** @description Filter by exact application reference. */
6647
+ application_ref?: string;
6648
+ /** @description Number of records per page. */
6649
+ per_page?: number;
6650
+ };
6300
6651
  header?: never;
6301
6652
  path?: never;
6302
6653
  cookie?: never;
6303
6654
  };
6304
- requestBody?: never;
6305
- responses: {
6306
- /** @description Retrieve admin dashboard stats */
6307
- 200: {
6308
- headers: {
6309
- [name: string]: unknown;
6310
- };
6311
- content: {
6312
- "application/json": {
6313
- /** @example Dashboard stats fetched */
6655
+ requestBody?: {
6656
+ content: {
6657
+ "application/json": {
6658
+ /**
6659
+ * @description Must not be greater than 255 characters.
6660
+ * @example b
6661
+ */
6662
+ search?: string | null;
6663
+ /**
6664
+ * @example rejected
6665
+ * @enum {string|null}
6666
+ */
6667
+ status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
6668
+ /**
6669
+ * @example tenant
6670
+ * @enum {string|null}
6671
+ */
6672
+ source?: "tenant" | "landlord" | "admin" | null;
6673
+ /**
6674
+ * @description The <code>uid</code> of an existing record in the listings table.
6675
+ * @example architecto
6676
+ */
6677
+ listing_uid?: string | null;
6678
+ /**
6679
+ * @description The <code>uid</code> of an existing record in the users table.
6680
+ * @example architecto
6681
+ */
6682
+ tenant_uid?: string | null;
6683
+ /**
6684
+ * @description The <code>uid</code> of an existing record in the users table.
6685
+ * @example architecto
6686
+ */
6687
+ landlord_uid?: string | null;
6688
+ /**
6689
+ * @description Must not be greater than 255 characters.
6690
+ * @example n
6691
+ */
6692
+ application_ref?: string | null;
6693
+ /**
6694
+ * @description Must be at least 1. Must not be greater than 100.
6695
+ * @example 7
6696
+ */
6697
+ per_page?: number | null;
6698
+ /**
6699
+ * @description Must be at least 1.
6700
+ * @example 66
6701
+ */
6702
+ page?: number | null;
6703
+ };
6704
+ };
6705
+ };
6706
+ responses: {
6707
+ /** @description Retrieve admin rental applications */
6708
+ 200: {
6709
+ headers: {
6710
+ [name: string]: unknown;
6711
+ };
6712
+ content: {
6713
+ "application/json": {
6714
+ /** @example Rental applications fetched successfully */
6715
+ message?: string;
6716
+ /** @example null */
6717
+ event?: string | null;
6718
+ data?: {
6719
+ /**
6720
+ * @example [
6721
+ * {
6722
+ * "uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
6723
+ * "application_ref": "JH-APP-2026-000001",
6724
+ * "status": {
6725
+ * "value": "pending",
6726
+ * "label": "Pending Review"
6727
+ * },
6728
+ * "source": {
6729
+ * "value": "tenant",
6730
+ * "label": "Tenant"
6731
+ * },
6732
+ * "message": "I am interested in renting this property.",
6733
+ * "rejection_reason": null,
6734
+ * "listing": {
6735
+ * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
6736
+ * "title": "Riverside Flat",
6737
+ * "address": "12 River Road",
6738
+ * "listing_type": "long_term_rent",
6739
+ * "listing_vertical": "property",
6740
+ * "cover": {
6741
+ * "uid": "lm_34fda1",
6742
+ * "media_type": "image/jpeg",
6743
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg",
6744
+ * "order_index": 0,
6745
+ * "is_cover": true
6746
+ * }
6747
+ * },
6748
+ * "tenant": {
6749
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
6750
+ * "name": "Jane Tenant",
6751
+ * "email": "jane@example.com"
6752
+ * },
6753
+ * "landlord": {
6754
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
6755
+ * "name": "John Landlord",
6756
+ * "email": "john@example.com"
6757
+ * },
6758
+ * "tenancy": null,
6759
+ * "timeline": {
6760
+ * "created_at": "2026-04-30T10:00:00.000000Z",
6761
+ * "approved_at": null,
6762
+ * "rejected_at": null,
6763
+ * "converted_to_tenancy_at": null
6764
+ * }
6765
+ * }
6766
+ * ]
6767
+ */
6768
+ items?: {
6769
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
6770
+ uid?: string;
6771
+ /** @example JH-APP-2026-000001 */
6772
+ application_ref?: string;
6773
+ status?: {
6774
+ /** @example pending */
6775
+ value?: string;
6776
+ /** @example Pending Review */
6777
+ label?: string;
6778
+ };
6779
+ source?: {
6780
+ /** @example tenant */
6781
+ value?: string;
6782
+ /** @example Tenant */
6783
+ label?: string;
6784
+ };
6785
+ /** @example I am interested in renting this property. */
6786
+ message?: string;
6787
+ /** @example null */
6788
+ rejection_reason?: string | null;
6789
+ listing?: {
6790
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
6791
+ uid?: string;
6792
+ /** @example Riverside Flat */
6793
+ title?: string;
6794
+ /** @example 12 River Road */
6795
+ address?: string;
6796
+ /** @example long_term_rent */
6797
+ listing_type?: string;
6798
+ /** @example property */
6799
+ listing_vertical?: string;
6800
+ cover?: {
6801
+ /** @example lm_34fda1 */
6802
+ uid?: string;
6803
+ /** @example image/jpeg */
6804
+ media_type?: string;
6805
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg */
6806
+ storage_path?: string;
6807
+ /** @example 0 */
6808
+ order_index?: number;
6809
+ /** @example true */
6810
+ is_cover?: boolean;
6811
+ };
6812
+ };
6813
+ tenant?: {
6814
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
6815
+ uid?: string;
6816
+ /** @example Jane Tenant */
6817
+ name?: string;
6818
+ /** @example jane@example.com */
6819
+ email?: string;
6820
+ };
6821
+ landlord?: {
6822
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
6823
+ uid?: string;
6824
+ /** @example John Landlord */
6825
+ name?: string;
6826
+ /** @example john@example.com */
6827
+ email?: string;
6828
+ };
6829
+ /** @example null */
6830
+ tenancy?: string | null;
6831
+ timeline?: {
6832
+ /** @example 2026-04-30T10:00:00.000000Z */
6833
+ created_at?: string;
6834
+ /** @example null */
6835
+ approved_at?: string | null;
6836
+ /** @example null */
6837
+ rejected_at?: string | null;
6838
+ /** @example null */
6839
+ converted_to_tenancy_at?: string | null;
6840
+ };
6841
+ }[];
6842
+ pagination?: {
6843
+ /** @example 1 */
6844
+ current_page?: number;
6845
+ /** @example 15 */
6846
+ per_page?: number;
6847
+ /** @example 1 */
6848
+ total?: number;
6849
+ /** @example 1 */
6850
+ last_page?: number;
6851
+ /** @example 1 */
6852
+ from?: number;
6853
+ /** @example 1 */
6854
+ to?: number;
6855
+ };
6856
+ };
6857
+ };
6858
+ };
6859
+ };
6860
+ };
6861
+ };
6862
+ createAdminRentalApplication: {
6863
+ parameters: {
6864
+ query?: never;
6865
+ header?: never;
6866
+ path?: never;
6867
+ cookie?: never;
6868
+ };
6869
+ requestBody: {
6870
+ content: {
6871
+ "application/json": {
6872
+ /**
6873
+ * @description The UID of the long-term rental listing.
6874
+ * @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a
6875
+ */
6876
+ listing_uid: string;
6877
+ /**
6878
+ * @description The UID of the tenant user.
6879
+ * @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df
6880
+ */
6881
+ tenant_uid: string;
6882
+ /**
6883
+ * @description Optional application note.
6884
+ * @example Application captured from offline request.
6885
+ */
6886
+ message?: string | null;
6887
+ /**
6888
+ * @description Reason for admin-assisted creation.
6889
+ * @example offline_application_entry
6890
+ */
6891
+ admin_reason: string;
6892
+ };
6893
+ };
6894
+ };
6895
+ responses: {
6896
+ 200: {
6897
+ headers: {
6898
+ [name: string]: unknown;
6899
+ };
6900
+ content: {
6901
+ "application/json": {
6902
+ data?: {
6903
+ /** @example eadf5872-03c7-43a1-b287-6b55b757bda8 */
6904
+ uid?: string;
6905
+ /** @example JH-APP-2026-589365 */
6906
+ application_ref?: string;
6907
+ status?: {
6908
+ /** @example pending */
6909
+ value?: string;
6910
+ /** @example Pending Review */
6911
+ label?: string;
6912
+ };
6913
+ source?: {
6914
+ /** @example tenant */
6915
+ value?: string;
6916
+ /** @example Tenant */
6917
+ label?: string;
6918
+ };
6919
+ /** @example Velit et fugiat sunt nihil accusantium. */
6920
+ message?: string;
6921
+ /** @example null */
6922
+ rejection_reason?: string | null;
6923
+ timeline?: {
6924
+ /** @example 2026-04-30T10:00:44.000000Z */
6925
+ created_at?: string;
6926
+ /** @example null */
6927
+ approved_at?: string | null;
6928
+ /** @example null */
6929
+ rejected_at?: string | null;
6930
+ /** @example null */
6931
+ converted_to_tenancy_at?: string | null;
6932
+ };
6933
+ };
6934
+ };
6935
+ };
6936
+ };
6937
+ };
6938
+ };
6939
+ fetchAdminRentalApplication: {
6940
+ parameters: {
6941
+ query?: never;
6942
+ header?: never;
6943
+ path: {
6944
+ /** @description The UID of the rental application. */
6945
+ application_uid: string;
6946
+ };
6947
+ cookie?: never;
6948
+ };
6949
+ requestBody?: never;
6950
+ responses: {
6951
+ 200: {
6952
+ headers: {
6953
+ [name: string]: unknown;
6954
+ };
6955
+ content: {
6956
+ "application/json": {
6957
+ data?: {
6958
+ /** @example 78021a69-f65f-478b-b377-4a106dbdbe04 */
6959
+ uid?: string;
6960
+ /** @example JH-APP-2026-933724 */
6961
+ application_ref?: string;
6962
+ status?: {
6963
+ /** @example pending */
6964
+ value?: string;
6965
+ /** @example Pending Review */
6966
+ label?: string;
6967
+ };
6968
+ source?: {
6969
+ /** @example tenant */
6970
+ value?: string;
6971
+ /** @example Tenant */
6972
+ label?: string;
6973
+ };
6974
+ /** @example Nostrum qui commodi incidunt iure. */
6975
+ message?: string;
6976
+ /** @example null */
6977
+ rejection_reason?: string | null;
6978
+ timeline?: {
6979
+ /** @example 2026-04-30T10:00:44.000000Z */
6980
+ created_at?: string;
6981
+ /** @example null */
6982
+ approved_at?: string | null;
6983
+ /** @example null */
6984
+ rejected_at?: string | null;
6985
+ /** @example null */
6986
+ converted_to_tenancy_at?: string | null;
6987
+ };
6988
+ };
6989
+ };
6990
+ };
6991
+ };
6992
+ };
6993
+ };
6994
+ approveAdminRentalApplication: {
6995
+ parameters: {
6996
+ query?: never;
6997
+ header?: never;
6998
+ path: {
6999
+ /** @description The UID of the rental application. */
7000
+ application_uid: string;
7001
+ };
7002
+ cookie?: never;
7003
+ };
7004
+ requestBody?: never;
7005
+ responses: {
7006
+ 200: {
7007
+ headers: {
7008
+ [name: string]: unknown;
7009
+ };
7010
+ content: {
7011
+ "application/json": {
7012
+ data?: {
7013
+ /** @example eb4456c5-524c-46ea-8aa7-732cd7209ce3 */
7014
+ uid?: string;
7015
+ /** @example JH-APP-2026-450949 */
7016
+ application_ref?: string;
7017
+ status?: {
7018
+ /** @example pending */
7019
+ value?: string;
7020
+ /** @example Pending Review */
7021
+ label?: string;
7022
+ };
7023
+ source?: {
7024
+ /** @example tenant */
7025
+ value?: string;
7026
+ /** @example Tenant */
7027
+ label?: string;
7028
+ };
7029
+ /** @example Qui commodi incidunt iure odit. */
7030
+ message?: string;
7031
+ /** @example null */
7032
+ rejection_reason?: string | null;
7033
+ timeline?: {
7034
+ /** @example 2026-04-30T10:00:44.000000Z */
7035
+ created_at?: string;
7036
+ /** @example null */
7037
+ approved_at?: string | null;
7038
+ /** @example null */
7039
+ rejected_at?: string | null;
7040
+ /** @example null */
7041
+ converted_to_tenancy_at?: string | null;
7042
+ };
7043
+ };
7044
+ };
7045
+ };
7046
+ };
7047
+ };
7048
+ };
7049
+ rejectAdminRentalApplication: {
7050
+ parameters: {
7051
+ query?: never;
7052
+ header?: never;
7053
+ path: {
7054
+ /** @description The UID of the rental application. */
7055
+ application_uid: string;
7056
+ };
7057
+ cookie?: never;
7058
+ };
7059
+ requestBody?: {
7060
+ content: {
7061
+ "application/json": {
7062
+ /**
7063
+ * @description Optional rejection reason.
7064
+ * @example Application rejected by admin after review.
7065
+ */
7066
+ reason?: string | null;
7067
+ };
7068
+ };
7069
+ };
7070
+ responses: {
7071
+ 200: {
7072
+ headers: {
7073
+ [name: string]: unknown;
7074
+ };
7075
+ content: {
7076
+ "application/json": {
7077
+ data?: {
7078
+ /** @example 95b2f89d-394f-4b49-8d56-26e074f5bd21 */
7079
+ uid?: string;
7080
+ /** @example JH-APP-2026-026316 */
7081
+ application_ref?: string;
7082
+ status?: {
7083
+ /** @example pending */
7084
+ value?: string;
7085
+ /** @example Pending Review */
7086
+ label?: string;
7087
+ };
7088
+ source?: {
7089
+ /** @example tenant */
7090
+ value?: string;
7091
+ /** @example Tenant */
7092
+ label?: string;
7093
+ };
7094
+ /** @example Et fugiat sunt nihil accusantium. */
7095
+ message?: string;
7096
+ /** @example null */
7097
+ rejection_reason?: string | null;
7098
+ timeline?: {
7099
+ /** @example 2026-04-30T10:00:44.000000Z */
7100
+ created_at?: string;
7101
+ /** @example null */
7102
+ approved_at?: string | null;
7103
+ /** @example null */
7104
+ rejected_at?: string | null;
7105
+ /** @example null */
7106
+ converted_to_tenancy_at?: string | null;
7107
+ };
7108
+ };
7109
+ };
7110
+ };
7111
+ };
7112
+ };
7113
+ };
7114
+ cancelAdminRentalApplication: {
7115
+ parameters: {
7116
+ query?: never;
7117
+ header?: never;
7118
+ path: {
7119
+ /** @description The UID of the rental application. */
7120
+ application_uid: string;
7121
+ };
7122
+ cookie?: never;
7123
+ };
7124
+ requestBody?: {
7125
+ content: {
7126
+ "application/json": {
7127
+ /**
7128
+ * @description Optional cancellation reason.
7129
+ * @example Duplicate application created in error.
7130
+ */
7131
+ reason?: string | null;
7132
+ };
7133
+ };
7134
+ };
7135
+ responses: {
7136
+ 200: {
7137
+ headers: {
7138
+ [name: string]: unknown;
7139
+ };
7140
+ content: {
7141
+ "application/json": {
7142
+ data?: {
7143
+ /** @example 68126400-5053-4e84-8907-c8e40dc64f99 */
7144
+ uid?: string;
7145
+ /** @example JH-APP-2026-000564 */
7146
+ application_ref?: string;
7147
+ status?: {
7148
+ /** @example pending */
7149
+ value?: string;
7150
+ /** @example Pending Review */
7151
+ label?: string;
7152
+ };
7153
+ source?: {
7154
+ /** @example tenant */
7155
+ value?: string;
7156
+ /** @example Tenant */
7157
+ label?: string;
7158
+ };
7159
+ /** @example Fugiat sunt nihil accusantium harum mollitia. */
7160
+ message?: string;
7161
+ /** @example null */
7162
+ rejection_reason?: string | null;
7163
+ timeline?: {
7164
+ /** @example 2026-04-30T10:00:44.000000Z */
7165
+ created_at?: string;
7166
+ /** @example null */
7167
+ approved_at?: string | null;
7168
+ /** @example null */
7169
+ rejected_at?: string | null;
7170
+ /** @example null */
7171
+ converted_to_tenancy_at?: string | null;
7172
+ };
7173
+ };
7174
+ };
7175
+ };
7176
+ };
7177
+ };
7178
+ };
7179
+ convertAdminRentalApplicationToTenancy: {
7180
+ parameters: {
7181
+ query?: never;
7182
+ header?: never;
7183
+ path: {
7184
+ /** @description The UID of the rental application. */
7185
+ application_uid: string;
7186
+ };
7187
+ cookie?: never;
7188
+ };
7189
+ requestBody?: never;
7190
+ responses: {
7191
+ 200: {
7192
+ headers: {
7193
+ [name: string]: unknown;
7194
+ };
7195
+ content: {
7196
+ "application/json": {
7197
+ data?: {
7198
+ /** @example 12de0be4-9df6-4ceb-84bf-751fee60874d */
7199
+ uid?: string;
7200
+ /** @example 1 */
7201
+ listing_id?: number;
7202
+ /** @example 2 */
7203
+ landlord_id?: number;
7204
+ /** @example 2 */
7205
+ tenant_id?: number;
7206
+ /** @example 4881.50 */
7207
+ rent_amount?: string;
7208
+ /** @example 2151.17 */
7209
+ deposit_amount?: string;
7210
+ /** @example offer_accepted */
7211
+ state?: string;
7212
+ /** @example 2025-11-05T00:00:00.000000Z */
7213
+ start_date?: string;
7214
+ /** @example 2026-11-05T00:00:00.000000Z */
7215
+ end_date?: string;
7216
+ /** @example false */
7217
+ is_periodic?: boolean;
7218
+ /** @example null */
7219
+ company_name?: string | null;
7220
+ /** @example null */
7221
+ company_registration_number?: string | null;
7222
+ /** @example 2026-04-30T10:00:44.000000Z */
7223
+ created_at?: string;
7224
+ };
7225
+ };
7226
+ };
7227
+ };
7228
+ };
7229
+ };
7230
+ dashboardStatsAdmin: {
7231
+ parameters: {
7232
+ query?: never;
7233
+ header?: never;
7234
+ path?: never;
7235
+ cookie?: never;
7236
+ };
7237
+ requestBody?: never;
7238
+ responses: {
7239
+ /** @description Retrieve admin dashboard stats */
7240
+ 200: {
7241
+ headers: {
7242
+ [name: string]: unknown;
7243
+ };
7244
+ content: {
7245
+ "application/json": {
7246
+ /** @example Dashboard stats fetched */
6314
7247
  message?: string;
6315
7248
  /** @example null */
6316
7249
  event?: string | null;
@@ -6732,7 +7665,7 @@ export interface operations {
6732
7665
  content: {
6733
7666
  "application/json": {
6734
7667
  data?: {
6735
- /** @example 5bee7718-4c75-4f03-a327-e7c5280a3dd5 */
7668
+ /** @example ea55e52c-c686-4b84-add0-1f165bc2bb32 */
6736
7669
  uid?: string;
6737
7670
  /** @example Ms. Audra Crooks II */
6738
7671
  username?: string;
@@ -6762,7 +7695,7 @@ export interface operations {
6762
7695
  timezone?: string;
6763
7696
  /** @example Customer */
6764
7697
  user_type?: string;
6765
- /** @example 30 Apr 2026, 05:56 AM */
7698
+ /** @example 30 Apr 2026, 10:00 AM */
6766
7699
  created?: string;
6767
7700
  /** @example 0 seconds ago */
6768
7701
  email_verified_at?: string;
@@ -7152,11 +8085,11 @@ export interface operations {
7152
8085
  content: {
7153
8086
  "application/json": {
7154
8087
  data?: {
7155
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
8088
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
7156
8089
  draft_name?: string;
7157
- /** @example LST-PRP-LTR-MOL2MRJWDDK */
8090
+ /** @example LST-PRP-LTR-MOLBCPBLQGZ */
7158
8091
  sku?: string;
7159
- /** @example d176378b-d8f2-444e-b2ea-60b8fdfd820d */
8092
+ /** @example f7602417-f771-4eeb-979c-983111bc89d5 */
7160
8093
  uid?: string;
7161
8094
  /** @example Rent */
7162
8095
  listing_type?: string;
@@ -8353,7 +9286,7 @@ export interface operations {
8353
9286
  parameters: {
8354
9287
  query?: {
8355
9288
  /** @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;
9289
+ 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
9290
  /** @description Filter logs created from this date/time. Must be a valid date. */
8358
9291
  from?: string | null;
8359
9292
  /** @description Filter logs created up to this date/time. Must be a valid date. */
@@ -8442,7 +9375,7 @@ export interface operations {
8442
9375
  fetchUserAuditLogsByActionAdmin: {
8443
9376
  parameters: {
8444
9377
  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";
9378
+ 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
9379
  /** @description Number of records per page. Must be at least 1. Must not be greater than 100. */
8447
9380
  per_page?: number | null;
8448
9381
  /** @description The current page number. Must be at least 1. */
@@ -8583,7 +9516,7 @@ export interface operations {
8583
9516
  content: {
8584
9517
  "application/json": {
8585
9518
  data?: {
8586
- /** @example 652f94ea-4542-42f4-b811-9edb2be05d89 */
9519
+ /** @example e750f7c8-04a1-4837-8b43-0e05fb689598 */
8587
9520
  uid?: string;
8588
9521
  /** @example Morgan Hirthe */
8589
9522
  username?: string;
@@ -8613,7 +9546,7 @@ export interface operations {
8613
9546
  timezone?: string;
8614
9547
  /** @example Customer */
8615
9548
  user_type?: string;
8616
- /** @example 30 Apr 2026, 05:56 AM */
9549
+ /** @example 30 Apr 2026, 10:00 AM */
8617
9550
  created?: string;
8618
9551
  /** @example 0 seconds ago */
8619
9552
  email_verified_at?: string;
@@ -9322,11 +10255,11 @@ export interface operations {
9322
10255
  content: {
9323
10256
  "application/json": {
9324
10257
  data?: {
9325
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
10258
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
9326
10259
  draft_name?: string;
9327
- /** @example LST-PRP-LTR-MOL2MRMVNTS */
10260
+ /** @example LST-PRP-LTR-MOLBCPE8CAQ */
9328
10261
  sku?: string;
9329
- /** @example 9354b62c-4fd2-4e16-8a11-a9199629074c */
10262
+ /** @example 436b5cdd-cd37-4c81-8379-9b2d4569a7f6 */
9330
10263
  uid?: string;
9331
10264
  /** @example Rent */
9332
10265
  listing_type?: string;
@@ -9766,7 +10699,7 @@ export interface operations {
9766
10699
  content: {
9767
10700
  "application/json": {
9768
10701
  data?: {
9769
- /** @example 2d59546e-3db0-4170-aa80-2830b3f05d9d */
10702
+ /** @example 8d09d8b0-b62c-445d-90f3-a9e7ef5158cf */
9770
10703
  uid?: string;
9771
10704
  /** @example photo */
9772
10705
  media_type?: string;
@@ -10073,58 +11006,58 @@ export interface operations {
10073
11006
  /**
10074
11007
  * @example [
10075
11008
  * {
10076
- * "draft_name": "New For Sale Used Item draft • 30 Apr 2026, 5:56 AM",
10077
- * "sku": "LST-UIT-SAL-MOL2MROQKBY",
10078
- * "uid": "88ec73ec-141e-4897-bb4b-20903d2764d7",
10079
- * "listing_type": "Sale",
10080
- * "vertical": "Used Item",
10081
- * "arrangement_type": null,
10082
- * "arrangement_type_label": null,
11009
+ * "draft_name": "New Short Let Property draft • 30 Apr 2026, 10:00 AM",
11010
+ * "sku": "LST-PRP-SHL-MOLBCPFNKHT",
11011
+ * "uid": "9748a02a-cd54-4a25-b7bf-fc110bc61fec",
11012
+ * "listing_type": "Short Let",
11013
+ * "vertical": "Property",
11014
+ * "arrangement_type": "standard_residential",
11015
+ * "arrangement_type_label": "Standard Residential",
10083
11016
  * "price": null,
10084
11017
  * "state": "draft",
10085
11018
  * "published_at": null,
10086
11019
  * "published_since": null,
10087
11020
  * "is_visible": false,
10088
- * "summary": [],
11021
+ * "summary": {
11022
+ * "availability": null
11023
+ * },
10089
11024
  * "workflow": [],
10090
11025
  * "media": []
10091
11026
  * },
10092
11027
  * {
10093
- * "draft_name": "New Short Let Property draft • 30 Apr 2026, 5:56 AM",
10094
- * "sku": "LST-PRP-SHL-MOL2MROTVNV",
10095
- * "uid": "045be89c-d495-4f3b-baef-c65d72d7d563",
10096
- * "listing_type": "Short Let",
10097
- * "vertical": "Property",
10098
- * "arrangement_type": "short_term_managed",
10099
- * "arrangement_type_label": "Short Term Managed",
11028
+ * "draft_name": "New For Sale Used Item draft • 30 Apr 2026, 10:00 AM",
11029
+ * "sku": "LST-UIT-SAL-MOLBCPFP9IY",
11030
+ * "uid": "3041ab1f-4091-4a44-8c2e-18edef1d0295",
11031
+ * "listing_type": "Sale",
11032
+ * "vertical": "Used Item",
11033
+ * "arrangement_type": null,
11034
+ * "arrangement_type_label": null,
10100
11035
  * "price": null,
10101
11036
  * "state": "draft",
10102
11037
  * "published_at": null,
10103
- * "published_since": null,
10104
- * "is_visible": false,
10105
- * "summary": {
10106
- * "availability": null
10107
- * },
11038
+ * "published_since": null,
11039
+ * "is_visible": false,
11040
+ * "summary": [],
10108
11041
  * "workflow": [],
10109
11042
  * "media": []
10110
11043
  * }
10111
11044
  * ]
10112
11045
  */
10113
11046
  data?: {
10114
- /** @example New For Sale Used Item draft • 30 Apr 2026, 5:56 AM */
11047
+ /** @example New Short Let Property draft • 30 Apr 2026, 10:00 AM */
10115
11048
  draft_name?: string;
10116
- /** @example LST-UIT-SAL-MOL2MROQKBY */
11049
+ /** @example LST-PRP-SHL-MOLBCPFNKHT */
10117
11050
  sku?: string;
10118
- /** @example 88ec73ec-141e-4897-bb4b-20903d2764d7 */
11051
+ /** @example 9748a02a-cd54-4a25-b7bf-fc110bc61fec */
10119
11052
  uid?: string;
10120
- /** @example Sale */
11053
+ /** @example Short Let */
10121
11054
  listing_type?: string;
10122
- /** @example Used Item */
11055
+ /** @example Property */
10123
11056
  vertical?: string;
10124
- /** @example null */
10125
- arrangement_type?: string | null;
10126
- /** @example null */
10127
- arrangement_type_label?: string | null;
11057
+ /** @example standard_residential */
11058
+ arrangement_type?: string;
11059
+ /** @example Standard Residential */
11060
+ arrangement_type_label?: string;
10128
11061
  /** @example null */
10129
11062
  price?: string | null;
10130
11063
  /** @example draft */
@@ -10135,8 +11068,10 @@ export interface operations {
10135
11068
  published_since?: string | null;
10136
11069
  /** @example false */
10137
11070
  is_visible?: boolean;
10138
- /** @example [] */
10139
- summary?: unknown[];
11071
+ summary?: {
11072
+ /** @example null */
11073
+ availability?: string | null;
11074
+ };
10140
11075
  /** @example [] */
10141
11076
  workflow?: unknown[];
10142
11077
  /** @example [] */
@@ -10308,11 +11243,11 @@ export interface operations {
10308
11243
  content: {
10309
11244
  "application/json": {
10310
11245
  data?: {
10311
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
11246
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
10312
11247
  draft_name?: string;
10313
- /** @example LST-PRP-LTR-MOL2MRP2WDF */
11248
+ /** @example LST-PRP-LTR-MOLBCPFYQ9V */
10314
11249
  sku?: string;
10315
- /** @example 9ac90be2-b88b-477e-8968-9fa87b410ea7 */
11250
+ /** @example 000cb664-8b81-44cd-8401-35aa07a45f70 */
10316
11251
  uid?: string;
10317
11252
  /** @example Rent */
10318
11253
  listing_type?: string;
@@ -10375,11 +11310,11 @@ export interface operations {
10375
11310
  content: {
10376
11311
  "application/json": {
10377
11312
  data?: {
10378
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
11313
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
10379
11314
  draft_name?: string;
10380
- /** @example LST-PRP-LTR-MOL2MRP9LK5 */
11315
+ /** @example LST-PRP-LTR-MOLBCPG3MOM */
10381
11316
  sku?: string;
10382
- /** @example 879cd880-b6bf-46ff-8a53-427bcd2149f7 */
11317
+ /** @example 1e6a300b-469f-441c-b239-99b1f26681af */
10383
11318
  uid?: string;
10384
11319
  /** @example Rent */
10385
11320
  listing_type?: string;
@@ -10432,11 +11367,11 @@ export interface operations {
10432
11367
  content: {
10433
11368
  "application/json": {
10434
11369
  data?: {
10435
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
11370
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
10436
11371
  draft_name?: string;
10437
- /** @example LST-PRP-LTR-MOL2MRPFDA2 */
11372
+ /** @example LST-PRP-LTR-MOLBCPG9BVP */
10438
11373
  sku?: string;
10439
- /** @example 7911107a-332a-4ad1-84be-5742b315e40d */
11374
+ /** @example 5f28e1d3-a1f1-48c6-9997-b0672263470f */
10440
11375
  uid?: string;
10441
11376
  /** @example Rent */
10442
11377
  listing_type?: string;
@@ -10489,11 +11424,11 @@ export interface operations {
10489
11424
  content: {
10490
11425
  "application/json": {
10491
11426
  data?: {
10492
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
11427
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
10493
11428
  draft_name?: string;
10494
- /** @example LST-PRP-LTR-MOL2MRPMOHV */
11429
+ /** @example LST-PRP-LTR-MOLBCPGGT9A */
10495
11430
  sku?: string;
10496
- /** @example d65b6578-8d4c-4bf3-af43-4068fd2b1068 */
11431
+ /** @example ce8e3df1-ed35-4401-98c7-f5978e7c1d2d */
10497
11432
  uid?: string;
10498
11433
  /** @example Rent */
10499
11434
  listing_type?: string;
@@ -10687,7 +11622,7 @@ export interface operations {
10687
11622
  content: {
10688
11623
  "application/json": {
10689
11624
  data?: {
10690
- /** @example 253 */
11625
+ /** @example 271 */
10691
11626
  id?: number;
10692
11627
  /** @example 1 */
10693
11628
  category_id?: number;
@@ -10761,7 +11696,7 @@ export interface operations {
10761
11696
  content: {
10762
11697
  "application/json": {
10763
11698
  data?: {
10764
- /** @example 254 */
11699
+ /** @example 272 */
10765
11700
  id?: number;
10766
11701
  /** @example 1 */
10767
11702
  category_id?: number;
@@ -10800,7 +11735,7 @@ export interface operations {
10800
11735
  content: {
10801
11736
  "application/json": {
10802
11737
  data?: {
10803
- /** @example 255 */
11738
+ /** @example 273 */
10804
11739
  id?: number;
10805
11740
  /** @example 1 */
10806
11741
  category_id?: number;
@@ -10838,7 +11773,7 @@ export interface operations {
10838
11773
  /**
10839
11774
  * @example [
10840
11775
  * {
10841
- * "id": 365,
11776
+ * "id": 395,
10842
11777
  * "name": "Exterior",
10843
11778
  * "description": "For Exterior categories",
10844
11779
  * "display_order": 1,
@@ -10848,7 +11783,7 @@ export interface operations {
10848
11783
  * "is_active": true
10849
11784
  * },
10850
11785
  * {
10851
- * "id": 366,
11786
+ * "id": 396,
10852
11787
  * "name": "Exterior",
10853
11788
  * "description": "For Exterior categories",
10854
11789
  * "display_order": 1,
@@ -10860,7 +11795,7 @@ export interface operations {
10860
11795
  * ]
10861
11796
  */
10862
11797
  data?: {
10863
- /** @example 365 */
11798
+ /** @example 395 */
10864
11799
  id?: number;
10865
11800
  /** @example Exterior */
10866
11801
  name?: string;
@@ -10924,7 +11859,7 @@ export interface operations {
10924
11859
  content: {
10925
11860
  "application/json": {
10926
11861
  data?: {
10927
- /** @example 367 */
11862
+ /** @example 397 */
10928
11863
  id?: number;
10929
11864
  /** @example Exterior */
10930
11865
  name?: string;
@@ -10991,7 +11926,7 @@ export interface operations {
10991
11926
  content: {
10992
11927
  "application/json": {
10993
11928
  data?: {
10994
- /** @example 368 */
11929
+ /** @example 398 */
10995
11930
  id?: number;
10996
11931
  /** @example Exterior */
10997
11932
  name?: string;
@@ -11032,7 +11967,7 @@ export interface operations {
11032
11967
  content: {
11033
11968
  "application/json": {
11034
11969
  data?: {
11035
- /** @example 369 */
11970
+ /** @example 399 */
11036
11971
  id?: number;
11037
11972
  /** @example Exterior */
11038
11973
  name?: string;
@@ -11295,7 +12230,7 @@ export interface operations {
11295
12230
  content: {
11296
12231
  "application/json": {
11297
12232
  data?: {
11298
- /** @example 157 */
12233
+ /** @example 169 */
11299
12234
  id?: number;
11300
12235
  /** @example email_fa_0 */
11301
12236
  key?: string;
@@ -11309,9 +12244,9 @@ export interface operations {
11309
12244
  metadata_schema?: unknown[];
11310
12245
  /** @example true */
11311
12246
  is_active?: boolean;
11312
- /** @example 2026-04-30T05:56:37.000000Z */
12247
+ /** @example 2026-04-30T10:00:44.000000Z */
11313
12248
  created_at?: string;
11314
- /** @example 2026-04-30T05:56:37.000000Z */
12249
+ /** @example 2026-04-30T10:00:44.000000Z */
11315
12250
  updated_at?: string;
11316
12251
  };
11317
12252
  };
@@ -11371,7 +12306,7 @@ export interface operations {
11371
12306
  content: {
11372
12307
  "application/json": {
11373
12308
  data?: {
11374
- /** @example 158 */
12309
+ /** @example 170 */
11375
12310
  id?: number;
11376
12311
  /** @example email_fa_0 */
11377
12312
  key?: string;
@@ -11385,9 +12320,9 @@ export interface operations {
11385
12320
  metadata_schema?: unknown[];
11386
12321
  /** @example true */
11387
12322
  is_active?: boolean;
11388
- /** @example 2026-04-30T05:56:37.000000Z */
12323
+ /** @example 2026-04-30T10:00:44.000000Z */
11389
12324
  created_at?: string;
11390
- /** @example 2026-04-30T05:56:37.000000Z */
12325
+ /** @example 2026-04-30T10:00:44.000000Z */
11391
12326
  updated_at?: string;
11392
12327
  };
11393
12328
  };
@@ -12653,25 +13588,25 @@ export interface operations {
12653
13588
  /**
12654
13589
  * @example [
12655
13590
  * {
12656
- * "key": "dolorem",
12657
- * "name": "unde",
12658
- * "description": "Voluptates culpa iure magnam iusto vero inventore debitis culpa.",
13591
+ * "key": "nihil",
13592
+ * "name": "exercitationem",
13593
+ * "description": "Sed illum exercitationem nulla est et aspernatur.",
12659
13594
  * "value_type": "string"
12660
13595
  * },
12661
13596
  * {
12662
- * "key": "consequatur",
12663
- * "name": "harum",
12664
- * "description": "Natus qui nobis iste consequatur autem libero.",
13597
+ * "key": "ut",
13598
+ * "name": "laboriosam",
13599
+ * "description": "Aperiam quia officiis maxime sit.",
12665
13600
  * "value_type": "string"
12666
13601
  * }
12667
13602
  * ]
12668
13603
  */
12669
13604
  data?: {
12670
- /** @example dolorem */
13605
+ /** @example nihil */
12671
13606
  key?: string;
12672
- /** @example unde */
13607
+ /** @example exercitationem */
12673
13608
  name?: string;
12674
- /** @example Voluptates culpa iure magnam iusto vero inventore debitis culpa. */
13609
+ /** @example Sed illum exercitationem nulla est et aspernatur. */
12675
13610
  description?: string;
12676
13611
  /** @example string */
12677
13612
  value_type?: string;
@@ -13913,13 +14848,13 @@ export interface operations {
13913
14848
  };
13914
14849
  } | {
13915
14850
  data?: {
13916
- /** @example 4ea8e511-7b46-44a1-965f-0028f78c9591 */
14851
+ /** @example 72da868b-0af2-43f8-9a24-815bfa1828f3 */
13917
14852
  uid?: string;
13918
14853
  /** @example follow_up */
13919
14854
  inspection_type?: string;
13920
14855
  /** @example cancelled */
13921
14856
  status?: string;
13922
- /** @example 05 May 2026, 07:54 PM */
14857
+ /** @example 05 May 2026, 11:59 PM */
13923
14858
  scheduled_date?: string;
13924
14859
  /** @example null */
13925
14860
  completed_date?: string | null;
@@ -13927,11 +14862,11 @@ export interface operations {
13927
14862
  condition_rating?: string;
13928
14863
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
13929
14864
  summary?: string;
13930
- /** @example 28 Jun 2026, 04:43 PM */
14865
+ /** @example 28 Jun 2026, 08:47 PM */
13931
14866
  next_inspection_date?: string;
13932
- /** @example 30 Apr 2026, 05:56 AM */
14867
+ /** @example 30 Apr 2026, 10:00 AM */
13933
14868
  created_at?: string;
13934
- /** @example 30 Apr 2026, 05:56 AM */
14869
+ /** @example 30 Apr 2026, 10:00 AM */
13935
14870
  updated_at?: string;
13936
14871
  };
13937
14872
  };
@@ -13986,13 +14921,13 @@ export interface operations {
13986
14921
  content: {
13987
14922
  "application/json": {
13988
14923
  data?: {
13989
- /** @example 5c16f094-8abc-4d43-8006-117135993a19 */
14924
+ /** @example 0fe81db0-673f-4a58-ae7b-7b0ca6cb72a1 */
13990
14925
  uid?: string;
13991
14926
  /** @example follow_up */
13992
14927
  inspection_type?: string;
13993
14928
  /** @example cancelled */
13994
14929
  status?: string;
13995
- /** @example 05 May 2026, 07:54 PM */
14930
+ /** @example 05 May 2026, 11:59 PM */
13996
14931
  scheduled_date?: string;
13997
14932
  /** @example null */
13998
14933
  completed_date?: string | null;
@@ -14000,11 +14935,11 @@ export interface operations {
14000
14935
  condition_rating?: string;
14001
14936
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
14002
14937
  summary?: string;
14003
- /** @example 28 Jun 2026, 04:43 PM */
14938
+ /** @example 28 Jun 2026, 08:47 PM */
14004
14939
  next_inspection_date?: string;
14005
- /** @example 30 Apr 2026, 05:56 AM */
14940
+ /** @example 30 Apr 2026, 10:00 AM */
14006
14941
  created_at?: string;
14007
- /** @example 30 Apr 2026, 05:56 AM */
14942
+ /** @example 30 Apr 2026, 10:00 AM */
14008
14943
  updated_at?: string;
14009
14944
  };
14010
14945
  };
@@ -14099,13 +15034,13 @@ export interface operations {
14099
15034
  content: {
14100
15035
  "application/json": {
14101
15036
  data?: {
14102
- /** @example 8d51eea5-972a-4c01-af80-b5a4d409efd7 */
15037
+ /** @example e4c3c136-e4ae-4202-9f8c-0a41b2032b70 */
14103
15038
  uid?: string;
14104
15039
  /** @example follow_up */
14105
15040
  inspection_type?: string;
14106
15041
  /** @example cancelled */
14107
15042
  status?: string;
14108
- /** @example 23 Apr 2026, 05:21 PM */
15043
+ /** @example 23 Apr 2026, 09:25 PM */
14109
15044
  scheduled_date?: string;
14110
15045
  /** @example null */
14111
15046
  completed_date?: string | null;
@@ -14113,11 +15048,11 @@ export interface operations {
14113
15048
  condition_rating?: string;
14114
15049
  /** @example Et animi quos velit et fugiat. */
14115
15050
  summary?: string;
14116
- /** @example 02 Aug 2026, 01:15 AM */
15051
+ /** @example 02 Aug 2026, 05:19 AM */
14117
15052
  next_inspection_date?: string;
14118
- /** @example 30 Apr 2026, 05:56 AM */
15053
+ /** @example 30 Apr 2026, 10:00 AM */
14119
15054
  created_at?: string;
14120
- /** @example 30 Apr 2026, 05:56 AM */
15055
+ /** @example 30 Apr 2026, 10:00 AM */
14121
15056
  updated_at?: string;
14122
15057
  };
14123
15058
  };
@@ -14154,13 +15089,13 @@ export interface operations {
14154
15089
  content: {
14155
15090
  "application/json": {
14156
15091
  data?: {
14157
- /** @example 29dad24f-86a9-4d41-9c4f-096afe53f741 */
15092
+ /** @example 90e26c44-377c-4407-af9d-30a232bbae89 */
14158
15093
  uid?: string;
14159
15094
  /** @example follow_up */
14160
15095
  inspection_type?: string;
14161
15096
  /** @example cancelled */
14162
15097
  status?: string;
14163
- /** @example 05 May 2026, 07:54 PM */
15098
+ /** @example 05 May 2026, 11:59 PM */
14164
15099
  scheduled_date?: string;
14165
15100
  /** @example null */
14166
15101
  completed_date?: string | null;
@@ -14168,11 +15103,11 @@ export interface operations {
14168
15103
  condition_rating?: string;
14169
15104
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
14170
15105
  summary?: string;
14171
- /** @example 28 Jun 2026, 04:43 PM */
15106
+ /** @example 28 Jun 2026, 08:47 PM */
14172
15107
  next_inspection_date?: string;
14173
- /** @example 30 Apr 2026, 05:56 AM */
15108
+ /** @example 30 Apr 2026, 10:00 AM */
14174
15109
  created_at?: string;
14175
- /** @example 30 Apr 2026, 05:56 AM */
15110
+ /** @example 30 Apr 2026, 10:00 AM */
14176
15111
  updated_at?: string;
14177
15112
  };
14178
15113
  };
@@ -14209,13 +15144,13 @@ export interface operations {
14209
15144
  content: {
14210
15145
  "application/json": {
14211
15146
  data?: {
14212
- /** @example 4ff41588-9124-4fe2-8205-1668d846396e */
15147
+ /** @example 233e4412-afd1-432e-9a76-9190f2e29d47 */
14213
15148
  uid?: string;
14214
15149
  /** @example follow_up */
14215
15150
  inspection_type?: string;
14216
15151
  /** @example cancelled */
14217
15152
  status?: string;
14218
- /** @example 23 Apr 2026, 05:21 PM */
15153
+ /** @example 23 Apr 2026, 09:25 PM */
14219
15154
  scheduled_date?: string;
14220
15155
  /** @example null */
14221
15156
  completed_date?: string | null;
@@ -14223,11 +15158,11 @@ export interface operations {
14223
15158
  condition_rating?: string;
14224
15159
  /** @example Et animi quos velit et fugiat. */
14225
15160
  summary?: string;
14226
- /** @example 02 Aug 2026, 01:15 AM */
15161
+ /** @example 02 Aug 2026, 05:19 AM */
14227
15162
  next_inspection_date?: string;
14228
- /** @example 30 Apr 2026, 05:56 AM */
15163
+ /** @example 30 Apr 2026, 10:00 AM */
14229
15164
  created_at?: string;
14230
- /** @example 30 Apr 2026, 05:56 AM */
15165
+ /** @example 30 Apr 2026, 10:00 AM */
14231
15166
  updated_at?: string;
14232
15167
  };
14233
15168
  };
@@ -14354,29 +15289,29 @@ export interface operations {
14354
15289
  };
14355
15290
  } | {
14356
15291
  data?: {
14357
- /** @example 948692e5-fe68-42a9-ac98-d00f797d0ec5 */
15292
+ /** @example a9f8312f-3896-4f3a-a0ff-523ff2f2a594 */
14358
15293
  uid?: string;
14359
15294
  /** @example 1 */
14360
15295
  tenancy_id?: number;
14361
- /** @example Qui commodi incidunt iure. */
15296
+ /** @example Quos rem expedita modi odio. */
14362
15297
  title?: string;
14363
- /** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
15298
+ /** @example Quasi saepe qui corporis culpa atque. Et quas sed ipsa necessitatibus. Eum quia quidem dignissimos illum suscipit. */
14364
15299
  description?: string;
14365
- /** @example breach */
15300
+ /** @example reported */
14366
15301
  status?: string;
14367
15302
  /** @example low */
14368
15303
  priority?: string;
14369
- /** @example 28 Apr 2026, 07:25 PM */
15304
+ /** @example 27 Apr 2026, 02:48 AM */
14370
15305
  reported_at?: string;
14371
15306
  /** @example null */
14372
15307
  assigned_at?: string | null;
14373
15308
  /** @example null */
14374
15309
  completed_at?: string | null;
14375
- /** @example 01 May 2026, 03:49 PM */
15310
+ /** @example 01 May 2026, 01:44 PM */
14376
15311
  sla_deadline?: string;
14377
- /** @example 30 Apr 2026, 05:56 AM */
15312
+ /** @example 30 Apr 2026, 10:00 AM */
14378
15313
  created_at?: string;
14379
- /** @example 30 Apr 2026, 05:56 AM */
15314
+ /** @example 30 Apr 2026, 10:00 AM */
14380
15315
  updated_at?: string;
14381
15316
  };
14382
15317
  };
@@ -14413,7 +15348,7 @@ export interface operations {
14413
15348
  content: {
14414
15349
  "application/json": {
14415
15350
  data?: {
14416
- /** @example 66f332f7-1791-43ea-bc6f-0640e28e6e91 */
15351
+ /** @example a4d53676-2e21-459c-b8a5-53251def7734 */
14417
15352
  uid?: string;
14418
15353
  /** @example 1 */
14419
15354
  tenancy_id?: number;
@@ -14425,17 +15360,17 @@ export interface operations {
14425
15360
  status?: string;
14426
15361
  /** @example low */
14427
15362
  priority?: string;
14428
- /** @example 28 Apr 2026, 07:25 PM */
15363
+ /** @example 28 Apr 2026, 11:29 PM */
14429
15364
  reported_at?: string;
14430
15365
  /** @example null */
14431
15366
  assigned_at?: string | null;
14432
15367
  /** @example null */
14433
15368
  completed_at?: string | null;
14434
- /** @example 01 May 2026, 03:49 PM */
15369
+ /** @example 01 May 2026, 07:53 PM */
14435
15370
  sla_deadline?: string;
14436
- /** @example 30 Apr 2026, 05:56 AM */
15371
+ /** @example 30 Apr 2026, 10:00 AM */
14437
15372
  created_at?: string;
14438
- /** @example 30 Apr 2026, 05:56 AM */
15373
+ /** @example 30 Apr 2026, 10:00 AM */
14439
15374
  updated_at?: string;
14440
15375
  };
14441
15376
  };
@@ -14472,7 +15407,7 @@ export interface operations {
14472
15407
  content: {
14473
15408
  "application/json": {
14474
15409
  data?: {
14475
- /** @example 17e45f6f-24ba-4772-82b2-9821ec57208c */
15410
+ /** @example 38e5726e-b4d3-43c4-b245-e45c593e8898 */
14476
15411
  uid?: string;
14477
15412
  /** @example 1 */
14478
15413
  tenancy_id?: number;
@@ -14484,17 +15419,17 @@ export interface operations {
14484
15419
  status?: string;
14485
15420
  /** @example emergency */
14486
15421
  priority?: string;
14487
- /** @example 23 Apr 2026, 05:10 PM */
15422
+ /** @example 23 Apr 2026, 09:14 PM */
14488
15423
  reported_at?: string;
14489
- /** @example 28 Apr 2026, 01:30 PM */
15424
+ /** @example 28 Apr 2026, 05:34 PM */
14490
15425
  assigned_at?: string;
14491
15426
  /** @example null */
14492
15427
  completed_at?: string | null;
14493
- /** @example 01 May 2026, 06:52 PM */
15428
+ /** @example 01 May 2026, 10:56 PM */
14494
15429
  sla_deadline?: string;
14495
- /** @example 30 Apr 2026, 05:56 AM */
15430
+ /** @example 30 Apr 2026, 10:00 AM */
14496
15431
  created_at?: string;
14497
- /** @example 30 Apr 2026, 05:56 AM */
15432
+ /** @example 30 Apr 2026, 10:00 AM */
14498
15433
  updated_at?: string;
14499
15434
  };
14500
15435
  };
@@ -14531,7 +15466,7 @@ export interface operations {
14531
15466
  content: {
14532
15467
  "application/json": {
14533
15468
  data?: {
14534
- /** @example bcf96ce4-fd9e-4391-9fd2-c451bb1e161d */
15469
+ /** @example 6e3f98d6-1955-476b-8f4b-eab10ee033c0 */
14535
15470
  uid?: string;
14536
15471
  /** @example 1 */
14537
15472
  tenancy_id?: number;
@@ -14543,17 +15478,17 @@ export interface operations {
14543
15478
  status?: string;
14544
15479
  /** @example emergency */
14545
15480
  priority?: string;
14546
- /** @example 23 Apr 2026, 05:10 PM */
15481
+ /** @example 23 Apr 2026, 09:14 PM */
14547
15482
  reported_at?: string;
14548
- /** @example 28 Apr 2026, 01:30 PM */
15483
+ /** @example 28 Apr 2026, 05:34 PM */
14549
15484
  assigned_at?: string;
14550
15485
  /** @example null */
14551
15486
  completed_at?: string | null;
14552
- /** @example 01 May 2026, 06:52 PM */
15487
+ /** @example 01 May 2026, 10:56 PM */
14553
15488
  sla_deadline?: string;
14554
- /** @example 30 Apr 2026, 05:56 AM */
15489
+ /** @example 30 Apr 2026, 10:00 AM */
14555
15490
  created_at?: string;
14556
- /** @example 30 Apr 2026, 05:56 AM */
15491
+ /** @example 30 Apr 2026, 10:00 AM */
14557
15492
  updated_at?: string;
14558
15493
  };
14559
15494
  };
@@ -14590,7 +15525,7 @@ export interface operations {
14590
15525
  content: {
14591
15526
  "application/json": {
14592
15527
  data?: {
14593
- /** @example 7bd35afe-e6fc-4003-ac40-6d5af97c2646 */
15528
+ /** @example 2a2349ac-eb0b-44ac-82c5-6730a119ad71 */
14594
15529
  uid?: string;
14595
15530
  /** @example 1 */
14596
15531
  tenancy_id?: number;
@@ -14602,17 +15537,17 @@ export interface operations {
14602
15537
  status?: string;
14603
15538
  /** @example emergency */
14604
15539
  priority?: string;
14605
- /** @example 23 Apr 2026, 05:10 PM */
15540
+ /** @example 23 Apr 2026, 09:14 PM */
14606
15541
  reported_at?: string;
14607
- /** @example 28 Apr 2026, 01:30 PM */
15542
+ /** @example 28 Apr 2026, 05:34 PM */
14608
15543
  assigned_at?: string;
14609
15544
  /** @example null */
14610
15545
  completed_at?: string | null;
14611
- /** @example 01 May 2026, 06:52 PM */
15546
+ /** @example 01 May 2026, 10:56 PM */
14612
15547
  sla_deadline?: string;
14613
- /** @example 30 Apr 2026, 05:56 AM */
15548
+ /** @example 30 Apr 2026, 10:00 AM */
14614
15549
  created_at?: string;
14615
- /** @example 30 Apr 2026, 05:56 AM */
15550
+ /** @example 30 Apr 2026, 10:00 AM */
14616
15551
  updated_at?: string;
14617
15552
  };
14618
15553
  };
@@ -15287,18 +16222,28 @@ export interface operations {
15287
16222
  content: {
15288
16223
  "application/json": {
15289
16224
  /**
15290
- * @description Target listing UID to schedule the appointment for. The <code>uid</code> of an existing record in the listings table.
16225
+ * @description Target listing UID.
15291
16226
  * @example eb5eed63-f76c-476a-b3f0-02a84803b7c9
15292
16227
  */
15293
16228
  listing_uid: string;
15294
16229
  /**
15295
- * @description Appointment start datetime (ISO8601). Must be a valid date.
15296
- * @example 2026-04-01T10:00:00Z
16230
+ * @description Optional human-readable appointment title.
16231
+ * @example Viewing for Riverside Flat
16232
+ */
16233
+ title?: string | null;
16234
+ /**
16235
+ * @description Optional appointment type. Allowed values: property_viewing, virtual_viewing, landlord_meeting, inspection, maintenance. Defaults to property_viewing.
16236
+ * @example property_viewing
16237
+ */
16238
+ appointment_type?: string | null;
16239
+ /**
16240
+ * @description Appointment start datetime.
16241
+ * @example 2026-05-01T09:00:00Z
15297
16242
  */
15298
16243
  scheduled_start: string;
15299
16244
  /**
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
16245
+ * @description Appointment end datetime.
16246
+ * @example 2026-05-01T10:00:00Z
15302
16247
  */
15303
16248
  scheduled_end: string;
15304
16249
  };
@@ -15312,10 +16257,18 @@ export interface operations {
15312
16257
  content: {
15313
16258
  "application/json": {
15314
16259
  data?: {
15315
- /** @example 448 */
16260
+ /** @example 480 */
15316
16261
  id?: number;
15317
- /** @example APT-20260430-IEYFB5 */
16262
+ /** @example APT-20260430-WSNVID */
15318
16263
  appointment_ref?: string;
16264
+ /** @example Property viewing */
16265
+ title?: string;
16266
+ appointment_type?: {
16267
+ /** @example property_viewing */
16268
+ value?: string;
16269
+ /** @example Property Viewing */
16270
+ label?: string;
16271
+ };
15319
16272
  /** @example 2 */
15320
16273
  listing_id?: number;
15321
16274
  listing?: {
@@ -15353,9 +16306,9 @@ export interface operations {
15353
16306
  /** @example completed */
15354
16307
  status?: string;
15355
16308
  scheduled?: {
15356
- /** @example 1981-11-10T00:00:00.000000Z */
16309
+ /** @example 1996-01-25T00:00:00.000000Z */
15357
16310
  start?: string;
15358
- /** @example 1979-12-07T00:00:00.000000Z */
16311
+ /** @example 1981-05-28T00:00:00.000000Z */
15359
16312
  end?: string;
15360
16313
  };
15361
16314
  customer?: {
@@ -15370,7 +16323,7 @@ export interface operations {
15370
16323
  /** @example dogunfx */
15371
16324
  name?: string;
15372
16325
  };
15373
- /** @example 2026-04-30T05:56:38.000000Z */
16326
+ /** @example 2026-04-30T10:00:45.000000Z */
15374
16327
  created_at?: string;
15375
16328
  };
15376
16329
  };
@@ -15397,10 +16350,18 @@ export interface operations {
15397
16350
  content: {
15398
16351
  "application/json": {
15399
16352
  data?: {
15400
- /** @example 449 */
16353
+ /** @example 481 */
15401
16354
  id?: number;
15402
- /** @example APT-20260430-ORUFXR */
16355
+ /** @example APT-20260430-KRKPLO */
15403
16356
  appointment_ref?: string;
16357
+ /** @example Property viewing */
16358
+ title?: string;
16359
+ appointment_type?: {
16360
+ /** @example property_viewing */
16361
+ value?: string;
16362
+ /** @example Property Viewing */
16363
+ label?: string;
16364
+ };
15404
16365
  /** @example 2 */
15405
16366
  listing_id?: number;
15406
16367
  listing?: {
@@ -15455,7 +16416,7 @@ export interface operations {
15455
16416
  /** @example dogunfx */
15456
16417
  name?: string;
15457
16418
  };
15458
- /** @example 2026-04-30T05:56:38.000000Z */
16419
+ /** @example 2026-04-30T10:00:45.000000Z */
15459
16420
  created_at?: string;
15460
16421
  };
15461
16422
  };
@@ -15493,6 +16454,12 @@ export interface operations {
15493
16454
  * @example [
15494
16455
  * {
15495
16456
  * "id": 12,
16457
+ * "appointment_ref": "APT-20260430-ABC123",
16458
+ * "title": "Viewing for Riverside Flat",
16459
+ * "appointment_type": {
16460
+ * "value": "property_viewing",
16461
+ * "label": "Property Viewing"
16462
+ * },
15496
16463
  * "listing_id": 32,
15497
16464
  * "listing": {
15498
16465
  * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
@@ -15574,6 +16541,16 @@ export interface operations {
15574
16541
  items?: {
15575
16542
  /** @example 12 */
15576
16543
  id?: number;
16544
+ /** @example APT-20260430-ABC123 */
16545
+ appointment_ref?: string;
16546
+ /** @example Viewing for Riverside Flat */
16547
+ title?: string;
16548
+ appointment_type?: {
16549
+ /** @example property_viewing */
16550
+ value?: string;
16551
+ /** @example Property Viewing */
16552
+ label?: string;
16553
+ };
15577
16554
  /** @example 32 */
15578
16555
  listing_id?: number;
15579
16556
  listing?: {
@@ -15742,13 +16719,23 @@ export interface operations {
15742
16719
  content: {
15743
16720
  "application/json": {
15744
16721
  /**
15745
- * @description Appointment start datetime (ISO8601). Must be a valid date.
15746
- * @example 2026-04-01T10:00:00Z
16722
+ * @description Optional replacement appointment title.
16723
+ * @example Updated viewing for Riverside Flat
16724
+ */
16725
+ title?: string | null;
16726
+ /**
16727
+ * @description Optional replacement appointment type. Allowed values: property_viewing, virtual_viewing, landlord_meeting, inspection, maintenance.
16728
+ * @example virtual_viewing
16729
+ */
16730
+ appointment_type?: string | null;
16731
+ /**
16732
+ * @description Appointment start datetime.
16733
+ * @example 2026-05-01T09:00:00Z
15747
16734
  */
15748
16735
  scheduled_start: string;
15749
16736
  /**
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
16737
+ * @description Appointment end datetime.
16738
+ * @example 2026-05-01T10:00:00Z
15752
16739
  */
15753
16740
  scheduled_end: string;
15754
16741
  };
@@ -15762,10 +16749,18 @@ export interface operations {
15762
16749
  content: {
15763
16750
  "application/json": {
15764
16751
  data?: {
15765
- /** @example 450 */
16752
+ /** @example 482 */
15766
16753
  id?: number;
15767
- /** @example APT-20260430-U9KDCD */
16754
+ /** @example APT-20260430-ACUZFS */
15768
16755
  appointment_ref?: string;
16756
+ /** @example Property viewing */
16757
+ title?: string;
16758
+ appointment_type?: {
16759
+ /** @example property_viewing */
16760
+ value?: string;
16761
+ /** @example Property Viewing */
16762
+ label?: string;
16763
+ };
15769
16764
  /** @example 2 */
15770
16765
  listing_id?: number;
15771
16766
  listing?: {
@@ -15803,9 +16798,9 @@ export interface operations {
15803
16798
  /** @example completed */
15804
16799
  status?: string;
15805
16800
  scheduled?: {
15806
- /** @example 1981-11-10T00:00:00.000000Z */
16801
+ /** @example 1996-01-25T00:00:00.000000Z */
15807
16802
  start?: string;
15808
- /** @example 1979-12-07T00:00:00.000000Z */
16803
+ /** @example 1981-05-28T00:00:00.000000Z */
15809
16804
  end?: string;
15810
16805
  };
15811
16806
  customer?: {
@@ -15820,7 +16815,7 @@ export interface operations {
15820
16815
  /** @example dogunfx */
15821
16816
  name?: string;
15822
16817
  };
15823
- /** @example 2026-04-30T05:56:38.000000Z */
16818
+ /** @example 2026-04-30T10:00:45.000000Z */
15824
16819
  created_at?: string;
15825
16820
  };
15826
16821
  };
@@ -15847,10 +16842,18 @@ export interface operations {
15847
16842
  content: {
15848
16843
  "application/json": {
15849
16844
  data?: {
15850
- /** @example 451 */
16845
+ /** @example 483 */
15851
16846
  id?: number;
15852
- /** @example APT-20260430-CFPTHU */
16847
+ /** @example APT-20260430-01JKCI */
15853
16848
  appointment_ref?: string;
16849
+ /** @example Property viewing */
16850
+ title?: string;
16851
+ appointment_type?: {
16852
+ /** @example property_viewing */
16853
+ value?: string;
16854
+ /** @example Property Viewing */
16855
+ label?: string;
16856
+ };
15854
16857
  /** @example 2 */
15855
16858
  listing_id?: number;
15856
16859
  listing?: {
@@ -15905,7 +16908,7 @@ export interface operations {
15905
16908
  /** @example dogunfx */
15906
16909
  name?: string;
15907
16910
  };
15908
- /** @example 2026-04-30T05:56:38.000000Z */
16911
+ /** @example 2026-04-30T10:00:45.000000Z */
15909
16912
  created_at?: string;
15910
16913
  };
15911
16914
  };
@@ -15932,10 +16935,18 @@ export interface operations {
15932
16935
  content: {
15933
16936
  "application/json": {
15934
16937
  data?: {
15935
- /** @example 452 */
16938
+ /** @example 484 */
15936
16939
  id?: number;
15937
- /** @example APT-20260430-BERCIA */
16940
+ /** @example APT-20260430-FKEEUE */
15938
16941
  appointment_ref?: string;
16942
+ /** @example Property viewing */
16943
+ title?: string;
16944
+ appointment_type?: {
16945
+ /** @example property_viewing */
16946
+ value?: string;
16947
+ /** @example Property Viewing */
16948
+ label?: string;
16949
+ };
15939
16950
  /** @example 2 */
15940
16951
  listing_id?: number;
15941
16952
  listing?: {
@@ -15990,7 +17001,7 @@ export interface operations {
15990
17001
  /** @example dogunfx */
15991
17002
  name?: string;
15992
17003
  };
15993
- /** @example 2026-04-30T05:56:38.000000Z */
17004
+ /** @example 2026-04-30T10:00:45.000000Z */
15994
17005
  created_at?: string;
15995
17006
  };
15996
17007
  };
@@ -16536,30 +17547,60 @@ export interface operations {
16536
17547
  /** @example null */
16537
17548
  event?: string | null;
16538
17549
  data?: {
16539
- /** @example null */
16540
- id?: string | null;
16541
- /** @example null */
16542
- booking_ref?: string | null;
16543
- /** @example null */
16544
- listing_id?: string | null;
16545
- /** @example null */
16546
- guest_id?: string | null;
16547
- /** @example null */
16548
- host_id?: string | null;
16549
- /** @example null */
16550
- guest_count?: string | null;
16551
- /** @example null */
16552
- start_date?: string | null;
16553
- /** @example null */
16554
- end_date?: string | null;
16555
- /** @example null */
16556
- nights?: string | null;
16557
- /** @example null */
16558
- price_total?: string | null;
16559
- /** @example null */
16560
- status?: string | null;
16561
- /** @example null */
16562
- created_at?: string | null;
17550
+ /** @example 12 */
17551
+ id?: number;
17552
+ /** @example BKG-20260430-ABC123 */
17553
+ booking_ref?: string;
17554
+ listing?: {
17555
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
17556
+ listing_uid?: string;
17557
+ cover?: {
17558
+ /** @example lm_34fda1 */
17559
+ uid?: string;
17560
+ /** @example image/jpeg */
17561
+ media_type?: string;
17562
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
17563
+ storage_path?: string;
17564
+ /** @example 0 */
17565
+ order_index?: number;
17566
+ /** @example true */
17567
+ is_cover?: boolean;
17568
+ };
17569
+ details?: {
17570
+ /** @example 24 Windsor Court, London, SW1 */
17571
+ address?: string;
17572
+ /** @example 24 Windsor Court */
17573
+ title?: string;
17574
+ /** @example Rent */
17575
+ type?: string;
17576
+ };
17577
+ };
17578
+ guest?: {
17579
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
17580
+ uid?: string;
17581
+ /** @example Dominic Thomas */
17582
+ name?: string;
17583
+ /** @example tenant3@justinshome.test */
17584
+ email?: string;
17585
+ /** @example null */
17586
+ avatar_path?: string | null;
17587
+ };
17588
+ host?: {
17589
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
17590
+ uid?: string;
17591
+ /** @example Alice Taylor */
17592
+ name?: string;
17593
+ /** @example alice@example.com */
17594
+ email?: string;
17595
+ /** @example null */
17596
+ avatar_path?: string | null;
17597
+ };
17598
+ /** @example 3 */
17599
+ nights?: number;
17600
+ /** @example pending */
17601
+ status?: string;
17602
+ /** @example 450.00 */
17603
+ total_price?: string;
16563
17604
  };
16564
17605
  };
16565
17606
  };
@@ -17015,7 +18056,7 @@ export interface operations {
17015
18056
  content: {
17016
18057
  "application/json": {
17017
18058
  data?: {
17018
- /** @example 255e90cb-4a38-40ac-aee3-e0486b9ae8cd */
18059
+ /** @example 96002704-d4e6-48bd-8d0e-04b2c15bbdb8 */
17019
18060
  uid?: string;
17020
18061
  /** @example Ms. Audra Crooks II */
17021
18062
  username?: string;
@@ -17045,7 +18086,7 @@ export interface operations {
17045
18086
  timezone?: string;
17046
18087
  /** @example Customer */
17047
18088
  user_type?: string;
17048
- /** @example 30 Apr 2026, 05:56 AM */
18089
+ /** @example 30 Apr 2026, 10:00 AM */
17049
18090
  created?: string;
17050
18091
  /** @example 0 seconds ago */
17051
18092
  email_verified_at?: string;
@@ -17514,7 +18555,7 @@ export interface operations {
17514
18555
  content: {
17515
18556
  "application/json": {
17516
18557
  data?: {
17517
- /** @example 54494dac-b280-41a8-8ac7-21301a574d4e */
18558
+ /** @example 04a1a6ea-fc24-4ab7-ac85-8628dc0b3577 */
17518
18559
  uid?: string;
17519
18560
  /** @example Ms. Audra Crooks II */
17520
18561
  username?: string;
@@ -17544,7 +18585,7 @@ export interface operations {
17544
18585
  timezone?: string;
17545
18586
  /** @example Customer */
17546
18587
  user_type?: string;
17547
- /** @example 30 Apr 2026, 05:56 AM */
18588
+ /** @example 30 Apr 2026, 10:00 AM */
17548
18589
  created?: string;
17549
18590
  /** @example 0 seconds ago */
17550
18591
  email_verified_at?: string;
@@ -17626,10 +18667,166 @@ export interface operations {
17626
18667
  };
17627
18668
  };
17628
18669
  };
17629
- reservedBookingsLandlord: {
18670
+ reservedBookingsLandlord: {
18671
+ parameters: {
18672
+ query?: {
18673
+ /** @description Number of bookings per page. */
18674
+ per_page?: number;
18675
+ };
18676
+ header?: never;
18677
+ path?: never;
18678
+ cookie?: never;
18679
+ };
18680
+ requestBody?: {
18681
+ content: {
18682
+ "application/json": {
18683
+ /**
18684
+ * @description Must be at least 1. Must not be greater than 100.
18685
+ * @example 1
18686
+ */
18687
+ per_page?: number | null;
18688
+ };
18689
+ };
18690
+ };
18691
+ responses: {
18692
+ /** @description Retrieve landlord reserved bookings */
18693
+ 200: {
18694
+ headers: {
18695
+ [name: string]: unknown;
18696
+ };
18697
+ content: {
18698
+ "application/json": {
18699
+ /** @example Reserved bookings fetched successfully */
18700
+ message?: string;
18701
+ /** @example null */
18702
+ event?: string | null;
18703
+ data?: {
18704
+ /**
18705
+ * @example [
18706
+ * {
18707
+ * "id": 12,
18708
+ * "booking_ref": "BKG-20260430-ABC123",
18709
+ * "listing": {
18710
+ * "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
18711
+ * "cover": {
18712
+ * "uid": "lm_34fda1",
18713
+ * "media_type": "image/jpeg",
18714
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
18715
+ * "order_index": 0,
18716
+ * "is_cover": true
18717
+ * },
18718
+ * "details": {
18719
+ * "address": "24 Windsor Court, London, SW1",
18720
+ * "title": "24 Windsor Court",
18721
+ * "type": "Rent"
18722
+ * }
18723
+ * },
18724
+ * "guest": {
18725
+ * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
18726
+ * "name": "Dominic Thomas",
18727
+ * "email": "tenant3@justinshome.test",
18728
+ * "avatar_path": null
18729
+ * },
18730
+ * "host": {
18731
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
18732
+ * "name": "Alice Taylor",
18733
+ * "email": "alice@example.com",
18734
+ * "avatar_path": null
18735
+ * },
18736
+ * "nights": 3,
18737
+ * "status": "pending",
18738
+ * "total_price": "450.00"
18739
+ * }
18740
+ * ]
18741
+ */
18742
+ items?: {
18743
+ /** @example 12 */
18744
+ id?: number;
18745
+ /** @example BKG-20260430-ABC123 */
18746
+ booking_ref?: string;
18747
+ listing?: {
18748
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
18749
+ listing_uid?: string;
18750
+ cover?: {
18751
+ /** @example lm_34fda1 */
18752
+ uid?: string;
18753
+ /** @example image/jpeg */
18754
+ media_type?: string;
18755
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
18756
+ storage_path?: string;
18757
+ /** @example 0 */
18758
+ order_index?: number;
18759
+ /** @example true */
18760
+ is_cover?: boolean;
18761
+ };
18762
+ details?: {
18763
+ /** @example 24 Windsor Court, London, SW1 */
18764
+ address?: string;
18765
+ /** @example 24 Windsor Court */
18766
+ title?: string;
18767
+ /** @example Rent */
18768
+ type?: string;
18769
+ };
18770
+ };
18771
+ guest?: {
18772
+ /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
18773
+ uid?: string;
18774
+ /** @example Dominic Thomas */
18775
+ name?: string;
18776
+ /** @example tenant3@justinshome.test */
18777
+ email?: string;
18778
+ /** @example null */
18779
+ avatar_path?: string | null;
18780
+ };
18781
+ host?: {
18782
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
18783
+ uid?: string;
18784
+ /** @example Alice Taylor */
18785
+ name?: string;
18786
+ /** @example alice@example.com */
18787
+ email?: string;
18788
+ /** @example null */
18789
+ avatar_path?: string | null;
18790
+ };
18791
+ /** @example 3 */
18792
+ nights?: number;
18793
+ /** @example pending */
18794
+ status?: string;
18795
+ /** @example 450.00 */
18796
+ total_price?: string;
18797
+ }[];
18798
+ pagination?: {
18799
+ /** @example 1 */
18800
+ current_page?: number;
18801
+ /** @example 15 */
18802
+ per_page?: number;
18803
+ /** @example 1 */
18804
+ total?: number;
18805
+ /** @example 1 */
18806
+ last_page?: number;
18807
+ /** @example 1 */
18808
+ from?: number;
18809
+ /** @example 1 */
18810
+ to?: number;
18811
+ };
18812
+ };
18813
+ };
18814
+ };
18815
+ };
18816
+ };
18817
+ };
18818
+ listLandlordRentalApplications: {
17630
18819
  parameters: {
17631
18820
  query?: {
17632
- /** @description Number of bookings per page. */
18821
+ /** @description Filter by application status. */
18822
+ status?: string;
18823
+ /** @description Filter by listing UID. */
18824
+ listing_uid?: string;
18825
+ /** @description Filter by tenant UID. */
18826
+ tenant_uid?: string;
18827
+ /** @description Filter by application reference. */
18828
+ application_ref?: string;
18829
+ /** @description Number of records per page. */
17633
18830
  per_page?: number;
17634
18831
  };
17635
18832
  header?: never;
@@ -17639,23 +18836,63 @@ export interface operations {
17639
18836
  requestBody?: {
17640
18837
  content: {
17641
18838
  "application/json": {
18839
+ /**
18840
+ * @description Must not be greater than 255 characters.
18841
+ * @example b
18842
+ */
18843
+ search?: string | null;
18844
+ /**
18845
+ * @example rejected
18846
+ * @enum {string|null}
18847
+ */
18848
+ status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
18849
+ /**
18850
+ * @example tenant
18851
+ * @enum {string|null}
18852
+ */
18853
+ source?: "tenant" | "landlord" | "admin" | null;
18854
+ /**
18855
+ * @description The <code>uid</code> of an existing record in the listings table.
18856
+ * @example architecto
18857
+ */
18858
+ listing_uid?: string | null;
18859
+ /**
18860
+ * @description The <code>uid</code> of an existing record in the users table.
18861
+ * @example architecto
18862
+ */
18863
+ tenant_uid?: string | null;
18864
+ /**
18865
+ * @description The <code>uid</code> of an existing record in the users table.
18866
+ * @example architecto
18867
+ */
18868
+ landlord_uid?: string | null;
18869
+ /**
18870
+ * @description Must not be greater than 255 characters.
18871
+ * @example n
18872
+ */
18873
+ application_ref?: string | null;
17642
18874
  /**
17643
18875
  * @description Must be at least 1. Must not be greater than 100.
17644
- * @example 1
18876
+ * @example 7
17645
18877
  */
17646
18878
  per_page?: number | null;
18879
+ /**
18880
+ * @description Must be at least 1.
18881
+ * @example 66
18882
+ */
18883
+ page?: number | null;
17647
18884
  };
17648
18885
  };
17649
18886
  };
17650
18887
  responses: {
17651
- /** @description Retrieve landlord reserved bookings */
18888
+ /** @description Retrieve landlord rental applications */
17652
18889
  200: {
17653
18890
  headers: {
17654
18891
  [name: string]: unknown;
17655
18892
  };
17656
18893
  content: {
17657
18894
  "application/json": {
17658
- /** @example Reserved bookings fetched successfully */
18895
+ /** @example Rental applications fetched successfully */
17659
18896
  message?: string;
17660
18897
  /** @example null */
17661
18898
  event?: string | null;
@@ -17663,110 +18900,331 @@ export interface operations {
17663
18900
  /**
17664
18901
  * @example [
17665
18902
  * {
17666
- * "id": 12,
17667
- * "booking_ref": "BKG-20260430-ABC123",
18903
+ * "uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
18904
+ * "application_ref": "JH-APP-2026-000001",
18905
+ * "status": {
18906
+ * "value": "pending",
18907
+ * "label": "Pending Review"
18908
+ * },
18909
+ * "source": {
18910
+ * "value": "tenant",
18911
+ * "label": "Tenant"
18912
+ * },
18913
+ * "message": "I am interested in renting this property.",
18914
+ * "rejection_reason": null,
17668
18915
  * "listing": {
17669
- * "listing_uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
18916
+ * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
18917
+ * "title": "Riverside Flat",
18918
+ * "address": "12 River Road",
18919
+ * "listing_type": "long_term_rent",
18920
+ * "listing_vertical": "property",
17670
18921
  * "cover": {
17671
18922
  * "uid": "lm_34fda1",
17672
18923
  * "media_type": "image/jpeg",
17673
- * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
18924
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg",
17674
18925
  * "order_index": 0,
17675
18926
  * "is_cover": true
17676
- * },
17677
- * "details": {
17678
- * "address": "24 Windsor Court, London, SW1",
17679
- * "title": "24 Windsor Court",
17680
- * "type": "Rent"
17681
18927
  * }
17682
18928
  * },
17683
- * "guest": {
17684
- * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
17685
- * "name": "Dominic Thomas",
17686
- * "email": "tenant3@justinshome.test",
17687
- * "avatar_path": null
18929
+ * "tenant": {
18930
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
18931
+ * "name": "Jane Tenant",
18932
+ * "email": "jane@example.com"
17688
18933
  * },
17689
- * "host": {
18934
+ * "landlord": {
17690
18935
  * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
17691
- * "name": "Alice Taylor",
17692
- * "email": "alice@example.com",
17693
- * "avatar_path": null
18936
+ * "name": "John Landlord",
18937
+ * "email": "john@example.com"
17694
18938
  * },
17695
- * "nights": 3,
17696
- * "status": "pending",
17697
- * "total_price": "450.00"
18939
+ * "tenancy": null,
18940
+ * "timeline": {
18941
+ * "created_at": "2026-04-30T10:00:00.000000Z",
18942
+ * "approved_at": null,
18943
+ * "rejected_at": null,
18944
+ * "converted_to_tenancy_at": null
18945
+ * }
17698
18946
  * }
17699
18947
  * ]
17700
18948
  */
17701
18949
  items?: {
17702
- /** @example 12 */
17703
- id?: number;
17704
- /** @example BKG-20260430-ABC123 */
17705
- booking_ref?: string;
18950
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
18951
+ uid?: string;
18952
+ /** @example JH-APP-2026-000001 */
18953
+ application_ref?: string;
18954
+ status?: {
18955
+ /** @example pending */
18956
+ value?: string;
18957
+ /** @example Pending Review */
18958
+ label?: string;
18959
+ };
18960
+ source?: {
18961
+ /** @example tenant */
18962
+ value?: string;
18963
+ /** @example Tenant */
18964
+ label?: string;
18965
+ };
18966
+ /** @example I am interested in renting this property. */
18967
+ message?: string;
18968
+ /** @example null */
18969
+ rejection_reason?: string | null;
17706
18970
  listing?: {
17707
18971
  /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
17708
- listing_uid?: string;
18972
+ uid?: string;
18973
+ /** @example Riverside Flat */
18974
+ title?: string;
18975
+ /** @example 12 River Road */
18976
+ address?: string;
18977
+ /** @example long_term_rent */
18978
+ listing_type?: string;
18979
+ /** @example property */
18980
+ listing_vertical?: string;
17709
18981
  cover?: {
17710
18982
  /** @example lm_34fda1 */
17711
18983
  uid?: string;
17712
18984
  /** @example image/jpeg */
17713
18985
  media_type?: string;
17714
- /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
18986
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg */
17715
18987
  storage_path?: string;
17716
18988
  /** @example 0 */
17717
18989
  order_index?: number;
17718
18990
  /** @example true */
17719
18991
  is_cover?: boolean;
17720
18992
  };
17721
- details?: {
17722
- /** @example 24 Windsor Court, London, SW1 */
17723
- address?: string;
17724
- /** @example 24 Windsor Court */
17725
- title?: string;
17726
- /** @example Rent */
17727
- type?: string;
17728
- };
17729
18993
  };
17730
- guest?: {
17731
- /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
18994
+ tenant?: {
18995
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
17732
18996
  uid?: string;
17733
- /** @example Dominic Thomas */
18997
+ /** @example Jane Tenant */
17734
18998
  name?: string;
17735
- /** @example tenant3@justinshome.test */
18999
+ /** @example jane@example.com */
17736
19000
  email?: string;
17737
- /** @example null */
17738
- avatar_path?: string | null;
17739
19001
  };
17740
- host?: {
19002
+ landlord?: {
17741
19003
  /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
17742
19004
  uid?: string;
17743
- /** @example Alice Taylor */
19005
+ /** @example John Landlord */
17744
19006
  name?: string;
17745
- /** @example alice@example.com */
19007
+ /** @example john@example.com */
17746
19008
  email?: string;
19009
+ };
19010
+ /** @example null */
19011
+ tenancy?: string | null;
19012
+ timeline?: {
19013
+ /** @example 2026-04-30T10:00:00.000000Z */
19014
+ created_at?: string;
17747
19015
  /** @example null */
17748
- avatar_path?: string | null;
19016
+ approved_at?: string | null;
19017
+ /** @example null */
19018
+ rejected_at?: string | null;
19019
+ /** @example null */
19020
+ converted_to_tenancy_at?: string | null;
17749
19021
  };
17750
- /** @example 3 */
17751
- nights?: number;
19022
+ }[];
19023
+ pagination?: {
19024
+ /** @example 1 */
19025
+ current_page?: number;
19026
+ /** @example 15 */
19027
+ per_page?: number;
19028
+ /** @example 1 */
19029
+ total?: number;
19030
+ /** @example 1 */
19031
+ last_page?: number;
19032
+ /** @example 1 */
19033
+ from?: number;
19034
+ /** @example 1 */
19035
+ to?: number;
19036
+ };
19037
+ };
19038
+ };
19039
+ };
19040
+ };
19041
+ };
19042
+ };
19043
+ createLandlordRentalApplication: {
19044
+ parameters: {
19045
+ query?: never;
19046
+ header?: never;
19047
+ path?: never;
19048
+ cookie?: never;
19049
+ };
19050
+ requestBody: {
19051
+ content: {
19052
+ "application/json": {
19053
+ /**
19054
+ * @description The UID of the landlord-owned listing.
19055
+ * @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a
19056
+ */
19057
+ listing_uid: string;
19058
+ /**
19059
+ * @description The UID of the tenant user.
19060
+ * @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df
19061
+ */
19062
+ tenant_uid: string;
19063
+ /**
19064
+ * @description Optional note for the application.
19065
+ * @example Application created after viewing.
19066
+ */
19067
+ message?: string | null;
19068
+ };
19069
+ };
19070
+ };
19071
+ responses: {
19072
+ 200: {
19073
+ headers: {
19074
+ [name: string]: unknown;
19075
+ };
19076
+ content: {
19077
+ "application/json": {
19078
+ data?: {
19079
+ /** @example 4fc35c41-b194-4061-b478-396865ca0880 */
19080
+ uid?: string;
19081
+ /** @example JH-APP-2026-936806 */
19082
+ application_ref?: string;
19083
+ status?: {
19084
+ /** @example pending */
19085
+ value?: string;
19086
+ /** @example Pending Review */
19087
+ label?: string;
19088
+ };
19089
+ source?: {
19090
+ /** @example tenant */
19091
+ value?: string;
19092
+ /** @example Tenant */
19093
+ label?: string;
19094
+ };
19095
+ /** @example Quos velit et fugiat sunt nihil accusantium harum. */
19096
+ message?: string;
19097
+ /** @example null */
19098
+ rejection_reason?: string | null;
19099
+ timeline?: {
19100
+ /** @example 2026-04-30T10:00:43.000000Z */
19101
+ created_at?: string;
19102
+ /** @example null */
19103
+ approved_at?: string | null;
19104
+ /** @example null */
19105
+ rejected_at?: string | null;
19106
+ /** @example null */
19107
+ converted_to_tenancy_at?: string | null;
19108
+ };
19109
+ };
19110
+ };
19111
+ };
19112
+ };
19113
+ };
19114
+ };
19115
+ approveLandlordRentalApplication: {
19116
+ parameters: {
19117
+ query?: never;
19118
+ header?: never;
19119
+ path: {
19120
+ /** @description The UID of the rental application. */
19121
+ application_uid: string;
19122
+ };
19123
+ cookie?: never;
19124
+ };
19125
+ requestBody?: never;
19126
+ responses: {
19127
+ 200: {
19128
+ headers: {
19129
+ [name: string]: unknown;
19130
+ };
19131
+ content: {
19132
+ "application/json": {
19133
+ data?: {
19134
+ /** @example f74a7c6f-caf2-420b-8d89-b19595be7487 */
19135
+ uid?: string;
19136
+ /** @example JH-APP-2026-757680 */
19137
+ application_ref?: string;
19138
+ status?: {
19139
+ /** @example pending */
19140
+ value?: string;
19141
+ /** @example Pending Review */
19142
+ label?: string;
19143
+ };
19144
+ source?: {
19145
+ /** @example tenant */
19146
+ value?: string;
19147
+ /** @example Tenant */
19148
+ label?: string;
19149
+ };
19150
+ /** @example Quidem nostrum qui commodi incidunt iure odit. */
19151
+ message?: string;
19152
+ /** @example null */
19153
+ rejection_reason?: string | null;
19154
+ timeline?: {
19155
+ /** @example 2026-04-30T10:00:44.000000Z */
19156
+ created_at?: string;
19157
+ /** @example null */
19158
+ approved_at?: string | null;
19159
+ /** @example null */
19160
+ rejected_at?: string | null;
19161
+ /** @example null */
19162
+ converted_to_tenancy_at?: string | null;
19163
+ };
19164
+ };
19165
+ };
19166
+ };
19167
+ };
19168
+ };
19169
+ };
19170
+ rejectLandlordRentalApplication: {
19171
+ parameters: {
19172
+ query?: never;
19173
+ header?: never;
19174
+ path: {
19175
+ /** @description The UID of the rental application. */
19176
+ application_uid: string;
19177
+ };
19178
+ cookie?: never;
19179
+ };
19180
+ requestBody?: {
19181
+ content: {
19182
+ "application/json": {
19183
+ /**
19184
+ * @description Optional rejection reason.
19185
+ * @example Applicant selected another property.
19186
+ */
19187
+ reason?: string | null;
19188
+ };
19189
+ };
19190
+ };
19191
+ responses: {
19192
+ 200: {
19193
+ headers: {
19194
+ [name: string]: unknown;
19195
+ };
19196
+ content: {
19197
+ "application/json": {
19198
+ data?: {
19199
+ /** @example e79047a7-41a1-46cd-b009-a353be7dcfce */
19200
+ uid?: string;
19201
+ /** @example JH-APP-2026-449171 */
19202
+ application_ref?: string;
19203
+ status?: {
17752
19204
  /** @example pending */
17753
- status?: string;
17754
- /** @example 450.00 */
17755
- total_price?: string;
17756
- }[];
17757
- pagination?: {
17758
- /** @example 1 */
17759
- current_page?: number;
17760
- /** @example 15 */
17761
- per_page?: number;
17762
- /** @example 1 */
17763
- total?: number;
17764
- /** @example 1 */
17765
- last_page?: number;
17766
- /** @example 1 */
17767
- from?: number;
17768
- /** @example 1 */
17769
- to?: number;
19205
+ value?: string;
19206
+ /** @example Pending Review */
19207
+ label?: string;
19208
+ };
19209
+ source?: {
19210
+ /** @example tenant */
19211
+ value?: string;
19212
+ /** @example Tenant */
19213
+ label?: string;
19214
+ };
19215
+ /** @example Animi quos velit et fugiat. */
19216
+ message?: string;
19217
+ /** @example null */
19218
+ rejection_reason?: string | null;
19219
+ timeline?: {
19220
+ /** @example 2026-04-30T10:00:44.000000Z */
19221
+ created_at?: string;
19222
+ /** @example null */
19223
+ approved_at?: string | null;
19224
+ /** @example null */
19225
+ rejected_at?: string | null;
19226
+ /** @example null */
19227
+ converted_to_tenancy_at?: string | null;
17770
19228
  };
17771
19229
  };
17772
19230
  };
@@ -17774,6 +19232,57 @@ export interface operations {
17774
19232
  };
17775
19233
  };
17776
19234
  };
19235
+ convertLandlordRentalApplicationToTenancy: {
19236
+ parameters: {
19237
+ query?: never;
19238
+ header?: never;
19239
+ path: {
19240
+ /** @description The UID of the rental application. */
19241
+ application_uid: string;
19242
+ };
19243
+ cookie?: never;
19244
+ };
19245
+ requestBody?: never;
19246
+ responses: {
19247
+ 200: {
19248
+ headers: {
19249
+ [name: string]: unknown;
19250
+ };
19251
+ content: {
19252
+ "application/json": {
19253
+ data?: {
19254
+ /** @example 830074b2-ba61-4db2-9bbf-8725963204d0 */
19255
+ uid?: string;
19256
+ /** @example 1 */
19257
+ listing_id?: number;
19258
+ /** @example 2 */
19259
+ landlord_id?: number;
19260
+ /** @example 2 */
19261
+ tenant_id?: number;
19262
+ /** @example 4881.50 */
19263
+ rent_amount?: string;
19264
+ /** @example 2151.17 */
19265
+ deposit_amount?: string;
19266
+ /** @example offer_accepted */
19267
+ state?: string;
19268
+ /** @example 2025-11-05T00:00:00.000000Z */
19269
+ start_date?: string;
19270
+ /** @example 2026-11-05T00:00:00.000000Z */
19271
+ end_date?: string;
19272
+ /** @example false */
19273
+ is_periodic?: boolean;
19274
+ /** @example null */
19275
+ company_name?: string | null;
19276
+ /** @example null */
19277
+ company_registration_number?: string | null;
19278
+ /** @example 2026-04-30T10:00:44.000000Z */
19279
+ created_at?: string;
19280
+ };
19281
+ };
19282
+ };
19283
+ };
19284
+ };
19285
+ };
17777
19286
  createListingDraft: {
17778
19287
  parameters: {
17779
19288
  query?: never;
@@ -17813,20 +19322,20 @@ export interface operations {
17813
19322
  content: {
17814
19323
  "application/json": {
17815
19324
  data?: {
17816
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
19325
+ /** @example New For Sale Used Item draft • 30 Apr 2026, 10:00 AM */
17817
19326
  draft_name?: string;
17818
- /** @example LST-PRP-LTR-MOL2MR7OBCE */
19327
+ /** @example LST-UIT-SAL-MOLBCP3QWEE */
17819
19328
  sku?: string;
17820
- /** @example 0ad081f9-fc42-42b2-a148-4799e274ebc8 */
19329
+ /** @example cbd219b2-6e32-49f5-ba13-18e04de5825d */
17821
19330
  uid?: string;
17822
- /** @example Rent */
19331
+ /** @example Sale */
17823
19332
  listing_type?: string;
17824
- /** @example Property */
19333
+ /** @example Used Item */
17825
19334
  vertical?: string;
17826
- /** @example let_to_let */
17827
- arrangement_type?: string;
17828
- /** @example Let to Let */
17829
- arrangement_type_label?: string;
19335
+ /** @example null */
19336
+ arrangement_type?: string | null;
19337
+ /** @example null */
19338
+ arrangement_type_label?: string | null;
17830
19339
  /** @example null */
17831
19340
  price?: string | null;
17832
19341
  /** @example draft */
@@ -17837,10 +19346,8 @@ export interface operations {
17837
19346
  published_since?: string | null;
17838
19347
  /** @example false */
17839
19348
  is_visible?: boolean;
17840
- summary?: {
17841
- /** @example null */
17842
- availability?: string | null;
17843
- };
19349
+ /** @example [] */
19350
+ summary?: unknown[];
17844
19351
  /** @example [] */
17845
19352
  workflow?: unknown[];
17846
19353
  /** @example [] */
@@ -17941,9 +19448,9 @@ export interface operations {
17941
19448
  /**
17942
19449
  * @example [
17943
19450
  * {
17944
- * "draft_name": "New For Rent Property draft • 30 Apr 2026, 5:56 AM",
17945
- * "sku": "LST-PRP-LTR-MOL2MRA7EPE",
17946
- * "uid": "97645d0e-81f1-42b9-ba7f-1c2f3c4a15ad",
19451
+ * "draft_name": "New For Rent Property draft • 30 Apr 2026, 10:00 AM",
19452
+ * "sku": "LST-PRP-LTR-MOLBCP4DXGJ",
19453
+ * "uid": "72731414-f22f-43bd-9dc6-2bca4a1d9372",
17947
19454
  * "listing_type": "Rent",
17948
19455
  * "vertical": "Property",
17949
19456
  * "arrangement_type": "let_to_let",
@@ -17960,9 +19467,9 @@ export interface operations {
17960
19467
  * "media": []
17961
19468
  * },
17962
19469
  * {
17963
- * "draft_name": "New Short Let Property draft • 30 Apr 2026, 5:56 AM",
17964
- * "sku": "LST-PRP-SHL-MOL2MRAA7EN",
17965
- * "uid": "60a5b904-410a-42a3-b4c4-ff366141e45d",
19470
+ * "draft_name": "New Short Let Property draft • 30 Apr 2026, 10:00 AM",
19471
+ * "sku": "LST-PRP-SHL-MOLBCP4GZO8",
19472
+ * "uid": "8aaa9f3d-153c-42e7-8104-763f4e49a79b",
17966
19473
  * "listing_type": "Short Let",
17967
19474
  * "vertical": "Property",
17968
19475
  * "arrangement_type": "short_term_managed",
@@ -17981,11 +19488,11 @@ export interface operations {
17981
19488
  * ]
17982
19489
  */
17983
19490
  data?: {
17984
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
19491
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
17985
19492
  draft_name?: string;
17986
- /** @example LST-PRP-LTR-MOL2MRA7EPE */
19493
+ /** @example LST-PRP-LTR-MOLBCP4DXGJ */
17987
19494
  sku?: string;
17988
- /** @example 97645d0e-81f1-42b9-ba7f-1c2f3c4a15ad */
19495
+ /** @example 72731414-f22f-43bd-9dc6-2bca4a1d9372 */
17989
19496
  uid?: string;
17990
19497
  /** @example Rent */
17991
19498
  listing_type?: string;
@@ -18095,9 +19602,9 @@ export interface operations {
18095
19602
  /**
18096
19603
  * @example [
18097
19604
  * {
18098
- * "draft_name": "New For Rent Property draft • 30 Apr 2026, 5:56 AM",
18099
- * "sku": "LST-PRP-LTR-MOL2MRAKVIE",
18100
- * "uid": "8db7d703-1a11-49b4-acb9-73e88fe2072d",
19605
+ * "draft_name": "New For Rent Property draft • 30 Apr 2026, 10:00 AM",
19606
+ * "sku": "LST-PRP-LTR-MOLBCP4NDBB",
19607
+ * "uid": "6c8c4af4-7dd8-442a-a173-19163c4af76f",
18101
19608
  * "listing_type": "Rent",
18102
19609
  * "vertical": "Property",
18103
19610
  * "arrangement_type": "let_to_let",
@@ -18114,9 +19621,9 @@ export interface operations {
18114
19621
  * "media": []
18115
19622
  * },
18116
19623
  * {
18117
- * "draft_name": "New Short Let Property draft • 30 Apr 2026, 5:56 AM",
18118
- * "sku": "LST-PRP-SHL-MOL2MRANEO0",
18119
- * "uid": "0146ea96-7066-4b54-8034-b1ea62956666",
19624
+ * "draft_name": "New Short Let Property draft • 30 Apr 2026, 10:00 AM",
19625
+ * "sku": "LST-PRP-SHL-MOLBCP4Q2PO",
19626
+ * "uid": "1036c5f9-54c9-418c-8ee4-2e096f590de4",
18120
19627
  * "listing_type": "Short Let",
18121
19628
  * "vertical": "Property",
18122
19629
  * "arrangement_type": "short_term_managed",
@@ -18135,11 +19642,11 @@ export interface operations {
18135
19642
  * ]
18136
19643
  */
18137
19644
  data?: {
18138
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
19645
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
18139
19646
  draft_name?: string;
18140
- /** @example LST-PRP-LTR-MOL2MRAKVIE */
19647
+ /** @example LST-PRP-LTR-MOLBCP4NDBB */
18141
19648
  sku?: string;
18142
- /** @example 8db7d703-1a11-49b4-acb9-73e88fe2072d */
19649
+ /** @example 6c8c4af4-7dd8-442a-a173-19163c4af76f */
18143
19650
  uid?: string;
18144
19651
  /** @example Rent */
18145
19652
  listing_type?: string;
@@ -19388,7 +20895,7 @@ export interface operations {
19388
20895
  content: {
19389
20896
  "application/json": {
19390
20897
  data?: {
19391
- /** @example d488ce9f-31c2-4059-a7e9-3de77ba8183d */
20898
+ /** @example 93d65aae-0404-4872-ad29-320674ec5158 */
19392
20899
  uid?: string;
19393
20900
  /** @example photo */
19394
20901
  media_type?: string;
@@ -19537,11 +21044,11 @@ export interface operations {
19537
21044
  content: {
19538
21045
  "application/json": {
19539
21046
  data?: {
19540
- /** @example New For Rent Property draft • 30 Apr 2026, 5:56 AM */
21047
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
19541
21048
  draft_name?: string;
19542
- /** @example LST-PRP-LTR-MOL2MRE3D6P */
21049
+ /** @example LST-PRP-LTR-MOLBCP6VHQP */
19543
21050
  sku?: string;
19544
- /** @example 0dd99924-5741-4b82-994d-4f4d60e9ad6d */
21051
+ /** @example 11c476ad-727d-438d-b402-1a2ed464e29a */
19545
21052
  uid?: string;
19546
21053
  /** @example Rent */
19547
21054
  listing_type?: string;
@@ -19701,7 +21208,7 @@ export interface operations {
19701
21208
  content: {
19702
21209
  "application/json": {
19703
21210
  data?: {
19704
- /** @example 0b9b047f-3c34-4060-b246-fe1e1d24b3e2 */
21211
+ /** @example 26644265-4a5c-4c0d-ac77-13c8e381a316 */
19705
21212
  uid?: string;
19706
21213
  /** @example null */
19707
21214
  compliances?: string | null;
@@ -19752,7 +21259,7 @@ export interface operations {
19752
21259
  content: {
19753
21260
  "application/json": {
19754
21261
  data?: {
19755
- /** @example 157 */
21262
+ /** @example 163 */
19756
21263
  id?: number;
19757
21264
  compliance?: {
19758
21265
  /** @example 1 */
@@ -19774,7 +21281,7 @@ export interface operations {
19774
21281
  reviewed_by?: number;
19775
21282
  /** @example null */
19776
21283
  reviewed_at?: string | null;
19777
- /** @example 2026-04-30T05:56:37.000000Z */
21284
+ /** @example 2026-04-30T10:00:44.000000Z */
19778
21285
  created_at?: string;
19779
21286
  };
19780
21287
  };
@@ -19829,22 +21336,22 @@ export interface operations {
19829
21336
  /**
19830
21337
  * @example [
19831
21338
  * {
19832
- * "uid": "23fd205e-8cf0-45ff-959c-7d2c167596f7",
21339
+ * "uid": "fe4db5f0-82e3-400b-818e-7e887dd436ed",
19833
21340
  * "listing_id": 1,
19834
21341
  * "landlord_id": 2,
19835
21342
  * "tenant_id": 2,
19836
21343
  * "rent_amount": "4881.50",
19837
21344
  * "deposit_amount": "2151.17",
19838
21345
  * "state": "offer_accepted",
19839
- * "start_date": "2025-11-04T00:00:00.000000Z",
19840
- * "end_date": "2026-11-04T00:00:00.000000Z",
21346
+ * "start_date": "2025-11-05T00:00:00.000000Z",
21347
+ * "end_date": "2026-11-05T00:00:00.000000Z",
19841
21348
  * "is_periodic": false,
19842
21349
  * "company_name": null,
19843
21350
  * "company_registration_number": null,
19844
- * "created_at": "2026-04-30T05:56:37.000000Z"
21351
+ * "created_at": "2026-04-30T10:00:44.000000Z"
19845
21352
  * },
19846
21353
  * {
19847
- * "uid": "c64e199d-7c5b-4a9b-81db-51e3911a8414",
21354
+ * "uid": "c697cbf5-2d74-4d8a-86a4-e50e8f9a1c12",
19848
21355
  * "listing_id": 1,
19849
21356
  * "landlord_id": 2,
19850
21357
  * "tenant_id": 2,
@@ -19856,12 +21363,12 @@ export interface operations {
19856
21363
  * "is_periodic": false,
19857
21364
  * "company_name": null,
19858
21365
  * "company_registration_number": null,
19859
- * "created_at": "2026-04-30T05:56:37.000000Z"
21366
+ * "created_at": "2026-04-30T10:00:44.000000Z"
19860
21367
  * }
19861
21368
  * ]
19862
21369
  */
19863
21370
  data?: {
19864
- /** @example 23fd205e-8cf0-45ff-959c-7d2c167596f7 */
21371
+ /** @example fe4db5f0-82e3-400b-818e-7e887dd436ed */
19865
21372
  uid?: string;
19866
21373
  /** @example 1 */
19867
21374
  listing_id?: number;
@@ -19875,9 +21382,9 @@ export interface operations {
19875
21382
  deposit_amount?: string;
19876
21383
  /** @example offer_accepted */
19877
21384
  state?: string;
19878
- /** @example 2025-11-04T00:00:00.000000Z */
21385
+ /** @example 2025-11-05T00:00:00.000000Z */
19879
21386
  start_date?: string;
19880
- /** @example 2026-11-04T00:00:00.000000Z */
21387
+ /** @example 2026-11-05T00:00:00.000000Z */
19881
21388
  end_date?: string;
19882
21389
  /** @example false */
19883
21390
  is_periodic?: boolean;
@@ -19885,7 +21392,7 @@ export interface operations {
19885
21392
  company_name?: string | null;
19886
21393
  /** @example null */
19887
21394
  company_registration_number?: string | null;
19888
- /** @example 2026-04-30T05:56:37.000000Z */
21395
+ /** @example 2026-04-30T10:00:44.000000Z */
19889
21396
  created_at?: string;
19890
21397
  }[];
19891
21398
  links?: {
@@ -19972,22 +21479,22 @@ export interface operations {
19972
21479
  /**
19973
21480
  * @example [
19974
21481
  * {
19975
- * "uid": "099e45c1-864e-40bf-a181-7d000ef55b9b",
21482
+ * "uid": "e96f9ce8-f96a-4d47-bdff-dc10d886a0bb",
19976
21483
  * "listing_id": 1,
19977
21484
  * "landlord_id": 2,
19978
21485
  * "tenant_id": 2,
19979
21486
  * "rent_amount": "4881.50",
19980
21487
  * "deposit_amount": "2151.17",
19981
21488
  * "state": "offer_accepted",
19982
- * "start_date": "2025-11-04T00:00:00.000000Z",
19983
- * "end_date": "2026-11-04T00:00:00.000000Z",
21489
+ * "start_date": "2025-11-05T00:00:00.000000Z",
21490
+ * "end_date": "2026-11-05T00:00:00.000000Z",
19984
21491
  * "is_periodic": false,
19985
21492
  * "company_name": null,
19986
21493
  * "company_registration_number": null,
19987
- * "created_at": "2026-04-30T05:56:37.000000Z"
21494
+ * "created_at": "2026-04-30T10:00:44.000000Z"
19988
21495
  * },
19989
21496
  * {
19990
- * "uid": "5b09e356-2b7e-442d-8797-14c0623024f9",
21497
+ * "uid": "e6c30db8-af17-4327-b666-b1945501bbdb",
19991
21498
  * "listing_id": 1,
19992
21499
  * "landlord_id": 2,
19993
21500
  * "tenant_id": 2,
@@ -19999,12 +21506,12 @@ export interface operations {
19999
21506
  * "is_periodic": false,
20000
21507
  * "company_name": null,
20001
21508
  * "company_registration_number": null,
20002
- * "created_at": "2026-04-30T05:56:37.000000Z"
21509
+ * "created_at": "2026-04-30T10:00:44.000000Z"
20003
21510
  * }
20004
21511
  * ]
20005
21512
  */
20006
21513
  data?: {
20007
- /** @example 099e45c1-864e-40bf-a181-7d000ef55b9b */
21514
+ /** @example e96f9ce8-f96a-4d47-bdff-dc10d886a0bb */
20008
21515
  uid?: string;
20009
21516
  /** @example 1 */
20010
21517
  listing_id?: number;
@@ -20018,9 +21525,9 @@ export interface operations {
20018
21525
  deposit_amount?: string;
20019
21526
  /** @example offer_accepted */
20020
21527
  state?: string;
20021
- /** @example 2025-11-04T00:00:00.000000Z */
21528
+ /** @example 2025-11-05T00:00:00.000000Z */
20022
21529
  start_date?: string;
20023
- /** @example 2026-11-04T00:00:00.000000Z */
21530
+ /** @example 2026-11-05T00:00:00.000000Z */
20024
21531
  end_date?: string;
20025
21532
  /** @example false */
20026
21533
  is_periodic?: boolean;
@@ -20028,7 +21535,7 @@ export interface operations {
20028
21535
  company_name?: string | null;
20029
21536
  /** @example null */
20030
21537
  company_registration_number?: string | null;
20031
- /** @example 2026-04-30T05:56:37.000000Z */
21538
+ /** @example 2026-04-30T10:00:44.000000Z */
20032
21539
  created_at?: string;
20033
21540
  }[];
20034
21541
  links?: {
@@ -20135,7 +21642,7 @@ export interface operations {
20135
21642
  content: {
20136
21643
  "application/json": {
20137
21644
  data?: {
20138
- /** @example 233 */
21645
+ /** @example 245 */
20139
21646
  id?: number;
20140
21647
  compliance?: {
20141
21648
  /** @example 1 */
@@ -20155,9 +21662,9 @@ export interface operations {
20155
21662
  rejection_reason?: string | null;
20156
21663
  /** @example 1 */
20157
21664
  reviewed_by?: number;
20158
- /** @example 2026-04-30T05:56:37.000000Z */
21665
+ /** @example 2026-04-30T10:00:44.000000Z */
20159
21666
  reviewed_at?: string;
20160
- /** @example 2026-04-30T05:56:37.000000Z */
21667
+ /** @example 2026-04-30T10:00:44.000000Z */
20161
21668
  created_at?: string;
20162
21669
  };
20163
21670
  };
@@ -20184,7 +21691,7 @@ export interface operations {
20184
21691
  content: {
20185
21692
  "application/json": {
20186
21693
  data?: {
20187
- /** @example 234 */
21694
+ /** @example 246 */
20188
21695
  id?: number;
20189
21696
  compliance?: {
20190
21697
  /** @example 1 */
@@ -20204,9 +21711,9 @@ export interface operations {
20204
21711
  rejection_reason?: string | null;
20205
21712
  /** @example 1 */
20206
21713
  reviewed_by?: number;
20207
- /** @example 2026-04-30T05:56:37.000000Z */
21714
+ /** @example 2026-04-30T10:00:44.000000Z */
20208
21715
  reviewed_at?: string;
20209
- /** @example 2026-04-30T05:56:37.000000Z */
21716
+ /** @example 2026-04-30T10:00:44.000000Z */
20210
21717
  created_at?: string;
20211
21718
  };
20212
21719
  };
@@ -21338,37 +22845,37 @@ export interface operations {
21338
22845
  /**
21339
22846
  * @example [
21340
22847
  * {
21341
- * "uid": "6cce02d2-0d17-48c0-9f08-61656c8d9df2",
22848
+ * "uid": "8c7a474e-be7c-4ebc-a0a3-4aa0c2ea1e21",
21342
22849
  * "tenancy_id": 1,
21343
22850
  * "title": "Quos velit et fugiat sunt nihil.",
21344
22851
  * "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.",
21345
22852
  * "status": "reported",
21346
22853
  * "priority": "emergency",
21347
- * "reported_at": "23 Apr 2026, 05:10 PM",
21348
- * "assigned_at": "28 Apr 2026, 01:30 PM",
22854
+ * "reported_at": "23 Apr 2026, 09:14 PM",
22855
+ * "assigned_at": "28 Apr 2026, 05:34 PM",
21349
22856
  * "completed_at": null,
21350
- * "sla_deadline": "01 May 2026, 06:52 PM",
21351
- * "created_at": "30 Apr 2026, 05:56 AM",
21352
- * "updated_at": "30 Apr 2026, 05:56 AM"
22857
+ * "sla_deadline": "01 May 2026, 10:56 PM",
22858
+ * "created_at": "30 Apr 2026, 10:00 AM",
22859
+ * "updated_at": "30 Apr 2026, 10:00 AM"
21353
22860
  * },
21354
22861
  * {
21355
- * "uid": "824a0779-a9b2-41e4-8672-30423fa6cff8",
22862
+ * "uid": "74c3c721-fe18-4102-9d27-cfb06d0265c7",
21356
22863
  * "tenancy_id": 1,
21357
22864
  * "title": "Fugit deleniti distinctio eum doloremque.",
21358
22865
  * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
21359
22866
  * "status": "completed",
21360
22867
  * "priority": "normal",
21361
- * "reported_at": "26 Apr 2026, 05:48 AM",
22868
+ * "reported_at": "26 Apr 2026, 09:52 AM",
21362
22869
  * "assigned_at": null,
21363
22870
  * "completed_at": null,
21364
- * "sla_deadline": "03 May 2026, 02:52 AM",
21365
- * "created_at": "30 Apr 2026, 05:56 AM",
21366
- * "updated_at": "30 Apr 2026, 05:56 AM"
22871
+ * "sla_deadline": "03 May 2026, 06:56 AM",
22872
+ * "created_at": "30 Apr 2026, 10:00 AM",
22873
+ * "updated_at": "30 Apr 2026, 10:00 AM"
21367
22874
  * }
21368
22875
  * ]
21369
22876
  */
21370
22877
  data?: {
21371
- /** @example 6cce02d2-0d17-48c0-9f08-61656c8d9df2 */
22878
+ /** @example 8c7a474e-be7c-4ebc-a0a3-4aa0c2ea1e21 */
21372
22879
  uid?: string;
21373
22880
  /** @example 1 */
21374
22881
  tenancy_id?: number;
@@ -21380,17 +22887,17 @@ export interface operations {
21380
22887
  status?: string;
21381
22888
  /** @example emergency */
21382
22889
  priority?: string;
21383
- /** @example 23 Apr 2026, 05:10 PM */
22890
+ /** @example 23 Apr 2026, 09:14 PM */
21384
22891
  reported_at?: string;
21385
- /** @example 28 Apr 2026, 01:30 PM */
22892
+ /** @example 28 Apr 2026, 05:34 PM */
21386
22893
  assigned_at?: string;
21387
22894
  /** @example null */
21388
22895
  completed_at?: string | null;
21389
- /** @example 01 May 2026, 06:52 PM */
22896
+ /** @example 01 May 2026, 10:56 PM */
21390
22897
  sla_deadline?: string;
21391
- /** @example 30 Apr 2026, 05:56 AM */
22898
+ /** @example 30 Apr 2026, 10:00 AM */
21392
22899
  created_at?: string;
21393
- /** @example 30 Apr 2026, 05:56 AM */
22900
+ /** @example 30 Apr 2026, 10:00 AM */
21394
22901
  updated_at?: string;
21395
22902
  }[];
21396
22903
  links?: {
@@ -21506,13 +23013,13 @@ export interface operations {
21506
23013
  };
21507
23014
  } | {
21508
23015
  data?: {
21509
- /** @example 8b928f83-fede-4fdf-a5e9-c4e18d7f796e */
23016
+ /** @example 32179884-67d5-4f9a-81b4-91dea38eeff3 */
21510
23017
  uid?: string;
21511
23018
  /** @example image */
21512
23019
  file_type?: string;
21513
23020
  /** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
21514
23021
  url?: string;
21515
- /** @example 2026-04-30T05:56:38.000000Z */
23022
+ /** @example 2026-04-30T10:00:45.000000Z */
21516
23023
  created_at?: string;
21517
23024
  };
21518
23025
  };
@@ -21557,7 +23064,7 @@ export interface operations {
21557
23064
  content: {
21558
23065
  "application/json": {
21559
23066
  data?: {
21560
- /** @example 165 */
23067
+ /** @example 171 */
21561
23068
  id?: number;
21562
23069
  /** @example property_inquiry */
21563
23070
  type?: string;
@@ -21573,7 +23080,7 @@ export interface operations {
21573
23080
  };
21574
23081
  /** @example null */
21575
23082
  last_message_at?: string | null;
21576
- /** @example 2026-04-30T05:56:38.000000Z */
23083
+ /** @example 2026-04-30T10:00:45.000000Z */
21577
23084
  created_at?: string;
21578
23085
  };
21579
23086
  };
@@ -21984,7 +23491,7 @@ export interface operations {
21984
23491
  };
21985
23492
  content: {
21986
23493
  "application/json": {
21987
- /** @example 93aa0038-1735-4199-8fa3-8d75223cc0d5 */
23494
+ /** @example 0131c0ff-0b40-460e-97e8-3b94a22feb13 */
21988
23495
  id?: string;
21989
23496
  /** @example APPOINTMENT_CREATED */
21990
23497
  type?: string;
@@ -21996,7 +23503,7 @@ export interface operations {
21996
23503
  data?: unknown[];
21997
23504
  /** @example null */
21998
23505
  read_at?: string | null;
21999
- /** @example 2026-04-30T05:56:38.000000Z */
23506
+ /** @example 2026-04-30T10:00:45.000000Z */
22000
23507
  created_at?: string;
22001
23508
  };
22002
23509
  };
@@ -22086,90 +23593,469 @@ export interface operations {
22086
23593
  };
22087
23594
  };
22088
23595
  };
22089
- userPlan: {
23596
+ userPlan: {
23597
+ parameters: {
23598
+ query?: never;
23599
+ header?: never;
23600
+ path?: never;
23601
+ cookie?: never;
23602
+ };
23603
+ requestBody?: never;
23604
+ responses: {
23605
+ 200: {
23606
+ headers: {
23607
+ [name: string]: unknown;
23608
+ };
23609
+ content: {
23610
+ "application/json": {
23611
+ data?: {
23612
+ /** @example dolorem */
23613
+ key?: string;
23614
+ /** @example quod */
23615
+ name?: string;
23616
+ /** @example soft */
23617
+ enforcement_mode?: string;
23618
+ /** @example Landlord */
23619
+ user_type?: string;
23620
+ /** @example true */
23621
+ is_active?: boolean;
23622
+ };
23623
+ };
23624
+ };
23625
+ };
23626
+ };
23627
+ };
23628
+ myCapabilitiesPlan: {
23629
+ parameters: {
23630
+ query?: never;
23631
+ header?: never;
23632
+ path?: never;
23633
+ cookie?: never;
23634
+ };
23635
+ requestBody?: never;
23636
+ responses: {
23637
+ /** @description capabilities retrieved successfully */
23638
+ 200: {
23639
+ headers: {
23640
+ [name: string]: unknown;
23641
+ };
23642
+ content: {
23643
+ "application/json": {
23644
+ /** @example capabilities retrieved successfully */
23645
+ message?: string;
23646
+ /** @example null */
23647
+ event?: string | null;
23648
+ data?: {
23649
+ create_listing?: {
23650
+ /** @example Creating Listing */
23651
+ name?: string;
23652
+ /** @example Allow user to publish listings */
23653
+ description?: string;
23654
+ /** @example false */
23655
+ allowed?: boolean;
23656
+ /** @example Required verification not completed */
23657
+ reason?: string;
23658
+ /**
23659
+ * @example [
23660
+ * "phone_verified"
23661
+ * ]
23662
+ */
23663
+ missing?: string[];
23664
+ };
23665
+ publish_listing?: {
23666
+ /** @example Publish Listing */
23667
+ name?: string;
23668
+ /** @example null */
23669
+ description?: string | null;
23670
+ /** @example false */
23671
+ allowed?: boolean;
23672
+ /** @example Required verification not completed */
23673
+ reason?: string;
23674
+ /**
23675
+ * @example [
23676
+ * "phone_verified"
23677
+ * ]
23678
+ */
23679
+ missing?: string[];
23680
+ };
23681
+ };
23682
+ };
23683
+ };
23684
+ };
23685
+ };
23686
+ };
23687
+ checkCapabilityPlan: {
23688
+ parameters: {
23689
+ query?: never;
23690
+ header?: never;
23691
+ path: {
23692
+ /** @description The capability to check. Example create_listing */
23693
+ capability: string;
23694
+ };
23695
+ cookie?: never;
23696
+ };
23697
+ requestBody?: never;
23698
+ responses: {
23699
+ /** @description Check completed */
23700
+ 200: {
23701
+ headers: {
23702
+ [name: string]: unknown;
23703
+ };
23704
+ content: {
23705
+ "application/json": {
23706
+ /** @example Check completed */
23707
+ message?: string;
23708
+ /** @example null */
23709
+ event?: string | null;
23710
+ data?: {
23711
+ /** @example */
23712
+ capability?: string;
23713
+ /** @example */
23714
+ allowed?: string;
23715
+ };
23716
+ };
23717
+ };
23718
+ };
23719
+ };
23720
+ };
23721
+ createRentalApplications: {
23722
+ parameters: {
23723
+ query?: never;
23724
+ header?: never;
23725
+ path?: never;
23726
+ cookie?: never;
23727
+ };
23728
+ requestBody: {
23729
+ content: {
23730
+ "application/json": {
23731
+ /**
23732
+ * @description The UID of the long-term rental listing.
23733
+ * @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a
23734
+ */
23735
+ listing_uid: string;
23736
+ /**
23737
+ * @description Optional tenant note for the landlord.
23738
+ * @example I am interested in renting this property.
23739
+ */
23740
+ message?: string | null;
23741
+ };
23742
+ };
23743
+ };
23744
+ responses: {
23745
+ 200: {
23746
+ headers: {
23747
+ [name: string]: unknown;
23748
+ };
23749
+ content: {
23750
+ "application/json": {
23751
+ data?: {
23752
+ /** @example 24725edf-efe6-48cc-93bd-c3a1e30d8a74 */
23753
+ uid?: string;
23754
+ /** @example JH-APP-2026-089432 */
23755
+ application_ref?: string;
23756
+ status?: {
23757
+ /** @example pending */
23758
+ value?: string;
23759
+ /** @example Pending Review */
23760
+ label?: string;
23761
+ };
23762
+ source?: {
23763
+ /** @example tenant */
23764
+ value?: string;
23765
+ /** @example Tenant */
23766
+ label?: string;
23767
+ };
23768
+ /** @example Sunt nihil accusantium harum mollitia. */
23769
+ message?: string;
23770
+ /** @example null */
23771
+ rejection_reason?: string | null;
23772
+ timeline?: {
23773
+ /** @example 2026-04-30T10:00:45.000000Z */
23774
+ created_at?: string;
23775
+ /** @example null */
23776
+ approved_at?: string | null;
23777
+ /** @example null */
23778
+ rejected_at?: string | null;
23779
+ /** @example null */
23780
+ converted_to_tenancy_at?: string | null;
23781
+ };
23782
+ };
23783
+ };
23784
+ };
23785
+ };
23786
+ };
23787
+ };
23788
+ listMyRentalApplications: {
22090
23789
  parameters: {
22091
- query?: never;
23790
+ query?: {
23791
+ /** @description Filter by application status. */
23792
+ status?: string;
23793
+ /** @description Filter by listing UID. */
23794
+ listing_uid?: string;
23795
+ /** @description Filter by application reference. */
23796
+ application_ref?: string;
23797
+ /** @description Number of records per page. */
23798
+ per_page?: number;
23799
+ };
22092
23800
  header?: never;
22093
23801
  path?: never;
22094
23802
  cookie?: never;
22095
23803
  };
22096
- requestBody?: never;
23804
+ requestBody?: {
23805
+ content: {
23806
+ "application/json": {
23807
+ /**
23808
+ * @description Must not be greater than 255 characters.
23809
+ * @example b
23810
+ */
23811
+ search?: string | null;
23812
+ /**
23813
+ * @example converted
23814
+ * @enum {string|null}
23815
+ */
23816
+ status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
23817
+ /**
23818
+ * @example tenant
23819
+ * @enum {string|null}
23820
+ */
23821
+ source?: "tenant" | "landlord" | "admin" | null;
23822
+ /**
23823
+ * @description The <code>uid</code> of an existing record in the listings table.
23824
+ * @example architecto
23825
+ */
23826
+ listing_uid?: string | null;
23827
+ /**
23828
+ * @description The <code>uid</code> of an existing record in the users table.
23829
+ * @example architecto
23830
+ */
23831
+ tenant_uid?: string | null;
23832
+ /**
23833
+ * @description The <code>uid</code> of an existing record in the users table.
23834
+ * @example architecto
23835
+ */
23836
+ landlord_uid?: string | null;
23837
+ /**
23838
+ * @description Must not be greater than 255 characters.
23839
+ * @example n
23840
+ */
23841
+ application_ref?: string | null;
23842
+ /**
23843
+ * @description Must be at least 1. Must not be greater than 100.
23844
+ * @example 7
23845
+ */
23846
+ per_page?: number | null;
23847
+ /**
23848
+ * @description Must be at least 1.
23849
+ * @example 66
23850
+ */
23851
+ page?: number | null;
23852
+ };
23853
+ };
23854
+ };
22097
23855
  responses: {
23856
+ /** @description Retrieve tenant rental applications */
22098
23857
  200: {
22099
23858
  headers: {
22100
23859
  [name: string]: unknown;
22101
23860
  };
22102
23861
  content: {
22103
23862
  "application/json": {
23863
+ /** @example Rental applications fetched successfully */
23864
+ message?: string;
23865
+ /** @example null */
23866
+ event?: string | null;
22104
23867
  data?: {
22105
- /** @example aut */
22106
- key?: string;
22107
- /** @example adipisci */
22108
- name?: string;
22109
- /** @example soft */
22110
- enforcement_mode?: string;
22111
- /** @example Landlord */
22112
- user_type?: string;
22113
- /** @example true */
22114
- is_active?: boolean;
23868
+ /**
23869
+ * @example [
23870
+ * {
23871
+ * "uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
23872
+ * "application_ref": "JH-APP-2026-000001",
23873
+ * "status": {
23874
+ * "value": "pending",
23875
+ * "label": "Pending Review"
23876
+ * },
23877
+ * "source": {
23878
+ * "value": "tenant",
23879
+ * "label": "Tenant"
23880
+ * },
23881
+ * "message": "I am interested in renting this property.",
23882
+ * "rejection_reason": null,
23883
+ * "listing": {
23884
+ * "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
23885
+ * "title": "Riverside Flat",
23886
+ * "address": "12 River Road",
23887
+ * "listing_type": "long_term_rent",
23888
+ * "listing_vertical": "property",
23889
+ * "cover": {
23890
+ * "uid": "lm_34fda1",
23891
+ * "media_type": "image/jpeg",
23892
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg",
23893
+ * "order_index": 0,
23894
+ * "is_cover": true
23895
+ * }
23896
+ * },
23897
+ * "tenant": {
23898
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
23899
+ * "name": "Jane Tenant",
23900
+ * "email": "jane@example.com"
23901
+ * },
23902
+ * "landlord": {
23903
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
23904
+ * "name": "John Landlord",
23905
+ * "email": "john@example.com"
23906
+ * },
23907
+ * "tenancy": null,
23908
+ * "timeline": {
23909
+ * "created_at": "2026-04-30T10:00:00.000000Z",
23910
+ * "approved_at": null,
23911
+ * "rejected_at": null,
23912
+ * "converted_to_tenancy_at": null
23913
+ * }
23914
+ * }
23915
+ * ]
23916
+ */
23917
+ items?: {
23918
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
23919
+ uid?: string;
23920
+ /** @example JH-APP-2026-000001 */
23921
+ application_ref?: string;
23922
+ status?: {
23923
+ /** @example pending */
23924
+ value?: string;
23925
+ /** @example Pending Review */
23926
+ label?: string;
23927
+ };
23928
+ source?: {
23929
+ /** @example tenant */
23930
+ value?: string;
23931
+ /** @example Tenant */
23932
+ label?: string;
23933
+ };
23934
+ /** @example I am interested in renting this property. */
23935
+ message?: string;
23936
+ /** @example null */
23937
+ rejection_reason?: string | null;
23938
+ listing?: {
23939
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
23940
+ uid?: string;
23941
+ /** @example Riverside Flat */
23942
+ title?: string;
23943
+ /** @example 12 River Road */
23944
+ address?: string;
23945
+ /** @example long_term_rent */
23946
+ listing_type?: string;
23947
+ /** @example property */
23948
+ listing_vertical?: string;
23949
+ cover?: {
23950
+ /** @example lm_34fda1 */
23951
+ uid?: string;
23952
+ /** @example image/jpeg */
23953
+ media_type?: string;
23954
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/riverside-flat/cover.jpg */
23955
+ storage_path?: string;
23956
+ /** @example 0 */
23957
+ order_index?: number;
23958
+ /** @example true */
23959
+ is_cover?: boolean;
23960
+ };
23961
+ };
23962
+ tenant?: {
23963
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
23964
+ uid?: string;
23965
+ /** @example Jane Tenant */
23966
+ name?: string;
23967
+ /** @example jane@example.com */
23968
+ email?: string;
23969
+ };
23970
+ landlord?: {
23971
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
23972
+ uid?: string;
23973
+ /** @example John Landlord */
23974
+ name?: string;
23975
+ /** @example john@example.com */
23976
+ email?: string;
23977
+ };
23978
+ /** @example null */
23979
+ tenancy?: string | null;
23980
+ timeline?: {
23981
+ /** @example 2026-04-30T10:00:00.000000Z */
23982
+ created_at?: string;
23983
+ /** @example null */
23984
+ approved_at?: string | null;
23985
+ /** @example null */
23986
+ rejected_at?: string | null;
23987
+ /** @example null */
23988
+ converted_to_tenancy_at?: string | null;
23989
+ };
23990
+ }[];
23991
+ pagination?: {
23992
+ /** @example 1 */
23993
+ current_page?: number;
23994
+ /** @example 15 */
23995
+ per_page?: number;
23996
+ /** @example 1 */
23997
+ total?: number;
23998
+ /** @example 1 */
23999
+ last_page?: number;
24000
+ /** @example 1 */
24001
+ from?: number;
24002
+ /** @example 1 */
24003
+ to?: number;
24004
+ };
22115
24005
  };
22116
24006
  };
22117
24007
  };
22118
24008
  };
22119
24009
  };
22120
24010
  };
22121
- myCapabilitiesPlan: {
24011
+ fetchMyRentalApplications: {
22122
24012
  parameters: {
22123
24013
  query?: never;
22124
24014
  header?: never;
22125
- path?: never;
24015
+ path: {
24016
+ /** @description The UID of the rental application. */
24017
+ application_uid: string;
24018
+ };
22126
24019
  cookie?: never;
22127
24020
  };
22128
24021
  requestBody?: never;
22129
24022
  responses: {
22130
- /** @description capabilities retrieved successfully */
22131
24023
  200: {
22132
24024
  headers: {
22133
24025
  [name: string]: unknown;
22134
24026
  };
22135
24027
  content: {
22136
24028
  "application/json": {
22137
- /** @example capabilities retrieved successfully */
22138
- message?: string;
22139
- /** @example null */
22140
- event?: string | null;
22141
24029
  data?: {
22142
- create_listing?: {
22143
- /** @example Creating Listing */
22144
- name?: string;
22145
- /** @example Allow user to publish listings */
22146
- description?: string;
22147
- /** @example false */
22148
- allowed?: boolean;
22149
- /** @example Required verification not completed */
22150
- reason?: string;
22151
- /**
22152
- * @example [
22153
- * "phone_verified"
22154
- * ]
22155
- */
22156
- missing?: string[];
24030
+ /** @example 78344caf-4aed-4497-8abd-2a90d1694cd4 */
24031
+ uid?: string;
24032
+ /** @example JH-APP-2026-700432 */
24033
+ application_ref?: string;
24034
+ status?: {
24035
+ /** @example pending */
24036
+ value?: string;
24037
+ /** @example Pending Review */
24038
+ label?: string;
22157
24039
  };
22158
- publish_listing?: {
22159
- /** @example Publish Listing */
22160
- name?: string;
24040
+ source?: {
24041
+ /** @example tenant */
24042
+ value?: string;
24043
+ /** @example Tenant */
24044
+ label?: string;
24045
+ };
24046
+ /** @example Commodi incidunt iure odit. */
24047
+ message?: string;
24048
+ /** @example null */
24049
+ rejection_reason?: string | null;
24050
+ timeline?: {
24051
+ /** @example 2026-04-30T10:00:45.000000Z */
24052
+ created_at?: string;
22161
24053
  /** @example null */
22162
- description?: string | null;
22163
- /** @example false */
22164
- allowed?: boolean;
22165
- /** @example Required verification not completed */
22166
- reason?: string;
22167
- /**
22168
- * @example [
22169
- * "phone_verified"
22170
- * ]
22171
- */
22172
- missing?: string[];
24054
+ approved_at?: string | null;
24055
+ /** @example null */
24056
+ rejected_at?: string | null;
24057
+ /** @example null */
24058
+ converted_to_tenancy_at?: string | null;
22173
24059
  };
22174
24060
  };
22175
24061
  };
@@ -22177,34 +24063,55 @@ export interface operations {
22177
24063
  };
22178
24064
  };
22179
24065
  };
22180
- checkCapabilityPlan: {
24066
+ withdrawRentalApplications: {
22181
24067
  parameters: {
22182
24068
  query?: never;
22183
24069
  header?: never;
22184
24070
  path: {
22185
- /** @description The capability to check. Example create_listing */
22186
- capability: string;
24071
+ /** @description The UID of the rental application. */
24072
+ application_uid: string;
22187
24073
  };
22188
24074
  cookie?: never;
22189
24075
  };
22190
24076
  requestBody?: never;
22191
24077
  responses: {
22192
- /** @description Check completed */
22193
24078
  200: {
22194
24079
  headers: {
22195
24080
  [name: string]: unknown;
22196
24081
  };
22197
24082
  content: {
22198
24083
  "application/json": {
22199
- /** @example Check completed */
22200
- message?: string;
22201
- /** @example null */
22202
- event?: string | null;
22203
24084
  data?: {
22204
- /** @example */
22205
- capability?: string;
22206
- /** @example */
22207
- allowed?: string;
24085
+ /** @example 2fbce1d9-12b4-4b9b-8ab7-a429d707332a */
24086
+ uid?: string;
24087
+ /** @example JH-APP-2026-031881 */
24088
+ application_ref?: string;
24089
+ status?: {
24090
+ /** @example pending */
24091
+ value?: string;
24092
+ /** @example Pending Review */
24093
+ label?: string;
24094
+ };
24095
+ source?: {
24096
+ /** @example tenant */
24097
+ value?: string;
24098
+ /** @example Tenant */
24099
+ label?: string;
24100
+ };
24101
+ /** @example Incidunt iure odit et et modi ipsum. */
24102
+ message?: string;
24103
+ /** @example null */
24104
+ rejection_reason?: string | null;
24105
+ timeline?: {
24106
+ /** @example 2026-04-30T10:00:45.000000Z */
24107
+ created_at?: string;
24108
+ /** @example null */
24109
+ approved_at?: string | null;
24110
+ /** @example null */
24111
+ rejected_at?: string | null;
24112
+ /** @example null */
24113
+ converted_to_tenancy_at?: string | null;
24114
+ };
22208
24115
  };
22209
24116
  };
22210
24117
  };
@@ -22389,21 +24296,21 @@ export interface operations {
22389
24296
  content: {
22390
24297
  "application/json": {
22391
24298
  data?: {
22392
- /** @example 377 */
24299
+ /** @example 401 */
22393
24300
  id?: number;
22394
24301
  /** @example 1 */
22395
24302
  rating?: number;
22396
24303
  /** @example Nice Listing */
22397
24304
  comment?: string;
22398
24305
  reviewer?: {
22399
- /** @example 20 */
24306
+ /** @example 25 */
22400
24307
  id?: number;
22401
- /** @example Suzanne Morgan */
24308
+ /** @example Jayden Ward */
22402
24309
  name?: string;
22403
24310
  };
22404
- /** @example 30 Apr 2026, 05:56 AM */
24311
+ /** @example 30 Apr 2026, 10:00 AM */
22405
24312
  created_at?: string;
22406
- /** @example 30 Apr 2026, 05:56 AM */
24313
+ /** @example 30 Apr 2026, 10:00 AM */
22407
24314
  updated_at?: string;
22408
24315
  };
22409
24316
  };
@@ -22447,21 +24354,21 @@ export interface operations {
22447
24354
  content: {
22448
24355
  "application/json": {
22449
24356
  data?: {
22450
- /** @example 378 */
24357
+ /** @example 402 */
22451
24358
  id?: number;
22452
24359
  /** @example 1 */
22453
24360
  rating?: number;
22454
24361
  /** @example Nice Listing */
22455
24362
  comment?: string;
22456
24363
  reviewer?: {
22457
- /** @example 13 */
24364
+ /** @example 12 */
22458
24365
  id?: number;
22459
- /** @example Matthew Campbell */
24366
+ /** @example Tara Marshall */
22460
24367
  name?: string;
22461
24368
  };
22462
- /** @example 30 Apr 2026, 05:56 AM */
24369
+ /** @example 30 Apr 2026, 10:00 AM */
22463
24370
  created_at?: string;
22464
- /** @example 30 Apr 2026, 05:56 AM */
24371
+ /** @example 30 Apr 2026, 10:00 AM */
22465
24372
  updated_at?: string;
22466
24373
  };
22467
24374
  };
@@ -22503,21 +24410,21 @@ export interface operations {
22503
24410
  content: {
22504
24411
  "application/json": {
22505
24412
  data?: {
22506
- /** @example 379 */
24413
+ /** @example 403 */
22507
24414
  id?: number;
22508
24415
  /** @example 1 */
22509
24416
  rating?: number;
22510
24417
  /** @example Nice Listing */
22511
24418
  comment?: string;
22512
24419
  reviewer?: {
22513
- /** @example 17 */
24420
+ /** @example 25 */
22514
24421
  id?: number;
22515
- /** @example Hannah Ross */
24422
+ /** @example Jayden Ward */
22516
24423
  name?: string;
22517
24424
  };
22518
- /** @example 30 Apr 2026, 05:56 AM */
24425
+ /** @example 30 Apr 2026, 10:00 AM */
22519
24426
  created_at?: string;
22520
- /** @example 30 Apr 2026, 05:56 AM */
24427
+ /** @example 30 Apr 2026, 10:00 AM */
22521
24428
  updated_at?: string;
22522
24429
  };
22523
24430
  };
@@ -22544,21 +24451,21 @@ export interface operations {
22544
24451
  content: {
22545
24452
  "application/json": {
22546
24453
  data?: {
22547
- /** @example 380 */
24454
+ /** @example 404 */
22548
24455
  id?: number;
22549
24456
  /** @example 1 */
22550
24457
  rating?: number;
22551
24458
  /** @example Nice Listing */
22552
24459
  comment?: string;
22553
24460
  reviewer?: {
22554
- /** @example 1 */
24461
+ /** @example 20 */
22555
24462
  id?: number;
22556
- /** @example System Admin */
24463
+ /** @example Suzanne Morgan */
22557
24464
  name?: string;
22558
24465
  };
22559
- /** @example 30 Apr 2026, 05:56 AM */
24466
+ /** @example 30 Apr 2026, 10:00 AM */
22560
24467
  created_at?: string;
22561
- /** @example 30 Apr 2026, 05:56 AM */
24468
+ /** @example 30 Apr 2026, 10:00 AM */
22562
24469
  updated_at?: string;
22563
24470
  };
22564
24471
  };
@@ -22585,7 +24492,7 @@ export interface operations {
22585
24492
  content: {
22586
24493
  "application/json": {
22587
24494
  data?: {
22588
- /** @example 4ff2b6c6-1335-46fd-bd06-bb919ad8399b */
24495
+ /** @example c48ee03a-4653-4091-9008-4cb7809e7ba2 */
22589
24496
  uid?: string;
22590
24497
  /** @example 1 */
22591
24498
  listing_id?: number;
@@ -22593,15 +24500,15 @@ export interface operations {
22593
24500
  landlord_id?: number;
22594
24501
  /** @example 2 */
22595
24502
  tenant_id?: number;
22596
- /** @example 1968.97 */
24503
+ /** @example 4881.50 */
22597
24504
  rent_amount?: string;
22598
- /** @example 661.35 */
24505
+ /** @example 2151.17 */
22599
24506
  deposit_amount?: string;
22600
- /** @example agreement_signed */
24507
+ /** @example offer_accepted */
22601
24508
  state?: string;
22602
- /** @example 2025-11-02T00:00:00.000000Z */
24509
+ /** @example 2025-11-05T00:00:00.000000Z */
22603
24510
  start_date?: string;
22604
- /** @example 2026-11-02T00:00:00.000000Z */
24511
+ /** @example 2026-11-05T00:00:00.000000Z */
22605
24512
  end_date?: string;
22606
24513
  /** @example false */
22607
24514
  is_periodic?: boolean;
@@ -22609,7 +24516,7 @@ export interface operations {
22609
24516
  company_name?: string | null;
22610
24517
  /** @example null */
22611
24518
  company_registration_number?: string | null;
22612
- /** @example 2026-04-30T05:56:38.000000Z */
24519
+ /** @example 2026-04-30T10:00:45.000000Z */
22613
24520
  created_at?: string;
22614
24521
  /** @example [] */
22615
24522
  compliances?: unknown[];
@@ -22686,7 +24593,7 @@ export interface operations {
22686
24593
  content: {
22687
24594
  "application/json": {
22688
24595
  data?: {
22689
- /** @example 0bcb6377-7007-4aac-a61b-e105c8fbb63d */
24596
+ /** @example 9ea16325-a100-4fe8-a647-280e6d5b6a95 */
22690
24597
  uid?: string;
22691
24598
  /** @example 1 */
22692
24599
  listing_id?: number;
@@ -22710,7 +24617,7 @@ export interface operations {
22710
24617
  company_name?: string | null;
22711
24618
  /** @example null */
22712
24619
  company_registration_number?: string | null;
22713
- /** @example 2026-04-30T05:56:38.000000Z */
24620
+ /** @example 2026-04-30T10:00:45.000000Z */
22714
24621
  created_at?: string;
22715
24622
  };
22716
24623
  };
@@ -23004,7 +24911,7 @@ export interface operations {
23004
24911
  * "changed_by_user_id": 3,
23005
24912
  * "changed_by_name": "Teagan King",
23006
24913
  * "comment": "Qui commodi incidunt iure odit.",
23007
- * "created_at": "2025-12-22T16:43:37.000000Z"
24914
+ * "created_at": "2025-12-22T20:47:44.000000Z"
23008
24915
  * },
23009
24916
  * {
23010
24917
  * "from_state": "pre_move_in_ready",
@@ -23012,7 +24919,7 @@ export interface operations {
23012
24919
  * "changed_by_user_id": 3,
23013
24920
  * "changed_by_name": "Teagan King",
23014
24921
  * "comment": null,
23015
- * "created_at": "2025-11-08T00:39:17.000000Z"
24922
+ * "created_at": "2025-11-08T04:43:24.000000Z"
23016
24923
  * }
23017
24924
  * ]
23018
24925
  */
@@ -23027,7 +24934,7 @@ export interface operations {
23027
24934
  changed_by_name?: string;
23028
24935
  /** @example Qui commodi incidunt iure odit. */
23029
24936
  comment?: string;
23030
- /** @example 2025-12-22T16:43:37.000000Z */
24937
+ /** @example 2025-12-22T20:47:44.000000Z */
23031
24938
  created_at?: string;
23032
24939
  }[];
23033
24940
  };
@@ -23412,7 +25319,7 @@ export interface operations {
23412
25319
  content: {
23413
25320
  "application/json": {
23414
25321
  data?: {
23415
- /** @example 7211a4c5-718b-45e1-aa0e-311b67be7955 */
25322
+ /** @example 26df7f44-82fa-47f8-80b9-095dfb4a2ca6 */
23416
25323
  uid?: string;
23417
25324
  /** @example Ms. Audra Crooks II */
23418
25325
  username?: string;
@@ -23442,7 +25349,7 @@ export interface operations {
23442
25349
  timezone?: string;
23443
25350
  /** @example Customer */
23444
25351
  user_type?: string;
23445
- /** @example 30 Apr 2026, 05:56 AM */
25352
+ /** @example 30 Apr 2026, 10:00 AM */
23446
25353
  created?: string;
23447
25354
  /** @example 0 seconds ago */
23448
25355
  email_verified_at?: string;
@@ -23705,7 +25612,7 @@ export interface operations {
23705
25612
  content: {
23706
25613
  "application/json": {
23707
25614
  data?: {
23708
- /** @example 74778aec-d667-4dbf-a3c7-8319c9bb8f7c */
25615
+ /** @example c4b2e8ab-cbee-49f5-bc3f-35539b939f06 */
23709
25616
  uid?: string;
23710
25617
  /** @example Morgan Hirthe */
23711
25618
  username?: string;
@@ -23735,7 +25642,7 @@ export interface operations {
23735
25642
  timezone?: string;
23736
25643
  /** @example Customer */
23737
25644
  user_type?: string;
23738
- /** @example 30 Apr 2026, 05:56 AM */
25645
+ /** @example 30 Apr 2026, 10:00 AM */
23739
25646
  created?: string;
23740
25647
  /** @example 0 seconds ago */
23741
25648
  email_verified_at?: string;
@@ -23807,7 +25714,7 @@ export interface operations {
23807
25714
  content: {
23808
25715
  "application/json": {
23809
25716
  data?: {
23810
- /** @example c4de3146-1ee7-4241-9338-c8f04ab20134 */
25717
+ /** @example ca3a0c25-c947-4b73-a043-67b3305951bd */
23811
25718
  uid?: string;
23812
25719
  /** @example Ms. Audra Crooks II */
23813
25720
  username?: string;
@@ -23837,7 +25744,7 @@ export interface operations {
23837
25744
  timezone?: string;
23838
25745
  /** @example Customer */
23839
25746
  user_type?: string;
23840
- /** @example 30 Apr 2026, 05:56 AM */
25747
+ /** @example 30 Apr 2026, 10:00 AM */
23841
25748
  created?: string;
23842
25749
  /** @example 0 seconds ago */
23843
25750
  email_verified_at?: string;
@@ -24071,13 +25978,13 @@ export interface operations {
24071
25978
  content: {
24072
25979
  "application/json": {
24073
25980
  data?: {
24074
- /** @example 7 */
25981
+ /** @example 0 */
24075
25982
  current_level?: number;
24076
25983
  /** @example 3 */
24077
25984
  completed_layers?: number;
24078
- /** @example 1 */
25985
+ /** @example 4 */
24079
25986
  pending_layers?: number;
24080
- /** @example 30 Apr 2026, 05:56 AM */
25987
+ /** @example 30 Apr 2026, 10:00 AM */
24081
25988
  last_calculated_at?: string;
24082
25989
  };
24083
25990
  };
@@ -24125,7 +26032,7 @@ export interface operations {
24125
26032
  completed_layers?: number;
24126
26033
  /** @example 4 */
24127
26034
  pending_layers?: number;
24128
- /** @example 30 Apr 2026, 05:56 AM */
26035
+ /** @example 30 Apr 2026, 10:00 AM */
24129
26036
  last_calculated_at?: string;
24130
26037
  };
24131
26038
  };
@@ -24159,14 +26066,14 @@ export interface operations {
24159
26066
  content: {
24160
26067
  "application/json": {
24161
26068
  data?: {
24162
- /** @example 539b07d0-92cf-4a24-93b2-0941838685b9 */
26069
+ /** @example 1b592e10-dd70-4782-9d97-0dcfb81be05e */
24163
26070
  wishlist_uid?: string;
24164
26071
  listing?: {
24165
- /** @example New For Sale Used Item draft • 30 Apr 2026, 5:56 AM */
26072
+ /** @example New For Sale Used Item draft • 30 Apr 2026, 10:00 AM */
24166
26073
  draft_name?: string;
24167
- /** @example LST-UIT-SAL-MOL2MSI4P0W */
26074
+ /** @example LST-UIT-SAL-MOLBCPZJQ5G */
24168
26075
  sku?: string;
24169
- /** @example 3dcebea4-9705-4497-8095-0b88defd9b46 */
26076
+ /** @example e0f3c03f-9514-4c7c-8e12-c48a8e076ae5 */
24170
26077
  uid?: string;
24171
26078
  /** @example Sale */
24172
26079
  listing_type?: string;
@@ -24553,7 +26460,7 @@ export interface operations {
24553
26460
  completed_layers?: number;
24554
26461
  /** @example 4 */
24555
26462
  pending_layers?: number;
24556
- /** @example 30 Apr 2026, 05:56 AM */
26463
+ /** @example 30 Apr 2026, 10:00 AM */
24557
26464
  last_calculated_at?: string;
24558
26465
  };
24559
26466
  };
@@ -24795,7 +26702,7 @@ export interface operations {
24795
26702
  completed_layers?: number;
24796
26703
  /** @example 4 */
24797
26704
  pending_layers?: number;
24798
- /** @example 30 Apr 2026, 05:56 AM */
26705
+ /** @example 30 Apr 2026, 10:00 AM */
24799
26706
  last_calculated_at?: string;
24800
26707
  };
24801
26708
  };