@justins-home/types 1.1.70 → 1.1.71

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 +1469 -587
  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 201c5697-7310-443b-8973-66180760fad0 */
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, 12:40 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,12 +6873,12 @@ export interface operations {
6770
6873
  */
6771
6874
  search?: string | null;
6772
6875
  /**
6773
- * @example rejected
6876
+ * @example pending
6774
6877
  * @enum {string|null}
6775
6878
  */
6776
6879
  status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
6777
6880
  /**
6778
- * @example landlord
6881
+ * @example admin
6779
6882
  * @enum {string|null}
6780
6883
  */
6781
6884
  source?: "tenant" | "landlord" | "admin" | 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 fde8a17a-7b5d-4616-8273-6c7a4be4341c */
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, 12:40 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 fcdfd191-5e08-41c7-9a38-42d3b6590d9d */
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, 12:40 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 79fc9359-4f1d-4b87-9951-e590b1951eba */
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, 12:40 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 61e3e33c-eadc-4621-9682-896f0fb3136d */
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, 12:40 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 2ad2d18e-3e8a-4463-8899-57933bee2a88 */
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, 12:40 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 4124196c-02cc-46ec-96f0-4526df7e2984 */
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-06T12:40:03.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 94ba1861-71cf-4919-bfb3-1158f40ca013 */
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, 12:40 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, 12:40 PM */
8192
8295
  draft_name?: string;
8193
- /** @example LST-PRP-LTR-MONCIXPK6SK */
8296
+ /** @example LST-PRP-LTR-MOU1OPH1QRX */
8194
8297
  sku?: string;
8195
- /** @example ae2de3b1-b5d1-4bcd-b5de-ea28fee99e79 */
8298
+ /** @example 8ce952a5-be6b-4cc5-b35f-49b3695ec15f */
8196
8299
  uid?: string;
8197
8300
  /** @example Rent */
8198
8301
  listing_type?: string;
@@ -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 4fcdb7ad-11e7-47d6-b533-d2eee7784157 */
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, 12:40 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, 12:40 PM */
10362
10465
  draft_name?: string;
10363
- /** @example LST-PRP-LTR-MONCIXS8KQQ */
10466
+ /** @example LST-PRP-LTR-MOU1OPJZWJP */
10364
10467
  sku?: string;
10365
- /** @example 3c055c0a-6bce-4ad8-91b4-d5a212d39be2 */
10468
+ /** @example 76f72397-5d33-4078-910a-b5e470f733d9 */
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 27bb365b-2f76-4ed8-b9f7-dee495355b20 */
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, 12:40 PM",
11216
+ * "sku": "LST-PRP-SAL-MOU1OPLIQGQ",
11217
+ * "uid": "306df068-fcc2-4af8-a6cc-926258757787",
11218
+ * "listing_type": "Sale",
11116
11219
  * "vertical": "Property",
11117
- * "arrangement_type": "standard_residential",
11118
- * "arrangement_type_label": "Standard Residential",
11220
+ * "arrangement_type": "short_term_managed",
11221
+ * "arrangement_type_label": "Short Term Managed",
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",
11234
+ * "draft_name": "New For Sale Property draft • 6 May 2026, 12:40 PM",
11235
+ * "sku": "LST-PRP-SAL-MOU1OPLKU9U",
11236
+ * "uid": "121ea428-0ffc-4486-8465-230e353847df",
11134
11237
  * "listing_type": "Sale",
11135
- * "vertical": "Used Item",
11136
- * "arrangement_type": null,
11137
- * "arrangement_type_label": null,
11238
+ * "vertical": "Property",
11239
+ * "arrangement_type": "short_term_managed",
11240
+ * "arrangement_type_label": "Short Term Managed",
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, 12:40 PM */
11151
11256
  draft_name?: string;
11152
- /** @example LST-PRP-LTR-MONCIXTM63N */
11257
+ /** @example LST-PRP-SAL-MOU1OPLIQGQ */
11153
11258
  sku?: string;
11154
- /** @example e1362b75-5bf6-4430-b9e5-1c083bb20fe8 */
11259
+ /** @example 306df068-fcc2-4af8-a6cc-926258757787 */
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 short_term_managed */
11161
11266
  arrangement_type?: string;
11162
- /** @example Standard Residential */
11267
+ /** @example Short Term Managed */
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, 12:40 PM */
11350
11455
  draft_name?: string;
11351
- /** @example LST-PRP-LTR-MONCIXTW2IX */
11456
+ /** @example LST-PRP-LTR-MOU1OPLVJJ1 */
11352
11457
  sku?: string;
11353
- /** @example 6ee2e64a-42bc-4707-ab78-69c8401d4adf */
11458
+ /** @example d03186f4-f714-4bb2-bb24-698f298dca2f */
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, 12:40 PM */
11417
11522
  draft_name?: string;
11418
- /** @example LST-PRP-LTR-MONCIXU1KLQ */
11523
+ /** @example LST-PRP-LTR-MOU1OPM1WEL */
11419
11524
  sku?: string;
11420
- /** @example 0744d6bf-fc84-4de3-b177-c238f058b6df */
11525
+ /** @example d5d7d5fa-efb5-4269-8da6-228cf689229e */
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, 12:40 PM */
11474
11579
  draft_name?: string;
11475
- /** @example LST-PRP-LTR-MONCIXU5Z17 */
11580
+ /** @example LST-PRP-LTR-MOU1OPM7WMR */
11476
11581
  sku?: string;
11477
- /** @example d584d1d9-88da-4f38-8ddf-b3ee74e547dc */
11582
+ /** @example 393116ae-f26d-42fa-a4e4-b49393e3e5f2 */
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, 12:40 PM */
11531
11636
  draft_name?: string;
11532
- /** @example LST-PRP-LTR-MONCIXUAWJN */
11637
+ /** @example LST-PRP-LTR-MOU1OPMCPYE */
11533
11638
  sku?: string;
11534
- /** @example 968a75f0-d473-4eac-992d-b71e19e29ac3 */
11639
+ /** @example 4db47508-59a6-49e1-a2eb-15d640faf192 */
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 49 */
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 50 */
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 51 */
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": 25,
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": 26,
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 25 */
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 27 */
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 28 */
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 29 */
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 19 */
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-06T12:40:04.000000Z */
12351
12456
  created_at?: string;
12352
- /** @example 2026-05-01T20:09:07.000000Z */
12457
+ /** @example 2026-05-06T12:40:04.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 20 */
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-06T12:40:04.000000Z */
12427
12532
  created_at?: string;
12428
- /** @example 2026-05-01T20:09:07.000000Z */
12533
+ /** @example 2026-05-06T12:40:04.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": "nostrum",
13800
+ * "name": "facilis",
13801
+ * "description": "Velit aut natus consectetur et est quaerat.",
13697
13802
  * "value_type": "string"
13698
13803
  * },
13699
13804
  * {
13700
- * "key": "officia",
13701
- * "name": "ut",
13702
- * "description": "Voluptatibus qui minima recusandae repellendus.",
13805
+ * "key": "dolor",
13806
+ * "name": "qui",
13807
+ * "description": "Eos rerum earum ullam fugiat incidunt.",
13703
13808
  * "value_type": "string"
13704
13809
  * }
13705
13810
  * ]
13706
13811
  */
13707
13812
  data?: {
13708
- /** @example officiis */
13813
+ /** @example nostrum */
13709
13814
  key?: string;
13710
- /** @example officia */
13815
+ /** @example facilis */
13711
13816
  name?: string;
13712
- /** @example Numquam rerum inventore debitis totam. */
13817
+ /** @example Velit aut natus consectetur et est quaerat. */
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 624d19fc-bf00-4b0c-bd64-03e8ea1e6f34 */
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, 02:38 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 05 Jul 2026, 11:27 PM */
14969
15074
  next_inspection_date?: string;
14970
- /** @example 01 May 2026, 08:09 PM */
15075
+ /** @example 06 May 2026, 12:40 PM */
14971
15076
  created_at?: string;
14972
- /** @example 01 May 2026, 08:09 PM */
15077
+ /** @example 06 May 2026, 12:40 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 14037ee9-946b-4c23-8c19-f2bae1ee401d */
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, 02:38 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 05 Jul 2026, 11:27 PM */
15042
15147
  next_inspection_date?: string;
15043
- /** @example 01 May 2026, 08:09 PM */
15148
+ /** @example 06 May 2026, 12:40 PM */
15044
15149
  created_at?: string;
15045
- /** @example 01 May 2026, 08:09 PM */
15150
+ /** @example 06 May 2026, 12:40 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 9552c926-7357-4908-903d-8440ea726b32 */
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, 12:04 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, 07:58 AM */
15155
15260
  next_inspection_date?: string;
15156
- /** @example 01 May 2026, 08:09 PM */
15261
+ /** @example 06 May 2026, 12:40 PM */
15157
15262
  created_at?: string;
15158
- /** @example 01 May 2026, 08:09 PM */
15263
+ /** @example 06 May 2026, 12:40 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 15d62cb7-113c-4202-a8b0-26467c836d65 */
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, 02:38 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 05 Jul 2026, 11:27 PM */
15210
15315
  next_inspection_date?: string;
15211
- /** @example 01 May 2026, 08:09 PM */
15316
+ /** @example 06 May 2026, 12:40 PM */
15212
15317
  created_at?: string;
15213
- /** @example 01 May 2026, 08:09 PM */
15318
+ /** @example 06 May 2026, 12:40 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 a982e697-82bc-452a-9d53-9940816c415f */
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, 12:04 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, 07:58 AM */
15265
15370
  next_inspection_date?: string;
15266
- /** @example 01 May 2026, 08:09 PM */
15371
+ /** @example 06 May 2026, 12:40 PM */
15267
15372
  created_at?: string;
15268
- /** @example 01 May 2026, 08:09 PM */
15373
+ /** @example 06 May 2026, 12:40 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 d6640ece-8797-482a-bc50-df2b31cd116c */
15396
15501
  uid?: string;
15397
15502
  /** @example 1 */
15398
15503
  tenancy_id?: number;
15399
- /** @example Quod saepe pariatur animi dolorum ut. */
15504
+ /** @example Consequatur voluptatibus quis et. */
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 Fugiat atque eveniet iure dolor perferendis est. Optio delectus qui consectetur cumque. Nisi molestiae sequi sed aut iusto. */
15402
15507
  description?: string;
15403
- /** @example in_progress */
15508
+ /** @example reported */
15404
15509
  status?: string;
15405
- /** @example urgent */
15510
+ /** @example low */
15406
15511
  priority?: string;
15407
- /** @example 28 Apr 2026, 09:18 AM */
15512
+ /** @example 03 May 2026, 08:45 PM */
15408
15513
  reported_at?: string;
15409
- /** @example null */
15410
- assigned_at?: string | null;
15514
+ /** @example 03 May 2026, 08:57 PM */
15515
+ assigned_at?: string;
15411
15516
  /** @example null */
15412
15517
  completed_at?: string | null;
15413
- /** @example 03 May 2026, 08:07 AM */
15518
+ /** @example 06 May 2026, 03:15 PM */
15414
15519
  sla_deadline?: string;
15415
- /** @example 01 May 2026, 08:09 PM */
15520
+ /** @example 06 May 2026, 12:40 PM */
15416
15521
  created_at?: string;
15417
- /** @example 01 May 2026, 08:09 PM */
15522
+ /** @example 06 May 2026, 12:40 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 771d14be-7658-4f6f-9965-cadeeb18dd0f */
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, 02:08 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, 10:33 PM */
15473
15578
  sla_deadline?: string;
15474
- /** @example 01 May 2026, 08:09 PM */
15579
+ /** @example 06 May 2026, 12:40 PM */
15475
15580
  created_at?: string;
15476
- /** @example 01 May 2026, 08:09 PM */
15581
+ /** @example 06 May 2026, 12:40 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 d6c6ec0a-a2c6-473d-bebb-f89260573824 */
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 29 Apr 2026, 11:53 PM */
15526
15631
  reported_at?: string;
15527
- /** @example 30 Apr 2026, 03:42 AM */
15632
+ /** @example 04 May 2026, 08:13 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, 01:35 AM */
15532
15637
  sla_deadline?: string;
15533
- /** @example 01 May 2026, 08:09 PM */
15638
+ /** @example 06 May 2026, 12:40 PM */
15534
15639
  created_at?: string;
15535
- /** @example 01 May 2026, 08:09 PM */
15640
+ /** @example 06 May 2026, 12:40 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 3d72092b-14d9-46fb-9d2d-fa767a102fce */
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 29 Apr 2026, 11:53 PM */
15585
15690
  reported_at?: string;
15586
- /** @example 30 Apr 2026, 03:42 AM */
15691
+ /** @example 04 May 2026, 08:13 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, 01:35 AM */
15591
15696
  sla_deadline?: string;
15592
- /** @example 01 May 2026, 08:09 PM */
15697
+ /** @example 06 May 2026, 12:40 PM */
15593
15698
  created_at?: string;
15594
- /** @example 01 May 2026, 08:09 PM */
15699
+ /** @example 06 May 2026, 12:40 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 4569d6b7-0dc6-4e02-9f3b-55b7aee6e611 */
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 29 Apr 2026, 11:53 PM */
15644
15749
  reported_at?: string;
15645
- /** @example 30 Apr 2026, 03:42 AM */
15750
+ /** @example 04 May 2026, 08:13 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, 01:35 AM */
15650
15755
  sla_deadline?: string;
15651
- /** @example 01 May 2026, 08:09 PM */
15756
+ /** @example 06 May 2026, 12:40 PM */
15652
15757
  created_at?: string;
15653
- /** @example 01 May 2026, 08:09 PM */
15758
+ /** @example 06 May 2026, 12:40 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 [
@@ -18719,6 +18840,107 @@ export interface operations {
18719
18840
  };
18720
18841
  };
18721
18842
  };
18843
+ fetchInspection: {
18844
+ parameters: {
18845
+ query?: never;
18846
+ header?: never;
18847
+ path: {
18848
+ /** @description The unique UID of the inspection. */
18849
+ uid: string;
18850
+ };
18851
+ cookie?: never;
18852
+ };
18853
+ requestBody?: never;
18854
+ responses: {
18855
+ 200: {
18856
+ headers: {
18857
+ [name: string]: unknown;
18858
+ };
18859
+ content: {
18860
+ "application/json": {
18861
+ /** @example Inspection fetched successfully */
18862
+ message?: string;
18863
+ /** @example null */
18864
+ event?: string | null;
18865
+ data?: {
18866
+ /** @example insp_34fda1 */
18867
+ uid?: string;
18868
+ /** @example routine */
18869
+ inspection_type?: string;
18870
+ /** @example scheduled */
18871
+ status?: string;
18872
+ /** @example 10 Apr, 2026 10:30 AM */
18873
+ scheduled_date?: string;
18874
+ /** @example null */
18875
+ completed_date?: string | null;
18876
+ /** @example null */
18877
+ condition_rating?: string | null;
18878
+ /** @example null */
18879
+ summary?: string | null;
18880
+ /** @example 10 Jun, 2026 10:30 AM */
18881
+ next_inspection_date?: string;
18882
+ inspector?: {
18883
+ /** @example 12 */
18884
+ id?: number;
18885
+ /** @example Inspector Jane Doe */
18886
+ name?: string;
18887
+ };
18888
+ /**
18889
+ * @example [
18890
+ * {
18891
+ * "uid": "ism_34fda1",
18892
+ * "file_type": "image/jpeg",
18893
+ * "caption": "Kitchen leak evidence",
18894
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
18895
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
18896
+ * }
18897
+ * ]
18898
+ */
18899
+ media?: {
18900
+ /** @example ism_34fda1 */
18901
+ uid?: string;
18902
+ /** @example image/jpeg */
18903
+ file_type?: string;
18904
+ /** @example Kitchen leak evidence */
18905
+ caption?: string;
18906
+ /** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
18907
+ path?: string;
18908
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
18909
+ url?: string;
18910
+ }[];
18911
+ /** @example 01 Apr, 2026 09:00 AM */
18912
+ created_at?: string;
18913
+ /** @example 01 Apr, 2026 09:00 AM */
18914
+ updated_at?: string;
18915
+ };
18916
+ } | {
18917
+ data?: {
18918
+ /** @example 4a955316-2003-42fb-8533-d9fd1c59b19d */
18919
+ uid?: string;
18920
+ /** @example follow_up */
18921
+ inspection_type?: string;
18922
+ /** @example cancelled */
18923
+ status?: string;
18924
+ /** @example 12 May 2026, 02:38 AM */
18925
+ scheduled_date?: string;
18926
+ /** @example null */
18927
+ completed_date?: string | null;
18928
+ /** @example attention_required */
18929
+ condition_rating?: string;
18930
+ /** @example Quidem nostrum qui commodi incidunt iure odit. */
18931
+ summary?: string;
18932
+ /** @example 05 Jul 2026, 11:27 PM */
18933
+ next_inspection_date?: string;
18934
+ /** @example 06 May 2026, 12:40 PM */
18935
+ created_at?: string;
18936
+ /** @example 06 May 2026, 12:40 PM */
18937
+ updated_at?: string;
18938
+ };
18939
+ };
18940
+ };
18941
+ };
18942
+ };
18943
+ };
18722
18944
  listingHistoryInspection: {
18723
18945
  parameters: {
18724
18946
  query?: {
@@ -18904,15 +19126,15 @@ export interface operations {
18904
19126
  content: {
18905
19127
  "application/json": {
18906
19128
  data?: {
18907
- /** @example 8c67c889-e167-4f85-918d-0b0e493a21c8 */
19129
+ /** @example d2b8caa3-3d1e-4f9a-916b-cdef7b3b2893 */
18908
19130
  uid?: string;
18909
- /** @example Ms. Audra Crooks II */
19131
+ /** @example Emily Reid */
18910
19132
  username?: string;
18911
19133
  /** @example null */
18912
19134
  first_name?: string | null;
18913
19135
  /** @example null */
18914
19136
  last_name?: string | null;
18915
- /** @example gulgowski.asia@example.com */
19137
+ /** @example anthony.khan@example.com */
18916
19138
  email?: string;
18917
19139
  /** @example null */
18918
19140
  phone?: string | null;
@@ -18934,9 +19156,9 @@ export interface operations {
18934
19156
  timezone?: string;
18935
19157
  /** @example Customer */
18936
19158
  user_type?: string;
18937
- /** @example 01 May 2026, 08:09 PM */
19159
+ /** @example 06 May 2026, 12:40 PM */
18938
19160
  created?: string;
18939
- /** @example 0 seconds ago */
19161
+ /** @example 1 second ago */
18940
19162
  email_verified_at?: string;
18941
19163
  verification_status?: {
18942
19164
  /** @example not_verified */
@@ -19403,15 +19625,15 @@ export interface operations {
19403
19625
  content: {
19404
19626
  "application/json": {
19405
19627
  data?: {
19406
- /** @example 1898d092-f3fd-44d3-b227-6d2dd5b2d2e8 */
19628
+ /** @example 6d65980c-e379-419d-aeed-6b3569c63783 */
19407
19629
  uid?: string;
19408
- /** @example Ms. Audra Crooks II */
19630
+ /** @example Emily Reid */
19409
19631
  username?: string;
19410
19632
  /** @example null */
19411
19633
  first_name?: string | null;
19412
19634
  /** @example null */
19413
19635
  last_name?: string | null;
19414
- /** @example idickens@example.org */
19636
+ /** @example jbailey@example.org */
19415
19637
  email?: string;
19416
19638
  /** @example null */
19417
19639
  phone?: string | null;
@@ -19433,7 +19655,7 @@ export interface operations {
19433
19655
  timezone?: string;
19434
19656
  /** @example Customer */
19435
19657
  user_type?: string;
19436
- /** @example 01 May 2026, 08:09 PM */
19658
+ /** @example 06 May 2026, 12:40 PM */
19437
19659
  created?: string;
19438
19660
  /** @example 0 seconds ago */
19439
19661
  email_verified_at?: string;
@@ -19518,24 +19740,18 @@ export interface operations {
19518
19740
  reservedBookingsLandlord: {
19519
19741
  parameters: {
19520
19742
  query?: {
19743
+ /** @description Filter bookings by tenant/guest name. */
19744
+ tenant_name?: string | null;
19521
19745
  /** @description Number of bookings per page. */
19522
- per_page?: number;
19523
- };
19746
+ per_page?: number | null;
19747
+ /** @description Current page number. */
19748
+ page?: number | null;
19749
+ };
19524
19750
  header?: never;
19525
19751
  path?: never;
19526
19752
  cookie?: never;
19527
19753
  };
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
- };
19754
+ requestBody?: never;
19539
19755
  responses: {
19540
19756
  /** @description Retrieve landlord reserved bookings */
19541
19757
  200: {
@@ -19587,7 +19803,8 @@ export interface operations {
19587
19803
  * "end_date": "13 Jun 2026",
19588
19804
  * "nights": 3,
19589
19805
  * "status": "pending",
19590
- * "total_price": "450.00"
19806
+ * "total_price": "450.00",
19807
+ * "created_at": "06 May, 2026 10:30 AM"
19591
19808
  * }
19592
19809
  * ]
19593
19810
  */
@@ -19654,6 +19871,8 @@ export interface operations {
19654
19871
  status?: string;
19655
19872
  /** @example 450.00 */
19656
19873
  total_price?: string;
19874
+ /** @example 06 May, 2026 10:30 AM */
19875
+ created_at?: string;
19657
19876
  }[];
19658
19877
  pagination?: {
19659
19878
  /** @example 1 */
@@ -20060,12 +20279,12 @@ export interface operations {
20060
20279
  */
20061
20280
  search?: string | null;
20062
20281
  /**
20063
- * @example withdrawn
20282
+ * @example pending
20064
20283
  * @enum {string|null}
20065
20284
  */
20066
20285
  status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
20067
20286
  /**
20068
- * @example admin
20287
+ * @example landlord
20069
20288
  * @enum {string|null}
20070
20289
  */
20071
20290
  source?: "tenant" | "landlord" | "admin" | null;
@@ -20294,7 +20513,7 @@ export interface operations {
20294
20513
  content: {
20295
20514
  "application/json": {
20296
20515
  data?: {
20297
- /** @example d0516047-29c1-4aff-bb55-2a5f54dc21d1 */
20516
+ /** @example 33558df4-9c27-4a93-bdd9-9b0c75526a65 */
20298
20517
  uid?: string;
20299
20518
  /** @example JH-APP-2026-936806 */
20300
20519
  application_ref?: string;
@@ -20315,7 +20534,7 @@ export interface operations {
20315
20534
  /** @example null */
20316
20535
  rejection_reason?: string | null;
20317
20536
  timeline?: {
20318
- /** @example 01 May 2026, 08:09 PM */
20537
+ /** @example 06 May 2026, 12:40 PM */
20319
20538
  created_at?: string;
20320
20539
  /** @example null */
20321
20540
  approved_at?: string | null;
@@ -20349,7 +20568,7 @@ export interface operations {
20349
20568
  content: {
20350
20569
  "application/json": {
20351
20570
  data?: {
20352
- /** @example 05933703-b390-49fe-b87a-fbc8a574db23 */
20571
+ /** @example dce4eae5-3bbd-4b7b-a56d-f9b160778610 */
20353
20572
  uid?: string;
20354
20573
  /** @example JH-APP-2026-757680 */
20355
20574
  application_ref?: string;
@@ -20370,7 +20589,7 @@ export interface operations {
20370
20589
  /** @example null */
20371
20590
  rejection_reason?: string | null;
20372
20591
  timeline?: {
20373
- /** @example 01 May 2026, 08:09 PM */
20592
+ /** @example 06 May 2026, 12:40 PM */
20374
20593
  created_at?: string;
20375
20594
  /** @example null */
20376
20595
  approved_at?: string | null;
@@ -20414,7 +20633,7 @@ export interface operations {
20414
20633
  content: {
20415
20634
  "application/json": {
20416
20635
  data?: {
20417
- /** @example 08d6fc04-2240-40a9-ae59-094113b01131 */
20636
+ /** @example 36450514-6654-45bd-b39a-1e5c8ce0013f */
20418
20637
  uid?: string;
20419
20638
  /** @example JH-APP-2026-449171 */
20420
20639
  application_ref?: string;
@@ -20435,7 +20654,7 @@ export interface operations {
20435
20654
  /** @example null */
20436
20655
  rejection_reason?: string | null;
20437
20656
  timeline?: {
20438
- /** @example 01 May 2026, 08:09 PM */
20657
+ /** @example 06 May 2026, 12:40 PM */
20439
20658
  created_at?: string;
20440
20659
  /** @example null */
20441
20660
  approved_at?: string | null;
@@ -20469,7 +20688,7 @@ export interface operations {
20469
20688
  content: {
20470
20689
  "application/json": {
20471
20690
  data?: {
20472
- /** @example 69cf5a2a-f680-4a81-a30a-4dc47e08568f */
20691
+ /** @example 6100d114-3776-40d3-9d77-1720a7a60821 */
20473
20692
  uid?: string;
20474
20693
  /** @example 4881.50 */
20475
20694
  rent_amount?: string;
@@ -20477,9 +20696,9 @@ export interface operations {
20477
20696
  deposit_amount?: string;
20478
20697
  /** @example offer_accepted */
20479
20698
  state?: string;
20480
- /** @example 2025-08-24T00:00:00.000000Z */
20699
+ /** @example 2025-08-29T00:00:00.000000Z */
20481
20700
  start_date?: string;
20482
- /** @example 2026-08-24T00:00:00.000000Z */
20701
+ /** @example 2026-08-29T00:00:00.000000Z */
20483
20702
  end_date?: string;
20484
20703
  /** @example false */
20485
20704
  is_periodic?: boolean;
@@ -20487,7 +20706,7 @@ export interface operations {
20487
20706
  company_name?: string | null;
20488
20707
  /** @example null */
20489
20708
  company_registration_number?: string | null;
20490
- /** @example 2026-05-01T20:09:06.000000Z */
20709
+ /** @example 2026-05-06T12:40:03.000000Z */
20491
20710
  created_at?: string;
20492
20711
  };
20493
20712
  };
@@ -20495,6 +20714,88 @@ export interface operations {
20495
20714
  };
20496
20715
  };
20497
20716
  };
20717
+ fetchLandlordListingReviews: {
20718
+ parameters: {
20719
+ query?: {
20720
+ /** @description Number of records per page. */
20721
+ per_page?: number;
20722
+ /** @description Current page number. */
20723
+ page?: number;
20724
+ };
20725
+ header?: never;
20726
+ path?: never;
20727
+ cookie?: never;
20728
+ };
20729
+ requestBody?: never;
20730
+ responses: {
20731
+ /** @description Retrieve reviews for listings owned by the authenticated landlord */
20732
+ 200: {
20733
+ headers: {
20734
+ [name: string]: unknown;
20735
+ };
20736
+ content: {
20737
+ "application/json": {
20738
+ /** @example Review retrieved successfully */
20739
+ message?: string;
20740
+ /** @example null */
20741
+ event?: string | null;
20742
+ data?: {
20743
+ /**
20744
+ * @example [
20745
+ * {
20746
+ * "id": 1,
20747
+ * "rating": 5,
20748
+ * "comment": "Excellent service.",
20749
+ * "reviewable_type": "listing",
20750
+ * "reviewer": {
20751
+ * "uid": "aja asjas",
20752
+ * "name": "Sarah Jenkins"
20753
+ * },
20754
+ * "created_at": "28 Apr, 2026 09:00 AM",
20755
+ * "updated_at": "28 Apr, 2026 09:00 AM"
20756
+ * }
20757
+ * ]
20758
+ */
20759
+ items?: {
20760
+ /** @example 1 */
20761
+ id?: number;
20762
+ /** @example 5 */
20763
+ rating?: number;
20764
+ /** @example Excellent service. */
20765
+ comment?: string;
20766
+ /** @example listing */
20767
+ reviewable_type?: string;
20768
+ reviewer?: {
20769
+ /** @example aja asjas */
20770
+ uid?: string;
20771
+ /** @example Sarah Jenkins */
20772
+ name?: string;
20773
+ };
20774
+ /** @example 28 Apr, 2026 09:00 AM */
20775
+ created_at?: string;
20776
+ /** @example 28 Apr, 2026 09:00 AM */
20777
+ updated_at?: string;
20778
+ }[];
20779
+ pagination?: {
20780
+ /** @example 1 */
20781
+ current_page?: number;
20782
+ /** @example 15 */
20783
+ per_page?: number;
20784
+ /** @example 0 */
20785
+ total?: number;
20786
+ /** @example 1 */
20787
+ last_page?: number;
20788
+ /** @example null */
20789
+ from?: string | null;
20790
+ /** @example null */
20791
+ to?: string | null;
20792
+ };
20793
+ };
20794
+ };
20795
+ };
20796
+ };
20797
+ };
20798
+ };
20498
20799
  createListingDraft: {
20499
20800
  parameters: {
20500
20801
  query?: never;
@@ -20534,20 +20835,20 @@ export interface operations {
20534
20835
  content: {
20535
20836
  "application/json": {
20536
20837
  data?: {
20537
- /** @example New For Sale Used Item draft • 1 May 2026, 8:09 PM */
20838
+ /** @example New Short Let Property draft • 6 May 2026, 12:40 PM */
20538
20839
  draft_name?: string;
20539
- /** @example LST-UIT-SAL-MONCIXIHQTR */
20840
+ /** @example LST-PRP-SHL-MOU1OP89WN1 */
20540
20841
  sku?: string;
20541
- /** @example cacd547c-4379-471c-9ed7-03a5f61c59ac */
20842
+ /** @example 33f08212-1954-4b4c-82ac-45438709a580 */
20542
20843
  uid?: string;
20543
- /** @example Sale */
20844
+ /** @example Short Let */
20544
20845
  listing_type?: string;
20545
- /** @example Used Item */
20846
+ /** @example Property */
20546
20847
  vertical?: string;
20547
- /** @example null */
20548
- arrangement_type?: string | null;
20549
- /** @example null */
20550
- arrangement_type_label?: string | null;
20848
+ /** @example standard_residential */
20849
+ arrangement_type?: string;
20850
+ /** @example Standard Residential */
20851
+ arrangement_type_label?: string;
20551
20852
  /** @example null */
20552
20853
  price?: string | null;
20553
20854
  /** @example draft */
@@ -20558,8 +20859,10 @@ export interface operations {
20558
20859
  published_since?: string | null;
20559
20860
  /** @example false */
20560
20861
  is_visible?: boolean;
20561
- /** @example [] */
20562
- summary?: unknown[];
20862
+ summary?: {
20863
+ /** @example null */
20864
+ availability?: string | null;
20865
+ };
20563
20866
  /** @example [] */
20564
20867
  workflow?: unknown[];
20565
20868
  /** @example [] */
@@ -20660,9 +20963,9 @@ export interface operations {
20660
20963
  /**
20661
20964
  * @example [
20662
20965
  * {
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",
20966
+ * "draft_name": "New For Rent Property draft • 6 May 2026, 12:40 PM",
20967
+ * "sku": "LST-PRP-LTR-MOU1OP90DG1",
20968
+ * "uid": "143debde-0b24-4ec3-904d-77c0cb9bf26d",
20666
20969
  * "listing_type": "Rent",
20667
20970
  * "vertical": "Property",
20668
20971
  * "arrangement_type": "let_to_let",
@@ -20679,9 +20982,9 @@ export interface operations {
20679
20982
  * "media": []
20680
20983
  * },
20681
20984
  * {
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",
20985
+ * "draft_name": "New Short Let Property draft • 6 May 2026, 12:40 PM",
20986
+ * "sku": "LST-PRP-SHL-MOU1OP93YCV",
20987
+ * "uid": "dfb45784-f15f-43e3-aa69-e212f2100d20",
20685
20988
  * "listing_type": "Short Let",
20686
20989
  * "vertical": "Property",
20687
20990
  * "arrangement_type": "short_term_managed",
@@ -20700,11 +21003,11 @@ export interface operations {
20700
21003
  * ]
20701
21004
  */
20702
21005
  data?: {
20703
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
21006
+ /** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
20704
21007
  draft_name?: string;
20705
- /** @example LST-PRP-LTR-MONCIXJ0MH7 */
21008
+ /** @example LST-PRP-LTR-MOU1OP90DG1 */
20706
21009
  sku?: string;
20707
- /** @example f62db274-6382-49ab-8752-4b88e9ba1fd3 */
21010
+ /** @example 143debde-0b24-4ec3-904d-77c0cb9bf26d */
20708
21011
  uid?: string;
20709
21012
  /** @example Rent */
20710
21013
  listing_type?: string;
@@ -20814,9 +21117,9 @@ export interface operations {
20814
21117
  /**
20815
21118
  * @example [
20816
21119
  * {
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",
21120
+ * "draft_name": "New For Rent Property draft • 6 May 2026, 12:40 PM",
21121
+ * "sku": "LST-PRP-LTR-MOU1OP9AJIC",
21122
+ * "uid": "762dd4b9-291f-4403-998b-57ffc8ba7b54",
20820
21123
  * "listing_type": "Rent",
20821
21124
  * "vertical": "Property",
20822
21125
  * "arrangement_type": "let_to_let",
@@ -20833,9 +21136,9 @@ export interface operations {
20833
21136
  * "media": []
20834
21137
  * },
20835
21138
  * {
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",
21139
+ * "draft_name": "New Short Let Property draft • 6 May 2026, 12:40 PM",
21140
+ * "sku": "LST-PRP-SHL-MOU1OP9DQMZ",
21141
+ * "uid": "c5544dae-8d55-4a1b-ad69-e4cdb19e2984",
20839
21142
  * "listing_type": "Short Let",
20840
21143
  * "vertical": "Property",
20841
21144
  * "arrangement_type": "short_term_managed",
@@ -20854,11 +21157,11 @@ export interface operations {
20854
21157
  * ]
20855
21158
  */
20856
21159
  data?: {
20857
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
21160
+ /** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
20858
21161
  draft_name?: string;
20859
- /** @example LST-PRP-LTR-MONCIXJAG9J */
21162
+ /** @example LST-PRP-LTR-MOU1OP9AJIC */
20860
21163
  sku?: string;
20861
- /** @example eaf9fb00-e127-40b5-ad36-c6a588b36000 */
21164
+ /** @example 762dd4b9-291f-4403-998b-57ffc8ba7b54 */
20862
21165
  uid?: string;
20863
21166
  /** @example Rent */
20864
21167
  listing_type?: string;
@@ -22107,7 +22410,7 @@ export interface operations {
22107
22410
  content: {
22108
22411
  "application/json": {
22109
22412
  data?: {
22110
- /** @example 2ee08487-c839-4162-a690-fb37c8d16bd8 */
22413
+ /** @example ed611ad2-c75b-455f-a4af-4d3ca42efbf3 */
22111
22414
  uid?: string;
22112
22415
  /** @example photo */
22113
22416
  media_type?: string;
@@ -22256,11 +22559,11 @@ export interface operations {
22256
22559
  content: {
22257
22560
  "application/json": {
22258
22561
  data?: {
22259
- /** @example New For Rent Property draft • 1 May 2026, 8:09 PM */
22562
+ /** @example New For Rent Property draft • 6 May 2026, 12:40 PM */
22260
22563
  draft_name?: string;
22261
- /** @example LST-PRP-LTR-MONCIXLDFAI */
22564
+ /** @example LST-PRP-LTR-MOU1OPBOISI */
22262
22565
  sku?: string;
22263
- /** @example 1fcc041d-c104-463f-b56f-82f3ebbe1d73 */
22566
+ /** @example 71d32b1f-8666-4504-b641-6d052a352a53 */
22264
22567
  uid?: string;
22265
22568
  /** @example Rent */
22266
22569
  listing_type?: string;
@@ -22420,7 +22723,7 @@ export interface operations {
22420
22723
  content: {
22421
22724
  "application/json": {
22422
22725
  data?: {
22423
- /** @example cbae8c95-a4dc-45b2-a06e-76fca383f680 */
22726
+ /** @example 858fa05f-1c50-4af4-912d-56871b32f32b */
22424
22727
  uid?: string;
22425
22728
  /** @example null */
22426
22729
  compliances?: string | null;
@@ -22471,7 +22774,7 @@ export interface operations {
22471
22774
  content: {
22472
22775
  "application/json": {
22473
22776
  data?: {
22474
- /** @example 179 */
22777
+ /** @example 79 */
22475
22778
  id?: number;
22476
22779
  compliance?: {
22477
22780
  /** @example 1 */
@@ -22493,7 +22796,7 @@ export interface operations {
22493
22796
  reviewed_by?: number;
22494
22797
  /** @example null */
22495
22798
  reviewed_at?: string | null;
22496
- /** @example 2026-05-01T20:09:06.000000Z */
22799
+ /** @example 2026-05-06T12:40:03.000000Z */
22497
22800
  created_at?: string;
22498
22801
  };
22499
22802
  };
@@ -22532,12 +22835,173 @@ export interface operations {
22532
22835
  };
22533
22836
  getLandlordTenancies: {
22534
22837
  parameters: {
22535
- query?: never;
22838
+ query?: {
22839
+ /** @description Filter by tenant name. */
22840
+ tenant_name?: string | null;
22841
+ /** @description Filter by tenancy state. */
22842
+ state?: string | null;
22843
+ /** @description Number of records per page. */
22844
+ per_page?: number | null;
22845
+ /** @description Current page number. */
22846
+ page?: number | null;
22847
+ };
22536
22848
  header?: never;
22537
22849
  path?: never;
22538
22850
  cookie?: never;
22539
22851
  };
22540
22852
  requestBody?: never;
22853
+ responses: {
22854
+ /** @description Retrieve tenancies for the authenticated landlord */
22855
+ 200: {
22856
+ headers: {
22857
+ [name: string]: unknown;
22858
+ };
22859
+ content: {
22860
+ "application/json": {
22861
+ /** @example Tenancies fetched */
22862
+ message?: string;
22863
+ /** @example null */
22864
+ event?: string | null;
22865
+ data?: {
22866
+ /**
22867
+ * @example [
22868
+ * {
22869
+ * "tenancy_uid": "9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a",
22870
+ * "listing": {
22871
+ * "cover": {
22872
+ * "uid": "lm_34fda1",
22873
+ * "media_type": "image/jpeg",
22874
+ * "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a/cover.jpg",
22875
+ * "order_index": 0,
22876
+ * "is_cover": true
22877
+ * },
22878
+ * "details": {
22879
+ * "address": "24 Windsor Court, London, SW1",
22880
+ * "title": "24 Windsor Court",
22881
+ * "type": "Rent"
22882
+ * },
22883
+ * "owner": {
22884
+ * "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
22885
+ * "name": "Alice Taylor"
22886
+ * }
22887
+ * },
22888
+ * "rent_amount": "1500.00",
22889
+ * "deposit_amount": "1500.00",
22890
+ * "tenant": {
22891
+ * "uid": "c2d9f2cf-6279-4370-9924-5f5dcb0f40df",
22892
+ * "name": "Sarah Jenkins",
22893
+ * "email": "sarah@example.com",
22894
+ * "phone": "+447700900123",
22895
+ * "address": "10 Oxford Street, London, W1"
22896
+ * },
22897
+ * "compliance_status": {
22898
+ * "overall": "compliant",
22899
+ * "label": "Compliant"
22900
+ * },
22901
+ * "state": {
22902
+ * "value": "active",
22903
+ * "label": "Active"
22904
+ * },
22905
+ * "start_date": "2026-03-01",
22906
+ * "end_date": "2027-02-28"
22907
+ * }
22908
+ * ]
22909
+ */
22910
+ items?: {
22911
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
22912
+ tenancy_uid?: string;
22913
+ listing?: {
22914
+ cover?: {
22915
+ /** @example lm_34fda1 */
22916
+ uid?: string;
22917
+ /** @example image/jpeg */
22918
+ media_type?: string;
22919
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a/cover.jpg */
22920
+ storage_path?: string;
22921
+ /** @example 0 */
22922
+ order_index?: number;
22923
+ /** @example true */
22924
+ is_cover?: boolean;
22925
+ };
22926
+ details?: {
22927
+ /** @example 24 Windsor Court, London, SW1 */
22928
+ address?: string;
22929
+ /** @example 24 Windsor Court */
22930
+ title?: string;
22931
+ /** @example Rent */
22932
+ type?: string;
22933
+ };
22934
+ owner?: {
22935
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
22936
+ uid?: string;
22937
+ /** @example Alice Taylor */
22938
+ name?: string;
22939
+ };
22940
+ };
22941
+ /** @example 1500.00 */
22942
+ rent_amount?: string;
22943
+ /** @example 1500.00 */
22944
+ deposit_amount?: string;
22945
+ tenant?: {
22946
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
22947
+ uid?: string;
22948
+ /** @example Sarah Jenkins */
22949
+ name?: string;
22950
+ /** @example sarah@example.com */
22951
+ email?: string;
22952
+ /** @example +447700900123 */
22953
+ phone?: string;
22954
+ /** @example 10 Oxford Street, London, W1 */
22955
+ address?: string;
22956
+ };
22957
+ compliance_status?: {
22958
+ /** @example compliant */
22959
+ overall?: string;
22960
+ /** @example Compliant */
22961
+ label?: string;
22962
+ };
22963
+ state?: {
22964
+ /** @example active */
22965
+ value?: string;
22966
+ /** @example Active */
22967
+ label?: string;
22968
+ };
22969
+ /** @example 2026-03-01 */
22970
+ start_date?: string;
22971
+ /** @example 2027-02-28 */
22972
+ end_date?: string;
22973
+ }[];
22974
+ pagination?: {
22975
+ /** @example 1 */
22976
+ current_page?: number;
22977
+ /** @example 15 */
22978
+ per_page?: number;
22979
+ /** @example 1240 */
22980
+ total?: number;
22981
+ /** @example 83 */
22982
+ last_page?: number;
22983
+ /** @example 1 */
22984
+ from?: number;
22985
+ /** @example 15 */
22986
+ to?: number;
22987
+ };
22988
+ };
22989
+ };
22990
+ };
22991
+ };
22992
+ };
22993
+ };
22994
+ getLandlordListingTenancies: {
22995
+ parameters: {
22996
+ query?: never;
22997
+ header?: never;
22998
+ path: {
22999
+ /** @description The UID of the listing. */
23000
+ listing_uid: string;
23001
+ };
23002
+ cookie?: never;
23003
+ };
23004
+ requestBody?: never;
22541
23005
  responses: {
22542
23006
  200: {
22543
23007
  headers: {
@@ -22548,33 +23012,33 @@ export interface operations {
22548
23012
  /**
22549
23013
  * @example [
22550
23014
  * {
22551
- * "uid": "cded9829-09b6-4309-9667-eb281402416f",
23015
+ * "uid": "1a394692-b0f9-4a23-938e-ddde231b6984",
22552
23016
  * "rent_amount": "4881.50",
22553
23017
  * "deposit_amount": "2151.17",
22554
23018
  * "state": "offer_accepted",
22555
- * "start_date": "2025-08-24T00:00:00.000000Z",
22556
- * "end_date": "2026-08-24T00:00:00.000000Z",
23019
+ * "start_date": "2025-08-29T00:00:00.000000Z",
23020
+ * "end_date": "2026-08-29T00:00:00.000000Z",
22557
23021
  * "is_periodic": false,
22558
23022
  * "company_name": null,
22559
23023
  * "company_registration_number": null,
22560
- * "created_at": "2026-05-01T20:09:06.000000Z"
23024
+ * "created_at": "2026-05-06T12:40:03.000000Z"
22561
23025
  * },
22562
23026
  * {
22563
- * "uid": "570b2693-6eaf-498f-966f-d1397ee5a56c",
23027
+ * "uid": "cb74714e-6cef-491f-859f-7ec1db0a2adf",
22564
23028
  * "rent_amount": "3832.26",
22565
23029
  * "deposit_amount": "1384.27",
22566
23030
  * "state": "terminated",
22567
- * "start_date": "2025-06-05T00:00:00.000000Z",
22568
- * "end_date": "2026-06-05T00:00:00.000000Z",
23031
+ * "start_date": "2025-06-09T00:00:00.000000Z",
23032
+ * "end_date": "2026-06-09T00:00:00.000000Z",
22569
23033
  * "is_periodic": false,
22570
23034
  * "company_name": null,
22571
23035
  * "company_registration_number": null,
22572
- * "created_at": "2026-05-01T20:09:07.000000Z"
23036
+ * "created_at": "2026-05-06T12:40:03.000000Z"
22573
23037
  * }
22574
23038
  * ]
22575
23039
  */
22576
23040
  data?: {
22577
- /** @example cded9829-09b6-4309-9667-eb281402416f */
23041
+ /** @example 1a394692-b0f9-4a23-938e-ddde231b6984 */
22578
23042
  uid?: string;
22579
23043
  /** @example 4881.50 */
22580
23044
  rent_amount?: string;
@@ -22582,9 +23046,9 @@ export interface operations {
22582
23046
  deposit_amount?: string;
22583
23047
  /** @example offer_accepted */
22584
23048
  state?: string;
22585
- /** @example 2025-08-24T00:00:00.000000Z */
23049
+ /** @example 2025-08-29T00:00:00.000000Z */
22586
23050
  start_date?: string;
22587
- /** @example 2026-08-24T00:00:00.000000Z */
23051
+ /** @example 2026-08-29T00:00:00.000000Z */
22588
23052
  end_date?: string;
22589
23053
  /** @example false */
22590
23054
  is_periodic?: boolean;
@@ -22592,7 +23056,7 @@ export interface operations {
22592
23056
  company_name?: string | null;
22593
23057
  /** @example null */
22594
23058
  company_registration_number?: string | null;
22595
- /** @example 2026-05-01T20:09:06.000000Z */
23059
+ /** @example 2026-05-06T12:40:03.000000Z */
22596
23060
  created_at?: string;
22597
23061
  }[];
22598
23062
  links?: {
@@ -22658,138 +23122,7 @@ export interface operations {
22658
23122
  };
22659
23123
  };
22660
23124
  };
22661
- getLandlordListingTenancies: {
22662
- parameters: {
22663
- query?: never;
22664
- header?: never;
22665
- path: {
22666
- /** @description The UID of the listing. */
22667
- listing_uid: string;
22668
- };
22669
- cookie?: never;
22670
- };
22671
- requestBody?: never;
22672
- responses: {
22673
- 200: {
22674
- headers: {
22675
- [name: string]: unknown;
22676
- };
22677
- content: {
22678
- "application/json": {
22679
- /**
22680
- * @example [
22681
- * {
22682
- * "uid": "083c4836-9564-493c-9e67-afc7520d8efe",
22683
- * "rent_amount": "4881.50",
22684
- * "deposit_amount": "2151.17",
22685
- * "state": "offer_accepted",
22686
- * "start_date": "2025-08-24T00:00:00.000000Z",
22687
- * "end_date": "2026-08-24T00:00:00.000000Z",
22688
- * "is_periodic": false,
22689
- * "company_name": null,
22690
- * "company_registration_number": null,
22691
- * "created_at": "2026-05-01T20:09:07.000000Z"
22692
- * },
22693
- * {
22694
- * "uid": "e465bcad-53f1-40f5-90f6-493fec23f94f",
22695
- * "rent_amount": "3832.26",
22696
- * "deposit_amount": "1384.27",
22697
- * "state": "terminated",
22698
- * "start_date": "2025-06-05T00:00:00.000000Z",
22699
- * "end_date": "2026-06-05T00:00:00.000000Z",
22700
- * "is_periodic": false,
22701
- * "company_name": null,
22702
- * "company_registration_number": null,
22703
- * "created_at": "2026-05-01T20:09:07.000000Z"
22704
- * }
22705
- * ]
22706
- */
22707
- data?: {
22708
- /** @example 083c4836-9564-493c-9e67-afc7520d8efe */
22709
- uid?: string;
22710
- /** @example 4881.50 */
22711
- rent_amount?: string;
22712
- /** @example 2151.17 */
22713
- deposit_amount?: string;
22714
- /** @example offer_accepted */
22715
- state?: string;
22716
- /** @example 2025-08-24T00:00:00.000000Z */
22717
- start_date?: string;
22718
- /** @example 2026-08-24T00:00:00.000000Z */
22719
- end_date?: string;
22720
- /** @example false */
22721
- is_periodic?: boolean;
22722
- /** @example null */
22723
- company_name?: string | null;
22724
- /** @example null */
22725
- company_registration_number?: string | null;
22726
- /** @example 2026-05-01T20:09:07.000000Z */
22727
- created_at?: string;
22728
- }[];
22729
- links?: {
22730
- /** @example /?page=1 */
22731
- first?: string;
22732
- /** @example /?page=1 */
22733
- last?: string;
22734
- /** @example null */
22735
- prev?: string | null;
22736
- /** @example null */
22737
- next?: string | null;
22738
- };
22739
- meta?: {
22740
- /** @example 1 */
22741
- current_page?: number;
22742
- /** @example 1 */
22743
- from?: number;
22744
- /** @example 1 */
22745
- last_page?: number;
22746
- /**
22747
- * @example [
22748
- * {
22749
- * "url": null,
22750
- * "label": "« Previous",
22751
- * "page": null,
22752
- * "active": false
22753
- * },
22754
- * {
22755
- * "url": "/?page=1",
22756
- * "label": "1",
22757
- * "page": 1,
22758
- * "active": true
22759
- * },
22760
- * {
22761
- * "url": null,
22762
- * "label": "Next »",
22763
- * "page": null,
22764
- * "active": false
22765
- * }
22766
- * ]
22767
- */
22768
- links?: {
22769
- /** @example null */
22770
- url?: string | null;
22771
- /** @example « Previous */
22772
- label?: string;
22773
- /** @example null */
22774
- page?: string | null;
22775
- /** @example false */
22776
- active?: boolean;
22777
- }[];
22778
- /** @example / */
22779
- path?: string;
22780
- /** @example 10 */
22781
- per_page?: number;
22782
- /** @example 2 */
22783
- to?: number;
22784
- /** @example 2 */
22785
- total?: number;
22786
- };
22787
- };
22788
- };
22789
- };
22790
- };
22791
- };
22792
- submitTenancyCompliance: {
23125
+ submitTenancyCompliance: {
22793
23126
  parameters: {
22794
23127
  query?: never;
22795
23128
  header?: never;
@@ -22830,7 +23163,7 @@ export interface operations {
22830
23163
  content: {
22831
23164
  "application/json": {
22832
23165
  data?: {
22833
- /** @example 277 */
23166
+ /** @example 85 */
22834
23167
  id?: number;
22835
23168
  compliance?: {
22836
23169
  /** @example 1 */
@@ -22850,9 +23183,9 @@ export interface operations {
22850
23183
  rejection_reason?: string | null;
22851
23184
  /** @example 1 */
22852
23185
  reviewed_by?: number;
22853
- /** @example 2026-05-01T20:09:07.000000Z */
23186
+ /** @example 2026-05-06T12:40:03.000000Z */
22854
23187
  reviewed_at?: string;
22855
- /** @example 2026-05-01T20:09:07.000000Z */
23188
+ /** @example 2026-05-06T12:40:03.000000Z */
22856
23189
  created_at?: string;
22857
23190
  };
22858
23191
  };
@@ -22879,7 +23212,7 @@ export interface operations {
22879
23212
  content: {
22880
23213
  "application/json": {
22881
23214
  data?: {
22882
- /** @example 278 */
23215
+ /** @example 86 */
22883
23216
  id?: number;
22884
23217
  compliance?: {
22885
23218
  /** @example 1 */
@@ -22899,9 +23232,9 @@ export interface operations {
22899
23232
  rejection_reason?: string | null;
22900
23233
  /** @example 1 */
22901
23234
  reviewed_by?: number;
22902
- /** @example 2026-05-01T20:09:07.000000Z */
23235
+ /** @example 2026-05-06T12:40:03.000000Z */
22903
23236
  reviewed_at?: string;
22904
- /** @example 2026-05-01T20:09:07.000000Z */
23237
+ /** @example 2026-05-06T12:40:03.000000Z */
22905
23238
  created_at?: string;
22906
23239
  };
22907
23240
  };
@@ -23783,17 +24116,17 @@ export interface operations {
23783
24116
  content: {
23784
24117
  "application/json": {
23785
24118
  data?: {
23786
- /** @example 0dd08e9c-2b6f-4c31-acea-399984c1f537 */
24119
+ /** @example 6b4e9a1a-067d-47d2-abf7-156406afe774 */
23787
24120
  uid?: string;
23788
- /** @example Accusantium aut suscipit ea suscipit illo ea doloribus neque. */
24121
+ /** @example Dolor ea natus vel. */
23789
24122
  note?: string;
23790
24123
  user?: {
23791
- /** @example 20 */
24124
+ /** @example 9 */
23792
24125
  id?: number;
23793
- /** @example Suzanne Morgan */
24126
+ /** @example Carrie Johnson */
23794
24127
  name?: string;
23795
24128
  };
23796
- /** @example 2026-04-18 03:00:21 */
24129
+ /** @example 2026-04-27 22:15:17 */
23797
24130
  created_at?: string;
23798
24131
  };
23799
24132
  };
@@ -23984,6 +24317,155 @@ export interface operations {
23984
24317
  };
23985
24318
  };
23986
24319
  };
24320
+ fetchMaintenanceRequest: {
24321
+ parameters: {
24322
+ query?: never;
24323
+ header?: never;
24324
+ path: {
24325
+ /** @description The UID of the maintenance request. */
24326
+ uid: string;
24327
+ };
24328
+ cookie?: never;
24329
+ };
24330
+ requestBody?: never;
24331
+ responses: {
24332
+ 200: {
24333
+ headers: {
24334
+ [name: string]: unknown;
24335
+ };
24336
+ content: {
24337
+ "application/json": {
24338
+ /** @example Maintenance request fetched successfully */
24339
+ message?: string;
24340
+ /** @example null */
24341
+ event?: string | null;
24342
+ data?: {
24343
+ /** @example maint_83fd12 */
24344
+ uid?: string;
24345
+ /** @example Leaking kitchen sink */
24346
+ title?: string;
24347
+ /** @example Water has been dripping continuously under the sink cabinet. */
24348
+ description?: string;
24349
+ /** @example reported */
24350
+ status?: string;
24351
+ /** @example urgent */
24352
+ priority?: string;
24353
+ /** @example 2026-04-01T10:00:00Z */
24354
+ reported_at?: string;
24355
+ /** @example null */
24356
+ assigned_at?: string | null;
24357
+ /** @example null */
24358
+ completed_at?: string | null;
24359
+ /** @example 2026-04-02T10:00:00Z */
24360
+ sla_deadline?: string;
24361
+ listing?: {
24362
+ /** @example 7 */
24363
+ id?: number;
24364
+ /** @example 54c1fd9b-8720-43e6-be3d-d4283477f38b */
24365
+ uid?: string;
24366
+ };
24367
+ reporter?: {
24368
+ /** @example usr_123 */
24369
+ id?: string;
24370
+ /** @example Jane Doe */
24371
+ name?: string;
24372
+ };
24373
+ /** @example null */
24374
+ technician?: string | null;
24375
+ /**
24376
+ * @example [
24377
+ * {
24378
+ * "uid": "mu_34fda1",
24379
+ * "note": "Inspection visit scheduled.",
24380
+ * "user": {
24381
+ * "id": 12,
24382
+ * "name": "Inspector Jane Doe"
24383
+ * },
24384
+ * "created_at": "2026-04-01T09:30:00Z"
24385
+ * }
24386
+ * ]
24387
+ */
24388
+ updates?: {
24389
+ /** @example mu_34fda1 */
24390
+ uid?: string;
24391
+ /** @example Inspection visit scheduled. */
24392
+ note?: string;
24393
+ user?: {
24394
+ /** @example 12 */
24395
+ id?: number;
24396
+ /** @example Inspector Jane Doe */
24397
+ name?: string;
24398
+ };
24399
+ /** @example 2026-04-01T09:30:00Z */
24400
+ created_at?: string;
24401
+ }[];
24402
+ /**
24403
+ * @example [
24404
+ * {
24405
+ * "uid": "mnt_34fda1",
24406
+ * "file_type": "image/jpeg",
24407
+ * "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
24408
+ * "uploaded_by": {
24409
+ * "id": 12,
24410
+ * "name": "Inspector Jane Doe"
24411
+ * },
24412
+ * "created_at": "2026-04-01T09:15:00Z"
24413
+ * }
24414
+ * ]
24415
+ */
24416
+ attachments?: {
24417
+ /** @example mnt_34fda1 */
24418
+ uid?: string;
24419
+ /** @example image/jpeg */
24420
+ file_type?: string;
24421
+ /** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
24422
+ url?: string;
24423
+ uploaded_by?: {
24424
+ /** @example 12 */
24425
+ id?: number;
24426
+ /** @example Inspector Jane Doe */
24427
+ name?: string;
24428
+ };
24429
+ /** @example 2026-04-01T09:15:00Z */
24430
+ created_at?: string;
24431
+ }[];
24432
+ /** @example 2026-04-01T10:00:00Z */
24433
+ created_at?: string;
24434
+ /** @example 2026-04-01T10:00:00Z */
24435
+ updated_at?: string;
24436
+ };
24437
+ } | {
24438
+ data?: {
24439
+ /** @example 1e8fabeb-ab64-4e60-ad99-bf5a7d297680 */
24440
+ uid?: string;
24441
+ /** @example 1 */
24442
+ tenancy_id?: number;
24443
+ /** @example Qui commodi incidunt iure. */
24444
+ title?: string;
24445
+ /** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
24446
+ description?: string;
24447
+ /** @example breach */
24448
+ status?: string;
24449
+ /** @example low */
24450
+ priority?: string;
24451
+ /** @example 05 May 2026, 02:08 AM */
24452
+ reported_at?: string;
24453
+ /** @example null */
24454
+ assigned_at?: string | null;
24455
+ /** @example null */
24456
+ completed_at?: string | null;
24457
+ /** @example 07 May 2026, 10:33 PM */
24458
+ sla_deadline?: string;
24459
+ /** @example 06 May 2026, 12:40 PM */
24460
+ created_at?: string;
24461
+ /** @example 06 May 2026, 12:40 PM */
24462
+ updated_at?: string;
24463
+ };
24464
+ };
24465
+ };
24466
+ };
24467
+ };
24468
+ };
23987
24469
  reportMaintenance: {
23988
24470
  parameters: {
23989
24471
  query?: never;
@@ -24033,37 +24515,37 @@ export interface operations {
24033
24515
  /**
24034
24516
  * @example [
24035
24517
  * {
24036
- * "uid": "dc3a221b-a992-4cad-a2e7-85e9fd610644",
24518
+ * "uid": "e779bbe7-4f17-4116-9a99-5c088e04b8a2",
24037
24519
  * "tenancy_id": 1,
24038
24520
  * "title": "Quos velit et fugiat sunt nihil.",
24039
24521
  * "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
24522
  * "status": "reported",
24041
24523
  * "priority": "emergency",
24042
- * "reported_at": "25 Apr 2026, 07:22 AM",
24043
- * "assigned_at": "30 Apr 2026, 03:42 AM",
24524
+ * "reported_at": "29 Apr 2026, 11:53 PM",
24525
+ * "assigned_at": "04 May 2026, 08:13 PM",
24044
24526
  * "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"
24527
+ * "sla_deadline": "08 May 2026, 01:35 AM",
24528
+ * "created_at": "06 May 2026, 12:40 PM",
24529
+ * "updated_at": "06 May 2026, 12:40 PM"
24048
24530
  * },
24049
24531
  * {
24050
- * "uid": "8445fba5-b568-4700-bb28-e2ec902e757d",
24532
+ * "uid": "651d8e66-4b59-4082-bda1-31d55c3df60e",
24051
24533
  * "tenancy_id": 1,
24052
24534
  * "title": "Fugit deleniti distinctio eum doloremque.",
24053
24535
  * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
24054
24536
  * "status": "completed",
24055
24537
  * "priority": "normal",
24056
- * "reported_at": "27 Apr 2026, 08:01 PM",
24538
+ * "reported_at": "02 May 2026, 12:32 PM",
24057
24539
  * "assigned_at": null,
24058
24540
  * "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"
24541
+ * "sla_deadline": "09 May 2026, 09:35 AM",
24542
+ * "created_at": "06 May 2026, 12:40 PM",
24543
+ * "updated_at": "06 May 2026, 12:40 PM"
24062
24544
  * }
24063
24545
  * ]
24064
24546
  */
24065
24547
  data?: {
24066
- /** @example dc3a221b-a992-4cad-a2e7-85e9fd610644 */
24548
+ /** @example e779bbe7-4f17-4116-9a99-5c088e04b8a2 */
24067
24549
  uid?: string;
24068
24550
  /** @example 1 */
24069
24551
  tenancy_id?: number;
@@ -24075,17 +24557,17 @@ export interface operations {
24075
24557
  status?: string;
24076
24558
  /** @example emergency */
24077
24559
  priority?: string;
24078
- /** @example 25 Apr 2026, 07:22 AM */
24560
+ /** @example 29 Apr 2026, 11:53 PM */
24079
24561
  reported_at?: string;
24080
- /** @example 30 Apr 2026, 03:42 AM */
24562
+ /** @example 04 May 2026, 08:13 PM */
24081
24563
  assigned_at?: string;
24082
24564
  /** @example null */
24083
24565
  completed_at?: string | null;
24084
- /** @example 03 May 2026, 09:04 AM */
24566
+ /** @example 08 May 2026, 01:35 AM */
24085
24567
  sla_deadline?: string;
24086
- /** @example 01 May 2026, 08:09 PM */
24568
+ /** @example 06 May 2026, 12:40 PM */
24087
24569
  created_at?: string;
24088
- /** @example 01 May 2026, 08:09 PM */
24570
+ /** @example 06 May 2026, 12:40 PM */
24089
24571
  updated_at?: string;
24090
24572
  }[];
24091
24573
  links?: {
@@ -24201,13 +24683,13 @@ export interface operations {
24201
24683
  };
24202
24684
  } | {
24203
24685
  data?: {
24204
- /** @example 6870302a-124c-45e3-8236-0977ef6a22d5 */
24686
+ /** @example 267bf2ab-7ae4-49f2-94e8-e2b4388afcbd */
24205
24687
  uid?: string;
24206
24688
  /** @example image */
24207
24689
  file_type?: string;
24208
24690
  /** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
24209
24691
  url?: string;
24210
- /** @example 2026-05-01T20:09:08.000000Z */
24692
+ /** @example 2026-05-06T12:40:04.000000Z */
24211
24693
  created_at?: string;
24212
24694
  };
24213
24695
  };
@@ -24252,7 +24734,7 @@ export interface operations {
24252
24734
  content: {
24253
24735
  "application/json": {
24254
24736
  data?: {
24255
- /** @example 195 */
24737
+ /** @example 4 */
24256
24738
  id?: number;
24257
24739
  type?: {
24258
24740
  /** @example property_inquiry */
@@ -24260,25 +24742,28 @@ export interface operations {
24260
24742
  /** @example Property Inquiry */
24261
24743
  label?: string;
24262
24744
  };
24263
- /** @example ae5e6e9c-7181-47e1-bcab-dfe24cfebd79 */
24745
+ /** @example c9ae501b-2616-4ed1-b4ff-1255918fbd5f */
24264
24746
  listing_uid?: string;
24265
24747
  listing?: {
24266
- /** @example ae5e6e9c-7181-47e1-bcab-dfe24cfebd79 */
24748
+ /** @example c9ae501b-2616-4ed1-b4ff-1255918fbd5f */
24267
24749
  uid?: string;
24268
- /** @example Doloribus sunt itaque optio impedit. */
24750
+ /** @example Excepturi voluptatum qui sed. */
24269
24751
  title?: string;
24270
- /** @example 39 White Village */
24752
+ /**
24753
+ * @example Studio 13
24754
+ * Darren Cliff
24755
+ */
24271
24756
  address?: string;
24272
- /** @example short_let */
24757
+ /** @example sale */
24273
24758
  listing_type?: string;
24274
- /** @example Short Let */
24759
+ /** @example Sale */
24275
24760
  listing_type_label?: string;
24276
24761
  cover?: {
24277
- /** @example fa24116b-3c03-48aa-8fbd-7b3b094727ca */
24762
+ /** @example 52eb0be2-684f-4759-8111-de65806fd34a */
24278
24763
  uid?: string;
24279
24764
  /** @example photo */
24280
24765
  media_type?: string;
24281
- /** @example http://justinshome-backendcore.test/storage/listings/short-let-property-placeholder.png */
24766
+ /** @example http://justinshome-backendcore.test/storage/listings/property-sale-placeholder.png */
24282
24767
  storage_path?: string;
24283
24768
  /** @example 1 */
24284
24769
  order_index?: number;
@@ -24286,15 +24771,15 @@ export interface operations {
24286
24771
  is_cover?: boolean;
24287
24772
  };
24288
24773
  owner?: {
24289
- /** @example 3 */
24774
+ /** @example 6 */
24290
24775
  id?: number;
24291
- /** @example af3a7981-f613-4482-898d-09ac3fab930b */
24776
+ /** @example eb392d5c-1dcf-43a6-a000-a27d8b68f9c5 */
24292
24777
  uid?: string;
24293
- /** @example Teagan King */
24778
+ /** @example Yvonne Moore */
24294
24779
  name?: string;
24295
- /** @example landlord2@justinshome.test */
24780
+ /** @example landlord5@justinshome.test */
24296
24781
  email?: string;
24297
- /** @example 08056663138 */
24782
+ /** @example 08092300754 */
24298
24783
  phone?: string;
24299
24784
  /** @example null */
24300
24785
  avatar_path?: string | null;
@@ -24303,14 +24788,14 @@ export interface operations {
24303
24788
  created_by?: {
24304
24789
  /** @example 2 */
24305
24790
  id?: number;
24306
- /** @example bf1a9d08-45a1-474c-b494-5e7be7b71aa8 */
24791
+ /** @example 326eb529-3699-47bd-9969-b49e75937175 */
24307
24792
  uid?: string;
24308
- /** @example dogunfx */
24793
+ /** @example Vicky Ross */
24309
24794
  name?: string;
24310
24795
  };
24311
24796
  /** @example null */
24312
24797
  last_message_at?: string | null;
24313
- /** @example 01 May 2026, 08:09 PM */
24798
+ /** @example 06 May 2026, 12:40 PM */
24314
24799
  created_at?: string;
24315
24800
  };
24316
24801
  };
@@ -24762,7 +25247,7 @@ export interface operations {
24762
25247
  };
24763
25248
  content: {
24764
25249
  "application/json": {
24765
- /** @example 9c142a22-d7de-47a1-bf9c-b7e8c65173ef */
25250
+ /** @example d36488e0-31b0-466d-9e98-d5bc28c06a85 */
24766
25251
  id?: string;
24767
25252
  /** @example APPOINTMENT_CREATED */
24768
25253
  type?: string;
@@ -24774,7 +25259,7 @@ export interface operations {
24774
25259
  data?: unknown[];
24775
25260
  /** @example null */
24776
25261
  read_at?: string | null;
24777
- /** @example 01 May 2026, 08:09 PM */
25262
+ /** @example 06 May 2026, 12:40 PM */
24778
25263
  created_at?: string;
24779
25264
  };
24780
25265
  };
@@ -24880,9 +25365,9 @@ export interface operations {
24880
25365
  content: {
24881
25366
  "application/json": {
24882
25367
  data?: {
24883
- /** @example at */
25368
+ /** @example aut */
24884
25369
  key?: string;
24885
- /** @example id */
25370
+ /** @example adipisci */
24886
25371
  name?: string;
24887
25372
  /** @example soft */
24888
25373
  enforcement_mode?: string;
@@ -25020,7 +25505,7 @@ export interface operations {
25020
25505
  content: {
25021
25506
  "application/json": {
25022
25507
  data?: {
25023
- /** @example e0fccb6a-401b-47b1-9798-058d00334cf3 */
25508
+ /** @example 88e1141f-fe47-4d83-bbee-5551dec0ca21 */
25024
25509
  uid?: string;
25025
25510
  /** @example JH-APP-2026-089432 */
25026
25511
  application_ref?: string;
@@ -25041,7 +25526,7 @@ export interface operations {
25041
25526
  /** @example null */
25042
25527
  rejection_reason?: string | null;
25043
25528
  timeline?: {
25044
- /** @example 01 May 2026, 08:09 PM */
25529
+ /** @example 06 May 2026, 12:40 PM */
25045
25530
  created_at?: string;
25046
25531
  /** @example null */
25047
25532
  approved_at?: string | null;
@@ -25081,7 +25566,7 @@ export interface operations {
25081
25566
  */
25082
25567
  search?: string | null;
25083
25568
  /**
25084
- * @example pending
25569
+ * @example rejected
25085
25570
  * @enum {string|null}
25086
25571
  */
25087
25572
  status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
@@ -25404,7 +25889,7 @@ export interface operations {
25404
25889
  content: {
25405
25890
  "application/json": {
25406
25891
  data?: {
25407
- /** @example 2c22f606-c99d-4167-9b42-14bc0f6e22e8 */
25892
+ /** @example 43cc677f-7b83-4823-b1fb-a438d959b72e */
25408
25893
  uid?: string;
25409
25894
  /** @example JH-APP-2026-700432 */
25410
25895
  application_ref?: string;
@@ -25425,7 +25910,7 @@ export interface operations {
25425
25910
  /** @example null */
25426
25911
  rejection_reason?: string | null;
25427
25912
  timeline?: {
25428
- /** @example 01 May 2026, 08:09 PM */
25913
+ /** @example 06 May 2026, 12:40 PM */
25429
25914
  created_at?: string;
25430
25915
  /** @example null */
25431
25916
  approved_at?: string | null;
@@ -25442,7 +25927,14 @@ export interface operations {
25442
25927
  };
25443
25928
  fetchAllReview: {
25444
25929
  parameters: {
25445
- query?: never;
25930
+ query: {
25931
+ /** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
25932
+ reviewable_type: string;
25933
+ /** @description Number of records per page. */
25934
+ per_page?: number;
25935
+ /** @description Current page number. */
25936
+ page?: number;
25937
+ };
25446
25938
  header?: never;
25447
25939
  path?: never;
25448
25940
  cookie?: never;
@@ -25483,12 +25975,13 @@ export interface operations {
25483
25975
  * "id": 1,
25484
25976
  * "rating": 5,
25485
25977
  * "comment": "Excellent service.",
25978
+ * "reviewable_type": "listing",
25486
25979
  * "reviewer": {
25487
25980
  * "id": 20,
25488
25981
  * "name": "Sarah Jenkins"
25489
25982
  * },
25490
- * "created_at": "2026-04-28T09:00:00Z",
25491
- * "updated_at": "2026-04-28T09:00:00Z"
25983
+ * "created_at": "28 Apr, 2026 09:00 AM",
25984
+ * "updated_at": "28 Apr, 2026 09:00 AM"
25492
25985
  * }
25493
25986
  * ]
25494
25987
  */
@@ -25499,15 +25992,17 @@ export interface operations {
25499
25992
  rating?: number;
25500
25993
  /** @example Excellent service. */
25501
25994
  comment?: string;
25995
+ /** @example listing */
25996
+ reviewable_type?: string;
25502
25997
  reviewer?: {
25503
25998
  /** @example 20 */
25504
25999
  id?: number;
25505
26000
  /** @example Sarah Jenkins */
25506
26001
  name?: string;
25507
26002
  };
25508
- /** @example 2026-04-28T09:00:00Z */
26003
+ /** @example 28 Apr, 2026 09:00 AM */
25509
26004
  created_at?: string;
25510
- /** @example 2026-04-28T09:00:00Z */
26005
+ /** @example 28 Apr, 2026 09:00 AM */
25511
26006
  updated_at?: string;
25512
26007
  }[];
25513
26008
  pagination?: {
@@ -25530,35 +26025,189 @@ export interface operations {
25530
26025
  };
25531
26026
  };
25532
26027
  };
25533
- ratingSummaryReview: {
26028
+ fetchOneReview: {
25534
26029
  parameters: {
25535
26030
  query?: never;
25536
26031
  header?: never;
26032
+ path: {
26033
+ /** @description The ID of the review. */
26034
+ review_id: number;
26035
+ };
26036
+ cookie?: never;
26037
+ };
26038
+ requestBody?: never;
26039
+ responses: {
26040
+ /** @description Retrieve a single review */
26041
+ 200: {
26042
+ headers: {
26043
+ [name: string]: unknown;
26044
+ };
26045
+ content: {
26046
+ "application/json": {
26047
+ /** @example Review retrieved successfully */
26048
+ message?: string;
26049
+ /** @example null */
26050
+ event?: string | null;
26051
+ data?: {
26052
+ /** @example 15 */
26053
+ id?: number;
26054
+ /** @example 5 */
26055
+ rating?: number;
26056
+ /** @example Excellent service. */
26057
+ comment?: string;
26058
+ /** @example listing */
26059
+ reviewable_type?: string;
26060
+ reviewable?: {
26061
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
26062
+ uid?: string;
26063
+ /** @example 24 Windsor Court */
26064
+ title?: string;
26065
+ /** @example 24 Windsor Court, London, SW1 */
26066
+ address?: string;
26067
+ cover?: {
26068
+ /** @example lm_34fda1 */
26069
+ uid?: string;
26070
+ /** @example image/jpeg */
26071
+ media_type?: string;
26072
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
26073
+ storage_path?: string;
26074
+ /** @example 0 */
26075
+ order_index?: number;
26076
+ /** @example true */
26077
+ is_cover?: boolean;
26078
+ };
26079
+ type?: {
26080
+ /** @example long_term_rent */
26081
+ value?: string;
26082
+ /** @example Rent */
26083
+ label?: string;
26084
+ };
26085
+ vertical?: {
26086
+ /** @example property */
26087
+ value?: string;
26088
+ /** @example Property */
26089
+ label?: string;
26090
+ };
26091
+ };
26092
+ reviewer?: {
26093
+ /** @example user_ajka asjkasj */
26094
+ uid?: string;
26095
+ /** @example Sarah Jenkins */
26096
+ name?: string;
26097
+ };
26098
+ /** @example 28 Apr, 2026 09:00 AM */
26099
+ created_at?: string;
26100
+ /** @example 28 Apr, 2026 09:00 AM */
26101
+ updated_at?: string;
26102
+ };
26103
+ };
26104
+ };
26105
+ };
26106
+ };
26107
+ };
26108
+ fetchAllReviewForReviewable: {
26109
+ parameters: {
26110
+ query: {
26111
+ /** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
26112
+ reviewable_type: string;
26113
+ /** @description UID of the reviewable entity. */
26114
+ reviewable_uid: string;
26115
+ /** @description Number of records per page. */
26116
+ per_page?: number;
26117
+ /** @description Current page number. */
26118
+ page?: number;
26119
+ };
26120
+ header?: never;
25537
26121
  path?: never;
25538
26122
  cookie?: never;
25539
26123
  };
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;
26124
+ requestBody?: never;
26125
+ responses: {
26126
+ /** @description Retrieve all reviews for a specific reviewable entity */
26127
+ 200: {
26128
+ headers: {
26129
+ [name: string]: unknown;
26130
+ };
26131
+ content: {
26132
+ "application/json": {
26133
+ /** @example Review retrieved successfully */
26134
+ message?: string;
26135
+ /** @example null */
26136
+ event?: string | null;
26137
+ data?: {
26138
+ /**
26139
+ * @example [
26140
+ * {
26141
+ * "id": 1,
26142
+ * "rating": 5,
26143
+ * "comment": "Excellent service.",
26144
+ * "reviewable_type": "listing",
26145
+ * "reviewer": {
26146
+ * "uid": "sj akjasas",
26147
+ * "name": "Sarah Jenkins"
26148
+ * },
26149
+ * "created_at": "28 Apr, 2026 09:00 AM",
26150
+ * "updated_at": "28 Apr, 2026 09:00 AM"
26151
+ * }
26152
+ * ]
26153
+ */
26154
+ items?: {
26155
+ /** @example 1 */
26156
+ id?: number;
26157
+ /** @example 5 */
26158
+ rating?: number;
26159
+ /** @example Excellent service. */
26160
+ comment?: string;
26161
+ /** @example listing */
26162
+ reviewable_type?: string;
26163
+ reviewer?: {
26164
+ /** @example sj akjasas */
26165
+ uid?: string;
26166
+ /** @example Sarah Jenkins */
26167
+ name?: string;
26168
+ };
26169
+ /** @example 28 Apr, 2026 09:00 AM */
26170
+ created_at?: string;
26171
+ /** @example 28 Apr, 2026 09:00 AM */
26172
+ updated_at?: string;
26173
+ }[];
26174
+ pagination?: {
26175
+ /** @example 1 */
26176
+ current_page?: number;
26177
+ /** @example 15 */
26178
+ per_page?: number;
26179
+ /** @example 0 */
26180
+ total?: number;
26181
+ /** @example 1 */
26182
+ last_page?: number;
26183
+ /** @example null */
26184
+ from?: string | null;
26185
+ /** @example null */
26186
+ to?: string | null;
26187
+ };
26188
+ };
26189
+ };
25559
26190
  };
25560
26191
  };
25561
26192
  };
26193
+ };
26194
+ ratingSummaryReview: {
26195
+ parameters: {
26196
+ query: {
26197
+ /** @description Reviewable type or entity. Accepts `listing`, `user`, `App\Models\Listing`, or `App\Models\User`. */
26198
+ reviewable_type: string;
26199
+ /** @description UID of the reviewable entity. */
26200
+ reviewable_uid: string;
26201
+ /** @description Number of records per page. Must be between 1 and 100. */
26202
+ per_page?: number;
26203
+ /** @description Current page number. Must be at least 1. */
26204
+ page?: number;
26205
+ };
26206
+ header?: never;
26207
+ path?: never;
26208
+ cookie?: never;
26209
+ };
26210
+ requestBody?: never;
25562
26211
  responses: {
25563
26212
  /** @description Rating summary retrieved successfully */
25564
26213
  200: {
@@ -25572,7 +26221,7 @@ export interface operations {
25572
26221
  /** @example null */
25573
26222
  event?: string | null;
25574
26223
  data?: {
25575
- /** @example 4 */
26224
+ /** @example 4.5 */
25576
26225
  average_rating?: number;
25577
26226
  /** @example 3 */
25578
26227
  reviews_count?: number;
@@ -25618,21 +26267,23 @@ export interface operations {
25618
26267
  content: {
25619
26268
  "application/json": {
25620
26269
  data?: {
25621
- /** @example 465 */
26270
+ /** @example 13 */
25622
26271
  id?: number;
25623
26272
  /** @example 1 */
25624
26273
  rating?: number;
25625
26274
  /** @example Nice Listing */
25626
26275
  comment?: string;
26276
+ /** @example listing */
26277
+ reviewable_type?: string;
25627
26278
  reviewer?: {
25628
- /** @example 17 */
25629
- id?: number;
25630
- /** @example Hannah Ross */
26279
+ /** @example eb392d5c-1dcf-43a6-a000-a27d8b68f9c5 */
26280
+ uid?: string;
26281
+ /** @example Yvonne Moore */
25631
26282
  name?: string;
25632
26283
  };
25633
- /** @example 01 May 2026, 08:09 PM */
26284
+ /** @example 06 May 2026, 12:40 PM */
25634
26285
  created_at?: string;
25635
- /** @example 01 May 2026, 08:09 PM */
26286
+ /** @example 06 May 2026, 12:40 PM */
25636
26287
  updated_at?: string;
25637
26288
  };
25638
26289
  };
@@ -25676,21 +26327,23 @@ export interface operations {
25676
26327
  content: {
25677
26328
  "application/json": {
25678
26329
  data?: {
25679
- /** @example 466 */
26330
+ /** @example 14 */
25680
26331
  id?: number;
25681
26332
  /** @example 1 */
25682
26333
  rating?: number;
25683
26334
  /** @example Nice Listing */
25684
26335
  comment?: string;
26336
+ /** @example listing */
26337
+ reviewable_type?: string;
25685
26338
  reviewer?: {
25686
- /** @example 5 */
25687
- id?: number;
25688
- /** @example Mary Hall */
26339
+ /** @example 131677ca-833e-422a-b76a-3a39e42f1a67 */
26340
+ uid?: string;
26341
+ /** @example Ella Smith */
25689
26342
  name?: string;
25690
26343
  };
25691
- /** @example 01 May 2026, 08:09 PM */
26344
+ /** @example 06 May 2026, 12:40 PM */
25692
26345
  created_at?: string;
25693
- /** @example 01 May 2026, 08:09 PM */
26346
+ /** @example 06 May 2026, 12:40 PM */
25694
26347
  updated_at?: string;
25695
26348
  };
25696
26349
  };
@@ -25732,21 +26385,23 @@ export interface operations {
25732
26385
  content: {
25733
26386
  "application/json": {
25734
26387
  data?: {
25735
- /** @example 467 */
26388
+ /** @example 15 */
25736
26389
  id?: number;
25737
26390
  /** @example 1 */
25738
26391
  rating?: number;
25739
26392
  /** @example Nice Listing */
25740
26393
  comment?: string;
26394
+ /** @example listing */
26395
+ reviewable_type?: string;
25741
26396
  reviewer?: {
25742
- /** @example 8 */
25743
- id?: number;
25744
- /** @example Kyle Matthews */
26397
+ /** @example f2bb2422-f911-4b99-b0ab-1aae03b107ad */
26398
+ uid?: string;
26399
+ /** @example Dave Edwards */
25745
26400
  name?: string;
25746
26401
  };
25747
- /** @example 01 May 2026, 08:09 PM */
26402
+ /** @example 06 May 2026, 12:40 PM */
25748
26403
  created_at?: string;
25749
- /** @example 01 May 2026, 08:09 PM */
26404
+ /** @example 06 May 2026, 12:40 PM */
25750
26405
  updated_at?: string;
25751
26406
  };
25752
26407
  };
@@ -25773,21 +26428,23 @@ export interface operations {
25773
26428
  content: {
25774
26429
  "application/json": {
25775
26430
  data?: {
25776
- /** @example 468 */
26431
+ /** @example 16 */
25777
26432
  id?: number;
25778
26433
  /** @example 1 */
25779
26434
  rating?: number;
25780
26435
  /** @example Nice Listing */
25781
26436
  comment?: string;
26437
+ /** @example listing */
26438
+ reviewable_type?: string;
25782
26439
  reviewer?: {
25783
- /** @example 4 */
25784
- id?: number;
25785
- /** @example Lola Holmes */
26440
+ /** @example 2adce2cc-cc87-45b5-ab8c-be773aacf3f1 */
26441
+ uid?: string;
26442
+ /** @example Kyle Hunter */
25786
26443
  name?: string;
25787
26444
  };
25788
- /** @example 01 May 2026, 08:09 PM */
26445
+ /** @example 06 May 2026, 12:40 PM */
25789
26446
  created_at?: string;
25790
- /** @example 01 May 2026, 08:09 PM */
26447
+ /** @example 06 May 2026, 12:40 PM */
25791
26448
  updated_at?: string;
25792
26449
  };
25793
26450
  };
@@ -25807,24 +26464,35 @@ export interface operations {
25807
26464
  };
25808
26465
  requestBody?: never;
25809
26466
  responses: {
26467
+ /** @description Retrieve a single tenancy */
25810
26468
  200: {
25811
26469
  headers: {
25812
26470
  [name: string]: unknown;
25813
26471
  };
25814
26472
  content: {
25815
26473
  "application/json": {
26474
+ /** @example Tenancy fetched */
26475
+ message?: string;
26476
+ /** @example null */
26477
+ event?: string | null;
25816
26478
  data?: {
25817
- /** @example cec24490-3159-4f8a-ad83-983b9ff68b0f */
26479
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
25818
26480
  uid?: string;
25819
- /** @example 4881.50 */
26481
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
26482
+ listing_uid?: string;
26483
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
26484
+ landlord_uid?: string;
26485
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
26486
+ tenant_uid?: string;
26487
+ /** @example 1500.00 */
25820
26488
  rent_amount?: string;
25821
- /** @example 2151.17 */
26489
+ /** @example 1500.00 */
25822
26490
  deposit_amount?: string;
25823
- /** @example offer_accepted */
26491
+ /** @example active */
25824
26492
  state?: string;
25825
- /** @example 2025-08-24T00:00:00.000000Z */
26493
+ /** @example 2026-03-01 */
25826
26494
  start_date?: string;
25827
- /** @example 2026-08-24T00:00:00.000000Z */
26495
+ /** @example 2027-02-28 */
25828
26496
  end_date?: string;
25829
26497
  /** @example false */
25830
26498
  is_periodic?: boolean;
@@ -25832,12 +26500,218 @@ export interface operations {
25832
26500
  company_name?: string | null;
25833
26501
  /** @example null */
25834
26502
  company_registration_number?: string | null;
25835
- /** @example 2026-05-01T20:09:08.000000Z */
26503
+ /** @example 2026-03-01T10:00:00.000000Z */
25836
26504
  created_at?: string;
25837
- /** @example [] */
25838
- compliances?: unknown[];
26505
+ listing?: {
26506
+ cover?: {
26507
+ /** @example lm_34fda1 */
26508
+ uid?: string;
26509
+ /** @example image/jpeg */
26510
+ media_type?: string;
26511
+ /** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
26512
+ storage_path?: string;
26513
+ /** @example 0 */
26514
+ order_index?: number;
26515
+ /** @example true */
26516
+ is_cover?: boolean;
26517
+ };
26518
+ details?: {
26519
+ /** @example 24 Windsor Court */
26520
+ address?: string;
26521
+ /** @example 24 Windsor Court */
26522
+ title?: string;
26523
+ /** @example Rent */
26524
+ type?: string;
26525
+ };
26526
+ owner?: {
26527
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
26528
+ uid?: string;
26529
+ /** @example Alice Taylor */
26530
+ name?: string;
26531
+ /** @example alice@example.com */
26532
+ email?: string;
26533
+ };
26534
+ };
26535
+ landlord?: {
26536
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
26537
+ uid?: string;
26538
+ /** @example Alice Taylor */
26539
+ name?: string;
26540
+ /** @example alice@example.com */
26541
+ email?: string;
26542
+ };
26543
+ tenant?: {
26544
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
26545
+ uid?: string;
26546
+ /** @example Sarah Jenkins */
26547
+ name?: string;
26548
+ /** @example sarah@example.com */
26549
+ email?: string;
26550
+ /** @example +447700900123 */
26551
+ phone?: string;
26552
+ /** @example 10 Oxford Street, London, W1 */
26553
+ address?: string;
26554
+ };
26555
+ /**
26556
+ * @example [
26557
+ * {
26558
+ * "uid": "maint_83fd12",
26559
+ * "tenancy_id": 1,
26560
+ * "title": "Leaking kitchen sink",
26561
+ * "description": "Water has been dripping continuously under the sink cabinet.",
26562
+ * "status": "reported",
26563
+ * "priority": "urgent",
26564
+ * "reported_at": "2026-04-01T10:00:00Z",
26565
+ * "assigned_at": null,
26566
+ * "completed_at": null,
26567
+ * "sla_deadline": "2026-04-02T10:00:00Z"
26568
+ * }
26569
+ * ]
26570
+ */
26571
+ maintenance_requests?: {
26572
+ /** @example maint_83fd12 */
26573
+ uid?: string;
26574
+ /** @example 1 */
26575
+ tenancy_id?: number;
26576
+ /** @example Leaking kitchen sink */
26577
+ title?: string;
26578
+ /** @example Water has been dripping continuously under the sink cabinet. */
26579
+ description?: string;
26580
+ /** @example reported */
26581
+ status?: string;
26582
+ /** @example urgent */
26583
+ priority?: string;
26584
+ /** @example 2026-04-01T10:00:00Z */
26585
+ reported_at?: string;
26586
+ /** @example null */
26587
+ assigned_at?: string | null;
26588
+ /** @example null */
26589
+ completed_at?: string | null;
26590
+ /** @example 2026-04-02T10:00:00Z */
26591
+ sla_deadline?: string;
26592
+ }[];
26593
+ /**
26594
+ * @example [
26595
+ * {
26596
+ * "from_state": "pending",
26597
+ * "to_state": "active",
26598
+ * "changed_by_user_id": 1,
26599
+ * "changed_by_name": "System Admin",
26600
+ * "comment": "Tenancy activated",
26601
+ * "created_at": "2026-03-01T10:00:00Z"
26602
+ * }
26603
+ * ]
26604
+ */
26605
+ state_transitions?: {
26606
+ /** @example pending */
26607
+ from_state?: string;
26608
+ /** @example active */
26609
+ to_state?: string;
26610
+ /** @example 1 */
26611
+ changed_by_user_id?: number;
26612
+ /** @example System Admin */
26613
+ changed_by_name?: string;
26614
+ /** @example Tenancy activated */
26615
+ comment?: string;
26616
+ /** @example 2026-03-01T10:00:00Z */
26617
+ created_at?: string;
26618
+ }[];
26619
+ /**
26620
+ * @example [
26621
+ * {
26622
+ * "id": 1,
26623
+ * "compliance": {
26624
+ * "id": 10,
26625
+ * "key": "gas_safety_certificate",
26626
+ * "name": "Gas Safety Certificate"
26627
+ * },
26628
+ * "verification_layer_key": "gas_certificate",
26629
+ * "status": "submitted",
26630
+ * "submitted_data": {
26631
+ * "document_file": {
26632
+ * "file_name": "cover.pdf",
26633
+ * "storage_path": "tenancy_compliance/cover.pdf",
26634
+ * "view_url": "https://api.example.com/api/v1/portal/admin/documents/view?expires=1774863000&signature=abc",
26635
+ * "download_url": "https://api.example.com/api/v1/portal/admin/documents/download?expires=1774863000&signature=abc",
26636
+ * "disk": "verification_documents"
26637
+ * }
26638
+ * },
26639
+ * "rejection_reason": null,
26640
+ * "reviewed_by": null,
26641
+ * "reviewed_at": null,
26642
+ * "created_at": "2026-04-01T09:30:00Z"
26643
+ * }
26644
+ * ]
26645
+ */
26646
+ compliance_submissions?: {
26647
+ /** @example 1 */
26648
+ id?: number;
26649
+ compliance?: {
26650
+ /** @example 10 */
26651
+ id?: number;
26652
+ /** @example gas_safety_certificate */
26653
+ key?: string;
26654
+ /** @example Gas Safety Certificate */
26655
+ name?: string;
26656
+ };
26657
+ /** @example gas_certificate */
26658
+ verification_layer_key?: string;
26659
+ /** @example submitted */
26660
+ status?: string;
26661
+ submitted_data?: {
26662
+ document_file?: {
26663
+ /** @example cover.pdf */
26664
+ file_name?: string;
26665
+ /** @example tenancy_compliance/cover.pdf */
26666
+ storage_path?: string;
26667
+ /** @example https://api.example.com/api/v1/portal/admin/documents/view?expires=1774863000&signature=abc */
26668
+ view_url?: string;
26669
+ /** @example https://api.example.com/api/v1/portal/admin/documents/download?expires=1774863000&signature=abc */
26670
+ download_url?: string;
26671
+ /** @example verification_documents */
26672
+ disk?: string;
26673
+ };
26674
+ };
26675
+ /** @example null */
26676
+ rejection_reason?: string | null;
26677
+ /** @example null */
26678
+ reviewed_by?: string | null;
26679
+ /** @example null */
26680
+ reviewed_at?: string | null;
26681
+ /** @example 2026-04-01T09:30:00Z */
26682
+ created_at?: string;
26683
+ }[];
26684
+ /**
26685
+ * @example [
26686
+ * {
26687
+ * "id": 10,
26688
+ * "responsible_party": "landlord",
26689
+ * "responsible_party_label": "Landlord",
26690
+ * "liability_exclusion_flag": false,
26691
+ * "requirements": [
26692
+ * "gas_certificate"
26693
+ * ]
26694
+ * }
26695
+ * ]
26696
+ */
26697
+ compliances?: {
26698
+ /** @example 10 */
26699
+ id?: number;
26700
+ /** @example landlord */
26701
+ responsible_party?: string;
26702
+ /** @example Landlord */
26703
+ responsible_party_label?: string;
26704
+ /** @example false */
26705
+ liability_exclusion_flag?: boolean;
26706
+ /**
26707
+ * @example [
26708
+ * "gas_certificate"
26709
+ * ]
26710
+ */
26711
+ requirements?: string[];
26712
+ }[];
25839
26713
  compliance_status?: {
25840
- /** @example unknown */
26714
+ /** @example compliant */
25841
26715
  overall?: string;
25842
26716
  /** @example [] */
25843
26717
  breakdown?: unknown[];
@@ -25859,15 +26733,15 @@ export interface operations {
25859
26733
  content: {
25860
26734
  "application/json": {
25861
26735
  /**
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
26736
+ * @description UID of the listing for which the tenancy is being created. The <code>uid</code> of an existing record in the listings table.
26737
+ * @example 55178b5b-ca29-41a2-a9da-f51cb257e328
25864
26738
  */
25865
- listing_id: number;
26739
+ listing_uid: string;
25866
26740
  /**
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
26741
+ * @description UID of the user who will be the tenant. The <code>uid</code> of an existing record in the users table.
26742
+ * @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df
25869
26743
  */
25870
- tenant_id: number;
26744
+ tenant_uid: string;
25871
26745
  /**
25872
26746
  * @description Monthly rent amount for the tenancy. Must be at least 1.
25873
26747
  * @example 1200
@@ -25902,32 +26776,43 @@ export interface operations {
25902
26776
  };
25903
26777
  };
25904
26778
  responses: {
26779
+ /** @description Tenancy created successfully */
25905
26780
  200: {
25906
26781
  headers: {
25907
26782
  [name: string]: unknown;
25908
26783
  };
25909
26784
  content: {
25910
26785
  "application/json": {
26786
+ /** @example Tenancy created successfully */
26787
+ message?: string;
26788
+ /** @example null */
26789
+ event?: string | null;
25911
26790
  data?: {
25912
- /** @example 63c2e7fb-6e7c-4c71-8fbe-6086644cb30e */
26791
+ /** @example 9f8c3a6a-5b3c-4b9e-92a1-6c1d89b8d77a */
25913
26792
  uid?: string;
25914
- /** @example 4978.97 */
26793
+ /** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
26794
+ listing_uid?: string;
26795
+ /** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
26796
+ landlord_uid?: string;
26797
+ /** @example c2d9f2cf-6279-4370-9924-5f5dcb0f40df */
26798
+ tenant_uid?: string;
26799
+ /** @example 1500.00 */
25915
26800
  rent_amount?: string;
25916
- /** @example 1598.98 */
26801
+ /** @example 1500.00 */
25917
26802
  deposit_amount?: string;
25918
- /** @example active */
26803
+ /** @example pending */
25919
26804
  state?: string;
25920
- /** @example 2025-09-19T00:00:00.000000Z */
26805
+ /** @example 2026-06-01 */
25921
26806
  start_date?: string;
25922
- /** @example 2026-09-19T00:00:00.000000Z */
26807
+ /** @example 2027-05-31 */
25923
26808
  end_date?: string;
25924
- /** @example true */
26809
+ /** @example false */
25925
26810
  is_periodic?: boolean;
25926
26811
  /** @example null */
25927
26812
  company_name?: string | null;
25928
26813
  /** @example null */
25929
26814
  company_registration_number?: string | null;
25930
- /** @example 2026-05-01T20:09:08.000000Z */
26815
+ /** @example 2026-05-06T10:30:00.000000Z */
25931
26816
  created_at?: string;
25932
26817
  };
25933
26818
  };
@@ -26036,7 +26921,7 @@ export interface operations {
26036
26921
  query?: never;
26037
26922
  header?: never;
26038
26923
  path: {
26039
- /** @description Optional parameter. uuid required The ID of the tenancy to renew. */
26924
+ /** @description The ID of the tenancy to renew. */
26040
26925
  tenancy_uid: string;
26041
26926
  };
26042
26927
  cookie?: never;
@@ -26068,8 +26953,8 @@ export interface operations {
26068
26953
  query?: never;
26069
26954
  header?: never;
26070
26955
  path: {
26071
- /** @description The ID of the tenancy to convert. */
26072
- tenancy_uid: number;
26956
+ /** @description The UID of the tenancy to convert. */
26957
+ tenancy_uid: string;
26073
26958
  };
26074
26959
  cookie?: never;
26075
26960
  };
@@ -26219,17 +27104,17 @@ export interface operations {
26219
27104
  * "from_state": "enquiry",
26220
27105
  * "to_state": "pre_move_in_ready",
26221
27106
  * "changed_by_user_id": 3,
26222
- * "changed_by_name": "Teagan King",
27107
+ * "changed_by_name": "Bruce Parker",
26223
27108
  * "comment": "Qui commodi incidunt iure odit.",
26224
- * "created_at": "2026-01-09T06:56:07.000000Z"
27109
+ * "created_at": "2026-01-13T23:27:03.000000Z"
26225
27110
  * },
26226
27111
  * {
26227
- * "from_state": "offer_pending",
26228
- * "to_state": "offer_accepted",
27112
+ * "from_state": "pre_move_in_ready",
27113
+ * "to_state": "periodic",
26229
27114
  * "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"
27115
+ * "changed_by_name": "Bruce Parker",
27116
+ * "comment": null,
27117
+ * "created_at": "2025-11-21T07:22:43.000000Z"
26233
27118
  * }
26234
27119
  * ]
26235
27120
  */
@@ -26240,11 +27125,11 @@ export interface operations {
26240
27125
  to_state?: string;
26241
27126
  /** @example 3 */
26242
27127
  changed_by_user_id?: number;
26243
- /** @example Teagan King */
27128
+ /** @example Bruce Parker */
26244
27129
  changed_by_name?: string;
26245
27130
  /** @example Qui commodi incidunt iure odit. */
26246
27131
  comment?: string;
26247
- /** @example 2026-01-09T06:56:07.000000Z */
27132
+ /** @example 2026-01-13T23:27:03.000000Z */
26248
27133
  created_at?: string;
26249
27134
  }[];
26250
27135
  };
@@ -26629,15 +27514,15 @@ export interface operations {
26629
27514
  content: {
26630
27515
  "application/json": {
26631
27516
  data?: {
26632
- /** @example 3868f164-f16f-4c2d-afc4-6e3d1a4c9536 */
27517
+ /** @example aec9af45-4e38-4603-bff8-2b94a7293e04 */
26633
27518
  uid?: string;
26634
- /** @example Ms. Audra Crooks II */
27519
+ /** @example Emily Reid */
26635
27520
  username?: string;
26636
27521
  /** @example null */
26637
27522
  first_name?: string | null;
26638
27523
  /** @example null */
26639
27524
  last_name?: string | null;
26640
- /** @example hirthe.theo@example.com */
27525
+ /** @example reid.francesca@example.org */
26641
27526
  email?: string;
26642
27527
  /** @example null */
26643
27528
  phone?: string | null;
@@ -26659,7 +27544,7 @@ export interface operations {
26659
27544
  timezone?: string;
26660
27545
  /** @example Customer */
26661
27546
  user_type?: string;
26662
- /** @example 01 May 2026, 08:09 PM */
27547
+ /** @example 06 May 2026, 12:40 PM */
26663
27548
  created?: string;
26664
27549
  /** @example 0 seconds ago */
26665
27550
  email_verified_at?: string;
@@ -26724,24 +27609,18 @@ export interface operations {
26724
27609
  reservedBookingsTenants: {
26725
27610
  parameters: {
26726
27611
  query?: {
27612
+ /** @description Filter bookings by tenant/guest name. */
27613
+ tenant_name?: string | null;
26727
27614
  /** @description Number of bookings per page. */
26728
- per_page?: number;
27615
+ per_page?: number | null;
27616
+ /** @description Current page number. */
27617
+ page?: number | null;
26729
27618
  };
26730
27619
  header?: never;
26731
27620
  path?: never;
26732
27621
  cookie?: never;
26733
27622
  };
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
- };
27623
+ requestBody?: never;
26745
27624
  responses: {
26746
27625
  /** @description Retrieve tenant reserved bookings */
26747
27626
  200: {
@@ -26793,7 +27672,8 @@ export interface operations {
26793
27672
  * "end_date": "13 Jun 2026",
26794
27673
  * "nights": 3,
26795
27674
  * "status": "pending",
26796
- * "total_price": "450.00"
27675
+ * "total_price": "450.00",
27676
+ * "created_at": "06 May, 2026 10:30 AM"
26797
27677
  * }
26798
27678
  * ]
26799
27679
  */
@@ -26860,6 +27740,8 @@ export interface operations {
26860
27740
  status?: string;
26861
27741
  /** @example 450.00 */
26862
27742
  total_price?: string;
27743
+ /** @example 06 May, 2026 10:30 AM */
27744
+ created_at?: string;
26863
27745
  }[];
26864
27746
  pagination?: {
26865
27747
  /** @example 1 */
@@ -26934,15 +27816,15 @@ export interface operations {
26934
27816
  content: {
26935
27817
  "application/json": {
26936
27818
  data?: {
26937
- /** @example 3b07f124-3176-4bad-9a0a-3f8f3796de17 */
27819
+ /** @example 95509340-354a-4151-bc49-b46f21c2ce48 */
26938
27820
  uid?: string;
26939
- /** @example Morgan Hirthe */
27821
+ /** @example Connor Richards */
26940
27822
  username?: string;
26941
27823
  /** @example null */
26942
27824
  first_name?: string | null;
26943
27825
  /** @example null */
26944
27826
  last_name?: string | null;
26945
- /** @example imclaughlin@example.org */
27827
+ /** @example igreen@example.org */
26946
27828
  email?: string;
26947
27829
  /** @example null */
26948
27830
  phone?: string | null;
@@ -26964,7 +27846,7 @@ export interface operations {
26964
27846
  timezone?: string;
26965
27847
  /** @example Customer */
26966
27848
  user_type?: string;
26967
- /** @example 01 May 2026, 08:09 PM */
27849
+ /** @example 06 May 2026, 12:40 PM */
26968
27850
  created?: string;
26969
27851
  /** @example 0 seconds ago */
26970
27852
  email_verified_at?: string;
@@ -27036,15 +27918,15 @@ export interface operations {
27036
27918
  content: {
27037
27919
  "application/json": {
27038
27920
  data?: {
27039
- /** @example ca2b69ed-d994-46be-a919-4a86cc97fc33 */
27921
+ /** @example aa40d6cc-65a0-4b72-90fb-b73d78487954 */
27040
27922
  uid?: string;
27041
- /** @example Ms. Audra Crooks II */
27923
+ /** @example Emily Reid */
27042
27924
  username?: string;
27043
27925
  /** @example null */
27044
27926
  first_name?: string | null;
27045
27927
  /** @example null */
27046
27928
  last_name?: string | null;
27047
- /** @example leo34@example.net */
27929
+ /** @example wscott@example.net */
27048
27930
  email?: string;
27049
27931
  /** @example null */
27050
27932
  phone?: string | null;
@@ -27066,7 +27948,7 @@ export interface operations {
27066
27948
  timezone?: string;
27067
27949
  /** @example Customer */
27068
27950
  user_type?: string;
27069
- /** @example 01 May 2026, 08:09 PM */
27951
+ /** @example 06 May 2026, 12:40 PM */
27070
27952
  created?: string;
27071
27953
  /** @example 0 seconds ago */
27072
27954
  email_verified_at?: string;
@@ -27320,7 +28202,7 @@ export interface operations {
27320
28202
  completed_layers?: number;
27321
28203
  /** @example 4 */
27322
28204
  pending_layers?: number;
27323
- /** @example 01 May 2026, 08:09 PM */
28205
+ /** @example 06 May 2026, 12:40 PM */
27324
28206
  last_calculated_at?: string;
27325
28207
  };
27326
28208
  };
@@ -27368,7 +28250,7 @@ export interface operations {
27368
28250
  completed_layers?: number;
27369
28251
  /** @example 4 */
27370
28252
  pending_layers?: number;
27371
- /** @example 01 May 2026, 08:09 PM */
28253
+ /** @example 06 May 2026, 12:40 PM */
27372
28254
  last_calculated_at?: string;
27373
28255
  };
27374
28256
  };
@@ -27402,14 +28284,14 @@ export interface operations {
27402
28284
  content: {
27403
28285
  "application/json": {
27404
28286
  data?: {
27405
- /** @example aab16be9-5c56-43cc-8317-f9bed1015e03 */
28287
+ /** @example efd85376-ff0d-46e3-949b-966233a0de88 */
27406
28288
  wishlist_uid?: string;
27407
28289
  listing?: {
27408
- /** @example New For Sale Used Item draft • 1 May 2026, 8:09 PM */
28290
+ /** @example New For Sale Used Item draft • 6 May 2026, 12:40 PM */
27409
28291
  draft_name?: string;
27410
- /** @example LST-UIT-SAL-MONCIYFAM6P */
28292
+ /** @example LST-UIT-SAL-MOU1OQ7UHWH */
27411
28293
  sku?: string;
27412
- /** @example fcff3915-576a-4af0-8629-77d65184626a */
28294
+ /** @example 1cdc5e7b-7ee3-4485-a36f-c941c8a2c55d */
27413
28295
  uid?: string;
27414
28296
  /** @example Sale */
27415
28297
  listing_type?: string;
@@ -27756,17 +28638,17 @@ export interface operations {
27756
28638
  content: {
27757
28639
  "application/json": {
27758
28640
  data?: {
27759
- /** @example 0dd08e9c-2b6f-4c31-acea-399984c1f537 */
28641
+ /** @example 6b4e9a1a-067d-47d2-abf7-156406afe774 */
27760
28642
  uid?: string;
27761
- /** @example Accusantium aut suscipit ea suscipit illo ea doloribus neque. */
28643
+ /** @example Dolor ea natus vel. */
27762
28644
  note?: string;
27763
28645
  user?: {
27764
- /** @example 20 */
28646
+ /** @example 9 */
27765
28647
  id?: number;
27766
- /** @example Suzanne Morgan */
28648
+ /** @example Carrie Johnson */
27767
28649
  name?: string;
27768
28650
  };
27769
- /** @example 2026-04-18 03:00:21 */
28651
+ /** @example 2026-04-27 22:15:17 */
27770
28652
  created_at?: string;
27771
28653
  };
27772
28654
  };
@@ -27790,13 +28672,13 @@ export interface operations {
27790
28672
  content: {
27791
28673
  "application/json": {
27792
28674
  data?: {
27793
- /** @example 9 */
28675
+ /** @example 0 */
27794
28676
  current_level?: number;
27795
28677
  /** @example 3 */
27796
28678
  completed_layers?: number;
27797
- /** @example 2 */
28679
+ /** @example 4 */
27798
28680
  pending_layers?: number;
27799
- /** @example 01 May 2026, 08:09 PM */
28681
+ /** @example 06 May 2026, 12:40 PM */
27800
28682
  last_calculated_at?: string;
27801
28683
  };
27802
28684
  };
@@ -28038,7 +28920,7 @@ export interface operations {
28038
28920
  completed_layers?: number;
28039
28921
  /** @example 4 */
28040
28922
  pending_layers?: number;
28041
- /** @example 01 May 2026, 08:09 PM */
28923
+ /** @example 06 May 2026, 12:40 PM */
28042
28924
  last_calculated_at?: string;
28043
28925
  };
28044
28926
  };