@justins-home/types 1.1.46 → 1.1.48

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 +1305 -321
  2. package/package.json +1 -1
@@ -1,4 +1,24 @@
1
1
  export interface paths {
2
+ "/api/v1/portal/admin/create-admin": {
3
+ parameters: {
4
+ query?: never;
5
+ header?: never;
6
+ path?: never;
7
+ cookie?: never;
8
+ };
9
+ get?: never;
10
+ put?: never;
11
+ /**
12
+ * newAdmin
13
+ * @description Creates a admin user account with associated admin profile data
14
+ */
15
+ post: operations["newAdmin"];
16
+ delete?: never;
17
+ options?: never;
18
+ head?: never;
19
+ patch?: never;
20
+ trace?: never;
21
+ };
2
22
  "/api/v1/portal/admin/login": {
3
23
  parameters: {
4
24
  query?: never;
@@ -160,6 +180,46 @@ export interface paths {
160
180
  patch?: never;
161
181
  trace?: never;
162
182
  };
183
+ "/api/v1/portal/admin/users/admins/fetch-all": {
184
+ parameters: {
185
+ query?: never;
186
+ header?: never;
187
+ path?: never;
188
+ cookie?: never;
189
+ };
190
+ /**
191
+ * fetchAdminAccounts
192
+ * @description Retrieve paginated admin accounts.
193
+ */
194
+ get: operations["fetchAdminAccounts"];
195
+ put?: never;
196
+ post?: never;
197
+ delete?: never;
198
+ options?: never;
199
+ head?: never;
200
+ patch?: never;
201
+ trace?: never;
202
+ };
203
+ "/api/v1/portal/admin/users/admins/fetch-all-no-pagination": {
204
+ parameters: {
205
+ query?: never;
206
+ header?: never;
207
+ path?: never;
208
+ cookie?: never;
209
+ };
210
+ /**
211
+ * fetchAllAdminsNoPagination
212
+ * @description Retrieve all admin accounts without pagination.
213
+ */
214
+ get: operations["fetchAllAdminsNoPagination"];
215
+ put?: never;
216
+ post?: never;
217
+ delete?: never;
218
+ options?: never;
219
+ head?: never;
220
+ patch?: never;
221
+ trace?: never;
222
+ };
163
223
  "/api/v1/portal/admin/users/landlords/fetch-all": {
164
224
  parameters: {
165
225
  query?: never;
@@ -2586,6 +2646,29 @@ export interface paths {
2586
2646
  patch?: never;
2587
2647
  trace?: never;
2588
2648
  };
2649
+ "/api/v1/portal/admin/inspections/fetch-one/{uid}": {
2650
+ parameters: {
2651
+ query?: never;
2652
+ header?: never;
2653
+ path: {
2654
+ /** @description The unique UID of the inspection. */
2655
+ uid: string;
2656
+ };
2657
+ cookie?: never;
2658
+ };
2659
+ /**
2660
+ * fetchInspectionAdmin
2661
+ * @description Fetch a single inspection by UID.
2662
+ */
2663
+ get: operations["fetchInspectionAdmin"];
2664
+ put?: never;
2665
+ post?: never;
2666
+ delete?: never;
2667
+ options?: never;
2668
+ head?: never;
2669
+ patch?: never;
2670
+ trace?: never;
2671
+ };
2589
2672
  "/api/v1/portal/admin/inspections/schedule": {
2590
2673
  parameters: {
2591
2674
  query?: never;
@@ -2606,6 +2689,29 @@ export interface paths {
2606
2689
  patch?: never;
2607
2690
  trace?: never;
2608
2691
  };
2692
+ "/api/v1/portal/admin/inspections/{uid}/attachments": {
2693
+ parameters: {
2694
+ query?: never;
2695
+ header?: never;
2696
+ path: {
2697
+ /** @description The unique UID of the inspection. */
2698
+ uid: string;
2699
+ };
2700
+ cookie?: never;
2701
+ };
2702
+ get?: never;
2703
+ put?: never;
2704
+ /**
2705
+ * uploadInspectionAttachment
2706
+ * @description Upload an attachment for a specific inspection.
2707
+ */
2708
+ post: operations["uploadInspectionAttachment"];
2709
+ delete?: never;
2710
+ options?: never;
2711
+ head?: never;
2712
+ patch?: never;
2713
+ trace?: never;
2714
+ };
2609
2715
  "/api/v1/portal/admin/inspections/{uid}/complete": {
2610
2716
  parameters: {
2611
2717
  query?: never;
@@ -2675,6 +2781,29 @@ export interface paths {
2675
2781
  patch?: never;
2676
2782
  trace?: never;
2677
2783
  };
2784
+ "/api/v1/portal/admin/maintenance/fetch-one/{uid}": {
2785
+ parameters: {
2786
+ query?: never;
2787
+ header?: never;
2788
+ path: {
2789
+ /** @description The UID of the maintenance request. */
2790
+ uid: string;
2791
+ };
2792
+ cookie?: never;
2793
+ };
2794
+ /**
2795
+ * fetchMaintenanceRequestAdmin
2796
+ * @description Fetch a single maintenance request by UID.
2797
+ */
2798
+ get: operations["fetchMaintenanceRequestAdmin"];
2799
+ put?: never;
2800
+ post?: never;
2801
+ delete?: never;
2802
+ options?: never;
2803
+ head?: never;
2804
+ patch?: never;
2805
+ trace?: never;
2806
+ };
2678
2807
  "/api/v1/portal/admin/maintenance/{uid}/assign": {
2679
2808
  parameters: {
2680
2809
  query?: never;
@@ -4347,6 +4476,30 @@ export interface paths {
4347
4476
  patch?: never;
4348
4477
  trace?: never;
4349
4478
  };
4479
+ "/api/v1/portal/admin/maintenance/{uid}/updates": {
4480
+ parameters: {
4481
+ query?: never;
4482
+ header?: never;
4483
+ path: {
4484
+ uid: string;
4485
+ /** @description The UID of the maintenance request. */
4486
+ maintenance_uid: string;
4487
+ };
4488
+ cookie?: never;
4489
+ };
4490
+ get?: never;
4491
+ put?: never;
4492
+ /**
4493
+ * addMaintenanceUpdateAdmin
4494
+ * @description Add a note/update to a maintenance request.
4495
+ */
4496
+ post: operations["addMaintenanceUpdateAdmin"];
4497
+ delete?: never;
4498
+ options?: never;
4499
+ head?: never;
4500
+ patch?: never;
4501
+ trace?: never;
4502
+ };
4350
4503
  "/api/v1/public/maintenance/listing/{listing_uid}": {
4351
4504
  parameters: {
4352
4505
  query?: never;
@@ -5353,6 +5506,29 @@ export interface paths {
5353
5506
  patch?: never;
5354
5507
  trace?: never;
5355
5508
  };
5509
+ "/api/v1/public/maintenance/{maintenance_uid}/updates": {
5510
+ parameters: {
5511
+ query?: never;
5512
+ header?: never;
5513
+ path: {
5514
+ /** @description The UID of the maintenance request. */
5515
+ maintenance_uid: string;
5516
+ };
5517
+ cookie?: never;
5518
+ };
5519
+ get?: never;
5520
+ put?: never;
5521
+ /**
5522
+ * addMaintenanceUpdate
5523
+ * @description Add a note/update to a maintenance request.
5524
+ */
5525
+ post: operations["addMaintenanceUpdate"];
5526
+ delete?: never;
5527
+ options?: never;
5528
+ head?: never;
5529
+ patch?: never;
5530
+ trace?: never;
5531
+ };
5356
5532
  "/api/v1/public/userverification/fetch-flow": {
5357
5533
  parameters: {
5358
5534
  query?: never;
@@ -5450,6 +5626,135 @@ export interface components {
5450
5626
  }
5451
5627
  export type $defs = Record<string, never>;
5452
5628
  export interface operations {
5629
+ newAdmin: {
5630
+ parameters: {
5631
+ query?: never;
5632
+ header?: never;
5633
+ path?: never;
5634
+ cookie?: never;
5635
+ };
5636
+ requestBody: {
5637
+ content: {
5638
+ "application/json": {
5639
+ /**
5640
+ * @description Full name of the admin.
5641
+ * @example John Doe
5642
+ */
5643
+ name: string;
5644
+ /**
5645
+ * @description Email address of the admin. Must be a valid email address.
5646
+ * @example john@example.com
5647
+ */
5648
+ email: string;
5649
+ /**
5650
+ * @description Account password for the admin.
5651
+ * @example secret123
5652
+ */
5653
+ password?: string | null;
5654
+ /**
5655
+ * @description Contact phone number of the admin.
5656
+ * @example +447700900123
5657
+ */
5658
+ phone?: string | null;
5659
+ /**
5660
+ * @description Account status of the admin.
5661
+ * @example active
5662
+ */
5663
+ status?: string | null;
5664
+ /**
5665
+ * @description The role of the admin being created.
5666
+ * @example manager
5667
+ */
5668
+ role?: string | null;
5669
+ };
5670
+ };
5671
+ };
5672
+ responses: {
5673
+ 200: {
5674
+ headers: {
5675
+ [name: string]: unknown;
5676
+ };
5677
+ content: {
5678
+ "application/json": {
5679
+ data?: {
5680
+ /** @example 4b155eeb-ded7-4ea5-94ec-0c82922337f5 */
5681
+ uid?: string;
5682
+ /** @example Ms. Audra Crooks II */
5683
+ username?: string;
5684
+ /** @example null */
5685
+ first_name?: string | null;
5686
+ /** @example null */
5687
+ last_name?: string | null;
5688
+ /** @example aschuster@example.com */
5689
+ email?: string;
5690
+ /** @example null */
5691
+ phone?: string | null;
5692
+ /** @example null */
5693
+ status?: string | null;
5694
+ /** @example form */
5695
+ user_mode?: string;
5696
+ /** @example null */
5697
+ last_login_at?: string | null;
5698
+ /** @example null */
5699
+ last_login_ip?: string | null;
5700
+ /** @example false */
5701
+ two_factor_enabled?: boolean;
5702
+ /** @example null */
5703
+ avatar_path?: string | null;
5704
+ /** @example en-GB */
5705
+ language?: string;
5706
+ /** @example Europe/London */
5707
+ timezone?: string;
5708
+ /** @example Customer */
5709
+ user_type?: string;
5710
+ /** @example 24 Apr 2026, 02:12 PM */
5711
+ created?: string;
5712
+ /** @example 0 seconds ago */
5713
+ email_verified_at?: string;
5714
+ verification_status?: {
5715
+ /** @example not_verified */
5716
+ overall?: string;
5717
+ /**
5718
+ * @example [
5719
+ * {
5720
+ * "verification_name": "Email Verification",
5721
+ * "verification_description": "Verify the user's email address",
5722
+ * "verification_key": "email_verified",
5723
+ * "state": "not_verified"
5724
+ * },
5725
+ * {
5726
+ * "verification_name": "Phone Number Verification",
5727
+ * "verification_description": "Verify the user's phone number via OTP",
5728
+ * "verification_key": "phone_verified",
5729
+ * "state": "not_verified"
5730
+ * },
5731
+ * {
5732
+ * "verification_name": "Government ID Verification",
5733
+ * "verification_description": "Upload government ID",
5734
+ * "verification_key": "id_document",
5735
+ * "state": "not_verified"
5736
+ * }
5737
+ * ]
5738
+ */
5739
+ breakdown?: {
5740
+ /** @example Email Verification */
5741
+ verification_name?: string;
5742
+ /** @example Verify the user's email address */
5743
+ verification_description?: string;
5744
+ /** @example email_verified */
5745
+ verification_key?: string;
5746
+ /** @example not_verified */
5747
+ state?: string;
5748
+ }[];
5749
+ };
5750
+ /** @example null */
5751
+ role?: string | null;
5752
+ };
5753
+ };
5754
+ };
5755
+ };
5756
+ };
5757
+ };
5453
5758
  basicLoginAdmin: {
5454
5759
  parameters: {
5455
5760
  query?: never;
@@ -5930,7 +6235,7 @@ export interface operations {
5930
6235
  content: {
5931
6236
  "application/json": {
5932
6237
  data?: {
5933
- /** @example 80b5f103-50c6-4548-86d2-4856b4410049 */
6238
+ /** @example ea209fa4-ac00-4ead-9f43-f0bb04dd50bb */
5934
6239
  uid?: string;
5935
6240
  /** @example Ms. Audra Crooks II */
5936
6241
  username?: string;
@@ -5938,7 +6243,7 @@ export interface operations {
5938
6243
  first_name?: string | null;
5939
6244
  /** @example null */
5940
6245
  last_name?: string | null;
5941
- /** @example aschuster@example.com */
6246
+ /** @example gilbert32@example.com */
5942
6247
  email?: string;
5943
6248
  /** @example null */
5944
6249
  phone?: string | null;
@@ -5960,7 +6265,7 @@ export interface operations {
5960
6265
  timezone?: string;
5961
6266
  /** @example Customer */
5962
6267
  user_type?: string;
5963
- /** @example 22 Apr 2026, 11:59 AM */
6268
+ /** @example 24 Apr 2026, 02:12 PM */
5964
6269
  created?: string;
5965
6270
  /** @example 0 seconds ago */
5966
6271
  email_verified_at?: string;
@@ -6008,6 +6313,143 @@ export interface operations {
6008
6313
  };
6009
6314
  };
6010
6315
  };
6316
+ fetchAdminAccounts: {
6317
+ parameters: {
6318
+ query?: {
6319
+ /** @description Items per page for the paginated admin list. Must be at least 1. Must not be greater than 100. */
6320
+ per_page?: number | null;
6321
+ /** @description Pagination page number. Must be at least 1. */
6322
+ page?: number | null;
6323
+ };
6324
+ header?: never;
6325
+ path?: never;
6326
+ cookie?: never;
6327
+ };
6328
+ requestBody?: never;
6329
+ responses: {
6330
+ /** @description Retrieve paginated admin accounts */
6331
+ 200: {
6332
+ headers: {
6333
+ [name: string]: unknown;
6334
+ };
6335
+ content: {
6336
+ "application/json": {
6337
+ /** @example Admins fetched successfully */
6338
+ message?: string;
6339
+ /** @example null */
6340
+ event?: string | null;
6341
+ data?: {
6342
+ /**
6343
+ * @example [
6344
+ * {
6345
+ * "uid": "usr_123",
6346
+ * "username": "Jane Admin",
6347
+ * "email": "admin@example.com",
6348
+ * "phone": "+447700900123",
6349
+ * "status": "active",
6350
+ * "avatar_path": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg",
6351
+ * "role": "manager",
6352
+ * "created_at": "2026-04-24T10:00:00Z"
6353
+ * }
6354
+ * ]
6355
+ */
6356
+ items?: {
6357
+ /** @example usr_123 */
6358
+ uid?: string;
6359
+ /** @example Jane Admin */
6360
+ username?: string;
6361
+ /** @example admin@example.com */
6362
+ email?: string;
6363
+ /** @example +447700900123 */
6364
+ phone?: string;
6365
+ /** @example active */
6366
+ status?: string;
6367
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg */
6368
+ avatar_path?: string;
6369
+ /** @example manager */
6370
+ role?: string;
6371
+ /** @example 2026-04-24T10:00:00Z */
6372
+ created_at?: string;
6373
+ }[];
6374
+ pagination?: {
6375
+ /** @example 1 */
6376
+ current_page?: number;
6377
+ /** @example 15 */
6378
+ per_page?: number;
6379
+ /** @example 1 */
6380
+ total?: number;
6381
+ /** @example 1 */
6382
+ last_page?: number;
6383
+ /** @example 1 */
6384
+ from?: number;
6385
+ /** @example 1 */
6386
+ to?: number;
6387
+ };
6388
+ };
6389
+ };
6390
+ };
6391
+ };
6392
+ };
6393
+ };
6394
+ fetchAllAdminsNoPagination: {
6395
+ parameters: {
6396
+ query?: never;
6397
+ header?: never;
6398
+ path?: never;
6399
+ cookie?: never;
6400
+ };
6401
+ requestBody?: never;
6402
+ responses: {
6403
+ /** @description Retrieve all admin accounts without pagination */
6404
+ 200: {
6405
+ headers: {
6406
+ [name: string]: unknown;
6407
+ };
6408
+ content: {
6409
+ "application/json": {
6410
+ /** @example Admins fetched successfully */
6411
+ message?: string;
6412
+ /** @example null */
6413
+ event?: string | null;
6414
+ data?: {
6415
+ /**
6416
+ * @example [
6417
+ * {
6418
+ * "uid": "usr_123",
6419
+ * "username": "Jane Admin",
6420
+ * "email": "admin@example.com",
6421
+ * "phone": "+447700900123",
6422
+ * "status": "active",
6423
+ * "avatar_path": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg",
6424
+ * "role": "manager",
6425
+ * "created_at": "2026-04-24T10:00:00Z"
6426
+ * }
6427
+ * ]
6428
+ */
6429
+ items?: {
6430
+ /** @example usr_123 */
6431
+ uid?: string;
6432
+ /** @example Jane Admin */
6433
+ username?: string;
6434
+ /** @example admin@example.com */
6435
+ email?: string;
6436
+ /** @example +447700900123 */
6437
+ phone?: string;
6438
+ /** @example active */
6439
+ status?: string;
6440
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg */
6441
+ avatar_path?: string;
6442
+ /** @example manager */
6443
+ role?: string;
6444
+ /** @example 2026-04-24T10:00:00Z */
6445
+ created_at?: string;
6446
+ }[];
6447
+ };
6448
+ };
6449
+ };
6450
+ };
6451
+ };
6452
+ };
6011
6453
  fetchLandlordListAdmin: {
6012
6454
  parameters: {
6013
6455
  query?: {
@@ -6213,11 +6655,11 @@ export interface operations {
6213
6655
  content: {
6214
6656
  "application/json": {
6215
6657
  data?: {
6216
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
6658
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
6217
6659
  draft_name?: string;
6218
- /** @example LST-PRP-LTR-MOA0323B1MG */
6660
+ /** @example LST-PRP-LTR-MOCZPR86SOK */
6219
6661
  sku?: string;
6220
- /** @example 1b05dbdc-a883-446a-924c-01c68ece7439 */
6662
+ /** @example 45c2b2ec-dc04-40c5-bcf4-712472baff55 */
6221
6663
  uid?: string;
6222
6664
  /** @example Rent */
6223
6665
  listing_type?: string;
@@ -7629,7 +8071,7 @@ export interface operations {
7629
8071
  content: {
7630
8072
  "application/json": {
7631
8073
  /**
7632
- * @example Pending
8074
+ * @example Unverified
7633
8075
  * @enum {string}
7634
8076
  */
7635
8077
  status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
@@ -7644,7 +8086,7 @@ export interface operations {
7644
8086
  content: {
7645
8087
  "application/json": {
7646
8088
  data?: {
7647
- /** @example 25995425-e344-4136-9067-6570c4dbaff9 */
8089
+ /** @example 1e63daa9-388c-415a-9eed-37dfebcc9dcb */
7648
8090
  uid?: string;
7649
8091
  /** @example Morgan Hirthe */
7650
8092
  username?: string;
@@ -7674,7 +8116,7 @@ export interface operations {
7674
8116
  timezone?: string;
7675
8117
  /** @example Customer */
7676
8118
  user_type?: string;
7677
- /** @example 22 Apr 2026, 11:59 AM */
8119
+ /** @example 24 Apr 2026, 02:12 PM */
7678
8120
  created?: string;
7679
8121
  /** @example 0 seconds ago */
7680
8122
  email_verified_at?: string;
@@ -8383,11 +8825,11 @@ export interface operations {
8383
8825
  content: {
8384
8826
  "application/json": {
8385
8827
  data?: {
8386
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
8828
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
8387
8829
  draft_name?: string;
8388
- /** @example LST-PRP-LTR-MOA0326T12E */
8830
+ /** @example LST-PRP-LTR-MOCZPRAVCPW */
8389
8831
  sku?: string;
8390
- /** @example 2ceb52ce-fe64-434a-bc23-9e67fe70fc82 */
8832
+ /** @example 9314c63d-ecdf-4644-85d8-6bae702bea10 */
8391
8833
  uid?: string;
8392
8834
  /** @example Rent */
8393
8835
  listing_type?: string;
@@ -8827,7 +9269,7 @@ export interface operations {
8827
9269
  content: {
8828
9270
  "application/json": {
8829
9271
  data?: {
8830
- /** @example a3e269ab-d77e-4be7-ac57-57316c0efac6 */
9272
+ /** @example 6340cfd6-9f1a-4f3c-b81d-190b36f5f09d */
8831
9273
  uid?: string;
8832
9274
  /** @example photo */
8833
9275
  media_type?: string;
@@ -9134,30 +9576,32 @@ export interface operations {
9134
9576
  /**
9135
9577
  * @example [
9136
9578
  * {
9137
- * "draft_name": "New For Sale Used Item draft • 22 Apr 2026, 11:59 AM",
9138
- * "sku": "LST-UIT-SAL-MOA0328YXSL",
9139
- * "uid": "4f736a40-906c-404b-b2b4-ac6bdbf63e7c",
9140
- * "listing_type": "Sale",
9141
- * "vertical": "Used Item",
9142
- * "arrangement_type": null,
9143
- * "arrangement_type_label": null,
9579
+ * "draft_name": "New For Rent Property draft • 24 Apr 2026, 2:12 PM",
9580
+ * "sku": "LST-PRP-LTR-MOCZPRC9M4J",
9581
+ * "uid": "d3d244e1-b6c8-4dea-97a5-242c3f763aa3",
9582
+ * "listing_type": "Rent",
9583
+ * "vertical": "Property",
9584
+ * "arrangement_type": "let_to_let",
9585
+ * "arrangement_type_label": "Let to Let",
9144
9586
  * "price": null,
9145
9587
  * "state": "draft",
9146
9588
  * "published_at": null,
9147
9589
  * "published_since": null,
9148
9590
  * "is_visible": false,
9149
- * "summary": [],
9591
+ * "summary": {
9592
+ * "availability": null
9593
+ * },
9150
9594
  * "workflow": [],
9151
9595
  * "media": []
9152
9596
  * },
9153
9597
  * {
9154
- * "draft_name": "New For Sale Property draft • 22 Apr 2026, 11:59 AM",
9155
- * "sku": "LST-PRP-SAL-MOA03293GS4",
9156
- * "uid": "d6278d28-b3a2-4751-9923-ae8c81f2e7d1",
9157
- * "listing_type": "Sale",
9598
+ * "draft_name": "New Short Let Property draft • 24 Apr 2026, 2:12 PM",
9599
+ * "sku": "LST-PRP-SHL-MOCZPRCBJ2Y",
9600
+ * "uid": "43f2e4c9-aa32-4cdb-b179-3e3af85fbe71",
9601
+ * "listing_type": "Short Let",
9158
9602
  * "vertical": "Property",
9159
- * "arrangement_type": "company_lease",
9160
- * "arrangement_type_label": "Company Lease",
9603
+ * "arrangement_type": "short_term_managed",
9604
+ * "arrangement_type_label": "Short Term Managed",
9161
9605
  * "price": null,
9162
9606
  * "state": "draft",
9163
9607
  * "published_at": null,
@@ -9172,20 +9616,20 @@ export interface operations {
9172
9616
  * ]
9173
9617
  */
9174
9618
  data?: {
9175
- /** @example New For Sale Used Item draft • 22 Apr 2026, 11:59 AM */
9619
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
9176
9620
  draft_name?: string;
9177
- /** @example LST-UIT-SAL-MOA0328YXSL */
9621
+ /** @example LST-PRP-LTR-MOCZPRC9M4J */
9178
9622
  sku?: string;
9179
- /** @example 4f736a40-906c-404b-b2b4-ac6bdbf63e7c */
9623
+ /** @example d3d244e1-b6c8-4dea-97a5-242c3f763aa3 */
9180
9624
  uid?: string;
9181
- /** @example Sale */
9625
+ /** @example Rent */
9182
9626
  listing_type?: string;
9183
- /** @example Used Item */
9627
+ /** @example Property */
9184
9628
  vertical?: string;
9185
- /** @example null */
9186
- arrangement_type?: string | null;
9187
- /** @example null */
9188
- arrangement_type_label?: string | null;
9629
+ /** @example let_to_let */
9630
+ arrangement_type?: string;
9631
+ /** @example Let to Let */
9632
+ arrangement_type_label?: string;
9189
9633
  /** @example null */
9190
9634
  price?: string | null;
9191
9635
  /** @example draft */
@@ -9196,8 +9640,10 @@ export interface operations {
9196
9640
  published_since?: string | null;
9197
9641
  /** @example false */
9198
9642
  is_visible?: boolean;
9199
- /** @example [] */
9200
- summary?: unknown[];
9643
+ summary?: {
9644
+ /** @example null */
9645
+ availability?: string | null;
9646
+ };
9201
9647
  /** @example [] */
9202
9648
  workflow?: unknown[];
9203
9649
  /** @example [] */
@@ -9369,11 +9815,11 @@ export interface operations {
9369
9815
  content: {
9370
9816
  "application/json": {
9371
9817
  data?: {
9372
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
9818
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
9373
9819
  draft_name?: string;
9374
- /** @example LST-PRP-LTR-MOA0329EUIU */
9820
+ /** @example LST-PRP-LTR-MOCZPRCINT1 */
9375
9821
  sku?: string;
9376
- /** @example 35a82d53-ea2d-4602-98d1-94a49909b5d2 */
9822
+ /** @example 65314981-f5ee-4300-b1d4-6f3a74550a62 */
9377
9823
  uid?: string;
9378
9824
  /** @example Rent */
9379
9825
  listing_type?: string;
@@ -9436,11 +9882,11 @@ export interface operations {
9436
9882
  content: {
9437
9883
  "application/json": {
9438
9884
  data?: {
9439
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
9885
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
9440
9886
  draft_name?: string;
9441
- /** @example LST-PRP-LTR-MOA0329LMHB */
9887
+ /** @example LST-PRP-LTR-MOCZPRCNDBW */
9442
9888
  sku?: string;
9443
- /** @example 9da3f660-be52-4956-8143-74a2cf0a5366 */
9889
+ /** @example 7a06d2f1-dbbe-49e4-81b5-06b25e398976 */
9444
9890
  uid?: string;
9445
9891
  /** @example Rent */
9446
9892
  listing_type?: string;
@@ -9493,11 +9939,11 @@ export interface operations {
9493
9939
  content: {
9494
9940
  "application/json": {
9495
9941
  data?: {
9496
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
9942
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
9497
9943
  draft_name?: string;
9498
- /** @example LST-PRP-LTR-MOA0329RXWT */
9944
+ /** @example LST-PRP-LTR-MOCZPRCSEMU */
9499
9945
  sku?: string;
9500
- /** @example 1f3db730-0caa-4fd8-9475-01571d2ae72b */
9946
+ /** @example ae7c44ac-d602-4153-b9eb-2968fb2a5991 */
9501
9947
  uid?: string;
9502
9948
  /** @example Rent */
9503
9949
  listing_type?: string;
@@ -9550,11 +9996,11 @@ export interface operations {
9550
9996
  content: {
9551
9997
  "application/json": {
9552
9998
  data?: {
9553
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
9999
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
9554
10000
  draft_name?: string;
9555
- /** @example LST-PRP-LTR-MOA0329ZGLL */
10001
+ /** @example LST-PRP-LTR-MOCZPRCWK6B */
9556
10002
  sku?: string;
9557
- /** @example 08cca190-a685-4ab5-b336-55a815e4f9c7 */
10003
+ /** @example a7ce662e-cce3-4551-972c-13a926263c1b */
9558
10004
  uid?: string;
9559
10005
  /** @example Rent */
9560
10006
  listing_type?: string;
@@ -9748,7 +10194,7 @@ export interface operations {
9748
10194
  content: {
9749
10195
  "application/json": {
9750
10196
  data?: {
9751
- /** @example 94 */
10197
+ /** @example 106 */
9752
10198
  id?: number;
9753
10199
  /** @example 1 */
9754
10200
  category_id?: number;
@@ -9822,7 +10268,7 @@ export interface operations {
9822
10268
  content: {
9823
10269
  "application/json": {
9824
10270
  data?: {
9825
- /** @example 95 */
10271
+ /** @example 107 */
9826
10272
  id?: number;
9827
10273
  /** @example 1 */
9828
10274
  category_id?: number;
@@ -9861,7 +10307,7 @@ export interface operations {
9861
10307
  content: {
9862
10308
  "application/json": {
9863
10309
  data?: {
9864
- /** @example 96 */
10310
+ /** @example 108 */
9865
10311
  id?: number;
9866
10312
  /** @example 1 */
9867
10313
  category_id?: number;
@@ -9899,7 +10345,7 @@ export interface operations {
9899
10345
  /**
9900
10346
  * @example [
9901
10347
  * {
9902
- * "id": 100,
10348
+ * "id": 120,
9903
10349
  * "name": "Exterior",
9904
10350
  * "description": "For Exterior categories",
9905
10351
  * "display_order": 1,
@@ -9909,7 +10355,7 @@ export interface operations {
9909
10355
  * "is_active": true
9910
10356
  * },
9911
10357
  * {
9912
- * "id": 101,
10358
+ * "id": 121,
9913
10359
  * "name": "Exterior",
9914
10360
  * "description": "For Exterior categories",
9915
10361
  * "display_order": 1,
@@ -9921,7 +10367,7 @@ export interface operations {
9921
10367
  * ]
9922
10368
  */
9923
10369
  data?: {
9924
- /** @example 100 */
10370
+ /** @example 120 */
9925
10371
  id?: number;
9926
10372
  /** @example Exterior */
9927
10373
  name?: string;
@@ -9985,7 +10431,7 @@ export interface operations {
9985
10431
  content: {
9986
10432
  "application/json": {
9987
10433
  data?: {
9988
- /** @example 102 */
10434
+ /** @example 122 */
9989
10435
  id?: number;
9990
10436
  /** @example Exterior */
9991
10437
  name?: string;
@@ -10052,7 +10498,7 @@ export interface operations {
10052
10498
  content: {
10053
10499
  "application/json": {
10054
10500
  data?: {
10055
- /** @example 103 */
10501
+ /** @example 123 */
10056
10502
  id?: number;
10057
10503
  /** @example Exterior */
10058
10504
  name?: string;
@@ -10093,7 +10539,7 @@ export interface operations {
10093
10539
  content: {
10094
10540
  "application/json": {
10095
10541
  data?: {
10096
- /** @example 104 */
10542
+ /** @example 124 */
10097
10543
  id?: number;
10098
10544
  /** @example Exterior */
10099
10545
  name?: string;
@@ -10356,7 +10802,7 @@ export interface operations {
10356
10802
  content: {
10357
10803
  "application/json": {
10358
10804
  data?: {
10359
- /** @example 50 */
10805
+ /** @example 59 */
10360
10806
  id?: number;
10361
10807
  /** @example email_fa_0 */
10362
10808
  key?: string;
@@ -10370,9 +10816,9 @@ export interface operations {
10370
10816
  metadata_schema?: unknown[];
10371
10817
  /** @example true */
10372
10818
  is_active?: boolean;
10373
- /** @example 2026-04-22T11:59:50.000000Z */
10819
+ /** @example 2026-04-24T14:12:48.000000Z */
10374
10820
  created_at?: string;
10375
- /** @example 2026-04-22T11:59:50.000000Z */
10821
+ /** @example 2026-04-24T14:12:48.000000Z */
10376
10822
  updated_at?: string;
10377
10823
  };
10378
10824
  };
@@ -10432,7 +10878,7 @@ export interface operations {
10432
10878
  content: {
10433
10879
  "application/json": {
10434
10880
  data?: {
10435
- /** @example 51 */
10881
+ /** @example 60 */
10436
10882
  id?: number;
10437
10883
  /** @example email_fa_0 */
10438
10884
  key?: string;
@@ -10446,9 +10892,9 @@ export interface operations {
10446
10892
  metadata_schema?: unknown[];
10447
10893
  /** @example true */
10448
10894
  is_active?: boolean;
10449
- /** @example 2026-04-22T11:59:50.000000Z */
10895
+ /** @example 2026-04-24T14:12:48.000000Z */
10450
10896
  created_at?: string;
10451
- /** @example 2026-04-22T11:59:50.000000Z */
10897
+ /** @example 2026-04-24T14:12:48.000000Z */
10452
10898
  updated_at?: string;
10453
10899
  };
10454
10900
  };
@@ -11714,25 +12160,25 @@ export interface operations {
11714
12160
  /**
11715
12161
  * @example [
11716
12162
  * {
11717
- * "key": "adipisci",
11718
- * "name": "ut",
11719
- * "description": "Autem labore et non voluptatem.",
12163
+ * "key": "aut",
12164
+ * "name": "adipisci",
12165
+ * "description": "Nostrum qui commodi incidunt iure.",
11720
12166
  * "value_type": "string"
11721
12167
  * },
11722
12168
  * {
11723
- * "key": "rerum",
11724
- * "name": "temporibus",
11725
- * "description": "Dolores et et quae dignissimos et.",
12169
+ * "key": "odit",
12170
+ * "name": "et",
12171
+ * "description": "Modi ipsum nostrum omnis autem et.",
11726
12172
  * "value_type": "string"
11727
12173
  * }
11728
12174
  * ]
11729
12175
  */
11730
12176
  data?: {
11731
- /** @example adipisci */
12177
+ /** @example aut */
11732
12178
  key?: string;
11733
- /** @example ut */
12179
+ /** @example adipisci */
11734
12180
  name?: string;
11735
- /** @example Autem labore et non voluptatem. */
12181
+ /** @example Nostrum qui commodi incidunt iure. */
11736
12182
  description?: string;
11737
12183
  /** @example string */
11738
12184
  value_type?: string;
@@ -12814,7 +13260,15 @@ export interface operations {
12814
13260
  * "id": 12,
12815
13261
  * "name": "Inspector Jane Doe"
12816
13262
  * },
12817
- * "media": [],
13263
+ * "media": [
13264
+ * {
13265
+ * "uid": "ism_34fda1",
13266
+ * "file_type": "image/jpeg",
13267
+ * "caption": "Kitchen leak evidence",
13268
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
13269
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
13270
+ * }
13271
+ * ],
12818
13272
  * "created_at": "2026-04-01T09:00:00Z",
12819
13273
  * "updated_at": "2026-04-01T09:00:00Z"
12820
13274
  * }
@@ -12843,8 +13297,29 @@ export interface operations {
12843
13297
  /** @example Inspector Jane Doe */
12844
13298
  name?: string;
12845
13299
  };
12846
- /** @example [] */
12847
- media?: unknown[];
13300
+ /**
13301
+ * @example [
13302
+ * {
13303
+ * "uid": "ism_34fda1",
13304
+ * "file_type": "image/jpeg",
13305
+ * "caption": "Kitchen leak evidence",
13306
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
13307
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
13308
+ * }
13309
+ * ]
13310
+ */
13311
+ media?: {
13312
+ /** @example ism_34fda1 */
13313
+ uid?: string;
13314
+ /** @example image/jpeg */
13315
+ file_type?: string;
13316
+ /** @example Kitchen leak evidence */
13317
+ caption?: string;
13318
+ /** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
13319
+ path?: string;
13320
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
13321
+ url?: string;
13322
+ }[];
12848
13323
  /** @example 2026-04-01T09:00:00Z */
12849
13324
  created_at?: string;
12850
13325
  /** @example 2026-04-01T09:00:00Z */
@@ -12870,6 +13345,107 @@ export interface operations {
12870
13345
  };
12871
13346
  };
12872
13347
  };
13348
+ fetchInspectionAdmin: {
13349
+ parameters: {
13350
+ query?: never;
13351
+ header?: never;
13352
+ path: {
13353
+ /** @description The unique UID of the inspection. */
13354
+ uid: string;
13355
+ };
13356
+ cookie?: never;
13357
+ };
13358
+ requestBody?: never;
13359
+ responses: {
13360
+ 200: {
13361
+ headers: {
13362
+ [name: string]: unknown;
13363
+ };
13364
+ content: {
13365
+ "application/json": {
13366
+ /** @example Inspection fetched successfully */
13367
+ message?: string;
13368
+ /** @example null */
13369
+ event?: string | null;
13370
+ data?: {
13371
+ /** @example insp_34fda1 */
13372
+ uid?: string;
13373
+ /** @example routine */
13374
+ inspection_type?: string;
13375
+ /** @example scheduled */
13376
+ status?: string;
13377
+ /** @example 2026-04-10T10:30:00Z */
13378
+ scheduled_date?: string;
13379
+ /** @example null */
13380
+ completed_date?: string | null;
13381
+ /** @example null */
13382
+ condition_rating?: string | null;
13383
+ /** @example null */
13384
+ summary?: string | null;
13385
+ /** @example 2026-06-10T10:30:00Z */
13386
+ next_inspection_date?: string;
13387
+ inspector?: {
13388
+ /** @example 12 */
13389
+ id?: number;
13390
+ /** @example Inspector Jane Doe */
13391
+ name?: string;
13392
+ };
13393
+ /**
13394
+ * @example [
13395
+ * {
13396
+ * "uid": "ism_34fda1",
13397
+ * "file_type": "image/jpeg",
13398
+ * "caption": "Kitchen leak evidence",
13399
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
13400
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
13401
+ * }
13402
+ * ]
13403
+ */
13404
+ media?: {
13405
+ /** @example ism_34fda1 */
13406
+ uid?: string;
13407
+ /** @example image/jpeg */
13408
+ file_type?: string;
13409
+ /** @example Kitchen leak evidence */
13410
+ caption?: string;
13411
+ /** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
13412
+ path?: string;
13413
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
13414
+ url?: string;
13415
+ }[];
13416
+ /** @example 2026-04-01T09:00:00Z */
13417
+ created_at?: string;
13418
+ /** @example 2026-04-01T09:00:00Z */
13419
+ updated_at?: string;
13420
+ };
13421
+ } | {
13422
+ data?: {
13423
+ /** @example b2cf7b7b-41dd-4f7f-97ef-18d104c86a00 */
13424
+ uid?: string;
13425
+ /** @example follow_up */
13426
+ inspection_type?: string;
13427
+ /** @example cancelled */
13428
+ status?: string;
13429
+ /** @example 30 Apr 2026, 04:11 AM */
13430
+ scheduled_date?: string;
13431
+ /** @example null */
13432
+ completed_date?: string | null;
13433
+ /** @example attention_required */
13434
+ condition_rating?: string;
13435
+ /** @example Quidem nostrum qui commodi incidunt iure odit. */
13436
+ summary?: string;
13437
+ /** @example 23 Jun 2026, 12:59 AM */
13438
+ next_inspection_date?: string;
13439
+ /** @example 24 Apr 2026, 02:12 PM */
13440
+ created_at?: string;
13441
+ /** @example 24 Apr 2026, 02:12 PM */
13442
+ updated_at?: string;
13443
+ };
13444
+ };
13445
+ };
13446
+ };
13447
+ };
13448
+ };
12873
13449
  scheduleInspection: {
12874
13450
  parameters: {
12875
13451
  query?: never;
@@ -12917,13 +13493,13 @@ export interface operations {
12917
13493
  content: {
12918
13494
  "application/json": {
12919
13495
  data?: {
12920
- /** @example cf8c559b-cb0e-4036-b783-f30aaa458d65 */
13496
+ /** @example e65ec2f6-601d-4fd0-bbdd-21335c207b4e */
12921
13497
  uid?: string;
12922
13498
  /** @example follow_up */
12923
13499
  inspection_type?: string;
12924
13500
  /** @example cancelled */
12925
13501
  status?: string;
12926
- /** @example 2026-04-28T01:58:13.000000Z */
13502
+ /** @example 30 Apr 2026, 04:11 AM */
12927
13503
  scheduled_date?: string;
12928
13504
  /** @example null */
12929
13505
  completed_date?: string | null;
@@ -12931,12 +13507,64 @@ export interface operations {
12931
13507
  condition_rating?: string;
12932
13508
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
12933
13509
  summary?: string;
12934
- /** @example 2026-06-20T22:46:47.000000Z */
13510
+ /** @example 23 Jun 2026, 12:59 AM */
12935
13511
  next_inspection_date?: string;
12936
- /** @example 2026-04-22T11:59:51.000000Z */
13512
+ /** @example 24 Apr 2026, 02:12 PM */
13513
+ created_at?: string;
13514
+ /** @example 24 Apr 2026, 02:12 PM */
13515
+ updated_at?: string;
13516
+ };
13517
+ };
13518
+ };
13519
+ };
13520
+ };
13521
+ };
13522
+ uploadInspectionAttachment: {
13523
+ parameters: {
13524
+ query?: never;
13525
+ header?: never;
13526
+ path: {
13527
+ /** @description The unique UID of the inspection. */
13528
+ uid: string;
13529
+ };
13530
+ cookie?: never;
13531
+ };
13532
+ requestBody: {
13533
+ content: {
13534
+ "multipart/form-data": {
13535
+ /**
13536
+ * Format: binary
13537
+ * @description File to attach to the inspection. Accepted formats: jpg, jpeg, png, pdf. Maximum size: 10MB. Must be a file. Must not be greater than 10240 kilobytes.
13538
+ */
13539
+ file: string;
13540
+ /**
13541
+ * @description Optional caption for the uploaded inspection attachment. Must not be greater than 255 characters.
13542
+ * @example b
13543
+ */
13544
+ caption?: string | null;
13545
+ };
13546
+ };
13547
+ };
13548
+ responses: {
13549
+ 200: {
13550
+ headers: {
13551
+ [name: string]: unknown;
13552
+ };
13553
+ content: {
13554
+ "application/json": {
13555
+ data?: {
13556
+ /** @example a7efe096-a742-4215-bb95-62a61c6265d7 */
13557
+ uid?: string;
13558
+ /** @example application/octet-stream */
13559
+ file_type?: string;
13560
+ /** @example licking pipe */
13561
+ caption?: string;
13562
+ /** @example 5c4154a1-b8d2-411d-b653-54fd110d4ef1/c07aa2f4-65bd-4cae-b8f0-7e55958bea6d.png */
13563
+ storage_path?: string;
13564
+ /** @example http://justinshome-backendcore.test/inspection-media/5c4154a1-b8d2-411d-b653-54fd110d4ef1/c07aa2f4-65bd-4cae-b8f0-7e55958bea6d.png */
13565
+ url?: string;
13566
+ /** @example 2026-04-24T07:37:18.000000Z */
12937
13567
  created_at?: string;
12938
- /** @example 2026-04-22T11:59:51.000000Z */
12939
- updated_at?: string;
12940
13568
  };
12941
13569
  };
12942
13570
  };
@@ -12978,13 +13606,13 @@ export interface operations {
12978
13606
  content: {
12979
13607
  "application/json": {
12980
13608
  data?: {
12981
- /** @example c36874f8-12e8-483d-8878-fcd84b668e9c */
13609
+ /** @example baeaae3b-1f3e-484a-be10-f6253377c4f4 */
12982
13610
  uid?: string;
12983
13611
  /** @example follow_up */
12984
13612
  inspection_type?: string;
12985
13613
  /** @example cancelled */
12986
13614
  status?: string;
12987
- /** @example 2026-04-15T23:24:46.000000Z */
13615
+ /** @example 18 Apr 2026, 01:37 AM */
12988
13616
  scheduled_date?: string;
12989
13617
  /** @example null */
12990
13618
  completed_date?: string | null;
@@ -12992,11 +13620,11 @@ export interface operations {
12992
13620
  condition_rating?: string;
12993
13621
  /** @example Et animi quos velit et fugiat. */
12994
13622
  summary?: string;
12995
- /** @example 2026-07-25T07:18:33.000000Z */
13623
+ /** @example 27 Jul 2026, 09:31 AM */
12996
13624
  next_inspection_date?: string;
12997
- /** @example 2026-04-22T11:59:51.000000Z */
13625
+ /** @example 24 Apr 2026, 02:12 PM */
12998
13626
  created_at?: string;
12999
- /** @example 2026-04-22T11:59:51.000000Z */
13627
+ /** @example 24 Apr 2026, 02:12 PM */
13000
13628
  updated_at?: string;
13001
13629
  };
13002
13630
  };
@@ -13033,13 +13661,13 @@ export interface operations {
13033
13661
  content: {
13034
13662
  "application/json": {
13035
13663
  data?: {
13036
- /** @example f391d98c-fb0a-4071-845c-da60a1698f7f */
13664
+ /** @example 85b25204-7c5b-43ff-8cfb-329514f1dfe2 */
13037
13665
  uid?: string;
13038
13666
  /** @example follow_up */
13039
13667
  inspection_type?: string;
13040
13668
  /** @example cancelled */
13041
13669
  status?: string;
13042
- /** @example 2026-04-28T01:58:13.000000Z */
13670
+ /** @example 30 Apr 2026, 04:11 AM */
13043
13671
  scheduled_date?: string;
13044
13672
  /** @example null */
13045
13673
  completed_date?: string | null;
@@ -13047,11 +13675,11 @@ export interface operations {
13047
13675
  condition_rating?: string;
13048
13676
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
13049
13677
  summary?: string;
13050
- /** @example 2026-06-20T22:46:47.000000Z */
13678
+ /** @example 23 Jun 2026, 12:59 AM */
13051
13679
  next_inspection_date?: string;
13052
- /** @example 2026-04-22T11:59:51.000000Z */
13680
+ /** @example 24 Apr 2026, 02:12 PM */
13053
13681
  created_at?: string;
13054
- /** @example 2026-04-22T11:59:51.000000Z */
13682
+ /** @example 24 Apr 2026, 02:12 PM */
13055
13683
  updated_at?: string;
13056
13684
  };
13057
13685
  };
@@ -13088,13 +13716,13 @@ export interface operations {
13088
13716
  content: {
13089
13717
  "application/json": {
13090
13718
  data?: {
13091
- /** @example 7ad7e448-28ba-416b-b10d-7ce24befb684 */
13719
+ /** @example 218b8e3f-fed1-4086-9cff-a0c4cc7fcee4 */
13092
13720
  uid?: string;
13093
13721
  /** @example follow_up */
13094
13722
  inspection_type?: string;
13095
13723
  /** @example cancelled */
13096
13724
  status?: string;
13097
- /** @example 2026-04-15T23:24:46.000000Z */
13725
+ /** @example 18 Apr 2026, 01:37 AM */
13098
13726
  scheduled_date?: string;
13099
13727
  /** @example null */
13100
13728
  completed_date?: string | null;
@@ -13102,11 +13730,158 @@ export interface operations {
13102
13730
  condition_rating?: string;
13103
13731
  /** @example Et animi quos velit et fugiat. */
13104
13732
  summary?: string;
13105
- /** @example 2026-07-25T07:18:33.000000Z */
13733
+ /** @example 27 Jul 2026, 09:31 AM */
13106
13734
  next_inspection_date?: string;
13107
- /** @example 2026-04-22T11:59:51.000000Z */
13735
+ /** @example 24 Apr 2026, 02:12 PM */
13736
+ created_at?: string;
13737
+ /** @example 24 Apr 2026, 02:12 PM */
13738
+ updated_at?: string;
13739
+ };
13740
+ };
13741
+ };
13742
+ };
13743
+ };
13744
+ };
13745
+ fetchMaintenanceRequestAdmin: {
13746
+ parameters: {
13747
+ query?: never;
13748
+ header?: never;
13749
+ path: {
13750
+ /** @description The UID of the maintenance request. */
13751
+ uid: string;
13752
+ };
13753
+ cookie?: never;
13754
+ };
13755
+ requestBody?: never;
13756
+ responses: {
13757
+ 200: {
13758
+ headers: {
13759
+ [name: string]: unknown;
13760
+ };
13761
+ content: {
13762
+ "application/json": {
13763
+ /** @example Maintenance request fetched successfully */
13764
+ message?: string;
13765
+ /** @example null */
13766
+ event?: string | null;
13767
+ data?: {
13768
+ /** @example maint_83fd12 */
13769
+ uid?: string;
13770
+ /** @example Leaking kitchen sink */
13771
+ title?: string;
13772
+ /** @example Water has been dripping continuously under the sink cabinet. */
13773
+ description?: string;
13774
+ /** @example reported */
13775
+ status?: string;
13776
+ /** @example urgent */
13777
+ priority?: string;
13778
+ /** @example 2026-04-01T10:00:00Z */
13779
+ reported_at?: string;
13780
+ /** @example null */
13781
+ assigned_at?: string | null;
13782
+ /** @example null */
13783
+ completed_at?: string | null;
13784
+ /** @example 2026-04-02T10:00:00Z */
13785
+ sla_deadline?: string;
13786
+ listing?: {
13787
+ /** @example 7 */
13788
+ id?: number;
13789
+ /** @example 54c1fd9b-8720-43e6-be3d-d4283477f38b */
13790
+ uid?: string;
13791
+ };
13792
+ reporter?: {
13793
+ /** @example usr_123 */
13794
+ id?: string;
13795
+ /** @example Jane Doe */
13796
+ name?: string;
13797
+ };
13798
+ /** @example null */
13799
+ technician?: string | null;
13800
+ /**
13801
+ * @example [
13802
+ * {
13803
+ * "uid": "mu_34fda1",
13804
+ * "note": "Inspection visit scheduled.",
13805
+ * "user": {
13806
+ * "id": 12,
13807
+ * "name": "Inspector Jane Doe"
13808
+ * },
13809
+ * "created_at": "2026-04-01T09:30:00Z"
13810
+ * }
13811
+ * ]
13812
+ */
13813
+ updates?: {
13814
+ /** @example mu_34fda1 */
13815
+ uid?: string;
13816
+ /** @example Inspection visit scheduled. */
13817
+ note?: string;
13818
+ user?: {
13819
+ /** @example 12 */
13820
+ id?: number;
13821
+ /** @example Inspector Jane Doe */
13822
+ name?: string;
13823
+ };
13824
+ /** @example 2026-04-01T09:30:00Z */
13825
+ created_at?: string;
13826
+ }[];
13827
+ /**
13828
+ * @example [
13829
+ * {
13830
+ * "uid": "mnt_34fda1",
13831
+ * "file_type": "image/jpeg",
13832
+ * "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
13833
+ * "uploaded_by": {
13834
+ * "id": 12,
13835
+ * "name": "Inspector Jane Doe"
13836
+ * },
13837
+ * "created_at": "2026-04-01T09:15:00Z"
13838
+ * }
13839
+ * ]
13840
+ */
13841
+ attachments?: {
13842
+ /** @example mnt_34fda1 */
13843
+ uid?: string;
13844
+ /** @example image/jpeg */
13845
+ file_type?: string;
13846
+ /** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
13847
+ url?: string;
13848
+ uploaded_by?: {
13849
+ /** @example 12 */
13850
+ id?: number;
13851
+ /** @example Inspector Jane Doe */
13852
+ name?: string;
13853
+ };
13854
+ /** @example 2026-04-01T09:15:00Z */
13855
+ created_at?: string;
13856
+ }[];
13857
+ /** @example 2026-04-01T10:00:00Z */
13858
+ created_at?: string;
13859
+ /** @example 2026-04-01T10:00:00Z */
13860
+ updated_at?: string;
13861
+ };
13862
+ } | {
13863
+ data?: {
13864
+ /** @example e0ee1bee-5b97-49b8-acbb-a4591d91e655 */
13865
+ uid?: string;
13866
+ /** @example Qui commodi incidunt iure. */
13867
+ title?: string;
13868
+ /** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
13869
+ description?: string;
13870
+ /** @example breach */
13871
+ status?: string;
13872
+ /** @example low */
13873
+ priority?: string;
13874
+ /** @example 23 Apr 2026, 03:41 AM */
13875
+ reported_at?: string;
13876
+ /** @example null */
13877
+ assigned_at?: string | null;
13878
+ /** @example null */
13879
+ completed_at?: string | null;
13880
+ /** @example 26 Apr 2026, 12:05 AM */
13881
+ sla_deadline?: string;
13882
+ /** @example 24 Apr 2026, 02:12 PM */
13108
13883
  created_at?: string;
13109
- /** @example 2026-04-22T11:59:51.000000Z */
13884
+ /** @example 24 Apr 2026, 02:12 PM */
13110
13885
  updated_at?: string;
13111
13886
  };
13112
13887
  };
@@ -13143,7 +13918,7 @@ export interface operations {
13143
13918
  content: {
13144
13919
  "application/json": {
13145
13920
  data?: {
13146
- /** @example 05d22a37-6123-432c-9f60-1c9e568953b6 */
13921
+ /** @example d9a5058f-a056-4f04-9536-8367687c15fd */
13147
13922
  uid?: string;
13148
13923
  /** @example Qui commodi incidunt iure. */
13149
13924
  title?: string;
@@ -13153,17 +13928,17 @@ export interface operations {
13153
13928
  status?: string;
13154
13929
  /** @example low */
13155
13930
  priority?: string;
13156
- /** @example 2026-04-21T01:28:34.000000Z */
13931
+ /** @example 23 Apr 2026, 03:41 AM */
13157
13932
  reported_at?: string;
13158
13933
  /** @example null */
13159
13934
  assigned_at?: string | null;
13160
13935
  /** @example null */
13161
13936
  completed_at?: string | null;
13162
- /** @example 2026-04-23T21:53:00.000000Z */
13937
+ /** @example 26 Apr 2026, 12:05 AM */
13163
13938
  sla_deadline?: string;
13164
- /** @example 2026-04-22T11:59:51.000000Z */
13939
+ /** @example 24 Apr 2026, 02:12 PM */
13165
13940
  created_at?: string;
13166
- /** @example 2026-04-22T11:59:51.000000Z */
13941
+ /** @example 24 Apr 2026, 02:12 PM */
13167
13942
  updated_at?: string;
13168
13943
  };
13169
13944
  };
@@ -13200,7 +13975,7 @@ export interface operations {
13200
13975
  content: {
13201
13976
  "application/json": {
13202
13977
  data?: {
13203
- /** @example 616ed835-d4c3-483d-89f8-4896ef03adb1 */
13978
+ /** @example dfd3b4dd-4143-475c-849f-24aada873034 */
13204
13979
  uid?: string;
13205
13980
  /** @example Quos velit et fugiat sunt nihil. */
13206
13981
  title?: string;
@@ -13210,17 +13985,17 @@ export interface operations {
13210
13985
  status?: string;
13211
13986
  /** @example emergency */
13212
13987
  priority?: string;
13213
- /** @example 2026-04-15T23:13:26.000000Z */
13988
+ /** @example 18 Apr 2026, 01:26 AM */
13214
13989
  reported_at?: string;
13215
- /** @example 2026-04-20T19:33:18.000000Z */
13990
+ /** @example 22 Apr 2026, 09:46 PM */
13216
13991
  assigned_at?: string;
13217
13992
  /** @example null */
13218
13993
  completed_at?: string | null;
13219
- /** @example 2026-04-24T00:55:41.000000Z */
13994
+ /** @example 26 Apr 2026, 03:08 AM */
13220
13995
  sla_deadline?: string;
13221
- /** @example 2026-04-22T11:59:51.000000Z */
13996
+ /** @example 24 Apr 2026, 02:12 PM */
13222
13997
  created_at?: string;
13223
- /** @example 2026-04-22T11:59:51.000000Z */
13998
+ /** @example 24 Apr 2026, 02:12 PM */
13224
13999
  updated_at?: string;
13225
14000
  };
13226
14001
  };
@@ -13257,7 +14032,7 @@ export interface operations {
13257
14032
  content: {
13258
14033
  "application/json": {
13259
14034
  data?: {
13260
- /** @example 72f41d5a-ffd3-492b-aacf-fa6e2a0ed2b7 */
14035
+ /** @example c8dbf860-4993-4b40-ac24-6414dc50558a */
13261
14036
  uid?: string;
13262
14037
  /** @example Quos velit et fugiat sunt nihil. */
13263
14038
  title?: string;
@@ -13267,17 +14042,17 @@ export interface operations {
13267
14042
  status?: string;
13268
14043
  /** @example emergency */
13269
14044
  priority?: string;
13270
- /** @example 2026-04-15T23:13:26.000000Z */
14045
+ /** @example 18 Apr 2026, 01:26 AM */
13271
14046
  reported_at?: string;
13272
- /** @example 2026-04-20T19:33:18.000000Z */
14047
+ /** @example 22 Apr 2026, 09:46 PM */
13273
14048
  assigned_at?: string;
13274
14049
  /** @example null */
13275
14050
  completed_at?: string | null;
13276
- /** @example 2026-04-24T00:55:41.000000Z */
14051
+ /** @example 26 Apr 2026, 03:08 AM */
13277
14052
  sla_deadline?: string;
13278
- /** @example 2026-04-22T11:59:51.000000Z */
14053
+ /** @example 24 Apr 2026, 02:12 PM */
13279
14054
  created_at?: string;
13280
- /** @example 2026-04-22T11:59:51.000000Z */
14055
+ /** @example 24 Apr 2026, 02:12 PM */
13281
14056
  updated_at?: string;
13282
14057
  };
13283
14058
  };
@@ -13314,7 +14089,7 @@ export interface operations {
13314
14089
  content: {
13315
14090
  "application/json": {
13316
14091
  data?: {
13317
- /** @example dec5480f-bbe8-446a-aab1-d7b2bc410ebe */
14092
+ /** @example d0331e65-3aec-4d90-a49d-d9863aac1247 */
13318
14093
  uid?: string;
13319
14094
  /** @example Quos velit et fugiat sunt nihil. */
13320
14095
  title?: string;
@@ -13324,17 +14099,17 @@ export interface operations {
13324
14099
  status?: string;
13325
14100
  /** @example emergency */
13326
14101
  priority?: string;
13327
- /** @example 2026-04-15T23:13:26.000000Z */
14102
+ /** @example 18 Apr 2026, 01:26 AM */
13328
14103
  reported_at?: string;
13329
- /** @example 2026-04-20T19:33:18.000000Z */
14104
+ /** @example 22 Apr 2026, 09:46 PM */
13330
14105
  assigned_at?: string;
13331
14106
  /** @example null */
13332
14107
  completed_at?: string | null;
13333
- /** @example 2026-04-24T00:55:41.000000Z */
14108
+ /** @example 26 Apr 2026, 03:08 AM */
13334
14109
  sla_deadline?: string;
13335
- /** @example 2026-04-22T11:59:51.000000Z */
14110
+ /** @example 24 Apr 2026, 02:12 PM */
13336
14111
  created_at?: string;
13337
- /** @example 2026-04-22T11:59:51.000000Z */
14112
+ /** @example 24 Apr 2026, 02:12 PM */
13338
14113
  updated_at?: string;
13339
14114
  };
13340
14115
  };
@@ -13730,19 +14505,19 @@ export interface operations {
13730
14505
  content: {
13731
14506
  "application/json": {
13732
14507
  data?: {
13733
- /** @example 127 */
14508
+ /** @example 155 */
13734
14509
  id?: number;
13735
14510
  /** @example 2 */
13736
14511
  listing_id?: number;
13737
14512
  /** @example completed */
13738
14513
  status?: string;
13739
14514
  scheduled?: {
13740
- /** @example 2006-09-15T00:00:00.000000Z */
14515
+ /** @example 1981-11-16T00:00:00.000000Z */
13741
14516
  start?: string;
13742
- /** @example 2015-12-31T00:00:00.000000Z */
14517
+ /** @example 1979-12-13T00:00:00.000000Z */
13743
14518
  end?: string;
13744
14519
  };
13745
- /** @example 2026-04-22T11:59:52.000000Z */
14520
+ /** @example 2026-04-24T14:12:49.000000Z */
13746
14521
  created_at?: string;
13747
14522
  };
13748
14523
  };
@@ -13769,19 +14544,19 @@ export interface operations {
13769
14544
  content: {
13770
14545
  "application/json": {
13771
14546
  data?: {
13772
- /** @example 128 */
14547
+ /** @example 156 */
13773
14548
  id?: number;
13774
14549
  /** @example 2 */
13775
14550
  listing_id?: number;
13776
14551
  /** @example completed */
13777
14552
  status?: string;
13778
14553
  scheduled?: {
13779
- /** @example 1981-11-18T00:00:00.000000Z */
14554
+ /** @example 1981-11-16T00:00:00.000000Z */
13780
14555
  start?: string;
13781
- /** @example 1979-12-15T00:00:00.000000Z */
14556
+ /** @example 1979-12-13T00:00:00.000000Z */
13782
14557
  end?: string;
13783
14558
  };
13784
- /** @example 2026-04-22T11:59:52.000000Z */
14559
+ /** @example 2026-04-24T14:12:49.000000Z */
13785
14560
  created_at?: string;
13786
14561
  };
13787
14562
  };
@@ -13807,41 +14582,41 @@ export interface operations {
13807
14582
  /**
13808
14583
  * @example [
13809
14584
  * {
13810
- * "id": 129,
14585
+ * "id": 157,
13811
14586
  * "listing_id": 2,
13812
14587
  * "status": "completed",
13813
14588
  * "scheduled": {
13814
- * "start": "1981-11-18T00:00:00.000000Z",
13815
- * "end": "1979-12-15T00:00:00.000000Z"
14589
+ * "start": "1981-11-16T00:00:00.000000Z",
14590
+ * "end": "1979-12-13T00:00:00.000000Z"
13816
14591
  * },
13817
- * "created_at": "2026-04-22T11:59:52.000000Z"
14592
+ * "created_at": "2026-04-24T14:12:49.000000Z"
13818
14593
  * },
13819
14594
  * {
13820
- * "id": 130,
14595
+ * "id": 158,
13821
14596
  * "listing_id": 2,
13822
14597
  * "status": "completed",
13823
14598
  * "scheduled": {
13824
- * "start": "2006-09-18T00:00:00.000000Z",
14599
+ * "start": "2006-09-16T00:00:00.000000Z",
13825
14600
  * "end": "2015-01-19T00:00:00.000000Z"
13826
14601
  * },
13827
- * "created_at": "2026-04-22T11:59:52.000000Z"
14602
+ * "created_at": "2026-04-24T14:12:49.000000Z"
13828
14603
  * }
13829
14604
  * ]
13830
14605
  */
13831
14606
  data?: {
13832
- /** @example 129 */
14607
+ /** @example 157 */
13833
14608
  id?: number;
13834
14609
  /** @example 2 */
13835
14610
  listing_id?: number;
13836
14611
  /** @example completed */
13837
14612
  status?: string;
13838
14613
  scheduled?: {
13839
- /** @example 1981-11-18T00:00:00.000000Z */
14614
+ /** @example 1981-11-16T00:00:00.000000Z */
13840
14615
  start?: string;
13841
- /** @example 1979-12-15T00:00:00.000000Z */
14616
+ /** @example 1979-12-13T00:00:00.000000Z */
13842
14617
  end?: string;
13843
14618
  };
13844
- /** @example 2026-04-22T11:59:52.000000Z */
14619
+ /** @example 2026-04-24T14:12:49.000000Z */
13845
14620
  created_at?: string;
13846
14621
  }[];
13847
14622
  links?: {
@@ -13941,19 +14716,19 @@ export interface operations {
13941
14716
  content: {
13942
14717
  "application/json": {
13943
14718
  data?: {
13944
- /** @example 131 */
14719
+ /** @example 159 */
13945
14720
  id?: number;
13946
14721
  /** @example 2 */
13947
14722
  listing_id?: number;
13948
14723
  /** @example completed */
13949
14724
  status?: string;
13950
14725
  scheduled?: {
13951
- /** @example 1981-11-18T00:00:00.000000Z */
14726
+ /** @example 1981-11-16T00:00:00.000000Z */
13952
14727
  start?: string;
13953
- /** @example 1979-12-15T00:00:00.000000Z */
14728
+ /** @example 1979-12-13T00:00:00.000000Z */
13954
14729
  end?: string;
13955
14730
  };
13956
- /** @example 2026-04-22T11:59:52.000000Z */
14731
+ /** @example 2026-04-24T14:12:49.000000Z */
13957
14732
  created_at?: string;
13958
14733
  };
13959
14734
  };
@@ -13980,19 +14755,19 @@ export interface operations {
13980
14755
  content: {
13981
14756
  "application/json": {
13982
14757
  data?: {
13983
- /** @example 132 */
14758
+ /** @example 160 */
13984
14759
  id?: number;
13985
14760
  /** @example 2 */
13986
14761
  listing_id?: number;
13987
14762
  /** @example completed */
13988
14763
  status?: string;
13989
14764
  scheduled?: {
13990
- /** @example 1981-11-18T00:00:00.000000Z */
14765
+ /** @example 1981-11-16T00:00:00.000000Z */
13991
14766
  start?: string;
13992
- /** @example 1979-12-15T00:00:00.000000Z */
14767
+ /** @example 1979-12-13T00:00:00.000000Z */
13993
14768
  end?: string;
13994
14769
  };
13995
- /** @example 2026-04-22T11:59:52.000000Z */
14770
+ /** @example 2026-04-24T14:12:49.000000Z */
13996
14771
  created_at?: string;
13997
14772
  };
13998
14773
  };
@@ -14019,19 +14794,19 @@ export interface operations {
14019
14794
  content: {
14020
14795
  "application/json": {
14021
14796
  data?: {
14022
- /** @example 133 */
14797
+ /** @example 161 */
14023
14798
  id?: number;
14024
14799
  /** @example 2 */
14025
14800
  listing_id?: number;
14026
14801
  /** @example completed */
14027
14802
  status?: string;
14028
14803
  scheduled?: {
14029
- /** @example 1981-11-18T00:00:00.000000Z */
14804
+ /** @example 1981-11-16T00:00:00.000000Z */
14030
14805
  start?: string;
14031
- /** @example 1979-12-15T00:00:00.000000Z */
14806
+ /** @example 1979-12-13T00:00:00.000000Z */
14032
14807
  end?: string;
14033
14808
  };
14034
- /** @example 2026-04-22T11:59:52.000000Z */
14809
+ /** @example 2026-04-24T14:12:49.000000Z */
14035
14810
  created_at?: string;
14036
14811
  };
14037
14812
  };
@@ -14990,7 +15765,15 @@ export interface operations {
14990
15765
  * "id": 12,
14991
15766
  * "name": "Inspector Jane Doe"
14992
15767
  * },
14993
- * "media": [],
15768
+ * "media": [
15769
+ * {
15770
+ * "uid": "ism_34fda1",
15771
+ * "file_type": "image/jpeg",
15772
+ * "caption": "Kitchen leak evidence",
15773
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
15774
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
15775
+ * }
15776
+ * ],
14994
15777
  * "created_at": "2026-04-01T09:00:00Z",
14995
15778
  * "updated_at": "2026-04-01T09:00:00Z"
14996
15779
  * }
@@ -15019,8 +15802,29 @@ export interface operations {
15019
15802
  /** @example Inspector Jane Doe */
15020
15803
  name?: string;
15021
15804
  };
15022
- /** @example [] */
15023
- media?: unknown[];
15805
+ /**
15806
+ * @example [
15807
+ * {
15808
+ * "uid": "ism_34fda1",
15809
+ * "file_type": "image/jpeg",
15810
+ * "caption": "Kitchen leak evidence",
15811
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
15812
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
15813
+ * }
15814
+ * ]
15815
+ */
15816
+ media?: {
15817
+ /** @example ism_34fda1 */
15818
+ uid?: string;
15819
+ /** @example image/jpeg */
15820
+ file_type?: string;
15821
+ /** @example Kitchen leak evidence */
15822
+ caption?: string;
15823
+ /** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
15824
+ path?: string;
15825
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
15826
+ url?: string;
15827
+ }[];
15024
15828
  /** @example 2026-04-01T09:00:00Z */
15025
15829
  created_at?: string;
15026
15830
  /** @example 2026-04-01T09:00:00Z */
@@ -15102,7 +15906,7 @@ export interface operations {
15102
15906
  content: {
15103
15907
  "application/json": {
15104
15908
  data?: {
15105
- /** @example 9d682c99-3cba-49d9-b57c-08404823514d */
15909
+ /** @example bd2ea985-4eea-446b-93e8-32b72ee9bc0e */
15106
15910
  uid?: string;
15107
15911
  /** @example Ms. Audra Crooks II */
15108
15912
  username?: string;
@@ -15132,7 +15936,7 @@ export interface operations {
15132
15936
  timezone?: string;
15133
15937
  /** @example Customer */
15134
15938
  user_type?: string;
15135
- /** @example 22 Apr 2026, 11:59 AM */
15939
+ /** @example 24 Apr 2026, 02:12 PM */
15136
15940
  created?: string;
15137
15941
  /** @example 1 second ago */
15138
15942
  email_verified_at?: string;
@@ -15601,7 +16405,7 @@ export interface operations {
15601
16405
  content: {
15602
16406
  "application/json": {
15603
16407
  data?: {
15604
- /** @example 4cd268ae-8b2b-4a52-bea8-76e83ac86693 */
16408
+ /** @example 6245fa24-b0da-41e1-afb5-646cab656814 */
15605
16409
  uid?: string;
15606
16410
  /** @example Ms. Audra Crooks II */
15607
16411
  username?: string;
@@ -15631,7 +16435,7 @@ export interface operations {
15631
16435
  timezone?: string;
15632
16436
  /** @example Customer */
15633
16437
  user_type?: string;
15634
- /** @example 22 Apr 2026, 11:59 AM */
16438
+ /** @example 24 Apr 2026, 02:12 PM */
15635
16439
  created?: string;
15636
16440
  /** @example 0 seconds ago */
15637
16441
  email_verified_at?: string;
@@ -15752,11 +16556,11 @@ export interface operations {
15752
16556
  content: {
15753
16557
  "application/json": {
15754
16558
  data?: {
15755
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
16559
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
15756
16560
  draft_name?: string;
15757
- /** @example LST-PRP-LTR-MOA031U0LYI */
16561
+ /** @example LST-PRP-LTR-MOCZPR2F77X */
15758
16562
  sku?: string;
15759
- /** @example 82640a06-e6d9-4c2c-88f6-7b5d04c1ab6e */
16563
+ /** @example 9ded09cb-1406-41fe-b895-ece654f2f3b8 */
15760
16564
  uid?: string;
15761
16565
  /** @example Rent */
15762
16566
  listing_type?: string;
@@ -15880,9 +16684,9 @@ export interface operations {
15880
16684
  /**
15881
16685
  * @example [
15882
16686
  * {
15883
- * "draft_name": "New For Rent Property draft • 22 Apr 2026, 11:59 AM",
15884
- * "sku": "LST-PRP-LTR-MOA031VOJ5C",
15885
- * "uid": "0f6cc50c-ba85-4dd1-8bbf-b74a7bafa2f8",
16687
+ * "draft_name": "New For Rent Property draft • 24 Apr 2026, 2:12 PM",
16688
+ * "sku": "LST-PRP-LTR-MOCZPR2VBXO",
16689
+ * "uid": "90fa3485-cfae-4a4c-ae9a-d66386ea37d7",
15886
16690
  * "listing_type": "Rent",
15887
16691
  * "vertical": "Property",
15888
16692
  * "arrangement_type": "let_to_let",
@@ -15899,9 +16703,9 @@ export interface operations {
15899
16703
  * "media": []
15900
16704
  * },
15901
16705
  * {
15902
- * "draft_name": "New Short Let Property draft • 22 Apr 2026, 11:59 AM",
15903
- * "sku": "LST-PRP-SHL-MOA031VQURZ",
15904
- * "uid": "a5da0f34-7a6c-4473-87c4-55b7b46c205d",
16706
+ * "draft_name": "New Short Let Property draft • 24 Apr 2026, 2:12 PM",
16707
+ * "sku": "LST-PRP-SHL-MOCZPR2XB44",
16708
+ * "uid": "b18b8a04-a840-4503-864a-947c061fe566",
15905
16709
  * "listing_type": "Short Let",
15906
16710
  * "vertical": "Property",
15907
16711
  * "arrangement_type": "short_term_managed",
@@ -15920,11 +16724,11 @@ export interface operations {
15920
16724
  * ]
15921
16725
  */
15922
16726
  data?: {
15923
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
16727
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
15924
16728
  draft_name?: string;
15925
- /** @example LST-PRP-LTR-MOA031VOJ5C */
16729
+ /** @example LST-PRP-LTR-MOCZPR2VBXO */
15926
16730
  sku?: string;
15927
- /** @example 0f6cc50c-ba85-4dd1-8bbf-b74a7bafa2f8 */
16731
+ /** @example 90fa3485-cfae-4a4c-ae9a-d66386ea37d7 */
15928
16732
  uid?: string;
15929
16733
  /** @example Rent */
15930
16734
  listing_type?: string;
@@ -16034,9 +16838,9 @@ export interface operations {
16034
16838
  /**
16035
16839
  * @example [
16036
16840
  * {
16037
- * "draft_name": "New For Rent Property draft • 22 Apr 2026, 11:59 AM",
16038
- * "sku": "LST-PRP-LTR-MOA031VZVN1",
16039
- * "uid": "b3e87bd9-3c98-43f1-8800-e18346478756",
16841
+ * "draft_name": "New For Rent Property draft • 24 Apr 2026, 2:12 PM",
16842
+ * "sku": "LST-PRP-LTR-MOCZPR350GJ",
16843
+ * "uid": "ddd42796-f118-46ec-b306-02cf0f7a3223",
16040
16844
  * "listing_type": "Rent",
16041
16845
  * "vertical": "Property",
16042
16846
  * "arrangement_type": "let_to_let",
@@ -16053,9 +16857,9 @@ export interface operations {
16053
16857
  * "media": []
16054
16858
  * },
16055
16859
  * {
16056
- * "draft_name": "New Short Let Property draft • 22 Apr 2026, 11:59 AM",
16057
- * "sku": "LST-PRP-SHL-MOA031W1ZXB",
16058
- * "uid": "c0eb6b43-8270-4e35-9f0e-dfb3ab103300",
16860
+ * "draft_name": "New Short Let Property draft • 24 Apr 2026, 2:12 PM",
16861
+ * "sku": "LST-PRP-SHL-MOCZPR3748B",
16862
+ * "uid": "4e13cdb3-0e1f-43e9-a3ad-d272d39fde6d",
16059
16863
  * "listing_type": "Short Let",
16060
16864
  * "vertical": "Property",
16061
16865
  * "arrangement_type": "short_term_managed",
@@ -16074,11 +16878,11 @@ export interface operations {
16074
16878
  * ]
16075
16879
  */
16076
16880
  data?: {
16077
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
16881
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
16078
16882
  draft_name?: string;
16079
- /** @example LST-PRP-LTR-MOA031VZVN1 */
16883
+ /** @example LST-PRP-LTR-MOCZPR350GJ */
16080
16884
  sku?: string;
16081
- /** @example b3e87bd9-3c98-43f1-8800-e18346478756 */
16885
+ /** @example ddd42796-f118-46ec-b306-02cf0f7a3223 */
16082
16886
  uid?: string;
16083
16887
  /** @example Rent */
16084
16888
  listing_type?: string;
@@ -17142,7 +17946,7 @@ export interface operations {
17142
17946
  content: {
17143
17947
  "application/json": {
17144
17948
  data?: {
17145
- /** @example a7e1e146-e815-4ecd-a422-0950502466ca */
17949
+ /** @example ba9eb1a9-ff7b-475a-a2fe-715650a9800a */
17146
17950
  uid?: string;
17147
17951
  /** @example photo */
17148
17952
  media_type?: string;
@@ -17291,11 +18095,11 @@ export interface operations {
17291
18095
  content: {
17292
18096
  "application/json": {
17293
18097
  data?: {
17294
- /** @example New For Rent Property draft • 22 Apr 2026, 11:59 AM */
18098
+ /** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
17295
18099
  draft_name?: string;
17296
- /** @example LST-PRP-LTR-MOA031YQHB3 */
18100
+ /** @example LST-PRP-LTR-MOCZPR542CD */
17297
18101
  sku?: string;
17298
- /** @example 4128ee3f-a900-47ce-87ff-6ea9a0e9b810 */
18102
+ /** @example 79752a30-dc3b-47a4-ba4b-becdf27c853a */
17299
18103
  uid?: string;
17300
18104
  /** @example Rent */
17301
18105
  listing_type?: string;
@@ -17455,7 +18259,7 @@ export interface operations {
17455
18259
  content: {
17456
18260
  "application/json": {
17457
18261
  data?: {
17458
- /** @example 9dd090f7-e442-43f2-840d-7b1aa6f3d1a3 */
18262
+ /** @example d4784d4d-6548-4d2d-ba4a-bb5ddce8f322 */
17459
18263
  uid?: string;
17460
18264
  /** @example null */
17461
18265
  compliances?: string | null;
@@ -17506,7 +18310,7 @@ export interface operations {
17506
18310
  content: {
17507
18311
  "application/json": {
17508
18312
  data?: {
17509
- /** @example 102 */
18313
+ /** @example 108 */
17510
18314
  id?: number;
17511
18315
  compliance?: {
17512
18316
  /** @example 1 */
@@ -17528,7 +18332,7 @@ export interface operations {
17528
18332
  reviewed_by?: number;
17529
18333
  /** @example null */
17530
18334
  reviewed_at?: string | null;
17531
- /** @example 2026-04-22T11:59:50.000000Z */
18335
+ /** @example 2026-04-24T14:12:48.000000Z */
17532
18336
  created_at?: string;
17533
18337
  };
17534
18338
  };
@@ -17583,39 +18387,39 @@ export interface operations {
17583
18387
  /**
17584
18388
  * @example [
17585
18389
  * {
17586
- * "uid": "b99f6bad-f1d4-49b5-8906-5a8d2edce747",
18390
+ * "uid": "1986f693-59eb-4756-98ea-c5b492c5764f",
17587
18391
  * "listing_id": 1,
17588
18392
  * "landlord_id": 2,
17589
18393
  * "tenant_id": 2,
17590
18394
  * "rent_amount": "4881.50",
17591
18395
  * "deposit_amount": "2151.17",
17592
18396
  * "state": "offer_accepted",
17593
- * "start_date": "2025-10-28T00:00:00.000000Z",
17594
- * "end_date": "2026-10-28T00:00:00.000000Z",
18397
+ * "start_date": "2025-10-30T00:00:00.000000Z",
18398
+ * "end_date": "2026-10-30T00:00:00.000000Z",
17595
18399
  * "is_periodic": false,
17596
18400
  * "company_name": null,
17597
18401
  * "company_registration_number": null,
17598
- * "created_at": "2026-04-22T11:59:50.000000Z"
18402
+ * "created_at": "2026-04-24T14:12:48.000000Z"
17599
18403
  * },
17600
18404
  * {
17601
- * "uid": "db8c6fe8-cf44-46d2-8c2b-7c4962018a3e",
18405
+ * "uid": "49092639-dfc8-4395-bbcd-176d25912437",
17602
18406
  * "listing_id": 1,
17603
18407
  * "landlord_id": 2,
17604
18408
  * "tenant_id": 2,
17605
18409
  * "rent_amount": "3832.26",
17606
18410
  * "deposit_amount": "1384.27",
17607
18411
  * "state": "terminated",
17608
- * "start_date": "2025-09-22T00:00:00.000000Z",
17609
- * "end_date": "2026-09-22T00:00:00.000000Z",
18412
+ * "start_date": "2025-09-25T00:00:00.000000Z",
18413
+ * "end_date": "2026-09-25T00:00:00.000000Z",
17610
18414
  * "is_periodic": false,
17611
18415
  * "company_name": null,
17612
18416
  * "company_registration_number": null,
17613
- * "created_at": "2026-04-22T11:59:50.000000Z"
18417
+ * "created_at": "2026-04-24T14:12:48.000000Z"
17614
18418
  * }
17615
18419
  * ]
17616
18420
  */
17617
18421
  data?: {
17618
- /** @example b99f6bad-f1d4-49b5-8906-5a8d2edce747 */
18422
+ /** @example 1986f693-59eb-4756-98ea-c5b492c5764f */
17619
18423
  uid?: string;
17620
18424
  /** @example 1 */
17621
18425
  listing_id?: number;
@@ -17629,9 +18433,9 @@ export interface operations {
17629
18433
  deposit_amount?: string;
17630
18434
  /** @example offer_accepted */
17631
18435
  state?: string;
17632
- /** @example 2025-10-28T00:00:00.000000Z */
18436
+ /** @example 2025-10-30T00:00:00.000000Z */
17633
18437
  start_date?: string;
17634
- /** @example 2026-10-28T00:00:00.000000Z */
18438
+ /** @example 2026-10-30T00:00:00.000000Z */
17635
18439
  end_date?: string;
17636
18440
  /** @example false */
17637
18441
  is_periodic?: boolean;
@@ -17639,7 +18443,7 @@ export interface operations {
17639
18443
  company_name?: string | null;
17640
18444
  /** @example null */
17641
18445
  company_registration_number?: string | null;
17642
- /** @example 2026-04-22T11:59:50.000000Z */
18446
+ /** @example 2026-04-24T14:12:48.000000Z */
17643
18447
  created_at?: string;
17644
18448
  }[];
17645
18449
  links?: {
@@ -17726,39 +18530,39 @@ export interface operations {
17726
18530
  /**
17727
18531
  * @example [
17728
18532
  * {
17729
- * "uid": "10c15308-7647-4109-b7fd-47d79c084363",
18533
+ * "uid": "358abb70-50eb-4667-b5fe-319960fe4ce4",
17730
18534
  * "listing_id": 1,
17731
18535
  * "landlord_id": 2,
17732
18536
  * "tenant_id": 2,
17733
18537
  * "rent_amount": "4881.50",
17734
18538
  * "deposit_amount": "2151.17",
17735
18539
  * "state": "offer_accepted",
17736
- * "start_date": "2025-10-28T00:00:00.000000Z",
17737
- * "end_date": "2026-10-28T00:00:00.000000Z",
18540
+ * "start_date": "2025-10-30T00:00:00.000000Z",
18541
+ * "end_date": "2026-10-30T00:00:00.000000Z",
17738
18542
  * "is_periodic": false,
17739
18543
  * "company_name": null,
17740
18544
  * "company_registration_number": null,
17741
- * "created_at": "2026-04-22T11:59:50.000000Z"
18545
+ * "created_at": "2026-04-24T14:12:48.000000Z"
17742
18546
  * },
17743
18547
  * {
17744
- * "uid": "b98aa694-f4ac-4141-acfb-a37c8071732a",
18548
+ * "uid": "bdd0a2e5-9397-44f7-acf5-913afba2a9a2",
17745
18549
  * "listing_id": 1,
17746
18550
  * "landlord_id": 2,
17747
18551
  * "tenant_id": 2,
17748
18552
  * "rent_amount": "3832.26",
17749
18553
  * "deposit_amount": "1384.27",
17750
18554
  * "state": "terminated",
17751
- * "start_date": "2025-09-22T00:00:00.000000Z",
17752
- * "end_date": "2026-09-22T00:00:00.000000Z",
18555
+ * "start_date": "2025-09-25T00:00:00.000000Z",
18556
+ * "end_date": "2026-09-25T00:00:00.000000Z",
17753
18557
  * "is_periodic": false,
17754
18558
  * "company_name": null,
17755
18559
  * "company_registration_number": null,
17756
- * "created_at": "2026-04-22T11:59:50.000000Z"
18560
+ * "created_at": "2026-04-24T14:12:48.000000Z"
17757
18561
  * }
17758
18562
  * ]
17759
18563
  */
17760
18564
  data?: {
17761
- /** @example 10c15308-7647-4109-b7fd-47d79c084363 */
18565
+ /** @example 358abb70-50eb-4667-b5fe-319960fe4ce4 */
17762
18566
  uid?: string;
17763
18567
  /** @example 1 */
17764
18568
  listing_id?: number;
@@ -17772,9 +18576,9 @@ export interface operations {
17772
18576
  deposit_amount?: string;
17773
18577
  /** @example offer_accepted */
17774
18578
  state?: string;
17775
- /** @example 2025-10-28T00:00:00.000000Z */
18579
+ /** @example 2025-10-30T00:00:00.000000Z */
17776
18580
  start_date?: string;
17777
- /** @example 2026-10-28T00:00:00.000000Z */
18581
+ /** @example 2026-10-30T00:00:00.000000Z */
17778
18582
  end_date?: string;
17779
18583
  /** @example false */
17780
18584
  is_periodic?: boolean;
@@ -17782,7 +18586,7 @@ export interface operations {
17782
18586
  company_name?: string | null;
17783
18587
  /** @example null */
17784
18588
  company_registration_number?: string | null;
17785
- /** @example 2026-04-22T11:59:50.000000Z */
18589
+ /** @example 2026-04-24T14:12:48.000000Z */
17786
18590
  created_at?: string;
17787
18591
  }[];
17788
18592
  links?: {
@@ -17889,7 +18693,7 @@ export interface operations {
17889
18693
  content: {
17890
18694
  "application/json": {
17891
18695
  data?: {
17892
- /** @example 123 */
18696
+ /** @example 135 */
17893
18697
  id?: number;
17894
18698
  compliance?: {
17895
18699
  /** @example 1 */
@@ -17909,9 +18713,9 @@ export interface operations {
17909
18713
  rejection_reason?: string | null;
17910
18714
  /** @example 1 */
17911
18715
  reviewed_by?: number;
17912
- /** @example 2026-04-22T11:59:50.000000Z */
18716
+ /** @example 2026-04-24T14:12:48.000000Z */
17913
18717
  reviewed_at?: string;
17914
- /** @example 2026-04-22T11:59:50.000000Z */
18718
+ /** @example 2026-04-24T14:12:48.000000Z */
17915
18719
  created_at?: string;
17916
18720
  };
17917
18721
  };
@@ -17938,7 +18742,7 @@ export interface operations {
17938
18742
  content: {
17939
18743
  "application/json": {
17940
18744
  data?: {
17941
- /** @example 124 */
18745
+ /** @example 136 */
17942
18746
  id?: number;
17943
18747
  compliance?: {
17944
18748
  /** @example 1 */
@@ -17958,9 +18762,9 @@ export interface operations {
17958
18762
  rejection_reason?: string | null;
17959
18763
  /** @example 1 */
17960
18764
  reviewed_by?: number;
17961
- /** @example 2026-04-22T11:59:50.000000Z */
18765
+ /** @example 2026-04-24T14:12:48.000000Z */
17962
18766
  reviewed_at?: string;
17963
- /** @example 2026-04-22T11:59:50.000000Z */
18767
+ /** @example 2026-04-24T14:12:48.000000Z */
17964
18768
  created_at?: string;
17965
18769
  };
17966
18770
  };
@@ -18413,7 +19217,7 @@ export interface operations {
18413
19217
  sku?: string;
18414
19218
  /** @example 09 Apr 2026, 11:14 AM */
18415
19219
  published_at?: string;
18416
- /** @example 1 week ago */
19220
+ /** @example 2 weeks ago */
18417
19221
  published_since?: string;
18418
19222
  details?: {
18419
19223
  /** @example New Benin */
@@ -18814,6 +19618,54 @@ export interface operations {
18814
19618
  };
18815
19619
  };
18816
19620
  };
19621
+ addMaintenanceUpdateAdmin: {
19622
+ parameters: {
19623
+ query?: never;
19624
+ header?: never;
19625
+ path: {
19626
+ uid: string;
19627
+ /** @description The UID of the maintenance request. */
19628
+ maintenance_uid: string;
19629
+ };
19630
+ cookie?: never;
19631
+ };
19632
+ requestBody: {
19633
+ content: {
19634
+ "application/json": {
19635
+ /**
19636
+ * @description Update note for the maintenance request. Must not be greater than 2000 characters.
19637
+ * @example b
19638
+ */
19639
+ note: string;
19640
+ };
19641
+ };
19642
+ };
19643
+ responses: {
19644
+ 200: {
19645
+ headers: {
19646
+ [name: string]: unknown;
19647
+ };
19648
+ content: {
19649
+ "application/json": {
19650
+ data?: {
19651
+ /** @example 0dd08e9c-2b6f-4c31-acea-399984c1f537 */
19652
+ uid?: string;
19653
+ /** @example Accusantium aut suscipit ea suscipit illo ea doloribus neque. */
19654
+ note?: string;
19655
+ user?: {
19656
+ /** @example 20 */
19657
+ id?: number;
19658
+ /** @example Suzanne Morgan */
19659
+ name?: string;
19660
+ };
19661
+ /** @example 2026-04-18 03:00:21 */
19662
+ created_at?: string;
19663
+ };
19664
+ };
19665
+ };
19666
+ };
19667
+ };
19668
+ };
18817
19669
  listingHistoryMaintenance: {
18818
19670
  parameters: {
18819
19671
  query?: {
@@ -18864,8 +19716,26 @@ export interface operations {
18864
19716
  * "name": "Jane Doe"
18865
19717
  * },
18866
19718
  * "technician": null,
18867
- * "updates": [],
18868
- * "attachments": [],
19719
+ * "updates": [
19720
+ * {
19721
+ * "id": 1,
19722
+ * "note": "Inspection visit scheduled.",
19723
+ * "created_at": "2026-04-01T09:30:00Z",
19724
+ * "updated_at": "2026-04-01T09:30:00Z"
19725
+ * }
19726
+ * ],
19727
+ * "attachments": [
19728
+ * {
19729
+ * "uid": "mnt_34fda1",
19730
+ * "file_type": "image/jpeg",
19731
+ * "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
19732
+ * "uploaded_by": {
19733
+ * "id": 12,
19734
+ * "name": "Inspector Jane Doe"
19735
+ * },
19736
+ * "created_at": "2026-04-01T09:15:00Z"
19737
+ * }
19738
+ * ],
18869
19739
  * "created_at": "2026-04-01T10:00:00Z",
18870
19740
  * "updated_at": "2026-04-01T10:00:00Z"
18871
19741
  * }
@@ -18904,10 +19774,56 @@ export interface operations {
18904
19774
  };
18905
19775
  /** @example null */
18906
19776
  technician?: string | null;
18907
- /** @example [] */
18908
- updates?: unknown[];
18909
- /** @example [] */
18910
- attachments?: unknown[];
19777
+ /**
19778
+ * @example [
19779
+ * {
19780
+ * "id": 1,
19781
+ * "note": "Inspection visit scheduled.",
19782
+ * "created_at": "2026-04-01T09:30:00Z",
19783
+ * "updated_at": "2026-04-01T09:30:00Z"
19784
+ * }
19785
+ * ]
19786
+ */
19787
+ updates?: {
19788
+ /** @example 1 */
19789
+ id?: number;
19790
+ /** @example Inspection visit scheduled. */
19791
+ note?: string;
19792
+ /** @example 2026-04-01T09:30:00Z */
19793
+ created_at?: string;
19794
+ /** @example 2026-04-01T09:30:00Z */
19795
+ updated_at?: string;
19796
+ }[];
19797
+ /**
19798
+ * @example [
19799
+ * {
19800
+ * "uid": "mnt_34fda1",
19801
+ * "file_type": "image/jpeg",
19802
+ * "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
19803
+ * "uploaded_by": {
19804
+ * "id": 12,
19805
+ * "name": "Inspector Jane Doe"
19806
+ * },
19807
+ * "created_at": "2026-04-01T09:15:00Z"
19808
+ * }
19809
+ * ]
19810
+ */
19811
+ attachments?: {
19812
+ /** @example mnt_34fda1 */
19813
+ uid?: string;
19814
+ /** @example image/jpeg */
19815
+ file_type?: string;
19816
+ /** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
19817
+ url?: string;
19818
+ uploaded_by?: {
19819
+ /** @example 12 */
19820
+ id?: number;
19821
+ /** @example Inspector Jane Doe */
19822
+ name?: string;
19823
+ };
19824
+ /** @example 2026-04-01T09:15:00Z */
19825
+ created_at?: string;
19826
+ }[];
18911
19827
  /** @example 2026-04-01T10:00:00Z */
18912
19828
  created_at?: string;
18913
19829
  /** @example 2026-04-01T10:00:00Z */
@@ -18982,35 +19898,35 @@ export interface operations {
18982
19898
  /**
18983
19899
  * @example [
18984
19900
  * {
18985
- * "uid": "a88fe51f-586c-4160-acc8-4dbc7b12d8fd",
19901
+ * "uid": "cd48a837-1477-4d5c-a8bb-e4ffcf8de5dd",
18986
19902
  * "title": "Quos velit et fugiat sunt nihil.",
18987
19903
  * "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.",
18988
19904
  * "status": "reported",
18989
19905
  * "priority": "emergency",
18990
- * "reported_at": "2026-04-15T23:13:27.000000Z",
18991
- * "assigned_at": "2026-04-20T19:33:19.000000Z",
19906
+ * "reported_at": "18 Apr 2026, 01:26 AM",
19907
+ * "assigned_at": "22 Apr 2026, 09:46 PM",
18992
19908
  * "completed_at": null,
18993
- * "sla_deadline": "2026-04-24T00:55:42.000000Z",
18994
- * "created_at": "2026-04-22T11:59:52.000000Z",
18995
- * "updated_at": "2026-04-22T11:59:52.000000Z"
19909
+ * "sla_deadline": "26 Apr 2026, 03:08 AM",
19910
+ * "created_at": "24 Apr 2026, 02:12 PM",
19911
+ * "updated_at": "24 Apr 2026, 02:12 PM"
18996
19912
  * },
18997
19913
  * {
18998
- * "uid": "07c1e0b2-bc7c-4f83-a373-aeb038e68bdd",
19914
+ * "uid": "877b08b8-e469-4297-a16a-e1d0957d8dcf",
18999
19915
  * "title": "Fugit deleniti distinctio eum doloremque.",
19000
19916
  * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
19001
19917
  * "status": "completed",
19002
19918
  * "priority": "normal",
19003
- * "reported_at": "2026-04-18T11:51:52.000000Z",
19919
+ * "reported_at": "20 Apr 2026, 02:04 PM",
19004
19920
  * "assigned_at": null,
19005
19921
  * "completed_at": null,
19006
- * "sla_deadline": "2026-04-25T08:55:39.000000Z",
19007
- * "created_at": "2026-04-22T11:59:52.000000Z",
19008
- * "updated_at": "2026-04-22T11:59:52.000000Z"
19922
+ * "sla_deadline": "27 Apr 2026, 11:08 AM",
19923
+ * "created_at": "24 Apr 2026, 02:12 PM",
19924
+ * "updated_at": "24 Apr 2026, 02:12 PM"
19009
19925
  * }
19010
19926
  * ]
19011
19927
  */
19012
19928
  data?: {
19013
- /** @example a88fe51f-586c-4160-acc8-4dbc7b12d8fd */
19929
+ /** @example cd48a837-1477-4d5c-a8bb-e4ffcf8de5dd */
19014
19930
  uid?: string;
19015
19931
  /** @example Quos velit et fugiat sunt nihil. */
19016
19932
  title?: string;
@@ -19020,17 +19936,17 @@ export interface operations {
19020
19936
  status?: string;
19021
19937
  /** @example emergency */
19022
19938
  priority?: string;
19023
- /** @example 2026-04-15T23:13:27.000000Z */
19939
+ /** @example 18 Apr 2026, 01:26 AM */
19024
19940
  reported_at?: string;
19025
- /** @example 2026-04-20T19:33:19.000000Z */
19941
+ /** @example 22 Apr 2026, 09:46 PM */
19026
19942
  assigned_at?: string;
19027
19943
  /** @example null */
19028
19944
  completed_at?: string | null;
19029
- /** @example 2026-04-24T00:55:42.000000Z */
19945
+ /** @example 26 Apr 2026, 03:08 AM */
19030
19946
  sla_deadline?: string;
19031
- /** @example 2026-04-22T11:59:52.000000Z */
19947
+ /** @example 24 Apr 2026, 02:12 PM */
19032
19948
  created_at?: string;
19033
- /** @example 2026-04-22T11:59:52.000000Z */
19949
+ /** @example 24 Apr 2026, 02:12 PM */
19034
19950
  updated_at?: string;
19035
19951
  }[];
19036
19952
  links?: {
@@ -19124,14 +20040,35 @@ export interface operations {
19124
20040
  };
19125
20041
  content: {
19126
20042
  "application/json": {
20043
+ /** @example Attachment added */
20044
+ message?: string;
20045
+ /** @example null */
20046
+ event?: string | null;
20047
+ data?: {
20048
+ /** @example mnt_34fda1 */
20049
+ uid?: string;
20050
+ /** @example image/jpeg */
20051
+ file_type?: string;
20052
+ /** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
20053
+ url?: string;
20054
+ uploaded_by?: {
20055
+ /** @example 12 */
20056
+ id?: number;
20057
+ /** @example Inspector Jane Doe */
20058
+ name?: string;
20059
+ };
20060
+ /** @example 2026-04-01T09:15:00Z */
20061
+ created_at?: string;
20062
+ };
20063
+ } | {
19127
20064
  data?: {
19128
- /** @example e357d858-a10c-4eb2-ac82-7afe601c67dc */
20065
+ /** @example 10192309-1811-4af1-8129-db8e19a04fe9 */
19129
20066
  uid?: string;
19130
20067
  /** @example image */
19131
20068
  file_type?: string;
19132
- /** @example /storage/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
20069
+ /** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
19133
20070
  url?: string;
19134
- /** @example 2026-04-22T11:59:52.000000Z */
20071
+ /** @example 2026-04-24T14:12:49.000000Z */
19135
20072
  created_at?: string;
19136
20073
  };
19137
20074
  };
@@ -19176,7 +20113,7 @@ export interface operations {
19176
20113
  content: {
19177
20114
  "application/json": {
19178
20115
  data?: {
19179
- /** @example 55 */
20116
+ /** @example 67 */
19180
20117
  id?: number;
19181
20118
  /** @example property_inquiry */
19182
20119
  type?: string;
@@ -19184,7 +20121,7 @@ export interface operations {
19184
20121
  listing_id?: number;
19185
20122
  /** @example null */
19186
20123
  last_message_at?: string | null;
19187
- /** @example 2026-04-22T11:59:52.000000Z */
20124
+ /** @example 2026-04-24T14:12:49.000000Z */
19188
20125
  created_at?: string;
19189
20126
  };
19190
20127
  };
@@ -19210,23 +20147,23 @@ export interface operations {
19210
20147
  /**
19211
20148
  * @example [
19212
20149
  * {
19213
- * "id": 56,
20150
+ * "id": 68,
19214
20151
  * "type": "property_inquiry",
19215
20152
  * "listing_id": 2,
19216
20153
  * "last_message_at": null,
19217
- * "created_at": "2026-04-22T11:59:52.000000Z"
20154
+ * "created_at": "2026-04-24T14:12:49.000000Z"
19218
20155
  * },
19219
20156
  * {
19220
- * "id": 57,
20157
+ * "id": 69,
19221
20158
  * "type": "property_inquiry",
19222
20159
  * "listing_id": 2,
19223
20160
  * "last_message_at": null,
19224
- * "created_at": "2026-04-22T11:59:52.000000Z"
20161
+ * "created_at": "2026-04-24T14:12:49.000000Z"
19225
20162
  * }
19226
20163
  * ]
19227
20164
  */
19228
20165
  data?: {
19229
- /** @example 56 */
20166
+ /** @example 68 */
19230
20167
  id?: number;
19231
20168
  /** @example property_inquiry */
19232
20169
  type?: string;
@@ -19234,7 +20171,7 @@ export interface operations {
19234
20171
  listing_id?: number;
19235
20172
  /** @example null */
19236
20173
  last_message_at?: string | null;
19237
- /** @example 2026-04-22T11:59:52.000000Z */
20174
+ /** @example 2026-04-24T14:12:49.000000Z */
19238
20175
  created_at?: string;
19239
20176
  }[];
19240
20177
  links?: {
@@ -19552,27 +20489,27 @@ export interface operations {
19552
20489
  /**
19553
20490
  * @example [
19554
20491
  * {
19555
- * "id": "c6eed2c2-22b0-48b3-9c1e-9e42f8a7bd52",
20492
+ * "id": "996adce2-eb3a-4db4-8a22-0eb4c66cc067",
19556
20493
  * "type": "APPOINTMENT_CREATED",
19557
20494
  * "title": "faker notification",
19558
20495
  * "body": "faker notification body",
19559
20496
  * "data": [],
19560
20497
  * "read_at": null,
19561
- * "created_at": "2026-04-22T11:59:52.000000Z"
20498
+ * "created_at": "2026-04-24T14:12:49.000000Z"
19562
20499
  * },
19563
20500
  * {
19564
- * "id": "434a07ab-ae8b-471a-8a32-5aff410b03ad",
20501
+ * "id": "66fdbe08-0d26-40a7-82f8-502c04758d18",
19565
20502
  * "type": "APPOINTMENT_CREATED",
19566
20503
  * "title": "faker notification",
19567
20504
  * "body": "faker notification body",
19568
20505
  * "data": [],
19569
20506
  * "read_at": null,
19570
- * "created_at": "2026-04-22T11:59:52.000000Z"
20507
+ * "created_at": "2026-04-24T14:12:49.000000Z"
19571
20508
  * }
19572
20509
  * ]
19573
20510
  */
19574
20511
  data?: {
19575
- /** @example c6eed2c2-22b0-48b3-9c1e-9e42f8a7bd52 */
20512
+ /** @example 996adce2-eb3a-4db4-8a22-0eb4c66cc067 */
19576
20513
  id?: string;
19577
20514
  /** @example APPOINTMENT_CREATED */
19578
20515
  type?: string;
@@ -19584,7 +20521,7 @@ export interface operations {
19584
20521
  data?: unknown[];
19585
20522
  /** @example null */
19586
20523
  read_at?: string | null;
19587
- /** @example 2026-04-22T11:59:52.000000Z */
20524
+ /** @example 2026-04-24T14:12:49.000000Z */
19588
20525
  created_at?: string;
19589
20526
  }[];
19590
20527
  links?: {
@@ -19668,7 +20605,7 @@ export interface operations {
19668
20605
  };
19669
20606
  content: {
19670
20607
  "application/json": {
19671
- /** @example d88ee531-c849-43f9-8f71-3f67f9de96b7 */
20608
+ /** @example 03561274-fe3c-4cf5-bc77-17b20d3dc613 */
19672
20609
  id?: string;
19673
20610
  /** @example APPOINTMENT_CREATED */
19674
20611
  type?: string;
@@ -19680,7 +20617,7 @@ export interface operations {
19680
20617
  data?: unknown[];
19681
20618
  /** @example null */
19682
20619
  read_at?: string | null;
19683
- /** @example 2026-04-22T11:59:52.000000Z */
20620
+ /** @example 2026-04-24T14:12:49.000000Z */
19684
20621
  created_at?: string;
19685
20622
  };
19686
20623
  };
@@ -19929,31 +20866,31 @@ export interface operations {
19929
20866
  /**
19930
20867
  * @example [
19931
20868
  * {
19932
- * "id": 109,
20869
+ * "id": 133,
19933
20870
  * "rating": 1,
19934
20871
  * "comment": "Nice Listing",
19935
20872
  * "reviewer": {
19936
20873
  * "id": 17,
19937
20874
  * "name": "Hannah Ross"
19938
20875
  * },
19939
- * "created_at": "2026-04-22T11:59:52+00:00",
19940
- * "updated_at": "2026-04-22T11:59:52+00:00"
20876
+ * "created_at": "2026-04-24T14:12:49+00:00",
20877
+ * "updated_at": "2026-04-24T14:12:49+00:00"
19941
20878
  * },
19942
20879
  * {
19943
- * "id": 110,
20880
+ * "id": 134,
19944
20881
  * "rating": 1,
19945
20882
  * "comment": "Nice Listing",
19946
20883
  * "reviewer": {
19947
- * "id": 2,
19948
- * "name": "dogunfx"
20884
+ * "id": 21,
20885
+ * "name": "Isla Simpson"
19949
20886
  * },
19950
- * "created_at": "2026-04-22T11:59:52+00:00",
19951
- * "updated_at": "2026-04-22T11:59:52+00:00"
20887
+ * "created_at": "2026-04-24T14:12:49+00:00",
20888
+ * "updated_at": "2026-04-24T14:12:49+00:00"
19952
20889
  * }
19953
20890
  * ]
19954
20891
  */
19955
20892
  data?: {
19956
- /** @example 109 */
20893
+ /** @example 133 */
19957
20894
  id?: number;
19958
20895
  /** @example 1 */
19959
20896
  rating?: number;
@@ -19965,9 +20902,9 @@ export interface operations {
19965
20902
  /** @example Hannah Ross */
19966
20903
  name?: string;
19967
20904
  };
19968
- /** @example 2026-04-22T11:59:52+00:00 */
20905
+ /** @example 2026-04-24T14:12:49+00:00 */
19969
20906
  created_at?: string;
19970
- /** @example 2026-04-22T11:59:52+00:00 */
20907
+ /** @example 2026-04-24T14:12:49+00:00 */
19971
20908
  updated_at?: string;
19972
20909
  }[];
19973
20910
  links?: {
@@ -20121,21 +21058,21 @@ export interface operations {
20121
21058
  content: {
20122
21059
  "application/json": {
20123
21060
  data?: {
20124
- /** @example 111 */
21061
+ /** @example 135 */
20125
21062
  id?: number;
20126
21063
  /** @example 1 */
20127
21064
  rating?: number;
20128
21065
  /** @example Nice Listing */
20129
21066
  comment?: string;
20130
21067
  reviewer?: {
20131
- /** @example 13 */
21068
+ /** @example 17 */
20132
21069
  id?: number;
20133
- /** @example Matthew Campbell */
21070
+ /** @example Hannah Ross */
20134
21071
  name?: string;
20135
21072
  };
20136
- /** @example 2026-04-22T11:59:52+00:00 */
21073
+ /** @example 2026-04-24T14:12:49+00:00 */
20137
21074
  created_at?: string;
20138
- /** @example 2026-04-22T11:59:52+00:00 */
21075
+ /** @example 2026-04-24T14:12:49+00:00 */
20139
21076
  updated_at?: string;
20140
21077
  };
20141
21078
  };
@@ -20179,21 +21116,21 @@ export interface operations {
20179
21116
  content: {
20180
21117
  "application/json": {
20181
21118
  data?: {
20182
- /** @example 112 */
21119
+ /** @example 136 */
20183
21120
  id?: number;
20184
21121
  /** @example 1 */
20185
21122
  rating?: number;
20186
21123
  /** @example Nice Listing */
20187
21124
  comment?: string;
20188
21125
  reviewer?: {
20189
- /** @example 4 */
21126
+ /** @example 9 */
20190
21127
  id?: number;
20191
- /** @example Lola Holmes */
21128
+ /** @example Dominic Thomas */
20192
21129
  name?: string;
20193
21130
  };
20194
- /** @example 2026-04-22T11:59:52+00:00 */
21131
+ /** @example 2026-04-24T14:12:49+00:00 */
20195
21132
  created_at?: string;
20196
- /** @example 2026-04-22T11:59:52+00:00 */
21133
+ /** @example 2026-04-24T14:12:49+00:00 */
20197
21134
  updated_at?: string;
20198
21135
  };
20199
21136
  };
@@ -20235,7 +21172,7 @@ export interface operations {
20235
21172
  content: {
20236
21173
  "application/json": {
20237
21174
  data?: {
20238
- /** @example 113 */
21175
+ /** @example 137 */
20239
21176
  id?: number;
20240
21177
  /** @example 1 */
20241
21178
  rating?: number;
@@ -20247,9 +21184,9 @@ export interface operations {
20247
21184
  /** @example Theo Ward */
20248
21185
  name?: string;
20249
21186
  };
20250
- /** @example 2026-04-22T11:59:52+00:00 */
21187
+ /** @example 2026-04-24T14:12:49+00:00 */
20251
21188
  created_at?: string;
20252
- /** @example 2026-04-22T11:59:52+00:00 */
21189
+ /** @example 2026-04-24T14:12:49+00:00 */
20253
21190
  updated_at?: string;
20254
21191
  };
20255
21192
  };
@@ -20276,7 +21213,7 @@ export interface operations {
20276
21213
  content: {
20277
21214
  "application/json": {
20278
21215
  data?: {
20279
- /** @example 114 */
21216
+ /** @example 138 */
20280
21217
  id?: number;
20281
21218
  /** @example 1 */
20282
21219
  rating?: number;
@@ -20288,9 +21225,9 @@ export interface operations {
20288
21225
  /** @example Lola Holmes */
20289
21226
  name?: string;
20290
21227
  };
20291
- /** @example 2026-04-22T11:59:52+00:00 */
21228
+ /** @example 2026-04-24T14:12:49+00:00 */
20292
21229
  created_at?: string;
20293
- /** @example 2026-04-22T11:59:52+00:00 */
21230
+ /** @example 2026-04-24T14:12:49+00:00 */
20294
21231
  updated_at?: string;
20295
21232
  };
20296
21233
  };
@@ -20317,7 +21254,7 @@ export interface operations {
20317
21254
  content: {
20318
21255
  "application/json": {
20319
21256
  data?: {
20320
- /** @example 0021dfce-0aa6-49ea-aea5-ad27a9ea8a15 */
21257
+ /** @example 8516c1d8-969f-4a26-a9be-eb1b7b74fc38 */
20321
21258
  uid?: string;
20322
21259
  /** @example 1 */
20323
21260
  listing_id?: number;
@@ -20325,15 +21262,15 @@ export interface operations {
20325
21262
  landlord_id?: number;
20326
21263
  /** @example 2 */
20327
21264
  tenant_id?: number;
20328
- /** @example 1576.25 */
21265
+ /** @example 4881.50 */
20329
21266
  rent_amount?: string;
20330
- /** @example 4642.75 */
21267
+ /** @example 2151.17 */
20331
21268
  deposit_amount?: string;
20332
21269
  /** @example offer_accepted */
20333
21270
  state?: string;
20334
- /** @example 2026-01-05T00:00:00.000000Z */
21271
+ /** @example 2025-10-30T00:00:00.000000Z */
20335
21272
  start_date?: string;
20336
- /** @example 2027-01-05T00:00:00.000000Z */
21273
+ /** @example 2026-10-30T00:00:00.000000Z */
20337
21274
  end_date?: string;
20338
21275
  /** @example false */
20339
21276
  is_periodic?: boolean;
@@ -20341,7 +21278,7 @@ export interface operations {
20341
21278
  company_name?: string | null;
20342
21279
  /** @example null */
20343
21280
  company_registration_number?: string | null;
20344
- /** @example 2026-04-22T11:59:52.000000Z */
21281
+ /** @example 2026-04-24T14:12:49.000000Z */
20345
21282
  created_at?: string;
20346
21283
  /** @example [] */
20347
21284
  compliances?: unknown[];
@@ -20418,7 +21355,7 @@ export interface operations {
20418
21355
  content: {
20419
21356
  "application/json": {
20420
21357
  data?: {
20421
- /** @example 42667dd3-e188-4220-8f11-b63a9c8ac745 */
21358
+ /** @example a0b7a5fe-9b12-4d20-9bb0-43e634e910ce */
20422
21359
  uid?: string;
20423
21360
  /** @example 1 */
20424
21361
  listing_id?: number;
@@ -20432,9 +21369,9 @@ export interface operations {
20432
21369
  deposit_amount?: string;
20433
21370
  /** @example active */
20434
21371
  state?: string;
20435
- /** @example 2025-10-07T00:00:00.000000Z */
21372
+ /** @example 2025-10-10T00:00:00.000000Z */
20436
21373
  start_date?: string;
20437
- /** @example 2026-10-07T00:00:00.000000Z */
21374
+ /** @example 2026-10-10T00:00:00.000000Z */
20438
21375
  end_date?: string;
20439
21376
  /** @example true */
20440
21377
  is_periodic?: boolean;
@@ -20442,7 +21379,7 @@ export interface operations {
20442
21379
  company_name?: string | null;
20443
21380
  /** @example null */
20444
21381
  company_registration_number?: string | null;
20445
- /** @example 2026-04-22T11:59:52.000000Z */
21382
+ /** @example 2026-04-24T14:12:49.000000Z */
20446
21383
  created_at?: string;
20447
21384
  };
20448
21385
  };
@@ -20736,7 +21673,7 @@ export interface operations {
20736
21673
  * "changed_by_user_id": 3,
20737
21674
  * "changed_by_name": "Teagan King",
20738
21675
  * "comment": "Qui commodi incidunt iure odit.",
20739
- * "created_at": "2025-12-14T22:46:51.000000Z"
21676
+ * "created_at": "2025-12-17T00:59:48.000000Z"
20740
21677
  * },
20741
21678
  * {
20742
21679
  * "from_state": "pre_move_in_ready",
@@ -20744,7 +21681,7 @@ export interface operations {
20744
21681
  * "changed_by_user_id": 3,
20745
21682
  * "changed_by_name": "Teagan King",
20746
21683
  * "comment": null,
20747
- * "created_at": "2025-10-31T06:42:31.000000Z"
21684
+ * "created_at": "2025-11-02T08:55:28.000000Z"
20748
21685
  * }
20749
21686
  * ]
20750
21687
  */
@@ -20759,7 +21696,7 @@ export interface operations {
20759
21696
  changed_by_name?: string;
20760
21697
  /** @example Qui commodi incidunt iure odit. */
20761
21698
  comment?: string;
20762
- /** @example 2025-12-14T22:46:51.000000Z */
21699
+ /** @example 2025-12-17T00:59:48.000000Z */
20763
21700
  created_at?: string;
20764
21701
  }[];
20765
21702
  };
@@ -21003,7 +21940,7 @@ export interface operations {
21003
21940
  content: {
21004
21941
  "application/json": {
21005
21942
  data?: {
21006
- /** @example a5c9008e-a812-4f45-aee9-46d68ca54978 */
21943
+ /** @example 8021d227-e1d1-4c22-83b6-1ee7934068c6 */
21007
21944
  uid?: string;
21008
21945
  /** @example Ms. Audra Crooks II */
21009
21946
  username?: string;
@@ -21011,7 +21948,7 @@ export interface operations {
21011
21948
  first_name?: string | null;
21012
21949
  /** @example null */
21013
21950
  last_name?: string | null;
21014
- /** @example gilbert32@example.com */
21951
+ /** @example hirthe.theo@example.com */
21015
21952
  email?: string;
21016
21953
  /** @example null */
21017
21954
  phone?: string | null;
@@ -21033,7 +21970,7 @@ export interface operations {
21033
21970
  timezone?: string;
21034
21971
  /** @example Customer */
21035
21972
  user_type?: string;
21036
- /** @example 22 Apr 2026, 11:59 AM */
21973
+ /** @example 24 Apr 2026, 02:12 PM */
21037
21974
  created?: string;
21038
21975
  /** @example 0 seconds ago */
21039
21976
  email_verified_at?: string;
@@ -21132,7 +22069,7 @@ export interface operations {
21132
22069
  content: {
21133
22070
  "application/json": {
21134
22071
  data?: {
21135
- /** @example 5dcdf4e3-3496-4863-b38b-db08ccc96eb8 */
22072
+ /** @example 12dd9404-a722-4e22-8094-ca3b9b452b3b */
21136
22073
  uid?: string;
21137
22074
  /** @example Morgan Hirthe */
21138
22075
  username?: string;
@@ -21162,7 +22099,7 @@ export interface operations {
21162
22099
  timezone?: string;
21163
22100
  /** @example Customer */
21164
22101
  user_type?: string;
21165
- /** @example 22 Apr 2026, 11:59 AM */
22102
+ /** @example 24 Apr 2026, 02:12 PM */
21166
22103
  created?: string;
21167
22104
  /** @example 0 seconds ago */
21168
22105
  email_verified_at?: string;
@@ -21234,7 +22171,7 @@ export interface operations {
21234
22171
  content: {
21235
22172
  "application/json": {
21236
22173
  data?: {
21237
- /** @example ab9de0db-6112-4495-892c-29e7768ae0a0 */
22174
+ /** @example 97a79ca0-b7d7-48cd-b7c9-55885cf393e0 */
21238
22175
  uid?: string;
21239
22176
  /** @example Ms. Audra Crooks II */
21240
22177
  username?: string;
@@ -21242,7 +22179,7 @@ export interface operations {
21242
22179
  first_name?: string | null;
21243
22180
  /** @example null */
21244
22181
  last_name?: string | null;
21245
- /** @example hirthe.theo@example.com */
22182
+ /** @example leo34@example.net */
21246
22183
  email?: string;
21247
22184
  /** @example null */
21248
22185
  phone?: string | null;
@@ -21264,7 +22201,7 @@ export interface operations {
21264
22201
  timezone?: string;
21265
22202
  /** @example Customer */
21266
22203
  user_type?: string;
21267
- /** @example 22 Apr 2026, 11:59 AM */
22204
+ /** @example 24 Apr 2026, 02:12 PM */
21268
22205
  created?: string;
21269
22206
  /** @example 0 seconds ago */
21270
22207
  email_verified_at?: string;
@@ -21504,7 +22441,7 @@ export interface operations {
21504
22441
  completed_layers?: number;
21505
22442
  /** @example 4 */
21506
22443
  pending_layers?: number;
21507
- /** @example 22 Apr 2026, 11:59 AM */
22444
+ /** @example 24 Apr 2026, 02:12 PM */
21508
22445
  last_calculated_at?: string;
21509
22446
  };
21510
22447
  };
@@ -21552,7 +22489,7 @@ export interface operations {
21552
22489
  completed_layers?: number;
21553
22490
  /** @example 4 */
21554
22491
  pending_layers?: number;
21555
- /** @example 22 Apr 2026, 11:59 AM */
22492
+ /** @example 24 Apr 2026, 02:12 PM */
21556
22493
  last_calculated_at?: string;
21557
22494
  };
21558
22495
  };
@@ -21586,14 +22523,14 @@ export interface operations {
21586
22523
  content: {
21587
22524
  "application/json": {
21588
22525
  data?: {
21589
- /** @example 8241460f-fab8-4457-b384-c954146f3213 */
22526
+ /** @example f24372ba-7ab4-48f1-883e-370daf6d5177 */
21590
22527
  wishlist_uid?: string;
21591
22528
  listing?: {
21592
- /** @example New For Sale Used Item draft • 22 Apr 2026, 11:59 AM */
22529
+ /** @example New For Sale Used Item draft • 24 Apr 2026, 2:12 PM */
21593
22530
  draft_name?: string;
21594
- /** @example LST-UIT-SAL-MOA033LL2AG */
22531
+ /** @example LST-UIT-SAL-MOCZPRUKZEF */
21595
22532
  sku?: string;
21596
- /** @example 72ad30ef-d6b0-4ea3-8609-821815421e71 */
22533
+ /** @example 7c92cc5f-8800-4509-996e-c9db8f228078 */
21597
22534
  uid?: string;
21598
22535
  /** @example Sale */
21599
22536
  listing_type?: string;
@@ -21677,15 +22614,15 @@ export interface operations {
21677
22614
  /**
21678
22615
  * @example [
21679
22616
  * {
21680
- * "wishlist_uid": "7144bc9b-370e-428c-afcb-11160ae206d1"
22617
+ * "wishlist_uid": "40007f97-f904-40fc-ba69-b999c89452c9"
21681
22618
  * },
21682
22619
  * {
21683
- * "wishlist_uid": "a3bf4fb6-a101-4ea5-8dad-1908f0e9bc08"
22620
+ * "wishlist_uid": "ab61ad3e-ec9f-414e-bb27-abb28b66816e"
21684
22621
  * }
21685
22622
  * ]
21686
22623
  */
21687
22624
  data?: {
21688
- /** @example 7144bc9b-370e-428c-afcb-11160ae206d1 */
22625
+ /** @example 40007f97-f904-40fc-ba69-b999c89452c9 */
21689
22626
  wishlist_uid?: string;
21690
22627
  }[];
21691
22628
  links?: {
@@ -21751,6 +22688,53 @@ export interface operations {
21751
22688
  };
21752
22689
  };
21753
22690
  };
22691
+ addMaintenanceUpdate: {
22692
+ parameters: {
22693
+ query?: never;
22694
+ header?: never;
22695
+ path: {
22696
+ /** @description The UID of the maintenance request. */
22697
+ maintenance_uid: string;
22698
+ };
22699
+ cookie?: never;
22700
+ };
22701
+ requestBody: {
22702
+ content: {
22703
+ "application/json": {
22704
+ /**
22705
+ * @description Update note for the maintenance request. Must not be greater than 2000 characters.
22706
+ * @example b
22707
+ */
22708
+ note: string;
22709
+ };
22710
+ };
22711
+ };
22712
+ responses: {
22713
+ 200: {
22714
+ headers: {
22715
+ [name: string]: unknown;
22716
+ };
22717
+ content: {
22718
+ "application/json": {
22719
+ data?: {
22720
+ /** @example 0dd08e9c-2b6f-4c31-acea-399984c1f537 */
22721
+ uid?: string;
22722
+ /** @example Accusantium aut suscipit ea suscipit illo ea doloribus neque. */
22723
+ note?: string;
22724
+ user?: {
22725
+ /** @example 20 */
22726
+ id?: number;
22727
+ /** @example Suzanne Morgan */
22728
+ name?: string;
22729
+ };
22730
+ /** @example 2026-04-18 03:00:21 */
22731
+ created_at?: string;
22732
+ };
22733
+ };
22734
+ };
22735
+ };
22736
+ };
22737
+ };
21754
22738
  fetchFlowUserVerification: {
21755
22739
  parameters: {
21756
22740
  query?: never;
@@ -21767,13 +22751,13 @@ export interface operations {
21767
22751
  content: {
21768
22752
  "application/json": {
21769
22753
  data?: {
21770
- /** @example 9 */
22754
+ /** @example 0 */
21771
22755
  current_level?: number;
21772
22756
  /** @example 3 */
21773
22757
  completed_layers?: number;
21774
- /** @example 2 */
22758
+ /** @example 4 */
21775
22759
  pending_layers?: number;
21776
- /** @example 22 Apr 2026, 11:59 AM */
22760
+ /** @example 24 Apr 2026, 02:12 PM */
21777
22761
  last_calculated_at?: string;
21778
22762
  };
21779
22763
  };
@@ -21935,7 +22919,7 @@ export interface operations {
21935
22919
  completed_layers?: number;
21936
22920
  /** @example 4 */
21937
22921
  pending_layers?: number;
21938
- /** @example 22 Apr 2026, 11:59 AM */
22922
+ /** @example 24 Apr 2026, 02:12 PM */
21939
22923
  last_calculated_at?: string;
21940
22924
  };
21941
22925
  };