@justins-home/types 1.1.45 → 1.1.47

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 +966 -323
  2. package/package.json +1 -1
@@ -1824,10 +1824,7 @@ export interface paths {
1824
1824
  parameters: {
1825
1825
  query?: never;
1826
1826
  header?: never;
1827
- path: {
1828
- /** @description The ID of the user whose plan should be deactivated. */
1829
- user_id: number;
1830
- };
1827
+ path?: never;
1831
1828
  cookie?: never;
1832
1829
  };
1833
1830
  get?: never;
@@ -2589,6 +2586,29 @@ export interface paths {
2589
2586
  patch?: never;
2590
2587
  trace?: never;
2591
2588
  };
2589
+ "/api/v1/portal/admin/inspections/fetch-one/{uid}": {
2590
+ parameters: {
2591
+ query?: never;
2592
+ header?: never;
2593
+ path: {
2594
+ /** @description The unique UID of the inspection. */
2595
+ uid: string;
2596
+ };
2597
+ cookie?: never;
2598
+ };
2599
+ /**
2600
+ * fetchInspectionAdmin
2601
+ * @description Fetch a single inspection by UID.
2602
+ */
2603
+ get: operations["fetchInspectionAdmin"];
2604
+ put?: never;
2605
+ post?: never;
2606
+ delete?: never;
2607
+ options?: never;
2608
+ head?: never;
2609
+ patch?: never;
2610
+ trace?: never;
2611
+ };
2592
2612
  "/api/v1/portal/admin/inspections/schedule": {
2593
2613
  parameters: {
2594
2614
  query?: never;
@@ -2609,6 +2629,29 @@ export interface paths {
2609
2629
  patch?: never;
2610
2630
  trace?: never;
2611
2631
  };
2632
+ "/api/v1/portal/admin/inspections/{uid}/attachments": {
2633
+ parameters: {
2634
+ query?: never;
2635
+ header?: never;
2636
+ path: {
2637
+ /** @description The unique UID of the inspection. */
2638
+ uid: string;
2639
+ };
2640
+ cookie?: never;
2641
+ };
2642
+ get?: never;
2643
+ put?: never;
2644
+ /**
2645
+ * uploadInspectionAttachment
2646
+ * @description Upload an attachment for a specific inspection.
2647
+ */
2648
+ post: operations["uploadInspectionAttachment"];
2649
+ delete?: never;
2650
+ options?: never;
2651
+ head?: never;
2652
+ patch?: never;
2653
+ trace?: never;
2654
+ };
2612
2655
  "/api/v1/portal/admin/inspections/{uid}/complete": {
2613
2656
  parameters: {
2614
2657
  query?: never;
@@ -2678,6 +2721,29 @@ export interface paths {
2678
2721
  patch?: never;
2679
2722
  trace?: never;
2680
2723
  };
2724
+ "/api/v1/portal/admin/maintenance/fetch-one/{uid}": {
2725
+ parameters: {
2726
+ query?: never;
2727
+ header?: never;
2728
+ path: {
2729
+ /** @description The UID of the maintenance request. */
2730
+ uid: string;
2731
+ };
2732
+ cookie?: never;
2733
+ };
2734
+ /**
2735
+ * fetchMaintenanceRequestAdmin
2736
+ * @description Fetch a single maintenance request by UID.
2737
+ */
2738
+ get: operations["fetchMaintenanceRequestAdmin"];
2739
+ put?: never;
2740
+ post?: never;
2741
+ delete?: never;
2742
+ options?: never;
2743
+ head?: never;
2744
+ patch?: never;
2745
+ trace?: never;
2746
+ };
2681
2747
  "/api/v1/portal/admin/maintenance/{uid}/assign": {
2682
2748
  parameters: {
2683
2749
  query?: never;
@@ -4350,6 +4416,30 @@ export interface paths {
4350
4416
  patch?: never;
4351
4417
  trace?: never;
4352
4418
  };
4419
+ "/api/v1/portal/admin/maintenance/{uid}/updates": {
4420
+ parameters: {
4421
+ query?: never;
4422
+ header?: never;
4423
+ path: {
4424
+ uid: string;
4425
+ /** @description The UID of the maintenance request. */
4426
+ maintenance_uid: string;
4427
+ };
4428
+ cookie?: never;
4429
+ };
4430
+ get?: never;
4431
+ put?: never;
4432
+ /**
4433
+ * addMaintenanceUpdateAdmin
4434
+ * @description Add a note/update to a maintenance request.
4435
+ */
4436
+ post: operations["addMaintenanceUpdateAdmin"];
4437
+ delete?: never;
4438
+ options?: never;
4439
+ head?: never;
4440
+ patch?: never;
4441
+ trace?: never;
4442
+ };
4353
4443
  "/api/v1/public/maintenance/listing/{listing_uid}": {
4354
4444
  parameters: {
4355
4445
  query?: never;
@@ -5356,6 +5446,29 @@ export interface paths {
5356
5446
  patch?: never;
5357
5447
  trace?: never;
5358
5448
  };
5449
+ "/api/v1/public/maintenance/{maintenance_uid}/updates": {
5450
+ parameters: {
5451
+ query?: never;
5452
+ header?: never;
5453
+ path: {
5454
+ /** @description The UID of the maintenance request. */
5455
+ maintenance_uid: string;
5456
+ };
5457
+ cookie?: never;
5458
+ };
5459
+ get?: never;
5460
+ put?: never;
5461
+ /**
5462
+ * addMaintenanceUpdate
5463
+ * @description Add a note/update to a maintenance request.
5464
+ */
5465
+ post: operations["addMaintenanceUpdate"];
5466
+ delete?: never;
5467
+ options?: never;
5468
+ head?: never;
5469
+ patch?: never;
5470
+ trace?: never;
5471
+ };
5359
5472
  "/api/v1/public/userverification/fetch-flow": {
5360
5473
  parameters: {
5361
5474
  query?: never;
@@ -5933,7 +6046,7 @@ export interface operations {
5933
6046
  content: {
5934
6047
  "application/json": {
5935
6048
  data?: {
5936
- /** @example fb878aed-6f58-41b9-aee6-4180c702e4a1 */
6049
+ /** @example 42afad1d-7950-4dce-8600-90c073595b88 */
5937
6050
  uid?: string;
5938
6051
  /** @example Ms. Audra Crooks II */
5939
6052
  username?: string;
@@ -5963,7 +6076,7 @@ export interface operations {
5963
6076
  timezone?: string;
5964
6077
  /** @example Customer */
5965
6078
  user_type?: string;
5966
- /** @example 22 Apr 2026, 08:58 AM */
6079
+ /** @example 24 Apr 2026, 12:31 PM */
5967
6080
  created?: string;
5968
6081
  /** @example 0 seconds ago */
5969
6082
  email_verified_at?: string;
@@ -6216,11 +6329,11 @@ export interface operations {
6216
6329
  content: {
6217
6330
  "application/json": {
6218
6331
  data?: {
6219
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
6332
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
6220
6333
  draft_name?: string;
6221
- /** @example LST-PRP-LTR-MO9TLDRGXO7 */
6334
+ /** @example LST-PRP-LTR-MOCW3LKE7HM */
6222
6335
  sku?: string;
6223
- /** @example a7253342-f83e-4731-b65d-6c2a8dd82dd1 */
6336
+ /** @example e3de811b-0ff0-40af-87e6-33c1d803bec9 */
6224
6337
  uid?: string;
6225
6338
  /** @example Rent */
6226
6339
  listing_type?: string;
@@ -7632,7 +7745,7 @@ export interface operations {
7632
7745
  content: {
7633
7746
  "application/json": {
7634
7747
  /**
7635
- * @example Unverified
7748
+ * @example Suspended
7636
7749
  * @enum {string}
7637
7750
  */
7638
7751
  status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
@@ -7647,7 +7760,7 @@ export interface operations {
7647
7760
  content: {
7648
7761
  "application/json": {
7649
7762
  data?: {
7650
- /** @example 1770f97c-3d57-409a-a452-d2e30430b39c */
7763
+ /** @example 2c859797-e790-4a9f-a72f-dd1ae3444136 */
7651
7764
  uid?: string;
7652
7765
  /** @example Morgan Hirthe */
7653
7766
  username?: string;
@@ -7677,7 +7790,7 @@ export interface operations {
7677
7790
  timezone?: string;
7678
7791
  /** @example Customer */
7679
7792
  user_type?: string;
7680
- /** @example 22 Apr 2026, 08:58 AM */
7793
+ /** @example 24 Apr 2026, 12:31 PM */
7681
7794
  created?: string;
7682
7795
  /** @example 0 seconds ago */
7683
7796
  email_verified_at?: string;
@@ -8386,11 +8499,11 @@ export interface operations {
8386
8499
  content: {
8387
8500
  "application/json": {
8388
8501
  data?: {
8389
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
8502
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
8390
8503
  draft_name?: string;
8391
- /** @example LST-PRP-LTR-MO9TLDUHQZJ */
8504
+ /** @example LST-PRP-LTR-MOCW3LNFQX8 */
8392
8505
  sku?: string;
8393
- /** @example 42f2ab40-b436-4266-ac97-737be899c3d3 */
8506
+ /** @example d64bf538-898d-4f1e-a6b7-74bf9e4b9b3c */
8394
8507
  uid?: string;
8395
8508
  /** @example Rent */
8396
8509
  listing_type?: string;
@@ -8830,7 +8943,7 @@ export interface operations {
8830
8943
  content: {
8831
8944
  "application/json": {
8832
8945
  data?: {
8833
- /** @example a880784b-6764-4c1a-8836-decb1ab33249 */
8946
+ /** @example 16000ce4-84ef-45b6-b29d-2b80eb61c8ac */
8834
8947
  uid?: string;
8835
8948
  /** @example photo */
8836
8949
  media_type?: string;
@@ -9137,9 +9250,9 @@ export interface operations {
9137
9250
  /**
9138
9251
  * @example [
9139
9252
  * {
9140
- * "draft_name": "New For Sale Used Item draft • 22 Apr 2026, 8:58 AM",
9141
- * "sku": "LST-UIT-SAL-MO9TLDWDMCA",
9142
- * "uid": "cbef9c63-b1ca-48a8-adcf-0150b4069b92",
9253
+ * "draft_name": "New For Sale Used Item draft • 24 Apr 2026, 12:31 PM",
9254
+ * "sku": "LST-UIT-SAL-MOCW3LOVILI",
9255
+ * "uid": "94a0b091-3e8b-4d0d-a525-f18d5ee25f26",
9143
9256
  * "listing_type": "Sale",
9144
9257
  * "vertical": "Used Item",
9145
9258
  * "arrangement_type": null,
@@ -9154,9 +9267,9 @@ export interface operations {
9154
9267
  * "media": []
9155
9268
  * },
9156
9269
  * {
9157
- * "draft_name": "New For Sale Used Item draft • 22 Apr 2026, 8:58 AM",
9158
- * "sku": "LST-UIT-SAL-MO9TLDWI0LT",
9159
- * "uid": "4195230f-c0b1-42c7-b593-5b9f451e4181",
9270
+ * "draft_name": "New For Sale Used Item draft • 24 Apr 2026, 12:31 PM",
9271
+ * "sku": "LST-UIT-SAL-MOCW3LOXURH",
9272
+ * "uid": "6d83a67c-6baa-4cee-912f-f54039a8d834",
9160
9273
  * "listing_type": "Sale",
9161
9274
  * "vertical": "Used Item",
9162
9275
  * "arrangement_type": null,
@@ -9173,11 +9286,11 @@ export interface operations {
9173
9286
  * ]
9174
9287
  */
9175
9288
  data?: {
9176
- /** @example New For Sale Used Item draft • 22 Apr 2026, 8:58 AM */
9289
+ /** @example New For Sale Used Item draft • 24 Apr 2026, 12:31 PM */
9177
9290
  draft_name?: string;
9178
- /** @example LST-UIT-SAL-MO9TLDWDMCA */
9291
+ /** @example LST-UIT-SAL-MOCW3LOVILI */
9179
9292
  sku?: string;
9180
- /** @example cbef9c63-b1ca-48a8-adcf-0150b4069b92 */
9293
+ /** @example 94a0b091-3e8b-4d0d-a525-f18d5ee25f26 */
9181
9294
  uid?: string;
9182
9295
  /** @example Sale */
9183
9296
  listing_type?: string;
@@ -9370,11 +9483,11 @@ export interface operations {
9370
9483
  content: {
9371
9484
  "application/json": {
9372
9485
  data?: {
9373
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
9486
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
9374
9487
  draft_name?: string;
9375
- /** @example LST-PRP-LTR-MO9TLDWUMW2 */
9488
+ /** @example LST-PRP-LTR-MOCW3LP55YG */
9376
9489
  sku?: string;
9377
- /** @example 628740a6-b171-4210-a5cb-ddd53e80733e */
9490
+ /** @example 395a3c74-c8b1-4804-9508-977e7ebeb845 */
9378
9491
  uid?: string;
9379
9492
  /** @example Rent */
9380
9493
  listing_type?: string;
@@ -9437,11 +9550,11 @@ export interface operations {
9437
9550
  content: {
9438
9551
  "application/json": {
9439
9552
  data?: {
9440
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
9553
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
9441
9554
  draft_name?: string;
9442
- /** @example LST-PRP-LTR-MO9TLDX1UNX */
9555
+ /** @example LST-PRP-LTR-MOCW3LP91TR */
9443
9556
  sku?: string;
9444
- /** @example 0ae76775-ae39-4dd6-9c38-6a4538dd9503 */
9557
+ /** @example b120a4c2-5d42-468a-8e21-039a582f7f97 */
9445
9558
  uid?: string;
9446
9559
  /** @example Rent */
9447
9560
  listing_type?: string;
@@ -9494,11 +9607,11 @@ export interface operations {
9494
9607
  content: {
9495
9608
  "application/json": {
9496
9609
  data?: {
9497
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
9610
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
9498
9611
  draft_name?: string;
9499
- /** @example LST-PRP-LTR-MO9TLDX8BSI */
9612
+ /** @example LST-PRP-LTR-MOCW3LPFTUJ */
9500
9613
  sku?: string;
9501
- /** @example f73a8e36-26bd-4bd0-801a-22634f6228b8 */
9614
+ /** @example 65bf62ff-39e0-4daa-a2ad-df855272c7a7 */
9502
9615
  uid?: string;
9503
9616
  /** @example Rent */
9504
9617
  listing_type?: string;
@@ -9551,11 +9664,11 @@ export interface operations {
9551
9664
  content: {
9552
9665
  "application/json": {
9553
9666
  data?: {
9554
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
9667
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
9555
9668
  draft_name?: string;
9556
- /** @example LST-PRP-LTR-MO9TLDXH9H0 */
9669
+ /** @example LST-PRP-LTR-MOCW3LPKJCP */
9557
9670
  sku?: string;
9558
- /** @example 3d7485dc-9651-459c-ab4a-df6d0ef60a3d */
9671
+ /** @example b15aca8f-b257-4c2f-b3e8-e0d7c2bbc874 */
9559
9672
  uid?: string;
9560
9673
  /** @example Rent */
9561
9674
  listing_type?: string;
@@ -9749,7 +9862,7 @@ export interface operations {
9749
9862
  content: {
9750
9863
  "application/json": {
9751
9864
  data?: {
9752
- /** @example 91 */
9865
+ /** @example 100 */
9753
9866
  id?: number;
9754
9867
  /** @example 1 */
9755
9868
  category_id?: number;
@@ -9823,7 +9936,7 @@ export interface operations {
9823
9936
  content: {
9824
9937
  "application/json": {
9825
9938
  data?: {
9826
- /** @example 92 */
9939
+ /** @example 101 */
9827
9940
  id?: number;
9828
9941
  /** @example 1 */
9829
9942
  category_id?: number;
@@ -9862,7 +9975,7 @@ export interface operations {
9862
9975
  content: {
9863
9976
  "application/json": {
9864
9977
  data?: {
9865
- /** @example 93 */
9978
+ /** @example 102 */
9866
9979
  id?: number;
9867
9980
  /** @example 1 */
9868
9981
  category_id?: number;
@@ -9900,7 +10013,7 @@ export interface operations {
9900
10013
  /**
9901
10014
  * @example [
9902
10015
  * {
9903
- * "id": 95,
10016
+ * "id": 110,
9904
10017
  * "name": "Exterior",
9905
10018
  * "description": "For Exterior categories",
9906
10019
  * "display_order": 1,
@@ -9910,7 +10023,7 @@ export interface operations {
9910
10023
  * "is_active": true
9911
10024
  * },
9912
10025
  * {
9913
- * "id": 96,
10026
+ * "id": 111,
9914
10027
  * "name": "Exterior",
9915
10028
  * "description": "For Exterior categories",
9916
10029
  * "display_order": 1,
@@ -9922,7 +10035,7 @@ export interface operations {
9922
10035
  * ]
9923
10036
  */
9924
10037
  data?: {
9925
- /** @example 95 */
10038
+ /** @example 110 */
9926
10039
  id?: number;
9927
10040
  /** @example Exterior */
9928
10041
  name?: string;
@@ -9986,7 +10099,7 @@ export interface operations {
9986
10099
  content: {
9987
10100
  "application/json": {
9988
10101
  data?: {
9989
- /** @example 97 */
10102
+ /** @example 112 */
9990
10103
  id?: number;
9991
10104
  /** @example Exterior */
9992
10105
  name?: string;
@@ -10053,7 +10166,7 @@ export interface operations {
10053
10166
  content: {
10054
10167
  "application/json": {
10055
10168
  data?: {
10056
- /** @example 98 */
10169
+ /** @example 113 */
10057
10170
  id?: number;
10058
10171
  /** @example Exterior */
10059
10172
  name?: string;
@@ -10094,7 +10207,7 @@ export interface operations {
10094
10207
  content: {
10095
10208
  "application/json": {
10096
10209
  data?: {
10097
- /** @example 99 */
10210
+ /** @example 114 */
10098
10211
  id?: number;
10099
10212
  /** @example Exterior */
10100
10213
  name?: string;
@@ -10357,7 +10470,7 @@ export interface operations {
10357
10470
  content: {
10358
10471
  "application/json": {
10359
10472
  data?: {
10360
- /** @example 48 */
10473
+ /** @example 55 */
10361
10474
  id?: number;
10362
10475
  /** @example email_fa_0 */
10363
10476
  key?: string;
@@ -10371,9 +10484,9 @@ export interface operations {
10371
10484
  metadata_schema?: unknown[];
10372
10485
  /** @example true */
10373
10486
  is_active?: boolean;
10374
- /** @example 2026-04-22T08:58:08.000000Z */
10487
+ /** @example 2026-04-24T12:31:36.000000Z */
10375
10488
  created_at?: string;
10376
- /** @example 2026-04-22T08:58:08.000000Z */
10489
+ /** @example 2026-04-24T12:31:36.000000Z */
10377
10490
  updated_at?: string;
10378
10491
  };
10379
10492
  };
@@ -10433,7 +10546,7 @@ export interface operations {
10433
10546
  content: {
10434
10547
  "application/json": {
10435
10548
  data?: {
10436
- /** @example 49 */
10549
+ /** @example 56 */
10437
10550
  id?: number;
10438
10551
  /** @example email_fa_0 */
10439
10552
  key?: string;
@@ -10447,9 +10560,9 @@ export interface operations {
10447
10560
  metadata_schema?: unknown[];
10448
10561
  /** @example true */
10449
10562
  is_active?: boolean;
10450
- /** @example 2026-04-22T08:58:08.000000Z */
10563
+ /** @example 2026-04-24T12:31:36.000000Z */
10451
10564
  created_at?: string;
10452
- /** @example 2026-04-22T08:58:08.000000Z */
10565
+ /** @example 2026-04-24T12:31:36.000000Z */
10453
10566
  updated_at?: string;
10454
10567
  };
10455
10568
  };
@@ -11626,10 +11739,7 @@ export interface operations {
11626
11739
  parameters: {
11627
11740
  query?: never;
11628
11741
  header?: never;
11629
- path: {
11630
- /** @description The ID of the user whose plan should be deactivated. */
11631
- user_id: number;
11632
- };
11742
+ path?: never;
11633
11743
  cookie?: never;
11634
11744
  };
11635
11745
  requestBody: {
@@ -11645,11 +11755,6 @@ export interface operations {
11645
11755
  * @example user_8391ab
11646
11756
  */
11647
11757
  user_uid: string;
11648
- /**
11649
- * @description The ID of the plan to deactivate for the user.
11650
- * @example 3
11651
- */
11652
- plan_uid: string;
11653
11758
  };
11654
11759
  };
11655
11760
  };
@@ -11723,25 +11828,25 @@ export interface operations {
11723
11828
  /**
11724
11829
  * @example [
11725
11830
  * {
11726
- * "key": "quia",
11727
- * "name": "accusantium",
11728
- * "description": "A nulla possimus sapiente voluptates fugit distinctio esse expedita.",
11831
+ * "key": "et",
11832
+ * "name": "vel",
11833
+ * "description": "Et autem excepturi hic magni.",
11729
11834
  * "value_type": "string"
11730
11835
  * },
11731
11836
  * {
11732
- * "key": "et",
11733
- * "name": "recusandae",
11734
- * "description": "Voluptatem qui distinctio saepe aut recusandae.",
11837
+ * "key": "nihil",
11838
+ * "name": "voluptatum",
11839
+ * "description": "Ut id soluta autem et illo.",
11735
11840
  * "value_type": "string"
11736
11841
  * }
11737
11842
  * ]
11738
11843
  */
11739
11844
  data?: {
11740
- /** @example quia */
11845
+ /** @example et */
11741
11846
  key?: string;
11742
- /** @example accusantium */
11847
+ /** @example vel */
11743
11848
  name?: string;
11744
- /** @example A nulla possimus sapiente voluptates fugit distinctio esse expedita. */
11849
+ /** @example Et autem excepturi hic magni. */
11745
11850
  description?: string;
11746
11851
  /** @example string */
11747
11852
  value_type?: string;
@@ -12823,7 +12928,15 @@ export interface operations {
12823
12928
  * "id": 12,
12824
12929
  * "name": "Inspector Jane Doe"
12825
12930
  * },
12826
- * "media": [],
12931
+ * "media": [
12932
+ * {
12933
+ * "uid": "ism_34fda1",
12934
+ * "file_type": "image/jpeg",
12935
+ * "caption": "Kitchen leak evidence",
12936
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
12937
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
12938
+ * }
12939
+ * ],
12827
12940
  * "created_at": "2026-04-01T09:00:00Z",
12828
12941
  * "updated_at": "2026-04-01T09:00:00Z"
12829
12942
  * }
@@ -12852,8 +12965,29 @@ export interface operations {
12852
12965
  /** @example Inspector Jane Doe */
12853
12966
  name?: string;
12854
12967
  };
12855
- /** @example [] */
12856
- media?: unknown[];
12968
+ /**
12969
+ * @example [
12970
+ * {
12971
+ * "uid": "ism_34fda1",
12972
+ * "file_type": "image/jpeg",
12973
+ * "caption": "Kitchen leak evidence",
12974
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
12975
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
12976
+ * }
12977
+ * ]
12978
+ */
12979
+ media?: {
12980
+ /** @example ism_34fda1 */
12981
+ uid?: string;
12982
+ /** @example image/jpeg */
12983
+ file_type?: string;
12984
+ /** @example Kitchen leak evidence */
12985
+ caption?: string;
12986
+ /** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
12987
+ path?: string;
12988
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
12989
+ url?: string;
12990
+ }[];
12857
12991
  /** @example 2026-04-01T09:00:00Z */
12858
12992
  created_at?: string;
12859
12993
  /** @example 2026-04-01T09:00:00Z */
@@ -12879,6 +13013,107 @@ export interface operations {
12879
13013
  };
12880
13014
  };
12881
13015
  };
13016
+ fetchInspectionAdmin: {
13017
+ parameters: {
13018
+ query?: never;
13019
+ header?: never;
13020
+ path: {
13021
+ /** @description The unique UID of the inspection. */
13022
+ uid: string;
13023
+ };
13024
+ cookie?: never;
13025
+ };
13026
+ requestBody?: never;
13027
+ responses: {
13028
+ 200: {
13029
+ headers: {
13030
+ [name: string]: unknown;
13031
+ };
13032
+ content: {
13033
+ "application/json": {
13034
+ /** @example Inspection fetched successfully */
13035
+ message?: string;
13036
+ /** @example null */
13037
+ event?: string | null;
13038
+ data?: {
13039
+ /** @example insp_34fda1 */
13040
+ uid?: string;
13041
+ /** @example routine */
13042
+ inspection_type?: string;
13043
+ /** @example scheduled */
13044
+ status?: string;
13045
+ /** @example 2026-04-10T10:30:00Z */
13046
+ scheduled_date?: string;
13047
+ /** @example null */
13048
+ completed_date?: string | null;
13049
+ /** @example null */
13050
+ condition_rating?: string | null;
13051
+ /** @example null */
13052
+ summary?: string | null;
13053
+ /** @example 2026-06-10T10:30:00Z */
13054
+ next_inspection_date?: string;
13055
+ inspector?: {
13056
+ /** @example 12 */
13057
+ id?: number;
13058
+ /** @example Inspector Jane Doe */
13059
+ name?: string;
13060
+ };
13061
+ /**
13062
+ * @example [
13063
+ * {
13064
+ * "uid": "ism_34fda1",
13065
+ * "file_type": "image/jpeg",
13066
+ * "caption": "Kitchen leak evidence",
13067
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
13068
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
13069
+ * }
13070
+ * ]
13071
+ */
13072
+ media?: {
13073
+ /** @example ism_34fda1 */
13074
+ uid?: string;
13075
+ /** @example image/jpeg */
13076
+ file_type?: string;
13077
+ /** @example Kitchen leak evidence */
13078
+ caption?: string;
13079
+ /** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
13080
+ path?: string;
13081
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
13082
+ url?: string;
13083
+ }[];
13084
+ /** @example 2026-04-01T09:00:00Z */
13085
+ created_at?: string;
13086
+ /** @example 2026-04-01T09:00:00Z */
13087
+ updated_at?: string;
13088
+ };
13089
+ } | {
13090
+ data?: {
13091
+ /** @example 0ce55532-6020-48f6-80ae-406e410e99d5 */
13092
+ uid?: string;
13093
+ /** @example follow_up */
13094
+ inspection_type?: string;
13095
+ /** @example cancelled */
13096
+ status?: string;
13097
+ /** @example 30 Apr 2026, 02:29 AM */
13098
+ scheduled_date?: string;
13099
+ /** @example null */
13100
+ completed_date?: string | null;
13101
+ /** @example attention_required */
13102
+ condition_rating?: string;
13103
+ /** @example Quidem nostrum qui commodi incidunt iure odit. */
13104
+ summary?: string;
13105
+ /** @example 22 Jun 2026, 11:18 PM */
13106
+ next_inspection_date?: string;
13107
+ /** @example 24 Apr 2026, 12:31 PM */
13108
+ created_at?: string;
13109
+ /** @example 24 Apr 2026, 12:31 PM */
13110
+ updated_at?: string;
13111
+ };
13112
+ };
13113
+ };
13114
+ };
13115
+ };
13116
+ };
12882
13117
  scheduleInspection: {
12883
13118
  parameters: {
12884
13119
  query?: never;
@@ -12926,13 +13161,13 @@ export interface operations {
12926
13161
  content: {
12927
13162
  "application/json": {
12928
13163
  data?: {
12929
- /** @example 677f3eb4-3831-44c4-9ec1-8c851cce7d48 */
13164
+ /** @example 9f96e2e9-e4a7-4b77-97d8-ed632c5016b5 */
12930
13165
  uid?: string;
12931
13166
  /** @example follow_up */
12932
13167
  inspection_type?: string;
12933
13168
  /** @example cancelled */
12934
13169
  status?: string;
12935
- /** @example 2026-04-27T22:56:30.000000Z */
13170
+ /** @example 30 Apr 2026, 02:29 AM */
12936
13171
  scheduled_date?: string;
12937
13172
  /** @example null */
12938
13173
  completed_date?: string | null;
@@ -12940,11 +13175,11 @@ export interface operations {
12940
13175
  condition_rating?: string;
12941
13176
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
12942
13177
  summary?: string;
12943
- /** @example 2026-06-20T19:45:04.000000Z */
13178
+ /** @example 22 Jun 2026, 11:18 PM */
12944
13179
  next_inspection_date?: string;
12945
- /** @example 2026-04-22T08:58:08.000000Z */
13180
+ /** @example 24 Apr 2026, 12:31 PM */
12946
13181
  created_at?: string;
12947
- /** @example 2026-04-22T08:58:08.000000Z */
13182
+ /** @example 24 Apr 2026, 12:31 PM */
12948
13183
  updated_at?: string;
12949
13184
  };
12950
13185
  };
@@ -12952,6 +13187,58 @@ export interface operations {
12952
13187
  };
12953
13188
  };
12954
13189
  };
13190
+ uploadInspectionAttachment: {
13191
+ parameters: {
13192
+ query?: never;
13193
+ header?: never;
13194
+ path: {
13195
+ /** @description The unique UID of the inspection. */
13196
+ uid: string;
13197
+ };
13198
+ cookie?: never;
13199
+ };
13200
+ requestBody: {
13201
+ content: {
13202
+ "multipart/form-data": {
13203
+ /**
13204
+ * Format: binary
13205
+ * @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.
13206
+ */
13207
+ file: string;
13208
+ /**
13209
+ * @description Optional caption for the uploaded inspection attachment. Must not be greater than 255 characters.
13210
+ * @example b
13211
+ */
13212
+ caption?: string | null;
13213
+ };
13214
+ };
13215
+ };
13216
+ responses: {
13217
+ 200: {
13218
+ headers: {
13219
+ [name: string]: unknown;
13220
+ };
13221
+ content: {
13222
+ "application/json": {
13223
+ data?: {
13224
+ /** @example a7efe096-a742-4215-bb95-62a61c6265d7 */
13225
+ uid?: string;
13226
+ /** @example application/octet-stream */
13227
+ file_type?: string;
13228
+ /** @example licking pipe */
13229
+ caption?: string;
13230
+ /** @example 5c4154a1-b8d2-411d-b653-54fd110d4ef1/c07aa2f4-65bd-4cae-b8f0-7e55958bea6d.png */
13231
+ storage_path?: string;
13232
+ /** @example http://justinshome-backendcore.test/inspection-media/5c4154a1-b8d2-411d-b653-54fd110d4ef1/c07aa2f4-65bd-4cae-b8f0-7e55958bea6d.png */
13233
+ url?: string;
13234
+ /** @example 2026-04-24T07:37:18.000000Z */
13235
+ created_at?: string;
13236
+ };
13237
+ };
13238
+ };
13239
+ };
13240
+ };
13241
+ };
12955
13242
  completeInspection: {
12956
13243
  parameters: {
12957
13244
  query?: never;
@@ -12987,13 +13274,13 @@ export interface operations {
12987
13274
  content: {
12988
13275
  "application/json": {
12989
13276
  data?: {
12990
- /** @example 9dbe55ef-518d-42fc-9a22-1e8d2479ab24 */
13277
+ /** @example ad385829-2951-4327-bfcc-7f001d4d46fb */
12991
13278
  uid?: string;
12992
13279
  /** @example follow_up */
12993
13280
  inspection_type?: string;
12994
13281
  /** @example cancelled */
12995
13282
  status?: string;
12996
- /** @example 2026-04-15T20:23:03.000000Z */
13283
+ /** @example 17 Apr 2026, 11:56 PM */
12997
13284
  scheduled_date?: string;
12998
13285
  /** @example null */
12999
13286
  completed_date?: string | null;
@@ -13001,11 +13288,11 @@ export interface operations {
13001
13288
  condition_rating?: string;
13002
13289
  /** @example Et animi quos velit et fugiat. */
13003
13290
  summary?: string;
13004
- /** @example 2026-07-25T04:16:50.000000Z */
13291
+ /** @example 27 Jul 2026, 07:50 AM */
13005
13292
  next_inspection_date?: string;
13006
- /** @example 2026-04-22T08:58:08.000000Z */
13293
+ /** @example 24 Apr 2026, 12:31 PM */
13007
13294
  created_at?: string;
13008
- /** @example 2026-04-22T08:58:08.000000Z */
13295
+ /** @example 24 Apr 2026, 12:31 PM */
13009
13296
  updated_at?: string;
13010
13297
  };
13011
13298
  };
@@ -13042,13 +13329,13 @@ export interface operations {
13042
13329
  content: {
13043
13330
  "application/json": {
13044
13331
  data?: {
13045
- /** @example e63d388d-00a4-4db3-b402-1e0ea2b94d92 */
13332
+ /** @example 97feda56-561e-4aee-bf5d-c5f21882dcfb */
13046
13333
  uid?: string;
13047
13334
  /** @example follow_up */
13048
13335
  inspection_type?: string;
13049
13336
  /** @example cancelled */
13050
13337
  status?: string;
13051
- /** @example 2026-04-27T22:56:30.000000Z */
13338
+ /** @example 30 Apr 2026, 02:29 AM */
13052
13339
  scheduled_date?: string;
13053
13340
  /** @example null */
13054
13341
  completed_date?: string | null;
@@ -13056,11 +13343,11 @@ export interface operations {
13056
13343
  condition_rating?: string;
13057
13344
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
13058
13345
  summary?: string;
13059
- /** @example 2026-06-20T19:45:04.000000Z */
13346
+ /** @example 22 Jun 2026, 11:18 PM */
13060
13347
  next_inspection_date?: string;
13061
- /** @example 2026-04-22T08:58:08.000000Z */
13348
+ /** @example 24 Apr 2026, 12:31 PM */
13062
13349
  created_at?: string;
13063
- /** @example 2026-04-22T08:58:08.000000Z */
13350
+ /** @example 24 Apr 2026, 12:31 PM */
13064
13351
  updated_at?: string;
13065
13352
  };
13066
13353
  };
@@ -13097,13 +13384,13 @@ export interface operations {
13097
13384
  content: {
13098
13385
  "application/json": {
13099
13386
  data?: {
13100
- /** @example a9479ee2-3379-4593-8a2f-e9711ad017f0 */
13387
+ /** @example 61451521-1f6a-4a46-9dc0-023a9c8aa098 */
13101
13388
  uid?: string;
13102
13389
  /** @example follow_up */
13103
13390
  inspection_type?: string;
13104
13391
  /** @example cancelled */
13105
13392
  status?: string;
13106
- /** @example 2026-04-15T20:23:03.000000Z */
13393
+ /** @example 17 Apr 2026, 11:56 PM */
13107
13394
  scheduled_date?: string;
13108
13395
  /** @example null */
13109
13396
  completed_date?: string | null;
@@ -13111,11 +13398,158 @@ export interface operations {
13111
13398
  condition_rating?: string;
13112
13399
  /** @example Et animi quos velit et fugiat. */
13113
13400
  summary?: string;
13114
- /** @example 2026-07-25T04:16:50.000000Z */
13401
+ /** @example 27 Jul 2026, 07:50 AM */
13115
13402
  next_inspection_date?: string;
13116
- /** @example 2026-04-22T08:58:08.000000Z */
13403
+ /** @example 24 Apr 2026, 12:31 PM */
13117
13404
  created_at?: string;
13118
- /** @example 2026-04-22T08:58:08.000000Z */
13405
+ /** @example 24 Apr 2026, 12:31 PM */
13406
+ updated_at?: string;
13407
+ };
13408
+ };
13409
+ };
13410
+ };
13411
+ };
13412
+ };
13413
+ fetchMaintenanceRequestAdmin: {
13414
+ parameters: {
13415
+ query?: never;
13416
+ header?: never;
13417
+ path: {
13418
+ /** @description The UID of the maintenance request. */
13419
+ uid: string;
13420
+ };
13421
+ cookie?: never;
13422
+ };
13423
+ requestBody?: never;
13424
+ responses: {
13425
+ 200: {
13426
+ headers: {
13427
+ [name: string]: unknown;
13428
+ };
13429
+ content: {
13430
+ "application/json": {
13431
+ /** @example Maintenance request fetched successfully */
13432
+ message?: string;
13433
+ /** @example null */
13434
+ event?: string | null;
13435
+ data?: {
13436
+ /** @example maint_83fd12 */
13437
+ uid?: string;
13438
+ /** @example Leaking kitchen sink */
13439
+ title?: string;
13440
+ /** @example Water has been dripping continuously under the sink cabinet. */
13441
+ description?: string;
13442
+ /** @example reported */
13443
+ status?: string;
13444
+ /** @example urgent */
13445
+ priority?: string;
13446
+ /** @example 2026-04-01T10:00:00Z */
13447
+ reported_at?: string;
13448
+ /** @example null */
13449
+ assigned_at?: string | null;
13450
+ /** @example null */
13451
+ completed_at?: string | null;
13452
+ /** @example 2026-04-02T10:00:00Z */
13453
+ sla_deadline?: string;
13454
+ listing?: {
13455
+ /** @example 7 */
13456
+ id?: number;
13457
+ /** @example 54c1fd9b-8720-43e6-be3d-d4283477f38b */
13458
+ uid?: string;
13459
+ };
13460
+ reporter?: {
13461
+ /** @example usr_123 */
13462
+ id?: string;
13463
+ /** @example Jane Doe */
13464
+ name?: string;
13465
+ };
13466
+ /** @example null */
13467
+ technician?: string | null;
13468
+ /**
13469
+ * @example [
13470
+ * {
13471
+ * "uid": "mu_34fda1",
13472
+ * "note": "Inspection visit scheduled.",
13473
+ * "user": {
13474
+ * "id": 12,
13475
+ * "name": "Inspector Jane Doe"
13476
+ * },
13477
+ * "created_at": "2026-04-01T09:30:00Z"
13478
+ * }
13479
+ * ]
13480
+ */
13481
+ updates?: {
13482
+ /** @example mu_34fda1 */
13483
+ uid?: string;
13484
+ /** @example Inspection visit scheduled. */
13485
+ note?: string;
13486
+ user?: {
13487
+ /** @example 12 */
13488
+ id?: number;
13489
+ /** @example Inspector Jane Doe */
13490
+ name?: string;
13491
+ };
13492
+ /** @example 2026-04-01T09:30:00Z */
13493
+ created_at?: string;
13494
+ }[];
13495
+ /**
13496
+ * @example [
13497
+ * {
13498
+ * "uid": "mnt_34fda1",
13499
+ * "file_type": "image/jpeg",
13500
+ * "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
13501
+ * "uploaded_by": {
13502
+ * "id": 12,
13503
+ * "name": "Inspector Jane Doe"
13504
+ * },
13505
+ * "created_at": "2026-04-01T09:15:00Z"
13506
+ * }
13507
+ * ]
13508
+ */
13509
+ attachments?: {
13510
+ /** @example mnt_34fda1 */
13511
+ uid?: string;
13512
+ /** @example image/jpeg */
13513
+ file_type?: string;
13514
+ /** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
13515
+ url?: string;
13516
+ uploaded_by?: {
13517
+ /** @example 12 */
13518
+ id?: number;
13519
+ /** @example Inspector Jane Doe */
13520
+ name?: string;
13521
+ };
13522
+ /** @example 2026-04-01T09:15:00Z */
13523
+ created_at?: string;
13524
+ }[];
13525
+ /** @example 2026-04-01T10:00:00Z */
13526
+ created_at?: string;
13527
+ /** @example 2026-04-01T10:00:00Z */
13528
+ updated_at?: string;
13529
+ };
13530
+ } | {
13531
+ data?: {
13532
+ /** @example f3eae042-8719-4dba-9bfb-0ce28b5e8094 */
13533
+ uid?: string;
13534
+ /** @example Qui commodi incidunt iure. */
13535
+ title?: string;
13536
+ /** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
13537
+ description?: string;
13538
+ /** @example breach */
13539
+ status?: string;
13540
+ /** @example low */
13541
+ priority?: string;
13542
+ /** @example 23 Apr 2026, 02:00 AM */
13543
+ reported_at?: string;
13544
+ /** @example null */
13545
+ assigned_at?: string | null;
13546
+ /** @example null */
13547
+ completed_at?: string | null;
13548
+ /** @example 25 Apr 2026, 10:24 PM */
13549
+ sla_deadline?: string;
13550
+ /** @example 24 Apr 2026, 12:31 PM */
13551
+ created_at?: string;
13552
+ /** @example 24 Apr 2026, 12:31 PM */
13119
13553
  updated_at?: string;
13120
13554
  };
13121
13555
  };
@@ -13152,7 +13586,7 @@ export interface operations {
13152
13586
  content: {
13153
13587
  "application/json": {
13154
13588
  data?: {
13155
- /** @example bac52246-7d84-4086-a7dc-a61c8e97686e */
13589
+ /** @example a7579d39-811b-46a6-9057-f3adb46d85b2 */
13156
13590
  uid?: string;
13157
13591
  /** @example Qui commodi incidunt iure. */
13158
13592
  title?: string;
@@ -13162,17 +13596,17 @@ export interface operations {
13162
13596
  status?: string;
13163
13597
  /** @example low */
13164
13598
  priority?: string;
13165
- /** @example 2026-04-20T22:26:51.000000Z */
13599
+ /** @example 23 Apr 2026, 02:00 AM */
13166
13600
  reported_at?: string;
13167
13601
  /** @example null */
13168
13602
  assigned_at?: string | null;
13169
13603
  /** @example null */
13170
13604
  completed_at?: string | null;
13171
- /** @example 2026-04-23T18:51:17.000000Z */
13605
+ /** @example 25 Apr 2026, 10:24 PM */
13172
13606
  sla_deadline?: string;
13173
- /** @example 2026-04-22T08:58:08.000000Z */
13607
+ /** @example 24 Apr 2026, 12:31 PM */
13174
13608
  created_at?: string;
13175
- /** @example 2026-04-22T08:58:08.000000Z */
13609
+ /** @example 24 Apr 2026, 12:31 PM */
13176
13610
  updated_at?: string;
13177
13611
  };
13178
13612
  };
@@ -13209,7 +13643,7 @@ export interface operations {
13209
13643
  content: {
13210
13644
  "application/json": {
13211
13645
  data?: {
13212
- /** @example 76240e6a-2b4e-4ba1-b732-1e4089b85186 */
13646
+ /** @example 75cd02bc-9db5-47f4-a208-c3bd17c052cc */
13213
13647
  uid?: string;
13214
13648
  /** @example Quos velit et fugiat sunt nihil. */
13215
13649
  title?: string;
@@ -13219,17 +13653,17 @@ export interface operations {
13219
13653
  status?: string;
13220
13654
  /** @example emergency */
13221
13655
  priority?: string;
13222
- /** @example 2026-04-15T20:11:43.000000Z */
13656
+ /** @example 17 Apr 2026, 11:45 PM */
13223
13657
  reported_at?: string;
13224
- /** @example 2026-04-20T16:31:35.000000Z */
13658
+ /** @example 22 Apr 2026, 08:05 PM */
13225
13659
  assigned_at?: string;
13226
13660
  /** @example null */
13227
13661
  completed_at?: string | null;
13228
- /** @example 2026-04-23T21:53:58.000000Z */
13662
+ /** @example 26 Apr 2026, 01:27 AM */
13229
13663
  sla_deadline?: string;
13230
- /** @example 2026-04-22T08:58:08.000000Z */
13664
+ /** @example 24 Apr 2026, 12:31 PM */
13231
13665
  created_at?: string;
13232
- /** @example 2026-04-22T08:58:08.000000Z */
13666
+ /** @example 24 Apr 2026, 12:31 PM */
13233
13667
  updated_at?: string;
13234
13668
  };
13235
13669
  };
@@ -13266,7 +13700,7 @@ export interface operations {
13266
13700
  content: {
13267
13701
  "application/json": {
13268
13702
  data?: {
13269
- /** @example 12cbd98f-da2a-4229-a806-f0e3811babba */
13703
+ /** @example c16c9e6f-8e41-49ea-a036-baecd8844d6c */
13270
13704
  uid?: string;
13271
13705
  /** @example Quos velit et fugiat sunt nihil. */
13272
13706
  title?: string;
@@ -13276,17 +13710,17 @@ export interface operations {
13276
13710
  status?: string;
13277
13711
  /** @example emergency */
13278
13712
  priority?: string;
13279
- /** @example 2026-04-15T20:11:44.000000Z */
13713
+ /** @example 17 Apr 2026, 11:45 PM */
13280
13714
  reported_at?: string;
13281
- /** @example 2026-04-20T16:31:36.000000Z */
13715
+ /** @example 22 Apr 2026, 08:05 PM */
13282
13716
  assigned_at?: string;
13283
13717
  /** @example null */
13284
13718
  completed_at?: string | null;
13285
- /** @example 2026-04-23T21:53:59.000000Z */
13719
+ /** @example 26 Apr 2026, 01:27 AM */
13286
13720
  sla_deadline?: string;
13287
- /** @example 2026-04-22T08:58:09.000000Z */
13721
+ /** @example 24 Apr 2026, 12:31 PM */
13288
13722
  created_at?: string;
13289
- /** @example 2026-04-22T08:58:09.000000Z */
13723
+ /** @example 24 Apr 2026, 12:31 PM */
13290
13724
  updated_at?: string;
13291
13725
  };
13292
13726
  };
@@ -13323,7 +13757,7 @@ export interface operations {
13323
13757
  content: {
13324
13758
  "application/json": {
13325
13759
  data?: {
13326
- /** @example 400cdbc0-5c0b-4c94-bd05-d540570c41c2 */
13760
+ /** @example ca7e7d59-146f-449c-839e-237d33fe9a66 */
13327
13761
  uid?: string;
13328
13762
  /** @example Quos velit et fugiat sunt nihil. */
13329
13763
  title?: string;
@@ -13333,17 +13767,17 @@ export interface operations {
13333
13767
  status?: string;
13334
13768
  /** @example emergency */
13335
13769
  priority?: string;
13336
- /** @example 2026-04-15T20:11:44.000000Z */
13770
+ /** @example 17 Apr 2026, 11:45 PM */
13337
13771
  reported_at?: string;
13338
- /** @example 2026-04-20T16:31:36.000000Z */
13772
+ /** @example 22 Apr 2026, 08:05 PM */
13339
13773
  assigned_at?: string;
13340
13774
  /** @example null */
13341
13775
  completed_at?: string | null;
13342
- /** @example 2026-04-23T21:53:59.000000Z */
13776
+ /** @example 26 Apr 2026, 01:27 AM */
13343
13777
  sla_deadline?: string;
13344
- /** @example 2026-04-22T08:58:09.000000Z */
13778
+ /** @example 24 Apr 2026, 12:31 PM */
13345
13779
  created_at?: string;
13346
- /** @example 2026-04-22T08:58:09.000000Z */
13780
+ /** @example 24 Apr 2026, 12:31 PM */
13347
13781
  updated_at?: string;
13348
13782
  };
13349
13783
  };
@@ -13739,19 +14173,19 @@ export interface operations {
13739
14173
  content: {
13740
14174
  "application/json": {
13741
14175
  data?: {
13742
- /** @example 120 */
14176
+ /** @example 141 */
13743
14177
  id?: number;
13744
14178
  /** @example 2 */
13745
14179
  listing_id?: number;
13746
14180
  /** @example completed */
13747
14181
  status?: string;
13748
14182
  scheduled?: {
13749
- /** @example 1993-10-15T00:00:00.000000Z */
14183
+ /** @example 1981-11-16T00:00:00.000000Z */
13750
14184
  start?: string;
13751
- /** @example 2015-02-25T00:00:00.000000Z */
14185
+ /** @example 1979-12-13T00:00:00.000000Z */
13752
14186
  end?: string;
13753
14187
  };
13754
- /** @example 2026-04-22T08:58:09.000000Z */
14188
+ /** @example 2026-04-24T12:31:36.000000Z */
13755
14189
  created_at?: string;
13756
14190
  };
13757
14191
  };
@@ -13778,19 +14212,19 @@ export interface operations {
13778
14212
  content: {
13779
14213
  "application/json": {
13780
14214
  data?: {
13781
- /** @example 121 */
14215
+ /** @example 142 */
13782
14216
  id?: number;
13783
14217
  /** @example 2 */
13784
14218
  listing_id?: number;
13785
14219
  /** @example completed */
13786
14220
  status?: string;
13787
14221
  scheduled?: {
13788
- /** @example 1981-11-18T00:00:00.000000Z */
14222
+ /** @example 1981-11-16T00:00:00.000000Z */
13789
14223
  start?: string;
13790
- /** @example 1979-12-15T00:00:00.000000Z */
14224
+ /** @example 1979-12-13T00:00:00.000000Z */
13791
14225
  end?: string;
13792
14226
  };
13793
- /** @example 2026-04-22T08:58:09.000000Z */
14227
+ /** @example 2026-04-24T12:31:36.000000Z */
13794
14228
  created_at?: string;
13795
14229
  };
13796
14230
  };
@@ -13816,41 +14250,41 @@ export interface operations {
13816
14250
  /**
13817
14251
  * @example [
13818
14252
  * {
13819
- * "id": 122,
14253
+ * "id": 143,
13820
14254
  * "listing_id": 2,
13821
14255
  * "status": "completed",
13822
14256
  * "scheduled": {
13823
- * "start": "1981-11-18T00:00:00.000000Z",
13824
- * "end": "1979-12-15T00:00:00.000000Z"
14257
+ * "start": "1981-11-16T00:00:00.000000Z",
14258
+ * "end": "1979-12-13T00:00:00.000000Z"
13825
14259
  * },
13826
- * "created_at": "2026-04-22T08:58:09.000000Z"
14260
+ * "created_at": "2026-04-24T12:31:36.000000Z"
13827
14261
  * },
13828
14262
  * {
13829
- * "id": 123,
14263
+ * "id": 144,
13830
14264
  * "listing_id": 2,
13831
14265
  * "status": "completed",
13832
14266
  * "scheduled": {
13833
- * "start": "2006-09-18T00:00:00.000000Z",
14267
+ * "start": "2006-09-16T00:00:00.000000Z",
13834
14268
  * "end": "2015-01-19T00:00:00.000000Z"
13835
14269
  * },
13836
- * "created_at": "2026-04-22T08:58:09.000000Z"
14270
+ * "created_at": "2026-04-24T12:31:36.000000Z"
13837
14271
  * }
13838
14272
  * ]
13839
14273
  */
13840
14274
  data?: {
13841
- /** @example 122 */
14275
+ /** @example 143 */
13842
14276
  id?: number;
13843
14277
  /** @example 2 */
13844
14278
  listing_id?: number;
13845
14279
  /** @example completed */
13846
14280
  status?: string;
13847
14281
  scheduled?: {
13848
- /** @example 1981-11-18T00:00:00.000000Z */
14282
+ /** @example 1981-11-16T00:00:00.000000Z */
13849
14283
  start?: string;
13850
- /** @example 1979-12-15T00:00:00.000000Z */
14284
+ /** @example 1979-12-13T00:00:00.000000Z */
13851
14285
  end?: string;
13852
14286
  };
13853
- /** @example 2026-04-22T08:58:09.000000Z */
14287
+ /** @example 2026-04-24T12:31:36.000000Z */
13854
14288
  created_at?: string;
13855
14289
  }[];
13856
14290
  links?: {
@@ -13950,19 +14384,19 @@ export interface operations {
13950
14384
  content: {
13951
14385
  "application/json": {
13952
14386
  data?: {
13953
- /** @example 124 */
14387
+ /** @example 145 */
13954
14388
  id?: number;
13955
14389
  /** @example 2 */
13956
14390
  listing_id?: number;
13957
14391
  /** @example completed */
13958
14392
  status?: string;
13959
14393
  scheduled?: {
13960
- /** @example 1981-11-18T00:00:00.000000Z */
14394
+ /** @example 1981-11-16T00:00:00.000000Z */
13961
14395
  start?: string;
13962
- /** @example 1979-12-15T00:00:00.000000Z */
14396
+ /** @example 1979-12-13T00:00:00.000000Z */
13963
14397
  end?: string;
13964
14398
  };
13965
- /** @example 2026-04-22T08:58:09.000000Z */
14399
+ /** @example 2026-04-24T12:31:36.000000Z */
13966
14400
  created_at?: string;
13967
14401
  };
13968
14402
  };
@@ -13989,19 +14423,19 @@ export interface operations {
13989
14423
  content: {
13990
14424
  "application/json": {
13991
14425
  data?: {
13992
- /** @example 125 */
14426
+ /** @example 146 */
13993
14427
  id?: number;
13994
14428
  /** @example 2 */
13995
14429
  listing_id?: number;
13996
14430
  /** @example completed */
13997
14431
  status?: string;
13998
14432
  scheduled?: {
13999
- /** @example 1981-11-18T00:00:00.000000Z */
14433
+ /** @example 1981-11-16T00:00:00.000000Z */
14000
14434
  start?: string;
14001
- /** @example 1979-12-15T00:00:00.000000Z */
14435
+ /** @example 1979-12-13T00:00:00.000000Z */
14002
14436
  end?: string;
14003
14437
  };
14004
- /** @example 2026-04-22T08:58:09.000000Z */
14438
+ /** @example 2026-04-24T12:31:36.000000Z */
14005
14439
  created_at?: string;
14006
14440
  };
14007
14441
  };
@@ -14028,19 +14462,19 @@ export interface operations {
14028
14462
  content: {
14029
14463
  "application/json": {
14030
14464
  data?: {
14031
- /** @example 126 */
14465
+ /** @example 147 */
14032
14466
  id?: number;
14033
14467
  /** @example 2 */
14034
14468
  listing_id?: number;
14035
14469
  /** @example completed */
14036
14470
  status?: string;
14037
14471
  scheduled?: {
14038
- /** @example 1981-11-18T00:00:00.000000Z */
14472
+ /** @example 1981-11-16T00:00:00.000000Z */
14039
14473
  start?: string;
14040
- /** @example 1979-12-15T00:00:00.000000Z */
14474
+ /** @example 1979-12-13T00:00:00.000000Z */
14041
14475
  end?: string;
14042
14476
  };
14043
- /** @example 2026-04-22T08:58:09.000000Z */
14477
+ /** @example 2026-04-24T12:31:36.000000Z */
14044
14478
  created_at?: string;
14045
14479
  };
14046
14480
  };
@@ -14999,7 +15433,15 @@ export interface operations {
14999
15433
  * "id": 12,
15000
15434
  * "name": "Inspector Jane Doe"
15001
15435
  * },
15002
- * "media": [],
15436
+ * "media": [
15437
+ * {
15438
+ * "uid": "ism_34fda1",
15439
+ * "file_type": "image/jpeg",
15440
+ * "caption": "Kitchen leak evidence",
15441
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
15442
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
15443
+ * }
15444
+ * ],
15003
15445
  * "created_at": "2026-04-01T09:00:00Z",
15004
15446
  * "updated_at": "2026-04-01T09:00:00Z"
15005
15447
  * }
@@ -15028,8 +15470,29 @@ export interface operations {
15028
15470
  /** @example Inspector Jane Doe */
15029
15471
  name?: string;
15030
15472
  };
15031
- /** @example [] */
15032
- media?: unknown[];
15473
+ /**
15474
+ * @example [
15475
+ * {
15476
+ * "uid": "ism_34fda1",
15477
+ * "file_type": "image/jpeg",
15478
+ * "caption": "Kitchen leak evidence",
15479
+ * "path": "insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
15480
+ * "url": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg"
15481
+ * }
15482
+ * ]
15483
+ */
15484
+ media?: {
15485
+ /** @example ism_34fda1 */
15486
+ uid?: string;
15487
+ /** @example image/jpeg */
15488
+ file_type?: string;
15489
+ /** @example Kitchen leak evidence */
15490
+ caption?: string;
15491
+ /** @example insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
15492
+ path?: string;
15493
+ /** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
15494
+ url?: string;
15495
+ }[];
15033
15496
  /** @example 2026-04-01T09:00:00Z */
15034
15497
  created_at?: string;
15035
15498
  /** @example 2026-04-01T09:00:00Z */
@@ -15111,7 +15574,7 @@ export interface operations {
15111
15574
  content: {
15112
15575
  "application/json": {
15113
15576
  data?: {
15114
- /** @example 17ec406d-ed4a-4d4f-97ba-28fe7c68b837 */
15577
+ /** @example 4d9fc994-4f6b-4390-801b-e3a15976b638 */
15115
15578
  uid?: string;
15116
15579
  /** @example Ms. Audra Crooks II */
15117
15580
  username?: string;
@@ -15141,7 +15604,7 @@ export interface operations {
15141
15604
  timezone?: string;
15142
15605
  /** @example Customer */
15143
15606
  user_type?: string;
15144
- /** @example 22 Apr 2026, 08:58 AM */
15607
+ /** @example 24 Apr 2026, 12:31 PM */
15145
15608
  created?: string;
15146
15609
  /** @example 0 seconds ago */
15147
15610
  email_verified_at?: string;
@@ -15610,7 +16073,7 @@ export interface operations {
15610
16073
  content: {
15611
16074
  "application/json": {
15612
16075
  data?: {
15613
- /** @example d229d47c-02fc-4d40-a209-f451afd6d5c5 */
16076
+ /** @example c0807862-82c4-4dec-84a6-cf9856209218 */
15614
16077
  uid?: string;
15615
16078
  /** @example Ms. Audra Crooks II */
15616
16079
  username?: string;
@@ -15640,7 +16103,7 @@ export interface operations {
15640
16103
  timezone?: string;
15641
16104
  /** @example Customer */
15642
16105
  user_type?: string;
15643
- /** @example 22 Apr 2026, 08:58 AM */
16106
+ /** @example 24 Apr 2026, 12:31 PM */
15644
16107
  created?: string;
15645
16108
  /** @example 0 seconds ago */
15646
16109
  email_verified_at?: string;
@@ -15761,11 +16224,11 @@ export interface operations {
15761
16224
  content: {
15762
16225
  "application/json": {
15763
16226
  data?: {
15764
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
16227
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
15765
16228
  draft_name?: string;
15766
- /** @example LST-PRP-LTR-MO9TLDJ4LRZ */
16229
+ /** @example LST-PRP-LTR-MOCW3LC8SEG */
15767
16230
  sku?: string;
15768
- /** @example 19bcf74c-d33f-4a3b-9b94-96f5aa24d38a */
16231
+ /** @example 3c99f326-a8c3-4129-b449-267d50af6bb1 */
15769
16232
  uid?: string;
15770
16233
  /** @example Rent */
15771
16234
  listing_type?: string;
@@ -15889,9 +16352,9 @@ export interface operations {
15889
16352
  /**
15890
16353
  * @example [
15891
16354
  * {
15892
- * "draft_name": "New For Rent Property draft • 22 Apr 2026, 8:58 AM",
15893
- * "sku": "LST-PRP-LTR-MO9TLDKEEB4",
15894
- * "uid": "7cdf6bd8-b252-4672-9cc4-fdf40730e885",
16355
+ * "draft_name": "New For Rent Property draft • 24 Apr 2026, 12:31 PM",
16356
+ * "sku": "LST-PRP-LTR-MOCW3LCSFLH",
16357
+ * "uid": "5f6b2237-6442-4120-8331-b5b970f19722",
15895
16358
  * "listing_type": "Rent",
15896
16359
  * "vertical": "Property",
15897
16360
  * "arrangement_type": "let_to_let",
@@ -15908,9 +16371,9 @@ export interface operations {
15908
16371
  * "media": []
15909
16372
  * },
15910
16373
  * {
15911
- * "draft_name": "New Short Let Property draft • 22 Apr 2026, 8:58 AM",
15912
- * "sku": "LST-PRP-SHL-MO9TLDKGFRL",
15913
- * "uid": "1bec9f07-c0f7-48f6-b5aa-e48eec1bbf14",
16374
+ * "draft_name": "New Short Let Property draft • 24 Apr 2026, 12:31 PM",
16375
+ * "sku": "LST-PRP-SHL-MOCW3LCUEWY",
16376
+ * "uid": "eeb80249-a298-4cb4-a019-ea815fe4eda6",
15914
16377
  * "listing_type": "Short Let",
15915
16378
  * "vertical": "Property",
15916
16379
  * "arrangement_type": "short_term_managed",
@@ -15929,11 +16392,11 @@ export interface operations {
15929
16392
  * ]
15930
16393
  */
15931
16394
  data?: {
15932
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
16395
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
15933
16396
  draft_name?: string;
15934
- /** @example LST-PRP-LTR-MO9TLDKEEB4 */
16397
+ /** @example LST-PRP-LTR-MOCW3LCSFLH */
15935
16398
  sku?: string;
15936
- /** @example 7cdf6bd8-b252-4672-9cc4-fdf40730e885 */
16399
+ /** @example 5f6b2237-6442-4120-8331-b5b970f19722 */
15937
16400
  uid?: string;
15938
16401
  /** @example Rent */
15939
16402
  listing_type?: string;
@@ -16043,9 +16506,9 @@ export interface operations {
16043
16506
  /**
16044
16507
  * @example [
16045
16508
  * {
16046
- * "draft_name": "New For Rent Property draft • 22 Apr 2026, 8:58 AM",
16047
- * "sku": "LST-PRP-LTR-MO9TLDKQRBJ",
16048
- * "uid": "9246e267-a949-4279-a22a-63023b3143c4",
16509
+ * "draft_name": "New For Rent Property draft • 24 Apr 2026, 12:31 PM",
16510
+ * "sku": "LST-PRP-LTR-MOCW3LDNCPV",
16511
+ * "uid": "fe065d04-8046-4495-929e-d9f9aa0d8758",
16049
16512
  * "listing_type": "Rent",
16050
16513
  * "vertical": "Property",
16051
16514
  * "arrangement_type": "let_to_let",
@@ -16062,9 +16525,9 @@ export interface operations {
16062
16525
  * "media": []
16063
16526
  * },
16064
16527
  * {
16065
- * "draft_name": "New Short Let Property draft • 22 Apr 2026, 8:58 AM",
16066
- * "sku": "LST-PRP-SHL-MO9TLDKSM88",
16067
- * "uid": "ca9a20d1-e3fc-4553-82a2-a8ce3c1dee72",
16528
+ * "draft_name": "New Short Let Property draft • 24 Apr 2026, 12:31 PM",
16529
+ * "sku": "LST-PRP-SHL-MOCW3LE5PKW",
16530
+ * "uid": "f6228d14-c2e5-4328-b99a-be34958c23ac",
16068
16531
  * "listing_type": "Short Let",
16069
16532
  * "vertical": "Property",
16070
16533
  * "arrangement_type": "short_term_managed",
@@ -16083,11 +16546,11 @@ export interface operations {
16083
16546
  * ]
16084
16547
  */
16085
16548
  data?: {
16086
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
16549
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
16087
16550
  draft_name?: string;
16088
- /** @example LST-PRP-LTR-MO9TLDKQRBJ */
16551
+ /** @example LST-PRP-LTR-MOCW3LDNCPV */
16089
16552
  sku?: string;
16090
- /** @example 9246e267-a949-4279-a22a-63023b3143c4 */
16553
+ /** @example fe065d04-8046-4495-929e-d9f9aa0d8758 */
16091
16554
  uid?: string;
16092
16555
  /** @example Rent */
16093
16556
  listing_type?: string;
@@ -17151,7 +17614,7 @@ export interface operations {
17151
17614
  content: {
17152
17615
  "application/json": {
17153
17616
  data?: {
17154
- /** @example 37f629c3-0e3e-4243-8752-3363d09e442a */
17617
+ /** @example a7c13241-74d4-474b-ac3c-24eb1f71af10 */
17155
17618
  uid?: string;
17156
17619
  /** @example photo */
17157
17620
  media_type?: string;
@@ -17300,11 +17763,11 @@ export interface operations {
17300
17763
  content: {
17301
17764
  "application/json": {
17302
17765
  data?: {
17303
- /** @example New For Rent Property draft • 22 Apr 2026, 8:58 AM */
17766
+ /** @example New For Rent Property draft • 24 Apr 2026, 12:31 PM */
17304
17767
  draft_name?: string;
17305
- /** @example LST-PRP-LTR-MO9TLDNFX5U */
17768
+ /** @example LST-PRP-LTR-MOCW3LH7HG2 */
17306
17769
  sku?: string;
17307
- /** @example bf745940-5150-40a0-aeea-69c19696a133 */
17770
+ /** @example e7dd82d5-4a34-4910-a8cd-b6e6119b9fce */
17308
17771
  uid?: string;
17309
17772
  /** @example Rent */
17310
17773
  listing_type?: string;
@@ -17464,7 +17927,7 @@ export interface operations {
17464
17927
  content: {
17465
17928
  "application/json": {
17466
17929
  data?: {
17467
- /** @example b58121a3-c72d-4046-9f2e-a16e21df24d9 */
17930
+ /** @example c47cfa72-95b9-4000-a104-2049e34e7764 */
17468
17931
  uid?: string;
17469
17932
  /** @example null */
17470
17933
  compliances?: string | null;
@@ -17515,7 +17978,7 @@ export interface operations {
17515
17978
  content: {
17516
17979
  "application/json": {
17517
17980
  data?: {
17518
- /** @example 101 */
17981
+ /** @example 104 */
17519
17982
  id?: number;
17520
17983
  compliance?: {
17521
17984
  /** @example 1 */
@@ -17537,7 +18000,7 @@ export interface operations {
17537
18000
  reviewed_by?: number;
17538
18001
  /** @example null */
17539
18002
  reviewed_at?: string | null;
17540
- /** @example 2026-04-22T08:58:08.000000Z */
18003
+ /** @example 2026-04-24T12:31:35.000000Z */
17541
18004
  created_at?: string;
17542
18005
  };
17543
18006
  };
@@ -17592,39 +18055,39 @@ export interface operations {
17592
18055
  /**
17593
18056
  * @example [
17594
18057
  * {
17595
- * "uid": "32e486e0-4f2b-4364-b2ea-9ee9645c053f",
18058
+ * "uid": "96478bfb-1834-43bc-b5cd-e879a1b32b09",
17596
18059
  * "listing_id": 1,
17597
18060
  * "landlord_id": 2,
17598
18061
  * "tenant_id": 2,
17599
18062
  * "rent_amount": "4881.50",
17600
18063
  * "deposit_amount": "2151.17",
17601
18064
  * "state": "offer_accepted",
17602
- * "start_date": "2025-10-27T00:00:00.000000Z",
17603
- * "end_date": "2026-10-27T00:00:00.000000Z",
18065
+ * "start_date": "2025-10-30T00:00:00.000000Z",
18066
+ * "end_date": "2026-10-30T00:00:00.000000Z",
17604
18067
  * "is_periodic": false,
17605
18068
  * "company_name": null,
17606
18069
  * "company_registration_number": null,
17607
- * "created_at": "2026-04-22T08:58:08.000000Z"
18070
+ * "created_at": "2026-04-24T12:31:35.000000Z"
17608
18071
  * },
17609
18072
  * {
17610
- * "uid": "f6cfded7-dcb8-4619-9fe3-14d749b4ac64",
18073
+ * "uid": "5ffeb71d-d5b6-4afb-8506-c95b50480aad",
17611
18074
  * "listing_id": 1,
17612
18075
  * "landlord_id": 2,
17613
18076
  * "tenant_id": 2,
17614
18077
  * "rent_amount": "3832.26",
17615
18078
  * "deposit_amount": "1384.27",
17616
18079
  * "state": "terminated",
17617
- * "start_date": "2025-09-22T00:00:00.000000Z",
17618
- * "end_date": "2026-09-22T00:00:00.000000Z",
18080
+ * "start_date": "2025-09-24T00:00:00.000000Z",
18081
+ * "end_date": "2026-09-24T00:00:00.000000Z",
17619
18082
  * "is_periodic": false,
17620
18083
  * "company_name": null,
17621
18084
  * "company_registration_number": null,
17622
- * "created_at": "2026-04-22T08:58:08.000000Z"
18085
+ * "created_at": "2026-04-24T12:31:35.000000Z"
17623
18086
  * }
17624
18087
  * ]
17625
18088
  */
17626
18089
  data?: {
17627
- /** @example 32e486e0-4f2b-4364-b2ea-9ee9645c053f */
18090
+ /** @example 96478bfb-1834-43bc-b5cd-e879a1b32b09 */
17628
18091
  uid?: string;
17629
18092
  /** @example 1 */
17630
18093
  listing_id?: number;
@@ -17638,9 +18101,9 @@ export interface operations {
17638
18101
  deposit_amount?: string;
17639
18102
  /** @example offer_accepted */
17640
18103
  state?: string;
17641
- /** @example 2025-10-27T00:00:00.000000Z */
18104
+ /** @example 2025-10-30T00:00:00.000000Z */
17642
18105
  start_date?: string;
17643
- /** @example 2026-10-27T00:00:00.000000Z */
18106
+ /** @example 2026-10-30T00:00:00.000000Z */
17644
18107
  end_date?: string;
17645
18108
  /** @example false */
17646
18109
  is_periodic?: boolean;
@@ -17648,7 +18111,7 @@ export interface operations {
17648
18111
  company_name?: string | null;
17649
18112
  /** @example null */
17650
18113
  company_registration_number?: string | null;
17651
- /** @example 2026-04-22T08:58:08.000000Z */
18114
+ /** @example 2026-04-24T12:31:35.000000Z */
17652
18115
  created_at?: string;
17653
18116
  }[];
17654
18117
  links?: {
@@ -17735,39 +18198,39 @@ export interface operations {
17735
18198
  /**
17736
18199
  * @example [
17737
18200
  * {
17738
- * "uid": "d955318c-0ed4-419b-a25f-8f6b96911bd4",
18201
+ * "uid": "557fa1eb-26b9-4ba9-a349-66597f82b317",
17739
18202
  * "listing_id": 1,
17740
18203
  * "landlord_id": 2,
17741
18204
  * "tenant_id": 2,
17742
18205
  * "rent_amount": "4881.50",
17743
18206
  * "deposit_amount": "2151.17",
17744
18207
  * "state": "offer_accepted",
17745
- * "start_date": "2025-10-27T00:00:00.000000Z",
17746
- * "end_date": "2026-10-27T00:00:00.000000Z",
18208
+ * "start_date": "2025-10-30T00:00:00.000000Z",
18209
+ * "end_date": "2026-10-30T00:00:00.000000Z",
17747
18210
  * "is_periodic": false,
17748
18211
  * "company_name": null,
17749
18212
  * "company_registration_number": null,
17750
- * "created_at": "2026-04-22T08:58:08.000000Z"
18213
+ * "created_at": "2026-04-24T12:31:35.000000Z"
17751
18214
  * },
17752
18215
  * {
17753
- * "uid": "f4e1bddc-6353-4dc6-a321-c932680038a6",
18216
+ * "uid": "cae33bdc-6740-4d8c-abe1-9a2b6c07d420",
17754
18217
  * "listing_id": 1,
17755
18218
  * "landlord_id": 2,
17756
18219
  * "tenant_id": 2,
17757
18220
  * "rent_amount": "3832.26",
17758
18221
  * "deposit_amount": "1384.27",
17759
18222
  * "state": "terminated",
17760
- * "start_date": "2025-09-22T00:00:00.000000Z",
17761
- * "end_date": "2026-09-22T00:00:00.000000Z",
18223
+ * "start_date": "2025-09-24T00:00:00.000000Z",
18224
+ * "end_date": "2026-09-24T00:00:00.000000Z",
17762
18225
  * "is_periodic": false,
17763
18226
  * "company_name": null,
17764
18227
  * "company_registration_number": null,
17765
- * "created_at": "2026-04-22T08:58:08.000000Z"
18228
+ * "created_at": "2026-04-24T12:31:35.000000Z"
17766
18229
  * }
17767
18230
  * ]
17768
18231
  */
17769
18232
  data?: {
17770
- /** @example d955318c-0ed4-419b-a25f-8f6b96911bd4 */
18233
+ /** @example 557fa1eb-26b9-4ba9-a349-66597f82b317 */
17771
18234
  uid?: string;
17772
18235
  /** @example 1 */
17773
18236
  listing_id?: number;
@@ -17781,9 +18244,9 @@ export interface operations {
17781
18244
  deposit_amount?: string;
17782
18245
  /** @example offer_accepted */
17783
18246
  state?: string;
17784
- /** @example 2025-10-27T00:00:00.000000Z */
18247
+ /** @example 2025-10-30T00:00:00.000000Z */
17785
18248
  start_date?: string;
17786
- /** @example 2026-10-27T00:00:00.000000Z */
18249
+ /** @example 2026-10-30T00:00:00.000000Z */
17787
18250
  end_date?: string;
17788
18251
  /** @example false */
17789
18252
  is_periodic?: boolean;
@@ -17791,7 +18254,7 @@ export interface operations {
17791
18254
  company_name?: string | null;
17792
18255
  /** @example null */
17793
18256
  company_registration_number?: string | null;
17794
- /** @example 2026-04-22T08:58:08.000000Z */
18257
+ /** @example 2026-04-24T12:31:35.000000Z */
17795
18258
  created_at?: string;
17796
18259
  }[];
17797
18260
  links?: {
@@ -17898,7 +18361,7 @@ export interface operations {
17898
18361
  content: {
17899
18362
  "application/json": {
17900
18363
  data?: {
17901
- /** @example 121 */
18364
+ /** @example 127 */
17902
18365
  id?: number;
17903
18366
  compliance?: {
17904
18367
  /** @example 1 */
@@ -17918,9 +18381,9 @@ export interface operations {
17918
18381
  rejection_reason?: string | null;
17919
18382
  /** @example 1 */
17920
18383
  reviewed_by?: number;
17921
- /** @example 2026-04-22T08:58:08.000000Z */
18384
+ /** @example 2026-04-24T12:31:35.000000Z */
17922
18385
  reviewed_at?: string;
17923
- /** @example 2026-04-22T08:58:08.000000Z */
18386
+ /** @example 2026-04-24T12:31:35.000000Z */
17924
18387
  created_at?: string;
17925
18388
  };
17926
18389
  };
@@ -17947,7 +18410,7 @@ export interface operations {
17947
18410
  content: {
17948
18411
  "application/json": {
17949
18412
  data?: {
17950
- /** @example 122 */
18413
+ /** @example 128 */
17951
18414
  id?: number;
17952
18415
  compliance?: {
17953
18416
  /** @example 1 */
@@ -17967,9 +18430,9 @@ export interface operations {
17967
18430
  rejection_reason?: string | null;
17968
18431
  /** @example 1 */
17969
18432
  reviewed_by?: number;
17970
- /** @example 2026-04-22T08:58:08.000000Z */
18433
+ /** @example 2026-04-24T12:31:35.000000Z */
17971
18434
  reviewed_at?: string;
17972
- /** @example 2026-04-22T08:58:08.000000Z */
18435
+ /** @example 2026-04-24T12:31:35.000000Z */
17973
18436
  created_at?: string;
17974
18437
  };
17975
18438
  };
@@ -18422,7 +18885,7 @@ export interface operations {
18422
18885
  sku?: string;
18423
18886
  /** @example 09 Apr 2026, 11:14 AM */
18424
18887
  published_at?: string;
18425
- /** @example 1 week ago */
18888
+ /** @example 2 weeks ago */
18426
18889
  published_since?: string;
18427
18890
  details?: {
18428
18891
  /** @example New Benin */
@@ -18823,6 +19286,54 @@ export interface operations {
18823
19286
  };
18824
19287
  };
18825
19288
  };
19289
+ addMaintenanceUpdateAdmin: {
19290
+ parameters: {
19291
+ query?: never;
19292
+ header?: never;
19293
+ path: {
19294
+ uid: string;
19295
+ /** @description The UID of the maintenance request. */
19296
+ maintenance_uid: string;
19297
+ };
19298
+ cookie?: never;
19299
+ };
19300
+ requestBody: {
19301
+ content: {
19302
+ "application/json": {
19303
+ /**
19304
+ * @description Update note for the maintenance request. Must not be greater than 2000 characters.
19305
+ * @example b
19306
+ */
19307
+ note: string;
19308
+ };
19309
+ };
19310
+ };
19311
+ responses: {
19312
+ 200: {
19313
+ headers: {
19314
+ [name: string]: unknown;
19315
+ };
19316
+ content: {
19317
+ "application/json": {
19318
+ data?: {
19319
+ /** @example 0dd08e9c-2b6f-4c31-acea-399984c1f537 */
19320
+ uid?: string;
19321
+ /** @example Accusantium aut suscipit ea suscipit illo ea doloribus neque. */
19322
+ note?: string;
19323
+ user?: {
19324
+ /** @example 20 */
19325
+ id?: number;
19326
+ /** @example Suzanne Morgan */
19327
+ name?: string;
19328
+ };
19329
+ /** @example 2026-04-18 03:00:21 */
19330
+ created_at?: string;
19331
+ };
19332
+ };
19333
+ };
19334
+ };
19335
+ };
19336
+ };
18826
19337
  listingHistoryMaintenance: {
18827
19338
  parameters: {
18828
19339
  query?: {
@@ -18873,8 +19384,26 @@ export interface operations {
18873
19384
  * "name": "Jane Doe"
18874
19385
  * },
18875
19386
  * "technician": null,
18876
- * "updates": [],
18877
- * "attachments": [],
19387
+ * "updates": [
19388
+ * {
19389
+ * "id": 1,
19390
+ * "note": "Inspection visit scheduled.",
19391
+ * "created_at": "2026-04-01T09:30:00Z",
19392
+ * "updated_at": "2026-04-01T09:30:00Z"
19393
+ * }
19394
+ * ],
19395
+ * "attachments": [
19396
+ * {
19397
+ * "uid": "mnt_34fda1",
19398
+ * "file_type": "image/jpeg",
19399
+ * "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
19400
+ * "uploaded_by": {
19401
+ * "id": 12,
19402
+ * "name": "Inspector Jane Doe"
19403
+ * },
19404
+ * "created_at": "2026-04-01T09:15:00Z"
19405
+ * }
19406
+ * ],
18878
19407
  * "created_at": "2026-04-01T10:00:00Z",
18879
19408
  * "updated_at": "2026-04-01T10:00:00Z"
18880
19409
  * }
@@ -18913,10 +19442,56 @@ export interface operations {
18913
19442
  };
18914
19443
  /** @example null */
18915
19444
  technician?: string | null;
18916
- /** @example [] */
18917
- updates?: unknown[];
18918
- /** @example [] */
18919
- attachments?: unknown[];
19445
+ /**
19446
+ * @example [
19447
+ * {
19448
+ * "id": 1,
19449
+ * "note": "Inspection visit scheduled.",
19450
+ * "created_at": "2026-04-01T09:30:00Z",
19451
+ * "updated_at": "2026-04-01T09:30:00Z"
19452
+ * }
19453
+ * ]
19454
+ */
19455
+ updates?: {
19456
+ /** @example 1 */
19457
+ id?: number;
19458
+ /** @example Inspection visit scheduled. */
19459
+ note?: string;
19460
+ /** @example 2026-04-01T09:30:00Z */
19461
+ created_at?: string;
19462
+ /** @example 2026-04-01T09:30:00Z */
19463
+ updated_at?: string;
19464
+ }[];
19465
+ /**
19466
+ * @example [
19467
+ * {
19468
+ * "uid": "mnt_34fda1",
19469
+ * "file_type": "image/jpeg",
19470
+ * "url": "http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg",
19471
+ * "uploaded_by": {
19472
+ * "id": 12,
19473
+ * "name": "Inspector Jane Doe"
19474
+ * },
19475
+ * "created_at": "2026-04-01T09:15:00Z"
19476
+ * }
19477
+ * ]
19478
+ */
19479
+ attachments?: {
19480
+ /** @example mnt_34fda1 */
19481
+ uid?: string;
19482
+ /** @example image/jpeg */
19483
+ file_type?: string;
19484
+ /** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
19485
+ url?: string;
19486
+ uploaded_by?: {
19487
+ /** @example 12 */
19488
+ id?: number;
19489
+ /** @example Inspector Jane Doe */
19490
+ name?: string;
19491
+ };
19492
+ /** @example 2026-04-01T09:15:00Z */
19493
+ created_at?: string;
19494
+ }[];
18920
19495
  /** @example 2026-04-01T10:00:00Z */
18921
19496
  created_at?: string;
18922
19497
  /** @example 2026-04-01T10:00:00Z */
@@ -18991,35 +19566,35 @@ export interface operations {
18991
19566
  /**
18992
19567
  * @example [
18993
19568
  * {
18994
- * "uid": "64b87ca7-1a9e-40b1-84ff-56fde4b53bad",
19569
+ * "uid": "6aa6e5e4-7ca5-464a-85fc-9ca2f8aec9af",
18995
19570
  * "title": "Quos velit et fugiat sunt nihil.",
18996
19571
  * "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.",
18997
19572
  * "status": "reported",
18998
19573
  * "priority": "emergency",
18999
- * "reported_at": "2026-04-15T20:11:44.000000Z",
19000
- * "assigned_at": "2026-04-20T16:31:36.000000Z",
19574
+ * "reported_at": "17 Apr 2026, 11:45 PM",
19575
+ * "assigned_at": "22 Apr 2026, 08:05 PM",
19001
19576
  * "completed_at": null,
19002
- * "sla_deadline": "2026-04-23T21:53:59.000000Z",
19003
- * "created_at": "2026-04-22T08:58:09.000000Z",
19004
- * "updated_at": "2026-04-22T08:58:09.000000Z"
19577
+ * "sla_deadline": "26 Apr 2026, 01:27 AM",
19578
+ * "created_at": "24 Apr 2026, 12:31 PM",
19579
+ * "updated_at": "24 Apr 2026, 12:31 PM"
19005
19580
  * },
19006
19581
  * {
19007
- * "uid": "0a949d07-0cc7-4bbc-b1a2-c364a1ab33f2",
19582
+ * "uid": "aaf3b7e2-ec9b-41b8-8a44-85ab0c1b8b09",
19008
19583
  * "title": "Fugit deleniti distinctio eum doloremque.",
19009
19584
  * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
19010
19585
  * "status": "completed",
19011
19586
  * "priority": "normal",
19012
- * "reported_at": "2026-04-18T08:50:09.000000Z",
19587
+ * "reported_at": "20 Apr 2026, 12:23 PM",
19013
19588
  * "assigned_at": null,
19014
19589
  * "completed_at": null,
19015
- * "sla_deadline": "2026-04-25T05:53:56.000000Z",
19016
- * "created_at": "2026-04-22T08:58:09.000000Z",
19017
- * "updated_at": "2026-04-22T08:58:09.000000Z"
19590
+ * "sla_deadline": "27 Apr 2026, 09:27 AM",
19591
+ * "created_at": "24 Apr 2026, 12:31 PM",
19592
+ * "updated_at": "24 Apr 2026, 12:31 PM"
19018
19593
  * }
19019
19594
  * ]
19020
19595
  */
19021
19596
  data?: {
19022
- /** @example 64b87ca7-1a9e-40b1-84ff-56fde4b53bad */
19597
+ /** @example 6aa6e5e4-7ca5-464a-85fc-9ca2f8aec9af */
19023
19598
  uid?: string;
19024
19599
  /** @example Quos velit et fugiat sunt nihil. */
19025
19600
  title?: string;
@@ -19029,17 +19604,17 @@ export interface operations {
19029
19604
  status?: string;
19030
19605
  /** @example emergency */
19031
19606
  priority?: string;
19032
- /** @example 2026-04-15T20:11:44.000000Z */
19607
+ /** @example 17 Apr 2026, 11:45 PM */
19033
19608
  reported_at?: string;
19034
- /** @example 2026-04-20T16:31:36.000000Z */
19609
+ /** @example 22 Apr 2026, 08:05 PM */
19035
19610
  assigned_at?: string;
19036
19611
  /** @example null */
19037
19612
  completed_at?: string | null;
19038
- /** @example 2026-04-23T21:53:59.000000Z */
19613
+ /** @example 26 Apr 2026, 01:27 AM */
19039
19614
  sla_deadline?: string;
19040
- /** @example 2026-04-22T08:58:09.000000Z */
19615
+ /** @example 24 Apr 2026, 12:31 PM */
19041
19616
  created_at?: string;
19042
- /** @example 2026-04-22T08:58:09.000000Z */
19617
+ /** @example 24 Apr 2026, 12:31 PM */
19043
19618
  updated_at?: string;
19044
19619
  }[];
19045
19620
  links?: {
@@ -19133,14 +19708,35 @@ export interface operations {
19133
19708
  };
19134
19709
  content: {
19135
19710
  "application/json": {
19711
+ /** @example Attachment added */
19712
+ message?: string;
19713
+ /** @example null */
19714
+ event?: string | null;
19136
19715
  data?: {
19137
- /** @example 9134ebb6-ff5d-4e99-8a33-db2498c0f74b */
19716
+ /** @example mnt_34fda1 */
19717
+ uid?: string;
19718
+ /** @example image/jpeg */
19719
+ file_type?: string;
19720
+ /** @example http://app.justinshome-backendcore.test/maintenance-attachments/maint_83fd12/2a7f4c3f-5f6b-4b4e-bb7a-7f6d0a9d3a11.jpg */
19721
+ url?: string;
19722
+ uploaded_by?: {
19723
+ /** @example 12 */
19724
+ id?: number;
19725
+ /** @example Inspector Jane Doe */
19726
+ name?: string;
19727
+ };
19728
+ /** @example 2026-04-01T09:15:00Z */
19729
+ created_at?: string;
19730
+ };
19731
+ } | {
19732
+ data?: {
19733
+ /** @example 0400d8fa-10f4-4322-9935-83c946afb044 */
19138
19734
  uid?: string;
19139
19735
  /** @example image */
19140
19736
  file_type?: string;
19141
- /** @example /storage/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
19737
+ /** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
19142
19738
  url?: string;
19143
- /** @example 2026-04-22T08:58:09.000000Z */
19739
+ /** @example 2026-04-24T12:31:36.000000Z */
19144
19740
  created_at?: string;
19145
19741
  };
19146
19742
  };
@@ -19185,7 +19781,7 @@ export interface operations {
19185
19781
  content: {
19186
19782
  "application/json": {
19187
19783
  data?: {
19188
- /** @example 52 */
19784
+ /** @example 61 */
19189
19785
  id?: number;
19190
19786
  /** @example property_inquiry */
19191
19787
  type?: string;
@@ -19193,7 +19789,7 @@ export interface operations {
19193
19789
  listing_id?: number;
19194
19790
  /** @example null */
19195
19791
  last_message_at?: string | null;
19196
- /** @example 2026-04-22T08:58:09.000000Z */
19792
+ /** @example 2026-04-24T12:31:36.000000Z */
19197
19793
  created_at?: string;
19198
19794
  };
19199
19795
  };
@@ -19219,23 +19815,23 @@ export interface operations {
19219
19815
  /**
19220
19816
  * @example [
19221
19817
  * {
19222
- * "id": 53,
19818
+ * "id": 62,
19223
19819
  * "type": "property_inquiry",
19224
19820
  * "listing_id": 2,
19225
19821
  * "last_message_at": null,
19226
- * "created_at": "2026-04-22T08:58:09.000000Z"
19822
+ * "created_at": "2026-04-24T12:31:36.000000Z"
19227
19823
  * },
19228
19824
  * {
19229
- * "id": 54,
19825
+ * "id": 63,
19230
19826
  * "type": "property_inquiry",
19231
19827
  * "listing_id": 2,
19232
19828
  * "last_message_at": null,
19233
- * "created_at": "2026-04-22T08:58:09.000000Z"
19829
+ * "created_at": "2026-04-24T12:31:36.000000Z"
19234
19830
  * }
19235
19831
  * ]
19236
19832
  */
19237
19833
  data?: {
19238
- /** @example 53 */
19834
+ /** @example 62 */
19239
19835
  id?: number;
19240
19836
  /** @example property_inquiry */
19241
19837
  type?: string;
@@ -19243,7 +19839,7 @@ export interface operations {
19243
19839
  listing_id?: number;
19244
19840
  /** @example null */
19245
19841
  last_message_at?: string | null;
19246
- /** @example 2026-04-22T08:58:09.000000Z */
19842
+ /** @example 2026-04-24T12:31:36.000000Z */
19247
19843
  created_at?: string;
19248
19844
  }[];
19249
19845
  links?: {
@@ -19561,27 +20157,27 @@ export interface operations {
19561
20157
  /**
19562
20158
  * @example [
19563
20159
  * {
19564
- * "id": "56447a8f-ac3b-4f08-bdb8-9d8fa6112c2b",
20160
+ * "id": "ee170a5d-b707-4ad6-a39f-8909f510a2e3",
19565
20161
  * "type": "APPOINTMENT_CREATED",
19566
20162
  * "title": "faker notification",
19567
20163
  * "body": "faker notification body",
19568
20164
  * "data": [],
19569
20165
  * "read_at": null,
19570
- * "created_at": "2026-04-22T08:58:09.000000Z"
20166
+ * "created_at": "2026-04-24T12:31:36.000000Z"
19571
20167
  * },
19572
20168
  * {
19573
- * "id": "52afd3f1-db3b-47d1-ab84-33e899f98e0f",
20169
+ * "id": "e54dccbf-81b8-453c-aa0c-3ecdfad0ef27",
19574
20170
  * "type": "APPOINTMENT_CREATED",
19575
20171
  * "title": "faker notification",
19576
20172
  * "body": "faker notification body",
19577
20173
  * "data": [],
19578
20174
  * "read_at": null,
19579
- * "created_at": "2026-04-22T08:58:09.000000Z"
20175
+ * "created_at": "2026-04-24T12:31:36.000000Z"
19580
20176
  * }
19581
20177
  * ]
19582
20178
  */
19583
20179
  data?: {
19584
- /** @example 56447a8f-ac3b-4f08-bdb8-9d8fa6112c2b */
20180
+ /** @example ee170a5d-b707-4ad6-a39f-8909f510a2e3 */
19585
20181
  id?: string;
19586
20182
  /** @example APPOINTMENT_CREATED */
19587
20183
  type?: string;
@@ -19593,7 +20189,7 @@ export interface operations {
19593
20189
  data?: unknown[];
19594
20190
  /** @example null */
19595
20191
  read_at?: string | null;
19596
- /** @example 2026-04-22T08:58:09.000000Z */
20192
+ /** @example 2026-04-24T12:31:36.000000Z */
19597
20193
  created_at?: string;
19598
20194
  }[];
19599
20195
  links?: {
@@ -19677,7 +20273,7 @@ export interface operations {
19677
20273
  };
19678
20274
  content: {
19679
20275
  "application/json": {
19680
- /** @example 8bdefc89-26c8-48b1-88d4-0dd71a0581a3 */
20276
+ /** @example 3730c90e-9965-41db-b6d2-47afd8fcd317 */
19681
20277
  id?: string;
19682
20278
  /** @example APPOINTMENT_CREATED */
19683
20279
  type?: string;
@@ -19689,7 +20285,7 @@ export interface operations {
19689
20285
  data?: unknown[];
19690
20286
  /** @example null */
19691
20287
  read_at?: string | null;
19692
- /** @example 2026-04-22T08:58:09.000000Z */
20288
+ /** @example 2026-04-24T12:31:36.000000Z */
19693
20289
  created_at?: string;
19694
20290
  };
19695
20291
  };
@@ -19938,45 +20534,45 @@ export interface operations {
19938
20534
  /**
19939
20535
  * @example [
19940
20536
  * {
19941
- * "id": 103,
20537
+ * "id": 121,
19942
20538
  * "rating": 1,
19943
20539
  * "comment": "Nice Listing",
19944
20540
  * "reviewer": {
19945
- * "id": 5,
19946
- * "name": "Mary Hall"
20541
+ * "id": 25,
20542
+ * "name": "Jayden Ward"
19947
20543
  * },
19948
- * "created_at": "2026-04-22T08:58:09+00:00",
19949
- * "updated_at": "2026-04-22T08:58:09+00:00"
20544
+ * "created_at": "2026-04-24T12:31:36+00:00",
20545
+ * "updated_at": "2026-04-24T12:31:36+00:00"
19950
20546
  * },
19951
20547
  * {
19952
- * "id": 104,
20548
+ * "id": 122,
19953
20549
  * "rating": 1,
19954
20550
  * "comment": "Nice Listing",
19955
20551
  * "reviewer": {
19956
- * "id": 18,
19957
- * "name": "Wayne Davies"
20552
+ * "id": 2,
20553
+ * "name": "dogunfx"
19958
20554
  * },
19959
- * "created_at": "2026-04-22T08:58:09+00:00",
19960
- * "updated_at": "2026-04-22T08:58:09+00:00"
20555
+ * "created_at": "2026-04-24T12:31:36+00:00",
20556
+ * "updated_at": "2026-04-24T12:31:36+00:00"
19961
20557
  * }
19962
20558
  * ]
19963
20559
  */
19964
20560
  data?: {
19965
- /** @example 103 */
20561
+ /** @example 121 */
19966
20562
  id?: number;
19967
20563
  /** @example 1 */
19968
20564
  rating?: number;
19969
20565
  /** @example Nice Listing */
19970
20566
  comment?: string;
19971
20567
  reviewer?: {
19972
- /** @example 5 */
20568
+ /** @example 25 */
19973
20569
  id?: number;
19974
- /** @example Mary Hall */
20570
+ /** @example Jayden Ward */
19975
20571
  name?: string;
19976
20572
  };
19977
- /** @example 2026-04-22T08:58:09+00:00 */
20573
+ /** @example 2026-04-24T12:31:36+00:00 */
19978
20574
  created_at?: string;
19979
- /** @example 2026-04-22T08:58:09+00:00 */
20575
+ /** @example 2026-04-24T12:31:36+00:00 */
19980
20576
  updated_at?: string;
19981
20577
  }[];
19982
20578
  links?: {
@@ -20130,21 +20726,21 @@ export interface operations {
20130
20726
  content: {
20131
20727
  "application/json": {
20132
20728
  data?: {
20133
- /** @example 105 */
20729
+ /** @example 123 */
20134
20730
  id?: number;
20135
20731
  /** @example 1 */
20136
20732
  rating?: number;
20137
20733
  /** @example Nice Listing */
20138
20734
  comment?: string;
20139
20735
  reviewer?: {
20140
- /** @example 13 */
20736
+ /** @example 12 */
20141
20737
  id?: number;
20142
- /** @example Matthew Campbell */
20738
+ /** @example Tara Marshall */
20143
20739
  name?: string;
20144
20740
  };
20145
- /** @example 2026-04-22T08:58:09+00:00 */
20741
+ /** @example 2026-04-24T12:31:36+00:00 */
20146
20742
  created_at?: string;
20147
- /** @example 2026-04-22T08:58:09+00:00 */
20743
+ /** @example 2026-04-24T12:31:36+00:00 */
20148
20744
  updated_at?: string;
20149
20745
  };
20150
20746
  };
@@ -20188,21 +20784,21 @@ export interface operations {
20188
20784
  content: {
20189
20785
  "application/json": {
20190
20786
  data?: {
20191
- /** @example 106 */
20787
+ /** @example 124 */
20192
20788
  id?: number;
20193
20789
  /** @example 1 */
20194
20790
  rating?: number;
20195
20791
  /** @example Nice Listing */
20196
20792
  comment?: string;
20197
20793
  reviewer?: {
20198
- /** @example 21 */
20794
+ /** @example 1 */
20199
20795
  id?: number;
20200
- /** @example Isla Simpson */
20796
+ /** @example System Admin */
20201
20797
  name?: string;
20202
20798
  };
20203
- /** @example 2026-04-22T08:58:09+00:00 */
20799
+ /** @example 2026-04-24T12:31:36+00:00 */
20204
20800
  created_at?: string;
20205
- /** @example 2026-04-22T08:58:09+00:00 */
20801
+ /** @example 2026-04-24T12:31:36+00:00 */
20206
20802
  updated_at?: string;
20207
20803
  };
20208
20804
  };
@@ -20244,21 +20840,21 @@ export interface operations {
20244
20840
  content: {
20245
20841
  "application/json": {
20246
20842
  data?: {
20247
- /** @example 107 */
20843
+ /** @example 125 */
20248
20844
  id?: number;
20249
20845
  /** @example 1 */
20250
20846
  rating?: number;
20251
20847
  /** @example Nice Listing */
20252
20848
  comment?: string;
20253
20849
  reviewer?: {
20254
- /** @example 13 */
20850
+ /** @example 25 */
20255
20851
  id?: number;
20256
- /** @example Matthew Campbell */
20852
+ /** @example Jayden Ward */
20257
20853
  name?: string;
20258
20854
  };
20259
- /** @example 2026-04-22T08:58:09+00:00 */
20855
+ /** @example 2026-04-24T12:31:36+00:00 */
20260
20856
  created_at?: string;
20261
- /** @example 2026-04-22T08:58:09+00:00 */
20857
+ /** @example 2026-04-24T12:31:36+00:00 */
20262
20858
  updated_at?: string;
20263
20859
  };
20264
20860
  };
@@ -20285,21 +20881,21 @@ export interface operations {
20285
20881
  content: {
20286
20882
  "application/json": {
20287
20883
  data?: {
20288
- /** @example 108 */
20884
+ /** @example 126 */
20289
20885
  id?: number;
20290
20886
  /** @example 1 */
20291
20887
  rating?: number;
20292
20888
  /** @example Nice Listing */
20293
20889
  comment?: string;
20294
20890
  reviewer?: {
20295
- /** @example 25 */
20891
+ /** @example 12 */
20296
20892
  id?: number;
20297
- /** @example Jayden Ward */
20893
+ /** @example Tara Marshall */
20298
20894
  name?: string;
20299
20895
  };
20300
- /** @example 2026-04-22T08:58:09+00:00 */
20896
+ /** @example 2026-04-24T12:31:36+00:00 */
20301
20897
  created_at?: string;
20302
- /** @example 2026-04-22T08:58:09+00:00 */
20898
+ /** @example 2026-04-24T12:31:36+00:00 */
20303
20899
  updated_at?: string;
20304
20900
  };
20305
20901
  };
@@ -20326,7 +20922,7 @@ export interface operations {
20326
20922
  content: {
20327
20923
  "application/json": {
20328
20924
  data?: {
20329
- /** @example 5406cc18-8fce-4413-9b4e-5cdb77a56d52 */
20925
+ /** @example 02962982-f89f-40da-ac21-0bebebd01f38 */
20330
20926
  uid?: string;
20331
20927
  /** @example 1 */
20332
20928
  listing_id?: number;
@@ -20334,15 +20930,15 @@ export interface operations {
20334
20930
  landlord_id?: number;
20335
20931
  /** @example 2 */
20336
20932
  tenant_id?: number;
20337
- /** @example 2522.04 */
20933
+ /** @example 4881.50 */
20338
20934
  rent_amount?: string;
20339
- /** @example 1725.30 */
20935
+ /** @example 2151.17 */
20340
20936
  deposit_amount?: string;
20341
- /** @example terminated */
20937
+ /** @example offer_accepted */
20342
20938
  state?: string;
20343
- /** @example 2026-01-21T00:00:00.000000Z */
20939
+ /** @example 2025-10-30T00:00:00.000000Z */
20344
20940
  start_date?: string;
20345
- /** @example 2027-01-21T00:00:00.000000Z */
20941
+ /** @example 2026-10-30T00:00:00.000000Z */
20346
20942
  end_date?: string;
20347
20943
  /** @example false */
20348
20944
  is_periodic?: boolean;
@@ -20350,7 +20946,7 @@ export interface operations {
20350
20946
  company_name?: string | null;
20351
20947
  /** @example null */
20352
20948
  company_registration_number?: string | null;
20353
- /** @example 2026-04-22T08:58:09.000000Z */
20949
+ /** @example 2026-04-24T12:31:36.000000Z */
20354
20950
  created_at?: string;
20355
20951
  /** @example [] */
20356
20952
  compliances?: unknown[];
@@ -20427,7 +21023,7 @@ export interface operations {
20427
21023
  content: {
20428
21024
  "application/json": {
20429
21025
  data?: {
20430
- /** @example bc0b56c9-5467-41c9-aad8-e1b3deb1baa5 */
21026
+ /** @example 9bfc4ffc-c247-4b24-8d72-a6f627b26cf9 */
20431
21027
  uid?: string;
20432
21028
  /** @example 1 */
20433
21029
  listing_id?: number;
@@ -20441,9 +21037,9 @@ export interface operations {
20441
21037
  deposit_amount?: string;
20442
21038
  /** @example active */
20443
21039
  state?: string;
20444
- /** @example 2025-10-07T00:00:00.000000Z */
21040
+ /** @example 2025-10-10T00:00:00.000000Z */
20445
21041
  start_date?: string;
20446
- /** @example 2026-10-07T00:00:00.000000Z */
21042
+ /** @example 2026-10-10T00:00:00.000000Z */
20447
21043
  end_date?: string;
20448
21044
  /** @example true */
20449
21045
  is_periodic?: boolean;
@@ -20451,7 +21047,7 @@ export interface operations {
20451
21047
  company_name?: string | null;
20452
21048
  /** @example null */
20453
21049
  company_registration_number?: string | null;
20454
- /** @example 2026-04-22T08:58:09.000000Z */
21050
+ /** @example 2026-04-24T12:31:36.000000Z */
20455
21051
  created_at?: string;
20456
21052
  };
20457
21053
  };
@@ -20745,7 +21341,7 @@ export interface operations {
20745
21341
  * "changed_by_user_id": 3,
20746
21342
  * "changed_by_name": "Teagan King",
20747
21343
  * "comment": "Qui commodi incidunt iure odit.",
20748
- * "created_at": "2025-12-14T19:45:08.000000Z"
21344
+ * "created_at": "2025-12-16T23:18:35.000000Z"
20749
21345
  * },
20750
21346
  * {
20751
21347
  * "from_state": "pre_move_in_ready",
@@ -20753,7 +21349,7 @@ export interface operations {
20753
21349
  * "changed_by_user_id": 3,
20754
21350
  * "changed_by_name": "Teagan King",
20755
21351
  * "comment": null,
20756
- * "created_at": "2025-10-31T03:40:48.000000Z"
21352
+ * "created_at": "2025-11-02T07:14:15.000000Z"
20757
21353
  * }
20758
21354
  * ]
20759
21355
  */
@@ -20768,7 +21364,7 @@ export interface operations {
20768
21364
  changed_by_name?: string;
20769
21365
  /** @example Qui commodi incidunt iure odit. */
20770
21366
  comment?: string;
20771
- /** @example 2025-12-14T19:45:08.000000Z */
21367
+ /** @example 2025-12-16T23:18:35.000000Z */
20772
21368
  created_at?: string;
20773
21369
  }[];
20774
21370
  };
@@ -21012,7 +21608,7 @@ export interface operations {
21012
21608
  content: {
21013
21609
  "application/json": {
21014
21610
  data?: {
21015
- /** @example 523d5c06-3dad-4188-9213-05f2969e8f65 */
21611
+ /** @example b5c8cfcb-aba3-4be3-b546-d01facc98258 */
21016
21612
  uid?: string;
21017
21613
  /** @example Ms. Audra Crooks II */
21018
21614
  username?: string;
@@ -21042,7 +21638,7 @@ export interface operations {
21042
21638
  timezone?: string;
21043
21639
  /** @example Customer */
21044
21640
  user_type?: string;
21045
- /** @example 22 Apr 2026, 08:58 AM */
21641
+ /** @example 24 Apr 2026, 12:31 PM */
21046
21642
  created?: string;
21047
21643
  /** @example 0 seconds ago */
21048
21644
  email_verified_at?: string;
@@ -21141,7 +21737,7 @@ export interface operations {
21141
21737
  content: {
21142
21738
  "application/json": {
21143
21739
  data?: {
21144
- /** @example ffa87fc8-f616-41f8-9a73-befb80791b10 */
21740
+ /** @example fa0cb90d-8336-4745-ae53-7019aa57aeaa */
21145
21741
  uid?: string;
21146
21742
  /** @example Morgan Hirthe */
21147
21743
  username?: string;
@@ -21171,7 +21767,7 @@ export interface operations {
21171
21767
  timezone?: string;
21172
21768
  /** @example Customer */
21173
21769
  user_type?: string;
21174
- /** @example 22 Apr 2026, 08:58 AM */
21770
+ /** @example 24 Apr 2026, 12:31 PM */
21175
21771
  created?: string;
21176
21772
  /** @example 0 seconds ago */
21177
21773
  email_verified_at?: string;
@@ -21243,7 +21839,7 @@ export interface operations {
21243
21839
  content: {
21244
21840
  "application/json": {
21245
21841
  data?: {
21246
- /** @example c5ea30db-a890-4139-8910-97acd60751a6 */
21842
+ /** @example d32027b8-2f40-4392-a3a5-979e953487e0 */
21247
21843
  uid?: string;
21248
21844
  /** @example Ms. Audra Crooks II */
21249
21845
  username?: string;
@@ -21273,7 +21869,7 @@ export interface operations {
21273
21869
  timezone?: string;
21274
21870
  /** @example Customer */
21275
21871
  user_type?: string;
21276
- /** @example 22 Apr 2026, 08:58 AM */
21872
+ /** @example 24 Apr 2026, 12:31 PM */
21277
21873
  created?: string;
21278
21874
  /** @example 0 seconds ago */
21279
21875
  email_verified_at?: string;
@@ -21507,13 +22103,13 @@ export interface operations {
21507
22103
  content: {
21508
22104
  "application/json": {
21509
22105
  data?: {
21510
- /** @example 9 */
22106
+ /** @example 0 */
21511
22107
  current_level?: number;
21512
22108
  /** @example 3 */
21513
22109
  completed_layers?: number;
21514
- /** @example 2 */
22110
+ /** @example 4 */
21515
22111
  pending_layers?: number;
21516
- /** @example 22 Apr 2026, 08:58 AM */
22112
+ /** @example 24 Apr 2026, 12:31 PM */
21517
22113
  last_calculated_at?: string;
21518
22114
  };
21519
22115
  };
@@ -21561,7 +22157,7 @@ export interface operations {
21561
22157
  completed_layers?: number;
21562
22158
  /** @example 4 */
21563
22159
  pending_layers?: number;
21564
- /** @example 22 Apr 2026, 08:58 AM */
22160
+ /** @example 24 Apr 2026, 12:31 PM */
21565
22161
  last_calculated_at?: string;
21566
22162
  };
21567
22163
  };
@@ -21595,14 +22191,14 @@ export interface operations {
21595
22191
  content: {
21596
22192
  "application/json": {
21597
22193
  data?: {
21598
- /** @example 7aa5a010-41dc-4509-9d5b-9c0db181a995 */
22194
+ /** @example 279b2b8d-caa9-4bbb-9adc-6547d4199b55 */
21599
22195
  wishlist_uid?: string;
21600
22196
  listing?: {
21601
- /** @example New For Sale Used Item draft • 22 Apr 2026, 8:58 AM */
22197
+ /** @example New For Sale Used Item draft • 24 Apr 2026, 12:31 PM */
21602
22198
  draft_name?: string;
21603
- /** @example LST-UIT-SAL-MO9TLEXW37Z */
22199
+ /** @example LST-UIT-SAL-MOCW3M82AXB */
21604
22200
  sku?: string;
21605
- /** @example 7fb861c8-3d57-446d-b803-51582a735868 */
22201
+ /** @example 4e1ddc87-ee47-4c0a-b639-ec7ef07eb49a */
21606
22202
  uid?: string;
21607
22203
  /** @example Sale */
21608
22204
  listing_type?: string;
@@ -21686,15 +22282,15 @@ export interface operations {
21686
22282
  /**
21687
22283
  * @example [
21688
22284
  * {
21689
- * "wishlist_uid": "00ffcf69-6055-4f4c-86aa-8e7f5ffc88d4"
22285
+ * "wishlist_uid": "6ceaeade-1a2e-434c-977e-14aaa87f4d2d"
21690
22286
  * },
21691
22287
  * {
21692
- * "wishlist_uid": "6a2bab81-04cb-450d-b083-32b438082fd6"
22288
+ * "wishlist_uid": "262f5058-0709-49d9-9e71-cc6f37b1dc1d"
21693
22289
  * }
21694
22290
  * ]
21695
22291
  */
21696
22292
  data?: {
21697
- /** @example 00ffcf69-6055-4f4c-86aa-8e7f5ffc88d4 */
22293
+ /** @example 6ceaeade-1a2e-434c-977e-14aaa87f4d2d */
21698
22294
  wishlist_uid?: string;
21699
22295
  }[];
21700
22296
  links?: {
@@ -21760,6 +22356,53 @@ export interface operations {
21760
22356
  };
21761
22357
  };
21762
22358
  };
22359
+ addMaintenanceUpdate: {
22360
+ parameters: {
22361
+ query?: never;
22362
+ header?: never;
22363
+ path: {
22364
+ /** @description The UID of the maintenance request. */
22365
+ maintenance_uid: string;
22366
+ };
22367
+ cookie?: never;
22368
+ };
22369
+ requestBody: {
22370
+ content: {
22371
+ "application/json": {
22372
+ /**
22373
+ * @description Update note for the maintenance request. Must not be greater than 2000 characters.
22374
+ * @example b
22375
+ */
22376
+ note: string;
22377
+ };
22378
+ };
22379
+ };
22380
+ responses: {
22381
+ 200: {
22382
+ headers: {
22383
+ [name: string]: unknown;
22384
+ };
22385
+ content: {
22386
+ "application/json": {
22387
+ data?: {
22388
+ /** @example 0dd08e9c-2b6f-4c31-acea-399984c1f537 */
22389
+ uid?: string;
22390
+ /** @example Accusantium aut suscipit ea suscipit illo ea doloribus neque. */
22391
+ note?: string;
22392
+ user?: {
22393
+ /** @example 20 */
22394
+ id?: number;
22395
+ /** @example Suzanne Morgan */
22396
+ name?: string;
22397
+ };
22398
+ /** @example 2026-04-18 03:00:21 */
22399
+ created_at?: string;
22400
+ };
22401
+ };
22402
+ };
22403
+ };
22404
+ };
22405
+ };
21763
22406
  fetchFlowUserVerification: {
21764
22407
  parameters: {
21765
22408
  query?: never;
@@ -21782,7 +22425,7 @@ export interface operations {
21782
22425
  completed_layers?: number;
21783
22426
  /** @example 4 */
21784
22427
  pending_layers?: number;
21785
- /** @example 22 Apr 2026, 08:58 AM */
22428
+ /** @example 24 Apr 2026, 12:31 PM */
21786
22429
  last_calculated_at?: string;
21787
22430
  };
21788
22431
  };
@@ -21944,7 +22587,7 @@ export interface operations {
21944
22587
  completed_layers?: number;
21945
22588
  /** @example 4 */
21946
22589
  pending_layers?: number;
21947
- /** @example 22 Apr 2026, 08:58 AM */
22590
+ /** @example 24 Apr 2026, 12:31 PM */
21948
22591
  last_calculated_at?: string;
21949
22592
  };
21950
22593
  };