@justins-home/types 1.1.32 → 1.1.34

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 +903 -367
  2. package/package.json +1 -1
@@ -676,6 +676,29 @@ export interface paths {
676
676
  patch?: never;
677
677
  trace?: never;
678
678
  };
679
+ "/api/v1/portal/admin/listing/{listing_uid}/arrangement-type": {
680
+ parameters: {
681
+ query?: never;
682
+ header?: never;
683
+ path: {
684
+ /** @description The UID of the listing. */
685
+ listing_uid: string;
686
+ };
687
+ cookie?: never;
688
+ };
689
+ get?: never;
690
+ put?: never;
691
+ /**
692
+ * saveArrangementTypeAdmin
693
+ * @description Save or update arrangement type for a listing as an admin.
694
+ */
695
+ post: operations["saveArrangementTypeAdmin"];
696
+ delete?: never;
697
+ options?: never;
698
+ head?: never;
699
+ patch?: never;
700
+ trace?: never;
701
+ };
679
702
  "/api/v1/portal/admin/listing/{listing_uid}/listing-details": {
680
703
  parameters: {
681
704
  query?: never;
@@ -699,6 +722,29 @@ export interface paths {
699
722
  patch?: never;
700
723
  trace?: never;
701
724
  };
725
+ "/api/v1/portal/admin/listing/{listing_uid}/listing-policy": {
726
+ parameters: {
727
+ query?: never;
728
+ header?: never;
729
+ path: {
730
+ /** @description The UID of the listing. */
731
+ listing_uid: string;
732
+ };
733
+ cookie?: never;
734
+ };
735
+ get?: never;
736
+ put?: never;
737
+ /**
738
+ * saveListingPolicyAdmin
739
+ * @description Save or update listing policy configuration as an admin.
740
+ */
741
+ post: operations["saveListingPolicyAdmin"];
742
+ delete?: never;
743
+ options?: never;
744
+ head?: never;
745
+ patch?: never;
746
+ trace?: never;
747
+ };
702
748
  "/api/v1/portal/admin/listing/{listing_uid}/property-basics": {
703
749
  parameters: {
704
750
  query?: never;
@@ -2213,6 +2259,29 @@ export interface paths {
2213
2259
  patch?: never;
2214
2260
  trace?: never;
2215
2261
  };
2262
+ "/api/v1/portal/admin/compliances/{compliance_id}/assign-to-arrangement-type": {
2263
+ parameters: {
2264
+ query?: never;
2265
+ header?: never;
2266
+ path: {
2267
+ /** @description The ID of the compliance definition. */
2268
+ compliance_id: number;
2269
+ };
2270
+ cookie?: never;
2271
+ };
2272
+ get?: never;
2273
+ put?: never;
2274
+ /**
2275
+ * assignComplianceToArrangementType
2276
+ * @description Assign a compliance definition to a specific arrangement type.
2277
+ */
2278
+ post: operations["assignComplianceToArrangementType"];
2279
+ delete?: never;
2280
+ options?: never;
2281
+ head?: never;
2282
+ patch?: never;
2283
+ trace?: never;
2284
+ };
2216
2285
  "/api/v1/portal/admin/inspections/fetch-history/{listing_uid}": {
2217
2286
  parameters: {
2218
2287
  query?: never;
@@ -3258,6 +3327,29 @@ export interface paths {
3258
3327
  patch?: never;
3259
3328
  trace?: never;
3260
3329
  };
3330
+ "/api/v1/portal/landlord/listing/{listing_uid}/arrangement-type": {
3331
+ parameters: {
3332
+ query?: never;
3333
+ header?: never;
3334
+ path: {
3335
+ /** @description The UID of the listing. */
3336
+ listing_uid: string;
3337
+ };
3338
+ cookie?: never;
3339
+ };
3340
+ get?: never;
3341
+ put?: never;
3342
+ /**
3343
+ * saveArrangementType
3344
+ * @description Save or update arrangement type for a listing.
3345
+ */
3346
+ post: operations["saveArrangementType"];
3347
+ delete?: never;
3348
+ options?: never;
3349
+ head?: never;
3350
+ patch?: never;
3351
+ trace?: never;
3352
+ };
3261
3353
  "/api/v1/portal/landlord/listing/drafts": {
3262
3354
  parameters: {
3263
3355
  query?: never;
@@ -3365,6 +3457,29 @@ export interface paths {
3365
3457
  patch?: never;
3366
3458
  trace?: never;
3367
3459
  };
3460
+ "/api/v1/portal/landlord/listing/{listing_uid}/listing-policy": {
3461
+ parameters: {
3462
+ query?: never;
3463
+ header?: never;
3464
+ path: {
3465
+ /** @description The UID of the listing. */
3466
+ listing_uid: string;
3467
+ };
3468
+ cookie?: never;
3469
+ };
3470
+ get?: never;
3471
+ put?: never;
3472
+ /**
3473
+ * saveListingPolicy
3474
+ * @description Save or update listing policy configuration.
3475
+ */
3476
+ post: operations["saveListingPolicy"];
3477
+ delete?: never;
3478
+ options?: never;
3479
+ head?: never;
3480
+ patch?: never;
3481
+ trace?: never;
3482
+ };
3368
3483
  "/api/v1/portal/landlord/listing/{listing_uid}/property-basics": {
3369
3484
  parameters: {
3370
3485
  query?: never;
@@ -5513,7 +5628,7 @@ export interface operations {
5513
5628
  content: {
5514
5629
  "application/json": {
5515
5630
  data?: {
5516
- /** @example b6fa4e40-9225-4d43-8bbe-b5ae92caad14 */
5631
+ /** @example b2904421-4c96-444b-92c0-17c7f5066e55 */
5517
5632
  uid?: string;
5518
5633
  /** @example Ms. Audra Crooks II */
5519
5634
  username?: string;
@@ -5543,7 +5658,7 @@ export interface operations {
5543
5658
  timezone?: string;
5544
5659
  /** @example Customer */
5545
5660
  user_type?: string;
5546
- /** @example 09 Apr 2026, 03:59 PM */
5661
+ /** @example 10 Apr 2026, 11:21 PM */
5547
5662
  created?: string;
5548
5663
  /** @example 0 seconds ago */
5549
5664
  email_verified_at?: string;
@@ -5783,6 +5898,8 @@ export interface operations {
5783
5898
  * @enum {string}
5784
5899
  */
5785
5900
  listing_vertical: "property" | "used_item";
5901
+ /** @example null */
5902
+ arrangement_type?: string;
5786
5903
  };
5787
5904
  };
5788
5905
  };
@@ -5794,16 +5911,20 @@ export interface operations {
5794
5911
  content: {
5795
5912
  "application/json": {
5796
5913
  data?: {
5797
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
5914
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
5798
5915
  draft_name?: string;
5799
- /** @example LST-PRP-LTR-MNRNXPY2IAZ */
5916
+ /** @example LST-PRP-LTR-MNTJ53FNMV2 */
5800
5917
  sku?: string;
5801
- /** @example 524412af-7521-41b4-aed4-a52d6b1c375c */
5918
+ /** @example 3c7440a3-96a2-4d82-ab23-c600b520118b */
5802
5919
  uid?: string;
5803
5920
  /** @example Rent */
5804
5921
  listing_type?: string;
5805
5922
  /** @example Property */
5806
5923
  vertical?: string;
5924
+ /** @example let_to_let */
5925
+ arrangement_type?: string;
5926
+ /** @example Let to Let */
5927
+ arrangement_type_label?: string;
5807
5928
  /** @example null */
5808
5929
  price?: string | null;
5809
5930
  /** @example draft */
@@ -6991,7 +7112,7 @@ export interface operations {
6991
7112
  parameters: {
6992
7113
  query?: {
6993
7114
  /** @description Filter by activity action. */
6994
- action?: "inspection_completed" | "landlord_verified" | "payment_processed" | "New Login" | "Reset Password" | "MAINTENANCE" | "Verification" | "Listing" | "listing_draft_created" | "listing_draft_name_updated" | "listing_details_saved" | "listing_property_basics_saved" | "listing_pricing_saved" | "listing_rental_details_saved" | "listing_short_let_details_saved" | "listing_item_details_saved" | "listing_tenant_preferences_saved" | "listing_viewing_availability_saved" | "listing_features_updated" | "listing_media_uploaded" | "listing_media_reordered" | "listing_media_cover_set" | "listing_media_deleted" | "listing_submitted" | "listing_approved" | "listing_rejected" | "listing_unpublished" | "listing_republished" | "listing_compliance_submitted" | "listing_compliance_approved" | "listing_compliance_rejected" | "user_registered" | "user_logged_out" | "user_force_logged_out" | "user_two_factor_otp_requested" | "user_two_factor_enabled" | "user_two_factor_disabled" | "user_avatar_updated" | "user_status_updated" | "user_profile_updated" | "user_email_verification_otp_requested" | "user_email_verified" | "user_verification_submitted" | "user_verification_approved" | "user_verification_rejected" | "user_verification_reset" | "user_plan_assigned" | "user_plan_deactivated" | null;
7115
+ action?: "inspection_completed" | "landlord_verified" | "payment_processed" | "New Login" | "Reset Password" | "MAINTENANCE" | "Verification" | "Listing" | "listing_draft_created" | "listing_draft_name_updated" | "listing_arrangement_type_saved" | "listing_details_saved" | "listing_policy_saved" | "listing_property_basics_saved" | "listing_pricing_saved" | "listing_rental_details_saved" | "listing_short_let_details_saved" | "listing_item_details_saved" | "listing_tenant_preferences_saved" | "listing_viewing_availability_saved" | "listing_features_updated" | "listing_media_uploaded" | "listing_media_reordered" | "listing_media_cover_set" | "listing_media_deleted" | "listing_submitted" | "listing_approved" | "listing_rejected" | "listing_unpublished" | "listing_republished" | "listing_compliance_submitted" | "listing_compliance_approved" | "listing_compliance_rejected" | "user_registered" | "user_logged_out" | "user_force_logged_out" | "user_two_factor_otp_requested" | "user_two_factor_enabled" | "user_two_factor_disabled" | "user_avatar_updated" | "user_status_updated" | "user_profile_updated" | "user_email_verification_otp_requested" | "user_email_verified" | "user_verification_submitted" | "user_verification_approved" | "user_verification_rejected" | "user_verification_reset" | "user_plan_assigned" | "user_plan_deactivated" | null;
6995
7116
  /** @description Filter logs created from this date/time. Must be a valid date. */
6996
7117
  from?: string | null;
6997
7118
  /** @description Filter logs created up to this date/time. Must be a valid date. */
@@ -7080,7 +7201,7 @@ export interface operations {
7080
7201
  fetchUserAuditLogsByActionAdmin: {
7081
7202
  parameters: {
7082
7203
  query: {
7083
- action: "inspection_completed" | "landlord_verified" | "payment_processed" | "New Login" | "Reset Password" | "MAINTENANCE" | "Verification" | "Listing" | "listing_draft_created" | "listing_draft_name_updated" | "listing_details_saved" | "listing_property_basics_saved" | "listing_pricing_saved" | "listing_rental_details_saved" | "listing_short_let_details_saved" | "listing_item_details_saved" | "listing_tenant_preferences_saved" | "listing_viewing_availability_saved" | "listing_features_updated" | "listing_media_uploaded" | "listing_media_reordered" | "listing_media_cover_set" | "listing_media_deleted" | "listing_submitted" | "listing_approved" | "listing_rejected" | "listing_unpublished" | "listing_republished" | "listing_compliance_submitted" | "listing_compliance_approved" | "listing_compliance_rejected" | "user_registered" | "user_logged_out" | "user_force_logged_out" | "user_two_factor_otp_requested" | "user_two_factor_enabled" | "user_two_factor_disabled" | "user_avatar_updated" | "user_status_updated" | "user_profile_updated" | "user_email_verification_otp_requested" | "user_email_verified" | "user_verification_submitted" | "user_verification_approved" | "user_verification_rejected" | "user_verification_reset" | "user_plan_assigned" | "user_plan_deactivated";
7204
+ action: "inspection_completed" | "landlord_verified" | "payment_processed" | "New Login" | "Reset Password" | "MAINTENANCE" | "Verification" | "Listing" | "listing_draft_created" | "listing_draft_name_updated" | "listing_arrangement_type_saved" | "listing_details_saved" | "listing_policy_saved" | "listing_property_basics_saved" | "listing_pricing_saved" | "listing_rental_details_saved" | "listing_short_let_details_saved" | "listing_item_details_saved" | "listing_tenant_preferences_saved" | "listing_viewing_availability_saved" | "listing_features_updated" | "listing_media_uploaded" | "listing_media_reordered" | "listing_media_cover_set" | "listing_media_deleted" | "listing_submitted" | "listing_approved" | "listing_rejected" | "listing_unpublished" | "listing_republished" | "listing_compliance_submitted" | "listing_compliance_approved" | "listing_compliance_rejected" | "user_registered" | "user_logged_out" | "user_force_logged_out" | "user_two_factor_otp_requested" | "user_two_factor_enabled" | "user_two_factor_disabled" | "user_avatar_updated" | "user_status_updated" | "user_profile_updated" | "user_email_verification_otp_requested" | "user_email_verified" | "user_verification_submitted" | "user_verification_approved" | "user_verification_rejected" | "user_verification_reset" | "user_plan_assigned" | "user_plan_deactivated";
7084
7205
  /** @description Number of records per page. Must be at least 1. Must not be greater than 100. */
7085
7206
  per_page?: number | null;
7086
7207
  /** @description The current page number. Must be at least 1. */
@@ -7221,7 +7342,7 @@ export interface operations {
7221
7342
  content: {
7222
7343
  "application/json": {
7223
7344
  data?: {
7224
- /** @example 58260fd1-34ce-4954-b4a3-73219faa5b9f */
7345
+ /** @example 51aa2aa1-9d73-4972-828a-5cd1e9103483 */
7225
7346
  uid?: string;
7226
7347
  /** @example Morgan Hirthe */
7227
7348
  username?: string;
@@ -7251,7 +7372,7 @@ export interface operations {
7251
7372
  timezone?: string;
7252
7373
  /** @example Customer */
7253
7374
  user_type?: string;
7254
- /** @example 09 Apr 2026, 03:59 PM */
7375
+ /** @example 10 Apr 2026, 11:21 PM */
7255
7376
  created?: string;
7256
7377
  /** @example 0 seconds ago */
7257
7378
  email_verified_at?: string;
@@ -7512,6 +7633,10 @@ export interface operations {
7512
7633
  listing_type?: string;
7513
7634
  /** @example Property */
7514
7635
  vertical?: string;
7636
+ /** @example short_term_managed */
7637
+ arrangement_type?: string;
7638
+ /** @example Short Term Managed */
7639
+ arrangement_type_label?: string;
7515
7640
  owner?: {
7516
7641
  /** @example 995bab94-174a-4a7c-a8ed-65c951f0198f */
7517
7642
  uid?: string;
@@ -7645,6 +7770,28 @@ export interface operations {
7645
7770
  fixed_term_length?: string | null;
7646
7771
  /** @example null */
7647
7772
  availability_date?: string | null;
7773
+ /** @example false */
7774
+ is_company_lease?: boolean;
7775
+ /** @example false */
7776
+ is_subletting_permitted?: boolean;
7777
+ };
7778
+ listing_policy?: {
7779
+ /** @example 4 */
7780
+ max_occupants?: number;
7781
+ /** @example short_stay */
7782
+ allowed_use_type?: string;
7783
+ /** @example Short Stay */
7784
+ allowed_use_type_label?: string;
7785
+ /** @example false */
7786
+ is_subletting_allowed?: boolean;
7787
+ /** @example true */
7788
+ requires_permission_for_subletting?: boolean;
7789
+ /** @example true */
7790
+ event_permission_required?: boolean;
7791
+ /** @example true */
7792
+ no_party_policy?: boolean;
7793
+ /** @example false */
7794
+ commercial_use_flag?: boolean;
7648
7795
  };
7649
7796
  short_let?: {
7650
7797
  /** @example 500.00 */
@@ -7730,6 +7877,9 @@ export interface operations {
7730
7877
  * "validity_type": "non_expiring",
7731
7878
  * "grace_period_days": null,
7732
7879
  * "status": "active",
7880
+ * "responsible_party": "landlord",
7881
+ * "responsible_party_label": "Landlord",
7882
+ * "liability_exclusion_flag": false,
7733
7883
  * "requirements": [
7734
7884
  * "ownership_document_upload"
7735
7885
  * ]
@@ -7753,6 +7903,12 @@ export interface operations {
7753
7903
  grace_period_days?: string | null;
7754
7904
  /** @example active */
7755
7905
  status?: string;
7906
+ /** @example landlord */
7907
+ responsible_party?: string;
7908
+ /** @example Landlord */
7909
+ responsible_party_label?: string;
7910
+ /** @example false */
7911
+ liability_exclusion_flag?: boolean;
7756
7912
  /**
7757
7913
  * @example [
7758
7914
  * "ownership_document_upload"
@@ -7845,16 +8001,20 @@ export interface operations {
7845
8001
  content: {
7846
8002
  "application/json": {
7847
8003
  data?: {
7848
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
8004
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
7849
8005
  draft_name?: string;
7850
- /** @example LST-PRP-LTR-MNRNXQ0SOHF */
8006
+ /** @example LST-PRP-LTR-MNTJ53IKRQW */
7851
8007
  sku?: string;
7852
- /** @example 44882a44-e1ee-493f-83be-62ddb757fc64 */
8008
+ /** @example 4dd66aaf-1bd6-490b-b80b-7b55a447c87d */
7853
8009
  uid?: string;
7854
8010
  /** @example Rent */
7855
8011
  listing_type?: string;
7856
8012
  /** @example Property */
7857
8013
  vertical?: string;
8014
+ /** @example let_to_let */
8015
+ arrangement_type?: string;
8016
+ /** @example Let to Let */
8017
+ arrangement_type_label?: string;
7858
8018
  /** @example null */
7859
8019
  price?: string | null;
7860
8020
  /** @example draft */
@@ -7879,6 +8039,26 @@ export interface operations {
7879
8039
  };
7880
8040
  };
7881
8041
  };
8042
+ saveArrangementTypeAdmin: {
8043
+ parameters: {
8044
+ query?: never;
8045
+ header?: never;
8046
+ path: {
8047
+ /** @description The UID of the listing. */
8048
+ listing_uid: string;
8049
+ };
8050
+ cookie?: never;
8051
+ };
8052
+ requestBody: {
8053
+ content: {
8054
+ "application/json": {
8055
+ /** @example null */
8056
+ arrangement_type: string;
8057
+ };
8058
+ };
8059
+ };
8060
+ responses: never;
8061
+ };
7882
8062
  saveListingDetailsAdmin: {
7883
8063
  parameters: {
7884
8064
  query?: never;
@@ -7913,6 +8093,38 @@ export interface operations {
7913
8093
  };
7914
8094
  responses: never;
7915
8095
  };
8096
+ saveListingPolicyAdmin: {
8097
+ parameters: {
8098
+ query?: never;
8099
+ header?: never;
8100
+ path: {
8101
+ /** @description The UID of the listing. */
8102
+ listing_uid: string;
8103
+ };
8104
+ cookie?: never;
8105
+ };
8106
+ requestBody: {
8107
+ content: {
8108
+ "application/json": {
8109
+ /** @example null */
8110
+ max_occupants: string;
8111
+ /** @example null */
8112
+ allowed_use_type: string;
8113
+ /** @example null */
8114
+ is_subletting_allowed: string;
8115
+ /** @example null */
8116
+ requires_permission_for_subletting: string;
8117
+ /** @example null */
8118
+ event_permission_required: string;
8119
+ /** @example null */
8120
+ no_party_policy: string;
8121
+ /** @example null */
8122
+ commercial_use_flag: string;
8123
+ };
8124
+ };
8125
+ };
8126
+ responses: never;
8127
+ };
7916
8128
  savePropertyBasicsAdmin: {
7917
8129
  parameters: {
7918
8130
  query?: never;
@@ -7980,6 +8192,10 @@ export interface operations {
7980
8192
  fixed_term_length: string;
7981
8193
  /** @example null */
7982
8194
  availability_date: string;
8195
+ /** @example null */
8196
+ is_company_lease: string;
8197
+ /** @example null */
8198
+ is_subletting_permitted: string;
7983
8199
  };
7984
8200
  };
7985
8201
  };
@@ -8229,7 +8445,7 @@ export interface operations {
8229
8445
  content: {
8230
8446
  "application/json": {
8231
8447
  data?: {
8232
- /** @example bea269f7-7548-47ff-8696-25eda5bf162c */
8448
+ /** @example d8323ff6-ce0c-4b28-a1b1-f4a1ba5e1aea */
8233
8449
  uid?: string;
8234
8450
  /** @example photo */
8235
8451
  media_type?: string;
@@ -8536,11 +8752,13 @@ export interface operations {
8536
8752
  /**
8537
8753
  * @example [
8538
8754
  * {
8539
- * "draft_name": "New For Rent Property draft • 9 Apr 2026, 3:59 PM",
8540
- * "sku": "LST-PRP-LTR-MNRNXQ2LMZB",
8541
- * "uid": "f68dbb34-03fd-4922-97b3-7e2b2b037b9b",
8755
+ * "draft_name": "New For Rent Property draft • 10 Apr 2026, 11:21 PM",
8756
+ * "sku": "LST-PRP-LTR-MNTJ53K46U2",
8757
+ * "uid": "2eee1f65-f786-4526-b752-210776895706",
8542
8758
  * "listing_type": "Rent",
8543
8759
  * "vertical": "Property",
8760
+ * "arrangement_type": "standard_residential",
8761
+ * "arrangement_type_label": "Standard Residential",
8544
8762
  * "price": null,
8545
8763
  * "state": "draft",
8546
8764
  * "published_at": null,
@@ -8553,11 +8771,13 @@ export interface operations {
8553
8771
  * "media": []
8554
8772
  * },
8555
8773
  * {
8556
- * "draft_name": "New For Sale Used Item draft • 9 Apr 2026, 3:59 PM",
8557
- * "sku": "LST-UIT-SAL-MNRNXQ3XA9K",
8558
- * "uid": "8a695683-4302-4d86-882b-bc8ff8ba3e73",
8774
+ * "draft_name": "New For Sale Used Item draft • 10 Apr 2026, 11:21 PM",
8775
+ * "sku": "LST-UIT-SAL-MNTJ53K9V1I",
8776
+ * "uid": "00eedb59-3339-4114-bafa-d6a678412c67",
8559
8777
  * "listing_type": "Sale",
8560
8778
  * "vertical": "Used Item",
8779
+ * "arrangement_type": null,
8780
+ * "arrangement_type_label": null,
8561
8781
  * "price": null,
8562
8782
  * "state": "draft",
8563
8783
  * "published_at": null,
@@ -8570,16 +8790,20 @@ export interface operations {
8570
8790
  * ]
8571
8791
  */
8572
8792
  data?: {
8573
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
8793
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
8574
8794
  draft_name?: string;
8575
- /** @example LST-PRP-LTR-MNRNXQ2LMZB */
8795
+ /** @example LST-PRP-LTR-MNTJ53K46U2 */
8576
8796
  sku?: string;
8577
- /** @example f68dbb34-03fd-4922-97b3-7e2b2b037b9b */
8797
+ /** @example 2eee1f65-f786-4526-b752-210776895706 */
8578
8798
  uid?: string;
8579
8799
  /** @example Rent */
8580
8800
  listing_type?: string;
8581
8801
  /** @example Property */
8582
8802
  vertical?: string;
8803
+ /** @example standard_residential */
8804
+ arrangement_type?: string;
8805
+ /** @example Standard Residential */
8806
+ arrangement_type_label?: string;
8583
8807
  /** @example null */
8584
8808
  price?: string | null;
8585
8809
  /** @example draft */
@@ -8765,16 +8989,20 @@ export interface operations {
8765
8989
  content: {
8766
8990
  "application/json": {
8767
8991
  data?: {
8768
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
8992
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
8769
8993
  draft_name?: string;
8770
- /** @example LST-PRP-LTR-MNRNXQ6FUOW */
8994
+ /** @example LST-PRP-LTR-MNTJ53KKQMB */
8771
8995
  sku?: string;
8772
- /** @example f50a3569-19d9-4e6f-9c21-3e2b853a1c58 */
8996
+ /** @example a3da8870-91c2-48f2-bc9a-3c0ca68ae248 */
8773
8997
  uid?: string;
8774
8998
  /** @example Rent */
8775
8999
  listing_type?: string;
8776
9000
  /** @example Property */
8777
9001
  vertical?: string;
9002
+ /** @example let_to_let */
9003
+ arrangement_type?: string;
9004
+ /** @example Let to Let */
9005
+ arrangement_type_label?: string;
8778
9006
  /** @example null */
8779
9007
  price?: string | null;
8780
9008
  /** @example draft */
@@ -8828,16 +9056,20 @@ export interface operations {
8828
9056
  content: {
8829
9057
  "application/json": {
8830
9058
  data?: {
8831
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
9059
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
8832
9060
  draft_name?: string;
8833
- /** @example LST-PRP-LTR-MNRNXQ7RA4C */
9061
+ /** @example LST-PRP-LTR-MNTJ53KPTJ8 */
8834
9062
  sku?: string;
8835
- /** @example 7d543068-307a-41a4-9ba0-377e33c3a8d9 */
9063
+ /** @example 604ad75b-0716-42bc-aef7-51df5a85cdbb */
8836
9064
  uid?: string;
8837
9065
  /** @example Rent */
8838
9066
  listing_type?: string;
8839
9067
  /** @example Property */
8840
9068
  vertical?: string;
9069
+ /** @example let_to_let */
9070
+ arrangement_type?: string;
9071
+ /** @example Let to Let */
9072
+ arrangement_type_label?: string;
8841
9073
  /** @example null */
8842
9074
  price?: string | null;
8843
9075
  /** @example draft */
@@ -8881,16 +9113,20 @@ export interface operations {
8881
9113
  content: {
8882
9114
  "application/json": {
8883
9115
  data?: {
8884
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
9116
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
8885
9117
  draft_name?: string;
8886
- /** @example LST-PRP-LTR-MNRNXQ7XPJT */
9118
+ /** @example LST-PRP-LTR-MNTJ53KWEZX */
8887
9119
  sku?: string;
8888
- /** @example 02af24b0-b90b-423e-8257-a35ea8c4dc81 */
9120
+ /** @example 313d8649-a206-452b-9a75-fb94b5011304 */
8889
9121
  uid?: string;
8890
9122
  /** @example Rent */
8891
9123
  listing_type?: string;
8892
9124
  /** @example Property */
8893
9125
  vertical?: string;
9126
+ /** @example let_to_let */
9127
+ arrangement_type?: string;
9128
+ /** @example Let to Let */
9129
+ arrangement_type_label?: string;
8894
9130
  /** @example null */
8895
9131
  price?: string | null;
8896
9132
  /** @example draft */
@@ -8934,16 +9170,20 @@ export interface operations {
8934
9170
  content: {
8935
9171
  "application/json": {
8936
9172
  data?: {
8937
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
9173
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
8938
9174
  draft_name?: string;
8939
- /** @example LST-PRP-LTR-MNRNXQ865PP */
9175
+ /** @example LST-PRP-LTR-MNTJ53L1CEI */
8940
9176
  sku?: string;
8941
- /** @example 986bf31f-1da8-4851-a4f4-af94e7d9f2dc */
9177
+ /** @example dfeaf552-3c9c-4917-a6e8-288d1537bc56 */
8942
9178
  uid?: string;
8943
9179
  /** @example Rent */
8944
9180
  listing_type?: string;
8945
9181
  /** @example Property */
8946
9182
  vertical?: string;
9183
+ /** @example let_to_let */
9184
+ arrangement_type?: string;
9185
+ /** @example Let to Let */
9186
+ arrangement_type_label?: string;
8947
9187
  /** @example null */
8948
9188
  price?: string | null;
8949
9189
  /** @example draft */
@@ -9128,7 +9368,7 @@ export interface operations {
9128
9368
  content: {
9129
9369
  "application/json": {
9130
9370
  data?: {
9131
- /** @example 58 */
9371
+ /** @example 43 */
9132
9372
  id?: number;
9133
9373
  /** @example 1 */
9134
9374
  category_id?: number;
@@ -9202,7 +9442,7 @@ export interface operations {
9202
9442
  content: {
9203
9443
  "application/json": {
9204
9444
  data?: {
9205
- /** @example 59 */
9445
+ /** @example 44 */
9206
9446
  id?: number;
9207
9447
  /** @example 1 */
9208
9448
  category_id?: number;
@@ -9241,7 +9481,7 @@ export interface operations {
9241
9481
  content: {
9242
9482
  "application/json": {
9243
9483
  data?: {
9244
- /** @example 60 */
9484
+ /** @example 45 */
9245
9485
  id?: number;
9246
9486
  /** @example 1 */
9247
9487
  category_id?: number;
@@ -9279,7 +9519,7 @@ export interface operations {
9279
9519
  /**
9280
9520
  * @example [
9281
9521
  * {
9282
- * "id": 42,
9522
+ * "id": 15,
9283
9523
  * "name": "Exterior",
9284
9524
  * "description": "For Exterior categories",
9285
9525
  * "display_order": 1,
@@ -9289,7 +9529,7 @@ export interface operations {
9289
9529
  * "is_active": true
9290
9530
  * },
9291
9531
  * {
9292
- * "id": 43,
9532
+ * "id": 16,
9293
9533
  * "name": "Exterior",
9294
9534
  * "description": "For Exterior categories",
9295
9535
  * "display_order": 1,
@@ -9301,7 +9541,7 @@ export interface operations {
9301
9541
  * ]
9302
9542
  */
9303
9543
  data?: {
9304
- /** @example 42 */
9544
+ /** @example 15 */
9305
9545
  id?: number;
9306
9546
  /** @example Exterior */
9307
9547
  name?: string;
@@ -9365,7 +9605,7 @@ export interface operations {
9365
9605
  content: {
9366
9606
  "application/json": {
9367
9607
  data?: {
9368
- /** @example 44 */
9608
+ /** @example 17 */
9369
9609
  id?: number;
9370
9610
  /** @example Exterior */
9371
9611
  name?: string;
@@ -9432,7 +9672,7 @@ export interface operations {
9432
9672
  content: {
9433
9673
  "application/json": {
9434
9674
  data?: {
9435
- /** @example 45 */
9675
+ /** @example 18 */
9436
9676
  id?: number;
9437
9677
  /** @example Exterior */
9438
9678
  name?: string;
@@ -9473,7 +9713,7 @@ export interface operations {
9473
9713
  content: {
9474
9714
  "application/json": {
9475
9715
  data?: {
9476
- /** @example 46 */
9716
+ /** @example 19 */
9477
9717
  id?: number;
9478
9718
  /** @example Exterior */
9479
9719
  name?: string;
@@ -9513,31 +9753,31 @@ export interface operations {
9513
9753
  /**
9514
9754
  * @example [
9515
9755
  * {
9516
- * "id": 37,
9756
+ * "id": 17,
9517
9757
  * "key": "email_fa_0",
9518
9758
  * "name": "Clara Cronin V",
9519
9759
  * "description": "Incidunt iure odit et et modi ipsum nostrum omnis.",
9520
9760
  * "requires_review": true,
9521
9761
  * "metadata_schema": [],
9522
9762
  * "is_active": true,
9523
- * "created_at": "2026-04-09T15:59:55.000000Z",
9524
- * "updated_at": "2026-04-09T15:59:55.000000Z"
9763
+ * "created_at": "2026-04-10T23:21:13.000000Z",
9764
+ * "updated_at": "2026-04-10T23:21:13.000000Z"
9525
9765
  * },
9526
9766
  * {
9527
- * "id": 38,
9767
+ * "id": 18,
9528
9768
  * "key": "email_fa_6",
9529
9769
  * "name": "Myrtis Tromp",
9530
9770
  * "description": "Enim non facere tempora ex voluptatem laboriosam praesentium quis adipisci molestias.",
9531
9771
  * "requires_review": true,
9532
9772
  * "metadata_schema": [],
9533
9773
  * "is_active": true,
9534
- * "created_at": "2026-04-09T15:59:55.000000Z",
9535
- * "updated_at": "2026-04-09T15:59:55.000000Z"
9774
+ * "created_at": "2026-04-10T23:21:13.000000Z",
9775
+ * "updated_at": "2026-04-10T23:21:13.000000Z"
9536
9776
  * }
9537
9777
  * ]
9538
9778
  */
9539
9779
  data?: {
9540
- /** @example 37 */
9780
+ /** @example 17 */
9541
9781
  id?: number;
9542
9782
  /** @example email_fa_0 */
9543
9783
  key?: string;
@@ -9551,9 +9791,9 @@ export interface operations {
9551
9791
  metadata_schema?: unknown[];
9552
9792
  /** @example true */
9553
9793
  is_active?: boolean;
9554
- /** @example 2026-04-09T15:59:55.000000Z */
9794
+ /** @example 2026-04-10T23:21:13.000000Z */
9555
9795
  created_at?: string;
9556
- /** @example 2026-04-09T15:59:55.000000Z */
9796
+ /** @example 2026-04-10T23:21:13.000000Z */
9557
9797
  updated_at?: string;
9558
9798
  }[];
9559
9799
  };
@@ -9615,7 +9855,7 @@ export interface operations {
9615
9855
  content: {
9616
9856
  "application/json": {
9617
9857
  data?: {
9618
- /** @example 39 */
9858
+ /** @example 19 */
9619
9859
  id?: number;
9620
9860
  /** @example email_fa_0 */
9621
9861
  key?: string;
@@ -9629,9 +9869,9 @@ export interface operations {
9629
9869
  metadata_schema?: unknown[];
9630
9870
  /** @example true */
9631
9871
  is_active?: boolean;
9632
- /** @example 2026-04-09T15:59:55.000000Z */
9872
+ /** @example 2026-04-10T23:21:13.000000Z */
9633
9873
  created_at?: string;
9634
- /** @example 2026-04-09T15:59:55.000000Z */
9874
+ /** @example 2026-04-10T23:21:13.000000Z */
9635
9875
  updated_at?: string;
9636
9876
  };
9637
9877
  };
@@ -9691,7 +9931,7 @@ export interface operations {
9691
9931
  content: {
9692
9932
  "application/json": {
9693
9933
  data?: {
9694
- /** @example 40 */
9934
+ /** @example 20 */
9695
9935
  id?: number;
9696
9936
  /** @example email_fa_0 */
9697
9937
  key?: string;
@@ -9705,9 +9945,9 @@ export interface operations {
9705
9945
  metadata_schema?: unknown[];
9706
9946
  /** @example true */
9707
9947
  is_active?: boolean;
9708
- /** @example 2026-04-09T15:59:55.000000Z */
9948
+ /** @example 2026-04-10T23:21:13.000000Z */
9709
9949
  created_at?: string;
9710
- /** @example 2026-04-09T15:59:55.000000Z */
9950
+ /** @example 2026-04-10T23:21:13.000000Z */
9711
9951
  updated_at?: string;
9712
9952
  };
9713
9953
  };
@@ -9921,29 +10161,29 @@ export interface operations {
9921
10161
  /**
9922
10162
  * @example [
9923
10163
  * {
9924
- * "id": 25,
10164
+ * "id": 5,
9925
10165
  * "status": "approved",
9926
10166
  * "submitted_data": [],
9927
10167
  * "rejection_reason": null,
9928
10168
  * "reviewed_by": 1,
9929
- * "reviewed_at": "2026-04-09T15:59:55.000000Z",
9930
- * "created_at": "2026-04-09T15:59:55.000000Z",
9931
- * "updated_at": "2026-04-09T15:59:55.000000Z"
10169
+ * "reviewed_at": "2026-04-10T23:21:13.000000Z",
10170
+ * "created_at": "2026-04-10T23:21:13.000000Z",
10171
+ * "updated_at": "2026-04-10T23:21:13.000000Z"
9932
10172
  * },
9933
10173
  * {
9934
- * "id": 26,
10174
+ * "id": 6,
9935
10175
  * "status": "approved",
9936
10176
  * "submitted_data": [],
9937
10177
  * "rejection_reason": null,
9938
10178
  * "reviewed_by": 1,
9939
- * "reviewed_at": "2026-04-09T15:59:55.000000Z",
9940
- * "created_at": "2026-04-09T15:59:55.000000Z",
9941
- * "updated_at": "2026-04-09T15:59:55.000000Z"
10179
+ * "reviewed_at": "2026-04-10T23:21:13.000000Z",
10180
+ * "created_at": "2026-04-10T23:21:13.000000Z",
10181
+ * "updated_at": "2026-04-10T23:21:13.000000Z"
9942
10182
  * }
9943
10183
  * ]
9944
10184
  */
9945
10185
  data?: {
9946
- /** @example 25 */
10186
+ /** @example 5 */
9947
10187
  id?: number;
9948
10188
  /** @example approved */
9949
10189
  status?: string;
@@ -9953,11 +10193,11 @@ export interface operations {
9953
10193
  rejection_reason?: string | null;
9954
10194
  /** @example 1 */
9955
10195
  reviewed_by?: number;
9956
- /** @example 2026-04-09T15:59:55.000000Z */
10196
+ /** @example 2026-04-10T23:21:13.000000Z */
9957
10197
  reviewed_at?: string;
9958
- /** @example 2026-04-09T15:59:55.000000Z */
10198
+ /** @example 2026-04-10T23:21:13.000000Z */
9959
10199
  created_at?: string;
9960
- /** @example 2026-04-09T15:59:55.000000Z */
10200
+ /** @example 2026-04-10T23:21:13.000000Z */
9961
10201
  updated_at?: string;
9962
10202
  }[];
9963
10203
  links?: {
@@ -10044,29 +10284,29 @@ export interface operations {
10044
10284
  /**
10045
10285
  * @example [
10046
10286
  * {
10047
- * "id": 27,
10287
+ * "id": 7,
10048
10288
  * "status": "approved",
10049
10289
  * "submitted_data": [],
10050
10290
  * "rejection_reason": null,
10051
10291
  * "reviewed_by": 1,
10052
- * "reviewed_at": "2026-04-09T15:59:55.000000Z",
10053
- * "created_at": "2026-04-09T15:59:55.000000Z",
10054
- * "updated_at": "2026-04-09T15:59:55.000000Z"
10292
+ * "reviewed_at": "2026-04-10T23:21:13.000000Z",
10293
+ * "created_at": "2026-04-10T23:21:13.000000Z",
10294
+ * "updated_at": "2026-04-10T23:21:13.000000Z"
10055
10295
  * },
10056
10296
  * {
10057
- * "id": 28,
10297
+ * "id": 8,
10058
10298
  * "status": "approved",
10059
10299
  * "submitted_data": [],
10060
10300
  * "rejection_reason": null,
10061
10301
  * "reviewed_by": 1,
10062
- * "reviewed_at": "2026-04-09T15:59:55.000000Z",
10063
- * "created_at": "2026-04-09T15:59:55.000000Z",
10064
- * "updated_at": "2026-04-09T15:59:55.000000Z"
10302
+ * "reviewed_at": "2026-04-10T23:21:13.000000Z",
10303
+ * "created_at": "2026-04-10T23:21:13.000000Z",
10304
+ * "updated_at": "2026-04-10T23:21:13.000000Z"
10065
10305
  * }
10066
10306
  * ]
10067
10307
  */
10068
10308
  data?: {
10069
- /** @example 27 */
10309
+ /** @example 7 */
10070
10310
  id?: number;
10071
10311
  /** @example approved */
10072
10312
  status?: string;
@@ -10076,11 +10316,11 @@ export interface operations {
10076
10316
  rejection_reason?: string | null;
10077
10317
  /** @example 1 */
10078
10318
  reviewed_by?: number;
10079
- /** @example 2026-04-09T15:59:55.000000Z */
10319
+ /** @example 2026-04-10T23:21:13.000000Z */
10080
10320
  reviewed_at?: string;
10081
- /** @example 2026-04-09T15:59:55.000000Z */
10321
+ /** @example 2026-04-10T23:21:13.000000Z */
10082
10322
  created_at?: string;
10083
- /** @example 2026-04-09T15:59:55.000000Z */
10323
+ /** @example 2026-04-10T23:21:13.000000Z */
10084
10324
  updated_at?: string;
10085
10325
  }[];
10086
10326
  };
@@ -10194,7 +10434,7 @@ export interface operations {
10194
10434
  /**
10195
10435
  * @example [
10196
10436
  * {
10197
- * "id": 95,
10437
+ * "id": 80,
10198
10438
  * "compliance": {
10199
10439
  * "id": 1,
10200
10440
  * "key": "property_ownership",
@@ -10206,10 +10446,10 @@ export interface operations {
10206
10446
  * "rejection_reason": null,
10207
10447
  * "reviewed_by": 1,
10208
10448
  * "reviewed_at": null,
10209
- * "created_at": "2026-04-09T15:59:55.000000Z"
10449
+ * "created_at": "2026-04-10T23:21:13.000000Z"
10210
10450
  * },
10211
10451
  * {
10212
- * "id": 96,
10452
+ * "id": 81,
10213
10453
  * "compliance": {
10214
10454
  * "id": 1,
10215
10455
  * "key": "property_ownership",
@@ -10221,12 +10461,12 @@ export interface operations {
10221
10461
  * "rejection_reason": null,
10222
10462
  * "reviewed_by": 1,
10223
10463
  * "reviewed_at": null,
10224
- * "created_at": "2026-04-09T15:59:55.000000Z"
10464
+ * "created_at": "2026-04-10T23:21:13.000000Z"
10225
10465
  * }
10226
10466
  * ]
10227
10467
  */
10228
10468
  data?: {
10229
- /** @example 95 */
10469
+ /** @example 80 */
10230
10470
  id?: number;
10231
10471
  compliance?: {
10232
10472
  /** @example 1 */
@@ -10248,7 +10488,7 @@ export interface operations {
10248
10488
  reviewed_by?: number;
10249
10489
  /** @example null */
10250
10490
  reviewed_at?: string | null;
10251
- /** @example 2026-04-09T15:59:55.000000Z */
10491
+ /** @example 2026-04-10T23:21:13.000000Z */
10252
10492
  created_at?: string;
10253
10493
  }[];
10254
10494
  links?: {
@@ -10368,7 +10608,7 @@ export interface operations {
10368
10608
  /**
10369
10609
  * @example [
10370
10610
  * {
10371
- * "id": 105,
10611
+ * "id": 85,
10372
10612
  * "compliance": {
10373
10613
  * "id": 1,
10374
10614
  * "key": "property_ownership",
@@ -10379,11 +10619,11 @@ export interface operations {
10379
10619
  * "submitted_data": [],
10380
10620
  * "rejection_reason": null,
10381
10621
  * "reviewed_by": 1,
10382
- * "reviewed_at": "2026-04-09T15:59:55.000000Z",
10383
- * "created_at": "2026-04-09T15:59:55.000000Z"
10622
+ * "reviewed_at": "2026-04-10T23:21:13.000000Z",
10623
+ * "created_at": "2026-04-10T23:21:13.000000Z"
10384
10624
  * },
10385
10625
  * {
10386
- * "id": 106,
10626
+ * "id": 86,
10387
10627
  * "compliance": {
10388
10628
  * "id": 1,
10389
10629
  * "key": "property_ownership",
@@ -10394,13 +10634,13 @@ export interface operations {
10394
10634
  * "submitted_data": [],
10395
10635
  * "rejection_reason": null,
10396
10636
  * "reviewed_by": 1,
10397
- * "reviewed_at": "2026-04-09T15:59:55.000000Z",
10398
- * "created_at": "2026-04-09T15:59:55.000000Z"
10637
+ * "reviewed_at": "2026-04-10T23:21:13.000000Z",
10638
+ * "created_at": "2026-04-10T23:21:13.000000Z"
10399
10639
  * }
10400
10640
  * ]
10401
10641
  */
10402
10642
  data?: {
10403
- /** @example 105 */
10643
+ /** @example 85 */
10404
10644
  id?: number;
10405
10645
  compliance?: {
10406
10646
  /** @example 1 */
@@ -10420,9 +10660,9 @@ export interface operations {
10420
10660
  rejection_reason?: string | null;
10421
10661
  /** @example 1 */
10422
10662
  reviewed_by?: number;
10423
- /** @example 2026-04-09T15:59:55.000000Z */
10663
+ /** @example 2026-04-10T23:21:13.000000Z */
10424
10664
  reviewed_at?: string;
10425
- /** @example 2026-04-09T15:59:55.000000Z */
10665
+ /** @example 2026-04-10T23:21:13.000000Z */
10426
10666
  created_at?: string;
10427
10667
  }[];
10428
10668
  links?: {
@@ -10564,23 +10804,23 @@ export interface operations {
10564
10804
  /**
10565
10805
  * @example [
10566
10806
  * {
10567
- * "key": "dolores",
10568
- * "name": "omnis",
10807
+ * "key": "aut",
10808
+ * "name": "adipisci",
10569
10809
  * "user_type": "Landlord",
10570
10810
  * "is_active": true
10571
10811
  * },
10572
10812
  * {
10573
- * "key": "quia",
10574
- * "name": "id",
10813
+ * "key": "quidem",
10814
+ * "name": "nostrum",
10575
10815
  * "user_type": "Landlord",
10576
10816
  * "is_active": true
10577
10817
  * }
10578
10818
  * ]
10579
10819
  */
10580
10820
  data?: {
10581
- /** @example dolores */
10821
+ /** @example aut */
10582
10822
  key?: string;
10583
- /** @example omnis */
10823
+ /** @example adipisci */
10584
10824
  name?: string;
10585
10825
  /** @example Landlord */
10586
10826
  user_type?: string;
@@ -11343,6 +11583,17 @@ export interface operations {
11343
11583
  * @example 14
11344
11584
  */
11345
11585
  grace_period_days?: number | null;
11586
+ /**
11587
+ * @description Who is responsible for satisfying the compliance.
11588
+ * @example landlord
11589
+ * @enum {string}
11590
+ */
11591
+ responsible_party: "landlord" | "platform";
11592
+ /**
11593
+ * @description Whether platform liability is explicitly excluded for this compliance.
11594
+ * @example false
11595
+ */
11596
+ liability_exclusion_flag?: boolean;
11346
11597
  };
11347
11598
  };
11348
11599
  };
@@ -11370,6 +11621,12 @@ export interface operations {
11370
11621
  grace_period_days?: number;
11371
11622
  /** @example active */
11372
11623
  status?: string;
11624
+ /** @example landlord */
11625
+ responsible_party?: string;
11626
+ /** @example Landlord */
11627
+ responsible_party_label?: string;
11628
+ /** @example false */
11629
+ liability_exclusion_flag?: boolean;
11373
11630
  };
11374
11631
  };
11375
11632
  };
@@ -11422,6 +11679,17 @@ export interface operations {
11422
11679
  * @enum {string}
11423
11680
  */
11424
11681
  status?: "active" | "deprecated";
11682
+ /**
11683
+ * @description Who is responsible for satisfying the compliance.
11684
+ * @example platform
11685
+ * @enum {string}
11686
+ */
11687
+ responsible_party?: "landlord" | "platform";
11688
+ /**
11689
+ * @description Whether platform liability is explicitly excluded for this compliance.
11690
+ * @example false
11691
+ */
11692
+ liability_exclusion_flag?: boolean;
11425
11693
  };
11426
11694
  };
11427
11695
  };
@@ -11449,6 +11717,12 @@ export interface operations {
11449
11717
  grace_period_days?: number;
11450
11718
  /** @example active */
11451
11719
  status?: string;
11720
+ /** @example landlord */
11721
+ responsible_party?: string;
11722
+ /** @example Landlord */
11723
+ responsible_party_label?: string;
11724
+ /** @example false */
11725
+ liability_exclusion_flag?: boolean;
11452
11726
  };
11453
11727
  };
11454
11728
  };
@@ -11586,6 +11860,30 @@ export interface operations {
11586
11860
  };
11587
11861
  responses: never;
11588
11862
  };
11863
+ assignComplianceToArrangementType: {
11864
+ parameters: {
11865
+ query?: never;
11866
+ header?: never;
11867
+ path: {
11868
+ /** @description The ID of the compliance definition. */
11869
+ compliance_id: number;
11870
+ };
11871
+ cookie?: never;
11872
+ };
11873
+ requestBody: {
11874
+ content: {
11875
+ "application/json": {
11876
+ /**
11877
+ * @description The arrangement type where this compliance rule should apply.
11878
+ * @example company_lease
11879
+ * @enum {string}
11880
+ */
11881
+ arrangement_type: "standard_residential" | "let_to_let" | "company_lease" | "short_term_managed";
11882
+ };
11883
+ };
11884
+ };
11885
+ responses: never;
11886
+ };
11589
11887
  listingHistoryInspectionAdmin: {
11590
11888
  parameters: {
11591
11889
  query?: {
@@ -11733,13 +12031,13 @@ export interface operations {
11733
12031
  content: {
11734
12032
  "application/json": {
11735
12033
  data?: {
11736
- /** @example 7cf616df-8d4a-47a9-a761-169c4129686b */
12034
+ /** @example 05fae6e3-326c-4713-ab72-291d5a58ec7d */
11737
12035
  uid?: string;
11738
12036
  /** @example follow_up */
11739
12037
  inspection_type?: string;
11740
12038
  /** @example cancelled */
11741
12039
  status?: string;
11742
- /** @example 2026-04-15T05:58:17.000000Z */
12040
+ /** @example 2026-04-16T13:19:35.000000Z */
11743
12041
  scheduled_date?: string;
11744
12042
  /** @example null */
11745
12043
  completed_date?: string | null;
@@ -11747,11 +12045,11 @@ export interface operations {
11747
12045
  condition_rating?: string;
11748
12046
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
11749
12047
  summary?: string;
11750
- /** @example 2026-06-08T02:46:51.000000Z */
12048
+ /** @example 2026-06-09T10:08:09.000000Z */
11751
12049
  next_inspection_date?: string;
11752
- /** @example 2026-04-09T15:59:55.000000Z */
12050
+ /** @example 2026-04-10T23:21:13.000000Z */
11753
12051
  created_at?: string;
11754
- /** @example 2026-04-09T15:59:55.000000Z */
12052
+ /** @example 2026-04-10T23:21:13.000000Z */
11755
12053
  updated_at?: string;
11756
12054
  };
11757
12055
  };
@@ -11794,13 +12092,13 @@ export interface operations {
11794
12092
  content: {
11795
12093
  "application/json": {
11796
12094
  data?: {
11797
- /** @example 734a1521-41cb-4561-977a-4d2027f85fc1 */
12095
+ /** @example 5fec2034-b0d3-4f9a-989e-56412a9f254a */
11798
12096
  uid?: string;
11799
12097
  /** @example follow_up */
11800
12098
  inspection_type?: string;
11801
12099
  /** @example cancelled */
11802
12100
  status?: string;
11803
- /** @example 2026-04-03T03:24:50.000000Z */
12101
+ /** @example 2026-04-04T10:46:08.000000Z */
11804
12102
  scheduled_date?: string;
11805
12103
  /** @example null */
11806
12104
  completed_date?: string | null;
@@ -11808,11 +12106,11 @@ export interface operations {
11808
12106
  condition_rating?: string;
11809
12107
  /** @example Et animi quos velit et fugiat. */
11810
12108
  summary?: string;
11811
- /** @example 2026-07-12T11:18:37.000000Z */
12109
+ /** @example 2026-07-13T18:39:55.000000Z */
11812
12110
  next_inspection_date?: string;
11813
- /** @example 2026-04-09T15:59:55.000000Z */
12111
+ /** @example 2026-04-10T23:21:13.000000Z */
11814
12112
  created_at?: string;
11815
- /** @example 2026-04-09T15:59:55.000000Z */
12113
+ /** @example 2026-04-10T23:21:13.000000Z */
11816
12114
  updated_at?: string;
11817
12115
  };
11818
12116
  };
@@ -11849,13 +12147,13 @@ export interface operations {
11849
12147
  content: {
11850
12148
  "application/json": {
11851
12149
  data?: {
11852
- /** @example 2a3b5bfa-4d7b-4486-9fe6-63ba2c89eec2 */
12150
+ /** @example adf5a8e2-2b2c-48b7-b572-c8b240b420b1 */
11853
12151
  uid?: string;
11854
12152
  /** @example follow_up */
11855
12153
  inspection_type?: string;
11856
12154
  /** @example cancelled */
11857
12155
  status?: string;
11858
- /** @example 2026-04-15T05:58:17.000000Z */
12156
+ /** @example 2026-04-16T13:19:35.000000Z */
11859
12157
  scheduled_date?: string;
11860
12158
  /** @example null */
11861
12159
  completed_date?: string | null;
@@ -11863,11 +12161,11 @@ export interface operations {
11863
12161
  condition_rating?: string;
11864
12162
  /** @example Quidem nostrum qui commodi incidunt iure odit. */
11865
12163
  summary?: string;
11866
- /** @example 2026-06-08T02:46:51.000000Z */
12164
+ /** @example 2026-06-09T10:08:09.000000Z */
11867
12165
  next_inspection_date?: string;
11868
- /** @example 2026-04-09T15:59:55.000000Z */
12166
+ /** @example 2026-04-10T23:21:13.000000Z */
11869
12167
  created_at?: string;
11870
- /** @example 2026-04-09T15:59:55.000000Z */
12168
+ /** @example 2026-04-10T23:21:13.000000Z */
11871
12169
  updated_at?: string;
11872
12170
  };
11873
12171
  };
@@ -11904,13 +12202,13 @@ export interface operations {
11904
12202
  content: {
11905
12203
  "application/json": {
11906
12204
  data?: {
11907
- /** @example cb05b8c4-5061-4207-9fa0-b93a4e03aa9d */
12205
+ /** @example 98522675-d5ac-4695-8cd6-79f2496b00e9 */
11908
12206
  uid?: string;
11909
12207
  /** @example follow_up */
11910
12208
  inspection_type?: string;
11911
12209
  /** @example cancelled */
11912
12210
  status?: string;
11913
- /** @example 2026-04-03T03:24:50.000000Z */
12211
+ /** @example 2026-04-04T10:46:08.000000Z */
11914
12212
  scheduled_date?: string;
11915
12213
  /** @example null */
11916
12214
  completed_date?: string | null;
@@ -11918,11 +12216,11 @@ export interface operations {
11918
12216
  condition_rating?: string;
11919
12217
  /** @example Et animi quos velit et fugiat. */
11920
12218
  summary?: string;
11921
- /** @example 2026-07-12T11:18:37.000000Z */
12219
+ /** @example 2026-07-13T18:39:55.000000Z */
11922
12220
  next_inspection_date?: string;
11923
- /** @example 2026-04-09T15:59:55.000000Z */
12221
+ /** @example 2026-04-10T23:21:13.000000Z */
11924
12222
  created_at?: string;
11925
- /** @example 2026-04-09T15:59:55.000000Z */
12223
+ /** @example 2026-04-10T23:21:13.000000Z */
11926
12224
  updated_at?: string;
11927
12225
  };
11928
12226
  };
@@ -11959,7 +12257,7 @@ export interface operations {
11959
12257
  content: {
11960
12258
  "application/json": {
11961
12259
  data?: {
11962
- /** @example 91113373-112b-4ed3-aa3b-07cb5378bd64 */
12260
+ /** @example a7d72f31-8fbe-46be-b4f9-f5be4fbd4384 */
11963
12261
  uid?: string;
11964
12262
  /** @example Qui commodi incidunt iure. */
11965
12263
  title?: string;
@@ -11969,17 +12267,17 @@ export interface operations {
11969
12267
  status?: string;
11970
12268
  /** @example low */
11971
12269
  priority?: string;
11972
- /** @example 2026-04-08T05:28:38.000000Z */
12270
+ /** @example 2026-04-09T12:49:57.000000Z */
11973
12271
  reported_at?: string;
11974
12272
  /** @example null */
11975
12273
  assigned_at?: string | null;
11976
12274
  /** @example null */
11977
12275
  completed_at?: string | null;
11978
- /** @example 2026-04-11T01:53:04.000000Z */
12276
+ /** @example 2026-04-12T09:14:23.000000Z */
11979
12277
  sla_deadline?: string;
11980
- /** @example 2026-04-09T15:59:55.000000Z */
12278
+ /** @example 2026-04-10T23:21:14.000000Z */
11981
12279
  created_at?: string;
11982
- /** @example 2026-04-09T15:59:55.000000Z */
12280
+ /** @example 2026-04-10T23:21:14.000000Z */
11983
12281
  updated_at?: string;
11984
12282
  };
11985
12283
  };
@@ -12016,7 +12314,7 @@ export interface operations {
12016
12314
  content: {
12017
12315
  "application/json": {
12018
12316
  data?: {
12019
- /** @example e3449e6b-2bc5-4ace-8512-ce553f4b8b58 */
12317
+ /** @example 8c888574-d561-47af-8271-bf5fa6f7ed52 */
12020
12318
  uid?: string;
12021
12319
  /** @example Quos velit et fugiat sunt nihil. */
12022
12320
  title?: string;
@@ -12026,17 +12324,17 @@ export interface operations {
12026
12324
  status?: string;
12027
12325
  /** @example emergency */
12028
12326
  priority?: string;
12029
- /** @example 2026-04-03T03:13:30.000000Z */
12327
+ /** @example 2026-04-04T10:34:49.000000Z */
12030
12328
  reported_at?: string;
12031
- /** @example 2026-04-07T23:33:22.000000Z */
12329
+ /** @example 2026-04-09T06:54:41.000000Z */
12032
12330
  assigned_at?: string;
12033
12331
  /** @example null */
12034
12332
  completed_at?: string | null;
12035
- /** @example 2026-04-11T04:55:45.000000Z */
12333
+ /** @example 2026-04-12T12:17:04.000000Z */
12036
12334
  sla_deadline?: string;
12037
- /** @example 2026-04-09T15:59:55.000000Z */
12335
+ /** @example 2026-04-10T23:21:14.000000Z */
12038
12336
  created_at?: string;
12039
- /** @example 2026-04-09T15:59:55.000000Z */
12337
+ /** @example 2026-04-10T23:21:14.000000Z */
12040
12338
  updated_at?: string;
12041
12339
  };
12042
12340
  };
@@ -12073,7 +12371,7 @@ export interface operations {
12073
12371
  content: {
12074
12372
  "application/json": {
12075
12373
  data?: {
12076
- /** @example 03e2279f-f348-4115-813d-8c49d53e20a9 */
12374
+ /** @example f67d3c54-04a0-4388-9528-c530fe3156a5 */
12077
12375
  uid?: string;
12078
12376
  /** @example Quos velit et fugiat sunt nihil. */
12079
12377
  title?: string;
@@ -12083,17 +12381,17 @@ export interface operations {
12083
12381
  status?: string;
12084
12382
  /** @example emergency */
12085
12383
  priority?: string;
12086
- /** @example 2026-04-03T03:13:30.000000Z */
12384
+ /** @example 2026-04-04T10:34:49.000000Z */
12087
12385
  reported_at?: string;
12088
- /** @example 2026-04-07T23:33:22.000000Z */
12386
+ /** @example 2026-04-09T06:54:41.000000Z */
12089
12387
  assigned_at?: string;
12090
12388
  /** @example null */
12091
12389
  completed_at?: string | null;
12092
- /** @example 2026-04-11T04:55:45.000000Z */
12390
+ /** @example 2026-04-12T12:17:04.000000Z */
12093
12391
  sla_deadline?: string;
12094
- /** @example 2026-04-09T15:59:55.000000Z */
12392
+ /** @example 2026-04-10T23:21:14.000000Z */
12095
12393
  created_at?: string;
12096
- /** @example 2026-04-09T15:59:55.000000Z */
12394
+ /** @example 2026-04-10T23:21:14.000000Z */
12097
12395
  updated_at?: string;
12098
12396
  };
12099
12397
  };
@@ -12130,7 +12428,7 @@ export interface operations {
12130
12428
  content: {
12131
12429
  "application/json": {
12132
12430
  data?: {
12133
- /** @example 506f82c8-d01f-4ece-b261-5b6336c6d732 */
12431
+ /** @example 78da797f-8704-43e7-8bee-7706066ea12c */
12134
12432
  uid?: string;
12135
12433
  /** @example Quos velit et fugiat sunt nihil. */
12136
12434
  title?: string;
@@ -12140,17 +12438,17 @@ export interface operations {
12140
12438
  status?: string;
12141
12439
  /** @example emergency */
12142
12440
  priority?: string;
12143
- /** @example 2026-04-03T03:13:30.000000Z */
12441
+ /** @example 2026-04-04T10:34:49.000000Z */
12144
12442
  reported_at?: string;
12145
- /** @example 2026-04-07T23:33:22.000000Z */
12443
+ /** @example 2026-04-09T06:54:41.000000Z */
12146
12444
  assigned_at?: string;
12147
12445
  /** @example null */
12148
12446
  completed_at?: string | null;
12149
- /** @example 2026-04-11T04:55:45.000000Z */
12447
+ /** @example 2026-04-12T12:17:04.000000Z */
12150
12448
  sla_deadline?: string;
12151
- /** @example 2026-04-09T15:59:55.000000Z */
12449
+ /** @example 2026-04-10T23:21:14.000000Z */
12152
12450
  created_at?: string;
12153
- /** @example 2026-04-09T15:59:55.000000Z */
12451
+ /** @example 2026-04-10T23:21:14.000000Z */
12154
12452
  updated_at?: string;
12155
12453
  };
12156
12454
  };
@@ -12419,19 +12717,19 @@ export interface operations {
12419
12717
  content: {
12420
12718
  "application/json": {
12421
12719
  data?: {
12422
- /** @example 43 */
12720
+ /** @example 8 */
12423
12721
  id?: number;
12424
12722
  /** @example 2 */
12425
12723
  listing_id?: number;
12426
12724
  /** @example completed */
12427
12725
  status?: string;
12428
12726
  scheduled?: {
12429
- /** @example 1981-11-30T00:00:00.000000Z */
12727
+ /** @example 2023-05-28T00:00:00.000000Z */
12430
12728
  start?: string;
12431
- /** @example 1979-12-27T00:00:00.000000Z */
12729
+ /** @example 1974-11-21T00:00:00.000000Z */
12432
12730
  end?: string;
12433
12731
  };
12434
- /** @example 2026-04-09T15:59:56.000000Z */
12732
+ /** @example 2026-04-10T23:21:14.000000Z */
12435
12733
  created_at?: string;
12436
12734
  };
12437
12735
  };
@@ -12458,19 +12756,19 @@ export interface operations {
12458
12756
  content: {
12459
12757
  "application/json": {
12460
12758
  data?: {
12461
- /** @example 44 */
12759
+ /** @example 9 */
12462
12760
  id?: number;
12463
12761
  /** @example 2 */
12464
12762
  listing_id?: number;
12465
12763
  /** @example completed */
12466
12764
  status?: string;
12467
12765
  scheduled?: {
12468
- /** @example 1981-11-30T00:00:00.000000Z */
12766
+ /** @example 1981-11-29T00:00:00.000000Z */
12469
12767
  start?: string;
12470
- /** @example 1979-12-27T00:00:00.000000Z */
12768
+ /** @example 1979-12-26T00:00:00.000000Z */
12471
12769
  end?: string;
12472
12770
  };
12473
- /** @example 2026-04-09T15:59:56.000000Z */
12771
+ /** @example 2026-04-10T23:21:14.000000Z */
12474
12772
  created_at?: string;
12475
12773
  };
12476
12774
  };
@@ -12496,41 +12794,41 @@ export interface operations {
12496
12794
  /**
12497
12795
  * @example [
12498
12796
  * {
12499
- * "id": 45,
12797
+ * "id": 10,
12500
12798
  * "listing_id": 2,
12501
12799
  * "status": "completed",
12502
12800
  * "scheduled": {
12503
- * "start": "1981-11-30T00:00:00.000000Z",
12504
- * "end": "1979-12-27T00:00:00.000000Z"
12801
+ * "start": "1981-11-29T00:00:00.000000Z",
12802
+ * "end": "1979-12-26T00:00:00.000000Z"
12505
12803
  * },
12506
- * "created_at": "2026-04-09T15:59:56.000000Z"
12804
+ * "created_at": "2026-04-10T23:21:14.000000Z"
12507
12805
  * },
12508
12806
  * {
12509
- * "id": 46,
12807
+ * "id": 11,
12510
12808
  * "listing_id": 2,
12511
12809
  * "status": "completed",
12512
12810
  * "scheduled": {
12513
- * "start": "2006-10-01T00:00:00.000000Z",
12811
+ * "start": "2006-09-30T00:00:00.000000Z",
12514
12812
  * "end": "2015-01-19T00:00:00.000000Z"
12515
12813
  * },
12516
- * "created_at": "2026-04-09T15:59:56.000000Z"
12814
+ * "created_at": "2026-04-10T23:21:14.000000Z"
12517
12815
  * }
12518
12816
  * ]
12519
12817
  */
12520
12818
  data?: {
12521
- /** @example 45 */
12819
+ /** @example 10 */
12522
12820
  id?: number;
12523
12821
  /** @example 2 */
12524
12822
  listing_id?: number;
12525
12823
  /** @example completed */
12526
12824
  status?: string;
12527
12825
  scheduled?: {
12528
- /** @example 1981-11-30T00:00:00.000000Z */
12826
+ /** @example 1981-11-29T00:00:00.000000Z */
12529
12827
  start?: string;
12530
- /** @example 1979-12-27T00:00:00.000000Z */
12828
+ /** @example 1979-12-26T00:00:00.000000Z */
12531
12829
  end?: string;
12532
12830
  };
12533
- /** @example 2026-04-09T15:59:56.000000Z */
12831
+ /** @example 2026-04-10T23:21:14.000000Z */
12534
12832
  created_at?: string;
12535
12833
  }[];
12536
12834
  links?: {
@@ -12630,19 +12928,19 @@ export interface operations {
12630
12928
  content: {
12631
12929
  "application/json": {
12632
12930
  data?: {
12633
- /** @example 47 */
12931
+ /** @example 12 */
12634
12932
  id?: number;
12635
12933
  /** @example 2 */
12636
12934
  listing_id?: number;
12637
12935
  /** @example completed */
12638
12936
  status?: string;
12639
12937
  scheduled?: {
12640
- /** @example 1981-11-30T00:00:00.000000Z */
12938
+ /** @example 1981-11-29T00:00:00.000000Z */
12641
12939
  start?: string;
12642
- /** @example 1979-12-27T00:00:00.000000Z */
12940
+ /** @example 1979-12-26T00:00:00.000000Z */
12643
12941
  end?: string;
12644
12942
  };
12645
- /** @example 2026-04-09T15:59:56.000000Z */
12943
+ /** @example 2026-04-10T23:21:14.000000Z */
12646
12944
  created_at?: string;
12647
12945
  };
12648
12946
  };
@@ -12669,19 +12967,19 @@ export interface operations {
12669
12967
  content: {
12670
12968
  "application/json": {
12671
12969
  data?: {
12672
- /** @example 48 */
12970
+ /** @example 13 */
12673
12971
  id?: number;
12674
12972
  /** @example 2 */
12675
12973
  listing_id?: number;
12676
12974
  /** @example completed */
12677
12975
  status?: string;
12678
12976
  scheduled?: {
12679
- /** @example 1981-11-30T00:00:00.000000Z */
12977
+ /** @example 1981-11-29T00:00:00.000000Z */
12680
12978
  start?: string;
12681
- /** @example 1979-12-27T00:00:00.000000Z */
12979
+ /** @example 1979-12-26T00:00:00.000000Z */
12682
12980
  end?: string;
12683
12981
  };
12684
- /** @example 2026-04-09T15:59:56.000000Z */
12982
+ /** @example 2026-04-10T23:21:14.000000Z */
12685
12983
  created_at?: string;
12686
12984
  };
12687
12985
  };
@@ -12708,19 +13006,19 @@ export interface operations {
12708
13006
  content: {
12709
13007
  "application/json": {
12710
13008
  data?: {
12711
- /** @example 49 */
13009
+ /** @example 14 */
12712
13010
  id?: number;
12713
13011
  /** @example 2 */
12714
13012
  listing_id?: number;
12715
13013
  /** @example completed */
12716
13014
  status?: string;
12717
13015
  scheduled?: {
12718
- /** @example 1981-11-30T00:00:00.000000Z */
13016
+ /** @example 1981-11-29T00:00:00.000000Z */
12719
13017
  start?: string;
12720
- /** @example 1979-12-27T00:00:00.000000Z */
13018
+ /** @example 1979-12-26T00:00:00.000000Z */
12721
13019
  end?: string;
12722
13020
  };
12723
- /** @example 2026-04-09T15:59:56.000000Z */
13021
+ /** @example 2026-04-10T23:21:14.000000Z */
12724
13022
  created_at?: string;
12725
13023
  };
12726
13024
  };
@@ -13083,6 +13381,11 @@ export interface operations {
13083
13381
  * @example 2026-06-14
13084
13382
  */
13085
13383
  end_date: string;
13384
+ /**
13385
+ * @description Number of guests expected for the stay. Must be at least 1.
13386
+ * @example 2
13387
+ */
13388
+ guest_count?: number;
13086
13389
  };
13087
13390
  };
13088
13391
  };
@@ -13108,6 +13411,8 @@ export interface operations {
13108
13411
  /** @example null */
13109
13412
  host_id?: string | null;
13110
13413
  /** @example null */
13414
+ guest_count?: string | null;
13415
+ /** @example null */
13111
13416
  start_date?: string | null;
13112
13417
  /** @example null */
13113
13418
  end_date?: string | null;
@@ -13158,6 +13463,8 @@ export interface operations {
13158
13463
  /** @example null */
13159
13464
  host_id?: string | null;
13160
13465
  /** @example null */
13466
+ guest_count?: string | null;
13467
+ /** @example null */
13161
13468
  start_date?: string | null;
13162
13469
  /** @example null */
13163
13470
  end_date?: string | null;
@@ -13208,6 +13515,8 @@ export interface operations {
13208
13515
  /** @example null */
13209
13516
  host_id?: string | null;
13210
13517
  /** @example null */
13518
+ guest_count?: string | null;
13519
+ /** @example null */
13211
13520
  start_date?: string | null;
13212
13521
  /** @example null */
13213
13522
  end_date?: string | null;
@@ -13258,6 +13567,8 @@ export interface operations {
13258
13567
  /** @example null */
13259
13568
  host_id?: string | null;
13260
13569
  /** @example null */
13570
+ guest_count?: string | null;
13571
+ /** @example null */
13261
13572
  start_date?: string | null;
13262
13573
  /** @example null */
13263
13574
  end_date?: string | null;
@@ -13778,7 +14089,7 @@ export interface operations {
13778
14089
  content: {
13779
14090
  "application/json": {
13780
14091
  data?: {
13781
- /** @example f0124231-b008-47ff-a9f3-ecd106467429 */
14092
+ /** @example 4e809166-0e31-400d-9ae3-0863e3259ac2 */
13782
14093
  uid?: string;
13783
14094
  /** @example Ms. Audra Crooks II */
13784
14095
  username?: string;
@@ -13808,7 +14119,7 @@ export interface operations {
13808
14119
  timezone?: string;
13809
14120
  /** @example Customer */
13810
14121
  user_type?: string;
13811
- /** @example 09 Apr 2026, 03:59 PM */
14122
+ /** @example 10 Apr 2026, 11:21 PM */
13812
14123
  created?: string;
13813
14124
  /** @example 0 seconds ago */
13814
14125
  email_verified_at?: string;
@@ -14277,7 +14588,7 @@ export interface operations {
14277
14588
  content: {
14278
14589
  "application/json": {
14279
14590
  data?: {
14280
- /** @example 046f7f14-f2dc-4067-b3aa-96cfe413fc3f */
14591
+ /** @example f738a0eb-7ff1-4e89-8dcb-030a361d7892 */
14281
14592
  uid?: string;
14282
14593
  /** @example Ms. Audra Crooks II */
14283
14594
  username?: string;
@@ -14307,7 +14618,7 @@ export interface operations {
14307
14618
  timezone?: string;
14308
14619
  /** @example Customer */
14309
14620
  user_type?: string;
14310
- /** @example 09 Apr 2026, 03:59 PM */
14621
+ /** @example 10 Apr 2026, 11:21 PM */
14311
14622
  created?: string;
14312
14623
  /** @example 0 seconds ago */
14313
14624
  email_verified_at?: string;
@@ -14411,6 +14722,12 @@ export interface operations {
14411
14722
  * @enum {string}
14412
14723
  */
14413
14724
  listing_vertical: "property" | "used_item";
14725
+ /**
14726
+ * @description optional for property listings.
14727
+ * @example standard_residential
14728
+ * @enum {string}
14729
+ */
14730
+ arrangement_type?: "standard_residential" | "let_to_let" | "company_lease" | "short_term_managed";
14414
14731
  };
14415
14732
  };
14416
14733
  };
@@ -14422,16 +14739,20 @@ export interface operations {
14422
14739
  content: {
14423
14740
  "application/json": {
14424
14741
  data?: {
14425
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
14742
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
14426
14743
  draft_name?: string;
14427
- /** @example LST-PRP-LTR-MNRNXPQCYQB */
14744
+ /** @example LST-PRP-LTR-MNTJ537L1M0 */
14428
14745
  sku?: string;
14429
- /** @example 45a69d58-dc83-4849-9185-04d67d6225aa */
14746
+ /** @example d2506ada-4729-4fd3-a600-1b0a4a1825d7 */
14430
14747
  uid?: string;
14431
14748
  /** @example Rent */
14432
14749
  listing_type?: string;
14433
14750
  /** @example Property */
14434
14751
  vertical?: string;
14752
+ /** @example let_to_let */
14753
+ arrangement_type?: string;
14754
+ /** @example Let to Let */
14755
+ arrangement_type_label?: string;
14435
14756
  /** @example null */
14436
14757
  price?: string | null;
14437
14758
  /** @example draft */
@@ -14492,6 +14813,42 @@ export interface operations {
14492
14813
  };
14493
14814
  };
14494
14815
  };
14816
+ saveArrangementType: {
14817
+ parameters: {
14818
+ query?: never;
14819
+ header?: never;
14820
+ path: {
14821
+ /** @description The UID of the listing. */
14822
+ listing_uid: string;
14823
+ };
14824
+ cookie?: never;
14825
+ };
14826
+ requestBody: {
14827
+ content: {
14828
+ "application/json": {
14829
+ /** @example null */
14830
+ arrangement_type: string;
14831
+ };
14832
+ };
14833
+ };
14834
+ responses: {
14835
+ 200: {
14836
+ headers: {
14837
+ [name: string]: unknown;
14838
+ };
14839
+ content: {
14840
+ "application/json": {
14841
+ /** @example Arrangement Type saved */
14842
+ message?: string;
14843
+ /** @example success */
14844
+ event?: string;
14845
+ /** @example [] */
14846
+ data?: unknown[];
14847
+ };
14848
+ };
14849
+ };
14850
+ };
14851
+ };
14495
14852
  getDraftListings: {
14496
14853
  parameters: {
14497
14854
  query?: never;
@@ -14510,11 +14867,13 @@ export interface operations {
14510
14867
  /**
14511
14868
  * @example [
14512
14869
  * {
14513
- * "draft_name": "New For Rent Property draft • 9 Apr 2026, 3:59 PM",
14514
- * "sku": "LST-PRP-LTR-MNRNXPRANVR",
14515
- * "uid": "18bca7f8-4ad0-4b65-8f9f-33ab8100256f",
14870
+ * "draft_name": "New For Rent Property draft • 10 Apr 2026, 11:21 PM",
14871
+ * "sku": "LST-PRP-LTR-MNTJ538JH71",
14872
+ * "uid": "37c11f40-3979-4da4-ba83-10fa013fe51b",
14516
14873
  * "listing_type": "Rent",
14517
14874
  * "vertical": "Property",
14875
+ * "arrangement_type": "let_to_let",
14876
+ * "arrangement_type_label": "Let to Let",
14518
14877
  * "price": null,
14519
14878
  * "state": "draft",
14520
14879
  * "published_at": null,
@@ -14527,33 +14886,41 @@ export interface operations {
14527
14886
  * "media": []
14528
14887
  * },
14529
14888
  * {
14530
- * "draft_name": "New For Sale Used Item draft • 9 Apr 2026, 3:59 PM",
14531
- * "sku": "LST-UIT-SAL-MNRNXPRDGMN",
14532
- * "uid": "29fc3ca2-9017-4fa3-908c-f2c9959e1caf",
14533
- * "listing_type": "Sale",
14534
- * "vertical": "Used Item",
14889
+ * "draft_name": "New Short Let Property draft • 10 Apr 2026, 11:21 PM",
14890
+ * "sku": "LST-PRP-SHL-MNTJ538MSS2",
14891
+ * "uid": "383364dc-749f-41ed-9ed7-dedb67c7c301",
14892
+ * "listing_type": "Short Let",
14893
+ * "vertical": "Property",
14894
+ * "arrangement_type": "short_term_managed",
14895
+ * "arrangement_type_label": "Short Term Managed",
14535
14896
  * "price": null,
14536
14897
  * "state": "draft",
14537
14898
  * "published_at": null,
14538
14899
  * "published_since": null,
14539
14900
  * "is_visible": false,
14540
- * "summary": [],
14901
+ * "summary": {
14902
+ * "availability": null
14903
+ * },
14541
14904
  * "workflow": [],
14542
14905
  * "media": []
14543
14906
  * }
14544
14907
  * ]
14545
14908
  */
14546
14909
  data?: {
14547
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
14910
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
14548
14911
  draft_name?: string;
14549
- /** @example LST-PRP-LTR-MNRNXPRANVR */
14912
+ /** @example LST-PRP-LTR-MNTJ538JH71 */
14550
14913
  sku?: string;
14551
- /** @example 18bca7f8-4ad0-4b65-8f9f-33ab8100256f */
14914
+ /** @example 37c11f40-3979-4da4-ba83-10fa013fe51b */
14552
14915
  uid?: string;
14553
14916
  /** @example Rent */
14554
14917
  listing_type?: string;
14555
14918
  /** @example Property */
14556
14919
  vertical?: string;
14920
+ /** @example let_to_let */
14921
+ arrangement_type?: string;
14922
+ /** @example Let to Let */
14923
+ arrangement_type_label?: string;
14557
14924
  /** @example null */
14558
14925
  price?: string | null;
14559
14926
  /** @example draft */
@@ -14654,11 +15021,13 @@ export interface operations {
14654
15021
  /**
14655
15022
  * @example [
14656
15023
  * {
14657
- * "draft_name": "New For Rent Property draft • 9 Apr 2026, 3:59 PM",
14658
- * "sku": "LST-PRP-LTR-MNRNXPROYD5",
14659
- * "uid": "16e0a825-0510-4366-8fda-5d0857793886",
15024
+ * "draft_name": "New For Rent Property draft • 10 Apr 2026, 11:21 PM",
15025
+ * "sku": "LST-PRP-LTR-MNTJ538TS5R",
15026
+ * "uid": "7b2f6708-f26c-4257-9d1b-c41123b30de8",
14660
15027
  * "listing_type": "Rent",
14661
15028
  * "vertical": "Property",
15029
+ * "arrangement_type": "let_to_let",
15030
+ * "arrangement_type_label": "Let to Let",
14662
15031
  * "price": null,
14663
15032
  * "state": "draft",
14664
15033
  * "published_at": null,
@@ -14671,33 +15040,41 @@ export interface operations {
14671
15040
  * "media": []
14672
15041
  * },
14673
15042
  * {
14674
- * "draft_name": "New For Sale Used Item draft • 9 Apr 2026, 3:59 PM",
14675
- * "sku": "LST-UIT-SAL-MNRNXPRQIRP",
14676
- * "uid": "655a0483-205a-4615-aec9-5f79eee27fc1",
14677
- * "listing_type": "Sale",
14678
- * "vertical": "Used Item",
15043
+ * "draft_name": "New Short Let Property draft • 10 Apr 2026, 11:21 PM",
15044
+ * "sku": "LST-PRP-SHL-MNTJ538XBUT",
15045
+ * "uid": "518b63c4-9054-4a7d-9c4e-a6acdc166d73",
15046
+ * "listing_type": "Short Let",
15047
+ * "vertical": "Property",
15048
+ * "arrangement_type": "short_term_managed",
15049
+ * "arrangement_type_label": "Short Term Managed",
14679
15050
  * "price": null,
14680
15051
  * "state": "draft",
14681
15052
  * "published_at": null,
14682
15053
  * "published_since": null,
14683
15054
  * "is_visible": false,
14684
- * "summary": [],
15055
+ * "summary": {
15056
+ * "availability": null
15057
+ * },
14685
15058
  * "workflow": [],
14686
15059
  * "media": []
14687
15060
  * }
14688
15061
  * ]
14689
15062
  */
14690
15063
  data?: {
14691
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
15064
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
14692
15065
  draft_name?: string;
14693
- /** @example LST-PRP-LTR-MNRNXPROYD5 */
15066
+ /** @example LST-PRP-LTR-MNTJ538TS5R */
14694
15067
  sku?: string;
14695
- /** @example 16e0a825-0510-4366-8fda-5d0857793886 */
15068
+ /** @example 7b2f6708-f26c-4257-9d1b-c41123b30de8 */
14696
15069
  uid?: string;
14697
15070
  /** @example Rent */
14698
15071
  listing_type?: string;
14699
15072
  /** @example Property */
14700
15073
  vertical?: string;
15074
+ /** @example let_to_let */
15075
+ arrangement_type?: string;
15076
+ /** @example Let to Let */
15077
+ arrangement_type_label?: string;
14701
15078
  /** @example null */
14702
15079
  price?: string | null;
14703
15080
  /** @example draft */
@@ -14798,11 +15175,13 @@ export interface operations {
14798
15175
  /**
14799
15176
  * @example [
14800
15177
  * {
14801
- * "draft_name": "New For Rent Property draft • 9 Apr 2026, 3:59 PM",
14802
- * "sku": "LST-PRP-LTR-MNRNXPRVMFR",
14803
- * "uid": "151ca821-4ca2-4ac9-9a2b-3cf64954f383",
15178
+ * "draft_name": "New For Rent Property draft • 10 Apr 2026, 11:21 PM",
15179
+ * "sku": "LST-PRP-LTR-MNTJ5394SIX",
15180
+ * "uid": "d229f57c-0be1-4e50-a192-adf773479b36",
14804
15181
  * "listing_type": "Rent",
14805
15182
  * "vertical": "Property",
15183
+ * "arrangement_type": "let_to_let",
15184
+ * "arrangement_type_label": "Let to Let",
14806
15185
  * "price": null,
14807
15186
  * "state": "draft",
14808
15187
  * "published_at": null,
@@ -14815,33 +15194,41 @@ export interface operations {
14815
15194
  * "media": []
14816
15195
  * },
14817
15196
  * {
14818
- * "draft_name": "New For Sale Used Item draft • 9 Apr 2026, 3:59 PM",
14819
- * "sku": "LST-UIT-SAL-MNRNXPRXPAJ",
14820
- * "uid": "70453459-8ad5-488b-a212-9e422674e04f",
14821
- * "listing_type": "Sale",
14822
- * "vertical": "Used Item",
15197
+ * "draft_name": "New Short Let Property draft • 10 Apr 2026, 11:21 PM",
15198
+ * "sku": "LST-PRP-SHL-MNTJ53972EP",
15199
+ * "uid": "8fe79117-34bd-4a0c-bb9d-6b9fc544b9b5",
15200
+ * "listing_type": "Short Let",
15201
+ * "vertical": "Property",
15202
+ * "arrangement_type": "short_term_managed",
15203
+ * "arrangement_type_label": "Short Term Managed",
14823
15204
  * "price": null,
14824
15205
  * "state": "draft",
14825
15206
  * "published_at": null,
14826
15207
  * "published_since": null,
14827
15208
  * "is_visible": false,
14828
- * "summary": [],
15209
+ * "summary": {
15210
+ * "availability": null
15211
+ * },
14829
15212
  * "workflow": [],
14830
15213
  * "media": []
14831
15214
  * }
14832
15215
  * ]
14833
15216
  */
14834
15217
  data?: {
14835
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
15218
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
14836
15219
  draft_name?: string;
14837
- /** @example LST-PRP-LTR-MNRNXPRVMFR */
15220
+ /** @example LST-PRP-LTR-MNTJ5394SIX */
14838
15221
  sku?: string;
14839
- /** @example 151ca821-4ca2-4ac9-9a2b-3cf64954f383 */
15222
+ /** @example d229f57c-0be1-4e50-a192-adf773479b36 */
14840
15223
  uid?: string;
14841
15224
  /** @example Rent */
14842
15225
  listing_type?: string;
14843
15226
  /** @example Property */
14844
15227
  vertical?: string;
15228
+ /** @example let_to_let */
15229
+ arrangement_type?: string;
15230
+ /** @example Let to Let */
15231
+ arrangement_type_label?: string;
14845
15232
  /** @example null */
14846
15233
  price?: string | null;
14847
15234
  /** @example draft */
@@ -14943,16 +15330,20 @@ export interface operations {
14943
15330
  content: {
14944
15331
  "application/json": {
14945
15332
  data?: {
14946
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
15333
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
14947
15334
  draft_name?: string;
14948
- /** @example LST-PRP-LTR-MNRNXPS2RG0 */
15335
+ /** @example LST-PRP-LTR-MNTJ539EQ1E */
14949
15336
  sku?: string;
14950
- /** @example 77ae43bf-01c5-4065-af65-89a5f7e4dc0b */
15337
+ /** @example 5e8ef16a-ed3d-4ff7-82fd-2ee97c060df9 */
14951
15338
  uid?: string;
14952
15339
  /** @example Rent */
14953
15340
  listing_type?: string;
14954
15341
  /** @example Property */
14955
15342
  vertical?: string;
15343
+ /** @example let_to_let */
15344
+ arrangement_type?: string;
15345
+ /** @example Let to Let */
15346
+ arrangement_type_label?: string;
14956
15347
  /** @example null */
14957
15348
  price?: string | null;
14958
15349
  /** @example draft */
@@ -15059,6 +15450,54 @@ export interface operations {
15059
15450
  };
15060
15451
  };
15061
15452
  };
15453
+ saveListingPolicy: {
15454
+ parameters: {
15455
+ query?: never;
15456
+ header?: never;
15457
+ path: {
15458
+ /** @description The UID of the listing. */
15459
+ listing_uid: string;
15460
+ };
15461
+ cookie?: never;
15462
+ };
15463
+ requestBody: {
15464
+ content: {
15465
+ "application/json": {
15466
+ /** @example null */
15467
+ max_occupants: string;
15468
+ /** @example null */
15469
+ allowed_use_type: string;
15470
+ /** @example null */
15471
+ is_subletting_allowed: string;
15472
+ /** @example null */
15473
+ requires_permission_for_subletting: string;
15474
+ /** @example null */
15475
+ event_permission_required: string;
15476
+ /** @example null */
15477
+ no_party_policy: string;
15478
+ /** @example null */
15479
+ commercial_use_flag: string;
15480
+ };
15481
+ };
15482
+ };
15483
+ responses: {
15484
+ 200: {
15485
+ headers: {
15486
+ [name: string]: unknown;
15487
+ };
15488
+ content: {
15489
+ "application/json": {
15490
+ /** @example Listing Policy saved */
15491
+ message?: string;
15492
+ /** @example success */
15493
+ event?: string;
15494
+ /** @example [] */
15495
+ data?: unknown[];
15496
+ };
15497
+ };
15498
+ };
15499
+ };
15500
+ };
15062
15501
  savePropertyBasics: {
15063
15502
  parameters: {
15064
15503
  query?: never;
@@ -15167,7 +15606,7 @@ export interface operations {
15167
15606
  };
15168
15607
  cookie?: never;
15169
15608
  };
15170
- requestBody?: {
15609
+ requestBody: {
15171
15610
  content: {
15172
15611
  "application/json": {
15173
15612
  /**
@@ -15185,6 +15624,10 @@ export interface operations {
15185
15624
  * @example 2026-04-01
15186
15625
  */
15187
15626
  availability_date?: string;
15627
+ /** @example null */
15628
+ is_company_lease: string;
15629
+ /** @example null */
15630
+ is_subletting_permitted: string;
15188
15631
  };
15189
15632
  };
15190
15633
  };
@@ -15554,7 +15997,7 @@ export interface operations {
15554
15997
  content: {
15555
15998
  "application/json": {
15556
15999
  data?: {
15557
- /** @example f1630fa2-ad0c-4333-bfe0-0e992364a7d4 */
16000
+ /** @example 1d1aecf4-1a53-49f8-81d4-dc3d95563ece */
15558
16001
  uid?: string;
15559
16002
  /** @example photo */
15560
16003
  media_type?: string;
@@ -15703,16 +16146,20 @@ export interface operations {
15703
16146
  content: {
15704
16147
  "application/json": {
15705
16148
  data?: {
15706
- /** @example New For Rent Property draft • 9 Apr 2026, 3:59 PM */
16149
+ /** @example New For Rent Property draft • 10 Apr 2026, 11:21 PM */
15707
16150
  draft_name?: string;
15708
- /** @example LST-PRP-LTR-MNRNXPU6ZZ0 */
16151
+ /** @example LST-PRP-LTR-MNTJ53BKEWB */
15709
16152
  sku?: string;
15710
- /** @example f09a435a-8ec5-4f45-bb7d-0c9d9cd057b9 */
16153
+ /** @example afb9eec2-7ae0-47b7-b612-5024b492bf08 */
15711
16154
  uid?: string;
15712
16155
  /** @example Rent */
15713
16156
  listing_type?: string;
15714
16157
  /** @example Property */
15715
16158
  vertical?: string;
16159
+ /** @example let_to_let */
16160
+ arrangement_type?: string;
16161
+ /** @example Let to Let */
16162
+ arrangement_type_label?: string;
15716
16163
  /** @example null */
15717
16164
  price?: string | null;
15718
16165
  /** @example draft */
@@ -15863,7 +16310,7 @@ export interface operations {
15863
16310
  content: {
15864
16311
  "application/json": {
15865
16312
  data?: {
15866
- /** @example 829c3303-6975-45ce-a9b5-173b8048c4ec */
16313
+ /** @example d3f3b210-8b07-425b-9830-86924ff3b4e7 */
15867
16314
  uid?: string;
15868
16315
  /** @example null */
15869
16316
  compliances?: string | null;
@@ -15914,7 +16361,7 @@ export interface operations {
15914
16361
  content: {
15915
16362
  "application/json": {
15916
16363
  data?: {
15917
- /** @example 94 */
16364
+ /** @example 79 */
15918
16365
  id?: number;
15919
16366
  compliance?: {
15920
16367
  /** @example 1 */
@@ -15936,7 +16383,7 @@ export interface operations {
15936
16383
  reviewed_by?: number;
15937
16384
  /** @example null */
15938
16385
  reviewed_at?: string | null;
15939
- /** @example 2026-04-09T15:59:54.000000Z */
16386
+ /** @example 2026-04-10T23:21:13.000000Z */
15940
16387
  created_at?: string;
15941
16388
  };
15942
16389
  };
@@ -15991,35 +16438,39 @@ export interface operations {
15991
16438
  /**
15992
16439
  * @example [
15993
16440
  * {
15994
- * "uid": "02a0f87f-ea3a-4896-86b9-a0a7152a8a33",
16441
+ * "uid": "bf77fa96-8354-4b80-9656-a0816c59c4b5",
15995
16442
  * "listing_id": 1,
15996
16443
  * "landlord_id": 2,
15997
16444
  * "tenant_id": 2,
15998
16445
  * "rent_amount": "4881.50",
15999
16446
  * "deposit_amount": "2151.17",
16000
16447
  * "state": "offer_accepted",
16001
- * "start_date": "2025-10-15T00:00:00.000000Z",
16002
- * "end_date": "2026-10-15T00:00:00.000000Z",
16448
+ * "start_date": "2025-10-16T00:00:00.000000Z",
16449
+ * "end_date": "2026-10-16T00:00:00.000000Z",
16003
16450
  * "is_periodic": false,
16004
- * "created_at": "2026-04-09T15:59:54.000000Z"
16451
+ * "company_name": null,
16452
+ * "company_registration_number": null,
16453
+ * "created_at": "2026-04-10T23:21:13.000000Z"
16005
16454
  * },
16006
16455
  * {
16007
- * "uid": "411fed03-53f6-4c09-a00f-2e040997e996",
16456
+ * "uid": "355b48fa-1697-47b3-b89a-0b270acc0b4a",
16008
16457
  * "listing_id": 1,
16009
16458
  * "landlord_id": 2,
16010
16459
  * "tenant_id": 2,
16011
16460
  * "rent_amount": "3832.26",
16012
16461
  * "deposit_amount": "1384.27",
16013
16462
  * "state": "terminated",
16014
- * "start_date": "2025-09-10T00:00:00.000000Z",
16015
- * "end_date": "2026-09-10T00:00:00.000000Z",
16463
+ * "start_date": "2025-09-11T00:00:00.000000Z",
16464
+ * "end_date": "2026-09-11T00:00:00.000000Z",
16016
16465
  * "is_periodic": false,
16017
- * "created_at": "2026-04-09T15:59:54.000000Z"
16466
+ * "company_name": null,
16467
+ * "company_registration_number": null,
16468
+ * "created_at": "2026-04-10T23:21:13.000000Z"
16018
16469
  * }
16019
16470
  * ]
16020
16471
  */
16021
16472
  data?: {
16022
- /** @example 02a0f87f-ea3a-4896-86b9-a0a7152a8a33 */
16473
+ /** @example bf77fa96-8354-4b80-9656-a0816c59c4b5 */
16023
16474
  uid?: string;
16024
16475
  /** @example 1 */
16025
16476
  listing_id?: number;
@@ -16033,13 +16484,17 @@ export interface operations {
16033
16484
  deposit_amount?: string;
16034
16485
  /** @example offer_accepted */
16035
16486
  state?: string;
16036
- /** @example 2025-10-15T00:00:00.000000Z */
16487
+ /** @example 2025-10-16T00:00:00.000000Z */
16037
16488
  start_date?: string;
16038
- /** @example 2026-10-15T00:00:00.000000Z */
16489
+ /** @example 2026-10-16T00:00:00.000000Z */
16039
16490
  end_date?: string;
16040
16491
  /** @example false */
16041
16492
  is_periodic?: boolean;
16042
- /** @example 2026-04-09T15:59:54.000000Z */
16493
+ /** @example null */
16494
+ company_name?: string | null;
16495
+ /** @example null */
16496
+ company_registration_number?: string | null;
16497
+ /** @example 2026-04-10T23:21:13.000000Z */
16043
16498
  created_at?: string;
16044
16499
  }[];
16045
16500
  links?: {
@@ -16126,35 +16581,39 @@ export interface operations {
16126
16581
  /**
16127
16582
  * @example [
16128
16583
  * {
16129
- * "uid": "61a92405-fc39-4941-9ee8-ec641d201514",
16584
+ * "uid": "01cac5b9-3b9a-4ba0-971e-ba5226aafe65",
16130
16585
  * "listing_id": 1,
16131
16586
  * "landlord_id": 2,
16132
16587
  * "tenant_id": 2,
16133
16588
  * "rent_amount": "4881.50",
16134
16589
  * "deposit_amount": "2151.17",
16135
16590
  * "state": "offer_accepted",
16136
- * "start_date": "2025-10-15T00:00:00.000000Z",
16137
- * "end_date": "2026-10-15T00:00:00.000000Z",
16591
+ * "start_date": "2025-10-16T00:00:00.000000Z",
16592
+ * "end_date": "2026-10-16T00:00:00.000000Z",
16138
16593
  * "is_periodic": false,
16139
- * "created_at": "2026-04-09T15:59:54.000000Z"
16594
+ * "company_name": null,
16595
+ * "company_registration_number": null,
16596
+ * "created_at": "2026-04-10T23:21:13.000000Z"
16140
16597
  * },
16141
16598
  * {
16142
- * "uid": "0eee388e-6c99-48a4-8696-244259603017",
16599
+ * "uid": "2e6fc67c-f5a5-44cd-8e55-5bd47d3dc947",
16143
16600
  * "listing_id": 1,
16144
16601
  * "landlord_id": 2,
16145
16602
  * "tenant_id": 2,
16146
16603
  * "rent_amount": "3832.26",
16147
16604
  * "deposit_amount": "1384.27",
16148
16605
  * "state": "terminated",
16149
- * "start_date": "2025-09-10T00:00:00.000000Z",
16150
- * "end_date": "2026-09-10T00:00:00.000000Z",
16606
+ * "start_date": "2025-09-11T00:00:00.000000Z",
16607
+ * "end_date": "2026-09-11T00:00:00.000000Z",
16151
16608
  * "is_periodic": false,
16152
- * "created_at": "2026-04-09T15:59:54.000000Z"
16609
+ * "company_name": null,
16610
+ * "company_registration_number": null,
16611
+ * "created_at": "2026-04-10T23:21:13.000000Z"
16153
16612
  * }
16154
16613
  * ]
16155
16614
  */
16156
16615
  data?: {
16157
- /** @example 61a92405-fc39-4941-9ee8-ec641d201514 */
16616
+ /** @example 01cac5b9-3b9a-4ba0-971e-ba5226aafe65 */
16158
16617
  uid?: string;
16159
16618
  /** @example 1 */
16160
16619
  listing_id?: number;
@@ -16168,13 +16627,17 @@ export interface operations {
16168
16627
  deposit_amount?: string;
16169
16628
  /** @example offer_accepted */
16170
16629
  state?: string;
16171
- /** @example 2025-10-15T00:00:00.000000Z */
16630
+ /** @example 2025-10-16T00:00:00.000000Z */
16172
16631
  start_date?: string;
16173
- /** @example 2026-10-15T00:00:00.000000Z */
16632
+ /** @example 2026-10-16T00:00:00.000000Z */
16174
16633
  end_date?: string;
16175
16634
  /** @example false */
16176
16635
  is_periodic?: boolean;
16177
- /** @example 2026-04-09T15:59:54.000000Z */
16636
+ /** @example null */
16637
+ company_name?: string | null;
16638
+ /** @example null */
16639
+ company_registration_number?: string | null;
16640
+ /** @example 2026-04-10T23:21:13.000000Z */
16178
16641
  created_at?: string;
16179
16642
  }[];
16180
16643
  links?: {
@@ -16281,7 +16744,7 @@ export interface operations {
16281
16744
  content: {
16282
16745
  "application/json": {
16283
16746
  data?: {
16284
- /** @example 103 */
16747
+ /** @example 83 */
16285
16748
  id?: number;
16286
16749
  compliance?: {
16287
16750
  /** @example 1 */
@@ -16301,9 +16764,9 @@ export interface operations {
16301
16764
  rejection_reason?: string | null;
16302
16765
  /** @example 1 */
16303
16766
  reviewed_by?: number;
16304
- /** @example 2026-04-09T15:59:54.000000Z */
16767
+ /** @example 2026-04-10T23:21:13.000000Z */
16305
16768
  reviewed_at?: string;
16306
- /** @example 2026-04-09T15:59:54.000000Z */
16769
+ /** @example 2026-04-10T23:21:13.000000Z */
16307
16770
  created_at?: string;
16308
16771
  };
16309
16772
  };
@@ -16330,7 +16793,7 @@ export interface operations {
16330
16793
  content: {
16331
16794
  "application/json": {
16332
16795
  data?: {
16333
- /** @example 104 */
16796
+ /** @example 84 */
16334
16797
  id?: number;
16335
16798
  compliance?: {
16336
16799
  /** @example 1 */
@@ -16350,9 +16813,9 @@ export interface operations {
16350
16813
  rejection_reason?: string | null;
16351
16814
  /** @example 1 */
16352
16815
  reviewed_by?: number;
16353
- /** @example 2026-04-09T15:59:54.000000Z */
16816
+ /** @example 2026-04-10T23:21:13.000000Z */
16354
16817
  reviewed_at?: string;
16355
- /** @example 2026-04-09T15:59:54.000000Z */
16818
+ /** @example 2026-04-10T23:21:13.000000Z */
16356
16819
  created_at?: string;
16357
16820
  };
16358
16821
  };
@@ -16367,6 +16830,8 @@ export interface operations {
16367
16830
  vertical: "property" | "used_item";
16368
16831
  /** @description Search keyword or phrase. */
16369
16832
  q?: string;
16833
+ /** @description Filter property listings by arrangement type. */
16834
+ arrangement_type?: "standard_residential" | "let_to_let" | "company_lease" | "short_term_managed";
16370
16835
  features?: string[];
16371
16836
  /** @description Number of results per page. Must be at least 1. Must not be greater than 50. */
16372
16837
  per_page?: number;
@@ -16409,6 +16874,8 @@ export interface operations {
16409
16874
  * },
16410
16875
  * "listing_type": "Rent",
16411
16876
  * "vertical": "Property",
16877
+ * "arrangement_type": "company_lease",
16878
+ * "arrangement_type_label": "Company Lease",
16412
16879
  * "price": {
16413
16880
  * "amount": "250000.00",
16414
16881
  * "currency": "NGN",
@@ -16472,6 +16939,10 @@ export interface operations {
16472
16939
  listing_type?: string;
16473
16940
  /** @example Property */
16474
16941
  vertical?: string;
16942
+ /** @example company_lease */
16943
+ arrangement_type?: string;
16944
+ /** @example Company Lease */
16945
+ arrangement_type_label?: string;
16475
16946
  price?: {
16476
16947
  /** @example 250000.00 */
16477
16948
  amount?: string;
@@ -16552,6 +17023,8 @@ export interface operations {
16552
17023
  listing_type?: "sale" | "long_term_rent" | "short_let";
16553
17024
  /** @description Filter listings by vertical. */
16554
17025
  listing_vertical?: "property" | "used_item";
17026
+ /** @description Filter property listings by arrangement type. */
17027
+ arrangement_type?: "standard_residential" | "let_to_let" | "company_lease" | "short_term_managed";
16555
17028
  /** @description Filter by city. */
16556
17029
  city?: string;
16557
17030
  /** @description Filter by postcode. */
@@ -16621,6 +17094,8 @@ export interface operations {
16621
17094
  * },
16622
17095
  * "listing_type": "Rent",
16623
17096
  * "vertical": "Property",
17097
+ * "arrangement_type": "company_lease",
17098
+ * "arrangement_type_label": "Company Lease",
16624
17099
  * "price": {
16625
17100
  * "amount": "250000.00",
16626
17101
  * "currency": "NGN",
@@ -16684,6 +17159,10 @@ export interface operations {
16684
17159
  listing_type?: string;
16685
17160
  /** @example Property */
16686
17161
  vertical?: string;
17162
+ /** @example company_lease */
17163
+ arrangement_type?: string;
17164
+ /** @example Company Lease */
17165
+ arrangement_type_label?: string;
16687
17166
  price?: {
16688
17167
  /** @example 250000.00 */
16689
17168
  amount?: string;
@@ -16789,7 +17268,7 @@ export interface operations {
16789
17268
  sku?: string;
16790
17269
  /** @example 09 Apr 2026, 11:14 AM */
16791
17270
  published_at?: string;
16792
- /** @example 4 hours ago */
17271
+ /** @example 1 day ago */
16793
17272
  published_since?: string;
16794
17273
  details?: {
16795
17274
  /** @example New Benin */
@@ -16813,6 +17292,10 @@ export interface operations {
16813
17292
  listing_type?: string;
16814
17293
  /** @example Property */
16815
17294
  vertical?: string;
17295
+ /** @example short_term_managed */
17296
+ arrangement_type?: string;
17297
+ /** @example Short Term Managed */
17298
+ arrangement_type_label?: string;
16816
17299
  owner?: {
16817
17300
  /** @example 995bab94-174a-4a7c-a8ed-65c951f0198f */
16818
17301
  uid?: string;
@@ -16956,6 +17439,28 @@ export interface operations {
16956
17439
  fixed_term_length?: string | null;
16957
17440
  /** @example null */
16958
17441
  availability_date?: string | null;
17442
+ /** @example false */
17443
+ is_company_lease?: boolean;
17444
+ /** @example false */
17445
+ is_subletting_permitted?: boolean;
17446
+ };
17447
+ listing_policy?: {
17448
+ /** @example 4 */
17449
+ max_occupants?: number;
17450
+ /** @example short_stay */
17451
+ allowed_use_type?: string;
17452
+ /** @example Short Stay */
17453
+ allowed_use_type_label?: string;
17454
+ /** @example false */
17455
+ is_subletting_allowed?: boolean;
17456
+ /** @example true */
17457
+ requires_permission_for_subletting?: boolean;
17458
+ /** @example true */
17459
+ event_permission_required?: boolean;
17460
+ /** @example true */
17461
+ no_party_policy?: boolean;
17462
+ /** @example false */
17463
+ commercial_use_flag?: boolean;
16959
17464
  };
16960
17465
  short_let?: {
16961
17466
  /** @example 500.00 */
@@ -17041,6 +17546,9 @@ export interface operations {
17041
17546
  * "validity_type": "non_expiring",
17042
17547
  * "grace_period_days": null,
17043
17548
  * "status": "active",
17549
+ * "responsible_party": "landlord",
17550
+ * "responsible_party_label": "Landlord",
17551
+ * "liability_exclusion_flag": false,
17044
17552
  * "requirements": [
17045
17553
  * "ownership_document_upload"
17046
17554
  * ]
@@ -17064,6 +17572,12 @@ export interface operations {
17064
17572
  grace_period_days?: string | null;
17065
17573
  /** @example active */
17066
17574
  status?: string;
17575
+ /** @example landlord */
17576
+ responsible_party?: string;
17577
+ /** @example Landlord */
17578
+ responsible_party_label?: string;
17579
+ /** @example false */
17580
+ liability_exclusion_flag?: boolean;
17067
17581
  /**
17068
17582
  * @example [
17069
17583
  * "ownership_document_upload"
@@ -17323,35 +17837,35 @@ export interface operations {
17323
17837
  /**
17324
17838
  * @example [
17325
17839
  * {
17326
- * "uid": "b13fc84a-764d-41d9-a9df-5b100738e7de",
17840
+ * "uid": "132f9623-d763-4381-8249-0f7cb2193265",
17327
17841
  * "title": "Quos velit et fugiat sunt nihil.",
17328
17842
  * "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.",
17329
17843
  * "status": "reported",
17330
17844
  * "priority": "emergency",
17331
- * "reported_at": "2026-04-03T03:13:31.000000Z",
17332
- * "assigned_at": "2026-04-07T23:33:23.000000Z",
17845
+ * "reported_at": "2026-04-04T10:34:49.000000Z",
17846
+ * "assigned_at": "2026-04-09T06:54:41.000000Z",
17333
17847
  * "completed_at": null,
17334
- * "sla_deadline": "2026-04-11T04:55:46.000000Z",
17335
- * "created_at": "2026-04-09T15:59:56.000000Z",
17336
- * "updated_at": "2026-04-09T15:59:56.000000Z"
17848
+ * "sla_deadline": "2026-04-12T12:17:04.000000Z",
17849
+ * "created_at": "2026-04-10T23:21:14.000000Z",
17850
+ * "updated_at": "2026-04-10T23:21:14.000000Z"
17337
17851
  * },
17338
17852
  * {
17339
- * "uid": "7591a5b9-9bdb-48e5-a029-e854f0775b63",
17853
+ * "uid": "010be825-85e7-4379-9a2c-461fa1299286",
17340
17854
  * "title": "Fugit deleniti distinctio eum doloremque.",
17341
17855
  * "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
17342
17856
  * "status": "completed",
17343
17857
  * "priority": "normal",
17344
- * "reported_at": "2026-04-05T15:51:56.000000Z",
17858
+ * "reported_at": "2026-04-06T23:13:14.000000Z",
17345
17859
  * "assigned_at": null,
17346
17860
  * "completed_at": null,
17347
- * "sla_deadline": "2026-04-12T12:55:43.000000Z",
17348
- * "created_at": "2026-04-09T15:59:56.000000Z",
17349
- * "updated_at": "2026-04-09T15:59:56.000000Z"
17861
+ * "sla_deadline": "2026-04-13T20:17:01.000000Z",
17862
+ * "created_at": "2026-04-10T23:21:14.000000Z",
17863
+ * "updated_at": "2026-04-10T23:21:14.000000Z"
17350
17864
  * }
17351
17865
  * ]
17352
17866
  */
17353
17867
  data?: {
17354
- /** @example b13fc84a-764d-41d9-a9df-5b100738e7de */
17868
+ /** @example 132f9623-d763-4381-8249-0f7cb2193265 */
17355
17869
  uid?: string;
17356
17870
  /** @example Quos velit et fugiat sunt nihil. */
17357
17871
  title?: string;
@@ -17361,17 +17875,17 @@ export interface operations {
17361
17875
  status?: string;
17362
17876
  /** @example emergency */
17363
17877
  priority?: string;
17364
- /** @example 2026-04-03T03:13:31.000000Z */
17878
+ /** @example 2026-04-04T10:34:49.000000Z */
17365
17879
  reported_at?: string;
17366
- /** @example 2026-04-07T23:33:23.000000Z */
17880
+ /** @example 2026-04-09T06:54:41.000000Z */
17367
17881
  assigned_at?: string;
17368
17882
  /** @example null */
17369
17883
  completed_at?: string | null;
17370
- /** @example 2026-04-11T04:55:46.000000Z */
17884
+ /** @example 2026-04-12T12:17:04.000000Z */
17371
17885
  sla_deadline?: string;
17372
- /** @example 2026-04-09T15:59:56.000000Z */
17886
+ /** @example 2026-04-10T23:21:14.000000Z */
17373
17887
  created_at?: string;
17374
- /** @example 2026-04-09T15:59:56.000000Z */
17888
+ /** @example 2026-04-10T23:21:14.000000Z */
17375
17889
  updated_at?: string;
17376
17890
  }[];
17377
17891
  links?: {
@@ -17466,13 +17980,13 @@ export interface operations {
17466
17980
  content: {
17467
17981
  "application/json": {
17468
17982
  data?: {
17469
- /** @example ad06d372-14be-4d4b-88fc-90598ab02617 */
17983
+ /** @example f4db0442-0031-4666-aa13-43f15786e197 */
17470
17984
  uid?: string;
17471
17985
  /** @example image */
17472
17986
  file_type?: string;
17473
17987
  /** @example /storage/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
17474
17988
  url?: string;
17475
- /** @example 2026-04-09T15:59:56.000000Z */
17989
+ /** @example 2026-04-10T23:21:14.000000Z */
17476
17990
  created_at?: string;
17477
17991
  };
17478
17992
  };
@@ -17517,7 +18031,7 @@ export interface operations {
17517
18031
  content: {
17518
18032
  "application/json": {
17519
18033
  data?: {
17520
- /** @example 19 */
18034
+ /** @example 4 */
17521
18035
  id?: number;
17522
18036
  /** @example property_inquiry */
17523
18037
  type?: string;
@@ -17525,7 +18039,7 @@ export interface operations {
17525
18039
  listing_id?: number;
17526
18040
  /** @example null */
17527
18041
  last_message_at?: string | null;
17528
- /** @example 2026-04-09T15:59:56.000000Z */
18042
+ /** @example 2026-04-10T23:21:14.000000Z */
17529
18043
  created_at?: string;
17530
18044
  };
17531
18045
  };
@@ -17551,23 +18065,23 @@ export interface operations {
17551
18065
  /**
17552
18066
  * @example [
17553
18067
  * {
17554
- * "id": 20,
18068
+ * "id": 5,
17555
18069
  * "type": "property_inquiry",
17556
18070
  * "listing_id": 2,
17557
18071
  * "last_message_at": null,
17558
- * "created_at": "2026-04-09T15:59:56.000000Z"
18072
+ * "created_at": "2026-04-10T23:21:14.000000Z"
17559
18073
  * },
17560
18074
  * {
17561
- * "id": 21,
18075
+ * "id": 6,
17562
18076
  * "type": "property_inquiry",
17563
18077
  * "listing_id": 2,
17564
18078
  * "last_message_at": null,
17565
- * "created_at": "2026-04-09T15:59:56.000000Z"
18079
+ * "created_at": "2026-04-10T23:21:14.000000Z"
17566
18080
  * }
17567
18081
  * ]
17568
18082
  */
17569
18083
  data?: {
17570
- /** @example 20 */
18084
+ /** @example 5 */
17571
18085
  id?: number;
17572
18086
  /** @example property_inquiry */
17573
18087
  type?: string;
@@ -17575,7 +18089,7 @@ export interface operations {
17575
18089
  listing_id?: number;
17576
18090
  /** @example null */
17577
18091
  last_message_at?: string | null;
17578
- /** @example 2026-04-09T15:59:56.000000Z */
18092
+ /** @example 2026-04-10T23:21:14.000000Z */
17579
18093
  created_at?: string;
17580
18094
  }[];
17581
18095
  links?: {
@@ -17893,27 +18407,27 @@ export interface operations {
17893
18407
  /**
17894
18408
  * @example [
17895
18409
  * {
17896
- * "id": "a53ef41d-f2a1-4cca-a21a-cfbd7d5a6443",
18410
+ * "id": "4d18f139-b7af-4d47-869e-b04df7d94b7d",
17897
18411
  * "type": "APPOINTMENT_CREATED",
17898
18412
  * "title": "faker notification",
17899
18413
  * "body": "faker notification body",
17900
18414
  * "data": [],
17901
18415
  * "read_at": null,
17902
- * "created_at": "2026-04-09T15:59:56.000000Z"
18416
+ * "created_at": "2026-04-10T23:21:14.000000Z"
17903
18417
  * },
17904
18418
  * {
17905
- * "id": "7a76bf71-dda2-4276-a225-d8a7de4e0ef1",
18419
+ * "id": "0897cc1d-24e5-4c7c-a7ba-e6a74b68fed9",
17906
18420
  * "type": "APPOINTMENT_CREATED",
17907
18421
  * "title": "faker notification",
17908
18422
  * "body": "faker notification body",
17909
18423
  * "data": [],
17910
18424
  * "read_at": null,
17911
- * "created_at": "2026-04-09T15:59:56.000000Z"
18425
+ * "created_at": "2026-04-10T23:21:14.000000Z"
17912
18426
  * }
17913
18427
  * ]
17914
18428
  */
17915
18429
  data?: {
17916
- /** @example a53ef41d-f2a1-4cca-a21a-cfbd7d5a6443 */
18430
+ /** @example 4d18f139-b7af-4d47-869e-b04df7d94b7d */
17917
18431
  id?: string;
17918
18432
  /** @example APPOINTMENT_CREATED */
17919
18433
  type?: string;
@@ -17925,7 +18439,7 @@ export interface operations {
17925
18439
  data?: unknown[];
17926
18440
  /** @example null */
17927
18441
  read_at?: string | null;
17928
- /** @example 2026-04-09T15:59:56.000000Z */
18442
+ /** @example 2026-04-10T23:21:14.000000Z */
17929
18443
  created_at?: string;
17930
18444
  }[];
17931
18445
  links?: {
@@ -18009,7 +18523,7 @@ export interface operations {
18009
18523
  };
18010
18524
  content: {
18011
18525
  "application/json": {
18012
- /** @example b10aae0e-9127-4188-9ab7-73257306b8ac */
18526
+ /** @example e02c311f-3177-4901-8273-e50dd3a6bfa5 */
18013
18527
  id?: string;
18014
18528
  /** @example APPOINTMENT_CREATED */
18015
18529
  type?: string;
@@ -18021,7 +18535,7 @@ export interface operations {
18021
18535
  data?: unknown[];
18022
18536
  /** @example null */
18023
18537
  read_at?: string | null;
18024
- /** @example 2026-04-09T15:59:56.000000Z */
18538
+ /** @example 2026-04-10T23:21:14.000000Z */
18025
18539
  created_at?: string;
18026
18540
  };
18027
18541
  };
@@ -18268,45 +18782,45 @@ export interface operations {
18268
18782
  /**
18269
18783
  * @example [
18270
18784
  * {
18271
- * "id": 37,
18785
+ * "id": 7,
18272
18786
  * "rating": 1,
18273
18787
  * "comment": "Nice Listing",
18274
18788
  * "reviewer": {
18275
- * "id": 5,
18276
- * "name": "Jennifer Cook"
18789
+ * "id": 12,
18790
+ * "name": "Owen Campbell"
18277
18791
  * },
18278
- * "created_at": "2026-04-09T15:59:55+00:00",
18279
- * "updated_at": "2026-04-09T15:59:55+00:00"
18792
+ * "created_at": "2026-04-10T23:21:14+00:00",
18793
+ * "updated_at": "2026-04-10T23:21:14+00:00"
18280
18794
  * },
18281
18795
  * {
18282
- * "id": 38,
18796
+ * "id": 8,
18283
18797
  * "rating": 1,
18284
18798
  * "comment": "Nice Listing",
18285
18799
  * "reviewer": {
18286
- * "id": 25,
18287
- * "name": "Duncan Knight"
18800
+ * "id": 20,
18801
+ * "name": "Amanda Smith"
18288
18802
  * },
18289
- * "created_at": "2026-04-09T15:59:55+00:00",
18290
- * "updated_at": "2026-04-09T15:59:55+00:00"
18803
+ * "created_at": "2026-04-10T23:21:14+00:00",
18804
+ * "updated_at": "2026-04-10T23:21:14+00:00"
18291
18805
  * }
18292
18806
  * ]
18293
18807
  */
18294
18808
  data?: {
18295
- /** @example 37 */
18809
+ /** @example 7 */
18296
18810
  id?: number;
18297
18811
  /** @example 1 */
18298
18812
  rating?: number;
18299
18813
  /** @example Nice Listing */
18300
18814
  comment?: string;
18301
18815
  reviewer?: {
18302
- /** @example 5 */
18816
+ /** @example 12 */
18303
18817
  id?: number;
18304
- /** @example Jennifer Cook */
18818
+ /** @example Owen Campbell */
18305
18819
  name?: string;
18306
18820
  };
18307
- /** @example 2026-04-09T15:59:55+00:00 */
18821
+ /** @example 2026-04-10T23:21:14+00:00 */
18308
18822
  created_at?: string;
18309
- /** @example 2026-04-09T15:59:55+00:00 */
18823
+ /** @example 2026-04-10T23:21:14+00:00 */
18310
18824
  updated_at?: string;
18311
18825
  }[];
18312
18826
  links?: {
@@ -18460,21 +18974,21 @@ export interface operations {
18460
18974
  content: {
18461
18975
  "application/json": {
18462
18976
  data?: {
18463
- /** @example 39 */
18977
+ /** @example 9 */
18464
18978
  id?: number;
18465
18979
  /** @example 1 */
18466
18980
  rating?: number;
18467
18981
  /** @example Nice Listing */
18468
18982
  comment?: string;
18469
18983
  reviewer?: {
18470
- /** @example 23 */
18984
+ /** @example 21 */
18471
18985
  id?: number;
18472
- /** @example Finley Anderson */
18986
+ /** @example Nathan Roberts */
18473
18987
  name?: string;
18474
18988
  };
18475
- /** @example 2026-04-09T15:59:56+00:00 */
18989
+ /** @example 2026-04-10T23:21:14+00:00 */
18476
18990
  created_at?: string;
18477
- /** @example 2026-04-09T15:59:56+00:00 */
18991
+ /** @example 2026-04-10T23:21:14+00:00 */
18478
18992
  updated_at?: string;
18479
18993
  };
18480
18994
  };
@@ -18518,21 +19032,21 @@ export interface operations {
18518
19032
  content: {
18519
19033
  "application/json": {
18520
19034
  data?: {
18521
- /** @example 40 */
19035
+ /** @example 10 */
18522
19036
  id?: number;
18523
19037
  /** @example 1 */
18524
19038
  rating?: number;
18525
19039
  /** @example Nice Listing */
18526
19040
  comment?: string;
18527
19041
  reviewer?: {
18528
- /** @example 10 */
19042
+ /** @example 5 */
18529
19043
  id?: number;
18530
- /** @example Tracy Bell */
19044
+ /** @example Linda Hall */
18531
19045
  name?: string;
18532
19046
  };
18533
- /** @example 2026-04-09T15:59:56+00:00 */
19047
+ /** @example 2026-04-10T23:21:14+00:00 */
18534
19048
  created_at?: string;
18535
- /** @example 2026-04-09T15:59:56+00:00 */
19049
+ /** @example 2026-04-10T23:21:14+00:00 */
18536
19050
  updated_at?: string;
18537
19051
  };
18538
19052
  };
@@ -18574,21 +19088,21 @@ export interface operations {
18574
19088
  content: {
18575
19089
  "application/json": {
18576
19090
  data?: {
18577
- /** @example 41 */
19091
+ /** @example 11 */
18578
19092
  id?: number;
18579
19093
  /** @example 1 */
18580
19094
  rating?: number;
18581
19095
  /** @example Nice Listing */
18582
19096
  comment?: string;
18583
19097
  reviewer?: {
18584
- /** @example 17 */
19098
+ /** @example 24 */
18585
19099
  id?: number;
18586
- /** @example Luke Bailey */
19100
+ /** @example Ella Watson */
18587
19101
  name?: string;
18588
19102
  };
18589
- /** @example 2026-04-09T15:59:56+00:00 */
19103
+ /** @example 2026-04-10T23:21:14+00:00 */
18590
19104
  created_at?: string;
18591
- /** @example 2026-04-09T15:59:56+00:00 */
19105
+ /** @example 2026-04-10T23:21:14+00:00 */
18592
19106
  updated_at?: string;
18593
19107
  };
18594
19108
  };
@@ -18615,21 +19129,21 @@ export interface operations {
18615
19129
  content: {
18616
19130
  "application/json": {
18617
19131
  data?: {
18618
- /** @example 42 */
19132
+ /** @example 12 */
18619
19133
  id?: number;
18620
19134
  /** @example 1 */
18621
19135
  rating?: number;
18622
19136
  /** @example Nice Listing */
18623
19137
  comment?: string;
18624
19138
  reviewer?: {
18625
- /** @example 13 */
19139
+ /** @example 9 */
18626
19140
  id?: number;
18627
- /** @example George Collins */
19141
+ /** @example Rob Walker */
18628
19142
  name?: string;
18629
19143
  };
18630
- /** @example 2026-04-09T15:59:56+00:00 */
19144
+ /** @example 2026-04-10T23:21:14+00:00 */
18631
19145
  created_at?: string;
18632
- /** @example 2026-04-09T15:59:56+00:00 */
19146
+ /** @example 2026-04-10T23:21:14+00:00 */
18633
19147
  updated_at?: string;
18634
19148
  };
18635
19149
  };
@@ -18656,7 +19170,7 @@ export interface operations {
18656
19170
  content: {
18657
19171
  "application/json": {
18658
19172
  data?: {
18659
- /** @example fa38bdd5-8f4c-4f37-8d45-b9c23884bd05 */
19173
+ /** @example d548c125-da0e-4930-8ac7-a5125675fe01 */
18660
19174
  uid?: string;
18661
19175
  /** @example 1 */
18662
19176
  listing_id?: number;
@@ -18664,19 +19178,23 @@ export interface operations {
18664
19178
  landlord_id?: number;
18665
19179
  /** @example 2 */
18666
19180
  tenant_id?: number;
18667
- /** @example 4881.50 */
19181
+ /** @example 3147.77 */
18668
19182
  rent_amount?: string;
18669
- /** @example 2151.17 */
19183
+ /** @example 2939.95 */
18670
19184
  deposit_amount?: string;
18671
- /** @example offer_accepted */
19185
+ /** @example notice_served */
18672
19186
  state?: string;
18673
- /** @example 2025-10-15T00:00:00.000000Z */
19187
+ /** @example 2026-02-24T00:00:00.000000Z */
18674
19188
  start_date?: string;
18675
- /** @example 2026-10-15T00:00:00.000000Z */
19189
+ /** @example 2027-02-24T00:00:00.000000Z */
18676
19190
  end_date?: string;
18677
- /** @example false */
19191
+ /** @example true */
18678
19192
  is_periodic?: boolean;
18679
- /** @example 2026-04-09T15:59:56.000000Z */
19193
+ /** @example null */
19194
+ company_name?: string | null;
19195
+ /** @example null */
19196
+ company_registration_number?: string | null;
19197
+ /** @example 2026-04-10T23:21:14.000000Z */
18680
19198
  created_at?: string;
18681
19199
  /** @example [] */
18682
19200
  compliances?: unknown[];
@@ -18732,6 +19250,16 @@ export interface operations {
18732
19250
  * @example 2027-05-01
18733
19251
  */
18734
19252
  end_date?: string | null;
19253
+ /**
19254
+ * @description Company name for company lease tenancies. Must not be greater than 255 characters.
19255
+ * @example Justin Homes Corporate Lets Ltd
19256
+ */
19257
+ company_name?: string | null;
19258
+ /**
19259
+ * @description Company registration number for company lease tenancies. Must not be greater than 255 characters.
19260
+ * @example RC1234567
19261
+ */
19262
+ company_registration_number?: string | null;
18735
19263
  };
18736
19264
  };
18737
19265
  };
@@ -18743,7 +19271,7 @@ export interface operations {
18743
19271
  content: {
18744
19272
  "application/json": {
18745
19273
  data?: {
18746
- /** @example daaa7398-99c3-40b3-b9d8-a190a0e65659 */
19274
+ /** @example 14ee1ce2-90be-4dc7-a5e7-ec841a09733b */
18747
19275
  uid?: string;
18748
19276
  /** @example 1 */
18749
19277
  listing_id?: number;
@@ -18757,13 +19285,17 @@ export interface operations {
18757
19285
  deposit_amount?: string;
18758
19286
  /** @example active */
18759
19287
  state?: string;
18760
- /** @example 2025-09-25T00:00:00.000000Z */
19288
+ /** @example 2025-09-26T00:00:00.000000Z */
18761
19289
  start_date?: string;
18762
- /** @example 2026-09-25T00:00:00.000000Z */
19290
+ /** @example 2026-09-26T00:00:00.000000Z */
18763
19291
  end_date?: string;
18764
19292
  /** @example true */
18765
19293
  is_periodic?: boolean;
18766
- /** @example 2026-04-09T15:59:56.000000Z */
19294
+ /** @example null */
19295
+ company_name?: string | null;
19296
+ /** @example null */
19297
+ company_registration_number?: string | null;
19298
+ /** @example 2026-04-10T23:21:14.000000Z */
18767
19299
  created_at?: string;
18768
19300
  };
18769
19301
  };
@@ -19055,17 +19587,17 @@ export interface operations {
19055
19587
  * "from_state": "enquiry",
19056
19588
  * "to_state": "pre_move_in_ready",
19057
19589
  * "changed_by_user_id": 3,
19058
- * "changed_by_name": "Elizabeth Thompson",
19590
+ * "changed_by_name": "Vicky Harris",
19059
19591
  * "comment": "Qui commodi incidunt iure odit.",
19060
- * "created_at": "2025-12-02T02:46:55.000000Z"
19592
+ * "created_at": "2025-12-03T10:08:13.000000Z"
19061
19593
  * },
19062
19594
  * {
19063
19595
  * "from_state": "pre_move_in_ready",
19064
19596
  * "to_state": "periodic",
19065
19597
  * "changed_by_user_id": 3,
19066
- * "changed_by_name": "Elizabeth Thompson",
19598
+ * "changed_by_name": "Vicky Harris",
19067
19599
  * "comment": null,
19068
- * "created_at": "2025-10-18T10:42:35.000000Z"
19600
+ * "created_at": "2025-10-19T18:03:53.000000Z"
19069
19601
  * }
19070
19602
  * ]
19071
19603
  */
@@ -19076,11 +19608,11 @@ export interface operations {
19076
19608
  to_state?: string;
19077
19609
  /** @example 3 */
19078
19610
  changed_by_user_id?: number;
19079
- /** @example Elizabeth Thompson */
19611
+ /** @example Vicky Harris */
19080
19612
  changed_by_name?: string;
19081
19613
  /** @example Qui commodi incidunt iure odit. */
19082
19614
  comment?: string;
19083
- /** @example 2025-12-02T02:46:55.000000Z */
19615
+ /** @example 2025-12-03T10:08:13.000000Z */
19084
19616
  created_at?: string;
19085
19617
  }[];
19086
19618
  };
@@ -19324,7 +19856,7 @@ export interface operations {
19324
19856
  content: {
19325
19857
  "application/json": {
19326
19858
  data?: {
19327
- /** @example 2419df26-0154-4328-96bf-82262eb850d0 */
19859
+ /** @example 2a3492cb-9453-4f75-bc62-4de31183c4fb */
19328
19860
  uid?: string;
19329
19861
  /** @example Ms. Audra Crooks II */
19330
19862
  username?: string;
@@ -19354,7 +19886,7 @@ export interface operations {
19354
19886
  timezone?: string;
19355
19887
  /** @example Customer */
19356
19888
  user_type?: string;
19357
- /** @example 09 Apr 2026, 03:59 PM */
19889
+ /** @example 10 Apr 2026, 11:21 PM */
19358
19890
  created?: string;
19359
19891
  /** @example 0 seconds ago */
19360
19892
  email_verified_at?: string;
@@ -19453,7 +19985,7 @@ export interface operations {
19453
19985
  content: {
19454
19986
  "application/json": {
19455
19987
  data?: {
19456
- /** @example 6473e5b0-98a5-4595-8078-375539568efa */
19988
+ /** @example 6d720b59-bc87-4055-a129-eaf3edd96de6 */
19457
19989
  uid?: string;
19458
19990
  /** @example Morgan Hirthe */
19459
19991
  username?: string;
@@ -19483,7 +20015,7 @@ export interface operations {
19483
20015
  timezone?: string;
19484
20016
  /** @example Customer */
19485
20017
  user_type?: string;
19486
- /** @example 09 Apr 2026, 03:59 PM */
20018
+ /** @example 10 Apr 2026, 11:21 PM */
19487
20019
  created?: string;
19488
20020
  /** @example 0 seconds ago */
19489
20021
  email_verified_at?: string;
@@ -19555,7 +20087,7 @@ export interface operations {
19555
20087
  content: {
19556
20088
  "application/json": {
19557
20089
  data?: {
19558
- /** @example eebec4fc-dba9-4277-8ef3-4f73229a9ad6 */
20090
+ /** @example 058454f6-aea9-44a9-bb50-6ca37a924c59 */
19559
20091
  uid?: string;
19560
20092
  /** @example Ms. Audra Crooks II */
19561
20093
  username?: string;
@@ -19585,7 +20117,7 @@ export interface operations {
19585
20117
  timezone?: string;
19586
20118
  /** @example Customer */
19587
20119
  user_type?: string;
19588
- /** @example 09 Apr 2026, 03:59 PM */
20120
+ /** @example 10 Apr 2026, 11:21 PM */
19589
20121
  created?: string;
19590
20122
  /** @example 0 seconds ago */
19591
20123
  email_verified_at?: string;
@@ -19825,7 +20357,7 @@ export interface operations {
19825
20357
  completed_layers?: number;
19826
20358
  /** @example 4 */
19827
20359
  pending_layers?: number;
19828
- /** @example 09 Apr 2026, 03:59 PM */
20360
+ /** @example 10 Apr 2026, 11:21 PM */
19829
20361
  last_calculated_at?: string;
19830
20362
  };
19831
20363
  };
@@ -19873,7 +20405,7 @@ export interface operations {
19873
20405
  completed_layers?: number;
19874
20406
  /** @example 4 */
19875
20407
  pending_layers?: number;
19876
- /** @example 09 Apr 2026, 03:59 PM */
20408
+ /** @example 10 Apr 2026, 11:21 PM */
19877
20409
  last_calculated_at?: string;
19878
20410
  };
19879
20411
  };
@@ -19907,20 +20439,24 @@ export interface operations {
19907
20439
  content: {
19908
20440
  "application/json": {
19909
20441
  data?: {
19910
- /** @example d8031822-2b86-460b-bd08-649b269e2171 */
20442
+ /** @example 5cde287c-be3c-4dad-ba4a-7173926da173 */
19911
20443
  wishlist_uid?: string;
19912
20444
  listing?: {
19913
- /** @example New For Sale Used Item draft • 9 Apr 2026, 3:59 PM */
20445
+ /** @example New For Sale Used Item draft • 10 Apr 2026, 11:21 PM */
19914
20446
  draft_name?: string;
19915
- /** @example LST-UIT-SAL-MNRNXQU9VRA */
20447
+ /** @example LST-UIT-SAL-MNTJ5472QIH */
19916
20448
  sku?: string;
19917
- /** @example 30882935-234e-4203-aa45-e8276eb42516 */
20449
+ /** @example 09272c2f-04c0-4926-9143-56305c9e19b4 */
19918
20450
  uid?: string;
19919
20451
  /** @example Sale */
19920
20452
  listing_type?: string;
19921
20453
  /** @example Used Item */
19922
20454
  vertical?: string;
19923
20455
  /** @example null */
20456
+ arrangement_type?: string | null;
20457
+ /** @example null */
20458
+ arrangement_type_label?: string | null;
20459
+ /** @example null */
19924
20460
  price?: string | null;
19925
20461
  /** @example draft */
19926
20462
  state?: string;
@@ -19994,15 +20530,15 @@ export interface operations {
19994
20530
  /**
19995
20531
  * @example [
19996
20532
  * {
19997
- * "wishlist_uid": "14567656-001e-48a9-8206-ea3a05966cdb"
20533
+ * "wishlist_uid": "289cf1b9-5faf-4710-9ccc-499e95270e9c"
19998
20534
  * },
19999
20535
  * {
20000
- * "wishlist_uid": "4ef000be-431e-4159-a3ed-f272bb7c350f"
20536
+ * "wishlist_uid": "61842814-4395-4810-8183-ba63ce1f7e1b"
20001
20537
  * }
20002
20538
  * ]
20003
20539
  */
20004
20540
  data?: {
20005
- /** @example 14567656-001e-48a9-8206-ea3a05966cdb */
20541
+ /** @example 289cf1b9-5faf-4710-9ccc-499e95270e9c */
20006
20542
  wishlist_uid?: string;
20007
20543
  }[];
20008
20544
  links?: {
@@ -20090,7 +20626,7 @@ export interface operations {
20090
20626
  completed_layers?: number;
20091
20627
  /** @example 4 */
20092
20628
  pending_layers?: number;
20093
- /** @example 09 Apr 2026, 03:59 PM */
20629
+ /** @example 10 Apr 2026, 11:21 PM */
20094
20630
  last_calculated_at?: string;
20095
20631
  };
20096
20632
  };
@@ -20252,7 +20788,7 @@ export interface operations {
20252
20788
  completed_layers?: number;
20253
20789
  /** @example 4 */
20254
20790
  pending_layers?: number;
20255
- /** @example 09 Apr 2026, 03:59 PM */
20791
+ /** @example 10 Apr 2026, 11:21 PM */
20256
20792
  last_calculated_at?: string;
20257
20793
  };
20258
20794
  };