@justins-home/types 1.1.60 → 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 +2323 -446
  2. package/package.json +1 -1
@@ -79,6 +79,145 @@ export interface paths {
79
79
  patch?: never;
80
80
  trace?: never;
81
81
  };
82
+ "/api/v1/portal/admin/rental-applications": {
83
+ parameters: {
84
+ query?: never;
85
+ header?: never;
86
+ path?: never;
87
+ cookie?: never;
88
+ };
89
+ /**
90
+ * listAdminRentalApplications
91
+ * @description Retrieve all rental applications for the admin dashboard.
92
+ */
93
+ get: operations["listAdminRentalApplications"];
94
+ put?: never;
95
+ /**
96
+ * createAdminRentalApplication
97
+ * @description Create a rental application on behalf of a tenant as an explicit admin-assisted action.
98
+ */
99
+ post: operations["createAdminRentalApplication"];
100
+ delete?: never;
101
+ options?: never;
102
+ head?: never;
103
+ patch?: never;
104
+ trace?: never;
105
+ };
106
+ "/api/v1/portal/admin/rental-applications/{application_uid}": {
107
+ parameters: {
108
+ query?: never;
109
+ header?: never;
110
+ path: {
111
+ /** @description The UID of the rental application. */
112
+ application_uid: string;
113
+ };
114
+ cookie?: never;
115
+ };
116
+ /**
117
+ * fetchAdminRentalApplication
118
+ * @description Retrieve one rental application for admin review.
119
+ */
120
+ get: operations["fetchAdminRentalApplication"];
121
+ put?: never;
122
+ post?: never;
123
+ delete?: never;
124
+ options?: never;
125
+ head?: never;
126
+ patch?: never;
127
+ trace?: never;
128
+ };
129
+ "/api/v1/portal/admin/rental-applications/{application_uid}/approve": {
130
+ parameters: {
131
+ query?: never;
132
+ header?: never;
133
+ path: {
134
+ /** @description The UID of the rental application. */
135
+ application_uid: string;
136
+ };
137
+ cookie?: never;
138
+ };
139
+ get?: never;
140
+ put?: never;
141
+ /**
142
+ * approveAdminRentalApplication
143
+ * @description Approve a pending rental application as an admin oversight action.
144
+ */
145
+ post: operations["approveAdminRentalApplication"];
146
+ delete?: never;
147
+ options?: never;
148
+ head?: never;
149
+ patch?: never;
150
+ trace?: never;
151
+ };
152
+ "/api/v1/portal/admin/rental-applications/{application_uid}/reject": {
153
+ parameters: {
154
+ query?: never;
155
+ header?: never;
156
+ path: {
157
+ /** @description The UID of the rental application. */
158
+ application_uid: string;
159
+ };
160
+ cookie?: never;
161
+ };
162
+ get?: never;
163
+ put?: never;
164
+ /**
165
+ * rejectAdminRentalApplication
166
+ * @description Reject a pending rental application as an admin oversight action.
167
+ */
168
+ post: operations["rejectAdminRentalApplication"];
169
+ delete?: never;
170
+ options?: never;
171
+ head?: never;
172
+ patch?: never;
173
+ trace?: never;
174
+ };
175
+ "/api/v1/portal/admin/rental-applications/{application_uid}/cancel": {
176
+ parameters: {
177
+ query?: never;
178
+ header?: never;
179
+ path: {
180
+ /** @description The UID of the rental application. */
181
+ application_uid: string;
182
+ };
183
+ cookie?: never;
184
+ };
185
+ get?: never;
186
+ put?: never;
187
+ /**
188
+ * cancelAdminRentalApplication
189
+ * @description Administratively cancel a pending or approved rental application.
190
+ */
191
+ post: operations["cancelAdminRentalApplication"];
192
+ delete?: never;
193
+ options?: never;
194
+ head?: never;
195
+ patch?: never;
196
+ trace?: never;
197
+ };
198
+ "/api/v1/portal/admin/rental-applications/{application_uid}/convert-to-tenancy": {
199
+ parameters: {
200
+ query?: never;
201
+ header?: never;
202
+ path: {
203
+ /** @description The UID of the rental application. */
204
+ application_uid: string;
205
+ };
206
+ cookie?: never;
207
+ };
208
+ get?: never;
209
+ put?: never;
210
+ /**
211
+ * convertAdminRentalApplicationToTenancy
212
+ * @description Convert an approved rental application into a tenancy as an admin oversight action.
213
+ */
214
+ post: operations["convertAdminRentalApplicationToTenancy"];
215
+ delete?: never;
216
+ options?: never;
217
+ head?: never;
218
+ patch?: never;
219
+ trace?: never;
220
+ };
82
221
  "/api/v1/portal/admin/dashboard/stats": {
83
222
  parameters: {
84
223
  query?: never;
@@ -3715,6 +3854,99 @@ export interface paths {
3715
3854
  patch?: never;
3716
3855
  trace?: never;
3717
3856
  };
3857
+ "/api/v1/portal/landlord/rental-applications": {
3858
+ parameters: {
3859
+ query?: never;
3860
+ header?: never;
3861
+ path?: never;
3862
+ cookie?: never;
3863
+ };
3864
+ /**
3865
+ * listLandlordRentalApplications
3866
+ * @description Retrieve rental applications for listings owned by the authenticated landlord.
3867
+ */
3868
+ get: operations["listLandlordRentalApplications"];
3869
+ put?: never;
3870
+ /**
3871
+ * createLandlordRentalApplication
3872
+ * @description Create a rental application on behalf of a tenant for one of the landlord's listings.
3873
+ */
3874
+ post: operations["createLandlordRentalApplication"];
3875
+ delete?: never;
3876
+ options?: never;
3877
+ head?: never;
3878
+ patch?: never;
3879
+ trace?: never;
3880
+ };
3881
+ "/api/v1/portal/landlord/rental-applications/{application_uid}/approve": {
3882
+ parameters: {
3883
+ query?: never;
3884
+ header?: never;
3885
+ path: {
3886
+ /** @description The UID of the rental application. */
3887
+ application_uid: string;
3888
+ };
3889
+ cookie?: never;
3890
+ };
3891
+ get?: never;
3892
+ put?: never;
3893
+ /**
3894
+ * approveLandlordRentalApplication
3895
+ * @description Approve a pending rental application for a listing owned by the authenticated landlord.
3896
+ */
3897
+ post: operations["approveLandlordRentalApplication"];
3898
+ delete?: never;
3899
+ options?: never;
3900
+ head?: never;
3901
+ patch?: never;
3902
+ trace?: never;
3903
+ };
3904
+ "/api/v1/portal/landlord/rental-applications/{application_uid}/reject": {
3905
+ parameters: {
3906
+ query?: never;
3907
+ header?: never;
3908
+ path: {
3909
+ /** @description The UID of the rental application. */
3910
+ application_uid: string;
3911
+ };
3912
+ cookie?: never;
3913
+ };
3914
+ get?: never;
3915
+ put?: never;
3916
+ /**
3917
+ * rejectLandlordRentalApplication
3918
+ * @description Reject a pending rental application for a listing owned by the authenticated landlord.
3919
+ */
3920
+ post: operations["rejectLandlordRentalApplication"];
3921
+ delete?: never;
3922
+ options?: never;
3923
+ head?: never;
3924
+ patch?: never;
3925
+ trace?: never;
3926
+ };
3927
+ "/api/v1/portal/landlord/rental-applications/{application_uid}/convert-to-tenancy": {
3928
+ parameters: {
3929
+ query?: never;
3930
+ header?: never;
3931
+ path: {
3932
+ /** @description The UID of the rental application. */
3933
+ application_uid: string;
3934
+ };
3935
+ cookie?: never;
3936
+ };
3937
+ get?: never;
3938
+ put?: never;
3939
+ /**
3940
+ * convertLandlordRentalApplicationToTenancy
3941
+ * @description Convert an approved rental application into a tenancy record.
3942
+ */
3943
+ post: operations["convertLandlordRentalApplicationToTenancy"];
3944
+ delete?: never;
3945
+ options?: never;
3946
+ head?: never;
3947
+ patch?: never;
3948
+ trace?: never;
3949
+ };
3718
3950
  "/api/v1/portal/landlord/listing": {
3719
3951
  parameters: {
3720
3952
  query?: never;
@@ -4839,6 +5071,92 @@ export interface paths {
4839
5071
  patch?: never;
4840
5072
  trace?: never;
4841
5073
  };
5074
+ "/api/v1/public/applications": {
5075
+ parameters: {
5076
+ query?: never;
5077
+ header?: never;
5078
+ path?: never;
5079
+ cookie?: never;
5080
+ };
5081
+ get?: never;
5082
+ put?: never;
5083
+ /**
5084
+ * createRentalApplications
5085
+ * @description Submit a rental application for a published long-term rental property listing.
5086
+ */
5087
+ post: operations["createRentalApplications"];
5088
+ delete?: never;
5089
+ options?: never;
5090
+ head?: never;
5091
+ patch?: never;
5092
+ trace?: never;
5093
+ };
5094
+ "/api/v1/public/applications/my-applications": {
5095
+ parameters: {
5096
+ query?: never;
5097
+ header?: never;
5098
+ path?: never;
5099
+ cookie?: never;
5100
+ };
5101
+ /**
5102
+ * listMyRentalApplications
5103
+ * @description Retrieve rental applications submitted for the authenticated tenant.
5104
+ */
5105
+ get: operations["listMyRentalApplications"];
5106
+ put?: never;
5107
+ post?: never;
5108
+ delete?: never;
5109
+ options?: never;
5110
+ head?: never;
5111
+ patch?: never;
5112
+ trace?: never;
5113
+ };
5114
+ "/api/v1/public/applications/{application_uid}": {
5115
+ parameters: {
5116
+ query?: never;
5117
+ header?: never;
5118
+ path: {
5119
+ /** @description The UID of the rental application. */
5120
+ application_uid: string;
5121
+ };
5122
+ cookie?: never;
5123
+ };
5124
+ /**
5125
+ * fetchMyRentalApplications
5126
+ * @description Retrieve one rental application owned by the authenticated tenant.
5127
+ */
5128
+ get: operations["fetchMyRentalApplications"];
5129
+ put?: never;
5130
+ post?: never;
5131
+ delete?: never;
5132
+ options?: never;
5133
+ head?: never;
5134
+ patch?: never;
5135
+ trace?: never;
5136
+ };
5137
+ "/api/v1/public/applications/{application_uid}/withdraw": {
5138
+ parameters: {
5139
+ query?: never;
5140
+ header?: never;
5141
+ path: {
5142
+ /** @description The UID of the rental application. */
5143
+ application_uid: string;
5144
+ };
5145
+ cookie?: never;
5146
+ };
5147
+ get?: never;
5148
+ put?: never;
5149
+ /**
5150
+ * withdrawRentalApplications
5151
+ * @description Withdraw a pending rental application submitted by the authenticated tenant.
5152
+ */
5153
+ post: operations["withdrawRentalApplications"];
5154
+ delete?: never;
5155
+ options?: never;
5156
+ head?: never;
5157
+ patch?: never;
5158
+ trace?: never;
5159
+ };
4842
5160
  "/api/v1/public/review/fetch-all": {
4843
5161
  parameters: {
4844
5162
  query?: never;
@@ -5761,7 +6079,7 @@ export interface operations {
5761
6079
  content: {
5762
6080
  "application/json": {
5763
6081
  data?: {
5764
- /** @example e5ea8d05-b408-454f-8ae1-8b9a05adb532 */
6082
+ /** @example 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, 06:38 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 ed1525ad-390e-4e4f-a451-860b7ba518c9 */
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, 06:38 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, 6:38 AM */
8088
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
7156
8089
  draft_name?: string;
7157
- /** @example LST-PRP-LTR-MOL44XXAAKX */
8090
+ /** @example LST-PRP-LTR-MOLBCPBLQGZ */
7158
8091
  sku?: string;
7159
- /** @example 97c1b45c-8246-401e-b325-eb9b5f78f4a8 */
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. */
@@ -8568,7 +9501,7 @@ export interface operations {
8568
9501
  content: {
8569
9502
  "application/json": {
8570
9503
  /**
8571
- * @example Dormant
9504
+ * @example Unverified
8572
9505
  * @enum {string}
8573
9506
  */
8574
9507
  status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
@@ -8583,7 +9516,7 @@ export interface operations {
8583
9516
  content: {
8584
9517
  "application/json": {
8585
9518
  data?: {
8586
- /** @example 2776f773-bc0f-489c-a680-f9ccc035646c */
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, 06:38 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, 6:38 AM */
10258
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
9326
10259
  draft_name?: string;
9327
- /** @example LST-PRP-LTR-MOL44XZZW3F */
10260
+ /** @example LST-PRP-LTR-MOLBCPE8CAQ */
9328
10261
  sku?: string;
9329
- /** @example b5c4b029-7b1c-4443-81bb-754e8ab9143b */
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 2cc236a4-55f4-461e-b9a1-d1fe9fe35da5 */
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, 6:38 AM",
10077
- * "sku": "LST-UIT-SAL-MOL44Y1JCPM",
10078
- * "uid": "f6cc4fd3-ae61-4327-927b-895c21060d9d",
10079
- * "listing_type": "Sale",
10080
- * "vertical": "Used Item",
10081
- * "arrangement_type": null,
10082
- * "arrangement_type_label": null,
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 For Rent Property draft • 30 Apr 2026, 6:38 AM",
10094
- * "sku": "LST-PRP-LTR-MOL44Y1LFHB",
10095
- * "uid": "e193d553-d280-44e1-ba4a-a5516a09efbd",
10096
- * "listing_type": "Rent",
10097
- * "vertical": "Property",
10098
- * "arrangement_type": "standard_residential",
10099
- * "arrangement_type_label": "Standard Residential",
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
11038
  * "published_since": null,
10104
11039
  * "is_visible": false,
10105
- * "summary": {
10106
- * "availability": null
10107
- * },
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, 6:38 AM */
11047
+ /** @example New Short Let Property draft • 30 Apr 2026, 10:00 AM */
10115
11048
  draft_name?: string;
10116
- /** @example LST-UIT-SAL-MOL44Y1JCPM */
11049
+ /** @example LST-PRP-SHL-MOLBCPFNKHT */
10117
11050
  sku?: string;
10118
- /** @example f6cc4fd3-ae61-4327-927b-895c21060d9d */
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, 6:38 AM */
11246
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
10312
11247
  draft_name?: string;
10313
- /** @example LST-PRP-LTR-MOL44Y1UZMI */
11248
+ /** @example LST-PRP-LTR-MOLBCPFYQ9V */
10314
11249
  sku?: string;
10315
- /** @example aa42e322-a519-4f5d-8821-c26441c28328 */
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, 6:38 AM */
11313
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
10379
11314
  draft_name?: string;
10380
- /** @example LST-PRP-LTR-MOL44Y20USN */
11315
+ /** @example LST-PRP-LTR-MOLBCPG3MOM */
10381
11316
  sku?: string;
10382
- /** @example 7d58166d-7b25-4144-9ed2-10ad705ad07f */
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, 6:38 AM */
11370
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
10436
11371
  draft_name?: string;
10437
- /** @example LST-PRP-LTR-MOL44Y25PFZ */
11372
+ /** @example LST-PRP-LTR-MOLBCPG9BVP */
10438
11373
  sku?: string;
10439
- /** @example 348eddb6-f565-4c7e-af94-1c90d01fe62d */
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, 6:38 AM */
11427
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
10493
11428
  draft_name?: string;
10494
- /** @example LST-PRP-LTR-MOL44Y2BGIB */
11429
+ /** @example LST-PRP-LTR-MOLBCPGGT9A */
10495
11430
  sku?: string;
10496
- /** @example 1b8534cc-415e-44c2-95bb-11073f99d766 */
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 256 */
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 257 */
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 258 */
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": 370,
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": 371,
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 370 */
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 372 */
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 373 */
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 374 */
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 159 */
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-30T06:38:45.000000Z */
12247
+ /** @example 2026-04-30T10:00:44.000000Z */
11313
12248
  created_at?: string;
11314
- /** @example 2026-04-30T06:38:45.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 160 */
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-30T06:38:45.000000Z */
12323
+ /** @example 2026-04-30T10:00:44.000000Z */
11389
12324
  created_at?: string;
11390
- /** @example 2026-04-30T06:38:45.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": "modi",
12657
- * "name": "quia",
12658
- * "description": "Reprehenderit nobis quo recusandae.",
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": "quasi",
12663
- * "name": "porro",
12664
- * "description": "Qui et ut consequatur.",
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 modi */
13605
+ /** @example nihil */
12671
13606
  key?: string;
12672
- /** @example quia */
13607
+ /** @example exercitationem */
12673
13608
  name?: string;
12674
- /** @example Reprehenderit nobis quo recusandae. */
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 ea357f6a-b39d-4b49-9815-914c26c2822b */
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, 08:37 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, 05:25 PM */
14865
+ /** @example 28 Jun 2026, 08:47 PM */
13931
14866
  next_inspection_date?: string;
13932
- /** @example 30 Apr 2026, 06:38 AM */
14867
+ /** @example 30 Apr 2026, 10:00 AM */
13933
14868
  created_at?: string;
13934
- /** @example 30 Apr 2026, 06:38 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 be356418-d120-4ef1-9a5d-7424e4b17055 */
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, 08:37 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, 05:25 PM */
14938
+ /** @example 28 Jun 2026, 08:47 PM */
14004
14939
  next_inspection_date?: string;
14005
- /** @example 30 Apr 2026, 06:38 AM */
14940
+ /** @example 30 Apr 2026, 10:00 AM */
14006
14941
  created_at?: string;
14007
- /** @example 30 Apr 2026, 06:38 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 6f8f2530-9a85-48a6-825a-8abe06f17d05 */
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, 06:03 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:57 AM */
15051
+ /** @example 02 Aug 2026, 05:19 AM */
14117
15052
  next_inspection_date?: string;
14118
- /** @example 30 Apr 2026, 06:38 AM */
15053
+ /** @example 30 Apr 2026, 10:00 AM */
14119
15054
  created_at?: string;
14120
- /** @example 30 Apr 2026, 06:38 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 1168d055-e509-4121-b851-c482d7890dcf */
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, 08:37 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, 05:25 PM */
15106
+ /** @example 28 Jun 2026, 08:47 PM */
14172
15107
  next_inspection_date?: string;
14173
- /** @example 30 Apr 2026, 06:38 AM */
15108
+ /** @example 30 Apr 2026, 10:00 AM */
14174
15109
  created_at?: string;
14175
- /** @example 30 Apr 2026, 06:38 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 c499cf02-942c-44af-bc33-2f192869aadd */
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, 06:03 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:57 AM */
15161
+ /** @example 02 Aug 2026, 05:19 AM */
14227
15162
  next_inspection_date?: string;
14228
- /** @example 30 Apr 2026, 06:38 AM */
15163
+ /** @example 30 Apr 2026, 10:00 AM */
14229
15164
  created_at?: string;
14230
- /** @example 30 Apr 2026, 06:38 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 e242c9c1-2b0e-4357-babb-156cd27c3ca4 */
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, 08:07 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, 04:31 PM */
15310
+ /** @example 01 May 2026, 01:44 PM */
14376
15311
  sla_deadline?: string;
14377
- /** @example 30 Apr 2026, 06:38 AM */
15312
+ /** @example 30 Apr 2026, 10:00 AM */
14378
15313
  created_at?: string;
14379
- /** @example 30 Apr 2026, 06:38 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 5cbf569c-22e2-4a41-acc7-5acc27fe8e33 */
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, 08:07 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, 04:31 PM */
15369
+ /** @example 01 May 2026, 07:53 PM */
14435
15370
  sla_deadline?: string;
14436
- /** @example 30 Apr 2026, 06:38 AM */
15371
+ /** @example 30 Apr 2026, 10:00 AM */
14437
15372
  created_at?: string;
14438
- /** @example 30 Apr 2026, 06:38 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 eed89295-2dd0-4cf0-9bdc-a5a7c510e6c9 */
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:52 PM */
15422
+ /** @example 23 Apr 2026, 09:14 PM */
14488
15423
  reported_at?: string;
14489
- /** @example 28 Apr 2026, 02:12 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, 07:34 PM */
15428
+ /** @example 01 May 2026, 10:56 PM */
14494
15429
  sla_deadline?: string;
14495
- /** @example 30 Apr 2026, 06:38 AM */
15430
+ /** @example 30 Apr 2026, 10:00 AM */
14496
15431
  created_at?: string;
14497
- /** @example 30 Apr 2026, 06:38 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 f96b7a56-96b9-42ff-8776-fd2454f94280 */
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:52 PM */
15481
+ /** @example 23 Apr 2026, 09:14 PM */
14547
15482
  reported_at?: string;
14548
- /** @example 28 Apr 2026, 02:12 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, 07:34 PM */
15487
+ /** @example 01 May 2026, 10:56 PM */
14553
15488
  sla_deadline?: string;
14554
- /** @example 30 Apr 2026, 06:38 AM */
15489
+ /** @example 30 Apr 2026, 10:00 AM */
14555
15490
  created_at?: string;
14556
- /** @example 30 Apr 2026, 06:38 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 d83ef09f-a948-4fc8-842e-dadc51a88dd5 */
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:52 PM */
15540
+ /** @example 23 Apr 2026, 09:14 PM */
14606
15541
  reported_at?: string;
14607
- /** @example 28 Apr 2026, 02:12 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, 07:34 PM */
15546
+ /** @example 01 May 2026, 10:56 PM */
14612
15547
  sla_deadline?: string;
14613
- /** @example 30 Apr 2026, 06:38 AM */
15548
+ /** @example 30 Apr 2026, 10:00 AM */
14614
15549
  created_at?: string;
14615
- /** @example 30 Apr 2026, 06:38 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 454 */
16260
+ /** @example 480 */
15316
16261
  id?: number;
15317
- /** @example APT-20260430-OERCMA */
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-30T06:38:45.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 455 */
16353
+ /** @example 481 */
15401
16354
  id?: number;
15402
- /** @example APT-20260430-INXLAL */
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-30T06:38:45.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 456 */
16752
+ /** @example 482 */
15766
16753
  id?: number;
15767
- /** @example APT-20260430-58H9ZL */
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-30T06:38:45.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 457 */
16845
+ /** @example 483 */
15851
16846
  id?: number;
15852
- /** @example APT-20260430-NXAGVL */
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-30T06:38:45.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 458 */
16938
+ /** @example 484 */
15936
16939
  id?: number;
15937
- /** @example APT-20260430-OKHHNH */
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-30T06:38:45.000000Z */
17004
+ /** @example 2026-04-30T10:00:45.000000Z */
15994
17005
  created_at?: string;
15995
17006
  };
15996
17007
  };
@@ -17045,7 +18056,7 @@ export interface operations {
17045
18056
  content: {
17046
18057
  "application/json": {
17047
18058
  data?: {
17048
- /** @example 26630001-b7c6-47a2-923c-2a825964bf6c */
18059
+ /** @example 96002704-d4e6-48bd-8d0e-04b2c15bbdb8 */
17049
18060
  uid?: string;
17050
18061
  /** @example Ms. Audra Crooks II */
17051
18062
  username?: string;
@@ -17075,7 +18086,7 @@ export interface operations {
17075
18086
  timezone?: string;
17076
18087
  /** @example Customer */
17077
18088
  user_type?: string;
17078
- /** @example 30 Apr 2026, 06:38 AM */
18089
+ /** @example 30 Apr 2026, 10:00 AM */
17079
18090
  created?: string;
17080
18091
  /** @example 0 seconds ago */
17081
18092
  email_verified_at?: string;
@@ -17544,7 +18555,7 @@ export interface operations {
17544
18555
  content: {
17545
18556
  "application/json": {
17546
18557
  data?: {
17547
- /** @example fb20a4cd-3a9b-40f8-aa08-95c610275a70 */
18558
+ /** @example 04a1a6ea-fc24-4ab7-ac85-8628dc0b3577 */
17548
18559
  uid?: string;
17549
18560
  /** @example Ms. Audra Crooks II */
17550
18561
  username?: string;
@@ -17574,7 +18585,7 @@ export interface operations {
17574
18585
  timezone?: string;
17575
18586
  /** @example Customer */
17576
18587
  user_type?: string;
17577
- /** @example 30 Apr 2026, 06:38 AM */
18588
+ /** @example 30 Apr 2026, 10:00 AM */
17578
18589
  created?: string;
17579
18590
  /** @example 0 seconds ago */
17580
18591
  email_verified_at?: string;
@@ -17656,10 +18667,166 @@ export interface operations {
17656
18667
  };
17657
18668
  };
17658
18669
  };
17659
- 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: {
17660
18819
  parameters: {
17661
18820
  query?: {
17662
- /** @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. */
17663
18830
  per_page?: number;
17664
18831
  };
17665
18832
  header?: never;
@@ -17669,23 +18836,63 @@ export interface operations {
17669
18836
  requestBody?: {
17670
18837
  content: {
17671
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;
17672
18874
  /**
17673
18875
  * @description Must be at least 1. Must not be greater than 100.
17674
- * @example 1
18876
+ * @example 7
17675
18877
  */
17676
18878
  per_page?: number | null;
18879
+ /**
18880
+ * @description Must be at least 1.
18881
+ * @example 66
18882
+ */
18883
+ page?: number | null;
17677
18884
  };
17678
18885
  };
17679
18886
  };
17680
18887
  responses: {
17681
- /** @description Retrieve landlord reserved bookings */
18888
+ /** @description Retrieve landlord rental applications */
17682
18889
  200: {
17683
18890
  headers: {
17684
18891
  [name: string]: unknown;
17685
18892
  };
17686
18893
  content: {
17687
18894
  "application/json": {
17688
- /** @example Reserved bookings fetched successfully */
18895
+ /** @example Rental applications fetched successfully */
17689
18896
  message?: string;
17690
18897
  /** @example null */
17691
18898
  event?: string | null;
@@ -17693,111 +18900,383 @@ export interface operations {
17693
18900
  /**
17694
18901
  * @example [
17695
18902
  * {
17696
- * "id": 12,
17697
- * "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,
17698
18915
  * "listing": {
17699
- * "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",
17700
18921
  * "cover": {
17701
18922
  * "uid": "lm_34fda1",
17702
18923
  * "media_type": "image/jpeg",
17703
- * "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",
17704
18925
  * "order_index": 0,
17705
18926
  * "is_cover": true
17706
- * },
17707
- * "details": {
17708
- * "address": "24 Windsor Court, London, SW1",
17709
- * "title": "24 Windsor Court",
17710
- * "type": "Rent"
17711
18927
  * }
17712
18928
  * },
17713
- * "guest": {
17714
- * "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
17715
- * "name": "Dominic Thomas",
17716
- * "email": "tenant3@justinshome.test",
17717
- * "avatar_path": null
18929
+ * "tenant": {
18930
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
18931
+ * "name": "Jane Tenant",
18932
+ * "email": "jane@example.com"
17718
18933
  * },
17719
- * "host": {
18934
+ * "landlord": {
17720
18935
  * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
17721
- * "name": "Alice Taylor",
17722
- * "email": "alice@example.com",
17723
- * "avatar_path": null
18936
+ * "name": "John Landlord",
18937
+ * "email": "john@example.com"
17724
18938
  * },
17725
- * "nights": 3,
17726
- * "status": "pending",
17727
- * "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
+ * }
17728
18946
  * }
17729
18947
  * ]
17730
18948
  */
17731
18949
  items?: {
17732
- /** @example 12 */
17733
- id?: number;
17734
- /** @example BKG-20260430-ABC123 */
17735
- 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;
17736
18970
  listing?: {
17737
18971
  /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
17738
- 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;
17739
18981
  cover?: {
17740
18982
  /** @example lm_34fda1 */
17741
18983
  uid?: string;
17742
18984
  /** @example image/jpeg */
17743
18985
  media_type?: string;
17744
- /** @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 */
17745
18987
  storage_path?: string;
17746
18988
  /** @example 0 */
17747
18989
  order_index?: number;
17748
18990
  /** @example true */
17749
18991
  is_cover?: boolean;
17750
18992
  };
17751
- details?: {
17752
- /** @example 24 Windsor Court, London, SW1 */
17753
- address?: string;
17754
- /** @example 24 Windsor Court */
17755
- title?: string;
17756
- /** @example Rent */
17757
- type?: string;
17758
- };
17759
18993
  };
17760
- guest?: {
17761
- /** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
18994
+ tenant?: {
18995
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
17762
18996
  uid?: string;
17763
- /** @example Dominic Thomas */
18997
+ /** @example Jane Tenant */
17764
18998
  name?: string;
17765
- /** @example tenant3@justinshome.test */
18999
+ /** @example jane@example.com */
17766
19000
  email?: string;
17767
- /** @example null */
17768
- avatar_path?: string | null;
17769
19001
  };
17770
- host?: {
19002
+ landlord?: {
17771
19003
  /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
17772
19004
  uid?: string;
17773
- /** @example Alice Taylor */
19005
+ /** @example John Landlord */
17774
19006
  name?: string;
17775
- /** @example alice@example.com */
19007
+ /** @example john@example.com */
17776
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;
17777
19015
  /** @example null */
17778
- 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;
17779
19021
  };
17780
- /** @example 3 */
17781
- 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?: {
17782
19204
  /** @example pending */
17783
- status?: string;
17784
- /** @example 450.00 */
17785
- total_price?: string;
17786
- }[];
17787
- pagination?: {
17788
- /** @example 1 */
17789
- current_page?: number;
17790
- /** @example 15 */
17791
- per_page?: number;
17792
- /** @example 1 */
17793
- total?: number;
17794
- /** @example 1 */
17795
- last_page?: number;
17796
- /** @example 1 */
17797
- from?: number;
17798
- /** @example 1 */
17799
- to?: number;
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;
17800
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;
19228
+ };
19229
+ };
19230
+ };
19231
+ };
19232
+ };
19233
+ };
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;
17801
19280
  };
17802
19281
  };
17803
19282
  };
@@ -17843,20 +19322,20 @@ export interface operations {
17843
19322
  content: {
17844
19323
  "application/json": {
17845
19324
  data?: {
17846
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
19325
+ /** @example New For Sale Used Item draft • 30 Apr 2026, 10:00 AM */
17847
19326
  draft_name?: string;
17848
- /** @example LST-PRP-LTR-MOL44XOOBEA */
19327
+ /** @example LST-UIT-SAL-MOLBCP3QWEE */
17849
19328
  sku?: string;
17850
- /** @example f29f318b-352b-498e-a8f2-bf10f333f1ad */
19329
+ /** @example cbd219b2-6e32-49f5-ba13-18e04de5825d */
17851
19330
  uid?: string;
17852
- /** @example Rent */
19331
+ /** @example Sale */
17853
19332
  listing_type?: string;
17854
- /** @example Property */
19333
+ /** @example Used Item */
17855
19334
  vertical?: string;
17856
- /** @example standard_residential */
17857
- arrangement_type?: string;
17858
- /** @example Standard Residential */
17859
- arrangement_type_label?: string;
19335
+ /** @example null */
19336
+ arrangement_type?: string | null;
19337
+ /** @example null */
19338
+ arrangement_type_label?: string | null;
17860
19339
  /** @example null */
17861
19340
  price?: string | null;
17862
19341
  /** @example draft */
@@ -17867,10 +19346,8 @@ export interface operations {
17867
19346
  published_since?: string | null;
17868
19347
  /** @example false */
17869
19348
  is_visible?: boolean;
17870
- summary?: {
17871
- /** @example null */
17872
- availability?: string | null;
17873
- };
19349
+ /** @example [] */
19350
+ summary?: unknown[];
17874
19351
  /** @example [] */
17875
19352
  workflow?: unknown[];
17876
19353
  /** @example [] */
@@ -17971,9 +19448,9 @@ export interface operations {
17971
19448
  /**
17972
19449
  * @example [
17973
19450
  * {
17974
- * "draft_name": "New For Rent Property draft • 30 Apr 2026, 6:38 AM",
17975
- * "sku": "LST-PRP-LTR-MOL44XPVWSY",
17976
- * "uid": "1bc53f7b-e029-4bae-bebd-5d34898269e6",
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",
17977
19454
  * "listing_type": "Rent",
17978
19455
  * "vertical": "Property",
17979
19456
  * "arrangement_type": "let_to_let",
@@ -17990,9 +19467,9 @@ export interface operations {
17990
19467
  * "media": []
17991
19468
  * },
17992
19469
  * {
17993
- * "draft_name": "New Short Let Property draft • 30 Apr 2026, 6:38 AM",
17994
- * "sku": "LST-PRP-SHL-MOL44XQ06HI",
17995
- * "uid": "28e44f9c-aea6-4c55-8900-d159c4e371f1",
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",
17996
19473
  * "listing_type": "Short Let",
17997
19474
  * "vertical": "Property",
17998
19475
  * "arrangement_type": "short_term_managed",
@@ -18011,11 +19488,11 @@ export interface operations {
18011
19488
  * ]
18012
19489
  */
18013
19490
  data?: {
18014
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
19491
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
18015
19492
  draft_name?: string;
18016
- /** @example LST-PRP-LTR-MOL44XPVWSY */
19493
+ /** @example LST-PRP-LTR-MOLBCP4DXGJ */
18017
19494
  sku?: string;
18018
- /** @example 1bc53f7b-e029-4bae-bebd-5d34898269e6 */
19495
+ /** @example 72731414-f22f-43bd-9dc6-2bca4a1d9372 */
18019
19496
  uid?: string;
18020
19497
  /** @example Rent */
18021
19498
  listing_type?: string;
@@ -18125,9 +19602,9 @@ export interface operations {
18125
19602
  /**
18126
19603
  * @example [
18127
19604
  * {
18128
- * "draft_name": "New For Rent Property draft • 30 Apr 2026, 6:38 AM",
18129
- * "sku": "LST-PRP-LTR-MOL44XQ7ABC",
18130
- * "uid": "2d2cc3b1-d228-4cc1-9fc5-40749a406138",
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",
18131
19608
  * "listing_type": "Rent",
18132
19609
  * "vertical": "Property",
18133
19610
  * "arrangement_type": "let_to_let",
@@ -18144,9 +19621,9 @@ export interface operations {
18144
19621
  * "media": []
18145
19622
  * },
18146
19623
  * {
18147
- * "draft_name": "New Short Let Property draft • 30 Apr 2026, 6:38 AM",
18148
- * "sku": "LST-PRP-SHL-MOL44XQCSCG",
18149
- * "uid": "5d8cbba1-e62e-4b30-96ee-412d049a7ffb",
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",
18150
19627
  * "listing_type": "Short Let",
18151
19628
  * "vertical": "Property",
18152
19629
  * "arrangement_type": "short_term_managed",
@@ -18165,11 +19642,11 @@ export interface operations {
18165
19642
  * ]
18166
19643
  */
18167
19644
  data?: {
18168
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
19645
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
18169
19646
  draft_name?: string;
18170
- /** @example LST-PRP-LTR-MOL44XQ7ABC */
19647
+ /** @example LST-PRP-LTR-MOLBCP4NDBB */
18171
19648
  sku?: string;
18172
- /** @example 2d2cc3b1-d228-4cc1-9fc5-40749a406138 */
19649
+ /** @example 6c8c4af4-7dd8-442a-a173-19163c4af76f */
18173
19650
  uid?: string;
18174
19651
  /** @example Rent */
18175
19652
  listing_type?: string;
@@ -19418,7 +20895,7 @@ export interface operations {
19418
20895
  content: {
19419
20896
  "application/json": {
19420
20897
  data?: {
19421
- /** @example af869e40-4a7a-4a12-b64e-158027891a6b */
20898
+ /** @example 93d65aae-0404-4872-ad29-320674ec5158 */
19422
20899
  uid?: string;
19423
20900
  /** @example photo */
19424
20901
  media_type?: string;
@@ -19567,11 +21044,11 @@ export interface operations {
19567
21044
  content: {
19568
21045
  "application/json": {
19569
21046
  data?: {
19570
- /** @example New For Rent Property draft • 30 Apr 2026, 6:38 AM */
21047
+ /** @example New For Rent Property draft • 30 Apr 2026, 10:00 AM */
19571
21048
  draft_name?: string;
19572
- /** @example LST-PRP-LTR-MOL44XSK1K3 */
21049
+ /** @example LST-PRP-LTR-MOLBCP6VHQP */
19573
21050
  sku?: string;
19574
- /** @example 24807ca8-0bd8-4d71-970f-ccefc47fb48b */
21051
+ /** @example 11c476ad-727d-438d-b402-1a2ed464e29a */
19575
21052
  uid?: string;
19576
21053
  /** @example Rent */
19577
21054
  listing_type?: string;
@@ -19731,7 +21208,7 @@ export interface operations {
19731
21208
  content: {
19732
21209
  "application/json": {
19733
21210
  data?: {
19734
- /** @example 9619f767-a135-41c6-ba71-b2a1ae2a5308 */
21211
+ /** @example 26644265-4a5c-4c0d-ac77-13c8e381a316 */
19735
21212
  uid?: string;
19736
21213
  /** @example null */
19737
21214
  compliances?: string | null;
@@ -19782,7 +21259,7 @@ export interface operations {
19782
21259
  content: {
19783
21260
  "application/json": {
19784
21261
  data?: {
19785
- /** @example 158 */
21262
+ /** @example 163 */
19786
21263
  id?: number;
19787
21264
  compliance?: {
19788
21265
  /** @example 1 */
@@ -19804,7 +21281,7 @@ export interface operations {
19804
21281
  reviewed_by?: number;
19805
21282
  /** @example null */
19806
21283
  reviewed_at?: string | null;
19807
- /** @example 2026-04-30T06:38:44.000000Z */
21284
+ /** @example 2026-04-30T10:00:44.000000Z */
19808
21285
  created_at?: string;
19809
21286
  };
19810
21287
  };
@@ -19859,22 +21336,22 @@ export interface operations {
19859
21336
  /**
19860
21337
  * @example [
19861
21338
  * {
19862
- * "uid": "ac4c345a-382f-4da9-ae02-8832c1f54b9a",
21339
+ * "uid": "fe4db5f0-82e3-400b-818e-7e887dd436ed",
19863
21340
  * "listing_id": 1,
19864
21341
  * "landlord_id": 2,
19865
21342
  * "tenant_id": 2,
19866
21343
  * "rent_amount": "4881.50",
19867
21344
  * "deposit_amount": "2151.17",
19868
21345
  * "state": "offer_accepted",
19869
- * "start_date": "2025-11-04T00:00:00.000000Z",
19870
- * "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",
19871
21348
  * "is_periodic": false,
19872
21349
  * "company_name": null,
19873
21350
  * "company_registration_number": null,
19874
- * "created_at": "2026-04-30T06:38:44.000000Z"
21351
+ * "created_at": "2026-04-30T10:00:44.000000Z"
19875
21352
  * },
19876
21353
  * {
19877
- * "uid": "c79d21cb-b345-4313-a486-011547e9bf4b",
21354
+ * "uid": "c697cbf5-2d74-4d8a-86a4-e50e8f9a1c12",
19878
21355
  * "listing_id": 1,
19879
21356
  * "landlord_id": 2,
19880
21357
  * "tenant_id": 2,
@@ -19886,12 +21363,12 @@ export interface operations {
19886
21363
  * "is_periodic": false,
19887
21364
  * "company_name": null,
19888
21365
  * "company_registration_number": null,
19889
- * "created_at": "2026-04-30T06:38:44.000000Z"
21366
+ * "created_at": "2026-04-30T10:00:44.000000Z"
19890
21367
  * }
19891
21368
  * ]
19892
21369
  */
19893
21370
  data?: {
19894
- /** @example ac4c345a-382f-4da9-ae02-8832c1f54b9a */
21371
+ /** @example fe4db5f0-82e3-400b-818e-7e887dd436ed */
19895
21372
  uid?: string;
19896
21373
  /** @example 1 */
19897
21374
  listing_id?: number;
@@ -19905,9 +21382,9 @@ export interface operations {
19905
21382
  deposit_amount?: string;
19906
21383
  /** @example offer_accepted */
19907
21384
  state?: string;
19908
- /** @example 2025-11-04T00:00:00.000000Z */
21385
+ /** @example 2025-11-05T00:00:00.000000Z */
19909
21386
  start_date?: string;
19910
- /** @example 2026-11-04T00:00:00.000000Z */
21387
+ /** @example 2026-11-05T00:00:00.000000Z */
19911
21388
  end_date?: string;
19912
21389
  /** @example false */
19913
21390
  is_periodic?: boolean;
@@ -19915,7 +21392,7 @@ export interface operations {
19915
21392
  company_name?: string | null;
19916
21393
  /** @example null */
19917
21394
  company_registration_number?: string | null;
19918
- /** @example 2026-04-30T06:38:44.000000Z */
21395
+ /** @example 2026-04-30T10:00:44.000000Z */
19919
21396
  created_at?: string;
19920
21397
  }[];
19921
21398
  links?: {
@@ -20002,22 +21479,22 @@ export interface operations {
20002
21479
  /**
20003
21480
  * @example [
20004
21481
  * {
20005
- * "uid": "aa0829c1-13ef-43fa-8fe4-d956c84b84ed",
21482
+ * "uid": "e96f9ce8-f96a-4d47-bdff-dc10d886a0bb",
20006
21483
  * "listing_id": 1,
20007
21484
  * "landlord_id": 2,
20008
21485
  * "tenant_id": 2,
20009
21486
  * "rent_amount": "4881.50",
20010
21487
  * "deposit_amount": "2151.17",
20011
21488
  * "state": "offer_accepted",
20012
- * "start_date": "2025-11-04T00:00:00.000000Z",
20013
- * "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",
20014
21491
  * "is_periodic": false,
20015
21492
  * "company_name": null,
20016
21493
  * "company_registration_number": null,
20017
- * "created_at": "2026-04-30T06:38:44.000000Z"
21494
+ * "created_at": "2026-04-30T10:00:44.000000Z"
20018
21495
  * },
20019
21496
  * {
20020
- * "uid": "26facc6d-b8a3-4d25-a111-301937bd160c",
21497
+ * "uid": "e6c30db8-af17-4327-b666-b1945501bbdb",
20021
21498
  * "listing_id": 1,
20022
21499
  * "landlord_id": 2,
20023
21500
  * "tenant_id": 2,
@@ -20029,12 +21506,12 @@ export interface operations {
20029
21506
  * "is_periodic": false,
20030
21507
  * "company_name": null,
20031
21508
  * "company_registration_number": null,
20032
- * "created_at": "2026-04-30T06:38:44.000000Z"
21509
+ * "created_at": "2026-04-30T10:00:44.000000Z"
20033
21510
  * }
20034
21511
  * ]
20035
21512
  */
20036
21513
  data?: {
20037
- /** @example aa0829c1-13ef-43fa-8fe4-d956c84b84ed */
21514
+ /** @example e96f9ce8-f96a-4d47-bdff-dc10d886a0bb */
20038
21515
  uid?: string;
20039
21516
  /** @example 1 */
20040
21517
  listing_id?: number;
@@ -20048,9 +21525,9 @@ export interface operations {
20048
21525
  deposit_amount?: string;
20049
21526
  /** @example offer_accepted */
20050
21527
  state?: string;
20051
- /** @example 2025-11-04T00:00:00.000000Z */
21528
+ /** @example 2025-11-05T00:00:00.000000Z */
20052
21529
  start_date?: string;
20053
- /** @example 2026-11-04T00:00:00.000000Z */
21530
+ /** @example 2026-11-05T00:00:00.000000Z */
20054
21531
  end_date?: string;
20055
21532
  /** @example false */
20056
21533
  is_periodic?: boolean;
@@ -20058,7 +21535,7 @@ export interface operations {
20058
21535
  company_name?: string | null;
20059
21536
  /** @example null */
20060
21537
  company_registration_number?: string | null;
20061
- /** @example 2026-04-30T06:38:44.000000Z */
21538
+ /** @example 2026-04-30T10:00:44.000000Z */
20062
21539
  created_at?: string;
20063
21540
  }[];
20064
21541
  links?: {
@@ -20165,7 +21642,7 @@ export interface operations {
20165
21642
  content: {
20166
21643
  "application/json": {
20167
21644
  data?: {
20168
- /** @example 235 */
21645
+ /** @example 245 */
20169
21646
  id?: number;
20170
21647
  compliance?: {
20171
21648
  /** @example 1 */
@@ -20185,9 +21662,9 @@ export interface operations {
20185
21662
  rejection_reason?: string | null;
20186
21663
  /** @example 1 */
20187
21664
  reviewed_by?: number;
20188
- /** @example 2026-04-30T06:38:44.000000Z */
21665
+ /** @example 2026-04-30T10:00:44.000000Z */
20189
21666
  reviewed_at?: string;
20190
- /** @example 2026-04-30T06:38:44.000000Z */
21667
+ /** @example 2026-04-30T10:00:44.000000Z */
20191
21668
  created_at?: string;
20192
21669
  };
20193
21670
  };
@@ -20214,7 +21691,7 @@ export interface operations {
20214
21691
  content: {
20215
21692
  "application/json": {
20216
21693
  data?: {
20217
- /** @example 236 */
21694
+ /** @example 246 */
20218
21695
  id?: number;
20219
21696
  compliance?: {
20220
21697
  /** @example 1 */
@@ -20234,9 +21711,9 @@ export interface operations {
20234
21711
  rejection_reason?: string | null;
20235
21712
  /** @example 1 */
20236
21713
  reviewed_by?: number;
20237
- /** @example 2026-04-30T06:38:44.000000Z */
21714
+ /** @example 2026-04-30T10:00:44.000000Z */
20238
21715
  reviewed_at?: string;
20239
- /** @example 2026-04-30T06:38:44.000000Z */
21716
+ /** @example 2026-04-30T10:00:44.000000Z */
20240
21717
  created_at?: string;
20241
21718
  };
20242
21719
  };
@@ -21368,37 +22845,37 @@ export interface operations {
21368
22845
  /**
21369
22846
  * @example [
21370
22847
  * {
21371
- * "uid": "216e075a-e2db-43d8-8818-0e7f1f2b3865",
22848
+ * "uid": "8c7a474e-be7c-4ebc-a0a3-4aa0c2ea1e21",
21372
22849
  * "tenancy_id": 1,
21373
22850
  * "title": "Quos velit et fugiat sunt nihil.",
21374
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.",
21375
22852
  * "status": "reported",
21376
22853
  * "priority": "emergency",
21377
- * "reported_at": "23 Apr 2026, 05:52 PM",
21378
- * "assigned_at": "28 Apr 2026, 02:12 PM",
22854
+ * "reported_at": "23 Apr 2026, 09:14 PM",
22855
+ * "assigned_at": "28 Apr 2026, 05:34 PM",
21379
22856
  * "completed_at": null,
21380
- * "sla_deadline": "01 May 2026, 07:34 PM",
21381
- * "created_at": "30 Apr 2026, 06:38 AM",
21382
- * "updated_at": "30 Apr 2026, 06:38 AM"
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"
21383
22860
  * },
21384
22861
  * {
21385
- * "uid": "786ee815-91ef-4497-bd7b-cceb2aeee9e6",
22862
+ * "uid": "74c3c721-fe18-4102-9d27-cfb06d0265c7",
21386
22863
  * "tenancy_id": 1,
21387
22864
  * "title": "Fugit deleniti distinctio eum doloremque.",
21388
22865
  * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
21389
22866
  * "status": "completed",
21390
22867
  * "priority": "normal",
21391
- * "reported_at": "26 Apr 2026, 06:30 AM",
22868
+ * "reported_at": "26 Apr 2026, 09:52 AM",
21392
22869
  * "assigned_at": null,
21393
22870
  * "completed_at": null,
21394
- * "sla_deadline": "03 May 2026, 03:34 AM",
21395
- * "created_at": "30 Apr 2026, 06:38 AM",
21396
- * "updated_at": "30 Apr 2026, 06:38 AM"
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"
21397
22874
  * }
21398
22875
  * ]
21399
22876
  */
21400
22877
  data?: {
21401
- /** @example 216e075a-e2db-43d8-8818-0e7f1f2b3865 */
22878
+ /** @example 8c7a474e-be7c-4ebc-a0a3-4aa0c2ea1e21 */
21402
22879
  uid?: string;
21403
22880
  /** @example 1 */
21404
22881
  tenancy_id?: number;
@@ -21410,17 +22887,17 @@ export interface operations {
21410
22887
  status?: string;
21411
22888
  /** @example emergency */
21412
22889
  priority?: string;
21413
- /** @example 23 Apr 2026, 05:52 PM */
22890
+ /** @example 23 Apr 2026, 09:14 PM */
21414
22891
  reported_at?: string;
21415
- /** @example 28 Apr 2026, 02:12 PM */
22892
+ /** @example 28 Apr 2026, 05:34 PM */
21416
22893
  assigned_at?: string;
21417
22894
  /** @example null */
21418
22895
  completed_at?: string | null;
21419
- /** @example 01 May 2026, 07:34 PM */
22896
+ /** @example 01 May 2026, 10:56 PM */
21420
22897
  sla_deadline?: string;
21421
- /** @example 30 Apr 2026, 06:38 AM */
22898
+ /** @example 30 Apr 2026, 10:00 AM */
21422
22899
  created_at?: string;
21423
- /** @example 30 Apr 2026, 06:38 AM */
22900
+ /** @example 30 Apr 2026, 10:00 AM */
21424
22901
  updated_at?: string;
21425
22902
  }[];
21426
22903
  links?: {
@@ -21536,13 +23013,13 @@ export interface operations {
21536
23013
  };
21537
23014
  } | {
21538
23015
  data?: {
21539
- /** @example c54a7333-5228-4e7a-a6a4-a2bfe402319b */
23016
+ /** @example 32179884-67d5-4f9a-81b4-91dea38eeff3 */
21540
23017
  uid?: string;
21541
23018
  /** @example image */
21542
23019
  file_type?: string;
21543
23020
  /** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
21544
23021
  url?: string;
21545
- /** @example 2026-04-30T06:38:45.000000Z */
23022
+ /** @example 2026-04-30T10:00:45.000000Z */
21546
23023
  created_at?: string;
21547
23024
  };
21548
23025
  };
@@ -21587,7 +23064,7 @@ export interface operations {
21587
23064
  content: {
21588
23065
  "application/json": {
21589
23066
  data?: {
21590
- /** @example 166 */
23067
+ /** @example 171 */
21591
23068
  id?: number;
21592
23069
  /** @example property_inquiry */
21593
23070
  type?: string;
@@ -21603,7 +23080,7 @@ export interface operations {
21603
23080
  };
21604
23081
  /** @example null */
21605
23082
  last_message_at?: string | null;
21606
- /** @example 2026-04-30T06:38:45.000000Z */
23083
+ /** @example 2026-04-30T10:00:45.000000Z */
21607
23084
  created_at?: string;
21608
23085
  };
21609
23086
  };
@@ -22014,7 +23491,7 @@ export interface operations {
22014
23491
  };
22015
23492
  content: {
22016
23493
  "application/json": {
22017
- /** @example 1e171ada-37f7-47d0-9610-e453a20f8923 */
23494
+ /** @example 0131c0ff-0b40-460e-97e8-3b94a22feb13 */
22018
23495
  id?: string;
22019
23496
  /** @example APPOINTMENT_CREATED */
22020
23497
  type?: string;
@@ -22026,7 +23503,7 @@ export interface operations {
22026
23503
  data?: unknown[];
22027
23504
  /** @example null */
22028
23505
  read_at?: string | null;
22029
- /** @example 2026-04-30T06:38:45.000000Z */
23506
+ /** @example 2026-04-30T10:00:45.000000Z */
22030
23507
  created_at?: string;
22031
23508
  };
22032
23509
  };
@@ -22116,90 +23593,469 @@ export interface operations {
22116
23593
  };
22117
23594
  };
22118
23595
  };
22119
- 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: {
22120
23789
  parameters: {
22121
- 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
+ };
22122
23800
  header?: never;
22123
23801
  path?: never;
22124
23802
  cookie?: never;
22125
23803
  };
22126
- 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
+ };
22127
23855
  responses: {
23856
+ /** @description Retrieve tenant rental applications */
22128
23857
  200: {
22129
23858
  headers: {
22130
23859
  [name: string]: unknown;
22131
23860
  };
22132
23861
  content: {
22133
23862
  "application/json": {
23863
+ /** @example Rental applications fetched successfully */
23864
+ message?: string;
23865
+ /** @example null */
23866
+ event?: string | null;
22134
23867
  data?: {
22135
- /** @example aut */
22136
- key?: string;
22137
- /** @example adipisci */
22138
- name?: string;
22139
- /** @example soft */
22140
- enforcement_mode?: string;
22141
- /** @example Landlord */
22142
- user_type?: string;
22143
- /** @example true */
22144
- is_active?: boolean;
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
+ };
22145
24005
  };
22146
24006
  };
22147
24007
  };
22148
24008
  };
22149
24009
  };
22150
24010
  };
22151
- myCapabilitiesPlan: {
24011
+ fetchMyRentalApplications: {
22152
24012
  parameters: {
22153
24013
  query?: never;
22154
24014
  header?: never;
22155
- path?: never;
24015
+ path: {
24016
+ /** @description The UID of the rental application. */
24017
+ application_uid: string;
24018
+ };
22156
24019
  cookie?: never;
22157
24020
  };
22158
24021
  requestBody?: never;
22159
24022
  responses: {
22160
- /** @description capabilities retrieved successfully */
22161
24023
  200: {
22162
24024
  headers: {
22163
24025
  [name: string]: unknown;
22164
24026
  };
22165
24027
  content: {
22166
24028
  "application/json": {
22167
- /** @example capabilities retrieved successfully */
22168
- message?: string;
22169
- /** @example null */
22170
- event?: string | null;
22171
24029
  data?: {
22172
- create_listing?: {
22173
- /** @example Creating Listing */
22174
- name?: string;
22175
- /** @example Allow user to publish listings */
22176
- description?: string;
22177
- /** @example false */
22178
- allowed?: boolean;
22179
- /** @example Required verification not completed */
22180
- reason?: string;
22181
- /**
22182
- * @example [
22183
- * "phone_verified"
22184
- * ]
22185
- */
22186
- missing?: string[];
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;
22187
24039
  };
22188
- publish_listing?: {
22189
- /** @example Publish Listing */
22190
- 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;
22191
24053
  /** @example null */
22192
- description?: string | null;
22193
- /** @example false */
22194
- allowed?: boolean;
22195
- /** @example Required verification not completed */
22196
- reason?: string;
22197
- /**
22198
- * @example [
22199
- * "phone_verified"
22200
- * ]
22201
- */
22202
- missing?: string[];
24054
+ approved_at?: string | null;
24055
+ /** @example null */
24056
+ rejected_at?: string | null;
24057
+ /** @example null */
24058
+ converted_to_tenancy_at?: string | null;
22203
24059
  };
22204
24060
  };
22205
24061
  };
@@ -22207,34 +24063,55 @@ export interface operations {
22207
24063
  };
22208
24064
  };
22209
24065
  };
22210
- checkCapabilityPlan: {
24066
+ withdrawRentalApplications: {
22211
24067
  parameters: {
22212
24068
  query?: never;
22213
24069
  header?: never;
22214
24070
  path: {
22215
- /** @description The capability to check. Example create_listing */
22216
- capability: string;
24071
+ /** @description The UID of the rental application. */
24072
+ application_uid: string;
22217
24073
  };
22218
24074
  cookie?: never;
22219
24075
  };
22220
24076
  requestBody?: never;
22221
24077
  responses: {
22222
- /** @description Check completed */
22223
24078
  200: {
22224
24079
  headers: {
22225
24080
  [name: string]: unknown;
22226
24081
  };
22227
24082
  content: {
22228
24083
  "application/json": {
22229
- /** @example Check completed */
22230
- message?: string;
22231
- /** @example null */
22232
- event?: string | null;
22233
24084
  data?: {
22234
- /** @example */
22235
- capability?: string;
22236
- /** @example */
22237
- 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
+ };
22238
24115
  };
22239
24116
  };
22240
24117
  };
@@ -22419,21 +24296,21 @@ export interface operations {
22419
24296
  content: {
22420
24297
  "application/json": {
22421
24298
  data?: {
22422
- /** @example 381 */
24299
+ /** @example 401 */
22423
24300
  id?: number;
22424
24301
  /** @example 1 */
22425
24302
  rating?: number;
22426
24303
  /** @example Nice Listing */
22427
24304
  comment?: string;
22428
24305
  reviewer?: {
22429
- /** @example 3 */
24306
+ /** @example 25 */
22430
24307
  id?: number;
22431
- /** @example Teagan King */
24308
+ /** @example Jayden Ward */
22432
24309
  name?: string;
22433
24310
  };
22434
- /** @example 30 Apr 2026, 06:38 AM */
24311
+ /** @example 30 Apr 2026, 10:00 AM */
22435
24312
  created_at?: string;
22436
- /** @example 30 Apr 2026, 06:38 AM */
24313
+ /** @example 30 Apr 2026, 10:00 AM */
22437
24314
  updated_at?: string;
22438
24315
  };
22439
24316
  };
@@ -22477,21 +24354,21 @@ export interface operations {
22477
24354
  content: {
22478
24355
  "application/json": {
22479
24356
  data?: {
22480
- /** @example 382 */
24357
+ /** @example 402 */
22481
24358
  id?: number;
22482
24359
  /** @example 1 */
22483
24360
  rating?: number;
22484
24361
  /** @example Nice Listing */
22485
24362
  comment?: string;
22486
24363
  reviewer?: {
22487
- /** @example 3 */
24364
+ /** @example 12 */
22488
24365
  id?: number;
22489
- /** @example Teagan King */
24366
+ /** @example Tara Marshall */
22490
24367
  name?: string;
22491
24368
  };
22492
- /** @example 30 Apr 2026, 06:38 AM */
24369
+ /** @example 30 Apr 2026, 10:00 AM */
22493
24370
  created_at?: string;
22494
- /** @example 30 Apr 2026, 06:38 AM */
24371
+ /** @example 30 Apr 2026, 10:00 AM */
22495
24372
  updated_at?: string;
22496
24373
  };
22497
24374
  };
@@ -22533,21 +24410,21 @@ export interface operations {
22533
24410
  content: {
22534
24411
  "application/json": {
22535
24412
  data?: {
22536
- /** @example 383 */
24413
+ /** @example 403 */
22537
24414
  id?: number;
22538
24415
  /** @example 1 */
22539
24416
  rating?: number;
22540
24417
  /** @example Nice Listing */
22541
24418
  comment?: string;
22542
24419
  reviewer?: {
22543
- /** @example 18 */
24420
+ /** @example 25 */
22544
24421
  id?: number;
22545
- /** @example Wayne Davies */
24422
+ /** @example Jayden Ward */
22546
24423
  name?: string;
22547
24424
  };
22548
- /** @example 30 Apr 2026, 06:38 AM */
24425
+ /** @example 30 Apr 2026, 10:00 AM */
22549
24426
  created_at?: string;
22550
- /** @example 30 Apr 2026, 06:38 AM */
24427
+ /** @example 30 Apr 2026, 10:00 AM */
22551
24428
  updated_at?: string;
22552
24429
  };
22553
24430
  };
@@ -22574,21 +24451,21 @@ export interface operations {
22574
24451
  content: {
22575
24452
  "application/json": {
22576
24453
  data?: {
22577
- /** @example 384 */
24454
+ /** @example 404 */
22578
24455
  id?: number;
22579
24456
  /** @example 1 */
22580
24457
  rating?: number;
22581
24458
  /** @example Nice Listing */
22582
24459
  comment?: string;
22583
24460
  reviewer?: {
22584
- /** @example 24 */
24461
+ /** @example 20 */
22585
24462
  id?: number;
22586
- /** @example Ethan Green */
24463
+ /** @example Suzanne Morgan */
22587
24464
  name?: string;
22588
24465
  };
22589
- /** @example 30 Apr 2026, 06:38 AM */
24466
+ /** @example 30 Apr 2026, 10:00 AM */
22590
24467
  created_at?: string;
22591
- /** @example 30 Apr 2026, 06:38 AM */
24468
+ /** @example 30 Apr 2026, 10:00 AM */
22592
24469
  updated_at?: string;
22593
24470
  };
22594
24471
  };
@@ -22615,7 +24492,7 @@ export interface operations {
22615
24492
  content: {
22616
24493
  "application/json": {
22617
24494
  data?: {
22618
- /** @example db748299-fff8-4009-b414-4265f14aba0e */
24495
+ /** @example c48ee03a-4653-4091-9008-4cb7809e7ba2 */
22619
24496
  uid?: string;
22620
24497
  /** @example 1 */
22621
24498
  listing_id?: number;
@@ -22623,15 +24500,15 @@ export interface operations {
22623
24500
  landlord_id?: number;
22624
24501
  /** @example 2 */
22625
24502
  tenant_id?: number;
22626
- /** @example 4347.44 */
24503
+ /** @example 4881.50 */
22627
24504
  rent_amount?: string;
22628
- /** @example 4823.36 */
24505
+ /** @example 2151.17 */
22629
24506
  deposit_amount?: string;
22630
- /** @example active */
24507
+ /** @example offer_accepted */
22631
24508
  state?: string;
22632
- /** @example 2026-03-16T00:00:00.000000Z */
24509
+ /** @example 2025-11-05T00:00:00.000000Z */
22633
24510
  start_date?: string;
22634
- /** @example 2027-03-16T00:00:00.000000Z */
24511
+ /** @example 2026-11-05T00:00:00.000000Z */
22635
24512
  end_date?: string;
22636
24513
  /** @example false */
22637
24514
  is_periodic?: boolean;
@@ -22639,7 +24516,7 @@ export interface operations {
22639
24516
  company_name?: string | null;
22640
24517
  /** @example null */
22641
24518
  company_registration_number?: string | null;
22642
- /** @example 2026-04-30T06:38:45.000000Z */
24519
+ /** @example 2026-04-30T10:00:45.000000Z */
22643
24520
  created_at?: string;
22644
24521
  /** @example [] */
22645
24522
  compliances?: unknown[];
@@ -22716,7 +24593,7 @@ export interface operations {
22716
24593
  content: {
22717
24594
  "application/json": {
22718
24595
  data?: {
22719
- /** @example 86fb4c35-4fff-462d-a4ec-c2e145edd95c */
24596
+ /** @example 9ea16325-a100-4fe8-a647-280e6d5b6a95 */
22720
24597
  uid?: string;
22721
24598
  /** @example 1 */
22722
24599
  listing_id?: number;
@@ -22740,7 +24617,7 @@ export interface operations {
22740
24617
  company_name?: string | null;
22741
24618
  /** @example null */
22742
24619
  company_registration_number?: string | null;
22743
- /** @example 2026-04-30T06:38:46.000000Z */
24620
+ /** @example 2026-04-30T10:00:45.000000Z */
22744
24621
  created_at?: string;
22745
24622
  };
22746
24623
  };
@@ -23034,7 +24911,7 @@ export interface operations {
23034
24911
  * "changed_by_user_id": 3,
23035
24912
  * "changed_by_name": "Teagan King",
23036
24913
  * "comment": "Qui commodi incidunt iure odit.",
23037
- * "created_at": "2025-12-22T17:25:45.000000Z"
24914
+ * "created_at": "2025-12-22T20:47:44.000000Z"
23038
24915
  * },
23039
24916
  * {
23040
24917
  * "from_state": "pre_move_in_ready",
@@ -23042,7 +24919,7 @@ export interface operations {
23042
24919
  * "changed_by_user_id": 3,
23043
24920
  * "changed_by_name": "Teagan King",
23044
24921
  * "comment": null,
23045
- * "created_at": "2025-11-08T01:21:25.000000Z"
24922
+ * "created_at": "2025-11-08T04:43:24.000000Z"
23046
24923
  * }
23047
24924
  * ]
23048
24925
  */
@@ -23057,7 +24934,7 @@ export interface operations {
23057
24934
  changed_by_name?: string;
23058
24935
  /** @example Qui commodi incidunt iure odit. */
23059
24936
  comment?: string;
23060
- /** @example 2025-12-22T17:25:45.000000Z */
24937
+ /** @example 2025-12-22T20:47:44.000000Z */
23061
24938
  created_at?: string;
23062
24939
  }[];
23063
24940
  };
@@ -23442,7 +25319,7 @@ export interface operations {
23442
25319
  content: {
23443
25320
  "application/json": {
23444
25321
  data?: {
23445
- /** @example fda41d8d-bde1-4dc2-856e-5aa53e474139 */
25322
+ /** @example 26df7f44-82fa-47f8-80b9-095dfb4a2ca6 */
23446
25323
  uid?: string;
23447
25324
  /** @example Ms. Audra Crooks II */
23448
25325
  username?: string;
@@ -23472,7 +25349,7 @@ export interface operations {
23472
25349
  timezone?: string;
23473
25350
  /** @example Customer */
23474
25351
  user_type?: string;
23475
- /** @example 30 Apr 2026, 06:38 AM */
25352
+ /** @example 30 Apr 2026, 10:00 AM */
23476
25353
  created?: string;
23477
25354
  /** @example 0 seconds ago */
23478
25355
  email_verified_at?: string;
@@ -23735,7 +25612,7 @@ export interface operations {
23735
25612
  content: {
23736
25613
  "application/json": {
23737
25614
  data?: {
23738
- /** @example 6ee8f557-5fc6-4e6b-8ec5-38f4ecb6b422 */
25615
+ /** @example c4b2e8ab-cbee-49f5-bc3f-35539b939f06 */
23739
25616
  uid?: string;
23740
25617
  /** @example Morgan Hirthe */
23741
25618
  username?: string;
@@ -23765,7 +25642,7 @@ export interface operations {
23765
25642
  timezone?: string;
23766
25643
  /** @example Customer */
23767
25644
  user_type?: string;
23768
- /** @example 30 Apr 2026, 06:38 AM */
25645
+ /** @example 30 Apr 2026, 10:00 AM */
23769
25646
  created?: string;
23770
25647
  /** @example 0 seconds ago */
23771
25648
  email_verified_at?: string;
@@ -23837,7 +25714,7 @@ export interface operations {
23837
25714
  content: {
23838
25715
  "application/json": {
23839
25716
  data?: {
23840
- /** @example a516d5e0-56fb-4329-82f6-80c52a392a6e */
25717
+ /** @example ca3a0c25-c947-4b73-a043-67b3305951bd */
23841
25718
  uid?: string;
23842
25719
  /** @example Ms. Audra Crooks II */
23843
25720
  username?: string;
@@ -23867,7 +25744,7 @@ export interface operations {
23867
25744
  timezone?: string;
23868
25745
  /** @example Customer */
23869
25746
  user_type?: string;
23870
- /** @example 30 Apr 2026, 06:38 AM */
25747
+ /** @example 30 Apr 2026, 10:00 AM */
23871
25748
  created?: string;
23872
25749
  /** @example 0 seconds ago */
23873
25750
  email_verified_at?: string;
@@ -24101,13 +25978,13 @@ export interface operations {
24101
25978
  content: {
24102
25979
  "application/json": {
24103
25980
  data?: {
24104
- /** @example 1 */
25981
+ /** @example 0 */
24105
25982
  current_level?: number;
24106
25983
  /** @example 3 */
24107
25984
  completed_layers?: number;
24108
- /** @example 6 */
25985
+ /** @example 4 */
24109
25986
  pending_layers?: number;
24110
- /** @example 30 Apr 2026, 06:38 AM */
25987
+ /** @example 30 Apr 2026, 10:00 AM */
24111
25988
  last_calculated_at?: string;
24112
25989
  };
24113
25990
  };
@@ -24155,7 +26032,7 @@ export interface operations {
24155
26032
  completed_layers?: number;
24156
26033
  /** @example 4 */
24157
26034
  pending_layers?: number;
24158
- /** @example 30 Apr 2026, 06:38 AM */
26035
+ /** @example 30 Apr 2026, 10:00 AM */
24159
26036
  last_calculated_at?: string;
24160
26037
  };
24161
26038
  };
@@ -24189,14 +26066,14 @@ export interface operations {
24189
26066
  content: {
24190
26067
  "application/json": {
24191
26068
  data?: {
24192
- /** @example 0d2b438f-693a-40b4-a5fa-cb4d5fce1531 */
26069
+ /** @example 1b592e10-dd70-4782-9d97-0dcfb81be05e */
24193
26070
  wishlist_uid?: string;
24194
26071
  listing?: {
24195
- /** @example New For Sale Used Item draft • 30 Apr 2026, 6:38 AM */
26072
+ /** @example New For Sale Used Item draft • 30 Apr 2026, 10:00 AM */
24196
26073
  draft_name?: string;
24197
- /** @example LST-UIT-SAL-MOL44YPEBZS */
26074
+ /** @example LST-UIT-SAL-MOLBCPZJQ5G */
24198
26075
  sku?: string;
24199
- /** @example 69bcb42b-e652-4506-a470-ebaa590e2854 */
26076
+ /** @example e0f3c03f-9514-4c7c-8e12-c48a8e076ae5 */
24200
26077
  uid?: string;
24201
26078
  /** @example Sale */
24202
26079
  listing_type?: string;
@@ -24583,7 +26460,7 @@ export interface operations {
24583
26460
  completed_layers?: number;
24584
26461
  /** @example 4 */
24585
26462
  pending_layers?: number;
24586
- /** @example 30 Apr 2026, 06:38 AM */
26463
+ /** @example 30 Apr 2026, 10:00 AM */
24587
26464
  last_calculated_at?: string;
24588
26465
  };
24589
26466
  };
@@ -24825,7 +26702,7 @@ export interface operations {
24825
26702
  completed_layers?: number;
24826
26703
  /** @example 4 */
24827
26704
  pending_layers?: number;
24828
- /** @example 30 Apr 2026, 06:38 AM */
26705
+ /** @example 30 Apr 2026, 10:00 AM */
24829
26706
  last_calculated_at?: string;
24830
26707
  };
24831
26708
  };