@justins-home/types 1.1.70 → 1.1.72

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 +1691 -769
  2. package/package.json +1 -1
@@ -3711,6 +3711,29 @@ export interface paths {
3711
3711
  patch?: never;
3712
3712
  trace?: never;
3713
3713
  };
3714
+ "/api/v1/public/inspection/fetch-one/{uid}": {
3715
+ parameters: {
3716
+ query?: never;
3717
+ header?: never;
3718
+ path: {
3719
+ /** @description The unique UID of the inspection. */
3720
+ uid: string;
3721
+ };
3722
+ cookie?: never;
3723
+ };
3724
+ /**
3725
+ * fetchInspection
3726
+ * @description Fetch a single inspection by UID.
3727
+ */
3728
+ get: operations["fetchInspection"];
3729
+ put?: never;
3730
+ post?: never;
3731
+ delete?: never;
3732
+ options?: never;
3733
+ head?: never;
3734
+ patch?: never;
3735
+ trace?: never;
3736
+ };
3714
3737
  "/api/v1/public/inspection/listing/{listing_uid}": {
3715
3738
  parameters: {
3716
3739
  query?: never;
@@ -3967,6 +3990,26 @@ export interface paths {
3967
3990
  patch?: never;
3968
3991
  trace?: never;
3969
3992
  };
3993
+ "/api/v1/portal/landlord/reviews/fetch-all": {
3994
+ parameters: {
3995
+ query?: never;
3996
+ header?: never;
3997
+ path?: never;
3998
+ cookie?: never;
3999
+ };
4000
+ /**
4001
+ * fetchLandlordListingReviews
4002
+ * @description Retrieve reviews for listings owned by the authenticated landlord.
4003
+ */
4004
+ get: operations["fetchLandlordListingReviews"];
4005
+ put?: never;
4006
+ post?: never;
4007
+ delete?: never;
4008
+ options?: never;
4009
+ head?: never;
4010
+ patch?: never;
4011
+ trace?: never;
4012
+ };
3970
4013
  "/api/v1/portal/landlord/listing": {
3971
4014
  parameters: {
3972
4015
  query?: never;
@@ -4776,6 +4819,29 @@ export interface paths {
4776
4819
  patch?: never;
4777
4820
  trace?: never;
4778
4821
  };
4822
+ "/api/v1/public/maintenance/fetch-one/{uid}": {
4823
+ parameters: {
4824
+ query?: never;
4825
+ header?: never;
4826
+ path: {
4827
+ /** @description The UID of the maintenance request. */
4828
+ uid: string;
4829
+ };
4830
+ cookie?: never;
4831
+ };
4832
+ /**
4833
+ * fetchMaintenanceRequest
4834
+ * @description Fetch a single maintenance request by UID.
4835
+ */
4836
+ get: operations["fetchMaintenanceRequest"];
4837
+ put?: never;
4838
+ post?: never;
4839
+ delete?: never;
4840
+ options?: never;
4841
+ head?: never;
4842
+ patch?: never;
4843
+ trace?: never;
4844
+ };
4779
4845
  "/api/v1/public/maintenance/report": {
4780
4846
  parameters: {
4781
4847
  query?: never;
@@ -5197,6 +5263,49 @@ export interface paths {
5197
5263
  patch?: never;
5198
5264
  trace?: never;
5199
5265
  };
5266
+ "/api/v1/public/review/fetch-one/{review_id}": {
5267
+ parameters: {
5268
+ query?: never;
5269
+ header?: never;
5270
+ path: {
5271
+ /** @description The ID of the review. */
5272
+ review_id: number;
5273
+ };
5274
+ cookie?: never;
5275
+ };
5276
+ /**
5277
+ * fetchOneReview
5278
+ * @description Retrieve a single visible review by its ID.
5279
+ */
5280
+ get: operations["fetchOneReview"];
5281
+ put?: never;
5282
+ post?: never;
5283
+ delete?: never;
5284
+ options?: never;
5285
+ head?: never;
5286
+ patch?: never;
5287
+ trace?: never;
5288
+ };
5289
+ "/api/v1/public/review/fetch-all-by-reviewable": {
5290
+ parameters: {
5291
+ query?: never;
5292
+ header?: never;
5293
+ path?: never;
5294
+ cookie?: never;
5295
+ };
5296
+ /**
5297
+ * fetchAllReviewForReviewable
5298
+ * @description Retrieve all reviews for a specific reviewable entity.
5299
+ */
5300
+ get: operations["fetchAllReviewForReviewable"];
5301
+ put?: never;
5302
+ post?: never;
5303
+ delete?: never;
5304
+ options?: never;
5305
+ head?: never;
5306
+ patch?: never;
5307
+ trace?: never;
5308
+ };
5200
5309
  "/api/v1/public/review/summary": {
5201
5310
  parameters: {
5202
5311
  query?: never;
@@ -5337,7 +5446,7 @@ export interface paths {
5337
5446
  put?: never;
5338
5447
  /**
5339
5448
  * createTenancy
5340
- * @description Create a new tenancy.
5449
+ * @description Create a new tenancy from listing and tenant UIDs.
5341
5450
  */
5342
5451
  post: operations["createTenancy"];
5343
5452
  delete?: never;
@@ -5397,7 +5506,7 @@ export interface paths {
5397
5506
  query?: never;
5398
5507
  header?: never;
5399
5508
  path: {
5400
- /** @description Optional parameter. uuid required The ID of the tenancy to renew. */
5509
+ /** @description The ID of the tenancy to renew. */
5401
5510
  tenancy_uid: string;
5402
5511
  };
5403
5512
  cookie?: never;
@@ -5423,8 +5532,8 @@ export interface paths {
5423
5532
  query?: never;
5424
5533
  header?: never;
5425
5534
  path: {
5426
- /** @description The ID of the tenancy to convert. */
5427
- tenancy_uid: number;
5535
+ /** @description The UID of the tenancy to convert. */
5536
+ tenancy_uid: string;
5428
5537
  };
5429
5538
  cookie?: never;
5430
5539
  };
@@ -6099,15 +6208,15 @@ export interface operations {
6099
6208
  content: {
6100
6209
  "application/json": {
6101
6210
  data?: {
6102
- /** @example 9bf6a94c-38ee-4276-95f6-659b2cfa8d86 */
6211
+ /** @example a1b62292-76ef-4d50-8ae2-2eacdcef9ae3 */
6103
6212
  uid?: string;
6104
- /** @example Ms. Audra Crooks II */
6213
+ /** @example Emily Reid */
6105
6214
  username?: string;
6106
6215
  /** @example null */
6107
6216
  first_name?: string | null;
6108
6217
  /** @example null */
6109
6218
  last_name?: string | null;
6110
- /** @example aschuster@example.com */
6219
+ /** @example leo42@example.com */
6111
6220
  email?: string;
6112
6221
  /** @example null */
6113
6222
  phone?: string | null;
@@ -6129,7 +6238,7 @@ export interface operations {
6129
6238
  timezone?: string;
6130
6239
  /** @example Customer */
6131
6240
  user_type?: string;
6132
- /** @example 01 May 2026, 08:09 PM */
6241
+ /** @example 06 May 2026, 01:59 PM */
6133
6242
  created?: string;
6134
6243
  /** @example 0 seconds ago */
6135
6244
  email_verified_at?: string;
@@ -6222,24 +6331,18 @@ export interface operations {
6222
6331
  reservedBookingsAdmin: {
6223
6332
  parameters: {
6224
6333
  query?: {
6334
+ /** @description Filter bookings by tenant/guest name. Must not be greater than 255 characters. */
6335
+ tenant_name?: string | null;
6225
6336
  /** @description Number of bookings per page. */
6226
- per_page?: number;
6337
+ per_page?: number | null;
6338
+ /** @description Current page number. Must be at least 1. */
6339
+ page?: number | null;
6227
6340
  };
6228
6341
  header?: never;
6229
6342
  path?: never;
6230
6343
  cookie?: never;
6231
6344
  };
6232
- requestBody?: {
6233
- content: {
6234
- "application/json": {
6235
- /**
6236
- * @description Must be at least 1. Must not be greater than 100.
6237
- * @example 1
6238
- */
6239
- per_page?: number | null;
6240
- };
6241
- };
6242
- };
6345
+ requestBody?: never;
6243
6346
  responses: {
6244
6347
  /** @description Retrieve all reserved bookings for admin oversight */
6245
6348
  200: {
@@ -6770,7 +6873,7 @@ export interface operations {
6770
6873
  */
6771
6874
  search?: string | null;
6772
6875
  /**
6773
- * @example rejected
6876
+ * @example approved
6774
6877
  * @enum {string|null}
6775
6878
  */
6776
6879
  status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
@@ -7009,7 +7112,7 @@ export interface operations {
7009
7112
  content: {
7010
7113
  "application/json": {
7011
7114
  data?: {
7012
- /** @example c9cec102-f13e-44f8-8ea3-bdf197014d75 */
7115
+ /** @example 4030f9d1-3ac9-424d-8ec5-3790bff1960b */
7013
7116
  uid?: string;
7014
7117
  /** @example JH-APP-2026-589365 */
7015
7118
  application_ref?: string;
@@ -7030,7 +7133,7 @@ export interface operations {
7030
7133
  /** @example null */
7031
7134
  rejection_reason?: string | null;
7032
7135
  timeline?: {
7033
- /** @example 01 May 2026, 08:09 PM */
7136
+ /** @example 06 May 2026, 01:59 PM */
7034
7137
  created_at?: string;
7035
7138
  /** @example null */
7036
7139
  approved_at?: string | null;
@@ -7064,7 +7167,7 @@ export interface operations {
7064
7167
  content: {
7065
7168
  "application/json": {
7066
7169
  data?: {
7067
- /** @example c1938c13-ca6c-480c-8ea5-fdd82474202e */
7170
+ /** @example ee0e1cea-9938-4a13-b30d-4be495701892 */
7068
7171
  uid?: string;
7069
7172
  /** @example JH-APP-2026-933724 */
7070
7173
  application_ref?: string;
@@ -7085,7 +7188,7 @@ export interface operations {
7085
7188
  /** @example null */
7086
7189
  rejection_reason?: string | null;
7087
7190
  timeline?: {
7088
- /** @example 01 May 2026, 08:09 PM */
7191
+ /** @example 06 May 2026, 01:59 PM */
7089
7192
  created_at?: string;
7090
7193
  /** @example null */
7091
7194
  approved_at?: string | null;
@@ -7119,7 +7222,7 @@ export interface operations {
7119
7222
  content: {
7120
7223
  "application/json": {
7121
7224
  data?: {
7122
- /** @example 3a32d333-9926-4a9d-816d-0f2c9b781063 */
7225
+ /** @example 8ccbbc8c-7367-440d-80be-01200f390ddb */
7123
7226
  uid?: string;
7124
7227
  /** @example JH-APP-2026-450949 */
7125
7228
  application_ref?: string;
@@ -7140,7 +7243,7 @@ export interface operations {
7140
7243
  /** @example null */
7141
7244
  rejection_reason?: string | null;
7142
7245
  timeline?: {
7143
- /** @example 01 May 2026, 08:09 PM */
7246
+ /** @example 06 May 2026, 01:59 PM */
7144
7247
  created_at?: string;
7145
7248
  /** @example null */
7146
7249
  approved_at?: string | null;
@@ -7184,7 +7287,7 @@ export interface operations {
7184
7287
  content: {
7185
7288
  "application/json": {
7186
7289
  data?: {
7187
- /** @example e48d8094-aa0d-43aa-94c8-45a7c04bef23 */
7290
+ /** @example 7cd27356-d57a-4773-ae01-84730af6e6f3 */
7188
7291
  uid?: string;
7189
7292
  /** @example JH-APP-2026-026316 */
7190
7293
  application_ref?: string;
@@ -7205,7 +7308,7 @@ export interface operations {
7205
7308
  /** @example null */
7206
7309
  rejection_reason?: string | null;
7207
7310
  timeline?: {
7208
- /** @example 01 May 2026, 08:09 PM */
7311
+ /** @example 06 May 2026, 01:59 PM */
7209
7312
  created_at?: string;
7210
7313
  /** @example null */
7211
7314
  approved_at?: string | null;
@@ -7249,7 +7352,7 @@ export interface operations {
7249
7352
  content: {
7250
7353
  "application/json": {
7251
7354
  data?: {
7252
- /** @example fdba56d6-aae6-4acf-a96f-09b79b614f21 */
7355
+ /** @example 3d3b7165-c0d5-4f3c-96c6-6588591c8b65 */
7253
7356
  uid?: string;
7254
7357
  /** @example JH-APP-2026-000564 */
7255
7358
  application_ref?: string;
@@ -7270,7 +7373,7 @@ export interface operations {
7270
7373
  /** @example null */
7271
7374
  rejection_reason?: string | null;
7272
7375
  timeline?: {
7273
- /** @example 01 May 2026, 08:09 PM */
7376
+ /** @example 06 May 2026, 01:59 PM */
7274
7377
  created_at?: string;
7275
7378
  /** @example null */
7276
7379
  approved_at?: string | null;
@@ -7304,7 +7407,7 @@ export interface operations {
7304
7407
  content: {
7305
7408
  "application/json": {
7306
7409
  data?: {
7307
- /** @example f35ab3ec-930a-47b2-b64c-1156bd7c1dc7 */
7410
+ /** @example 16b5bbfc-b5c0-4f75-b3ba-db316898362f */
7308
7411
  uid?: string;
7309
7412
  /** @example 4881.50 */
7310
7413
  rent_amount?: string;
@@ -7312,9 +7415,9 @@ export interface operations {
7312
7415
  deposit_amount?: string;
7313
7416
  /** @example offer_accepted */
7314
7417
  state?: string;
7315
- /** @example 2025-08-24T00:00:00.000000Z */
7418
+ /** @example 2025-08-29T00:00:00.000000Z */
7316
7419
  start_date?: string;
7317
- /** @example 2026-08-24T00:00:00.000000Z */
7420
+ /** @example 2026-08-29T00:00:00.000000Z */
7318
7421
  end_date?: string;
7319
7422
  /** @example false */
7320
7423
  is_periodic?: boolean;
@@ -7322,7 +7425,7 @@ export interface operations {
7322
7425
  company_name?: string | null;
7323
7426
  /** @example null */
7324
7427
  company_registration_number?: string | null;
7325
- /** @example 2026-05-01T20:09:07.000000Z */
7428
+ /** @example 2026-05-06T13:59:06.000000Z */
7326
7429
  created_at?: string;
7327
7430
  };
7328
7431
  };
@@ -7768,15 +7871,15 @@ export interface operations {
7768
7871
  content: {
7769
7872
  "application/json": {
7770
7873
  data?: {
7771
- /** @example 605c210a-221a-47c0-9a94-03efd20c181d */
7874
+ /** @example 5696744c-f5e4-4c6f-b30e-1d9b1d7747e5 */
7772
7875
  uid?: string;
7773
- /** @example Ms. Audra Crooks II */
7876
+ /** @example Emily Reid */
7774
7877
  username?: string;
7775
7878
  /** @example null */
7776
7879
  first_name?: string | null;
7777
7880
  /** @example null */
7778
7881
  last_name?: string | null;
7779
- /** @example gilbert32@example.com */
7882
+ /** @example robinson.jim@example.com */
7780
7883
  email?: string;
7781
7884
  /** @example null */
7782
7885
  phone?: string | null;
@@ -7798,7 +7901,7 @@ export interface operations {
7798
7901
  timezone?: string;
7799
7902
  /** @example Customer */
7800
7903
  user_type?: string;
7801
- /** @example 01 May 2026, 08:09 PM */
7904
+ /** @example 06 May 2026, 01:59 PM */
7802
7905
  created?: string;
7803
7906
  /** @example 0 seconds ago */
7804
7907
  email_verified_at?: string;
@@ -8188,11 +8291,11 @@ export interface operations {
8188
8291
  content: {
8189
8292
  "application/json": {
8190
8293
  data?: {
8191
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
8294
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
8192
8295
  draft_name?: string;
8193
- /** @example LST-PRP-LTR-MONCIXPK6SK */
8296
+ /** @example LST-PRP-LTR-MOU4ID1HS4V */
8194
8297
  sku?: string;
8195
- /** @example ae2de3b1-b5d1-4bcd-b5de-ea28fee99e79 */
8298
+ /** @example 0709afbe-986b-4bc4-bf57-2e52abe932b1 */
8196
8299
  uid?: string;
8197
8300
  /** @example Rent */
8198
8301
  listing_type?: string;
@@ -9604,7 +9707,7 @@ export interface operations {
9604
9707
  content: {
9605
9708
  "application/json": {
9606
9709
  /**
9607
- * @example Dormant
9710
+ * @example Unverified
9608
9711
  * @enum {string}
9609
9712
  */
9610
9713
  status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
@@ -9619,15 +9722,15 @@ export interface operations {
9619
9722
  content: {
9620
9723
  "application/json": {
9621
9724
  data?: {
9622
- /** @example 5754e443-19b1-4254-81aa-247d00bb8a25 */
9725
+ /** @example 2ac1cbde-e670-4f2e-a124-692f5501f231 */
9623
9726
  uid?: string;
9624
- /** @example Morgan Hirthe */
9727
+ /** @example Connor Richards */
9625
9728
  username?: string;
9626
9729
  /** @example null */
9627
9730
  first_name?: string | null;
9628
9731
  /** @example null */
9629
9732
  last_name?: string | null;
9630
- /** @example dare.emelie@example.com */
9733
+ /** @example williams.eva@example.com */
9631
9734
  email?: string;
9632
9735
  /** @example null */
9633
9736
  phone?: string | null;
@@ -9649,7 +9752,7 @@ export interface operations {
9649
9752
  timezone?: string;
9650
9753
  /** @example Customer */
9651
9754
  user_type?: string;
9652
- /** @example 01 May 2026, 08:09 PM */
9755
+ /** @example 06 May 2026, 01:59 PM */
9653
9756
  created?: string;
9654
9757
  /** @example 0 seconds ago */
9655
9758
  email_verified_at?: string;
@@ -10358,11 +10461,11 @@ export interface operations {
10358
10461
  content: {
10359
10462
  "application/json": {
10360
10463
  data?: {
10361
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
10464
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
10362
10465
  draft_name?: string;
10363
- /** @example LST-PRP-LTR-MONCIXS8KQQ */
10466
+ /** @example LST-PRP-LTR-MOU4ID4AFZK */
10364
10467
  sku?: string;
10365
- /** @example 3c055c0a-6bce-4ad8-91b4-d5a212d39be2 */
10468
+ /** @example 92e26c32-f79e-4fad-bf8b-c13498883559 */
10366
10469
  uid?: string;
10367
10470
  /** @example Rent */
10368
10471
  listing_type?: string;
@@ -10802,7 +10905,7 @@ export interface operations {
10802
10905
  content: {
10803
10906
  "application/json": {
10804
10907
  data?: {
10805
- /** @example c851be87-890f-4cc8-9e6e-365bf3c8c003 */
10908
+ /** @example 3d6832e2-8dc9-4563-a5f8-ca34435da88c */
10806
10909
  uid?: string;
10807
10910
  /** @example photo */
10808
10911
  media_type?: string;
@@ -11109,13 +11212,13 @@ export interface operations {
11109
11212
  /**
11110
11213
  * @example [
11111
11214
  * {
11112
- * "draft_name": "New For Rent Property draft • 1 May 2026, 8:09 PM",
11113
- * "sku": "LST-PRP-LTR-MONCIXTM63N",
11114
- * "uid": "e1362b75-5bf6-4430-b9e5-1c083bb20fe8",
11115
- * "listing_type": "Rent",
11215
+ * "draft_name": "New For Sale Property draft • 6 May 2026, 1:59 PM",
11216
+ * "sku": "LST-PRP-SAL-MOU4ID5ZGYJ",
11217
+ * "uid": "87d0c1e7-7c95-402c-870d-e87578f95889",
11218
+ * "listing_type": "Sale",
11116
11219
  * "vertical": "Property",
11117
- * "arrangement_type": "standard_residential",
11118
- * "arrangement_type_label": "Standard Residential",
11220
+ * "arrangement_type": "company_lease",
11221
+ * "arrangement_type_label": "Company Lease",
11119
11222
  * "price": null,
11120
11223
  * "state": "draft",
11121
11224
  * "published_at": null,
@@ -11128,38 +11231,40 @@ export interface operations {
11128
11231
  * "media": []
11129
11232
  * },
11130
11233
  * {
11131
- * "draft_name": "New For Sale Used Item draft • 1 May 2026, 8:09 PM",
11132
- * "sku": "LST-UIT-SAL-MONCIXTOZ6G",
11133
- * "uid": "a6090b0d-e41f-4777-86d3-a4046205d539",
11134
- * "listing_type": "Sale",
11135
- * "vertical": "Used Item",
11136
- * "arrangement_type": null,
11137
- * "arrangement_type_label": null,
11234
+ * "draft_name": "New For Rent Property draft • 6 May 2026, 1:59 PM",
11235
+ * "sku": "LST-PRP-LTR-MOU4ID63KJS",
11236
+ * "uid": "eeeb01c3-0cc4-4b17-8f66-44aa40b15395",
11237
+ * "listing_type": "Rent",
11238
+ * "vertical": "Property",
11239
+ * "arrangement_type": "standard_residential",
11240
+ * "arrangement_type_label": "Standard Residential",
11138
11241
  * "price": null,
11139
11242
  * "state": "draft",
11140
11243
  * "published_at": null,
11141
11244
  * "published_since": null,
11142
11245
  * "is_visible": false,
11143
- * "summary": [],
11246
+ * "summary": {
11247
+ * "availability": null
11248
+ * },
11144
11249
  * "workflow": [],
11145
11250
  * "media": []
11146
11251
  * }
11147
11252
  * ]
11148
11253
  */
11149
11254
  data?: {
11150
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
11255
+ /** @example New For Sale Property draft • 6 May 2026, 1:59 PM */
11151
11256
  draft_name?: string;
11152
- /** @example LST-PRP-LTR-MONCIXTM63N */
11257
+ /** @example LST-PRP-SAL-MOU4ID5ZGYJ */
11153
11258
  sku?: string;
11154
- /** @example e1362b75-5bf6-4430-b9e5-1c083bb20fe8 */
11259
+ /** @example 87d0c1e7-7c95-402c-870d-e87578f95889 */
11155
11260
  uid?: string;
11156
- /** @example Rent */
11261
+ /** @example Sale */
11157
11262
  listing_type?: string;
11158
11263
  /** @example Property */
11159
11264
  vertical?: string;
11160
- /** @example standard_residential */
11265
+ /** @example company_lease */
11161
11266
  arrangement_type?: string;
11162
- /** @example Standard Residential */
11267
+ /** @example Company Lease */
11163
11268
  arrangement_type_label?: string;
11164
11269
  /** @example null */
11165
11270
  price?: string | null;
@@ -11346,11 +11451,11 @@ export interface operations {
11346
11451
  content: {
11347
11452
  "application/json": {
11348
11453
  data?: {
11349
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
11454
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
11350
11455
  draft_name?: string;
11351
- /** @example LST-PRP-LTR-MONCIXTW2IX */
11456
+ /** @example LST-PRP-LTR-MOU4ID6CYJG */
11352
11457
  sku?: string;
11353
- /** @example 6ee2e64a-42bc-4707-ab78-69c8401d4adf */
11458
+ /** @example 497049e3-2ad6-4db8-87fc-ea3740320795 */
11354
11459
  uid?: string;
11355
11460
  /** @example Rent */
11356
11461
  listing_type?: string;
@@ -11413,11 +11518,11 @@ export interface operations {
11413
11518
  content: {
11414
11519
  "application/json": {
11415
11520
  data?: {
11416
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
11521
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
11417
11522
  draft_name?: string;
11418
- /** @example LST-PRP-LTR-MONCIXU1KLQ */
11523
+ /** @example LST-PRP-LTR-MOU4ID6J9QG */
11419
11524
  sku?: string;
11420
- /** @example 0744d6bf-fc84-4de3-b177-c238f058b6df */
11525
+ /** @example 5ec70e87-8c53-4285-8e4e-945e89159961 */
11421
11526
  uid?: string;
11422
11527
  /** @example Rent */
11423
11528
  listing_type?: string;
@@ -11470,11 +11575,11 @@ export interface operations {
11470
11575
  content: {
11471
11576
  "application/json": {
11472
11577
  data?: {
11473
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
11578
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
11474
11579
  draft_name?: string;
11475
- /** @example LST-PRP-LTR-MONCIXU5Z17 */
11580
+ /** @example LST-PRP-LTR-MOU4ID6OGLW */
11476
11581
  sku?: string;
11477
- /** @example d584d1d9-88da-4f38-8ddf-b3ee74e547dc */
11582
+ /** @example b0dcea80-8e59-4a20-806f-02e7e961d9aa */
11478
11583
  uid?: string;
11479
11584
  /** @example Rent */
11480
11585
  listing_type?: string;
@@ -11527,11 +11632,11 @@ export interface operations {
11527
11632
  content: {
11528
11633
  "application/json": {
11529
11634
  data?: {
11530
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
11635
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
11531
11636
  draft_name?: string;
11532
- /** @example LST-PRP-LTR-MONCIXUAWJN */
11637
+ /** @example LST-PRP-LTR-MOU4ID6VNAG */
11533
11638
  sku?: string;
11534
- /** @example 968a75f0-d473-4eac-992d-b71e19e29ac3 */
11639
+ /** @example ee87be07-5bb8-42c7-b79b-c64ee875f872 */
11535
11640
  uid?: string;
11536
11641
  /** @example Rent */
11537
11642
  listing_type?: string;
@@ -11725,7 +11830,7 @@ export interface operations {
11725
11830
  content: {
11726
11831
  "application/json": {
11727
11832
  data?: {
11728
- /** @example 319 */
11833
+ /** @example 52 */
11729
11834
  id?: number;
11730
11835
  /** @example 1 */
11731
11836
  category_id?: number;
@@ -11799,7 +11904,7 @@ export interface operations {
11799
11904
  content: {
11800
11905
  "application/json": {
11801
11906
  data?: {
11802
- /** @example 320 */
11907
+ /** @example 53 */
11803
11908
  id?: number;
11804
11909
  /** @example 1 */
11805
11910
  category_id?: number;
@@ -11838,7 +11943,7 @@ export interface operations {
11838
11943
  content: {
11839
11944
  "application/json": {
11840
11945
  data?: {
11841
- /** @example 321 */
11946
+ /** @example 54 */
11842
11947
  id?: number;
11843
11948
  /** @example 1 */
11844
11949
  category_id?: number;
@@ -11876,7 +11981,7 @@ export interface operations {
11876
11981
  /**
11877
11982
  * @example [
11878
11983
  * {
11879
- * "id": 475,
11984
+ * "id": 30,
11880
11985
  * "name": "Exterior",
11881
11986
  * "description": "For Exterior categories",
11882
11987
  * "display_order": 1,
@@ -11886,7 +11991,7 @@ export interface operations {
11886
11991
  * "is_active": true
11887
11992
  * },
11888
11993
  * {
11889
- * "id": 476,
11994
+ * "id": 31,
11890
11995
  * "name": "Exterior",
11891
11996
  * "description": "For Exterior categories",
11892
11997
  * "display_order": 1,
@@ -11898,7 +12003,7 @@ export interface operations {
11898
12003
  * ]
11899
12004
  */
11900
12005
  data?: {
11901
- /** @example 475 */
12006
+ /** @example 30 */
11902
12007
  id?: number;
11903
12008
  /** @example Exterior */
11904
12009
  name?: string;
@@ -11962,7 +12067,7 @@ export interface operations {
11962
12067
  content: {
11963
12068
  "application/json": {
11964
12069
  data?: {
11965
- /** @example 477 */
12070
+ /** @example 32 */
11966
12071
  id?: number;
11967
12072
  /** @example Exterior */
11968
12073
  name?: string;
@@ -12029,7 +12134,7 @@ export interface operations {
12029
12134
  content: {
12030
12135
  "application/json": {
12031
12136
  data?: {
12032
- /** @example 478 */
12137
+ /** @example 33 */
12033
12138
  id?: number;
12034
12139
  /** @example Exterior */
12035
12140
  name?: string;
@@ -12070,7 +12175,7 @@ export interface operations {
12070
12175
  content: {
12071
12176
  "application/json": {
12072
12177
  data?: {
12073
- /** @example 479 */
12178
+ /** @example 34 */
12074
12179
  id?: number;
12075
12180
  /** @example Exterior */
12076
12181
  name?: string;
@@ -12333,13 +12438,13 @@ export interface operations {
12333
12438
  content: {
12334
12439
  "application/json": {
12335
12440
  data?: {
12336
- /** @example 201 */
12441
+ /** @example 21 */
12337
12442
  id?: number;
12338
12443
  /** @example email_fa_0 */
12339
12444
  key?: string;
12340
- /** @example Clara Cronin V */
12445
+ /** @example Andrew Khan */
12341
12446
  name?: string;
12342
- /** @example Incidunt iure odit et et modi ipsum nostrum omnis. */
12447
+ /** @example Commodi incidunt iure odit et et. */
12343
12448
  description?: string;
12344
12449
  /** @example true */
12345
12450
  requires_review?: boolean;
@@ -12347,9 +12452,9 @@ export interface operations {
12347
12452
  metadata_schema?: unknown[];
12348
12453
  /** @example true */
12349
12454
  is_active?: boolean;
12350
- /** @example 2026-05-01T20:09:07.000000Z */
12455
+ /** @example 2026-05-06T13:59:06.000000Z */
12351
12456
  created_at?: string;
12352
- /** @example 2026-05-01T20:09:07.000000Z */
12457
+ /** @example 2026-05-06T13:59:06.000000Z */
12353
12458
  updated_at?: string;
12354
12459
  };
12355
12460
  };
@@ -12409,13 +12514,13 @@ export interface operations {
12409
12514
  content: {
12410
12515
  "application/json": {
12411
12516
  data?: {
12412
- /** @example 202 */
12517
+ /** @example 22 */
12413
12518
  id?: number;
12414
12519
  /** @example email_fa_0 */
12415
12520
  key?: string;
12416
- /** @example Clara Cronin V */
12521
+ /** @example Andrew Khan */
12417
12522
  name?: string;
12418
- /** @example Incidunt iure odit et et modi ipsum nostrum omnis. */
12523
+ /** @example Commodi incidunt iure odit et et. */
12419
12524
  description?: string;
12420
12525
  /** @example true */
12421
12526
  requires_review?: boolean;
@@ -12423,9 +12528,9 @@ export interface operations {
12423
12528
  metadata_schema?: unknown[];
12424
12529
  /** @example true */
12425
12530
  is_active?: boolean;
12426
- /** @example 2026-05-01T20:09:07.000000Z */
12531
+ /** @example 2026-05-06T13:59:06.000000Z */
12427
12532
  created_at?: string;
12428
- /** @example 2026-05-01T20:09:07.000000Z */
12533
+ /** @example 2026-05-06T13:59:06.000000Z */
12429
12534
  updated_at?: string;
12430
12535
  };
12431
12536
  };
@@ -13691,25 +13796,25 @@ export interface operations {
13691
13796
  /**
13692
13797
  * @example [
13693
13798
  * {
13694
- * "key": "officiis",
13695
- * "name": "officia",
13696
- * "description": "Numquam rerum inventore debitis totam.",
13799
+ * "key": "aut",
13800
+ * "name": "repellat",
13801
+ * "description": "Ipsam veniam animi reprehenderit voluptas.",
13697
13802
  * "value_type": "string"
13698
13803
  * },
13699
13804
  * {
13700
- * "key": "officia",
13701
- * "name": "ut",
13702
- * "description": "Voluptatibus qui minima recusandae repellendus.",
13805
+ * "key": "quidem",
13806
+ * "name": "tempora",
13807
+ * "description": "Iste nesciunt aut voluptas.",
13703
13808
  * "value_type": "string"
13704
13809
  * }
13705
13810
  * ]
13706
13811
  */
13707
13812
  data?: {
13708
- /** @example officiis */
13813
+ /** @example aut */
13709
13814
  key?: string;
13710
- /** @example officia */
13815
+ /** @example repellat */
13711
13816
  name?: string;
13712
- /** @example Numquam rerum inventore debitis totam. */
13817
+ /** @example Ipsam veniam animi reprehenderit voluptas. */
13713
13818
  description?: string;
13714
13819
  /** @example string */
13715
13820
  value_type?: string;
@@ -14951,13 +15056,13 @@ export interface operations {
14951
15056
  };
14952
15057
  } | {
14953
15058
  data?: {
14954
- /** @example b071d9d6-b2cd-47c4-a8dc-0c13b886c013 */
15059
+ /** @example 16a03152-cded-4625-aa16-20308515af79 */
14955
15060
  uid?: string;
14956
15061
  /** @example follow_up */
14957
15062
  inspection_type?: string;
14958
15063
  /** @example cancelled */
14959
15064
  status?: string;
14960
- /** @example 07 May 2026, 10:07 AM */
15065
+ /** @example 12 May 2026, 03:57 AM */
14961
15066
  scheduled_date?: string;
14962
15067
  /** @example null */
14963
15068
  completed_date?: string | null;
@@ -14965,11 +15070,11 @@ export interface operations {
14965
15070
  condition_rating?: string;
14966
15071
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
14967
15072
  summary?: string;
14968
- /** @example 01 Jul 2026, 06:56 AM */
15073
+ /** @example 06 Jul 2026, 12:46 AM */
14969
15074
  next_inspection_date?: string;
14970
- /** @example 01 May 2026, 08:09 PM */
15075
+ /** @example 06 May 2026, 01:59 PM */
14971
15076
  created_at?: string;
14972
- /** @example 01 May 2026, 08:09 PM */
15077
+ /** @example 06 May 2026, 01:59 PM */
14973
15078
  updated_at?: string;
14974
15079
  };
14975
15080
  };
@@ -15024,13 +15129,13 @@ export interface operations {
15024
15129
  content: {
15025
15130
  "application/json": {
15026
15131
  data?: {
15027
- /** @example 33149980-744c-4c49-87e0-74fc9deff673 */
15132
+ /** @example 5b7d0af9-6281-4b8d-a485-89f62eefc595 */
15028
15133
  uid?: string;
15029
15134
  /** @example follow_up */
15030
15135
  inspection_type?: string;
15031
15136
  /** @example cancelled */
15032
15137
  status?: string;
15033
- /** @example 07 May 2026, 10:07 AM */
15138
+ /** @example 12 May 2026, 03:57 AM */
15034
15139
  scheduled_date?: string;
15035
15140
  /** @example null */
15036
15141
  completed_date?: string | null;
@@ -15038,11 +15143,11 @@ export interface operations {
15038
15143
  condition_rating?: string;
15039
15144
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
15040
15145
  summary?: string;
15041
- /** @example 01 Jul 2026, 06:56 AM */
15146
+ /** @example 06 Jul 2026, 12:46 AM */
15042
15147
  next_inspection_date?: string;
15043
- /** @example 01 May 2026, 08:09 PM */
15148
+ /** @example 06 May 2026, 01:59 PM */
15044
15149
  created_at?: string;
15045
- /** @example 01 May 2026, 08:09 PM */
15150
+ /** @example 06 May 2026, 01:59 PM */
15046
15151
  updated_at?: string;
15047
15152
  };
15048
15153
  };
@@ -15084,18 +15189,18 @@ export interface operations {
15084
15189
  content: {
15085
15190
  "application/json": {
15086
15191
  data?: {
15087
- /** @example a7efe096-a742-4215-bb95-62a61c6265d7 */
15088
- uid?: string;
15089
- /** @example application/octet-stream */
15090
- file_type?: string;
15091
- /** @example licking pipe */
15092
- caption?: string;
15093
- /** @example 5c4154a1-b8d2-411d-b653-54fd110d4ef1/c07aa2f4-65bd-4cae-b8f0-7e55958bea6d.png */
15094
- storage_path?: string;
15095
- /** @example http://justinshome-backendcore.test/inspection-media/5c4154a1-b8d2-411d-b653-54fd110d4ef1/c07aa2f4-65bd-4cae-b8f0-7e55958bea6d.png */
15096
- url?: string;
15097
- /** @example 2026-04-24T07:37:18.000000Z */
15098
- created_at?: string;
15192
+ /** @example null */
15193
+ uid?: string | null;
15194
+ /** @example null */
15195
+ file_type?: string | null;
15196
+ /** @example null */
15197
+ caption?: string | null;
15198
+ /** @example null */
15199
+ storage_path?: string | null;
15200
+ /** @example null */
15201
+ url?: string | null;
15202
+ /** @example null */
15203
+ created_at?: string | null;
15099
15204
  };
15100
15205
  };
15101
15206
  };
@@ -15137,13 +15242,13 @@ export interface operations {
15137
15242
  content: {
15138
15243
  "application/json": {
15139
15244
  data?: {
15140
- /** @example ccc2d3eb-4458-4a9e-83a8-cc2127e1e8a1 */
15245
+ /** @example 0349979f-2b93-4915-82f7-d7866fda7965 */
15141
15246
  uid?: string;
15142
15247
  /** @example follow_up */
15143
15248
  inspection_type?: string;
15144
15249
  /** @example cancelled */
15145
15250
  status?: string;
15146
- /** @example 25 Apr 2026, 07:34 AM */
15251
+ /** @example 30 Apr 2026, 01:24 AM */
15147
15252
  scheduled_date?: string;
15148
15253
  /** @example null */
15149
15254
  completed_date?: string | null;
@@ -15151,11 +15256,11 @@ export interface operations {
15151
15256
  condition_rating?: string;
15152
15257
  /** @example Et animi quos velit et fugiat. */
15153
15258
  summary?: string;
15154
- /** @example 04 Aug 2026, 03:27 PM */
15259
+ /** @example 09 Aug 2026, 09:17 AM */
15155
15260
  next_inspection_date?: string;
15156
- /** @example 01 May 2026, 08:09 PM */
15261
+ /** @example 06 May 2026, 01:59 PM */
15157
15262
  created_at?: string;
15158
- /** @example 01 May 2026, 08:09 PM */
15263
+ /** @example 06 May 2026, 01:59 PM */
15159
15264
  updated_at?: string;
15160
15265
  };
15161
15266
  };
@@ -15192,13 +15297,13 @@ export interface operations {
15192
15297
  content: {
15193
15298
  "application/json": {
15194
15299
  data?: {
15195
- /** @example 7dc35a75-4563-448d-967e-dfd231089b57 */
15300
+ /** @example c634101a-8b89-4c78-b3fa-f27f8f56fcd4 */
15196
15301
  uid?: string;
15197
15302
  /** @example follow_up */
15198
15303
  inspection_type?: string;
15199
15304
  /** @example cancelled */
15200
15305
  status?: string;
15201
- /** @example 07 May 2026, 10:07 AM */
15306
+ /** @example 12 May 2026, 03:57 AM */
15202
15307
  scheduled_date?: string;
15203
15308
  /** @example null */
15204
15309
  completed_date?: string | null;
@@ -15206,11 +15311,11 @@ export interface operations {
15206
15311
  condition_rating?: string;
15207
15312
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
15208
15313
  summary?: string;
15209
- /** @example 01 Jul 2026, 06:56 AM */
15314
+ /** @example 06 Jul 2026, 12:46 AM */
15210
15315
  next_inspection_date?: string;
15211
- /** @example 01 May 2026, 08:09 PM */
15316
+ /** @example 06 May 2026, 01:59 PM */
15212
15317
  created_at?: string;
15213
- /** @example 01 May 2026, 08:09 PM */
15318
+ /** @example 06 May 2026, 01:59 PM */
15214
15319
  updated_at?: string;
15215
15320
  };
15216
15321
  };
@@ -15247,13 +15352,13 @@ export interface operations {
15247
15352
  content: {
15248
15353
  "application/json": {
15249
15354
  data?: {
15250
- /** @example ddb2b71b-6cda-46ce-a9ab-c45b09b3292d */
15355
+ /** @example f606983a-7fa4-456d-810e-d3ecee55eeaf */
15251
15356
  uid?: string;
15252
15357
  /** @example follow_up */
15253
15358
  inspection_type?: string;
15254
15359
  /** @example cancelled */
15255
15360
  status?: string;
15256
- /** @example 25 Apr 2026, 07:34 AM */
15361
+ /** @example 30 Apr 2026, 01:24 AM */
15257
15362
  scheduled_date?: string;
15258
15363
  /** @example null */
15259
15364
  completed_date?: string | null;
@@ -15261,11 +15366,11 @@ export interface operations {
15261
15366
  condition_rating?: string;
15262
15367
  /** @example Et animi quos velit et fugiat. */
15263
15368
  summary?: string;
15264
- /** @example 04 Aug 2026, 03:27 PM */
15369
+ /** @example 09 Aug 2026, 09:17 AM */
15265
15370
  next_inspection_date?: string;
15266
- /** @example 01 May 2026, 08:09 PM */
15371
+ /** @example 06 May 2026, 01:59 PM */
15267
15372
  created_at?: string;
15268
- /** @example 01 May 2026, 08:09 PM */
15373
+ /** @example 06 May 2026, 01:59 PM */
15269
15374
  updated_at?: string;
15270
15375
  };
15271
15376
  };
@@ -15392,29 +15497,29 @@ export interface operations {
15392
15497
  };
15393
15498
  } | {
15394
15499
  data?: {
15395
- /** @example 52b52d1b-7285-4fd7-b53e-3450ebb312f2 */
15500
+ /** @example 3108b07f-253b-4e13-ad99-71c239b00ec7 */
15396
15501
  uid?: string;
15397
15502
  /** @example 1 */
15398
15503
  tenancy_id?: number;
15399
- /** @example Quod saepe pariatur animi dolorum ut. */
15504
+ /** @example Exercitationem non aut autem cumque. */
15400
15505
  title?: string;
15401
- /** @example Quia aut aliquam inventore. Et blanditiis ipsum eveniet saepe atque ut blanditiis. Nesciunt amet assumenda molestiae error. Illum harum explicabo molestiae unde enim. Tenetur dolor non sed mollitia fugiat iusto. */
15506
+ /** @example Aut amet veniam sit molestias occaecati. Quaerat et placeat reiciendis eligendi. Qui veniam provident est facilis. */
15402
15507
  description?: string;
15403
15508
  /** @example in_progress */
15404
15509
  status?: string;
15405
- /** @example urgent */
15510
+ /** @example low */
15406
15511
  priority?: string;
15407
- /** @example 28 Apr 2026, 09:18 AM */
15512
+ /** @example 01 May 2026, 03:13 PM */
15408
15513
  reported_at?: string;
15409
15514
  /** @example null */
15410
15515
  assigned_at?: string | null;
15411
15516
  /** @example null */
15412
15517
  completed_at?: string | null;
15413
- /** @example 03 May 2026, 08:07 AM */
15518
+ /** @example 09 May 2026, 09:45 PM */
15414
15519
  sla_deadline?: string;
15415
- /** @example 01 May 2026, 08:09 PM */
15520
+ /** @example 06 May 2026, 01:59 PM */
15416
15521
  created_at?: string;
15417
- /** @example 01 May 2026, 08:09 PM */
15522
+ /** @example 06 May 2026, 01:59 PM */
15418
15523
  updated_at?: string;
15419
15524
  };
15420
15525
  };
@@ -15451,7 +15556,7 @@ export interface operations {
15451
15556
  content: {
15452
15557
  "application/json": {
15453
15558
  data?: {
15454
- /** @example d029c4d1-8efa-4c6b-aa18-e6732a5c8c8b */
15559
+ /** @example 6fee8479-1938-4340-ac8e-5cda6bf50dc8 */
15455
15560
  uid?: string;
15456
15561
  /** @example 1 */
15457
15562
  tenancy_id?: number;
@@ -15463,17 +15568,17 @@ export interface operations {
15463
15568
  status?: string;
15464
15569
  /** @example low */
15465
15570
  priority?: string;
15466
- /** @example 30 Apr 2026, 09:37 AM */
15571
+ /** @example 05 May 2026, 03:27 AM */
15467
15572
  reported_at?: string;
15468
15573
  /** @example null */
15469
15574
  assigned_at?: string | null;
15470
15575
  /** @example null */
15471
15576
  completed_at?: string | null;
15472
- /** @example 03 May 2026, 06:02 AM */
15577
+ /** @example 07 May 2026, 11:52 PM */
15473
15578
  sla_deadline?: string;
15474
- /** @example 01 May 2026, 08:09 PM */
15579
+ /** @example 06 May 2026, 01:59 PM */
15475
15580
  created_at?: string;
15476
- /** @example 01 May 2026, 08:09 PM */
15581
+ /** @example 06 May 2026, 01:59 PM */
15477
15582
  updated_at?: string;
15478
15583
  };
15479
15584
  };
@@ -15510,7 +15615,7 @@ export interface operations {
15510
15615
  content: {
15511
15616
  "application/json": {
15512
15617
  data?: {
15513
- /** @example adeec1e4-0069-42c5-8b98-3eb1b6d083e2 */
15618
+ /** @example 82e520cc-97c0-4890-af2f-f0e19d2b1fd6 */
15514
15619
  uid?: string;
15515
15620
  /** @example 1 */
15516
15621
  tenancy_id?: number;
@@ -15522,17 +15627,17 @@ export interface operations {
15522
15627
  status?: string;
15523
15628
  /** @example emergency */
15524
15629
  priority?: string;
15525
- /** @example 25 Apr 2026, 07:22 AM */
15630
+ /** @example 30 Apr 2026, 01:12 AM */
15526
15631
  reported_at?: string;
15527
- /** @example 30 Apr 2026, 03:42 AM */
15632
+ /** @example 04 May 2026, 09:32 PM */
15528
15633
  assigned_at?: string;
15529
15634
  /** @example null */
15530
15635
  completed_at?: string | null;
15531
- /** @example 03 May 2026, 09:04 AM */
15636
+ /** @example 08 May 2026, 02:54 AM */
15532
15637
  sla_deadline?: string;
15533
- /** @example 01 May 2026, 08:09 PM */
15638
+ /** @example 06 May 2026, 01:59 PM */
15534
15639
  created_at?: string;
15535
- /** @example 01 May 2026, 08:09 PM */
15640
+ /** @example 06 May 2026, 01:59 PM */
15536
15641
  updated_at?: string;
15537
15642
  };
15538
15643
  };
@@ -15569,7 +15674,7 @@ export interface operations {
15569
15674
  content: {
15570
15675
  "application/json": {
15571
15676
  data?: {
15572
- /** @example a3c04333-417b-408c-b03a-4f6d93ab92fd */
15677
+ /** @example 91e1b8e8-e288-47a2-af16-0df9b52ba751 */
15573
15678
  uid?: string;
15574
15679
  /** @example 1 */
15575
15680
  tenancy_id?: number;
@@ -15581,17 +15686,17 @@ export interface operations {
15581
15686
  status?: string;
15582
15687
  /** @example emergency */
15583
15688
  priority?: string;
15584
- /** @example 25 Apr 2026, 07:22 AM */
15689
+ /** @example 30 Apr 2026, 01:12 AM */
15585
15690
  reported_at?: string;
15586
- /** @example 30 Apr 2026, 03:42 AM */
15691
+ /** @example 04 May 2026, 09:32 PM */
15587
15692
  assigned_at?: string;
15588
15693
  /** @example null */
15589
15694
  completed_at?: string | null;
15590
- /** @example 03 May 2026, 09:04 AM */
15695
+ /** @example 08 May 2026, 02:54 AM */
15591
15696
  sla_deadline?: string;
15592
- /** @example 01 May 2026, 08:09 PM */
15697
+ /** @example 06 May 2026, 01:59 PM */
15593
15698
  created_at?: string;
15594
- /** @example 01 May 2026, 08:09 PM */
15699
+ /** @example 06 May 2026, 01:59 PM */
15595
15700
  updated_at?: string;
15596
15701
  };
15597
15702
  };
@@ -15628,7 +15733,7 @@ export interface operations {
15628
15733
  content: {
15629
15734
  "application/json": {
15630
15735
  data?: {
15631
- /** @example f22ee376-b58a-4894-b9e3-68ab877f98bf */
15736
+ /** @example 50b2774d-0ad0-4c5b-a061-fd6f09929c53 */
15632
15737
  uid?: string;
15633
15738
  /** @example 1 */
15634
15739
  tenancy_id?: number;
@@ -15640,17 +15745,17 @@ export interface operations {
15640
15745
  status?: string;
15641
15746
  /** @example emergency */
15642
15747
  priority?: string;
15643
- /** @example 25 Apr 2026, 07:22 AM */
15748
+ /** @example 30 Apr 2026, 01:12 AM */
15644
15749
  reported_at?: string;
15645
- /** @example 30 Apr 2026, 03:42 AM */
15750
+ /** @example 04 May 2026, 09:32 PM */
15646
15751
  assigned_at?: string;
15647
15752
  /** @example null */
15648
15753
  completed_at?: string | null;
15649
- /** @example 03 May 2026, 09:04 AM */
15754
+ /** @example 08 May 2026, 02:54 AM */
15650
15755
  sla_deadline?: string;
15651
- /** @example 01 May 2026, 08:09 PM */
15756
+ /** @example 06 May 2026, 01:59 PM */
15652
15757
  created_at?: string;
15653
- /** @example 01 May 2026, 08:09 PM */
15758
+ /** @example 06 May 2026, 01:59 PM */
15654
15759
  updated_at?: string;
15655
15760
  };
15656
15761
  };
@@ -15723,7 +15828,9 @@ export interface operations {
15723
15828
  * "tenant": {
15724
15829
  * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
15725
15830
  * "name": "Sarah Jenkins",
15726
- * "email": "sarah@example.com"
15831
+ * "email": "sarah@example.com",
15832
+ * "phone": "+447700900123",
15833
+ * "address": "10 Oxford Street, London, W1"
15727
15834
  * },
15728
15835
  * "compliance_status": {
15729
15836
  * "overall": "compliant",
@@ -15780,6 +15887,10 @@ export interface operations {
15780
15887
  name?: string;
15781
15888
  /** @example sarah@example.com */
15782
15889
  email?: string;
15890
+ /** @example +447700900123 */
15891
+ phone?: string;
15892
+ /** @example 10 Oxford Street, London, W1 */
15893
+ address?: string;
15783
15894
  };
15784
15895
  compliance_status?: {
15785
15896
  /** @example compliant */
@@ -15883,7 +15994,9 @@ export interface operations {
15883
15994
  * "tenant": {
15884
15995
  * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
15885
15996
  * "name": "Sarah Jenkins",
15886
- * "email": "sarah@example.com"
15997
+ * "email": "sarah@example.com",
15998
+ * "phone": "+447700900123",
15999
+ * "address": "10 Oxford Street, London, W1"
15887
16000
  * },
15888
16001
  * "compliance_status": {
15889
16002
  * "overall": "compliant",
@@ -15940,6 +16053,10 @@ export interface operations {
15940
16053
  name?: string;
15941
16054
  /** @example sarah@example.com */
15942
16055
  email?: string;
16056
+ /** @example +447700900123 */
16057
+ phone?: string;
16058
+ /** @example 10 Oxford Street, London, W1 */
16059
+ address?: string;
15943
16060
  };
15944
16061
  compliance_status?: {
15945
16062
  /** @example compliant */
@@ -15990,12 +16107,12 @@ export interface operations {
15990
16107
  data?: {
15991
16108
  /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
15992
16109
  uid?: string;
15993
- /** @example 4 */
15994
- listing_id?: number;
15995
- /** @example 2 */
15996
- landlord_id?: number;
15997
- /** @example 3 */
15998
- tenant_id?: number;
16110
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
16111
+ listing_uid?: string;
16112
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
16113
+ landlord_uid?: string;
16114
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
16115
+ tenant_uid?: string;
15999
16116
  /** @example 1500.00 */
16000
16117
  rent_amount?: string;
16001
16118
  /** @example 1500.00 */
@@ -16059,6 +16176,10 @@ export interface operations {
16059
16176
  name?: string;
16060
16177
  /** @example sarah@example.com */
16061
16178
  email?: string;
16179
+ /** @example +447700900123 */
16180
+ phone?: string;
16181
+ /** @example 10 Oxford Street, London, W1 */
16182
+ address?: string;
16062
16183
  };
16063
16184
  /**
16064
16185
  * @example [
@@ -16221,8 +16342,28 @@ export interface operations {
16221
16342
  compliance_status?: {
16222
16343
  /** @example compliant */
16223
16344
  overall?: string;
16224
- /** @example [] */
16225
- breakdown?: unknown[];
16345
+ /**
16346
+ * @example [
16347
+ * {
16348
+ * "compliance_key": "gas_safety_certificate",
16349
+ * "state": "compliant",
16350
+ * "valid_until": "2027-03-01"
16351
+ * },
16352
+ * {
16353
+ * "compliance_key": "electrical_installation_condition_report",
16354
+ * "state": "non_compliant",
16355
+ * "valid_until": null
16356
+ * }
16357
+ * ]
16358
+ */
16359
+ breakdown?: {
16360
+ /** @example gas_safety_certificate */
16361
+ compliance_key?: string;
16362
+ /** @example compliant */
16363
+ state?: string;
16364
+ /** @example 2027-03-01 */
16365
+ valid_until?: string;
16366
+ }[];
16226
16367
  };
16227
16368
  };
16228
16369
  };
@@ -18719,84 +18860,185 @@ export interface operations {
18719
18860
  };
18720
18861
  };
18721
18862
  };
18722
- listingHistoryInspection: {
18863
+ fetchInspection: {
18723
18864
  parameters: {
18724
- query?: {
18725
- /** @description Number of records per page. Must be at least 1. Must not be greater than 100. */
18726
- per_page?: number | null;
18727
- /** @description The current page number. Must be at least 1. */
18728
- page?: number | null;
18729
- };
18865
+ query?: never;
18730
18866
  header?: never;
18731
18867
  path: {
18732
- /** @description Optional parameter. uuid required The uid of listing. */
18733
- listing_uid: string;
18868
+ /** @description The unique UID of the inspection. */
18869
+ uid: string;
18734
18870
  };
18735
18871
  cookie?: never;
18736
18872
  };
18737
18873
  requestBody?: never;
18738
18874
  responses: {
18739
- /** @description Retrieve inspections history for a given listing */
18740
18875
  200: {
18741
18876
  headers: {
18742
18877
  [name: string]: unknown;
18743
18878
  };
18744
18879
  content: {
18745
18880
  "application/json": {
18746
- /** @example Listing inspection fetched successfully */
18881
+ /** @example Inspection fetched successfully */
18747
18882
  message?: string;
18748
18883
  /** @example null */
18749
18884
  event?: string | null;
18750
18885
  data?: {
18886
+ /** @example insp_34fda1 */
18887
+ uid?: string;
18888
+ /** @example routine */
18889
+ inspection_type?: string;
18890
+ /** @example scheduled */
18891
+ status?: string;
18892
+ /** @example 10 Apr, 2026 10:30 AM */
18893
+ scheduled_date?: string;
18894
+ /** @example null */
18895
+ completed_date?: string | null;
18896
+ /** @example null */
18897
+ condition_rating?: string | null;
18898
+ /** @example null */
18899
+ summary?: string | null;
18900
+ /** @example 10 Jun, 2026 10:30 AM */
18901
+ next_inspection_date?: string;
18902
+ inspector?: {
18903
+ /** @example 12 */
18904
+ id?: number;
18905
+ /** @example Inspector Jane Doe */
18906
+ name?: string;
18907
+ };
18751
18908
  /**
18752
18909
  * @example [
18753
18910
  * {
18754
- * "uid": "insp_34fda1",
18755
- * "inspection_type": "routine",
18756
- * "status": "scheduled",
18757
- * "scheduled_date": "2026-04-10T10:30:00Z",
18758
- * "completed_date": null,
18759
- * "condition_rating": null,
18760
- * "summary": null,
18761
- * "next_inspection_date": "2026-06-10T10:30:00Z",
18762
- * "inspector": {
18763
- * "id": 12,
18764
- * "name": "Inspector Jane Doe"
18765
- * },
18766
- * "media": [
18767
- * {
18768
- * "uid": "ism_34fda1",
18769
- * "file_type": "image/jpeg",
18770
- * "caption": "Kitchen leak evidence",
18771
- * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
18772
- * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
18773
- * }
18774
- * ],
18775
- * "created_at": "2026-04-01T09:00:00Z",
18776
- * "updated_at": "2026-04-01T09:00:00Z"
18911
+ * "uid": "ism_34fda1",
18912
+ * "file_type": "image/jpeg",
18913
+ * "caption": "Kitchen leak evidence",
18914
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
18915
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
18777
18916
  * }
18778
18917
  * ]
18779
18918
  */
18780
- items?: {
18781
- /** @example insp_34fda1 */
18919
+ media?: {
18920
+ /** @example ism_34fda1 */
18782
18921
  uid?: string;
18783
- /** @example routine */
18784
- inspection_type?: string;
18785
- /** @example scheduled */
18786
- status?: string;
18787
- /** @example 2026-04-10T10:30:00Z */
18788
- scheduled_date?: string;
18789
- /** @example null */
18790
- completed_date?: string | null;
18791
- /** @example null */
18792
- condition_rating?: string | null;
18793
- /** @example null */
18794
- summary?: string | null;
18795
- /** @example 2026-06-10T10:30:00Z */
18796
- next_inspection_date?: string;
18797
- inspector?: {
18798
- /** @example 12 */
18799
- id?: number;
18922
+ /** @example image/jpeg */
18923
+ file_type?: string;
18924
+ /** @example Kitchen leak evidence */
18925
+ caption?: string;
18926
+ /** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
18927
+ path?: string;
18928
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
18929
+ url?: string;
18930
+ }[];
18931
+ /** @example 01 Apr, 2026 09:00 AM */
18932
+ created_at?: string;
18933
+ /** @example 01 Apr, 2026 09:00 AM */
18934
+ updated_at?: string;
18935
+ };
18936
+ } | {
18937
+ data?: {
18938
+ /** @example 028fe024-251e-4852-bc78-c1e756fea5a4 */
18939
+ uid?: string;
18940
+ /** @example follow_up */
18941
+ inspection_type?: string;
18942
+ /** @example cancelled */
18943
+ status?: string;
18944
+ /** @example 12 May 2026, 03:57 AM */
18945
+ scheduled_date?: string;
18946
+ /** @example null */
18947
+ completed_date?: string | null;
18948
+ /** @example attention_required */
18949
+ condition_rating?: string;
18950
+ /** @example Quidem nostrum qui commodi incidunt iure odit. */
18951
+ summary?: string;
18952
+ /** @example 06 Jul 2026, 12:46 AM */
18953
+ next_inspection_date?: string;
18954
+ /** @example 06 May 2026, 01:59 PM */
18955
+ created_at?: string;
18956
+ /** @example 06 May 2026, 01:59 PM */
18957
+ updated_at?: string;
18958
+ };
18959
+ };
18960
+ };
18961
+ };
18962
+ };
18963
+ };
18964
+ listingHistoryInspection: {
18965
+ parameters: {
18966
+ query?: {
18967
+ /** @description Number of records per page. Must be at least 1. Must not be greater than 100. */
18968
+ per_page?: number | null;
18969
+ /** @description The current page number. Must be at least 1. */
18970
+ page?: number | null;
18971
+ };
18972
+ header?: never;
18973
+ path: {
18974
+ /** @description Optional parameter. uuid required The uid of listing. */
18975
+ listing_uid: string;
18976
+ };
18977
+ cookie?: never;
18978
+ };
18979
+ requestBody?: never;
18980
+ responses: {
18981
+ /** @description Retrieve inspections history for a given listing */
18982
+ 200: {
18983
+ headers: {
18984
+ [name: string]: unknown;
18985
+ };
18986
+ content: {
18987
+ "application/json": {
18988
+ /** @example Listing inspection fetched successfully */
18989
+ message?: string;
18990
+ /** @example null */
18991
+ event?: string | null;
18992
+ data?: {
18993
+ /**
18994
+ * @example [
18995
+ * {
18996
+ * "uid": "insp_34fda1",
18997
+ * "inspection_type": "routine",
18998
+ * "status": "scheduled",
18999
+ * "scheduled_date": "2026-04-10T10:30:00Z",
19000
+ * "completed_date": null,
19001
+ * "condition_rating": null,
19002
+ * "summary": null,
19003
+ * "next_inspection_date": "2026-06-10T10:30:00Z",
19004
+ * "inspector": {
19005
+ * "id": 12,
19006
+ * "name": "Inspector Jane Doe"
19007
+ * },
19008
+ * "media": [
19009
+ * {
19010
+ * "uid": "ism_34fda1",
19011
+ * "file_type": "image/jpeg",
19012
+ * "caption": "Kitchen leak evidence",
19013
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
19014
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
19015
+ * }
19016
+ * ],
19017
+ * "created_at": "2026-04-01T09:00:00Z",
19018
+ * "updated_at": "2026-04-01T09:00:00Z"
19019
+ * }
19020
+ * ]
19021
+ */
19022
+ items?: {
19023
+ /** @example insp_34fda1 */
19024
+ uid?: string;
19025
+ /** @example routine */
19026
+ inspection_type?: string;
19027
+ /** @example scheduled */
19028
+ status?: string;
19029
+ /** @example 2026-04-10T10:30:00Z */
19030
+ scheduled_date?: string;
19031
+ /** @example null */
19032
+ completed_date?: string | null;
19033
+ /** @example null */
19034
+ condition_rating?: string | null;
19035
+ /** @example null */
19036
+ summary?: string | null;
19037
+ /** @example 2026-06-10T10:30:00Z */
19038
+ next_inspection_date?: string;
19039
+ inspector?: {
19040
+ /** @example 12 */
19041
+ id?: number;
18800
19042
  /** @example Inspector Jane Doe */
18801
19043
  name?: string;
18802
19044
  };
@@ -18904,15 +19146,15 @@ export interface operations {
18904
19146
  content: {
18905
19147
  "application/json": {
18906
19148
  data?: {
18907
- /** @example 8c67c889-e167-4f85-918d-0b0e493a21c8 */
19149
+ /** @example c8c525a7-c4df-484b-b864-04ab9cd07ef0 */
18908
19150
  uid?: string;
18909
- /** @example Ms. Audra Crooks II */
19151
+ /** @example Emily Reid */
18910
19152
  username?: string;
18911
19153
  /** @example null */
18912
19154
  first_name?: string | null;
18913
19155
  /** @example null */
18914
19156
  last_name?: string | null;
18915
- /** @example gulgowski.asia@example.com */
19157
+ /** @example anthony.khan@example.com */
18916
19158
  email?: string;
18917
19159
  /** @example null */
18918
19160
  phone?: string | null;
@@ -18934,9 +19176,9 @@ export interface operations {
18934
19176
  timezone?: string;
18935
19177
  /** @example Customer */
18936
19178
  user_type?: string;
18937
- /** @example 01 May 2026, 08:09 PM */
19179
+ /** @example 06 May 2026, 01:59 PM */
18938
19180
  created?: string;
18939
- /** @example 0 seconds ago */
19181
+ /** @example 1 second ago */
18940
19182
  email_verified_at?: string;
18941
19183
  verification_status?: {
18942
19184
  /** @example not_verified */
@@ -19403,15 +19645,15 @@ export interface operations {
19403
19645
  content: {
19404
19646
  "application/json": {
19405
19647
  data?: {
19406
- /** @example 1898d092-f3fd-44d3-b227-6d2dd5b2d2e8 */
19648
+ /** @example ddca238b-5370-4c44-b7e3-1c9e7083033e */
19407
19649
  uid?: string;
19408
- /** @example Ms. Audra Crooks II */
19650
+ /** @example Emily Reid */
19409
19651
  username?: string;
19410
19652
  /** @example null */
19411
19653
  first_name?: string | null;
19412
19654
  /** @example null */
19413
19655
  last_name?: string | null;
19414
- /** @example idickens@example.org */
19656
+ /** @example jbailey@example.org */
19415
19657
  email?: string;
19416
19658
  /** @example null */
19417
19659
  phone?: string | null;
@@ -19433,7 +19675,7 @@ export interface operations {
19433
19675
  timezone?: string;
19434
19676
  /** @example Customer */
19435
19677
  user_type?: string;
19436
- /** @example 01 May 2026, 08:09 PM */
19678
+ /** @example 06 May 2026, 01:59 PM */
19437
19679
  created?: string;
19438
19680
  /** @example 0 seconds ago */
19439
19681
  email_verified_at?: string;
@@ -19518,24 +19760,18 @@ export interface operations {
19518
19760
  reservedBookingsLandlord: {
19519
19761
  parameters: {
19520
19762
  query?: {
19763
+ /** @description Filter bookings by tenant/guest name. */
19764
+ tenant_name?: string | null;
19521
19765
  /** @description Number of bookings per page. */
19522
- per_page?: number;
19766
+ per_page?: number | null;
19767
+ /** @description Current page number. */
19768
+ page?: number | null;
19523
19769
  };
19524
19770
  header?: never;
19525
19771
  path?: never;
19526
19772
  cookie?: never;
19527
19773
  };
19528
- requestBody?: {
19529
- content: {
19530
- "application/json": {
19531
- /**
19532
- * @description Must be at least 1. Must not be greater than 100.
19533
- * @example 1
19534
- */
19535
- per_page?: number | null;
19536
- };
19537
- };
19538
- };
19774
+ requestBody?: never;
19539
19775
  responses: {
19540
19776
  /** @description Retrieve landlord reserved bookings */
19541
19777
  200: {
@@ -19587,7 +19823,8 @@ export interface operations {
19587
19823
  * "end_date": "13 Jun 2026",
19588
19824
  * "nights": 3,
19589
19825
  * "status": "pending",
19590
- * "total_price": "450.00"
19826
+ * "total_price": "450.00",
19827
+ * "created_at": "06 May, 2026 10:30 AM"
19591
19828
  * }
19592
19829
  * ]
19593
19830
  */
@@ -19654,6 +19891,8 @@ export interface operations {
19654
19891
  status?: string;
19655
19892
  /** @example 450.00 */
19656
19893
  total_price?: string;
19894
+ /** @example 06 May, 2026 10:30 AM */
19895
+ created_at?: string;
19657
19896
  }[];
19658
19897
  pagination?: {
19659
19898
  /** @example 1 */
@@ -20065,7 +20304,7 @@ export interface operations {
20065
20304
  */
20066
20305
  status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
20067
20306
  /**
20068
- * @example admin
20307
+ * @example tenant
20069
20308
  * @enum {string|null}
20070
20309
  */
20071
20310
  source?: "tenant" | "landlord" | "admin" | null;
@@ -20294,7 +20533,7 @@ export interface operations {
20294
20533
  content: {
20295
20534
  "application/json": {
20296
20535
  data?: {
20297
- /** @example d0516047-29c1-4aff-bb55-2a5f54dc21d1 */
20536
+ /** @example b08e4df0-aa92-48f6-93d7-fb4c8f32f8e8 */
20298
20537
  uid?: string;
20299
20538
  /** @example JH-APP-2026-936806 */
20300
20539
  application_ref?: string;
@@ -20315,7 +20554,7 @@ export interface operations {
20315
20554
  /** @example null */
20316
20555
  rejection_reason?: string | null;
20317
20556
  timeline?: {
20318
- /** @example 01 May 2026, 08:09 PM */
20557
+ /** @example 06 May 2026, 01:59 PM */
20319
20558
  created_at?: string;
20320
20559
  /** @example null */
20321
20560
  approved_at?: string | null;
@@ -20349,7 +20588,7 @@ export interface operations {
20349
20588
  content: {
20350
20589
  "application/json": {
20351
20590
  data?: {
20352
- /** @example 05933703-b390-49fe-b87a-fbc8a574db23 */
20591
+ /** @example 552526c7-c37c-4392-8489-1030c8aadb7d */
20353
20592
  uid?: string;
20354
20593
  /** @example JH-APP-2026-757680 */
20355
20594
  application_ref?: string;
@@ -20370,7 +20609,7 @@ export interface operations {
20370
20609
  /** @example null */
20371
20610
  rejection_reason?: string | null;
20372
20611
  timeline?: {
20373
- /** @example 01 May 2026, 08:09 PM */
20612
+ /** @example 06 May 2026, 01:59 PM */
20374
20613
  created_at?: string;
20375
20614
  /** @example null */
20376
20615
  approved_at?: string | null;
@@ -20414,7 +20653,7 @@ export interface operations {
20414
20653
  content: {
20415
20654
  "application/json": {
20416
20655
  data?: {
20417
- /** @example 08d6fc04-2240-40a9-ae59-094113b01131 */
20656
+ /** @example ebe6c30c-8049-40c4-92d5-802e605e1f0c */
20418
20657
  uid?: string;
20419
20658
  /** @example JH-APP-2026-449171 */
20420
20659
  application_ref?: string;
@@ -20435,7 +20674,7 @@ export interface operations {
20435
20674
  /** @example null */
20436
20675
  rejection_reason?: string | null;
20437
20676
  timeline?: {
20438
- /** @example 01 May 2026, 08:09 PM */
20677
+ /** @example 06 May 2026, 01:59 PM */
20439
20678
  created_at?: string;
20440
20679
  /** @example null */
20441
20680
  approved_at?: string | null;
@@ -20469,7 +20708,7 @@ export interface operations {
20469
20708
  content: {
20470
20709
  "application/json": {
20471
20710
  data?: {
20472
- /** @example 69cf5a2a-f680-4a81-a30a-4dc47e08568f */
20711
+ /** @example 5cd2a453-b7e3-4137-beeb-df569bf9b8a1 */
20473
20712
  uid?: string;
20474
20713
  /** @example 4881.50 */
20475
20714
  rent_amount?: string;
@@ -20477,9 +20716,9 @@ export interface operations {
20477
20716
  deposit_amount?: string;
20478
20717
  /** @example offer_accepted */
20479
20718
  state?: string;
20480
- /** @example 2025-08-24T00:00:00.000000Z */
20719
+ /** @example 2025-08-29T00:00:00.000000Z */
20481
20720
  start_date?: string;
20482
- /** @example 2026-08-24T00:00:00.000000Z */
20721
+ /** @example 2026-08-29T00:00:00.000000Z */
20483
20722
  end_date?: string;
20484
20723
  /** @example false */
20485
20724
  is_periodic?: boolean;
@@ -20487,7 +20726,7 @@ export interface operations {
20487
20726
  company_name?: string | null;
20488
20727
  /** @example null */
20489
20728
  company_registration_number?: string | null;
20490
- /** @example 2026-05-01T20:09:06.000000Z */
20729
+ /** @example 2026-05-06T13:59:06.000000Z */
20491
20730
  created_at?: string;
20492
20731
  };
20493
20732
  };
@@ -20495,6 +20734,88 @@ export interface operations {
20495
20734
  };
20496
20735
  };
20497
20736
  };
20737
+ fetchLandlordListingReviews: {
20738
+ parameters: {
20739
+ query?: {
20740
+ /** @description Number of records per page. */
20741
+ per_page?: number;
20742
+ /** @description Current page number. */
20743
+ page?: number;
20744
+ };
20745
+ header?: never;
20746
+ path?: never;
20747
+ cookie?: never;
20748
+ };
20749
+ requestBody?: never;
20750
+ responses: {
20751
+ /** @description Retrieve reviews for listings owned by the authenticated landlord */
20752
+ 200: {
20753
+ headers: {
20754
+ [name: string]: unknown;
20755
+ };
20756
+ content: {
20757
+ "application/json": {
20758
+ /** @example Review retrieved successfully */
20759
+ message?: string;
20760
+ /** @example null */
20761
+ event?: string | null;
20762
+ data?: {
20763
+ /**
20764
+ * @example [
20765
+ * {
20766
+ * "id": 1,
20767
+ * "rating": 5,
20768
+ * "comment": "Excellent service.",
20769
+ * "reviewable_type": "listing",
20770
+ * "reviewer": {
20771
+ * "uid": "aja asjas",
20772
+ * "name": "Sarah Jenkins"
20773
+ * },
20774
+ * "created_at": "28 Apr, 2026 09:00 AM",
20775
+ * "updated_at": "28 Apr, 2026 09:00 AM"
20776
+ * }
20777
+ * ]
20778
+ */
20779
+ items?: {
20780
+ /** @example 1 */
20781
+ id?: number;
20782
+ /** @example 5 */
20783
+ rating?: number;
20784
+ /** @example Excellent service. */
20785
+ comment?: string;
20786
+ /** @example listing */
20787
+ reviewable_type?: string;
20788
+ reviewer?: {
20789
+ /** @example aja asjas */
20790
+ uid?: string;
20791
+ /** @example Sarah Jenkins */
20792
+ name?: string;
20793
+ };
20794
+ /** @example 28 Apr, 2026 09:00 AM */
20795
+ created_at?: string;
20796
+ /** @example 28 Apr, 2026 09:00 AM */
20797
+ updated_at?: string;
20798
+ }[];
20799
+ pagination?: {
20800
+ /** @example 1 */
20801
+ current_page?: number;
20802
+ /** @example 15 */
20803
+ per_page?: number;
20804
+ /** @example 0 */
20805
+ total?: number;
20806
+ /** @example 1 */
20807
+ last_page?: number;
20808
+ /** @example null */
20809
+ from?: string | null;
20810
+ /** @example null */
20811
+ to?: string | null;
20812
+ };
20813
+ };
20814
+ };
20815
+ };
20816
+ };
20817
+ };
20818
+ };
20498
20819
  createListingDraft: {
20499
20820
  parameters: {
20500
20821
  query?: never;
@@ -20534,20 +20855,20 @@ export interface operations {
20534
20855
  content: {
20535
20856
  "application/json": {
20536
20857
  data?: {
20537
- /** @example New For Sale Used Item draft • 1 May 2026, 8:09 PM */
20858
+ /** @example New For Sale Property draft • 6 May 2026, 1:59 PM */
20538
20859
  draft_name?: string;
20539
- /** @example LST-UIT-SAL-MONCIXIHQTR */
20860
+ /** @example LST-PRP-SAL-MOU4ICTRTDL */
20540
20861
  sku?: string;
20541
- /** @example cacd547c-4379-471c-9ed7-03a5f61c59ac */
20862
+ /** @example 8eff4c43-938a-48d8-bbc3-89dbdd2a85e6 */
20542
20863
  uid?: string;
20543
20864
  /** @example Sale */
20544
20865
  listing_type?: string;
20545
- /** @example Used Item */
20866
+ /** @example Property */
20546
20867
  vertical?: string;
20547
- /** @example null */
20548
- arrangement_type?: string | null;
20549
- /** @example null */
20550
- arrangement_type_label?: string | null;
20868
+ /** @example let_to_let */
20869
+ arrangement_type?: string;
20870
+ /** @example Let to Let */
20871
+ arrangement_type_label?: string;
20551
20872
  /** @example null */
20552
20873
  price?: string | null;
20553
20874
  /** @example draft */
@@ -20558,8 +20879,10 @@ export interface operations {
20558
20879
  published_since?: string | null;
20559
20880
  /** @example false */
20560
20881
  is_visible?: boolean;
20561
- /** @example [] */
20562
- summary?: unknown[];
20882
+ summary?: {
20883
+ /** @example null */
20884
+ availability?: string | null;
20885
+ };
20563
20886
  /** @example [] */
20564
20887
  workflow?: unknown[];
20565
20888
  /** @example [] */
@@ -20660,9 +20983,9 @@ export interface operations {
20660
20983
  /**
20661
20984
  * @example [
20662
20985
  * {
20663
- * "draft_name": "New For Rent Property draft • 1 May 2026, 8:09 PM",
20664
- * "sku": "LST-PRP-LTR-MONCIXJ0MH7",
20665
- * "uid": "f62db274-6382-49ab-8752-4b88e9ba1fd3",
20986
+ * "draft_name": "New For Rent Property draft • 6 May 2026, 1:59 PM",
20987
+ * "sku": "LST-PRP-LTR-MOU4ICUGHDW",
20988
+ * "uid": "e08b3f88-b72f-4aae-82c1-3003f47e9961",
20666
20989
  * "listing_type": "Rent",
20667
20990
  * "vertical": "Property",
20668
20991
  * "arrangement_type": "let_to_let",
@@ -20679,9 +21002,9 @@ export interface operations {
20679
21002
  * "media": []
20680
21003
  * },
20681
21004
  * {
20682
- * "draft_name": "New Short Let Property draft • 1 May 2026, 8:09 PM",
20683
- * "sku": "LST-PRP-SHL-MONCIXJ3KLE",
20684
- * "uid": "3652f9a6-2412-4923-ba16-f3ba1eb3b580",
21005
+ * "draft_name": "New Short Let Property draft • 6 May 2026, 1:59 PM",
21006
+ * "sku": "LST-PRP-SHL-MOU4ICUIR1M",
21007
+ * "uid": "8a6004fe-6a28-4ba1-b8b1-937345dae119",
20685
21008
  * "listing_type": "Short Let",
20686
21009
  * "vertical": "Property",
20687
21010
  * "arrangement_type": "short_term_managed",
@@ -20700,11 +21023,11 @@ export interface operations {
20700
21023
  * ]
20701
21024
  */
20702
21025
  data?: {
20703
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
21026
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
20704
21027
  draft_name?: string;
20705
- /** @example LST-PRP-LTR-MONCIXJ0MH7 */
21028
+ /** @example LST-PRP-LTR-MOU4ICUGHDW */
20706
21029
  sku?: string;
20707
- /** @example f62db274-6382-49ab-8752-4b88e9ba1fd3 */
21030
+ /** @example e08b3f88-b72f-4aae-82c1-3003f47e9961 */
20708
21031
  uid?: string;
20709
21032
  /** @example Rent */
20710
21033
  listing_type?: string;
@@ -20814,9 +21137,9 @@ export interface operations {
20814
21137
  /**
20815
21138
  * @example [
20816
21139
  * {
20817
- * "draft_name": "New For Rent Property draft • 1 May 2026, 8:09 PM",
20818
- * "sku": "LST-PRP-LTR-MONCIXJAG9J",
20819
- * "uid": "eaf9fb00-e127-40b5-ad36-c6a588b36000",
21140
+ * "draft_name": "New For Rent Property draft • 6 May 2026, 1:59 PM",
21141
+ * "sku": "LST-PRP-LTR-MOU4ICUQEYM",
21142
+ * "uid": "167e95a0-9827-4bc6-afb2-4a1cec5dddc8",
20820
21143
  * "listing_type": "Rent",
20821
21144
  * "vertical": "Property",
20822
21145
  * "arrangement_type": "let_to_let",
@@ -20833,9 +21156,9 @@ export interface operations {
20833
21156
  * "media": []
20834
21157
  * },
20835
21158
  * {
20836
- * "draft_name": "New Short Let Property draft • 1 May 2026, 8:09 PM",
20837
- * "sku": "LST-PRP-SHL-MONCIXJCJ9O",
20838
- * "uid": "ac777487-5f1e-47e2-afb8-23645844e0dd",
21159
+ * "draft_name": "New Short Let Property draft • 6 May 2026, 1:59 PM",
21160
+ * "sku": "LST-PRP-SHL-MOU4ICUT8TP",
21161
+ * "uid": "7fae2697-03ab-49c1-9b2b-615a96245aa1",
20839
21162
  * "listing_type": "Short Let",
20840
21163
  * "vertical": "Property",
20841
21164
  * "arrangement_type": "short_term_managed",
@@ -20854,11 +21177,11 @@ export interface operations {
20854
21177
  * ]
20855
21178
  */
20856
21179
  data?: {
20857
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
21180
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
20858
21181
  draft_name?: string;
20859
- /** @example LST-PRP-LTR-MONCIXJAG9J */
21182
+ /** @example LST-PRP-LTR-MOU4ICUQEYM */
20860
21183
  sku?: string;
20861
- /** @example eaf9fb00-e127-40b5-ad36-c6a588b36000 */
21184
+ /** @example 167e95a0-9827-4bc6-afb2-4a1cec5dddc8 */
20862
21185
  uid?: string;
20863
21186
  /** @example Rent */
20864
21187
  listing_type?: string;
@@ -22107,7 +22430,7 @@ export interface operations {
22107
22430
  content: {
22108
22431
  "application/json": {
22109
22432
  data?: {
22110
- /** @example 2ee08487-c839-4162-a690-fb37c8d16bd8 */
22433
+ /** @example 8bfafb9f-8c16-4be7-b8fe-b11c85639050 */
22111
22434
  uid?: string;
22112
22435
  /** @example photo */
22113
22436
  media_type?: string;
@@ -22256,11 +22579,11 @@ export interface operations {
22256
22579
  content: {
22257
22580
  "application/json": {
22258
22581
  data?: {
22259
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
22582
+ /** @example New For Rent Property draft • 6 May 2026, 1:59 PM */
22260
22583
  draft_name?: string;
22261
- /** @example LST-PRP-LTR-MONCIXLDFAI */
22584
+ /** @example LST-PRP-LTR-MOU4ICX5A7N */
22262
22585
  sku?: string;
22263
- /** @example 1fcc041d-c104-463f-b56f-82f3ebbe1d73 */
22586
+ /** @example 61ec0313-59d9-4742-87c8-4a8c4eac5270 */
22264
22587
  uid?: string;
22265
22588
  /** @example Rent */
22266
22589
  listing_type?: string;
@@ -22420,7 +22743,7 @@ export interface operations {
22420
22743
  content: {
22421
22744
  "application/json": {
22422
22745
  data?: {
22423
- /** @example cbae8c95-a4dc-45b2-a06e-76fca383f680 */
22746
+ /** @example 23feb2fd-a67e-4ccc-8fb9-f39b6d039af4 */
22424
22747
  uid?: string;
22425
22748
  /** @example null */
22426
22749
  compliances?: string | null;
@@ -22471,7 +22794,7 @@ export interface operations {
22471
22794
  content: {
22472
22795
  "application/json": {
22473
22796
  data?: {
22474
- /** @example 179 */
22797
+ /** @example 80 */
22475
22798
  id?: number;
22476
22799
  compliance?: {
22477
22800
  /** @example 1 */
@@ -22493,7 +22816,7 @@ export interface operations {
22493
22816
  reviewed_by?: number;
22494
22817
  /** @example null */
22495
22818
  reviewed_at?: string | null;
22496
- /** @example 2026-05-01T20:09:06.000000Z */
22819
+ /** @example 2026-05-06T13:59:06.000000Z */
22497
22820
  created_at?: string;
22498
22821
  };
22499
22822
  };
@@ -22532,126 +22855,156 @@ export interface operations {
22532
22855
  };
22533
22856
  getLandlordTenancies: {
22534
22857
  parameters: {
22535
- query?: never;
22858
+ query?: {
22859
+ /** @description Filter by tenant name. */
22860
+ tenant_name?: string | null;
22861
+ /** @description Filter by tenancy state. */
22862
+ state?: string | null;
22863
+ /** @description Number of records per page. */
22864
+ per_page?: number | null;
22865
+ /** @description Current page number. */
22866
+ page?: number | null;
22867
+ };
22536
22868
  header?: never;
22537
22869
  path?: never;
22538
22870
  cookie?: never;
22539
22871
  };
22540
22872
  requestBody?: never;
22541
22873
  responses: {
22874
+ /** @description Retrieve tenancies for the authenticated landlord */
22542
22875
  200: {
22543
22876
  headers: {
22544
22877
  [name: string]: unknown;
22545
22878
  };
22546
22879
  content: {
22547
22880
  "application/json": {
22548
- /**
22549
- * @example [
22550
- * {
22551
- * "uid": "cded9829-09b6-4309-9667-eb281402416f",
22552
- * "rent_amount": "4881.50",
22553
- * "deposit_amount": "2151.17",
22554
- * "state": "offer_accepted",
22555
- * "start_date": "2025-08-24T00:00:00.000000Z",
22556
- * "end_date": "2026-08-24T00:00:00.000000Z",
22557
- * "is_periodic": false,
22558
- * "company_name": null,
22559
- * "company_registration_number": null,
22560
- * "created_at": "2026-05-01T20:09:06.000000Z"
22561
- * },
22562
- * {
22563
- * "uid": "570b2693-6eaf-498f-966f-d1397ee5a56c",
22564
- * "rent_amount": "3832.26",
22565
- * "deposit_amount": "1384.27",
22566
- * "state": "terminated",
22567
- * "start_date": "2025-06-05T00:00:00.000000Z",
22568
- * "end_date": "2026-06-05T00:00:00.000000Z",
22569
- * "is_periodic": false,
22570
- * "company_name": null,
22571
- * "company_registration_number": null,
22572
- * "created_at": "2026-05-01T20:09:07.000000Z"
22573
- * }
22574
- * ]
22575
- */
22881
+ /** @example Tenancies fetched */
22882
+ message?: string;
22883
+ /** @example null */
22884
+ event?: string | null;
22576
22885
  data?: {
22577
- /** @example cded9829-09b6-4309-9667-eb281402416f */
22578
- uid?: string;
22579
- /** @example 4881.50 */
22580
- rent_amount?: string;
22581
- /** @example 2151.17 */
22582
- deposit_amount?: string;
22583
- /** @example offer_accepted */
22584
- state?: string;
22585
- /** @example 2025-08-24T00:00:00.000000Z */
22586
- start_date?: string;
22587
- /** @example 2026-08-24T00:00:00.000000Z */
22588
- end_date?: string;
22589
- /** @example false */
22590
- is_periodic?: boolean;
22591
- /** @example null */
22592
- company_name?: string | null;
22593
- /** @example null */
22594
- company_registration_number?: string | null;
22595
- /** @example 2026-05-01T20:09:06.000000Z */
22596
- created_at?: string;
22597
- }[];
22598
- links?: {
22599
- /** @example /?page=1 */
22600
- first?: string;
22601
- /** @example /?page=1 */
22602
- last?: string;
22603
- /** @example null */
22604
- prev?: string | null;
22605
- /** @example null */
22606
- next?: string | null;
22607
- };
22608
- meta?: {
22609
- /** @example 1 */
22610
- current_page?: number;
22611
- /** @example 1 */
22612
- from?: number;
22613
- /** @example 1 */
22614
- last_page?: number;
22615
22886
  /**
22616
22887
  * @example [
22617
22888
  * {
22618
- * "url": null,
22619
- * "label": "« Previous",
22620
- * "page": null,
22621
- * "active": false
22622
- * },
22623
- * {
22624
- * "url": "/?page=1",
22625
- * "label": "1",
22626
- * "page": 1,
22627
- * "active": true
22628
- * },
22629
- * {
22630
- * "url": null,
22631
- * "label": "Next »",
22632
- * "page": null,
22633
- * "active": false
22889
+ * "tenancy_uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
22890
+ * "listing": {
22891
+ * "cover": {
22892
+ * "uid": "lm_34fda1",
22893
+ * "media_type": "image/jpeg",
22894
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a/cover.jpg",
22895
+ * "order_index": 0,
22896
+ * "is_cover": true
22897
+ * },
22898
+ * "details": {
22899
+ * "address": "24 Windsor Court, London, SW1",
22900
+ * "title": "24 Windsor Court",
22901
+ * "type": "Rent"
22902
+ * },
22903
+ * "owner": {
22904
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
22905
+ * "name": "Alice Taylor"
22906
+ * }
22907
+ * },
22908
+ * "rent_amount": "1500.00",
22909
+ * "deposit_amount": "1500.00",
22910
+ * "tenant": {
22911
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
22912
+ * "name": "Sarah Jenkins",
22913
+ * "email": "sarah@example.com",
22914
+ * "phone": "+447700900123",
22915
+ * "address": "10 Oxford Street, London, W1"
22916
+ * },
22917
+ * "compliance_status": {
22918
+ * "overall": "compliant",
22919
+ * "label": "Compliant"
22920
+ * },
22921
+ * "state": {
22922
+ * "value": "active",
22923
+ * "label": "Active"
22924
+ * },
22925
+ * "start_date": "2026-03-01",
22926
+ * "end_date": "2027-02-28"
22634
22927
  * }
22635
22928
  * ]
22636
22929
  */
22637
- links?: {
22638
- /** @example null */
22639
- url?: string | null;
22640
- /** @example « Previous */
22641
- label?: string;
22642
- /** @example null */
22643
- page?: string | null;
22644
- /** @example false */
22645
- active?: boolean;
22930
+ items?: {
22931
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
22932
+ tenancy_uid?: string;
22933
+ listing?: {
22934
+ cover?: {
22935
+ /** @example lm_34fda1 */
22936
+ uid?: string;
22937
+ /** @example image/jpeg */
22938
+ media_type?: string;
22939
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a/cover.jpg */
22940
+ storage_path?: string;
22941
+ /** @example 0 */
22942
+ order_index?: number;
22943
+ /** @example true */
22944
+ is_cover?: boolean;
22945
+ };
22946
+ details?: {
22947
+ /** @example 24 Windsor Court, London, SW1 */
22948
+ address?: string;
22949
+ /** @example 24 Windsor Court */
22950
+ title?: string;
22951
+ /** @example Rent */
22952
+ type?: string;
22953
+ };
22954
+ owner?: {
22955
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
22956
+ uid?: string;
22957
+ /** @example Alice Taylor */
22958
+ name?: string;
22959
+ };
22960
+ };
22961
+ /** @example 1500.00 */
22962
+ rent_amount?: string;
22963
+ /** @example 1500.00 */
22964
+ deposit_amount?: string;
22965
+ tenant?: {
22966
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
22967
+ uid?: string;
22968
+ /** @example Sarah Jenkins */
22969
+ name?: string;
22970
+ /** @example sarah@example.com */
22971
+ email?: string;
22972
+ /** @example +447700900123 */
22973
+ phone?: string;
22974
+ /** @example 10 Oxford Street, London, W1 */
22975
+ address?: string;
22976
+ };
22977
+ compliance_status?: {
22978
+ /** @example compliant */
22979
+ overall?: string;
22980
+ /** @example Compliant */
22981
+ label?: string;
22982
+ };
22983
+ state?: {
22984
+ /** @example active */
22985
+ value?: string;
22986
+ /** @example Active */
22987
+ label?: string;
22988
+ };
22989
+ /** @example 2026-03-01 */
22990
+ start_date?: string;
22991
+ /** @example 2027-02-28 */
22992
+ end_date?: string;
22646
22993
  }[];
22647
- /** @example / */
22648
- path?: string;
22649
- /** @example 10 */
22650
- per_page?: number;
22651
- /** @example 2 */
22652
- to?: number;
22653
- /** @example 2 */
22654
- total?: number;
22994
+ pagination?: {
22995
+ /** @example 1 */
22996
+ current_page?: number;
22997
+ /** @example 15 */
22998
+ per_page?: number;
22999
+ /** @example 1240 */
23000
+ total?: number;
23001
+ /** @example 83 */
23002
+ last_page?: number;
23003
+ /** @example 1 */
23004
+ from?: number;
23005
+ /** @example 15 */
23006
+ to?: number;
23007
+ };
22655
23008
  };
22656
23009
  };
22657
23010
  };
@@ -22679,33 +23032,33 @@ export interface operations {
22679
23032
  /**
22680
23033
  * @example [
22681
23034
  * {
22682
- * "uid": "083c4836-9564-493c-9e67-afc7520d8efe",
23035
+ * "uid": "7194e598-c16a-484a-ac5f-2a3c843ed903",
22683
23036
  * "rent_amount": "4881.50",
22684
23037
  * "deposit_amount": "2151.17",
22685
23038
  * "state": "offer_accepted",
22686
- * "start_date": "2025-08-24T00:00:00.000000Z",
22687
- * "end_date": "2026-08-24T00:00:00.000000Z",
23039
+ * "start_date": "2025-08-29T00:00:00.000000Z",
23040
+ * "end_date": "2026-08-29T00:00:00.000000Z",
22688
23041
  * "is_periodic": false,
22689
23042
  * "company_name": null,
22690
23043
  * "company_registration_number": null,
22691
- * "created_at": "2026-05-01T20:09:07.000000Z"
23044
+ * "created_at": "2026-05-06T13:59:06.000000Z"
22692
23045
  * },
22693
23046
  * {
22694
- * "uid": "e465bcad-53f1-40f5-90f6-493fec23f94f",
23047
+ * "uid": "cfabaed9-edd0-430b-906f-507928adbefd",
22695
23048
  * "rent_amount": "3832.26",
22696
23049
  * "deposit_amount": "1384.27",
22697
23050
  * "state": "terminated",
22698
- * "start_date": "2025-06-05T00:00:00.000000Z",
22699
- * "end_date": "2026-06-05T00:00:00.000000Z",
23051
+ * "start_date": "2025-06-10T00:00:00.000000Z",
23052
+ * "end_date": "2026-06-10T00:00:00.000000Z",
22700
23053
  * "is_periodic": false,
22701
23054
  * "company_name": null,
22702
23055
  * "company_registration_number": null,
22703
- * "created_at": "2026-05-01T20:09:07.000000Z"
23056
+ * "created_at": "2026-05-06T13:59:06.000000Z"
22704
23057
  * }
22705
23058
  * ]
22706
23059
  */
22707
23060
  data?: {
22708
- /** @example 083c4836-9564-493c-9e67-afc7520d8efe */
23061
+ /** @example 7194e598-c16a-484a-ac5f-2a3c843ed903 */
22709
23062
  uid?: string;
22710
23063
  /** @example 4881.50 */
22711
23064
  rent_amount?: string;
@@ -22713,9 +23066,9 @@ export interface operations {
22713
23066
  deposit_amount?: string;
22714
23067
  /** @example offer_accepted */
22715
23068
  state?: string;
22716
- /** @example 2025-08-24T00:00:00.000000Z */
23069
+ /** @example 2025-08-29T00:00:00.000000Z */
22717
23070
  start_date?: string;
22718
- /** @example 2026-08-24T00:00:00.000000Z */
23071
+ /** @example 2026-08-29T00:00:00.000000Z */
22719
23072
  end_date?: string;
22720
23073
  /** @example false */
22721
23074
  is_periodic?: boolean;
@@ -22723,7 +23076,7 @@ export interface operations {
22723
23076
  company_name?: string | null;
22724
23077
  /** @example null */
22725
23078
  company_registration_number?: string | null;
22726
- /** @example 2026-05-01T20:09:07.000000Z */
23079
+ /** @example 2026-05-06T13:59:06.000000Z */
22727
23080
  created_at?: string;
22728
23081
  }[];
22729
23082
  links?: {
@@ -22830,7 +23183,7 @@ export interface operations {
22830
23183
  content: {
22831
23184
  "application/json": {
22832
23185
  data?: {
22833
- /** @example 277 */
23186
+ /** @example 87 */
22834
23187
  id?: number;
22835
23188
  compliance?: {
22836
23189
  /** @example 1 */
@@ -22850,9 +23203,9 @@ export interface operations {
22850
23203
  rejection_reason?: string | null;
22851
23204
  /** @example 1 */
22852
23205
  reviewed_by?: number;
22853
- /** @example 2026-05-01T20:09:07.000000Z */
23206
+ /** @example 2026-05-06T13:59:06.000000Z */
22854
23207
  reviewed_at?: string;
22855
- /** @example 2026-05-01T20:09:07.000000Z */
23208
+ /** @example 2026-05-06T13:59:06.000000Z */
22856
23209
  created_at?: string;
22857
23210
  };
22858
23211
  };
@@ -22879,7 +23232,7 @@ export interface operations {
22879
23232
  content: {
22880
23233
  "application/json": {
22881
23234
  data?: {
22882
- /** @example 278 */
23235
+ /** @example 88 */
22883
23236
  id?: number;
22884
23237
  compliance?: {
22885
23238
  /** @example 1 */
@@ -22899,9 +23252,9 @@ export interface operations {
22899
23252
  rejection_reason?: string | null;
22900
23253
  /** @example 1 */
22901
23254
  reviewed_by?: number;
22902
- /** @example 2026-05-01T20:09:07.000000Z */
23255
+ /** @example 2026-05-06T13:59:06.000000Z */
22903
23256
  reviewed_at?: string;
22904
- /** @example 2026-05-01T20:09:07.000000Z */
23257
+ /** @example 2026-05-06T13:59:06.000000Z */
22905
23258
  created_at?: string;
22906
23259
  };
22907
23260
  };
@@ -23783,17 +24136,17 @@ export interface operations {
23783
24136
  content: {
23784
24137
  "application/json": {
23785
24138
  data?: {
23786
- /** @example 0dd08e9c-2b6f-4c31-acea-399984c1f537 */
24139
+ /** @example 6b4e9a1a-067d-47d2-abf7-156406afe774 */
23787
24140
  uid?: string;
23788
- /** @example Accusantium aut suscipit ea suscipit illo ea doloribus neque. */
24141
+ /** @example Dolor ea natus vel. */
23789
24142
  note?: string;
23790
24143
  user?: {
23791
- /** @example 20 */
24144
+ /** @example 9 */
23792
24145
  id?: number;
23793
- /** @example Suzanne Morgan */
24146
+ /** @example Carrie Johnson */
23794
24147
  name?: string;
23795
24148
  };
23796
- /** @example 2026-04-18 03:00:21 */
24149
+ /** @example 2026-04-27 22:15:17 */
23797
24150
  created_at?: string;
23798
24151
  };
23799
24152
  };
@@ -23984,45 +24337,17 @@ export interface operations {
23984
24337
  };
23985
24338
  };
23986
24339
  };
23987
- reportMaintenance: {
24340
+ fetchMaintenanceRequest: {
23988
24341
  parameters: {
23989
24342
  query?: never;
23990
24343
  header?: never;
23991
- path?: never;
23992
- cookie?: never;
23993
- };
23994
- requestBody: {
23995
- content: {
23996
- "application/json": {
23997
- /**
23998
- * @description UID of the listing where the maintenance issue occurred. The <code>uid</code> of an existing record in the listings table.
23999
- * @example 54c1fd9b-8720-43e6-be3d-d4283477f38b
24000
- */
24001
- listing_uid: string;
24002
- /**
24003
- * @description UID of the tenancy related to the maintenance issue (if applicable). The <code>uid</code> of an existing record in the tenancies table.
24004
- * @example a1b2c3d4-9e87-41b6-8d6f-91e5c6fcd1e2
24005
- */
24006
- tenancy_uid?: string | null;
24007
- /**
24008
- * @description Priority level of the maintenance request.
24009
- * @example high
24010
- * @enum {string}
24011
- */
24012
- priority: "low" | "normal" | "urgent" | "emergency";
24013
- /**
24014
- * @description Short title summarizing the maintenance issue. Must not be greater than 255 characters.
24015
- * @example Leaking kitchen sink
24016
- */
24017
- title: string;
24018
- /**
24019
- * @description Detailed explanation of the maintenance problem. Must not be greater than 5000 characters.
24020
- * @example The kitchen sink has been leaking continuously for two days and water is pooling under the cabinet.
24021
- */
24022
- description: string;
24023
- };
24344
+ path: {
24345
+ /** @description The UID of the maintenance request. */
24346
+ uid: string;
24024
24347
  };
24348
+ cookie?: never;
24025
24349
  };
24350
+ requestBody?: never;
24026
24351
  responses: {
24027
24352
  200: {
24028
24353
  headers: {
@@ -24030,76 +24355,253 @@ export interface operations {
24030
24355
  };
24031
24356
  content: {
24032
24357
  "application/json": {
24033
- /**
24034
- * @example [
24035
- * {
24036
- * "uid": "dc3a221b-a992-4cad-a2e7-85e9fd610644",
24037
- * "tenancy_id": 1,
24038
- * "title": "Quos velit et fugiat sunt nihil.",
24039
- * "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.",
24040
- * "status": "reported",
24041
- * "priority": "emergency",
24042
- * "reported_at": "25 Apr 2026, 07:22 AM",
24043
- * "assigned_at": "30 Apr 2026, 03:42 AM",
24044
- * "completed_at": null,
24045
- * "sla_deadline": "03 May 2026, 09:04 AM",
24046
- * "created_at": "01 May 2026, 08:09 PM",
24047
- * "updated_at": "01 May 2026, 08:09 PM"
24048
- * },
24049
- * {
24050
- * "uid": "8445fba5-b568-4700-bb28-e2ec902e757d",
24051
- * "tenancy_id": 1,
24052
- * "title": "Fugit deleniti distinctio eum doloremque.",
24053
- * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
24054
- * "status": "completed",
24055
- * "priority": "normal",
24056
- * "reported_at": "27 Apr 2026, 08:01 PM",
24057
- * "assigned_at": null,
24058
- * "completed_at": null,
24059
- * "sla_deadline": "04 May 2026, 05:04 PM",
24060
- * "created_at": "01 May 2026, 08:09 PM",
24061
- * "updated_at": "01 May 2026, 08:09 PM"
24062
- * }
24063
- * ]
24064
- */
24358
+ /** @example Maintenance request fetched successfully */
24359
+ message?: string;
24360
+ /** @example null */
24361
+ event?: string | null;
24065
24362
  data?: {
24066
- /** @example dc3a221b-a992-4cad-a2e7-85e9fd610644 */
24363
+ /** @example maint_83fd12 */
24067
24364
  uid?: string;
24068
- /** @example 1 */
24069
- tenancy_id?: number;
24070
- /** @example Quos velit et fugiat sunt nihil. */
24365
+ /** @example Leaking kitchen sink */
24071
24366
  title?: string;
24072
- /** @example 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. */
24367
+ /** @example Water has been dripping continuously under the sink cabinet. */
24073
24368
  description?: string;
24074
24369
  /** @example reported */
24075
24370
  status?: string;
24076
- /** @example emergency */
24371
+ /** @example urgent */
24077
24372
  priority?: string;
24078
- /** @example 25 Apr 2026, 07:22 AM */
24373
+ /** @example 2026-04-01T10:00:00Z */
24079
24374
  reported_at?: string;
24080
- /** @example 30 Apr 2026, 03:42 AM */
24081
- assigned_at?: string;
24375
+ /** @example null */
24376
+ assigned_at?: string | null;
24082
24377
  /** @example null */
24083
24378
  completed_at?: string | null;
24084
- /** @example 03 May 2026, 09:04 AM */
24379
+ /** @example 2026-04-02T10:00:00Z */
24085
24380
  sla_deadline?: string;
24086
- /** @example 01 May 2026, 08:09 PM */
24087
- created_at?: string;
24088
- /** @example 01 May 2026, 08:09 PM */
24089
- updated_at?: string;
24090
- }[];
24091
- links?: {
24092
- /** @example /?page=1 */
24093
- first?: string;
24094
- /** @example /?page=1 */
24095
- last?: string;
24096
- /** @example null */
24097
- prev?: string | null;
24098
- /** @example null */
24099
- next?: string | null;
24100
- };
24101
- meta?: {
24102
- /** @example 1 */
24381
+ listing?: {
24382
+ /** @example 7 */
24383
+ id?: number;
24384
+ /** @example 54c1fd9b-8720-43e6-be3d-d4283477f38b */
24385
+ uid?: string;
24386
+ };
24387
+ reporter?: {
24388
+ /** @example usr_123 */
24389
+ id?: string;
24390
+ /** @example Jane Doe */
24391
+ name?: string;
24392
+ };
24393
+ /** @example null */
24394
+ technician?: string | null;
24395
+ /**
24396
+ * @example [
24397
+ * {
24398
+ * "uid": "mu_34fda1",
24399
+ * "note": "Inspection visit scheduled.",
24400
+ * "user": {
24401
+ * "id": 12,
24402
+ * "name": "Inspector Jane Doe"
24403
+ * },
24404
+ * "created_at": "2026-04-01T09:30:00Z"
24405
+ * }
24406
+ * ]
24407
+ */
24408
+ updates?: {
24409
+ /** @example mu_34fda1 */
24410
+ uid?: string;
24411
+ /** @example Inspection visit scheduled. */
24412
+ note?: string;
24413
+ user?: {
24414
+ /** @example 12 */
24415
+ id?: number;
24416
+ /** @example Inspector Jane Doe */
24417
+ name?: string;
24418
+ };
24419
+ /** @example 2026-04-01T09:30:00Z */
24420
+ created_at?: string;
24421
+ }[];
24422
+ /**
24423
+ * @example [
24424
+ * {
24425
+ * "uid": "mnt_34fda1",
24426
+ * "file_type": "image/jpeg",
24427
+ * "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
24428
+ * "uploaded_by": {
24429
+ * "id": 12,
24430
+ * "name": "Inspector Jane Doe"
24431
+ * },
24432
+ * "created_at": "2026-04-01T09:15:00Z"
24433
+ * }
24434
+ * ]
24435
+ */
24436
+ attachments?: {
24437
+ /** @example mnt_34fda1 */
24438
+ uid?: string;
24439
+ /** @example image/jpeg */
24440
+ file_type?: string;
24441
+ /** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
24442
+ url?: string;
24443
+ uploaded_by?: {
24444
+ /** @example 12 */
24445
+ id?: number;
24446
+ /** @example Inspector Jane Doe */
24447
+ name?: string;
24448
+ };
24449
+ /** @example 2026-04-01T09:15:00Z */
24450
+ created_at?: string;
24451
+ }[];
24452
+ /** @example 2026-04-01T10:00:00Z */
24453
+ created_at?: string;
24454
+ /** @example 2026-04-01T10:00:00Z */
24455
+ updated_at?: string;
24456
+ };
24457
+ } | {
24458
+ data?: {
24459
+ /** @example 4e5ed88b-22dc-47c0-bfd9-e6d74670832a */
24460
+ uid?: string;
24461
+ /** @example 1 */
24462
+ tenancy_id?: number;
24463
+ /** @example Qui commodi incidunt iure. */
24464
+ title?: string;
24465
+ /** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
24466
+ description?: string;
24467
+ /** @example breach */
24468
+ status?: string;
24469
+ /** @example low */
24470
+ priority?: string;
24471
+ /** @example 05 May 2026, 03:27 AM */
24472
+ reported_at?: string;
24473
+ /** @example null */
24474
+ assigned_at?: string | null;
24475
+ /** @example null */
24476
+ completed_at?: string | null;
24477
+ /** @example 07 May 2026, 11:52 PM */
24478
+ sla_deadline?: string;
24479
+ /** @example 06 May 2026, 01:59 PM */
24480
+ created_at?: string;
24481
+ /** @example 06 May 2026, 01:59 PM */
24482
+ updated_at?: string;
24483
+ };
24484
+ };
24485
+ };
24486
+ };
24487
+ };
24488
+ };
24489
+ reportMaintenance: {
24490
+ parameters: {
24491
+ query?: never;
24492
+ header?: never;
24493
+ path?: never;
24494
+ cookie?: never;
24495
+ };
24496
+ requestBody: {
24497
+ content: {
24498
+ "application/json": {
24499
+ /**
24500
+ * @description UID of the listing where the maintenance issue occurred. The <code>uid</code> of an existing record in the listings table.
24501
+ * @example 54c1fd9b-8720-43e6-be3d-d4283477f38b
24502
+ */
24503
+ listing_uid: string;
24504
+ /**
24505
+ * @description UID of the tenancy related to the maintenance issue (if applicable). The <code>uid</code> of an existing record in the tenancies table.
24506
+ * @example a1b2c3d4-9e87-41b6-8d6f-91e5c6fcd1e2
24507
+ */
24508
+ tenancy_uid?: string | null;
24509
+ /**
24510
+ * @description Priority level of the maintenance request.
24511
+ * @example high
24512
+ * @enum {string}
24513
+ */
24514
+ priority: "low" | "normal" | "urgent" | "emergency";
24515
+ /**
24516
+ * @description Short title summarizing the maintenance issue. Must not be greater than 255 characters.
24517
+ * @example Leaking kitchen sink
24518
+ */
24519
+ title: string;
24520
+ /**
24521
+ * @description Detailed explanation of the maintenance problem. Must not be greater than 5000 characters.
24522
+ * @example The kitchen sink has been leaking continuously for two days and water is pooling under the cabinet.
24523
+ */
24524
+ description: string;
24525
+ };
24526
+ };
24527
+ };
24528
+ responses: {
24529
+ 200: {
24530
+ headers: {
24531
+ [name: string]: unknown;
24532
+ };
24533
+ content: {
24534
+ "application/json": {
24535
+ /**
24536
+ * @example [
24537
+ * {
24538
+ * "uid": "fca22fdd-bcd1-42b4-9354-052e1df88bbb",
24539
+ * "tenancy_id": 1,
24540
+ * "title": "Quos velit et fugiat sunt nihil.",
24541
+ * "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.",
24542
+ * "status": "reported",
24543
+ * "priority": "emergency",
24544
+ * "reported_at": "30 Apr 2026, 01:12 AM",
24545
+ * "assigned_at": "04 May 2026, 09:32 PM",
24546
+ * "completed_at": null,
24547
+ * "sla_deadline": "08 May 2026, 02:54 AM",
24548
+ * "created_at": "06 May 2026, 01:59 PM",
24549
+ * "updated_at": "06 May 2026, 01:59 PM"
24550
+ * },
24551
+ * {
24552
+ * "uid": "875b4255-0eb4-4f90-9a20-60dbacb01eb2",
24553
+ * "tenancy_id": 1,
24554
+ * "title": "Fugit deleniti distinctio eum doloremque.",
24555
+ * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
24556
+ * "status": "completed",
24557
+ * "priority": "normal",
24558
+ * "reported_at": "02 May 2026, 01:51 PM",
24559
+ * "assigned_at": null,
24560
+ * "completed_at": null,
24561
+ * "sla_deadline": "09 May 2026, 10:54 AM",
24562
+ * "created_at": "06 May 2026, 01:59 PM",
24563
+ * "updated_at": "06 May 2026, 01:59 PM"
24564
+ * }
24565
+ * ]
24566
+ */
24567
+ data?: {
24568
+ /** @example fca22fdd-bcd1-42b4-9354-052e1df88bbb */
24569
+ uid?: string;
24570
+ /** @example 1 */
24571
+ tenancy_id?: number;
24572
+ /** @example Quos velit et fugiat sunt nihil. */
24573
+ title?: string;
24574
+ /** @example 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. */
24575
+ description?: string;
24576
+ /** @example reported */
24577
+ status?: string;
24578
+ /** @example emergency */
24579
+ priority?: string;
24580
+ /** @example 30 Apr 2026, 01:12 AM */
24581
+ reported_at?: string;
24582
+ /** @example 04 May 2026, 09:32 PM */
24583
+ assigned_at?: string;
24584
+ /** @example null */
24585
+ completed_at?: string | null;
24586
+ /** @example 08 May 2026, 02:54 AM */
24587
+ sla_deadline?: string;
24588
+ /** @example 06 May 2026, 01:59 PM */
24589
+ created_at?: string;
24590
+ /** @example 06 May 2026, 01:59 PM */
24591
+ updated_at?: string;
24592
+ }[];
24593
+ links?: {
24594
+ /** @example /?page=1 */
24595
+ first?: string;
24596
+ /** @example /?page=1 */
24597
+ last?: string;
24598
+ /** @example null */
24599
+ prev?: string | null;
24600
+ /** @example null */
24601
+ next?: string | null;
24602
+ };
24603
+ meta?: {
24604
+ /** @example 1 */
24103
24605
  current_page?: number;
24104
24606
  /** @example 1 */
24105
24607
  from?: number;
@@ -24201,13 +24703,13 @@ export interface operations {
24201
24703
  };
24202
24704
  } | {
24203
24705
  data?: {
24204
- /** @example 6870302a-124c-45e3-8236-0977ef6a22d5 */
24706
+ /** @example 85cb8395-1fde-4dde-b388-2886f203e94a */
24205
24707
  uid?: string;
24206
24708
  /** @example image */
24207
24709
  file_type?: string;
24208
24710
  /** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
24209
24711
  url?: string;
24210
- /** @example 2026-05-01T20:09:08.000000Z */
24712
+ /** @example 2026-05-06T13:59:08.000000Z */
24211
24713
  created_at?: string;
24212
24714
  };
24213
24715
  };
@@ -24252,7 +24754,7 @@ export interface operations {
24252
24754
  content: {
24253
24755
  "application/json": {
24254
24756
  data?: {
24255
- /** @example 195 */
24757
+ /** @example 5 */
24256
24758
  id?: number;
24257
24759
  type?: {
24258
24760
  /** @example property_inquiry */
@@ -24260,25 +24762,28 @@ export interface operations {
24260
24762
  /** @example Property Inquiry */
24261
24763
  label?: string;
24262
24764
  };
24263
- /** @example ae5e6e9c-7181-47e1-bcab-dfe24cfebd79 */
24765
+ /** @example c9ae501b-2616-4ed1-b4ff-1255918fbd5f */
24264
24766
  listing_uid?: string;
24265
24767
  listing?: {
24266
- /** @example ae5e6e9c-7181-47e1-bcab-dfe24cfebd79 */
24768
+ /** @example c9ae501b-2616-4ed1-b4ff-1255918fbd5f */
24267
24769
  uid?: string;
24268
- /** @example Doloribus sunt itaque optio impedit. */
24770
+ /** @example Excepturi voluptatum qui sed. */
24269
24771
  title?: string;
24270
- /** @example 39 White Village */
24772
+ /**
24773
+ * @example Studio 13
24774
+ * Darren Cliff
24775
+ */
24271
24776
  address?: string;
24272
- /** @example short_let */
24777
+ /** @example sale */
24273
24778
  listing_type?: string;
24274
- /** @example Short Let */
24779
+ /** @example Sale */
24275
24780
  listing_type_label?: string;
24276
24781
  cover?: {
24277
- /** @example fa24116b-3c03-48aa-8fbd-7b3b094727ca */
24782
+ /** @example 52eb0be2-684f-4759-8111-de65806fd34a */
24278
24783
  uid?: string;
24279
24784
  /** @example photo */
24280
24785
  media_type?: string;
24281
- /** @example http://justinshome-backendcore.test/storage/listings/short-let-property-placeholder.png */
24786
+ /** @example http://justinshome-backendcore.test/storage/listings/property-sale-placeholder.png */
24282
24787
  storage_path?: string;
24283
24788
  /** @example 1 */
24284
24789
  order_index?: number;
@@ -24286,15 +24791,15 @@ export interface operations {
24286
24791
  is_cover?: boolean;
24287
24792
  };
24288
24793
  owner?: {
24289
- /** @example 3 */
24794
+ /** @example 6 */
24290
24795
  id?: number;
24291
- /** @example af3a7981-f613-4482-898d-09ac3fab930b */
24796
+ /** @example eb392d5c-1dcf-43a6-a000-a27d8b68f9c5 */
24292
24797
  uid?: string;
24293
- /** @example Teagan King */
24798
+ /** @example Yvonne Moore */
24294
24799
  name?: string;
24295
- /** @example landlord2@justinshome.test */
24800
+ /** @example landlord5@justinshome.test */
24296
24801
  email?: string;
24297
- /** @example 08056663138 */
24802
+ /** @example 08092300754 */
24298
24803
  phone?: string;
24299
24804
  /** @example null */
24300
24805
  avatar_path?: string | null;
@@ -24303,14 +24808,14 @@ export interface operations {
24303
24808
  created_by?: {
24304
24809
  /** @example 2 */
24305
24810
  id?: number;
24306
- /** @example bf1a9d08-45a1-474c-b494-5e7be7b71aa8 */
24811
+ /** @example 326eb529-3699-47bd-9969-b49e75937175 */
24307
24812
  uid?: string;
24308
- /** @example dogunfx */
24813
+ /** @example Vicky Ross */
24309
24814
  name?: string;
24310
24815
  };
24311
24816
  /** @example null */
24312
24817
  last_message_at?: string | null;
24313
- /** @example 01 May 2026, 08:09 PM */
24818
+ /** @example 06 May 2026, 01:59 PM */
24314
24819
  created_at?: string;
24315
24820
  };
24316
24821
  };
@@ -24762,7 +25267,7 @@ export interface operations {
24762
25267
  };
24763
25268
  content: {
24764
25269
  "application/json": {
24765
- /** @example 9c142a22-d7de-47a1-bf9c-b7e8c65173ef */
25270
+ /** @example 1bf4890b-abd7-4808-95d7-a6b80477f6fd */
24766
25271
  id?: string;
24767
25272
  /** @example APPOINTMENT_CREATED */
24768
25273
  type?: string;
@@ -24774,7 +25279,7 @@ export interface operations {
24774
25279
  data?: unknown[];
24775
25280
  /** @example null */
24776
25281
  read_at?: string | null;
24777
- /** @example 01 May 2026, 08:09 PM */
25282
+ /** @example 06 May 2026, 01:59 PM */
24778
25283
  created_at?: string;
24779
25284
  };
24780
25285
  };
@@ -24880,9 +25385,9 @@ export interface operations {
24880
25385
  content: {
24881
25386
  "application/json": {
24882
25387
  data?: {
24883
- /** @example at */
25388
+ /** @example aut */
24884
25389
  key?: string;
24885
- /** @example id */
25390
+ /** @example adipisci */
24886
25391
  name?: string;
24887
25392
  /** @example soft */
24888
25393
  enforcement_mode?: string;
@@ -25020,7 +25525,7 @@ export interface operations {
25020
25525
  content: {
25021
25526
  "application/json": {
25022
25527
  data?: {
25023
- /** @example e0fccb6a-401b-47b1-9798-058d00334cf3 */
25528
+ /** @example 19f3b272-e189-4a09-8779-9e9180509130 */
25024
25529
  uid?: string;
25025
25530
  /** @example JH-APP-2026-089432 */
25026
25531
  application_ref?: string;
@@ -25041,7 +25546,7 @@ export interface operations {
25041
25546
  /** @example null */
25042
25547
  rejection_reason?: string | null;
25043
25548
  timeline?: {
25044
- /** @example 01 May 2026, 08:09 PM */
25549
+ /** @example 06 May 2026, 01:59 PM */
25045
25550
  created_at?: string;
25046
25551
  /** @example null */
25047
25552
  approved_at?: string | null;
@@ -25081,12 +25586,12 @@ export interface operations {
25081
25586
  */
25082
25587
  search?: string | null;
25083
25588
  /**
25084
- * @example pending
25589
+ * @example converted
25085
25590
  * @enum {string|null}
25086
25591
  */
25087
25592
  status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
25088
25593
  /**
25089
- * @example admin
25594
+ * @example landlord
25090
25595
  * @enum {string|null}
25091
25596
  */
25092
25597
  source?: "tenant" | "landlord" | "admin" | null;
@@ -25404,7 +25909,7 @@ export interface operations {
25404
25909
  content: {
25405
25910
  "application/json": {
25406
25911
  data?: {
25407
- /** @example 2c22f606-c99d-4167-9b42-14bc0f6e22e8 */
25912
+ /** @example fc187a11-7378-49d0-a500-8456ae5737af */
25408
25913
  uid?: string;
25409
25914
  /** @example JH-APP-2026-700432 */
25410
25915
  application_ref?: string;
@@ -25425,7 +25930,7 @@ export interface operations {
25425
25930
  /** @example null */
25426
25931
  rejection_reason?: string | null;
25427
25932
  timeline?: {
25428
- /** @example 01 May 2026, 08:09 PM */
25933
+ /** @example 06 May 2026, 01:59 PM */
25429
25934
  created_at?: string;
25430
25935
  /** @example null */
25431
25936
  approved_at?: string | null;
@@ -25442,7 +25947,14 @@ export interface operations {
25442
25947
  };
25443
25948
  fetchAllReview: {
25444
25949
  parameters: {
25445
- query?: never;
25950
+ query: {
25951
+ /** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
25952
+ reviewable_type: string;
25953
+ /** @description Number of records per page. */
25954
+ per_page?: number;
25955
+ /** @description Current page number. */
25956
+ page?: number;
25957
+ };
25446
25958
  header?: never;
25447
25959
  path?: never;
25448
25960
  cookie?: never;
@@ -25483,12 +25995,13 @@ export interface operations {
25483
25995
  * "id": 1,
25484
25996
  * "rating": 5,
25485
25997
  * "comment": "Excellent service.",
25998
+ * "reviewable_type": "listing",
25486
25999
  * "reviewer": {
25487
26000
  * "id": 20,
25488
26001
  * "name": "Sarah Jenkins"
25489
26002
  * },
25490
- * "created_at": "2026-04-28T09:00:00Z",
25491
- * "updated_at": "2026-04-28T09:00:00Z"
26003
+ * "created_at": "28 Apr, 2026 09:00 AM",
26004
+ * "updated_at": "28 Apr, 2026 09:00 AM"
25492
26005
  * }
25493
26006
  * ]
25494
26007
  */
@@ -25499,15 +26012,17 @@ export interface operations {
25499
26012
  rating?: number;
25500
26013
  /** @example Excellent service. */
25501
26014
  comment?: string;
26015
+ /** @example listing */
26016
+ reviewable_type?: string;
25502
26017
  reviewer?: {
25503
26018
  /** @example 20 */
25504
26019
  id?: number;
25505
26020
  /** @example Sarah Jenkins */
25506
26021
  name?: string;
25507
26022
  };
25508
- /** @example 2026-04-28T09:00:00Z */
26023
+ /** @example 28 Apr, 2026 09:00 AM */
25509
26024
  created_at?: string;
25510
- /** @example 2026-04-28T09:00:00Z */
26025
+ /** @example 28 Apr, 2026 09:00 AM */
25511
26026
  updated_at?: string;
25512
26027
  }[];
25513
26028
  pagination?: {
@@ -25530,54 +26045,208 @@ export interface operations {
25530
26045
  };
25531
26046
  };
25532
26047
  };
25533
- ratingSummaryReview: {
26048
+ fetchOneReview: {
25534
26049
  parameters: {
25535
26050
  query?: never;
25536
26051
  header?: never;
25537
- path?: never;
25538
- cookie?: never;
25539
- };
25540
- requestBody: {
25541
- content: {
25542
- "application/json": {
25543
- /**
25544
- * @description Reviewable type or entity. Accepts `listing`, `user`, or the full model class name.
25545
- * @example listing
25546
- * @enum {string}
25547
- */
25548
- reviewable_type: "App\\Models\\Listing" | "App\\Models\\User" | "App\\Models\\Listing" | "App\\Models\\User";
25549
- /**
25550
- * @description Identity of Reviewable type or entity. Must be at least 1.
25551
- * @example 1
25552
- */
25553
- reviewable_id: number;
25554
- /**
25555
- * @description pagination. Must be between 1 and 100.
25556
- * @example 15
25557
- */
25558
- per_page?: number;
25559
- };
26052
+ path: {
26053
+ /** @description The ID of the review. */
26054
+ review_id: number;
25560
26055
  };
26056
+ cookie?: never;
25561
26057
  };
26058
+ requestBody?: never;
25562
26059
  responses: {
25563
- /** @description Rating summary retrieved successfully */
26060
+ /** @description Retrieve a single review */
25564
26061
  200: {
25565
26062
  headers: {
25566
26063
  [name: string]: unknown;
25567
26064
  };
25568
26065
  content: {
25569
26066
  "application/json": {
25570
- /** @example Rating summary retrieved successfully */
26067
+ /** @example Review retrieved successfully */
25571
26068
  message?: string;
25572
26069
  /** @example null */
25573
26070
  event?: string | null;
25574
26071
  data?: {
25575
- /** @example 4 */
25576
- average_rating?: number;
25577
- /** @example 3 */
25578
- reviews_count?: number;
25579
- };
25580
- };
26072
+ /** @example 15 */
26073
+ id?: number;
26074
+ /** @example 5 */
26075
+ rating?: number;
26076
+ /** @example Excellent service. */
26077
+ comment?: string;
26078
+ /** @example listing */
26079
+ reviewable_type?: string;
26080
+ reviewable?: {
26081
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
26082
+ uid?: string;
26083
+ /** @example 24 Windsor Court */
26084
+ title?: string;
26085
+ /** @example 24 Windsor Court, London, SW1 */
26086
+ address?: string;
26087
+ cover?: {
26088
+ /** @example lm_34fda1 */
26089
+ uid?: string;
26090
+ /** @example image/jpeg */
26091
+ media_type?: string;
26092
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
26093
+ storage_path?: string;
26094
+ /** @example 0 */
26095
+ order_index?: number;
26096
+ /** @example true */
26097
+ is_cover?: boolean;
26098
+ };
26099
+ type?: {
26100
+ /** @example long_term_rent */
26101
+ value?: string;
26102
+ /** @example Rent */
26103
+ label?: string;
26104
+ };
26105
+ vertical?: {
26106
+ /** @example property */
26107
+ value?: string;
26108
+ /** @example Property */
26109
+ label?: string;
26110
+ };
26111
+ };
26112
+ reviewer?: {
26113
+ /** @example user_ajka asjkasj */
26114
+ uid?: string;
26115
+ /** @example Sarah Jenkins */
26116
+ name?: string;
26117
+ };
26118
+ /** @example 28 Apr, 2026 09:00 AM */
26119
+ created_at?: string;
26120
+ /** @example 28 Apr, 2026 09:00 AM */
26121
+ updated_at?: string;
26122
+ };
26123
+ };
26124
+ };
26125
+ };
26126
+ };
26127
+ };
26128
+ fetchAllReviewForReviewable: {
26129
+ parameters: {
26130
+ query: {
26131
+ /** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
26132
+ reviewable_type: string;
26133
+ /** @description UID of the reviewable entity. */
26134
+ reviewable_uid: string;
26135
+ /** @description Number of records per page. */
26136
+ per_page?: number;
26137
+ /** @description Current page number. */
26138
+ page?: number;
26139
+ };
26140
+ header?: never;
26141
+ path?: never;
26142
+ cookie?: never;
26143
+ };
26144
+ requestBody?: never;
26145
+ responses: {
26146
+ /** @description Retrieve all reviews for a specific reviewable entity */
26147
+ 200: {
26148
+ headers: {
26149
+ [name: string]: unknown;
26150
+ };
26151
+ content: {
26152
+ "application/json": {
26153
+ /** @example Review retrieved successfully */
26154
+ message?: string;
26155
+ /** @example null */
26156
+ event?: string | null;
26157
+ data?: {
26158
+ /**
26159
+ * @example [
26160
+ * {
26161
+ * "id": 1,
26162
+ * "rating": 5,
26163
+ * "comment": "Excellent service.",
26164
+ * "reviewable_type": "listing",
26165
+ * "reviewer": {
26166
+ * "uid": "sj akjasas",
26167
+ * "name": "Sarah Jenkins"
26168
+ * },
26169
+ * "created_at": "28 Apr, 2026 09:00 AM",
26170
+ * "updated_at": "28 Apr, 2026 09:00 AM"
26171
+ * }
26172
+ * ]
26173
+ */
26174
+ items?: {
26175
+ /** @example 1 */
26176
+ id?: number;
26177
+ /** @example 5 */
26178
+ rating?: number;
26179
+ /** @example Excellent service. */
26180
+ comment?: string;
26181
+ /** @example listing */
26182
+ reviewable_type?: string;
26183
+ reviewer?: {
26184
+ /** @example sj akjasas */
26185
+ uid?: string;
26186
+ /** @example Sarah Jenkins */
26187
+ name?: string;
26188
+ };
26189
+ /** @example 28 Apr, 2026 09:00 AM */
26190
+ created_at?: string;
26191
+ /** @example 28 Apr, 2026 09:00 AM */
26192
+ updated_at?: string;
26193
+ }[];
26194
+ pagination?: {
26195
+ /** @example 1 */
26196
+ current_page?: number;
26197
+ /** @example 15 */
26198
+ per_page?: number;
26199
+ /** @example 0 */
26200
+ total?: number;
26201
+ /** @example 1 */
26202
+ last_page?: number;
26203
+ /** @example null */
26204
+ from?: string | null;
26205
+ /** @example null */
26206
+ to?: string | null;
26207
+ };
26208
+ };
26209
+ };
26210
+ };
26211
+ };
26212
+ };
26213
+ };
26214
+ ratingSummaryReview: {
26215
+ parameters: {
26216
+ query: {
26217
+ /** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
26218
+ reviewable_type: string;
26219
+ /** @description UID of the reviewable entity. */
26220
+ reviewable_uid: string;
26221
+ /** @description Number of records per page. Must be between 1 and 100. */
26222
+ per_page?: number;
26223
+ /** @description Current page number. Must be at least 1. */
26224
+ page?: number;
26225
+ };
26226
+ header?: never;
26227
+ path?: never;
26228
+ cookie?: never;
26229
+ };
26230
+ requestBody?: never;
26231
+ responses: {
26232
+ /** @description Rating summary retrieved successfully */
26233
+ 200: {
26234
+ headers: {
26235
+ [name: string]: unknown;
26236
+ };
26237
+ content: {
26238
+ "application/json": {
26239
+ /** @example Rating summary retrieved successfully */
26240
+ message?: string;
26241
+ /** @example null */
26242
+ event?: string | null;
26243
+ data?: {
26244
+ /** @example 4.5 */
26245
+ average_rating?: number;
26246
+ /** @example 3 */
26247
+ reviews_count?: number;
26248
+ };
26249
+ };
25581
26250
  };
25582
26251
  };
25583
26252
  };
@@ -25618,21 +26287,23 @@ export interface operations {
25618
26287
  content: {
25619
26288
  "application/json": {
25620
26289
  data?: {
25621
- /** @example 465 */
26290
+ /** @example 17 */
25622
26291
  id?: number;
25623
26292
  /** @example 1 */
25624
26293
  rating?: number;
25625
26294
  /** @example Nice Listing */
25626
26295
  comment?: string;
26296
+ /** @example listing */
26297
+ reviewable_type?: string;
25627
26298
  reviewer?: {
25628
- /** @example 17 */
25629
- id?: number;
25630
- /** @example Hannah Ross */
26299
+ /** @example 3fca80ab-651f-419d-92ce-2f5f9c0f5036 */
26300
+ uid?: string;
26301
+ /** @example Chloe Edwards */
25631
26302
  name?: string;
25632
26303
  };
25633
- /** @example 01 May 2026, 08:09 PM */
26304
+ /** @example 06 May 2026, 01:59 PM */
25634
26305
  created_at?: string;
25635
- /** @example 01 May 2026, 08:09 PM */
26306
+ /** @example 06 May 2026, 01:59 PM */
25636
26307
  updated_at?: string;
25637
26308
  };
25638
26309
  };
@@ -25676,21 +26347,23 @@ export interface operations {
25676
26347
  content: {
25677
26348
  "application/json": {
25678
26349
  data?: {
25679
- /** @example 466 */
26350
+ /** @example 18 */
25680
26351
  id?: number;
25681
26352
  /** @example 1 */
25682
26353
  rating?: number;
25683
26354
  /** @example Nice Listing */
25684
26355
  comment?: string;
26356
+ /** @example listing */
26357
+ reviewable_type?: string;
25685
26358
  reviewer?: {
25686
- /** @example 5 */
25687
- id?: number;
25688
- /** @example Mary Hall */
26359
+ /** @example 131677ca-833e-422a-b76a-3a39e42f1a67 */
26360
+ uid?: string;
26361
+ /** @example Ella Smith */
25689
26362
  name?: string;
25690
26363
  };
25691
- /** @example 01 May 2026, 08:09 PM */
26364
+ /** @example 06 May 2026, 01:59 PM */
25692
26365
  created_at?: string;
25693
- /** @example 01 May 2026, 08:09 PM */
26366
+ /** @example 06 May 2026, 01:59 PM */
25694
26367
  updated_at?: string;
25695
26368
  };
25696
26369
  };
@@ -25732,115 +26405,356 @@ export interface operations {
25732
26405
  content: {
25733
26406
  "application/json": {
25734
26407
  data?: {
25735
- /** @example 467 */
26408
+ /** @example 19 */
25736
26409
  id?: number;
25737
26410
  /** @example 1 */
25738
26411
  rating?: number;
25739
26412
  /** @example Nice Listing */
25740
26413
  comment?: string;
26414
+ /** @example listing */
26415
+ reviewable_type?: string;
25741
26416
  reviewer?: {
25742
- /** @example 8 */
26417
+ /** @example a529fd57-f123-44e0-892d-d8c8dfcd2796 */
26418
+ uid?: string;
26419
+ /** @example Will Chapman */
26420
+ name?: string;
26421
+ };
26422
+ /** @example 06 May 2026, 01:59 PM */
26423
+ created_at?: string;
26424
+ /** @example 06 May 2026, 01:59 PM */
26425
+ updated_at?: string;
26426
+ };
26427
+ };
26428
+ };
26429
+ };
26430
+ };
26431
+ };
26432
+ deleteReview: {
26433
+ parameters: {
26434
+ query?: never;
26435
+ header?: never;
26436
+ path: {
26437
+ /** @description The ID of the review. */
26438
+ review_id: number;
26439
+ };
26440
+ cookie?: never;
26441
+ };
26442
+ requestBody?: never;
26443
+ responses: {
26444
+ 200: {
26445
+ headers: {
26446
+ [name: string]: unknown;
26447
+ };
26448
+ content: {
26449
+ "application/json": {
26450
+ data?: {
26451
+ /** @example 20 */
26452
+ id?: number;
26453
+ /** @example 1 */
26454
+ rating?: number;
26455
+ /** @example Nice Listing */
26456
+ comment?: string;
26457
+ /** @example listing */
26458
+ reviewable_type?: string;
26459
+ reviewer?: {
26460
+ /** @example eb392d5c-1dcf-43a6-a000-a27d8b68f9c5 */
26461
+ uid?: string;
26462
+ /** @example Yvonne Moore */
26463
+ name?: string;
26464
+ };
26465
+ /** @example 06 May 2026, 01:59 PM */
26466
+ created_at?: string;
26467
+ /** @example 06 May 2026, 01:59 PM */
26468
+ updated_at?: string;
26469
+ };
26470
+ };
26471
+ };
26472
+ };
26473
+ };
26474
+ };
26475
+ fetchOneTenancy: {
26476
+ parameters: {
26477
+ query?: never;
26478
+ header?: never;
26479
+ path: {
26480
+ /** @description The UID of the tenancy. */
26481
+ tenancy_uid: string;
26482
+ };
26483
+ cookie?: never;
26484
+ };
26485
+ requestBody?: never;
26486
+ responses: {
26487
+ /** @description Retrieve a single tenancy */
26488
+ 200: {
26489
+ headers: {
26490
+ [name: string]: unknown;
26491
+ };
26492
+ content: {
26493
+ "application/json": {
26494
+ /** @example Tenancy fetched */
26495
+ message?: string;
26496
+ /** @example null */
26497
+ event?: string | null;
26498
+ data?: {
26499
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
26500
+ uid?: string;
26501
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
26502
+ listing_uid?: string;
26503
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
26504
+ landlord_uid?: string;
26505
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
26506
+ tenant_uid?: string;
26507
+ /** @example 1500.00 */
26508
+ rent_amount?: string;
26509
+ /** @example 1500.00 */
26510
+ deposit_amount?: string;
26511
+ /** @example active */
26512
+ state?: string;
26513
+ /** @example 2026-03-01 */
26514
+ start_date?: string;
26515
+ /** @example 2027-02-28 */
26516
+ end_date?: string;
26517
+ /** @example false */
26518
+ is_periodic?: boolean;
26519
+ /** @example null */
26520
+ company_name?: string | null;
26521
+ /** @example null */
26522
+ company_registration_number?: string | null;
26523
+ /** @example 2026-03-01T10:00:00.000000Z */
26524
+ created_at?: string;
26525
+ listing?: {
26526
+ cover?: {
26527
+ /** @example lm_34fda1 */
26528
+ uid?: string;
26529
+ /** @example image/jpeg */
26530
+ media_type?: string;
26531
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
26532
+ storage_path?: string;
26533
+ /** @example 0 */
26534
+ order_index?: number;
26535
+ /** @example true */
26536
+ is_cover?: boolean;
26537
+ };
26538
+ details?: {
26539
+ /** @example 24 Windsor Court */
26540
+ address?: string;
26541
+ /** @example 24 Windsor Court */
26542
+ title?: string;
26543
+ /** @example Rent */
26544
+ type?: string;
26545
+ };
26546
+ owner?: {
26547
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
26548
+ uid?: string;
26549
+ /** @example Alice Taylor */
26550
+ name?: string;
26551
+ /** @example alice@example.com */
26552
+ email?: string;
26553
+ };
26554
+ };
26555
+ landlord?: {
26556
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
26557
+ uid?: string;
26558
+ /** @example Alice Taylor */
26559
+ name?: string;
26560
+ /** @example alice@example.com */
26561
+ email?: string;
26562
+ };
26563
+ tenant?: {
26564
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
26565
+ uid?: string;
26566
+ /** @example Sarah Jenkins */
26567
+ name?: string;
26568
+ /** @example sarah@example.com */
26569
+ email?: string;
26570
+ /** @example +447700900123 */
26571
+ phone?: string;
26572
+ /** @example 10 Oxford Street, London, W1 */
26573
+ address?: string;
26574
+ };
26575
+ /**
26576
+ * @example [
26577
+ * {
26578
+ * "uid": "maint_83fd12",
26579
+ * "tenancy_id": 1,
26580
+ * "title": "Leaking kitchen sink",
26581
+ * "description": "Water has been dripping continuously under the sink cabinet.",
26582
+ * "status": "reported",
26583
+ * "priority": "urgent",
26584
+ * "reported_at": "2026-04-01T10:00:00Z",
26585
+ * "assigned_at": null,
26586
+ * "completed_at": null,
26587
+ * "sla_deadline": "2026-04-02T10:00:00Z"
26588
+ * }
26589
+ * ]
26590
+ */
26591
+ maintenance_requests?: {
26592
+ /** @example maint_83fd12 */
26593
+ uid?: string;
26594
+ /** @example 1 */
26595
+ tenancy_id?: number;
26596
+ /** @example Leaking kitchen sink */
26597
+ title?: string;
26598
+ /** @example Water has been dripping continuously under the sink cabinet. */
26599
+ description?: string;
26600
+ /** @example reported */
26601
+ status?: string;
26602
+ /** @example urgent */
26603
+ priority?: string;
26604
+ /** @example 2026-04-01T10:00:00Z */
26605
+ reported_at?: string;
26606
+ /** @example null */
26607
+ assigned_at?: string | null;
26608
+ /** @example null */
26609
+ completed_at?: string | null;
26610
+ /** @example 2026-04-02T10:00:00Z */
26611
+ sla_deadline?: string;
26612
+ }[];
26613
+ /**
26614
+ * @example [
26615
+ * {
26616
+ * "from_state": "pending",
26617
+ * "to_state": "active",
26618
+ * "changed_by_user_id": 1,
26619
+ * "changed_by_name": "System Admin",
26620
+ * "comment": "Tenancy activated",
26621
+ * "created_at": "2026-03-01T10:00:00Z"
26622
+ * }
26623
+ * ]
26624
+ */
26625
+ state_transitions?: {
26626
+ /** @example pending */
26627
+ from_state?: string;
26628
+ /** @example active */
26629
+ to_state?: string;
26630
+ /** @example 1 */
26631
+ changed_by_user_id?: number;
26632
+ /** @example System Admin */
26633
+ changed_by_name?: string;
26634
+ /** @example Tenancy activated */
26635
+ comment?: string;
26636
+ /** @example 2026-03-01T10:00:00Z */
26637
+ created_at?: string;
26638
+ }[];
26639
+ /**
26640
+ * @example [
26641
+ * {
26642
+ * "id": 1,
26643
+ * "compliance": {
26644
+ * "id": 10,
26645
+ * "key": "gas_safety_certificate",
26646
+ * "name": "Gas Safety Certificate"
26647
+ * },
26648
+ * "verification_layer_key": "gas_certificate",
26649
+ * "status": "submitted",
26650
+ * "submitted_data": {
26651
+ * "document_file": {
26652
+ * "file_name": "cover.pdf",
26653
+ * "storage_path": "tenancy_compliance/cover.pdf",
26654
+ * "view_url": "https://api.example.com/api/v1/portal/admin/documents/view?expires=1774863000&signature=abc",
26655
+ * "download_url": "https://api.example.com/api/v1/portal/admin/documents/download?expires=1774863000&signature=abc",
26656
+ * "disk": "verification_documents"
26657
+ * }
26658
+ * },
26659
+ * "rejection_reason": null,
26660
+ * "reviewed_by": null,
26661
+ * "reviewed_at": null,
26662
+ * "created_at": "2026-04-01T09:30:00Z"
26663
+ * }
26664
+ * ]
26665
+ */
26666
+ compliance_submissions?: {
26667
+ /** @example 1 */
25743
26668
  id?: number;
25744
- /** @example Kyle Matthews */
25745
- name?: string;
25746
- };
25747
- /** @example 01 May 2026, 08:09 PM */
25748
- created_at?: string;
25749
- /** @example 01 May 2026, 08:09 PM */
25750
- updated_at?: string;
25751
- };
25752
- };
25753
- };
25754
- };
25755
- };
25756
- };
25757
- deleteReview: {
25758
- parameters: {
25759
- query?: never;
25760
- header?: never;
25761
- path: {
25762
- /** @description The ID of the review. */
25763
- review_id: number;
25764
- };
25765
- cookie?: never;
25766
- };
25767
- requestBody?: never;
25768
- responses: {
25769
- 200: {
25770
- headers: {
25771
- [name: string]: unknown;
25772
- };
25773
- content: {
25774
- "application/json": {
25775
- data?: {
25776
- /** @example 468 */
25777
- id?: number;
25778
- /** @example 1 */
25779
- rating?: number;
25780
- /** @example Nice Listing */
25781
- comment?: string;
25782
- reviewer?: {
25783
- /** @example 4 */
26669
+ compliance?: {
26670
+ /** @example 10 */
26671
+ id?: number;
26672
+ /** @example gas_safety_certificate */
26673
+ key?: string;
26674
+ /** @example Gas Safety Certificate */
26675
+ name?: string;
26676
+ };
26677
+ /** @example gas_certificate */
26678
+ verification_layer_key?: string;
26679
+ /** @example submitted */
26680
+ status?: string;
26681
+ submitted_data?: {
26682
+ document_file?: {
26683
+ /** @example cover.pdf */
26684
+ file_name?: string;
26685
+ /** @example tenancy_compliance/cover.pdf */
26686
+ storage_path?: string;
26687
+ /** @example https://api.example.com/api/v1/portal/admin/documents/view?expires=1774863000&signature=abc */
26688
+ view_url?: string;
26689
+ /** @example https://api.example.com/api/v1/portal/admin/documents/download?expires=1774863000&signature=abc */
26690
+ download_url?: string;
26691
+ /** @example verification_documents */
26692
+ disk?: string;
26693
+ };
26694
+ };
26695
+ /** @example null */
26696
+ rejection_reason?: string | null;
26697
+ /** @example null */
26698
+ reviewed_by?: string | null;
26699
+ /** @example null */
26700
+ reviewed_at?: string | null;
26701
+ /** @example 2026-04-01T09:30:00Z */
26702
+ created_at?: string;
26703
+ }[];
26704
+ /**
26705
+ * @example [
26706
+ * {
26707
+ * "id": 10,
26708
+ * "responsible_party": "landlord",
26709
+ * "responsible_party_label": "Landlord",
26710
+ * "liability_exclusion_flag": false,
26711
+ * "requirements": [
26712
+ * "gas_certificate"
26713
+ * ]
26714
+ * }
26715
+ * ]
26716
+ */
26717
+ compliances?: {
26718
+ /** @example 10 */
25784
26719
  id?: number;
25785
- /** @example Lola Holmes */
25786
- name?: string;
25787
- };
25788
- /** @example 01 May 2026, 08:09 PM */
25789
- created_at?: string;
25790
- /** @example 01 May 2026, 08:09 PM */
25791
- updated_at?: string;
25792
- };
25793
- };
25794
- };
25795
- };
25796
- };
25797
- };
25798
- fetchOneTenancy: {
25799
- parameters: {
25800
- query?: never;
25801
- header?: never;
25802
- path: {
25803
- /** @description The UID of the tenancy. */
25804
- tenancy_uid: string;
25805
- };
25806
- cookie?: never;
25807
- };
25808
- requestBody?: never;
25809
- responses: {
25810
- 200: {
25811
- headers: {
25812
- [name: string]: unknown;
25813
- };
25814
- content: {
25815
- "application/json": {
25816
- data?: {
25817
- /** @example cec24490-3159-4f8a-ad83-983b9ff68b0f */
25818
- uid?: string;
25819
- /** @example 4881.50 */
25820
- rent_amount?: string;
25821
- /** @example 2151.17 */
25822
- deposit_amount?: string;
25823
- /** @example offer_accepted */
25824
- state?: string;
25825
- /** @example 2025-08-24T00:00:00.000000Z */
25826
- start_date?: string;
25827
- /** @example 2026-08-24T00:00:00.000000Z */
25828
- end_date?: string;
25829
- /** @example false */
25830
- is_periodic?: boolean;
25831
- /** @example null */
25832
- company_name?: string | null;
25833
- /** @example null */
25834
- company_registration_number?: string | null;
25835
- /** @example 2026-05-01T20:09:08.000000Z */
25836
- created_at?: string;
25837
- /** @example [] */
25838
- compliances?: unknown[];
26720
+ /** @example landlord */
26721
+ responsible_party?: string;
26722
+ /** @example Landlord */
26723
+ responsible_party_label?: string;
26724
+ /** @example false */
26725
+ liability_exclusion_flag?: boolean;
26726
+ /**
26727
+ * @example [
26728
+ * "gas_certificate"
26729
+ * ]
26730
+ */
26731
+ requirements?: string[];
26732
+ }[];
25839
26733
  compliance_status?: {
25840
- /** @example unknown */
26734
+ /** @example compliant */
25841
26735
  overall?: string;
25842
- /** @example [] */
25843
- breakdown?: unknown[];
26736
+ /**
26737
+ * @example [
26738
+ * {
26739
+ * "compliance_key": "gas_safety_certificate",
26740
+ * "state": "compliant",
26741
+ * "valid_until": "2027-03-01"
26742
+ * },
26743
+ * {
26744
+ * "compliance_key": "electrical_installation_condition_report",
26745
+ * "state": "non_compliant",
26746
+ * "valid_until": null
26747
+ * }
26748
+ * ]
26749
+ */
26750
+ breakdown?: {
26751
+ /** @example gas_safety_certificate */
26752
+ compliance_key?: string;
26753
+ /** @example compliant */
26754
+ state?: string;
26755
+ /** @example 2027-03-01 */
26756
+ valid_until?: string;
26757
+ }[];
25844
26758
  };
25845
26759
  };
25846
26760
  };
@@ -25859,15 +26773,15 @@ export interface operations {
25859
26773
  content: {
25860
26774
  "application/json": {
25861
26775
  /**
25862
- * @description ID of the listing for which the tenancy is being created. The <code>id</code> of an existing record in the listings table.
25863
- * @example 12
26776
+ * @description UID of the listing for which the tenancy is being created. The <code>uid</code> of an existing record in the listings table.
26777
+ * @example 55178b5b-ca29-41a2-a9da-f51cb257e328
25864
26778
  */
25865
- listing_id: number;
26779
+ listing_uid: string;
25866
26780
  /**
25867
- * @description ID of the user who will be the tenant. The <code>id</code> of an existing record in the users table.
25868
- * @example 45
26781
+ * @description UID of the user who will be the tenant. The <code>uid</code> of an existing record in the users table.
26782
+ * @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df
25869
26783
  */
25870
- tenant_id: number;
26784
+ tenant_uid: string;
25871
26785
  /**
25872
26786
  * @description Monthly rent amount for the tenancy. Must be at least 1.
25873
26787
  * @example 1200
@@ -25902,32 +26816,43 @@ export interface operations {
25902
26816
  };
25903
26817
  };
25904
26818
  responses: {
26819
+ /** @description Tenancy created successfully */
25905
26820
  200: {
25906
26821
  headers: {
25907
26822
  [name: string]: unknown;
25908
26823
  };
25909
26824
  content: {
25910
26825
  "application/json": {
26826
+ /** @example Tenancy created successfully */
26827
+ message?: string;
26828
+ /** @example null */
26829
+ event?: string | null;
25911
26830
  data?: {
25912
- /** @example 63c2e7fb-6e7c-4c71-8fbe-6086644cb30e */
26831
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
25913
26832
  uid?: string;
25914
- /** @example 4978.97 */
26833
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
26834
+ listing_uid?: string;
26835
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
26836
+ landlord_uid?: string;
26837
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
26838
+ tenant_uid?: string;
26839
+ /** @example 1500.00 */
25915
26840
  rent_amount?: string;
25916
- /** @example 1598.98 */
26841
+ /** @example 1500.00 */
25917
26842
  deposit_amount?: string;
25918
- /** @example active */
26843
+ /** @example pending */
25919
26844
  state?: string;
25920
- /** @example 2025-09-19T00:00:00.000000Z */
26845
+ /** @example 2026-06-01 */
25921
26846
  start_date?: string;
25922
- /** @example 2026-09-19T00:00:00.000000Z */
26847
+ /** @example 2027-05-31 */
25923
26848
  end_date?: string;
25924
- /** @example true */
26849
+ /** @example false */
25925
26850
  is_periodic?: boolean;
25926
26851
  /** @example null */
25927
26852
  company_name?: string | null;
25928
26853
  /** @example null */
25929
26854
  company_registration_number?: string | null;
25930
- /** @example 2026-05-01T20:09:08.000000Z */
26855
+ /** @example 2026-05-06T10:30:00.000000Z */
25931
26856
  created_at?: string;
25932
26857
  };
25933
26858
  };
@@ -26036,7 +26961,7 @@ export interface operations {
26036
26961
  query?: never;
26037
26962
  header?: never;
26038
26963
  path: {
26039
- /** @description Optional parameter. uuid required The ID of the tenancy to renew. */
26964
+ /** @description The ID of the tenancy to renew. */
26040
26965
  tenancy_uid: string;
26041
26966
  };
26042
26967
  cookie?: never;
@@ -26068,8 +26993,8 @@ export interface operations {
26068
26993
  query?: never;
26069
26994
  header?: never;
26070
26995
  path: {
26071
- /** @description The ID of the tenancy to convert. */
26072
- tenancy_uid: number;
26996
+ /** @description The UID of the tenancy to convert. */
26997
+ tenancy_uid: string;
26073
26998
  };
26074
26999
  cookie?: never;
26075
27000
  };
@@ -26219,17 +27144,17 @@ export interface operations {
26219
27144
  * "from_state": "enquiry",
26220
27145
  * "to_state": "pre_move_in_ready",
26221
27146
  * "changed_by_user_id": 3,
26222
- * "changed_by_name": "Teagan King",
27147
+ * "changed_by_name": "Bruce Parker",
26223
27148
  * "comment": "Qui commodi incidunt iure odit.",
26224
- * "created_at": "2026-01-09T06:56:07.000000Z"
27149
+ * "created_at": "2026-01-14T00:46:07.000000Z"
26225
27150
  * },
26226
27151
  * {
26227
- * "from_state": "offer_pending",
26228
- * "to_state": "offer_accepted",
27152
+ * "from_state": "pre_move_in_ready",
27153
+ * "to_state": "periodic",
26229
27154
  * "changed_by_user_id": 3,
26230
- * "changed_by_name": "Teagan King",
26231
- * "comment": "Esse in velit maiores eos eveniet odio eaque.",
26232
- * "created_at": "2025-11-02T04:55:43.000000Z"
27155
+ * "changed_by_name": "Bruce Parker",
27156
+ * "comment": null,
27157
+ * "created_at": "2025-11-21T08:41:47.000000Z"
26233
27158
  * }
26234
27159
  * ]
26235
27160
  */
@@ -26240,11 +27165,11 @@ export interface operations {
26240
27165
  to_state?: string;
26241
27166
  /** @example 3 */
26242
27167
  changed_by_user_id?: number;
26243
- /** @example Teagan King */
27168
+ /** @example Bruce Parker */
26244
27169
  changed_by_name?: string;
26245
27170
  /** @example Qui commodi incidunt iure odit. */
26246
27171
  comment?: string;
26247
- /** @example 2026-01-09T06:56:07.000000Z */
27172
+ /** @example 2026-01-14T00:46:07.000000Z */
26248
27173
  created_at?: string;
26249
27174
  }[];
26250
27175
  };
@@ -26629,15 +27554,15 @@ export interface operations {
26629
27554
  content: {
26630
27555
  "application/json": {
26631
27556
  data?: {
26632
- /** @example 3868f164-f16f-4c2d-afc4-6e3d1a4c9536 */
27557
+ /** @example 04101f31-35b3-4d6e-9631-513e9134c3f8 */
26633
27558
  uid?: string;
26634
- /** @example Ms. Audra Crooks II */
27559
+ /** @example Emily Reid */
26635
27560
  username?: string;
26636
27561
  /** @example null */
26637
27562
  first_name?: string | null;
26638
27563
  /** @example null */
26639
27564
  last_name?: string | null;
26640
- /** @example hirthe.theo@example.com */
27565
+ /** @example reid.francesca@example.org */
26641
27566
  email?: string;
26642
27567
  /** @example null */
26643
27568
  phone?: string | null;
@@ -26659,7 +27584,7 @@ export interface operations {
26659
27584
  timezone?: string;
26660
27585
  /** @example Customer */
26661
27586
  user_type?: string;
26662
- /** @example 01 May 2026, 08:09 PM */
27587
+ /** @example 06 May 2026, 01:59 PM */
26663
27588
  created?: string;
26664
27589
  /** @example 0 seconds ago */
26665
27590
  email_verified_at?: string;
@@ -26724,24 +27649,18 @@ export interface operations {
26724
27649
  reservedBookingsTenants: {
26725
27650
  parameters: {
26726
27651
  query?: {
27652
+ /** @description Filter bookings by tenant/guest name. */
27653
+ tenant_name?: string | null;
26727
27654
  /** @description Number of bookings per page. */
26728
- per_page?: number;
27655
+ per_page?: number | null;
27656
+ /** @description Current page number. */
27657
+ page?: number | null;
26729
27658
  };
26730
27659
  header?: never;
26731
27660
  path?: never;
26732
27661
  cookie?: never;
26733
27662
  };
26734
- requestBody?: {
26735
- content: {
26736
- "application/json": {
26737
- /**
26738
- * @description Must be at least 1. Must not be greater than 100.
26739
- * @example 1
26740
- */
26741
- per_page?: number | null;
26742
- };
26743
- };
26744
- };
27663
+ requestBody?: never;
26745
27664
  responses: {
26746
27665
  /** @description Retrieve tenant reserved bookings */
26747
27666
  200: {
@@ -26793,7 +27712,8 @@ export interface operations {
26793
27712
  * "end_date": "13 Jun 2026",
26794
27713
  * "nights": 3,
26795
27714
  * "status": "pending",
26796
- * "total_price": "450.00"
27715
+ * "total_price": "450.00",
27716
+ * "created_at": "06 May, 2026 10:30 AM"
26797
27717
  * }
26798
27718
  * ]
26799
27719
  */
@@ -26860,6 +27780,8 @@ export interface operations {
26860
27780
  status?: string;
26861
27781
  /** @example 450.00 */
26862
27782
  total_price?: string;
27783
+ /** @example 06 May, 2026 10:30 AM */
27784
+ created_at?: string;
26863
27785
  }[];
26864
27786
  pagination?: {
26865
27787
  /** @example 1 */
@@ -26934,15 +27856,15 @@ export interface operations {
26934
27856
  content: {
26935
27857
  "application/json": {
26936
27858
  data?: {
26937
- /** @example 3b07f124-3176-4bad-9a0a-3f8f3796de17 */
27859
+ /** @example 2c1e024d-13e5-4686-91f4-11d819a00bf9 */
26938
27860
  uid?: string;
26939
- /** @example Morgan Hirthe */
27861
+ /** @example Connor Richards */
26940
27862
  username?: string;
26941
27863
  /** @example null */
26942
27864
  first_name?: string | null;
26943
27865
  /** @example null */
26944
27866
  last_name?: string | null;
26945
- /** @example imclaughlin@example.org */
27867
+ /** @example igreen@example.org */
26946
27868
  email?: string;
26947
27869
  /** @example null */
26948
27870
  phone?: string | null;
@@ -26964,7 +27886,7 @@ export interface operations {
26964
27886
  timezone?: string;
26965
27887
  /** @example Customer */
26966
27888
  user_type?: string;
26967
- /** @example 01 May 2026, 08:09 PM */
27889
+ /** @example 06 May 2026, 01:59 PM */
26968
27890
  created?: string;
26969
27891
  /** @example 0 seconds ago */
26970
27892
  email_verified_at?: string;
@@ -27036,15 +27958,15 @@ export interface operations {
27036
27958
  content: {
27037
27959
  "application/json": {
27038
27960
  data?: {
27039
- /** @example ca2b69ed-d994-46be-a919-4a86cc97fc33 */
27961
+ /** @example f1ee6f9e-4c4b-4fb3-b2a6-70099e9a31e7 */
27040
27962
  uid?: string;
27041
- /** @example Ms. Audra Crooks II */
27963
+ /** @example Emily Reid */
27042
27964
  username?: string;
27043
27965
  /** @example null */
27044
27966
  first_name?: string | null;
27045
27967
  /** @example null */
27046
27968
  last_name?: string | null;
27047
- /** @example leo34@example.net */
27969
+ /** @example wscott@example.net */
27048
27970
  email?: string;
27049
27971
  /** @example null */
27050
27972
  phone?: string | null;
@@ -27066,7 +27988,7 @@ export interface operations {
27066
27988
  timezone?: string;
27067
27989
  /** @example Customer */
27068
27990
  user_type?: string;
27069
- /** @example 01 May 2026, 08:09 PM */
27991
+ /** @example 06 May 2026, 01:59 PM */
27070
27992
  created?: string;
27071
27993
  /** @example 0 seconds ago */
27072
27994
  email_verified_at?: string;
@@ -27320,7 +28242,7 @@ export interface operations {
27320
28242
  completed_layers?: number;
27321
28243
  /** @example 4 */
27322
28244
  pending_layers?: number;
27323
- /** @example 01 May 2026, 08:09 PM */
28245
+ /** @example 06 May 2026, 01:59 PM */
27324
28246
  last_calculated_at?: string;
27325
28247
  };
27326
28248
  };
@@ -27368,7 +28290,7 @@ export interface operations {
27368
28290
  completed_layers?: number;
27369
28291
  /** @example 4 */
27370
28292
  pending_layers?: number;
27371
- /** @example 01 May 2026, 08:09 PM */
28293
+ /** @example 06 May 2026, 01:59 PM */
27372
28294
  last_calculated_at?: string;
27373
28295
  };
27374
28296
  };
@@ -27402,14 +28324,14 @@ export interface operations {
27402
28324
  content: {
27403
28325
  "application/json": {
27404
28326
  data?: {
27405
- /** @example aab16be9-5c56-43cc-8317-f9bed1015e03 */
28327
+ /** @example a253e3d0-8f80-4c36-ad5d-bee1c44aaedb */
27406
28328
  wishlist_uid?: string;
27407
28329
  listing?: {
27408
- /** @example New For Sale Used Item draft • 1 May 2026, 8:09 PM */
28330
+ /** @example New For Sale Used Item draft • 6 May 2026, 1:59 PM */
27409
28331
  draft_name?: string;
27410
- /** @example LST-UIT-SAL-MONCIYFAM6P */
28332
+ /** @example LST-UIT-SAL-MOU4IE4CEKY */
27411
28333
  sku?: string;
27412
- /** @example fcff3915-576a-4af0-8629-77d65184626a */
28334
+ /** @example 7c0f038c-38b7-4279-a818-4d65c0f748db */
27413
28335
  uid?: string;
27414
28336
  /** @example Sale */
27415
28337
  listing_type?: string;
@@ -27756,17 +28678,17 @@ export interface operations {
27756
28678
  content: {
27757
28679
  "application/json": {
27758
28680
  data?: {
27759
- /** @example 0dd08e9c-2b6f-4c31-acea-399984c1f537 */
28681
+ /** @example 6b4e9a1a-067d-47d2-abf7-156406afe774 */
27760
28682
  uid?: string;
27761
- /** @example Accusantium aut suscipit ea suscipit illo ea doloribus neque. */
28683
+ /** @example Dolor ea natus vel. */
27762
28684
  note?: string;
27763
28685
  user?: {
27764
- /** @example 20 */
28686
+ /** @example 9 */
27765
28687
  id?: number;
27766
- /** @example Suzanne Morgan */
28688
+ /** @example Carrie Johnson */
27767
28689
  name?: string;
27768
28690
  };
27769
- /** @example 2026-04-18 03:00:21 */
28691
+ /** @example 2026-04-27 22:15:17 */
27770
28692
  created_at?: string;
27771
28693
  };
27772
28694
  };
@@ -27790,13 +28712,13 @@ export interface operations {
27790
28712
  content: {
27791
28713
  "application/json": {
27792
28714
  data?: {
27793
- /** @example 9 */
28715
+ /** @example 0 */
27794
28716
  current_level?: number;
27795
28717
  /** @example 3 */
27796
28718
  completed_layers?: number;
27797
- /** @example 2 */
28719
+ /** @example 4 */
27798
28720
  pending_layers?: number;
27799
- /** @example 01 May 2026, 08:09 PM */
28721
+ /** @example 06 May 2026, 01:59 PM */
27800
28722
  last_calculated_at?: string;
27801
28723
  };
27802
28724
  };
@@ -28038,7 +28960,7 @@ export interface operations {
28038
28960
  completed_layers?: number;
28039
28961
  /** @example 4 */
28040
28962
  pending_layers?: number;
28041
- /** @example 01 May 2026, 08:09 PM */
28963
+ /** @example 06 May 2026, 01:59 PM */
28042
28964
  last_calculated_at?: string;
28043
28965
  };
28044
28966
  };