@justins-home/types 1.1.61 → 1.1.63
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.
- package/generated/api-types.ts +1404 -541
- package/package.json +1 -1
package/generated/api-types.ts
CHANGED
|
@@ -5122,10 +5122,10 @@ export interface paths {
|
|
|
5122
5122
|
cookie?: never;
|
|
5123
5123
|
};
|
|
5124
5124
|
/**
|
|
5125
|
-
*
|
|
5125
|
+
* fetchOneApplications
|
|
5126
5126
|
* @description Retrieve one rental application owned by the authenticated tenant.
|
|
5127
5127
|
*/
|
|
5128
|
-
get: operations["
|
|
5128
|
+
get: operations["fetchOneApplications"];
|
|
5129
5129
|
put?: never;
|
|
5130
5130
|
post?: never;
|
|
5131
5131
|
delete?: never;
|
|
@@ -6079,7 +6079,7 @@ export interface operations {
|
|
|
6079
6079
|
content: {
|
|
6080
6080
|
"application/json": {
|
|
6081
6081
|
data?: {
|
|
6082
|
-
/** @example
|
|
6082
|
+
/** @example dbe6139a-c61d-41e6-a6d5-231f72ae7645 */
|
|
6083
6083
|
uid?: string;
|
|
6084
6084
|
/** @example Ms. Audra Crooks II */
|
|
6085
6085
|
username?: string;
|
|
@@ -6109,7 +6109,7 @@ export interface operations {
|
|
|
6109
6109
|
timezone?: string;
|
|
6110
6110
|
/** @example Customer */
|
|
6111
6111
|
user_type?: string;
|
|
6112
|
-
/** @example 30 Apr 2026,
|
|
6112
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
6113
6113
|
created?: string;
|
|
6114
6114
|
/** @example 0 seconds ago */
|
|
6115
6115
|
email_verified_at?: string;
|
|
@@ -6250,7 +6250,9 @@ export interface operations {
|
|
|
6250
6250
|
* "details": {
|
|
6251
6251
|
* "address": "24 Windsor Court, London, SW1",
|
|
6252
6252
|
* "title": "24 Windsor Court",
|
|
6253
|
-
* "type": "Rent"
|
|
6253
|
+
* "type": "Rent",
|
|
6254
|
+
* "check_in_time": "02:00 PM",
|
|
6255
|
+
* "check_out_time": "11:00 AM"
|
|
6254
6256
|
* }
|
|
6255
6257
|
* },
|
|
6256
6258
|
* "guest": {
|
|
@@ -6265,6 +6267,8 @@ export interface operations {
|
|
|
6265
6267
|
* "email": "alice@example.com",
|
|
6266
6268
|
* "avatar_path": null
|
|
6267
6269
|
* },
|
|
6270
|
+
* "start_date": "10 Jun 2026",
|
|
6271
|
+
* "end_date": "13 Jun 2026",
|
|
6268
6272
|
* "nights": 3,
|
|
6269
6273
|
* "status": "pending",
|
|
6270
6274
|
* "total_price": "450.00"
|
|
@@ -6298,6 +6302,10 @@ export interface operations {
|
|
|
6298
6302
|
title?: string;
|
|
6299
6303
|
/** @example Rent */
|
|
6300
6304
|
type?: string;
|
|
6305
|
+
/** @example 02:00 PM */
|
|
6306
|
+
check_in_time?: string;
|
|
6307
|
+
/** @example 11:00 AM */
|
|
6308
|
+
check_out_time?: string;
|
|
6301
6309
|
};
|
|
6302
6310
|
};
|
|
6303
6311
|
guest?: {
|
|
@@ -6320,6 +6328,10 @@ export interface operations {
|
|
|
6320
6328
|
/** @example null */
|
|
6321
6329
|
avatar_path?: string | null;
|
|
6322
6330
|
};
|
|
6331
|
+
/** @example 10 Jun 2026 */
|
|
6332
|
+
start_date?: string;
|
|
6333
|
+
/** @example 13 Jun 2026 */
|
|
6334
|
+
end_date?: string;
|
|
6323
6335
|
/** @example 3 */
|
|
6324
6336
|
nights?: number;
|
|
6325
6337
|
/** @example pending */
|
|
@@ -6385,13 +6397,40 @@ export interface operations {
|
|
|
6385
6397
|
* },
|
|
6386
6398
|
* "listing_id": 32,
|
|
6387
6399
|
* "listing": {
|
|
6388
|
-
* "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
6389
6400
|
* "sku": "LST-PRP-LTR-260405-A1B2",
|
|
6401
|
+
* "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
6390
6402
|
* "details": {
|
|
6391
|
-
* "address": "24 Windsor Court, London, SW1",
|
|
6392
6403
|
* "title": "24 Windsor Court",
|
|
6393
|
-
* "
|
|
6404
|
+
* "description": "Modern two-bedroom apartment close to transport links.",
|
|
6405
|
+
* "city": "London",
|
|
6406
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
6407
|
+
* "postcode": "SW1A 1AA",
|
|
6408
|
+
* "longitude": "-0.1412000",
|
|
6409
|
+
* "latitude": "51.5014000",
|
|
6410
|
+
* "country": "United Kingdom"
|
|
6411
|
+
* },
|
|
6412
|
+
* "listing_type": "Rent",
|
|
6413
|
+
* "vertical": "Property",
|
|
6414
|
+
* "arrangement_type": "entire_place",
|
|
6415
|
+
* "arrangement_type_label": "Entire Place",
|
|
6416
|
+
* "price": {
|
|
6417
|
+
* "amount": "2500.00",
|
|
6418
|
+
* "currency": "GBP",
|
|
6419
|
+
* "period": "month"
|
|
6394
6420
|
* },
|
|
6421
|
+
* "listing_policy": {
|
|
6422
|
+
* "max_occupants": 4,
|
|
6423
|
+
* "allowed_use_type": "residential",
|
|
6424
|
+
* "allowed_use_type_label": "Residential",
|
|
6425
|
+
* "is_subletting_allowed": false,
|
|
6426
|
+
* "requires_permission_for_subletting": true,
|
|
6427
|
+
* "event_permission_required": true,
|
|
6428
|
+
* "no_party_policy": true,
|
|
6429
|
+
* "commercial_use_flag": false
|
|
6430
|
+
* },
|
|
6431
|
+
* "viewing_slots": [],
|
|
6432
|
+
* "tenant_preferences": [],
|
|
6433
|
+
* "features": [],
|
|
6395
6434
|
* "owner": {
|
|
6396
6435
|
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
6397
6436
|
* "name": "Alice Taylor",
|
|
@@ -6409,7 +6448,7 @@ export interface operations {
|
|
|
6409
6448
|
* "plan": null
|
|
6410
6449
|
* },
|
|
6411
6450
|
* "state": "published",
|
|
6412
|
-
* "published_at": "2026
|
|
6451
|
+
* "published_at": "30 Apr 2026, 10:00 AM",
|
|
6413
6452
|
* "published_since": "2 days ago",
|
|
6414
6453
|
* "is_visible": true,
|
|
6415
6454
|
* "summary": {
|
|
@@ -6434,7 +6473,7 @@ export interface operations {
|
|
|
6434
6473
|
* "gallery": [
|
|
6435
6474
|
* {
|
|
6436
6475
|
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
6437
|
-
* "media_type": "
|
|
6476
|
+
* "media_type": "photo",
|
|
6438
6477
|
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
6439
6478
|
* "order_index": 0,
|
|
6440
6479
|
* "is_cover": true
|
|
@@ -6444,10 +6483,10 @@ export interface operations {
|
|
|
6444
6483
|
* "count": 1
|
|
6445
6484
|
* }
|
|
6446
6485
|
* },
|
|
6447
|
-
* "status": "
|
|
6486
|
+
* "status": "proposed",
|
|
6448
6487
|
* "scheduled": {
|
|
6449
|
-
* "start": "2026
|
|
6450
|
-
* "end": "2026
|
|
6488
|
+
* "start": "01 May 2026, 09:00 AM",
|
|
6489
|
+
* "end": "01 May 2026, 10:00 AM"
|
|
6451
6490
|
* },
|
|
6452
6491
|
* "customer": {
|
|
6453
6492
|
* "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
|
|
@@ -6457,7 +6496,7 @@ export interface operations {
|
|
|
6457
6496
|
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
6458
6497
|
* "name": "Alice Taylor"
|
|
6459
6498
|
* },
|
|
6460
|
-
* "created_at": "2026-04-30T00:00:
|
|
6499
|
+
* "created_at": "2026-04-30T00:00:00.000000Z"
|
|
6461
6500
|
* }
|
|
6462
6501
|
* ]
|
|
6463
6502
|
*/
|
|
@@ -6477,18 +6516,68 @@ export interface operations {
|
|
|
6477
6516
|
/** @example 32 */
|
|
6478
6517
|
listing_id?: number;
|
|
6479
6518
|
listing?: {
|
|
6480
|
-
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
6481
|
-
uid?: string;
|
|
6482
6519
|
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
6483
6520
|
sku?: string;
|
|
6521
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
6522
|
+
uid?: string;
|
|
6484
6523
|
details?: {
|
|
6485
|
-
/** @example 24 Windsor Court, London, SW1 */
|
|
6486
|
-
address?: string;
|
|
6487
6524
|
/** @example 24 Windsor Court */
|
|
6488
6525
|
title?: string;
|
|
6489
|
-
/** @example
|
|
6490
|
-
|
|
6526
|
+
/** @example Modern two-bedroom apartment close to transport links. */
|
|
6527
|
+
description?: string;
|
|
6528
|
+
/** @example London */
|
|
6529
|
+
city?: string;
|
|
6530
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
6531
|
+
address?: string;
|
|
6532
|
+
/** @example SW1A 1AA */
|
|
6533
|
+
postcode?: string;
|
|
6534
|
+
/** @example -0.1412000 */
|
|
6535
|
+
longitude?: string;
|
|
6536
|
+
/** @example 51.5014000 */
|
|
6537
|
+
latitude?: string;
|
|
6538
|
+
/** @example United Kingdom */
|
|
6539
|
+
country?: string;
|
|
6540
|
+
};
|
|
6541
|
+
/** @example Rent */
|
|
6542
|
+
listing_type?: string;
|
|
6543
|
+
/** @example Property */
|
|
6544
|
+
vertical?: string;
|
|
6545
|
+
/** @example entire_place */
|
|
6546
|
+
arrangement_type?: string;
|
|
6547
|
+
/** @example Entire Place */
|
|
6548
|
+
arrangement_type_label?: string;
|
|
6549
|
+
price?: {
|
|
6550
|
+
/** @example 2500.00 */
|
|
6551
|
+
amount?: string;
|
|
6552
|
+
/** @example GBP */
|
|
6553
|
+
currency?: string;
|
|
6554
|
+
/** @example month */
|
|
6555
|
+
period?: string;
|
|
6556
|
+
};
|
|
6557
|
+
listing_policy?: {
|
|
6558
|
+
/** @example 4 */
|
|
6559
|
+
max_occupants?: number;
|
|
6560
|
+
/** @example residential */
|
|
6561
|
+
allowed_use_type?: string;
|
|
6562
|
+
/** @example Residential */
|
|
6563
|
+
allowed_use_type_label?: string;
|
|
6564
|
+
/** @example false */
|
|
6565
|
+
is_subletting_allowed?: boolean;
|
|
6566
|
+
/** @example true */
|
|
6567
|
+
requires_permission_for_subletting?: boolean;
|
|
6568
|
+
/** @example true */
|
|
6569
|
+
event_permission_required?: boolean;
|
|
6570
|
+
/** @example true */
|
|
6571
|
+
no_party_policy?: boolean;
|
|
6572
|
+
/** @example false */
|
|
6573
|
+
commercial_use_flag?: boolean;
|
|
6491
6574
|
};
|
|
6575
|
+
/** @example [] */
|
|
6576
|
+
viewing_slots?: unknown[];
|
|
6577
|
+
/** @example [] */
|
|
6578
|
+
tenant_preferences?: unknown[];
|
|
6579
|
+
/** @example [] */
|
|
6580
|
+
features?: unknown[];
|
|
6492
6581
|
owner?: {
|
|
6493
6582
|
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
6494
6583
|
uid?: string;
|
|
@@ -6519,7 +6608,7 @@ export interface operations {
|
|
|
6519
6608
|
};
|
|
6520
6609
|
/** @example published */
|
|
6521
6610
|
state?: string;
|
|
6522
|
-
/** @example 2026
|
|
6611
|
+
/** @example 30 Apr 2026, 10:00 AM */
|
|
6523
6612
|
published_at?: string;
|
|
6524
6613
|
/** @example 2 days ago */
|
|
6525
6614
|
published_since?: string;
|
|
@@ -6560,7 +6649,7 @@ export interface operations {
|
|
|
6560
6649
|
* @example [
|
|
6561
6650
|
* {
|
|
6562
6651
|
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
6563
|
-
* "media_type": "
|
|
6652
|
+
* "media_type": "photo",
|
|
6564
6653
|
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
6565
6654
|
* "order_index": 0,
|
|
6566
6655
|
* "is_cover": true
|
|
@@ -6570,7 +6659,7 @@ export interface operations {
|
|
|
6570
6659
|
gallery?: {
|
|
6571
6660
|
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
6572
6661
|
uid?: string;
|
|
6573
|
-
/** @example
|
|
6662
|
+
/** @example photo */
|
|
6574
6663
|
media_type?: string;
|
|
6575
6664
|
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
6576
6665
|
storage_path?: string;
|
|
@@ -6585,12 +6674,12 @@ export interface operations {
|
|
|
6585
6674
|
count?: number;
|
|
6586
6675
|
};
|
|
6587
6676
|
};
|
|
6588
|
-
/** @example
|
|
6677
|
+
/** @example proposed */
|
|
6589
6678
|
status?: string;
|
|
6590
6679
|
scheduled?: {
|
|
6591
|
-
/** @example 2026
|
|
6680
|
+
/** @example 01 May 2026, 09:00 AM */
|
|
6592
6681
|
start?: string;
|
|
6593
|
-
/** @example 2026
|
|
6682
|
+
/** @example 01 May 2026, 10:00 AM */
|
|
6594
6683
|
end?: string;
|
|
6595
6684
|
};
|
|
6596
6685
|
customer?: {
|
|
@@ -6605,7 +6694,7 @@ export interface operations {
|
|
|
6605
6694
|
/** @example Alice Taylor */
|
|
6606
6695
|
name?: string;
|
|
6607
6696
|
};
|
|
6608
|
-
/** @example 2026-04-30T00:00:
|
|
6697
|
+
/** @example 2026-04-30T00:00:00.000000Z */
|
|
6609
6698
|
created_at?: string;
|
|
6610
6699
|
}[];
|
|
6611
6700
|
pagination?: {
|
|
@@ -6661,12 +6750,12 @@ export interface operations {
|
|
|
6661
6750
|
*/
|
|
6662
6751
|
search?: string | null;
|
|
6663
6752
|
/**
|
|
6664
|
-
* @example
|
|
6753
|
+
* @example converted
|
|
6665
6754
|
* @enum {string|null}
|
|
6666
6755
|
*/
|
|
6667
6756
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
6668
6757
|
/**
|
|
6669
|
-
* @example
|
|
6758
|
+
* @example admin
|
|
6670
6759
|
* @enum {string|null}
|
|
6671
6760
|
*/
|
|
6672
6761
|
source?: "tenant" | "landlord" | "admin" | null;
|
|
@@ -6900,7 +6989,7 @@ export interface operations {
|
|
|
6900
6989
|
content: {
|
|
6901
6990
|
"application/json": {
|
|
6902
6991
|
data?: {
|
|
6903
|
-
/** @example
|
|
6992
|
+
/** @example 594827b1-6e4a-43b3-b9f9-750c5f8e4bc9 */
|
|
6904
6993
|
uid?: string;
|
|
6905
6994
|
/** @example JH-APP-2026-589365 */
|
|
6906
6995
|
application_ref?: string;
|
|
@@ -6921,7 +7010,7 @@ export interface operations {
|
|
|
6921
7010
|
/** @example null */
|
|
6922
7011
|
rejection_reason?: string | null;
|
|
6923
7012
|
timeline?: {
|
|
6924
|
-
/** @example 2026-04-
|
|
7013
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
6925
7014
|
created_at?: string;
|
|
6926
7015
|
/** @example null */
|
|
6927
7016
|
approved_at?: string | null;
|
|
@@ -6955,7 +7044,7 @@ export interface operations {
|
|
|
6955
7044
|
content: {
|
|
6956
7045
|
"application/json": {
|
|
6957
7046
|
data?: {
|
|
6958
|
-
/** @example
|
|
7047
|
+
/** @example cef5390c-2c88-4566-a55a-637934697d67 */
|
|
6959
7048
|
uid?: string;
|
|
6960
7049
|
/** @example JH-APP-2026-933724 */
|
|
6961
7050
|
application_ref?: string;
|
|
@@ -6976,7 +7065,7 @@ export interface operations {
|
|
|
6976
7065
|
/** @example null */
|
|
6977
7066
|
rejection_reason?: string | null;
|
|
6978
7067
|
timeline?: {
|
|
6979
|
-
/** @example 2026-04-
|
|
7068
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
6980
7069
|
created_at?: string;
|
|
6981
7070
|
/** @example null */
|
|
6982
7071
|
approved_at?: string | null;
|
|
@@ -7010,7 +7099,7 @@ export interface operations {
|
|
|
7010
7099
|
content: {
|
|
7011
7100
|
"application/json": {
|
|
7012
7101
|
data?: {
|
|
7013
|
-
/** @example
|
|
7102
|
+
/** @example 8dff9fc3-4bbc-4415-af7a-36f4eacdfe24 */
|
|
7014
7103
|
uid?: string;
|
|
7015
7104
|
/** @example JH-APP-2026-450949 */
|
|
7016
7105
|
application_ref?: string;
|
|
@@ -7031,7 +7120,7 @@ export interface operations {
|
|
|
7031
7120
|
/** @example null */
|
|
7032
7121
|
rejection_reason?: string | null;
|
|
7033
7122
|
timeline?: {
|
|
7034
|
-
/** @example 2026-04-
|
|
7123
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
7035
7124
|
created_at?: string;
|
|
7036
7125
|
/** @example null */
|
|
7037
7126
|
approved_at?: string | null;
|
|
@@ -7075,7 +7164,7 @@ export interface operations {
|
|
|
7075
7164
|
content: {
|
|
7076
7165
|
"application/json": {
|
|
7077
7166
|
data?: {
|
|
7078
|
-
/** @example
|
|
7167
|
+
/** @example 1c9b8ad9-9dc4-48fe-bf93-148f3077009a */
|
|
7079
7168
|
uid?: string;
|
|
7080
7169
|
/** @example JH-APP-2026-026316 */
|
|
7081
7170
|
application_ref?: string;
|
|
@@ -7096,7 +7185,7 @@ export interface operations {
|
|
|
7096
7185
|
/** @example null */
|
|
7097
7186
|
rejection_reason?: string | null;
|
|
7098
7187
|
timeline?: {
|
|
7099
|
-
/** @example 2026-04-
|
|
7188
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
7100
7189
|
created_at?: string;
|
|
7101
7190
|
/** @example null */
|
|
7102
7191
|
approved_at?: string | null;
|
|
@@ -7140,7 +7229,7 @@ export interface operations {
|
|
|
7140
7229
|
content: {
|
|
7141
7230
|
"application/json": {
|
|
7142
7231
|
data?: {
|
|
7143
|
-
/** @example
|
|
7232
|
+
/** @example 64c79720-6942-4f06-a49c-a9a275bdc2db */
|
|
7144
7233
|
uid?: string;
|
|
7145
7234
|
/** @example JH-APP-2026-000564 */
|
|
7146
7235
|
application_ref?: string;
|
|
@@ -7161,7 +7250,7 @@ export interface operations {
|
|
|
7161
7250
|
/** @example null */
|
|
7162
7251
|
rejection_reason?: string | null;
|
|
7163
7252
|
timeline?: {
|
|
7164
|
-
/** @example 2026-04-
|
|
7253
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
7165
7254
|
created_at?: string;
|
|
7166
7255
|
/** @example null */
|
|
7167
7256
|
approved_at?: string | null;
|
|
@@ -7195,14 +7284,8 @@ export interface operations {
|
|
|
7195
7284
|
content: {
|
|
7196
7285
|
"application/json": {
|
|
7197
7286
|
data?: {
|
|
7198
|
-
/** @example
|
|
7287
|
+
/** @example 9ab73576-59a0-45af-bf81-438d3d607c0c */
|
|
7199
7288
|
uid?: string;
|
|
7200
|
-
/** @example 1 */
|
|
7201
|
-
listing_id?: number;
|
|
7202
|
-
/** @example 2 */
|
|
7203
|
-
landlord_id?: number;
|
|
7204
|
-
/** @example 2 */
|
|
7205
|
-
tenant_id?: number;
|
|
7206
7289
|
/** @example 4881.50 */
|
|
7207
7290
|
rent_amount?: string;
|
|
7208
7291
|
/** @example 2151.17 */
|
|
@@ -7219,7 +7302,7 @@ export interface operations {
|
|
|
7219
7302
|
company_name?: string | null;
|
|
7220
7303
|
/** @example null */
|
|
7221
7304
|
company_registration_number?: string | null;
|
|
7222
|
-
/** @example 2026-04-
|
|
7305
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
7223
7306
|
created_at?: string;
|
|
7224
7307
|
};
|
|
7225
7308
|
};
|
|
@@ -7665,7 +7748,7 @@ export interface operations {
|
|
|
7665
7748
|
content: {
|
|
7666
7749
|
"application/json": {
|
|
7667
7750
|
data?: {
|
|
7668
|
-
/** @example
|
|
7751
|
+
/** @example fb26439e-d358-42da-a432-b5f12df9f9c2 */
|
|
7669
7752
|
uid?: string;
|
|
7670
7753
|
/** @example Ms. Audra Crooks II */
|
|
7671
7754
|
username?: string;
|
|
@@ -7695,7 +7778,7 @@ export interface operations {
|
|
|
7695
7778
|
timezone?: string;
|
|
7696
7779
|
/** @example Customer */
|
|
7697
7780
|
user_type?: string;
|
|
7698
|
-
/** @example 30 Apr 2026,
|
|
7781
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
7699
7782
|
created?: string;
|
|
7700
7783
|
/** @example 0 seconds ago */
|
|
7701
7784
|
email_verified_at?: string;
|
|
@@ -8085,11 +8168,11 @@ export interface operations {
|
|
|
8085
8168
|
content: {
|
|
8086
8169
|
"application/json": {
|
|
8087
8170
|
data?: {
|
|
8088
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
8171
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
8089
8172
|
draft_name?: string;
|
|
8090
|
-
/** @example LST-PRP-LTR-
|
|
8173
|
+
/** @example LST-PRP-LTR-MOLNX8J888V */
|
|
8091
8174
|
sku?: string;
|
|
8092
|
-
/** @example
|
|
8175
|
+
/** @example a2ee05f6-6821-48f6-b9f7-f4ef1490e7f9 */
|
|
8093
8176
|
uid?: string;
|
|
8094
8177
|
/** @example Rent */
|
|
8095
8178
|
listing_type?: string;
|
|
@@ -9501,7 +9584,7 @@ export interface operations {
|
|
|
9501
9584
|
content: {
|
|
9502
9585
|
"application/json": {
|
|
9503
9586
|
/**
|
|
9504
|
-
* @example
|
|
9587
|
+
* @example Dormant
|
|
9505
9588
|
* @enum {string}
|
|
9506
9589
|
*/
|
|
9507
9590
|
status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
|
|
@@ -9516,7 +9599,7 @@ export interface operations {
|
|
|
9516
9599
|
content: {
|
|
9517
9600
|
"application/json": {
|
|
9518
9601
|
data?: {
|
|
9519
|
-
/** @example
|
|
9602
|
+
/** @example 4c7d8bc8-1cb3-4cfe-9620-9ea9ee735ab1 */
|
|
9520
9603
|
uid?: string;
|
|
9521
9604
|
/** @example Morgan Hirthe */
|
|
9522
9605
|
username?: string;
|
|
@@ -9546,7 +9629,7 @@ export interface operations {
|
|
|
9546
9629
|
timezone?: string;
|
|
9547
9630
|
/** @example Customer */
|
|
9548
9631
|
user_type?: string;
|
|
9549
|
-
/** @example 30 Apr 2026,
|
|
9632
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
9550
9633
|
created?: string;
|
|
9551
9634
|
/** @example 0 seconds ago */
|
|
9552
9635
|
email_verified_at?: string;
|
|
@@ -10255,11 +10338,11 @@ export interface operations {
|
|
|
10255
10338
|
content: {
|
|
10256
10339
|
"application/json": {
|
|
10257
10340
|
data?: {
|
|
10258
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
10341
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
10259
10342
|
draft_name?: string;
|
|
10260
|
-
/** @example LST-PRP-LTR-
|
|
10343
|
+
/** @example LST-PRP-LTR-MOLNX8LXYAK */
|
|
10261
10344
|
sku?: string;
|
|
10262
|
-
/** @example
|
|
10345
|
+
/** @example a64005e6-66fe-4d24-8474-83148e5ed9e3 */
|
|
10263
10346
|
uid?: string;
|
|
10264
10347
|
/** @example Rent */
|
|
10265
10348
|
listing_type?: string;
|
|
@@ -10699,7 +10782,7 @@ export interface operations {
|
|
|
10699
10782
|
content: {
|
|
10700
10783
|
"application/json": {
|
|
10701
10784
|
data?: {
|
|
10702
|
-
/** @example
|
|
10785
|
+
/** @example e44ae3bc-79c0-48b9-aa8e-61eb7aad778c */
|
|
10703
10786
|
uid?: string;
|
|
10704
10787
|
/** @example photo */
|
|
10705
10788
|
media_type?: string;
|
|
@@ -11006,10 +11089,10 @@ export interface operations {
|
|
|
11006
11089
|
/**
|
|
11007
11090
|
* @example [
|
|
11008
11091
|
* {
|
|
11009
|
-
* "draft_name": "New
|
|
11010
|
-
* "sku": "LST-PRP-
|
|
11011
|
-
* "uid": "
|
|
11012
|
-
* "listing_type": "
|
|
11092
|
+
* "draft_name": "New For Sale Property draft • 30 Apr 2026, 3:52 PM",
|
|
11093
|
+
* "sku": "LST-PRP-SAL-MOLNX8NMTQ6",
|
|
11094
|
+
* "uid": "81082e8a-bb22-4308-8813-d728845c7e23",
|
|
11095
|
+
* "listing_type": "Sale",
|
|
11013
11096
|
* "vertical": "Property",
|
|
11014
11097
|
* "arrangement_type": "standard_residential",
|
|
11015
11098
|
* "arrangement_type_label": "Standard Residential",
|
|
@@ -11025,32 +11108,34 @@ export interface operations {
|
|
|
11025
11108
|
* "media": []
|
|
11026
11109
|
* },
|
|
11027
11110
|
* {
|
|
11028
|
-
* "draft_name": "New For
|
|
11029
|
-
* "sku": "LST-
|
|
11030
|
-
* "uid": "
|
|
11031
|
-
* "listing_type": "
|
|
11032
|
-
* "vertical": "
|
|
11033
|
-
* "arrangement_type":
|
|
11034
|
-
* "arrangement_type_label":
|
|
11111
|
+
* "draft_name": "New For Rent Property draft • 30 Apr 2026, 3:52 PM",
|
|
11112
|
+
* "sku": "LST-PRP-LTR-MOLNX8NQCW8",
|
|
11113
|
+
* "uid": "25825dac-aab3-400d-8334-2e96f6e56069",
|
|
11114
|
+
* "listing_type": "Rent",
|
|
11115
|
+
* "vertical": "Property",
|
|
11116
|
+
* "arrangement_type": "company_lease",
|
|
11117
|
+
* "arrangement_type_label": "Company Lease",
|
|
11035
11118
|
* "price": null,
|
|
11036
11119
|
* "state": "draft",
|
|
11037
11120
|
* "published_at": null,
|
|
11038
11121
|
* "published_since": null,
|
|
11039
11122
|
* "is_visible": false,
|
|
11040
|
-
* "summary":
|
|
11123
|
+
* "summary": {
|
|
11124
|
+
* "availability": null
|
|
11125
|
+
* },
|
|
11041
11126
|
* "workflow": [],
|
|
11042
11127
|
* "media": []
|
|
11043
11128
|
* }
|
|
11044
11129
|
* ]
|
|
11045
11130
|
*/
|
|
11046
11131
|
data?: {
|
|
11047
|
-
/** @example New
|
|
11132
|
+
/** @example New For Sale Property draft • 30 Apr 2026, 3:52 PM */
|
|
11048
11133
|
draft_name?: string;
|
|
11049
|
-
/** @example LST-PRP-
|
|
11134
|
+
/** @example LST-PRP-SAL-MOLNX8NMTQ6 */
|
|
11050
11135
|
sku?: string;
|
|
11051
|
-
/** @example
|
|
11136
|
+
/** @example 81082e8a-bb22-4308-8813-d728845c7e23 */
|
|
11052
11137
|
uid?: string;
|
|
11053
|
-
/** @example
|
|
11138
|
+
/** @example Sale */
|
|
11054
11139
|
listing_type?: string;
|
|
11055
11140
|
/** @example Property */
|
|
11056
11141
|
vertical?: string;
|
|
@@ -11243,11 +11328,11 @@ export interface operations {
|
|
|
11243
11328
|
content: {
|
|
11244
11329
|
"application/json": {
|
|
11245
11330
|
data?: {
|
|
11246
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
11331
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
11247
11332
|
draft_name?: string;
|
|
11248
|
-
/** @example LST-PRP-LTR-
|
|
11333
|
+
/** @example LST-PRP-LTR-MOLNX8O0OAK */
|
|
11249
11334
|
sku?: string;
|
|
11250
|
-
/** @example
|
|
11335
|
+
/** @example f368687c-b9a7-4cb7-8c50-35aea0734299 */
|
|
11251
11336
|
uid?: string;
|
|
11252
11337
|
/** @example Rent */
|
|
11253
11338
|
listing_type?: string;
|
|
@@ -11310,11 +11395,11 @@ export interface operations {
|
|
|
11310
11395
|
content: {
|
|
11311
11396
|
"application/json": {
|
|
11312
11397
|
data?: {
|
|
11313
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
11398
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
11314
11399
|
draft_name?: string;
|
|
11315
|
-
/** @example LST-PRP-LTR-
|
|
11400
|
+
/** @example LST-PRP-LTR-MOLNX8O6ZKP */
|
|
11316
11401
|
sku?: string;
|
|
11317
|
-
/** @example
|
|
11402
|
+
/** @example beaaaf0e-a329-47e7-9649-323c51ce0ead */
|
|
11318
11403
|
uid?: string;
|
|
11319
11404
|
/** @example Rent */
|
|
11320
11405
|
listing_type?: string;
|
|
@@ -11367,11 +11452,11 @@ export interface operations {
|
|
|
11367
11452
|
content: {
|
|
11368
11453
|
"application/json": {
|
|
11369
11454
|
data?: {
|
|
11370
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
11455
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
11371
11456
|
draft_name?: string;
|
|
11372
|
-
/** @example LST-PRP-LTR-
|
|
11457
|
+
/** @example LST-PRP-LTR-MOLNX8OAHEW */
|
|
11373
11458
|
sku?: string;
|
|
11374
|
-
/** @example
|
|
11459
|
+
/** @example 4e81fca2-113b-42bd-9deb-c3dd6cc67266 */
|
|
11375
11460
|
uid?: string;
|
|
11376
11461
|
/** @example Rent */
|
|
11377
11462
|
listing_type?: string;
|
|
@@ -11424,11 +11509,11 @@ export interface operations {
|
|
|
11424
11509
|
content: {
|
|
11425
11510
|
"application/json": {
|
|
11426
11511
|
data?: {
|
|
11427
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
11512
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
11428
11513
|
draft_name?: string;
|
|
11429
|
-
/** @example LST-PRP-LTR-
|
|
11514
|
+
/** @example LST-PRP-LTR-MOLNX8OGMDZ */
|
|
11430
11515
|
sku?: string;
|
|
11431
|
-
/** @example
|
|
11516
|
+
/** @example 694d117a-60a3-4244-b0b8-3ea314c53f16 */
|
|
11432
11517
|
uid?: string;
|
|
11433
11518
|
/** @example Rent */
|
|
11434
11519
|
listing_type?: string;
|
|
@@ -11622,7 +11707,7 @@ export interface operations {
|
|
|
11622
11707
|
content: {
|
|
11623
11708
|
"application/json": {
|
|
11624
11709
|
data?: {
|
|
11625
|
-
/** @example
|
|
11710
|
+
/** @example 280 */
|
|
11626
11711
|
id?: number;
|
|
11627
11712
|
/** @example 1 */
|
|
11628
11713
|
category_id?: number;
|
|
@@ -11696,7 +11781,7 @@ export interface operations {
|
|
|
11696
11781
|
content: {
|
|
11697
11782
|
"application/json": {
|
|
11698
11783
|
data?: {
|
|
11699
|
-
/** @example
|
|
11784
|
+
/** @example 281 */
|
|
11700
11785
|
id?: number;
|
|
11701
11786
|
/** @example 1 */
|
|
11702
11787
|
category_id?: number;
|
|
@@ -11735,7 +11820,7 @@ export interface operations {
|
|
|
11735
11820
|
content: {
|
|
11736
11821
|
"application/json": {
|
|
11737
11822
|
data?: {
|
|
11738
|
-
/** @example
|
|
11823
|
+
/** @example 282 */
|
|
11739
11824
|
id?: number;
|
|
11740
11825
|
/** @example 1 */
|
|
11741
11826
|
category_id?: number;
|
|
@@ -11773,7 +11858,7 @@ export interface operations {
|
|
|
11773
11858
|
/**
|
|
11774
11859
|
* @example [
|
|
11775
11860
|
* {
|
|
11776
|
-
* "id":
|
|
11861
|
+
* "id": 410,
|
|
11777
11862
|
* "name": "Exterior",
|
|
11778
11863
|
* "description": "For Exterior categories",
|
|
11779
11864
|
* "display_order": 1,
|
|
@@ -11783,7 +11868,7 @@ export interface operations {
|
|
|
11783
11868
|
* "is_active": true
|
|
11784
11869
|
* },
|
|
11785
11870
|
* {
|
|
11786
|
-
* "id":
|
|
11871
|
+
* "id": 411,
|
|
11787
11872
|
* "name": "Exterior",
|
|
11788
11873
|
* "description": "For Exterior categories",
|
|
11789
11874
|
* "display_order": 1,
|
|
@@ -11795,7 +11880,7 @@ export interface operations {
|
|
|
11795
11880
|
* ]
|
|
11796
11881
|
*/
|
|
11797
11882
|
data?: {
|
|
11798
|
-
/** @example
|
|
11883
|
+
/** @example 410 */
|
|
11799
11884
|
id?: number;
|
|
11800
11885
|
/** @example Exterior */
|
|
11801
11886
|
name?: string;
|
|
@@ -11859,7 +11944,7 @@ export interface operations {
|
|
|
11859
11944
|
content: {
|
|
11860
11945
|
"application/json": {
|
|
11861
11946
|
data?: {
|
|
11862
|
-
/** @example
|
|
11947
|
+
/** @example 412 */
|
|
11863
11948
|
id?: number;
|
|
11864
11949
|
/** @example Exterior */
|
|
11865
11950
|
name?: string;
|
|
@@ -11926,7 +12011,7 @@ export interface operations {
|
|
|
11926
12011
|
content: {
|
|
11927
12012
|
"application/json": {
|
|
11928
12013
|
data?: {
|
|
11929
|
-
/** @example
|
|
12014
|
+
/** @example 413 */
|
|
11930
12015
|
id?: number;
|
|
11931
12016
|
/** @example Exterior */
|
|
11932
12017
|
name?: string;
|
|
@@ -11967,7 +12052,7 @@ export interface operations {
|
|
|
11967
12052
|
content: {
|
|
11968
12053
|
"application/json": {
|
|
11969
12054
|
data?: {
|
|
11970
|
-
/** @example
|
|
12055
|
+
/** @example 414 */
|
|
11971
12056
|
id?: number;
|
|
11972
12057
|
/** @example Exterior */
|
|
11973
12058
|
name?: string;
|
|
@@ -12230,7 +12315,7 @@ export interface operations {
|
|
|
12230
12315
|
content: {
|
|
12231
12316
|
"application/json": {
|
|
12232
12317
|
data?: {
|
|
12233
|
-
/** @example
|
|
12318
|
+
/** @example 175 */
|
|
12234
12319
|
id?: number;
|
|
12235
12320
|
/** @example email_fa_0 */
|
|
12236
12321
|
key?: string;
|
|
@@ -12244,9 +12329,9 @@ export interface operations {
|
|
|
12244
12329
|
metadata_schema?: unknown[];
|
|
12245
12330
|
/** @example true */
|
|
12246
12331
|
is_active?: boolean;
|
|
12247
|
-
/** @example 2026-04-
|
|
12332
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
12248
12333
|
created_at?: string;
|
|
12249
|
-
/** @example 2026-04-
|
|
12334
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
12250
12335
|
updated_at?: string;
|
|
12251
12336
|
};
|
|
12252
12337
|
};
|
|
@@ -12306,7 +12391,7 @@ export interface operations {
|
|
|
12306
12391
|
content: {
|
|
12307
12392
|
"application/json": {
|
|
12308
12393
|
data?: {
|
|
12309
|
-
/** @example
|
|
12394
|
+
/** @example 176 */
|
|
12310
12395
|
id?: number;
|
|
12311
12396
|
/** @example email_fa_0 */
|
|
12312
12397
|
key?: string;
|
|
@@ -12320,9 +12405,9 @@ export interface operations {
|
|
|
12320
12405
|
metadata_schema?: unknown[];
|
|
12321
12406
|
/** @example true */
|
|
12322
12407
|
is_active?: boolean;
|
|
12323
|
-
/** @example 2026-04-
|
|
12408
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
12324
12409
|
created_at?: string;
|
|
12325
|
-
/** @example 2026-04-
|
|
12410
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
12326
12411
|
updated_at?: string;
|
|
12327
12412
|
};
|
|
12328
12413
|
};
|
|
@@ -13588,25 +13673,25 @@ export interface operations {
|
|
|
13588
13673
|
/**
|
|
13589
13674
|
* @example [
|
|
13590
13675
|
* {
|
|
13591
|
-
* "key": "
|
|
13592
|
-
* "name": "
|
|
13593
|
-
* "description": "
|
|
13676
|
+
* "key": "quis",
|
|
13677
|
+
* "name": "consequatur",
|
|
13678
|
+
* "description": "Et unde ipsa libero assumenda.",
|
|
13594
13679
|
* "value_type": "string"
|
|
13595
13680
|
* },
|
|
13596
13681
|
* {
|
|
13597
|
-
* "key": "
|
|
13598
|
-
* "name": "
|
|
13599
|
-
* "description": "
|
|
13682
|
+
* "key": "non",
|
|
13683
|
+
* "name": "repellendus",
|
|
13684
|
+
* "description": "Aut quos alias laborum hic soluta est vero.",
|
|
13600
13685
|
* "value_type": "string"
|
|
13601
13686
|
* }
|
|
13602
13687
|
* ]
|
|
13603
13688
|
*/
|
|
13604
13689
|
data?: {
|
|
13605
|
-
/** @example
|
|
13690
|
+
/** @example quis */
|
|
13606
13691
|
key?: string;
|
|
13607
|
-
/** @example
|
|
13692
|
+
/** @example consequatur */
|
|
13608
13693
|
name?: string;
|
|
13609
|
-
/** @example
|
|
13694
|
+
/** @example Et unde ipsa libero assumenda. */
|
|
13610
13695
|
description?: string;
|
|
13611
13696
|
/** @example string */
|
|
13612
13697
|
value_type?: string;
|
|
@@ -14848,13 +14933,13 @@ export interface operations {
|
|
|
14848
14933
|
};
|
|
14849
14934
|
} | {
|
|
14850
14935
|
data?: {
|
|
14851
|
-
/** @example
|
|
14936
|
+
/** @example bb4561c4-9386-45dd-b696-603fcd2effa6 */
|
|
14852
14937
|
uid?: string;
|
|
14853
14938
|
/** @example follow_up */
|
|
14854
14939
|
inspection_type?: string;
|
|
14855
14940
|
/** @example cancelled */
|
|
14856
14941
|
status?: string;
|
|
14857
|
-
/** @example
|
|
14942
|
+
/** @example 06 May 2026, 05:51 AM */
|
|
14858
14943
|
scheduled_date?: string;
|
|
14859
14944
|
/** @example null */
|
|
14860
14945
|
completed_date?: string | null;
|
|
@@ -14862,11 +14947,11 @@ export interface operations {
|
|
|
14862
14947
|
condition_rating?: string;
|
|
14863
14948
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
14864
14949
|
summary?: string;
|
|
14865
|
-
/** @example
|
|
14950
|
+
/** @example 29 Jun 2026, 02:39 AM */
|
|
14866
14951
|
next_inspection_date?: string;
|
|
14867
|
-
/** @example 30 Apr 2026,
|
|
14952
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
14868
14953
|
created_at?: string;
|
|
14869
|
-
/** @example 30 Apr 2026,
|
|
14954
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
14870
14955
|
updated_at?: string;
|
|
14871
14956
|
};
|
|
14872
14957
|
};
|
|
@@ -14921,13 +15006,13 @@ export interface operations {
|
|
|
14921
15006
|
content: {
|
|
14922
15007
|
"application/json": {
|
|
14923
15008
|
data?: {
|
|
14924
|
-
/** @example
|
|
15009
|
+
/** @example c6578cc8-2a26-44fa-95de-e2a2ad3535e7 */
|
|
14925
15010
|
uid?: string;
|
|
14926
15011
|
/** @example follow_up */
|
|
14927
15012
|
inspection_type?: string;
|
|
14928
15013
|
/** @example cancelled */
|
|
14929
15014
|
status?: string;
|
|
14930
|
-
/** @example
|
|
15015
|
+
/** @example 06 May 2026, 05:51 AM */
|
|
14931
15016
|
scheduled_date?: string;
|
|
14932
15017
|
/** @example null */
|
|
14933
15018
|
completed_date?: string | null;
|
|
@@ -14935,11 +15020,11 @@ export interface operations {
|
|
|
14935
15020
|
condition_rating?: string;
|
|
14936
15021
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
14937
15022
|
summary?: string;
|
|
14938
|
-
/** @example
|
|
15023
|
+
/** @example 29 Jun 2026, 02:39 AM */
|
|
14939
15024
|
next_inspection_date?: string;
|
|
14940
|
-
/** @example 30 Apr 2026,
|
|
15025
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
14941
15026
|
created_at?: string;
|
|
14942
|
-
/** @example 30 Apr 2026,
|
|
15027
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
14943
15028
|
updated_at?: string;
|
|
14944
15029
|
};
|
|
14945
15030
|
};
|
|
@@ -15034,13 +15119,13 @@ export interface operations {
|
|
|
15034
15119
|
content: {
|
|
15035
15120
|
"application/json": {
|
|
15036
15121
|
data?: {
|
|
15037
|
-
/** @example
|
|
15122
|
+
/** @example 39e42017-7a7f-41fd-aa96-a4c72fae1877 */
|
|
15038
15123
|
uid?: string;
|
|
15039
15124
|
/** @example follow_up */
|
|
15040
15125
|
inspection_type?: string;
|
|
15041
15126
|
/** @example cancelled */
|
|
15042
15127
|
status?: string;
|
|
15043
|
-
/** @example
|
|
15128
|
+
/** @example 24 Apr 2026, 03:17 AM */
|
|
15044
15129
|
scheduled_date?: string;
|
|
15045
15130
|
/** @example null */
|
|
15046
15131
|
completed_date?: string | null;
|
|
@@ -15048,11 +15133,11 @@ export interface operations {
|
|
|
15048
15133
|
condition_rating?: string;
|
|
15049
15134
|
/** @example Et animi quos velit et fugiat. */
|
|
15050
15135
|
summary?: string;
|
|
15051
|
-
/** @example 02 Aug 2026,
|
|
15136
|
+
/** @example 02 Aug 2026, 11:11 AM */
|
|
15052
15137
|
next_inspection_date?: string;
|
|
15053
|
-
/** @example 30 Apr 2026,
|
|
15138
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15054
15139
|
created_at?: string;
|
|
15055
|
-
/** @example 30 Apr 2026,
|
|
15140
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15056
15141
|
updated_at?: string;
|
|
15057
15142
|
};
|
|
15058
15143
|
};
|
|
@@ -15089,13 +15174,13 @@ export interface operations {
|
|
|
15089
15174
|
content: {
|
|
15090
15175
|
"application/json": {
|
|
15091
15176
|
data?: {
|
|
15092
|
-
/** @example
|
|
15177
|
+
/** @example 745f1a8a-6417-450d-9f94-6f021648254d */
|
|
15093
15178
|
uid?: string;
|
|
15094
15179
|
/** @example follow_up */
|
|
15095
15180
|
inspection_type?: string;
|
|
15096
15181
|
/** @example cancelled */
|
|
15097
15182
|
status?: string;
|
|
15098
|
-
/** @example
|
|
15183
|
+
/** @example 06 May 2026, 05:51 AM */
|
|
15099
15184
|
scheduled_date?: string;
|
|
15100
15185
|
/** @example null */
|
|
15101
15186
|
completed_date?: string | null;
|
|
@@ -15103,11 +15188,11 @@ export interface operations {
|
|
|
15103
15188
|
condition_rating?: string;
|
|
15104
15189
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
15105
15190
|
summary?: string;
|
|
15106
|
-
/** @example
|
|
15191
|
+
/** @example 29 Jun 2026, 02:39 AM */
|
|
15107
15192
|
next_inspection_date?: string;
|
|
15108
|
-
/** @example 30 Apr 2026,
|
|
15193
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15109
15194
|
created_at?: string;
|
|
15110
|
-
/** @example 30 Apr 2026,
|
|
15195
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15111
15196
|
updated_at?: string;
|
|
15112
15197
|
};
|
|
15113
15198
|
};
|
|
@@ -15144,13 +15229,13 @@ export interface operations {
|
|
|
15144
15229
|
content: {
|
|
15145
15230
|
"application/json": {
|
|
15146
15231
|
data?: {
|
|
15147
|
-
/** @example
|
|
15232
|
+
/** @example 2516c783-89a1-4a15-8c6d-697c16f9e396 */
|
|
15148
15233
|
uid?: string;
|
|
15149
15234
|
/** @example follow_up */
|
|
15150
15235
|
inspection_type?: string;
|
|
15151
15236
|
/** @example cancelled */
|
|
15152
15237
|
status?: string;
|
|
15153
|
-
/** @example
|
|
15238
|
+
/** @example 24 Apr 2026, 03:17 AM */
|
|
15154
15239
|
scheduled_date?: string;
|
|
15155
15240
|
/** @example null */
|
|
15156
15241
|
completed_date?: string | null;
|
|
@@ -15158,11 +15243,11 @@ export interface operations {
|
|
|
15158
15243
|
condition_rating?: string;
|
|
15159
15244
|
/** @example Et animi quos velit et fugiat. */
|
|
15160
15245
|
summary?: string;
|
|
15161
|
-
/** @example 02 Aug 2026,
|
|
15246
|
+
/** @example 02 Aug 2026, 11:11 AM */
|
|
15162
15247
|
next_inspection_date?: string;
|
|
15163
|
-
/** @example 30 Apr 2026,
|
|
15248
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15164
15249
|
created_at?: string;
|
|
15165
|
-
/** @example 30 Apr 2026,
|
|
15250
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15166
15251
|
updated_at?: string;
|
|
15167
15252
|
};
|
|
15168
15253
|
};
|
|
@@ -15289,29 +15374,29 @@ export interface operations {
|
|
|
15289
15374
|
};
|
|
15290
15375
|
} | {
|
|
15291
15376
|
data?: {
|
|
15292
|
-
/** @example
|
|
15377
|
+
/** @example 4c3e5fde-5093-4306-be10-25a500fb0a5f */
|
|
15293
15378
|
uid?: string;
|
|
15294
15379
|
/** @example 1 */
|
|
15295
15380
|
tenancy_id?: number;
|
|
15296
|
-
/** @example
|
|
15381
|
+
/** @example Dolorum non sint cupiditate a perspiciatis. */
|
|
15297
15382
|
title?: string;
|
|
15298
|
-
/** @example
|
|
15383
|
+
/** @example Officia libero omnis ut nobis. Quia aspernatur tenetur qui eum error deserunt saepe. Nostrum quia ducimus eos explicabo nisi. Aperiam debitis non voluptas est architecto voluptate dolor alias. */
|
|
15299
15384
|
description?: string;
|
|
15300
|
-
/** @example
|
|
15385
|
+
/** @example completed */
|
|
15301
15386
|
status?: string;
|
|
15302
15387
|
/** @example low */
|
|
15303
15388
|
priority?: string;
|
|
15304
|
-
/** @example
|
|
15389
|
+
/** @example 30 Apr 2026, 05:44 AM */
|
|
15305
15390
|
reported_at?: string;
|
|
15306
|
-
/** @example
|
|
15307
|
-
assigned_at?: string
|
|
15391
|
+
/** @example 30 Apr 2026, 11:04 AM */
|
|
15392
|
+
assigned_at?: string;
|
|
15308
15393
|
/** @example null */
|
|
15309
15394
|
completed_at?: string | null;
|
|
15310
|
-
/** @example
|
|
15395
|
+
/** @example 05 May 2026, 07:30 AM */
|
|
15311
15396
|
sla_deadline?: string;
|
|
15312
|
-
/** @example 30 Apr 2026,
|
|
15397
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15313
15398
|
created_at?: string;
|
|
15314
|
-
/** @example 30 Apr 2026,
|
|
15399
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15315
15400
|
updated_at?: string;
|
|
15316
15401
|
};
|
|
15317
15402
|
};
|
|
@@ -15348,7 +15433,7 @@ export interface operations {
|
|
|
15348
15433
|
content: {
|
|
15349
15434
|
"application/json": {
|
|
15350
15435
|
data?: {
|
|
15351
|
-
/** @example
|
|
15436
|
+
/** @example e9238567-e5bf-4ddf-9df5-afc30d036a8d */
|
|
15352
15437
|
uid?: string;
|
|
15353
15438
|
/** @example 1 */
|
|
15354
15439
|
tenancy_id?: number;
|
|
@@ -15360,17 +15445,17 @@ export interface operations {
|
|
|
15360
15445
|
status?: string;
|
|
15361
15446
|
/** @example low */
|
|
15362
15447
|
priority?: string;
|
|
15363
|
-
/** @example
|
|
15448
|
+
/** @example 29 Apr 2026, 05:21 AM */
|
|
15364
15449
|
reported_at?: string;
|
|
15365
15450
|
/** @example null */
|
|
15366
15451
|
assigned_at?: string | null;
|
|
15367
15452
|
/** @example null */
|
|
15368
15453
|
completed_at?: string | null;
|
|
15369
|
-
/** @example
|
|
15454
|
+
/** @example 02 May 2026, 01:45 AM */
|
|
15370
15455
|
sla_deadline?: string;
|
|
15371
|
-
/** @example 30 Apr 2026,
|
|
15456
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15372
15457
|
created_at?: string;
|
|
15373
|
-
/** @example 30 Apr 2026,
|
|
15458
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15374
15459
|
updated_at?: string;
|
|
15375
15460
|
};
|
|
15376
15461
|
};
|
|
@@ -15407,7 +15492,7 @@ export interface operations {
|
|
|
15407
15492
|
content: {
|
|
15408
15493
|
"application/json": {
|
|
15409
15494
|
data?: {
|
|
15410
|
-
/** @example
|
|
15495
|
+
/** @example 17ac9c62-e40b-4c72-9b89-4ee29d7ea864 */
|
|
15411
15496
|
uid?: string;
|
|
15412
15497
|
/** @example 1 */
|
|
15413
15498
|
tenancy_id?: number;
|
|
@@ -15419,17 +15504,17 @@ export interface operations {
|
|
|
15419
15504
|
status?: string;
|
|
15420
15505
|
/** @example emergency */
|
|
15421
15506
|
priority?: string;
|
|
15422
|
-
/** @example
|
|
15507
|
+
/** @example 24 Apr 2026, 03:06 AM */
|
|
15423
15508
|
reported_at?: string;
|
|
15424
|
-
/** @example 28 Apr 2026,
|
|
15509
|
+
/** @example 28 Apr 2026, 11:26 PM */
|
|
15425
15510
|
assigned_at?: string;
|
|
15426
15511
|
/** @example null */
|
|
15427
15512
|
completed_at?: string | null;
|
|
15428
|
-
/** @example
|
|
15513
|
+
/** @example 02 May 2026, 04:48 AM */
|
|
15429
15514
|
sla_deadline?: string;
|
|
15430
|
-
/** @example 30 Apr 2026,
|
|
15515
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15431
15516
|
created_at?: string;
|
|
15432
|
-
/** @example 30 Apr 2026,
|
|
15517
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15433
15518
|
updated_at?: string;
|
|
15434
15519
|
};
|
|
15435
15520
|
};
|
|
@@ -15466,7 +15551,7 @@ export interface operations {
|
|
|
15466
15551
|
content: {
|
|
15467
15552
|
"application/json": {
|
|
15468
15553
|
data?: {
|
|
15469
|
-
/** @example
|
|
15554
|
+
/** @example 99afdc0a-292d-40cb-8846-583e1dd62b2a */
|
|
15470
15555
|
uid?: string;
|
|
15471
15556
|
/** @example 1 */
|
|
15472
15557
|
tenancy_id?: number;
|
|
@@ -15478,17 +15563,17 @@ export interface operations {
|
|
|
15478
15563
|
status?: string;
|
|
15479
15564
|
/** @example emergency */
|
|
15480
15565
|
priority?: string;
|
|
15481
|
-
/** @example
|
|
15566
|
+
/** @example 24 Apr 2026, 03:06 AM */
|
|
15482
15567
|
reported_at?: string;
|
|
15483
|
-
/** @example 28 Apr 2026,
|
|
15568
|
+
/** @example 28 Apr 2026, 11:26 PM */
|
|
15484
15569
|
assigned_at?: string;
|
|
15485
15570
|
/** @example null */
|
|
15486
15571
|
completed_at?: string | null;
|
|
15487
|
-
/** @example
|
|
15572
|
+
/** @example 02 May 2026, 04:48 AM */
|
|
15488
15573
|
sla_deadline?: string;
|
|
15489
|
-
/** @example 30 Apr 2026,
|
|
15574
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15490
15575
|
created_at?: string;
|
|
15491
|
-
/** @example 30 Apr 2026,
|
|
15576
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15492
15577
|
updated_at?: string;
|
|
15493
15578
|
};
|
|
15494
15579
|
};
|
|
@@ -15525,7 +15610,7 @@ export interface operations {
|
|
|
15525
15610
|
content: {
|
|
15526
15611
|
"application/json": {
|
|
15527
15612
|
data?: {
|
|
15528
|
-
/** @example
|
|
15613
|
+
/** @example fc01eb2b-0038-4845-9f81-cab922c8b743 */
|
|
15529
15614
|
uid?: string;
|
|
15530
15615
|
/** @example 1 */
|
|
15531
15616
|
tenancy_id?: number;
|
|
@@ -15537,17 +15622,17 @@ export interface operations {
|
|
|
15537
15622
|
status?: string;
|
|
15538
15623
|
/** @example emergency */
|
|
15539
15624
|
priority?: string;
|
|
15540
|
-
/** @example
|
|
15625
|
+
/** @example 24 Apr 2026, 03:06 AM */
|
|
15541
15626
|
reported_at?: string;
|
|
15542
|
-
/** @example 28 Apr 2026,
|
|
15627
|
+
/** @example 28 Apr 2026, 11:26 PM */
|
|
15543
15628
|
assigned_at?: string;
|
|
15544
15629
|
/** @example null */
|
|
15545
15630
|
completed_at?: string | null;
|
|
15546
|
-
/** @example
|
|
15631
|
+
/** @example 02 May 2026, 04:48 AM */
|
|
15547
15632
|
sla_deadline?: string;
|
|
15548
|
-
/** @example 30 Apr 2026,
|
|
15633
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15549
15634
|
created_at?: string;
|
|
15550
|
-
/** @example 30 Apr 2026,
|
|
15635
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
15551
15636
|
updated_at?: string;
|
|
15552
15637
|
};
|
|
15553
15638
|
};
|
|
@@ -16250,18 +16335,23 @@ export interface operations {
|
|
|
16250
16335
|
};
|
|
16251
16336
|
};
|
|
16252
16337
|
responses: {
|
|
16338
|
+
/** @description Appointment created */
|
|
16253
16339
|
200: {
|
|
16254
16340
|
headers: {
|
|
16255
16341
|
[name: string]: unknown;
|
|
16256
16342
|
};
|
|
16257
16343
|
content: {
|
|
16258
16344
|
"application/json": {
|
|
16345
|
+
/** @example Appointment created */
|
|
16346
|
+
message?: string;
|
|
16347
|
+
/** @example null */
|
|
16348
|
+
event?: string | null;
|
|
16259
16349
|
data?: {
|
|
16260
|
-
/** @example
|
|
16350
|
+
/** @example 12 */
|
|
16261
16351
|
id?: number;
|
|
16262
|
-
/** @example APT-20260430-
|
|
16352
|
+
/** @example APT-20260430-ABC123 */
|
|
16263
16353
|
appointment_ref?: string;
|
|
16264
|
-
/** @example
|
|
16354
|
+
/** @example Viewing for Riverside Flat */
|
|
16265
16355
|
title?: string;
|
|
16266
16356
|
appointment_type?: {
|
|
16267
16357
|
/** @example property_viewing */
|
|
@@ -16269,61 +16359,188 @@ export interface operations {
|
|
|
16269
16359
|
/** @example Property Viewing */
|
|
16270
16360
|
label?: string;
|
|
16271
16361
|
};
|
|
16272
|
-
/** @example
|
|
16362
|
+
/** @example 32 */
|
|
16273
16363
|
listing_id?: number;
|
|
16274
16364
|
listing?: {
|
|
16275
|
-
/** @example LST-PRP-
|
|
16365
|
+
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
16276
16366
|
sku?: string;
|
|
16277
|
-
/** @example
|
|
16367
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
16278
16368
|
uid?: string;
|
|
16279
|
-
|
|
16369
|
+
details?: {
|
|
16370
|
+
/** @example 24 Windsor Court */
|
|
16371
|
+
title?: string;
|
|
16372
|
+
/** @example Modern two-bedroom apartment close to transport links. */
|
|
16373
|
+
description?: string;
|
|
16374
|
+
/** @example London */
|
|
16375
|
+
city?: string;
|
|
16376
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
16377
|
+
address?: string;
|
|
16378
|
+
/** @example SW1A 1AA */
|
|
16379
|
+
postcode?: string;
|
|
16380
|
+
/** @example -0.1412000 */
|
|
16381
|
+
longitude?: string;
|
|
16382
|
+
/** @example 51.5014000 */
|
|
16383
|
+
latitude?: string;
|
|
16384
|
+
/** @example United Kingdom */
|
|
16385
|
+
country?: string;
|
|
16386
|
+
};
|
|
16387
|
+
/** @example Rent */
|
|
16280
16388
|
listing_type?: string;
|
|
16281
16389
|
/** @example Property */
|
|
16282
16390
|
vertical?: string;
|
|
16283
|
-
/** @example
|
|
16391
|
+
/** @example entire_place */
|
|
16284
16392
|
arrangement_type?: string;
|
|
16285
|
-
/** @example
|
|
16393
|
+
/** @example Entire Place */
|
|
16286
16394
|
arrangement_type_label?: string;
|
|
16287
|
-
|
|
16288
|
-
|
|
16395
|
+
price?: {
|
|
16396
|
+
/** @example 2500.00 */
|
|
16397
|
+
amount?: string;
|
|
16398
|
+
/** @example GBP */
|
|
16399
|
+
currency?: string;
|
|
16400
|
+
/** @example month */
|
|
16401
|
+
period?: string;
|
|
16402
|
+
};
|
|
16403
|
+
listing_policy?: {
|
|
16404
|
+
/** @example 4 */
|
|
16405
|
+
max_occupants?: number;
|
|
16406
|
+
/** @example residential */
|
|
16407
|
+
allowed_use_type?: string;
|
|
16408
|
+
/** @example Residential */
|
|
16409
|
+
allowed_use_type_label?: string;
|
|
16410
|
+
/** @example false */
|
|
16411
|
+
is_subletting_allowed?: boolean;
|
|
16412
|
+
/** @example true */
|
|
16413
|
+
requires_permission_for_subletting?: boolean;
|
|
16414
|
+
/** @example true */
|
|
16415
|
+
event_permission_required?: boolean;
|
|
16416
|
+
/** @example true */
|
|
16417
|
+
no_party_policy?: boolean;
|
|
16418
|
+
/** @example false */
|
|
16419
|
+
commercial_use_flag?: boolean;
|
|
16420
|
+
};
|
|
16421
|
+
/** @example [] */
|
|
16422
|
+
viewing_slots?: unknown[];
|
|
16423
|
+
/** @example [] */
|
|
16424
|
+
tenant_preferences?: unknown[];
|
|
16425
|
+
/** @example [] */
|
|
16426
|
+
features?: unknown[];
|
|
16427
|
+
owner?: {
|
|
16428
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
16429
|
+
uid?: string;
|
|
16430
|
+
/** @example Alice Taylor */
|
|
16431
|
+
name?: string;
|
|
16432
|
+
/** @example +2348012345678 */
|
|
16433
|
+
phone?: string;
|
|
16434
|
+
/** @example alice@example.com */
|
|
16435
|
+
email?: string;
|
|
16436
|
+
/** @example null */
|
|
16437
|
+
avatar?: string | null;
|
|
16438
|
+
/** @example null */
|
|
16439
|
+
plan?: string | null;
|
|
16440
|
+
};
|
|
16441
|
+
created_by?: {
|
|
16442
|
+
/** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
|
|
16443
|
+
uid?: string;
|
|
16444
|
+
/** @example System Admin */
|
|
16445
|
+
name?: string;
|
|
16446
|
+
/** @example null */
|
|
16447
|
+
phone?: string | null;
|
|
16448
|
+
/** @example admin@example.com */
|
|
16449
|
+
email?: string;
|
|
16450
|
+
/** @example null */
|
|
16451
|
+
avatar?: string | null;
|
|
16452
|
+
/** @example null */
|
|
16453
|
+
plan?: string | null;
|
|
16454
|
+
};
|
|
16289
16455
|
/** @example published */
|
|
16290
16456
|
state?: string;
|
|
16291
|
-
/** @example
|
|
16457
|
+
/** @example 30 Apr 2026, 10:00 AM */
|
|
16292
16458
|
published_at?: string;
|
|
16293
|
-
/** @example
|
|
16459
|
+
/** @example 2 days ago */
|
|
16294
16460
|
published_since?: string;
|
|
16295
16461
|
/** @example true */
|
|
16296
16462
|
is_visible?: boolean;
|
|
16297
16463
|
summary?: {
|
|
16298
|
-
/** @example
|
|
16299
|
-
|
|
16464
|
+
/** @example residential */
|
|
16465
|
+
property_type?: string;
|
|
16466
|
+
/** @example 2 */
|
|
16467
|
+
bedrooms?: number;
|
|
16468
|
+
/** @example 1 */
|
|
16469
|
+
bathrooms?: number;
|
|
16470
|
+
/** @example 85 sqm */
|
|
16471
|
+
size?: string;
|
|
16472
|
+
/** @example available */
|
|
16473
|
+
availability?: string;
|
|
16474
|
+
};
|
|
16475
|
+
workflow?: {
|
|
16476
|
+
/** @example media */
|
|
16477
|
+
current_step?: string;
|
|
16478
|
+
/** @example true */
|
|
16479
|
+
can_submit?: boolean;
|
|
16480
|
+
/** @example [] */
|
|
16481
|
+
missing_requirements?: unknown[];
|
|
16482
|
+
/** @example publish */
|
|
16483
|
+
next_step?: string;
|
|
16484
|
+
progress?: {
|
|
16485
|
+
/** @example 8 */
|
|
16486
|
+
completed?: number;
|
|
16487
|
+
/** @example 8 */
|
|
16488
|
+
total?: number;
|
|
16489
|
+
/** @example 100 */
|
|
16490
|
+
percentage?: number;
|
|
16491
|
+
};
|
|
16492
|
+
};
|
|
16493
|
+
media?: {
|
|
16494
|
+
/**
|
|
16495
|
+
* @example [
|
|
16496
|
+
* {
|
|
16497
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
16498
|
+
* "media_type": "photo",
|
|
16499
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
16500
|
+
* "order_index": 0,
|
|
16501
|
+
* "is_cover": true
|
|
16502
|
+
* }
|
|
16503
|
+
* ]
|
|
16504
|
+
*/
|
|
16505
|
+
gallery?: {
|
|
16506
|
+
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
16507
|
+
uid?: string;
|
|
16508
|
+
/** @example photo */
|
|
16509
|
+
media_type?: string;
|
|
16510
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
16511
|
+
storage_path?: string;
|
|
16512
|
+
/** @example 0 */
|
|
16513
|
+
order_index?: number;
|
|
16514
|
+
/** @example true */
|
|
16515
|
+
is_cover?: boolean;
|
|
16516
|
+
}[];
|
|
16517
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
16518
|
+
cover?: string;
|
|
16519
|
+
/** @example 1 */
|
|
16520
|
+
count?: number;
|
|
16300
16521
|
};
|
|
16301
|
-
/** @example [] */
|
|
16302
|
-
workflow?: unknown[];
|
|
16303
|
-
/** @example [] */
|
|
16304
|
-
media?: unknown[];
|
|
16305
16522
|
};
|
|
16306
|
-
/** @example
|
|
16523
|
+
/** @example proposed */
|
|
16307
16524
|
status?: string;
|
|
16308
16525
|
scheduled?: {
|
|
16309
|
-
/** @example
|
|
16526
|
+
/** @example 01 May 2026, 09:00 AM */
|
|
16310
16527
|
start?: string;
|
|
16311
|
-
/** @example
|
|
16528
|
+
/** @example 01 May 2026, 10:00 AM */
|
|
16312
16529
|
end?: string;
|
|
16313
16530
|
};
|
|
16314
16531
|
customer?: {
|
|
16315
|
-
/** @example
|
|
16532
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
16316
16533
|
uid?: string;
|
|
16317
|
-
/** @example
|
|
16534
|
+
/** @example Dominic Thomas */
|
|
16318
16535
|
name?: string;
|
|
16319
16536
|
};
|
|
16320
16537
|
landlord?: {
|
|
16321
|
-
/** @example
|
|
16538
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
16322
16539
|
uid?: string;
|
|
16323
|
-
/** @example
|
|
16540
|
+
/** @example Alice Taylor */
|
|
16324
16541
|
name?: string;
|
|
16325
16542
|
};
|
|
16326
|
-
/** @example 2026-04-
|
|
16543
|
+
/** @example 2026-04-30T00:00:00.000000Z */
|
|
16327
16544
|
created_at?: string;
|
|
16328
16545
|
};
|
|
16329
16546
|
};
|
|
@@ -16343,18 +16560,23 @@ export interface operations {
|
|
|
16343
16560
|
};
|
|
16344
16561
|
requestBody?: never;
|
|
16345
16562
|
responses: {
|
|
16563
|
+
/** @description Appointment retrieved successfully */
|
|
16346
16564
|
200: {
|
|
16347
16565
|
headers: {
|
|
16348
16566
|
[name: string]: unknown;
|
|
16349
16567
|
};
|
|
16350
16568
|
content: {
|
|
16351
16569
|
"application/json": {
|
|
16570
|
+
/** @example Appointment retrieve successfully */
|
|
16571
|
+
message?: string;
|
|
16572
|
+
/** @example null */
|
|
16573
|
+
event?: string | null;
|
|
16352
16574
|
data?: {
|
|
16353
|
-
/** @example
|
|
16575
|
+
/** @example 12 */
|
|
16354
16576
|
id?: number;
|
|
16355
|
-
/** @example APT-20260430-
|
|
16577
|
+
/** @example APT-20260430-ABC123 */
|
|
16356
16578
|
appointment_ref?: string;
|
|
16357
|
-
/** @example
|
|
16579
|
+
/** @example Viewing for Riverside Flat */
|
|
16358
16580
|
title?: string;
|
|
16359
16581
|
appointment_type?: {
|
|
16360
16582
|
/** @example property_viewing */
|
|
@@ -16362,61 +16584,188 @@ export interface operations {
|
|
|
16362
16584
|
/** @example Property Viewing */
|
|
16363
16585
|
label?: string;
|
|
16364
16586
|
};
|
|
16365
|
-
/** @example
|
|
16587
|
+
/** @example 32 */
|
|
16366
16588
|
listing_id?: number;
|
|
16367
16589
|
listing?: {
|
|
16368
|
-
/** @example LST-PRP-
|
|
16590
|
+
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
16369
16591
|
sku?: string;
|
|
16370
|
-
/** @example
|
|
16592
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
16371
16593
|
uid?: string;
|
|
16372
|
-
|
|
16594
|
+
details?: {
|
|
16595
|
+
/** @example 24 Windsor Court */
|
|
16596
|
+
title?: string;
|
|
16597
|
+
/** @example Modern two-bedroom apartment close to transport links. */
|
|
16598
|
+
description?: string;
|
|
16599
|
+
/** @example London */
|
|
16600
|
+
city?: string;
|
|
16601
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
16602
|
+
address?: string;
|
|
16603
|
+
/** @example SW1A 1AA */
|
|
16604
|
+
postcode?: string;
|
|
16605
|
+
/** @example -0.1412000 */
|
|
16606
|
+
longitude?: string;
|
|
16607
|
+
/** @example 51.5014000 */
|
|
16608
|
+
latitude?: string;
|
|
16609
|
+
/** @example United Kingdom */
|
|
16610
|
+
country?: string;
|
|
16611
|
+
};
|
|
16612
|
+
/** @example Rent */
|
|
16373
16613
|
listing_type?: string;
|
|
16374
16614
|
/** @example Property */
|
|
16375
16615
|
vertical?: string;
|
|
16376
|
-
/** @example
|
|
16616
|
+
/** @example entire_place */
|
|
16377
16617
|
arrangement_type?: string;
|
|
16378
|
-
/** @example
|
|
16618
|
+
/** @example Entire Place */
|
|
16379
16619
|
arrangement_type_label?: string;
|
|
16380
|
-
|
|
16381
|
-
|
|
16382
|
-
|
|
16383
|
-
|
|
16384
|
-
|
|
16385
|
-
|
|
16386
|
-
|
|
16387
|
-
|
|
16388
|
-
|
|
16389
|
-
|
|
16390
|
-
|
|
16391
|
-
/** @example
|
|
16392
|
-
|
|
16620
|
+
price?: {
|
|
16621
|
+
/** @example 2500.00 */
|
|
16622
|
+
amount?: string;
|
|
16623
|
+
/** @example GBP */
|
|
16624
|
+
currency?: string;
|
|
16625
|
+
/** @example month */
|
|
16626
|
+
period?: string;
|
|
16627
|
+
};
|
|
16628
|
+
listing_policy?: {
|
|
16629
|
+
/** @example 4 */
|
|
16630
|
+
max_occupants?: number;
|
|
16631
|
+
/** @example residential */
|
|
16632
|
+
allowed_use_type?: string;
|
|
16633
|
+
/** @example Residential */
|
|
16634
|
+
allowed_use_type_label?: string;
|
|
16635
|
+
/** @example false */
|
|
16636
|
+
is_subletting_allowed?: boolean;
|
|
16637
|
+
/** @example true */
|
|
16638
|
+
requires_permission_for_subletting?: boolean;
|
|
16639
|
+
/** @example true */
|
|
16640
|
+
event_permission_required?: boolean;
|
|
16641
|
+
/** @example true */
|
|
16642
|
+
no_party_policy?: boolean;
|
|
16643
|
+
/** @example false */
|
|
16644
|
+
commercial_use_flag?: boolean;
|
|
16393
16645
|
};
|
|
16394
16646
|
/** @example [] */
|
|
16395
|
-
|
|
16647
|
+
viewing_slots?: unknown[];
|
|
16396
16648
|
/** @example [] */
|
|
16397
|
-
|
|
16398
|
-
|
|
16399
|
-
|
|
16400
|
-
|
|
16401
|
-
|
|
16402
|
-
|
|
16403
|
-
|
|
16404
|
-
|
|
16405
|
-
|
|
16406
|
-
|
|
16407
|
-
|
|
16408
|
-
|
|
16409
|
-
|
|
16410
|
-
|
|
16411
|
-
|
|
16412
|
-
|
|
16413
|
-
|
|
16414
|
-
|
|
16649
|
+
tenant_preferences?: unknown[];
|
|
16650
|
+
/** @example [] */
|
|
16651
|
+
features?: unknown[];
|
|
16652
|
+
owner?: {
|
|
16653
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
16654
|
+
uid?: string;
|
|
16655
|
+
/** @example Alice Taylor */
|
|
16656
|
+
name?: string;
|
|
16657
|
+
/** @example +2348012345678 */
|
|
16658
|
+
phone?: string;
|
|
16659
|
+
/** @example alice@example.com */
|
|
16660
|
+
email?: string;
|
|
16661
|
+
/** @example null */
|
|
16662
|
+
avatar?: string | null;
|
|
16663
|
+
/** @example null */
|
|
16664
|
+
plan?: string | null;
|
|
16665
|
+
};
|
|
16666
|
+
created_by?: {
|
|
16667
|
+
/** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
|
|
16668
|
+
uid?: string;
|
|
16669
|
+
/** @example System Admin */
|
|
16670
|
+
name?: string;
|
|
16671
|
+
/** @example null */
|
|
16672
|
+
phone?: string | null;
|
|
16673
|
+
/** @example admin@example.com */
|
|
16674
|
+
email?: string;
|
|
16675
|
+
/** @example null */
|
|
16676
|
+
avatar?: string | null;
|
|
16677
|
+
/** @example null */
|
|
16678
|
+
plan?: string | null;
|
|
16679
|
+
};
|
|
16680
|
+
/** @example published */
|
|
16681
|
+
state?: string;
|
|
16682
|
+
/** @example 30 Apr 2026, 10:00 AM */
|
|
16683
|
+
published_at?: string;
|
|
16684
|
+
/** @example 2 days ago */
|
|
16685
|
+
published_since?: string;
|
|
16686
|
+
/** @example true */
|
|
16687
|
+
is_visible?: boolean;
|
|
16688
|
+
summary?: {
|
|
16689
|
+
/** @example residential */
|
|
16690
|
+
property_type?: string;
|
|
16691
|
+
/** @example 2 */
|
|
16692
|
+
bedrooms?: number;
|
|
16693
|
+
/** @example 1 */
|
|
16694
|
+
bathrooms?: number;
|
|
16695
|
+
/** @example 85 sqm */
|
|
16696
|
+
size?: string;
|
|
16697
|
+
/** @example available */
|
|
16698
|
+
availability?: string;
|
|
16699
|
+
};
|
|
16700
|
+
workflow?: {
|
|
16701
|
+
/** @example media */
|
|
16702
|
+
current_step?: string;
|
|
16703
|
+
/** @example true */
|
|
16704
|
+
can_submit?: boolean;
|
|
16705
|
+
/** @example [] */
|
|
16706
|
+
missing_requirements?: unknown[];
|
|
16707
|
+
/** @example publish */
|
|
16708
|
+
next_step?: string;
|
|
16709
|
+
progress?: {
|
|
16710
|
+
/** @example 8 */
|
|
16711
|
+
completed?: number;
|
|
16712
|
+
/** @example 8 */
|
|
16713
|
+
total?: number;
|
|
16714
|
+
/** @example 100 */
|
|
16715
|
+
percentage?: number;
|
|
16716
|
+
};
|
|
16717
|
+
};
|
|
16718
|
+
media?: {
|
|
16719
|
+
/**
|
|
16720
|
+
* @example [
|
|
16721
|
+
* {
|
|
16722
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
16723
|
+
* "media_type": "photo",
|
|
16724
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
16725
|
+
* "order_index": 0,
|
|
16726
|
+
* "is_cover": true
|
|
16727
|
+
* }
|
|
16728
|
+
* ]
|
|
16729
|
+
*/
|
|
16730
|
+
gallery?: {
|
|
16731
|
+
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
16732
|
+
uid?: string;
|
|
16733
|
+
/** @example photo */
|
|
16734
|
+
media_type?: string;
|
|
16735
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
16736
|
+
storage_path?: string;
|
|
16737
|
+
/** @example 0 */
|
|
16738
|
+
order_index?: number;
|
|
16739
|
+
/** @example true */
|
|
16740
|
+
is_cover?: boolean;
|
|
16741
|
+
}[];
|
|
16742
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
16743
|
+
cover?: string;
|
|
16744
|
+
/** @example 1 */
|
|
16745
|
+
count?: number;
|
|
16746
|
+
};
|
|
16747
|
+
};
|
|
16748
|
+
/** @example proposed */
|
|
16749
|
+
status?: string;
|
|
16750
|
+
scheduled?: {
|
|
16751
|
+
/** @example 01 May 2026, 09:00 AM */
|
|
16752
|
+
start?: string;
|
|
16753
|
+
/** @example 01 May 2026, 10:00 AM */
|
|
16754
|
+
end?: string;
|
|
16755
|
+
};
|
|
16756
|
+
customer?: {
|
|
16757
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
16415
16758
|
uid?: string;
|
|
16416
|
-
/** @example
|
|
16759
|
+
/** @example Dominic Thomas */
|
|
16760
|
+
name?: string;
|
|
16761
|
+
};
|
|
16762
|
+
landlord?: {
|
|
16763
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
16764
|
+
uid?: string;
|
|
16765
|
+
/** @example Alice Taylor */
|
|
16417
16766
|
name?: string;
|
|
16418
16767
|
};
|
|
16419
|
-
/** @example 2026-04-
|
|
16768
|
+
/** @example 2026-04-30T00:00:00.000000Z */
|
|
16420
16769
|
created_at?: string;
|
|
16421
16770
|
};
|
|
16422
16771
|
};
|
|
@@ -16462,13 +16811,40 @@ export interface operations {
|
|
|
16462
16811
|
* },
|
|
16463
16812
|
* "listing_id": 32,
|
|
16464
16813
|
* "listing": {
|
|
16465
|
-
* "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
16466
16814
|
* "sku": "LST-PRP-LTR-260405-A1B2",
|
|
16815
|
+
* "uid": "55178b5b-ca29-41a2-a9da-f51cb257e328",
|
|
16467
16816
|
* "details": {
|
|
16468
|
-
* "address": "24 Windsor Court, London, SW1",
|
|
16469
16817
|
* "title": "24 Windsor Court",
|
|
16470
|
-
* "
|
|
16818
|
+
* "description": "Modern two-bedroom apartment close to transport links.",
|
|
16819
|
+
* "city": "London",
|
|
16820
|
+
* "address": "24 Windsor Court, London, SW1",
|
|
16821
|
+
* "postcode": "SW1A 1AA",
|
|
16822
|
+
* "longitude": "-0.1412000",
|
|
16823
|
+
* "latitude": "51.5014000",
|
|
16824
|
+
* "country": "United Kingdom"
|
|
16471
16825
|
* },
|
|
16826
|
+
* "listing_type": "Rent",
|
|
16827
|
+
* "vertical": "Property",
|
|
16828
|
+
* "arrangement_type": "entire_place",
|
|
16829
|
+
* "arrangement_type_label": "Entire Place",
|
|
16830
|
+
* "price": {
|
|
16831
|
+
* "amount": "2500.00",
|
|
16832
|
+
* "currency": "GBP",
|
|
16833
|
+
* "period": "month"
|
|
16834
|
+
* },
|
|
16835
|
+
* "listing_policy": {
|
|
16836
|
+
* "max_occupants": 4,
|
|
16837
|
+
* "allowed_use_type": "residential",
|
|
16838
|
+
* "allowed_use_type_label": "Residential",
|
|
16839
|
+
* "is_subletting_allowed": false,
|
|
16840
|
+
* "requires_permission_for_subletting": true,
|
|
16841
|
+
* "event_permission_required": true,
|
|
16842
|
+
* "no_party_policy": true,
|
|
16843
|
+
* "commercial_use_flag": false
|
|
16844
|
+
* },
|
|
16845
|
+
* "viewing_slots": [],
|
|
16846
|
+
* "tenant_preferences": [],
|
|
16847
|
+
* "features": [],
|
|
16472
16848
|
* "owner": {
|
|
16473
16849
|
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
16474
16850
|
* "name": "Alice Taylor",
|
|
@@ -16486,7 +16862,7 @@ export interface operations {
|
|
|
16486
16862
|
* "plan": null
|
|
16487
16863
|
* },
|
|
16488
16864
|
* "state": "published",
|
|
16489
|
-
* "published_at": "2026
|
|
16865
|
+
* "published_at": "30 Apr 2026, 10:00 AM",
|
|
16490
16866
|
* "published_since": "2 days ago",
|
|
16491
16867
|
* "is_visible": true,
|
|
16492
16868
|
* "summary": {
|
|
@@ -16511,7 +16887,7 @@ export interface operations {
|
|
|
16511
16887
|
* "gallery": [
|
|
16512
16888
|
* {
|
|
16513
16889
|
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
16514
|
-
* "media_type": "
|
|
16890
|
+
* "media_type": "photo",
|
|
16515
16891
|
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
16516
16892
|
* "order_index": 0,
|
|
16517
16893
|
* "is_cover": true
|
|
@@ -16521,10 +16897,10 @@ export interface operations {
|
|
|
16521
16897
|
* "count": 1
|
|
16522
16898
|
* }
|
|
16523
16899
|
* },
|
|
16524
|
-
* "status": "
|
|
16900
|
+
* "status": "proposed",
|
|
16525
16901
|
* "scheduled": {
|
|
16526
|
-
* "start": "2026
|
|
16527
|
-
* "end": "2026
|
|
16902
|
+
* "start": "01 May 2026, 09:00 AM",
|
|
16903
|
+
* "end": "01 May 2026, 10:00 AM"
|
|
16528
16904
|
* },
|
|
16529
16905
|
* "customer": {
|
|
16530
16906
|
* "uid": "7ab6715f-e121-4e47-9f90-1a709adccd13",
|
|
@@ -16534,7 +16910,7 @@ export interface operations {
|
|
|
16534
16910
|
* "uid": "e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105",
|
|
16535
16911
|
* "name": "Alice Taylor"
|
|
16536
16912
|
* },
|
|
16537
|
-
* "created_at": "2026-04-30T00:00:
|
|
16913
|
+
* "created_at": "2026-04-30T00:00:00.000000Z"
|
|
16538
16914
|
* }
|
|
16539
16915
|
* ]
|
|
16540
16916
|
*/
|
|
@@ -16554,18 +16930,68 @@ export interface operations {
|
|
|
16554
16930
|
/** @example 32 */
|
|
16555
16931
|
listing_id?: number;
|
|
16556
16932
|
listing?: {
|
|
16557
|
-
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
16558
|
-
uid?: string;
|
|
16559
16933
|
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
16560
16934
|
sku?: string;
|
|
16935
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
16936
|
+
uid?: string;
|
|
16561
16937
|
details?: {
|
|
16562
|
-
/** @example 24 Windsor Court, London, SW1 */
|
|
16563
|
-
address?: string;
|
|
16564
16938
|
/** @example 24 Windsor Court */
|
|
16565
16939
|
title?: string;
|
|
16566
|
-
/** @example
|
|
16567
|
-
|
|
16940
|
+
/** @example Modern two-bedroom apartment close to transport links. */
|
|
16941
|
+
description?: string;
|
|
16942
|
+
/** @example London */
|
|
16943
|
+
city?: string;
|
|
16944
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
16945
|
+
address?: string;
|
|
16946
|
+
/** @example SW1A 1AA */
|
|
16947
|
+
postcode?: string;
|
|
16948
|
+
/** @example -0.1412000 */
|
|
16949
|
+
longitude?: string;
|
|
16950
|
+
/** @example 51.5014000 */
|
|
16951
|
+
latitude?: string;
|
|
16952
|
+
/** @example United Kingdom */
|
|
16953
|
+
country?: string;
|
|
16568
16954
|
};
|
|
16955
|
+
/** @example Rent */
|
|
16956
|
+
listing_type?: string;
|
|
16957
|
+
/** @example Property */
|
|
16958
|
+
vertical?: string;
|
|
16959
|
+
/** @example entire_place */
|
|
16960
|
+
arrangement_type?: string;
|
|
16961
|
+
/** @example Entire Place */
|
|
16962
|
+
arrangement_type_label?: string;
|
|
16963
|
+
price?: {
|
|
16964
|
+
/** @example 2500.00 */
|
|
16965
|
+
amount?: string;
|
|
16966
|
+
/** @example GBP */
|
|
16967
|
+
currency?: string;
|
|
16968
|
+
/** @example month */
|
|
16969
|
+
period?: string;
|
|
16970
|
+
};
|
|
16971
|
+
listing_policy?: {
|
|
16972
|
+
/** @example 4 */
|
|
16973
|
+
max_occupants?: number;
|
|
16974
|
+
/** @example residential */
|
|
16975
|
+
allowed_use_type?: string;
|
|
16976
|
+
/** @example Residential */
|
|
16977
|
+
allowed_use_type_label?: string;
|
|
16978
|
+
/** @example false */
|
|
16979
|
+
is_subletting_allowed?: boolean;
|
|
16980
|
+
/** @example true */
|
|
16981
|
+
requires_permission_for_subletting?: boolean;
|
|
16982
|
+
/** @example true */
|
|
16983
|
+
event_permission_required?: boolean;
|
|
16984
|
+
/** @example true */
|
|
16985
|
+
no_party_policy?: boolean;
|
|
16986
|
+
/** @example false */
|
|
16987
|
+
commercial_use_flag?: boolean;
|
|
16988
|
+
};
|
|
16989
|
+
/** @example [] */
|
|
16990
|
+
viewing_slots?: unknown[];
|
|
16991
|
+
/** @example [] */
|
|
16992
|
+
tenant_preferences?: unknown[];
|
|
16993
|
+
/** @example [] */
|
|
16994
|
+
features?: unknown[];
|
|
16569
16995
|
owner?: {
|
|
16570
16996
|
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
16571
16997
|
uid?: string;
|
|
@@ -16596,7 +17022,7 @@ export interface operations {
|
|
|
16596
17022
|
};
|
|
16597
17023
|
/** @example published */
|
|
16598
17024
|
state?: string;
|
|
16599
|
-
/** @example 2026
|
|
17025
|
+
/** @example 30 Apr 2026, 10:00 AM */
|
|
16600
17026
|
published_at?: string;
|
|
16601
17027
|
/** @example 2 days ago */
|
|
16602
17028
|
published_since?: string;
|
|
@@ -16637,7 +17063,7 @@ export interface operations {
|
|
|
16637
17063
|
* @example [
|
|
16638
17064
|
* {
|
|
16639
17065
|
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
16640
|
-
* "media_type": "
|
|
17066
|
+
* "media_type": "photo",
|
|
16641
17067
|
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
16642
17068
|
* "order_index": 0,
|
|
16643
17069
|
* "is_cover": true
|
|
@@ -16647,7 +17073,7 @@ export interface operations {
|
|
|
16647
17073
|
gallery?: {
|
|
16648
17074
|
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
16649
17075
|
uid?: string;
|
|
16650
|
-
/** @example
|
|
17076
|
+
/** @example photo */
|
|
16651
17077
|
media_type?: string;
|
|
16652
17078
|
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
16653
17079
|
storage_path?: string;
|
|
@@ -16662,12 +17088,12 @@ export interface operations {
|
|
|
16662
17088
|
count?: number;
|
|
16663
17089
|
};
|
|
16664
17090
|
};
|
|
16665
|
-
/** @example
|
|
17091
|
+
/** @example proposed */
|
|
16666
17092
|
status?: string;
|
|
16667
17093
|
scheduled?: {
|
|
16668
|
-
/** @example 2026
|
|
17094
|
+
/** @example 01 May 2026, 09:00 AM */
|
|
16669
17095
|
start?: string;
|
|
16670
|
-
/** @example 2026
|
|
17096
|
+
/** @example 01 May 2026, 10:00 AM */
|
|
16671
17097
|
end?: string;
|
|
16672
17098
|
};
|
|
16673
17099
|
customer?: {
|
|
@@ -16682,7 +17108,7 @@ export interface operations {
|
|
|
16682
17108
|
/** @example Alice Taylor */
|
|
16683
17109
|
name?: string;
|
|
16684
17110
|
};
|
|
16685
|
-
/** @example 2026-04-30T00:00:
|
|
17111
|
+
/** @example 2026-04-30T00:00:00.000000Z */
|
|
16686
17112
|
created_at?: string;
|
|
16687
17113
|
}[];
|
|
16688
17114
|
pagination?: {
|
|
@@ -16742,18 +17168,23 @@ export interface operations {
|
|
|
16742
17168
|
};
|
|
16743
17169
|
};
|
|
16744
17170
|
responses: {
|
|
17171
|
+
/** @description Appointment rescheduled */
|
|
16745
17172
|
200: {
|
|
16746
17173
|
headers: {
|
|
16747
17174
|
[name: string]: unknown;
|
|
16748
17175
|
};
|
|
16749
17176
|
content: {
|
|
16750
17177
|
"application/json": {
|
|
17178
|
+
/** @example Appointment rescheduled */
|
|
17179
|
+
message?: string;
|
|
17180
|
+
/** @example null */
|
|
17181
|
+
event?: string | null;
|
|
16751
17182
|
data?: {
|
|
16752
|
-
/** @example
|
|
17183
|
+
/** @example 12 */
|
|
16753
17184
|
id?: number;
|
|
16754
|
-
/** @example APT-20260430-
|
|
17185
|
+
/** @example APT-20260430-ABC123 */
|
|
16755
17186
|
appointment_ref?: string;
|
|
16756
|
-
/** @example
|
|
17187
|
+
/** @example Viewing for Riverside Flat */
|
|
16757
17188
|
title?: string;
|
|
16758
17189
|
appointment_type?: {
|
|
16759
17190
|
/** @example property_viewing */
|
|
@@ -16761,61 +17192,188 @@ export interface operations {
|
|
|
16761
17192
|
/** @example Property Viewing */
|
|
16762
17193
|
label?: string;
|
|
16763
17194
|
};
|
|
16764
|
-
/** @example
|
|
17195
|
+
/** @example 32 */
|
|
16765
17196
|
listing_id?: number;
|
|
16766
17197
|
listing?: {
|
|
16767
|
-
/** @example LST-PRP-
|
|
17198
|
+
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
16768
17199
|
sku?: string;
|
|
16769
|
-
/** @example
|
|
17200
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
16770
17201
|
uid?: string;
|
|
16771
|
-
|
|
17202
|
+
details?: {
|
|
17203
|
+
/** @example 24 Windsor Court */
|
|
17204
|
+
title?: string;
|
|
17205
|
+
/** @example Modern two-bedroom apartment close to transport links. */
|
|
17206
|
+
description?: string;
|
|
17207
|
+
/** @example London */
|
|
17208
|
+
city?: string;
|
|
17209
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
17210
|
+
address?: string;
|
|
17211
|
+
/** @example SW1A 1AA */
|
|
17212
|
+
postcode?: string;
|
|
17213
|
+
/** @example -0.1412000 */
|
|
17214
|
+
longitude?: string;
|
|
17215
|
+
/** @example 51.5014000 */
|
|
17216
|
+
latitude?: string;
|
|
17217
|
+
/** @example United Kingdom */
|
|
17218
|
+
country?: string;
|
|
17219
|
+
};
|
|
17220
|
+
/** @example Rent */
|
|
16772
17221
|
listing_type?: string;
|
|
16773
17222
|
/** @example Property */
|
|
16774
17223
|
vertical?: string;
|
|
16775
|
-
/** @example
|
|
17224
|
+
/** @example entire_place */
|
|
16776
17225
|
arrangement_type?: string;
|
|
16777
|
-
/** @example
|
|
17226
|
+
/** @example Entire Place */
|
|
16778
17227
|
arrangement_type_label?: string;
|
|
16779
|
-
|
|
16780
|
-
|
|
17228
|
+
price?: {
|
|
17229
|
+
/** @example 2500.00 */
|
|
17230
|
+
amount?: string;
|
|
17231
|
+
/** @example GBP */
|
|
17232
|
+
currency?: string;
|
|
17233
|
+
/** @example month */
|
|
17234
|
+
period?: string;
|
|
17235
|
+
};
|
|
17236
|
+
listing_policy?: {
|
|
17237
|
+
/** @example 4 */
|
|
17238
|
+
max_occupants?: number;
|
|
17239
|
+
/** @example residential */
|
|
17240
|
+
allowed_use_type?: string;
|
|
17241
|
+
/** @example Residential */
|
|
17242
|
+
allowed_use_type_label?: string;
|
|
17243
|
+
/** @example false */
|
|
17244
|
+
is_subletting_allowed?: boolean;
|
|
17245
|
+
/** @example true */
|
|
17246
|
+
requires_permission_for_subletting?: boolean;
|
|
17247
|
+
/** @example true */
|
|
17248
|
+
event_permission_required?: boolean;
|
|
17249
|
+
/** @example true */
|
|
17250
|
+
no_party_policy?: boolean;
|
|
17251
|
+
/** @example false */
|
|
17252
|
+
commercial_use_flag?: boolean;
|
|
17253
|
+
};
|
|
17254
|
+
/** @example [] */
|
|
17255
|
+
viewing_slots?: unknown[];
|
|
17256
|
+
/** @example [] */
|
|
17257
|
+
tenant_preferences?: unknown[];
|
|
17258
|
+
/** @example [] */
|
|
17259
|
+
features?: unknown[];
|
|
17260
|
+
owner?: {
|
|
17261
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
17262
|
+
uid?: string;
|
|
17263
|
+
/** @example Alice Taylor */
|
|
17264
|
+
name?: string;
|
|
17265
|
+
/** @example +2348012345678 */
|
|
17266
|
+
phone?: string;
|
|
17267
|
+
/** @example alice@example.com */
|
|
17268
|
+
email?: string;
|
|
17269
|
+
/** @example null */
|
|
17270
|
+
avatar?: string | null;
|
|
17271
|
+
/** @example null */
|
|
17272
|
+
plan?: string | null;
|
|
17273
|
+
};
|
|
17274
|
+
created_by?: {
|
|
17275
|
+
/** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
|
|
17276
|
+
uid?: string;
|
|
17277
|
+
/** @example System Admin */
|
|
17278
|
+
name?: string;
|
|
17279
|
+
/** @example null */
|
|
17280
|
+
phone?: string | null;
|
|
17281
|
+
/** @example admin@example.com */
|
|
17282
|
+
email?: string;
|
|
17283
|
+
/** @example null */
|
|
17284
|
+
avatar?: string | null;
|
|
17285
|
+
/** @example null */
|
|
17286
|
+
plan?: string | null;
|
|
17287
|
+
};
|
|
16781
17288
|
/** @example published */
|
|
16782
17289
|
state?: string;
|
|
16783
|
-
/** @example
|
|
17290
|
+
/** @example 30 Apr 2026, 10:00 AM */
|
|
16784
17291
|
published_at?: string;
|
|
16785
|
-
/** @example
|
|
17292
|
+
/** @example 2 days ago */
|
|
16786
17293
|
published_since?: string;
|
|
16787
17294
|
/** @example true */
|
|
16788
17295
|
is_visible?: boolean;
|
|
16789
17296
|
summary?: {
|
|
16790
|
-
/** @example
|
|
16791
|
-
|
|
17297
|
+
/** @example residential */
|
|
17298
|
+
property_type?: string;
|
|
17299
|
+
/** @example 2 */
|
|
17300
|
+
bedrooms?: number;
|
|
17301
|
+
/** @example 1 */
|
|
17302
|
+
bathrooms?: number;
|
|
17303
|
+
/** @example 85 sqm */
|
|
17304
|
+
size?: string;
|
|
17305
|
+
/** @example available */
|
|
17306
|
+
availability?: string;
|
|
17307
|
+
};
|
|
17308
|
+
workflow?: {
|
|
17309
|
+
/** @example media */
|
|
17310
|
+
current_step?: string;
|
|
17311
|
+
/** @example true */
|
|
17312
|
+
can_submit?: boolean;
|
|
17313
|
+
/** @example [] */
|
|
17314
|
+
missing_requirements?: unknown[];
|
|
17315
|
+
/** @example publish */
|
|
17316
|
+
next_step?: string;
|
|
17317
|
+
progress?: {
|
|
17318
|
+
/** @example 8 */
|
|
17319
|
+
completed?: number;
|
|
17320
|
+
/** @example 8 */
|
|
17321
|
+
total?: number;
|
|
17322
|
+
/** @example 100 */
|
|
17323
|
+
percentage?: number;
|
|
17324
|
+
};
|
|
17325
|
+
};
|
|
17326
|
+
media?: {
|
|
17327
|
+
/**
|
|
17328
|
+
* @example [
|
|
17329
|
+
* {
|
|
17330
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
17331
|
+
* "media_type": "photo",
|
|
17332
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
17333
|
+
* "order_index": 0,
|
|
17334
|
+
* "is_cover": true
|
|
17335
|
+
* }
|
|
17336
|
+
* ]
|
|
17337
|
+
*/
|
|
17338
|
+
gallery?: {
|
|
17339
|
+
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
17340
|
+
uid?: string;
|
|
17341
|
+
/** @example photo */
|
|
17342
|
+
media_type?: string;
|
|
17343
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
17344
|
+
storage_path?: string;
|
|
17345
|
+
/** @example 0 */
|
|
17346
|
+
order_index?: number;
|
|
17347
|
+
/** @example true */
|
|
17348
|
+
is_cover?: boolean;
|
|
17349
|
+
}[];
|
|
17350
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
17351
|
+
cover?: string;
|
|
17352
|
+
/** @example 1 */
|
|
17353
|
+
count?: number;
|
|
16792
17354
|
};
|
|
16793
|
-
/** @example [] */
|
|
16794
|
-
workflow?: unknown[];
|
|
16795
|
-
/** @example [] */
|
|
16796
|
-
media?: unknown[];
|
|
16797
17355
|
};
|
|
16798
|
-
/** @example
|
|
17356
|
+
/** @example proposed */
|
|
16799
17357
|
status?: string;
|
|
16800
17358
|
scheduled?: {
|
|
16801
|
-
/** @example
|
|
17359
|
+
/** @example 01 May 2026, 09:00 AM */
|
|
16802
17360
|
start?: string;
|
|
16803
|
-
/** @example
|
|
17361
|
+
/** @example 01 May 2026, 10:00 AM */
|
|
16804
17362
|
end?: string;
|
|
16805
17363
|
};
|
|
16806
17364
|
customer?: {
|
|
16807
|
-
/** @example
|
|
17365
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
16808
17366
|
uid?: string;
|
|
16809
|
-
/** @example
|
|
17367
|
+
/** @example Dominic Thomas */
|
|
16810
17368
|
name?: string;
|
|
16811
17369
|
};
|
|
16812
17370
|
landlord?: {
|
|
16813
|
-
/** @example
|
|
17371
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
16814
17372
|
uid?: string;
|
|
16815
|
-
/** @example
|
|
17373
|
+
/** @example Alice Taylor */
|
|
16816
17374
|
name?: string;
|
|
16817
17375
|
};
|
|
16818
|
-
/** @example 2026-04-
|
|
17376
|
+
/** @example 2026-04-30T00:00:00.000000Z */
|
|
16819
17377
|
created_at?: string;
|
|
16820
17378
|
};
|
|
16821
17379
|
};
|
|
@@ -16835,18 +17393,23 @@ export interface operations {
|
|
|
16835
17393
|
};
|
|
16836
17394
|
requestBody?: never;
|
|
16837
17395
|
responses: {
|
|
17396
|
+
/** @description Appointment confirmed */
|
|
16838
17397
|
200: {
|
|
16839
17398
|
headers: {
|
|
16840
17399
|
[name: string]: unknown;
|
|
16841
17400
|
};
|
|
16842
17401
|
content: {
|
|
16843
17402
|
"application/json": {
|
|
17403
|
+
/** @example Appointment confirmed */
|
|
17404
|
+
message?: string;
|
|
17405
|
+
/** @example null */
|
|
17406
|
+
event?: string | null;
|
|
16844
17407
|
data?: {
|
|
16845
|
-
/** @example
|
|
17408
|
+
/** @example 12 */
|
|
16846
17409
|
id?: number;
|
|
16847
|
-
/** @example APT-20260430-
|
|
17410
|
+
/** @example APT-20260430-ABC123 */
|
|
16848
17411
|
appointment_ref?: string;
|
|
16849
|
-
/** @example
|
|
17412
|
+
/** @example Viewing for Riverside Flat */
|
|
16850
17413
|
title?: string;
|
|
16851
17414
|
appointment_type?: {
|
|
16852
17415
|
/** @example property_viewing */
|
|
@@ -16854,61 +17417,188 @@ export interface operations {
|
|
|
16854
17417
|
/** @example Property Viewing */
|
|
16855
17418
|
label?: string;
|
|
16856
17419
|
};
|
|
16857
|
-
/** @example
|
|
17420
|
+
/** @example 32 */
|
|
16858
17421
|
listing_id?: number;
|
|
16859
17422
|
listing?: {
|
|
16860
|
-
/** @example LST-PRP-
|
|
17423
|
+
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
16861
17424
|
sku?: string;
|
|
16862
|
-
/** @example
|
|
17425
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
16863
17426
|
uid?: string;
|
|
16864
|
-
|
|
17427
|
+
details?: {
|
|
17428
|
+
/** @example 24 Windsor Court */
|
|
17429
|
+
title?: string;
|
|
17430
|
+
/** @example Modern two-bedroom apartment close to transport links. */
|
|
17431
|
+
description?: string;
|
|
17432
|
+
/** @example London */
|
|
17433
|
+
city?: string;
|
|
17434
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
17435
|
+
address?: string;
|
|
17436
|
+
/** @example SW1A 1AA */
|
|
17437
|
+
postcode?: string;
|
|
17438
|
+
/** @example -0.1412000 */
|
|
17439
|
+
longitude?: string;
|
|
17440
|
+
/** @example 51.5014000 */
|
|
17441
|
+
latitude?: string;
|
|
17442
|
+
/** @example United Kingdom */
|
|
17443
|
+
country?: string;
|
|
17444
|
+
};
|
|
17445
|
+
/** @example Rent */
|
|
16865
17446
|
listing_type?: string;
|
|
16866
17447
|
/** @example Property */
|
|
16867
17448
|
vertical?: string;
|
|
16868
|
-
/** @example
|
|
17449
|
+
/** @example entire_place */
|
|
16869
17450
|
arrangement_type?: string;
|
|
16870
|
-
/** @example
|
|
17451
|
+
/** @example Entire Place */
|
|
16871
17452
|
arrangement_type_label?: string;
|
|
16872
|
-
|
|
16873
|
-
|
|
17453
|
+
price?: {
|
|
17454
|
+
/** @example 2500.00 */
|
|
17455
|
+
amount?: string;
|
|
17456
|
+
/** @example GBP */
|
|
17457
|
+
currency?: string;
|
|
17458
|
+
/** @example month */
|
|
17459
|
+
period?: string;
|
|
17460
|
+
};
|
|
17461
|
+
listing_policy?: {
|
|
17462
|
+
/** @example 4 */
|
|
17463
|
+
max_occupants?: number;
|
|
17464
|
+
/** @example residential */
|
|
17465
|
+
allowed_use_type?: string;
|
|
17466
|
+
/** @example Residential */
|
|
17467
|
+
allowed_use_type_label?: string;
|
|
17468
|
+
/** @example false */
|
|
17469
|
+
is_subletting_allowed?: boolean;
|
|
17470
|
+
/** @example true */
|
|
17471
|
+
requires_permission_for_subletting?: boolean;
|
|
17472
|
+
/** @example true */
|
|
17473
|
+
event_permission_required?: boolean;
|
|
17474
|
+
/** @example true */
|
|
17475
|
+
no_party_policy?: boolean;
|
|
17476
|
+
/** @example false */
|
|
17477
|
+
commercial_use_flag?: boolean;
|
|
17478
|
+
};
|
|
17479
|
+
/** @example [] */
|
|
17480
|
+
viewing_slots?: unknown[];
|
|
17481
|
+
/** @example [] */
|
|
17482
|
+
tenant_preferences?: unknown[];
|
|
17483
|
+
/** @example [] */
|
|
17484
|
+
features?: unknown[];
|
|
17485
|
+
owner?: {
|
|
17486
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
17487
|
+
uid?: string;
|
|
17488
|
+
/** @example Alice Taylor */
|
|
17489
|
+
name?: string;
|
|
17490
|
+
/** @example +2348012345678 */
|
|
17491
|
+
phone?: string;
|
|
17492
|
+
/** @example alice@example.com */
|
|
17493
|
+
email?: string;
|
|
17494
|
+
/** @example null */
|
|
17495
|
+
avatar?: string | null;
|
|
17496
|
+
/** @example null */
|
|
17497
|
+
plan?: string | null;
|
|
17498
|
+
};
|
|
17499
|
+
created_by?: {
|
|
17500
|
+
/** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
|
|
17501
|
+
uid?: string;
|
|
17502
|
+
/** @example System Admin */
|
|
17503
|
+
name?: string;
|
|
17504
|
+
/** @example null */
|
|
17505
|
+
phone?: string | null;
|
|
17506
|
+
/** @example admin@example.com */
|
|
17507
|
+
email?: string;
|
|
17508
|
+
/** @example null */
|
|
17509
|
+
avatar?: string | null;
|
|
17510
|
+
/** @example null */
|
|
17511
|
+
plan?: string | null;
|
|
17512
|
+
};
|
|
16874
17513
|
/** @example published */
|
|
16875
17514
|
state?: string;
|
|
16876
|
-
/** @example
|
|
17515
|
+
/** @example 30 Apr 2026, 10:00 AM */
|
|
16877
17516
|
published_at?: string;
|
|
16878
|
-
/** @example
|
|
17517
|
+
/** @example 2 days ago */
|
|
16879
17518
|
published_since?: string;
|
|
16880
17519
|
/** @example true */
|
|
16881
17520
|
is_visible?: boolean;
|
|
16882
17521
|
summary?: {
|
|
16883
|
-
/** @example
|
|
16884
|
-
|
|
17522
|
+
/** @example residential */
|
|
17523
|
+
property_type?: string;
|
|
17524
|
+
/** @example 2 */
|
|
17525
|
+
bedrooms?: number;
|
|
17526
|
+
/** @example 1 */
|
|
17527
|
+
bathrooms?: number;
|
|
17528
|
+
/** @example 85 sqm */
|
|
17529
|
+
size?: string;
|
|
17530
|
+
/** @example available */
|
|
17531
|
+
availability?: string;
|
|
17532
|
+
};
|
|
17533
|
+
workflow?: {
|
|
17534
|
+
/** @example media */
|
|
17535
|
+
current_step?: string;
|
|
17536
|
+
/** @example true */
|
|
17537
|
+
can_submit?: boolean;
|
|
17538
|
+
/** @example [] */
|
|
17539
|
+
missing_requirements?: unknown[];
|
|
17540
|
+
/** @example publish */
|
|
17541
|
+
next_step?: string;
|
|
17542
|
+
progress?: {
|
|
17543
|
+
/** @example 8 */
|
|
17544
|
+
completed?: number;
|
|
17545
|
+
/** @example 8 */
|
|
17546
|
+
total?: number;
|
|
17547
|
+
/** @example 100 */
|
|
17548
|
+
percentage?: number;
|
|
17549
|
+
};
|
|
17550
|
+
};
|
|
17551
|
+
media?: {
|
|
17552
|
+
/**
|
|
17553
|
+
* @example [
|
|
17554
|
+
* {
|
|
17555
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
17556
|
+
* "media_type": "photo",
|
|
17557
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
17558
|
+
* "order_index": 0,
|
|
17559
|
+
* "is_cover": true
|
|
17560
|
+
* }
|
|
17561
|
+
* ]
|
|
17562
|
+
*/
|
|
17563
|
+
gallery?: {
|
|
17564
|
+
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
17565
|
+
uid?: string;
|
|
17566
|
+
/** @example photo */
|
|
17567
|
+
media_type?: string;
|
|
17568
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
17569
|
+
storage_path?: string;
|
|
17570
|
+
/** @example 0 */
|
|
17571
|
+
order_index?: number;
|
|
17572
|
+
/** @example true */
|
|
17573
|
+
is_cover?: boolean;
|
|
17574
|
+
}[];
|
|
17575
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
17576
|
+
cover?: string;
|
|
17577
|
+
/** @example 1 */
|
|
17578
|
+
count?: number;
|
|
16885
17579
|
};
|
|
16886
|
-
/** @example [] */
|
|
16887
|
-
workflow?: unknown[];
|
|
16888
|
-
/** @example [] */
|
|
16889
|
-
media?: unknown[];
|
|
16890
17580
|
};
|
|
16891
|
-
/** @example
|
|
17581
|
+
/** @example proposed */
|
|
16892
17582
|
status?: string;
|
|
16893
17583
|
scheduled?: {
|
|
16894
|
-
/** @example
|
|
17584
|
+
/** @example 01 May 2026, 09:00 AM */
|
|
16895
17585
|
start?: string;
|
|
16896
|
-
/** @example
|
|
17586
|
+
/** @example 01 May 2026, 10:00 AM */
|
|
16897
17587
|
end?: string;
|
|
16898
17588
|
};
|
|
16899
17589
|
customer?: {
|
|
16900
|
-
/** @example
|
|
17590
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
16901
17591
|
uid?: string;
|
|
16902
|
-
/** @example
|
|
17592
|
+
/** @example Dominic Thomas */
|
|
16903
17593
|
name?: string;
|
|
16904
17594
|
};
|
|
16905
17595
|
landlord?: {
|
|
16906
|
-
/** @example
|
|
17596
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
16907
17597
|
uid?: string;
|
|
16908
|
-
/** @example
|
|
17598
|
+
/** @example Alice Taylor */
|
|
16909
17599
|
name?: string;
|
|
16910
17600
|
};
|
|
16911
|
-
/** @example 2026-04-
|
|
17601
|
+
/** @example 2026-04-30T00:00:00.000000Z */
|
|
16912
17602
|
created_at?: string;
|
|
16913
17603
|
};
|
|
16914
17604
|
};
|
|
@@ -16928,18 +17618,23 @@ export interface operations {
|
|
|
16928
17618
|
};
|
|
16929
17619
|
requestBody?: never;
|
|
16930
17620
|
responses: {
|
|
17621
|
+
/** @description Appointment cancelled */
|
|
16931
17622
|
200: {
|
|
16932
17623
|
headers: {
|
|
16933
17624
|
[name: string]: unknown;
|
|
16934
17625
|
};
|
|
16935
17626
|
content: {
|
|
16936
17627
|
"application/json": {
|
|
17628
|
+
/** @example Appointment cancel */
|
|
17629
|
+
message?: string;
|
|
17630
|
+
/** @example null */
|
|
17631
|
+
event?: string | null;
|
|
16937
17632
|
data?: {
|
|
16938
|
-
/** @example
|
|
17633
|
+
/** @example 12 */
|
|
16939
17634
|
id?: number;
|
|
16940
|
-
/** @example APT-20260430-
|
|
17635
|
+
/** @example APT-20260430-ABC123 */
|
|
16941
17636
|
appointment_ref?: string;
|
|
16942
|
-
/** @example
|
|
17637
|
+
/** @example Viewing for Riverside Flat */
|
|
16943
17638
|
title?: string;
|
|
16944
17639
|
appointment_type?: {
|
|
16945
17640
|
/** @example property_viewing */
|
|
@@ -16947,61 +17642,188 @@ export interface operations {
|
|
|
16947
17642
|
/** @example Property Viewing */
|
|
16948
17643
|
label?: string;
|
|
16949
17644
|
};
|
|
16950
|
-
/** @example
|
|
17645
|
+
/** @example 32 */
|
|
16951
17646
|
listing_id?: number;
|
|
16952
17647
|
listing?: {
|
|
16953
|
-
/** @example LST-PRP-
|
|
17648
|
+
/** @example LST-PRP-LTR-260405-A1B2 */
|
|
16954
17649
|
sku?: string;
|
|
16955
|
-
/** @example
|
|
17650
|
+
/** @example 55178b5b-ca29-41a2-a9da-f51cb257e328 */
|
|
16956
17651
|
uid?: string;
|
|
16957
|
-
|
|
17652
|
+
details?: {
|
|
17653
|
+
/** @example 24 Windsor Court */
|
|
17654
|
+
title?: string;
|
|
17655
|
+
/** @example Modern two-bedroom apartment close to transport links. */
|
|
17656
|
+
description?: string;
|
|
17657
|
+
/** @example London */
|
|
17658
|
+
city?: string;
|
|
17659
|
+
/** @example 24 Windsor Court, London, SW1 */
|
|
17660
|
+
address?: string;
|
|
17661
|
+
/** @example SW1A 1AA */
|
|
17662
|
+
postcode?: string;
|
|
17663
|
+
/** @example -0.1412000 */
|
|
17664
|
+
longitude?: string;
|
|
17665
|
+
/** @example 51.5014000 */
|
|
17666
|
+
latitude?: string;
|
|
17667
|
+
/** @example United Kingdom */
|
|
17668
|
+
country?: string;
|
|
17669
|
+
};
|
|
17670
|
+
/** @example Rent */
|
|
16958
17671
|
listing_type?: string;
|
|
16959
17672
|
/** @example Property */
|
|
16960
17673
|
vertical?: string;
|
|
16961
|
-
/** @example
|
|
17674
|
+
/** @example entire_place */
|
|
16962
17675
|
arrangement_type?: string;
|
|
16963
|
-
/** @example
|
|
17676
|
+
/** @example Entire Place */
|
|
16964
17677
|
arrangement_type_label?: string;
|
|
16965
|
-
|
|
16966
|
-
|
|
17678
|
+
price?: {
|
|
17679
|
+
/** @example 2500.00 */
|
|
17680
|
+
amount?: string;
|
|
17681
|
+
/** @example GBP */
|
|
17682
|
+
currency?: string;
|
|
17683
|
+
/** @example month */
|
|
17684
|
+
period?: string;
|
|
17685
|
+
};
|
|
17686
|
+
listing_policy?: {
|
|
17687
|
+
/** @example 4 */
|
|
17688
|
+
max_occupants?: number;
|
|
17689
|
+
/** @example residential */
|
|
17690
|
+
allowed_use_type?: string;
|
|
17691
|
+
/** @example Residential */
|
|
17692
|
+
allowed_use_type_label?: string;
|
|
17693
|
+
/** @example false */
|
|
17694
|
+
is_subletting_allowed?: boolean;
|
|
17695
|
+
/** @example true */
|
|
17696
|
+
requires_permission_for_subletting?: boolean;
|
|
17697
|
+
/** @example true */
|
|
17698
|
+
event_permission_required?: boolean;
|
|
17699
|
+
/** @example true */
|
|
17700
|
+
no_party_policy?: boolean;
|
|
17701
|
+
/** @example false */
|
|
17702
|
+
commercial_use_flag?: boolean;
|
|
17703
|
+
};
|
|
17704
|
+
/** @example [] */
|
|
17705
|
+
viewing_slots?: unknown[];
|
|
17706
|
+
/** @example [] */
|
|
17707
|
+
tenant_preferences?: unknown[];
|
|
17708
|
+
/** @example [] */
|
|
17709
|
+
features?: unknown[];
|
|
17710
|
+
owner?: {
|
|
17711
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
17712
|
+
uid?: string;
|
|
17713
|
+
/** @example Alice Taylor */
|
|
17714
|
+
name?: string;
|
|
17715
|
+
/** @example +2348012345678 */
|
|
17716
|
+
phone?: string;
|
|
17717
|
+
/** @example alice@example.com */
|
|
17718
|
+
email?: string;
|
|
17719
|
+
/** @example null */
|
|
17720
|
+
avatar?: string | null;
|
|
17721
|
+
/** @example null */
|
|
17722
|
+
plan?: string | null;
|
|
17723
|
+
};
|
|
17724
|
+
created_by?: {
|
|
17725
|
+
/** @example b4afc948-66b3-415c-8287-b5f1a0728e22 */
|
|
17726
|
+
uid?: string;
|
|
17727
|
+
/** @example System Admin */
|
|
17728
|
+
name?: string;
|
|
17729
|
+
/** @example null */
|
|
17730
|
+
phone?: string | null;
|
|
17731
|
+
/** @example admin@example.com */
|
|
17732
|
+
email?: string;
|
|
17733
|
+
/** @example null */
|
|
17734
|
+
avatar?: string | null;
|
|
17735
|
+
/** @example null */
|
|
17736
|
+
plan?: string | null;
|
|
17737
|
+
};
|
|
16967
17738
|
/** @example published */
|
|
16968
17739
|
state?: string;
|
|
16969
|
-
/** @example
|
|
17740
|
+
/** @example 30 Apr 2026, 10:00 AM */
|
|
16970
17741
|
published_at?: string;
|
|
16971
|
-
/** @example
|
|
17742
|
+
/** @example 2 days ago */
|
|
16972
17743
|
published_since?: string;
|
|
16973
17744
|
/** @example true */
|
|
16974
17745
|
is_visible?: boolean;
|
|
16975
17746
|
summary?: {
|
|
16976
|
-
/** @example
|
|
16977
|
-
|
|
17747
|
+
/** @example residential */
|
|
17748
|
+
property_type?: string;
|
|
17749
|
+
/** @example 2 */
|
|
17750
|
+
bedrooms?: number;
|
|
17751
|
+
/** @example 1 */
|
|
17752
|
+
bathrooms?: number;
|
|
17753
|
+
/** @example 85 sqm */
|
|
17754
|
+
size?: string;
|
|
17755
|
+
/** @example available */
|
|
17756
|
+
availability?: string;
|
|
17757
|
+
};
|
|
17758
|
+
workflow?: {
|
|
17759
|
+
/** @example media */
|
|
17760
|
+
current_step?: string;
|
|
17761
|
+
/** @example true */
|
|
17762
|
+
can_submit?: boolean;
|
|
17763
|
+
/** @example [] */
|
|
17764
|
+
missing_requirements?: unknown[];
|
|
17765
|
+
/** @example publish */
|
|
17766
|
+
next_step?: string;
|
|
17767
|
+
progress?: {
|
|
17768
|
+
/** @example 8 */
|
|
17769
|
+
completed?: number;
|
|
17770
|
+
/** @example 8 */
|
|
17771
|
+
total?: number;
|
|
17772
|
+
/** @example 100 */
|
|
17773
|
+
percentage?: number;
|
|
17774
|
+
};
|
|
17775
|
+
};
|
|
17776
|
+
media?: {
|
|
17777
|
+
/**
|
|
17778
|
+
* @example [
|
|
17779
|
+
* {
|
|
17780
|
+
* "uid": "b7b1d7a0-8e20-4d11-a991-1b88c4f78c41",
|
|
17781
|
+
* "media_type": "photo",
|
|
17782
|
+
* "storage_path": "http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg",
|
|
17783
|
+
* "order_index": 0,
|
|
17784
|
+
* "is_cover": true
|
|
17785
|
+
* }
|
|
17786
|
+
* ]
|
|
17787
|
+
*/
|
|
17788
|
+
gallery?: {
|
|
17789
|
+
/** @example b7b1d7a0-8e20-4d11-a991-1b88c4f78c41 */
|
|
17790
|
+
uid?: string;
|
|
17791
|
+
/** @example photo */
|
|
17792
|
+
media_type?: string;
|
|
17793
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
17794
|
+
storage_path?: string;
|
|
17795
|
+
/** @example 0 */
|
|
17796
|
+
order_index?: number;
|
|
17797
|
+
/** @example true */
|
|
17798
|
+
is_cover?: boolean;
|
|
17799
|
+
}[];
|
|
17800
|
+
/** @example http://app.justinshome-backendcore.test/storage/listing-media/listings/55178b5b-ca29-41a2-a9da-f51cb257e328/cover.jpg */
|
|
17801
|
+
cover?: string;
|
|
17802
|
+
/** @example 1 */
|
|
17803
|
+
count?: number;
|
|
16978
17804
|
};
|
|
16979
|
-
/** @example [] */
|
|
16980
|
-
workflow?: unknown[];
|
|
16981
|
-
/** @example [] */
|
|
16982
|
-
media?: unknown[];
|
|
16983
17805
|
};
|
|
16984
|
-
/** @example
|
|
17806
|
+
/** @example proposed */
|
|
16985
17807
|
status?: string;
|
|
16986
17808
|
scheduled?: {
|
|
16987
|
-
/** @example
|
|
17809
|
+
/** @example 01 May 2026, 09:00 AM */
|
|
16988
17810
|
start?: string;
|
|
16989
|
-
/** @example
|
|
17811
|
+
/** @example 01 May 2026, 10:00 AM */
|
|
16990
17812
|
end?: string;
|
|
16991
17813
|
};
|
|
16992
17814
|
customer?: {
|
|
16993
|
-
/** @example
|
|
17815
|
+
/** @example 7ab6715f-e121-4e47-9f90-1a709adccd13 */
|
|
16994
17816
|
uid?: string;
|
|
16995
|
-
/** @example
|
|
17817
|
+
/** @example Dominic Thomas */
|
|
16996
17818
|
name?: string;
|
|
16997
17819
|
};
|
|
16998
17820
|
landlord?: {
|
|
16999
|
-
/** @example
|
|
17821
|
+
/** @example e45bd0fb-72f4-4ee6-9ff8-aad1f64b1105 */
|
|
17000
17822
|
uid?: string;
|
|
17001
|
-
/** @example
|
|
17823
|
+
/** @example Alice Taylor */
|
|
17002
17824
|
name?: string;
|
|
17003
17825
|
};
|
|
17004
|
-
/** @example 2026-04-
|
|
17826
|
+
/** @example 2026-04-30T00:00:00.000000Z */
|
|
17005
17827
|
created_at?: string;
|
|
17006
17828
|
};
|
|
17007
17829
|
};
|
|
@@ -17573,6 +18395,10 @@ export interface operations {
|
|
|
17573
18395
|
title?: string;
|
|
17574
18396
|
/** @example Rent */
|
|
17575
18397
|
type?: string;
|
|
18398
|
+
/** @example 02:00 PM */
|
|
18399
|
+
check_in_time?: string;
|
|
18400
|
+
/** @example 11:00 AM */
|
|
18401
|
+
check_out_time?: string;
|
|
17576
18402
|
};
|
|
17577
18403
|
};
|
|
17578
18404
|
guest?: {
|
|
@@ -17595,6 +18421,10 @@ export interface operations {
|
|
|
17595
18421
|
/** @example null */
|
|
17596
18422
|
avatar_path?: string | null;
|
|
17597
18423
|
};
|
|
18424
|
+
/** @example 10 Jun 2026 */
|
|
18425
|
+
start_date?: string;
|
|
18426
|
+
/** @example 13 Jun 2026 */
|
|
18427
|
+
end_date?: string;
|
|
17598
18428
|
/** @example 3 */
|
|
17599
18429
|
nights?: number;
|
|
17600
18430
|
/** @example pending */
|
|
@@ -18056,7 +18886,7 @@ export interface operations {
|
|
|
18056
18886
|
content: {
|
|
18057
18887
|
"application/json": {
|
|
18058
18888
|
data?: {
|
|
18059
|
-
/** @example
|
|
18889
|
+
/** @example 5758e6aa-7740-432d-88c4-4e24c7e164b0 */
|
|
18060
18890
|
uid?: string;
|
|
18061
18891
|
/** @example Ms. Audra Crooks II */
|
|
18062
18892
|
username?: string;
|
|
@@ -18086,9 +18916,9 @@ export interface operations {
|
|
|
18086
18916
|
timezone?: string;
|
|
18087
18917
|
/** @example Customer */
|
|
18088
18918
|
user_type?: string;
|
|
18089
|
-
/** @example 30 Apr 2026,
|
|
18919
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
18090
18920
|
created?: string;
|
|
18091
|
-
/** @example
|
|
18921
|
+
/** @example 1 second ago */
|
|
18092
18922
|
email_verified_at?: string;
|
|
18093
18923
|
verification_status?: {
|
|
18094
18924
|
/** @example not_verified */
|
|
@@ -18555,7 +19385,7 @@ export interface operations {
|
|
|
18555
19385
|
content: {
|
|
18556
19386
|
"application/json": {
|
|
18557
19387
|
data?: {
|
|
18558
|
-
/** @example
|
|
19388
|
+
/** @example 87c83e3b-191d-40ad-8664-7330fa6e988e */
|
|
18559
19389
|
uid?: string;
|
|
18560
19390
|
/** @example Ms. Audra Crooks II */
|
|
18561
19391
|
username?: string;
|
|
@@ -18585,7 +19415,7 @@ export interface operations {
|
|
|
18585
19415
|
timezone?: string;
|
|
18586
19416
|
/** @example Customer */
|
|
18587
19417
|
user_type?: string;
|
|
18588
|
-
/** @example 30 Apr 2026,
|
|
19418
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
18589
19419
|
created?: string;
|
|
18590
19420
|
/** @example 0 seconds ago */
|
|
18591
19421
|
email_verified_at?: string;
|
|
@@ -18718,7 +19548,9 @@ export interface operations {
|
|
|
18718
19548
|
* "details": {
|
|
18719
19549
|
* "address": "24 Windsor Court, London, SW1",
|
|
18720
19550
|
* "title": "24 Windsor Court",
|
|
18721
|
-
* "type": "Rent"
|
|
19551
|
+
* "type": "Rent",
|
|
19552
|
+
* "check_in_time": "02:00 PM",
|
|
19553
|
+
* "check_out_time": "11:00 AM"
|
|
18722
19554
|
* }
|
|
18723
19555
|
* },
|
|
18724
19556
|
* "guest": {
|
|
@@ -18733,6 +19565,8 @@ export interface operations {
|
|
|
18733
19565
|
* "email": "alice@example.com",
|
|
18734
19566
|
* "avatar_path": null
|
|
18735
19567
|
* },
|
|
19568
|
+
* "start_date": "10 Jun 2026",
|
|
19569
|
+
* "end_date": "13 Jun 2026",
|
|
18736
19570
|
* "nights": 3,
|
|
18737
19571
|
* "status": "pending",
|
|
18738
19572
|
* "total_price": "450.00"
|
|
@@ -18766,6 +19600,10 @@ export interface operations {
|
|
|
18766
19600
|
title?: string;
|
|
18767
19601
|
/** @example Rent */
|
|
18768
19602
|
type?: string;
|
|
19603
|
+
/** @example 02:00 PM */
|
|
19604
|
+
check_in_time?: string;
|
|
19605
|
+
/** @example 11:00 AM */
|
|
19606
|
+
check_out_time?: string;
|
|
18769
19607
|
};
|
|
18770
19608
|
};
|
|
18771
19609
|
guest?: {
|
|
@@ -18788,6 +19626,10 @@ export interface operations {
|
|
|
18788
19626
|
/** @example null */
|
|
18789
19627
|
avatar_path?: string | null;
|
|
18790
19628
|
};
|
|
19629
|
+
/** @example 10 Jun 2026 */
|
|
19630
|
+
start_date?: string;
|
|
19631
|
+
/** @example 13 Jun 2026 */
|
|
19632
|
+
end_date?: string;
|
|
18791
19633
|
/** @example 3 */
|
|
18792
19634
|
nights?: number;
|
|
18793
19635
|
/** @example pending */
|
|
@@ -18842,7 +19684,7 @@ export interface operations {
|
|
|
18842
19684
|
*/
|
|
18843
19685
|
search?: string | null;
|
|
18844
19686
|
/**
|
|
18845
|
-
* @example
|
|
19687
|
+
* @example approved
|
|
18846
19688
|
* @enum {string|null}
|
|
18847
19689
|
*/
|
|
18848
19690
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
@@ -19076,7 +19918,7 @@ export interface operations {
|
|
|
19076
19918
|
content: {
|
|
19077
19919
|
"application/json": {
|
|
19078
19920
|
data?: {
|
|
19079
|
-
/** @example
|
|
19921
|
+
/** @example 6544cf84-635e-4039-8e1d-9870195ac885 */
|
|
19080
19922
|
uid?: string;
|
|
19081
19923
|
/** @example JH-APP-2026-936806 */
|
|
19082
19924
|
application_ref?: string;
|
|
@@ -19097,7 +19939,7 @@ export interface operations {
|
|
|
19097
19939
|
/** @example null */
|
|
19098
19940
|
rejection_reason?: string | null;
|
|
19099
19941
|
timeline?: {
|
|
19100
|
-
/** @example 2026-04-
|
|
19942
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
19101
19943
|
created_at?: string;
|
|
19102
19944
|
/** @example null */
|
|
19103
19945
|
approved_at?: string | null;
|
|
@@ -19131,7 +19973,7 @@ export interface operations {
|
|
|
19131
19973
|
content: {
|
|
19132
19974
|
"application/json": {
|
|
19133
19975
|
data?: {
|
|
19134
|
-
/** @example
|
|
19976
|
+
/** @example a33beaab-3f20-4cd6-8368-c298e9cc68dd */
|
|
19135
19977
|
uid?: string;
|
|
19136
19978
|
/** @example JH-APP-2026-757680 */
|
|
19137
19979
|
application_ref?: string;
|
|
@@ -19152,7 +19994,7 @@ export interface operations {
|
|
|
19152
19994
|
/** @example null */
|
|
19153
19995
|
rejection_reason?: string | null;
|
|
19154
19996
|
timeline?: {
|
|
19155
|
-
/** @example 2026-04-
|
|
19997
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
19156
19998
|
created_at?: string;
|
|
19157
19999
|
/** @example null */
|
|
19158
20000
|
approved_at?: string | null;
|
|
@@ -19196,7 +20038,7 @@ export interface operations {
|
|
|
19196
20038
|
content: {
|
|
19197
20039
|
"application/json": {
|
|
19198
20040
|
data?: {
|
|
19199
|
-
/** @example
|
|
20041
|
+
/** @example 69572a54-11a9-4dcd-bcda-50b996015ad0 */
|
|
19200
20042
|
uid?: string;
|
|
19201
20043
|
/** @example JH-APP-2026-449171 */
|
|
19202
20044
|
application_ref?: string;
|
|
@@ -19217,7 +20059,7 @@ export interface operations {
|
|
|
19217
20059
|
/** @example null */
|
|
19218
20060
|
rejection_reason?: string | null;
|
|
19219
20061
|
timeline?: {
|
|
19220
|
-
/** @example 2026-04-
|
|
20062
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
19221
20063
|
created_at?: string;
|
|
19222
20064
|
/** @example null */
|
|
19223
20065
|
approved_at?: string | null;
|
|
@@ -19251,14 +20093,8 @@ export interface operations {
|
|
|
19251
20093
|
content: {
|
|
19252
20094
|
"application/json": {
|
|
19253
20095
|
data?: {
|
|
19254
|
-
/** @example
|
|
20096
|
+
/** @example 63eee1b6-82e1-44cd-8c3c-3af081bb098a */
|
|
19255
20097
|
uid?: string;
|
|
19256
|
-
/** @example 1 */
|
|
19257
|
-
listing_id?: number;
|
|
19258
|
-
/** @example 2 */
|
|
19259
|
-
landlord_id?: number;
|
|
19260
|
-
/** @example 2 */
|
|
19261
|
-
tenant_id?: number;
|
|
19262
20098
|
/** @example 4881.50 */
|
|
19263
20099
|
rent_amount?: string;
|
|
19264
20100
|
/** @example 2151.17 */
|
|
@@ -19275,7 +20111,7 @@ export interface operations {
|
|
|
19275
20111
|
company_name?: string | null;
|
|
19276
20112
|
/** @example null */
|
|
19277
20113
|
company_registration_number?: string | null;
|
|
19278
|
-
/** @example 2026-04-
|
|
20114
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
19279
20115
|
created_at?: string;
|
|
19280
20116
|
};
|
|
19281
20117
|
};
|
|
@@ -19322,11 +20158,11 @@ export interface operations {
|
|
|
19322
20158
|
content: {
|
|
19323
20159
|
"application/json": {
|
|
19324
20160
|
data?: {
|
|
19325
|
-
/** @example New For Sale Used Item draft • 30 Apr 2026,
|
|
20161
|
+
/** @example New For Sale Used Item draft • 30 Apr 2026, 3:52 PM */
|
|
19326
20162
|
draft_name?: string;
|
|
19327
|
-
/** @example LST-UIT-SAL-
|
|
20163
|
+
/** @example LST-UIT-SAL-MOLNX8ANGBG */
|
|
19328
20164
|
sku?: string;
|
|
19329
|
-
/** @example
|
|
20165
|
+
/** @example 797017a3-7abe-4f73-b746-8e69836d5521 */
|
|
19330
20166
|
uid?: string;
|
|
19331
20167
|
/** @example Sale */
|
|
19332
20168
|
listing_type?: string;
|
|
@@ -19448,9 +20284,9 @@ export interface operations {
|
|
|
19448
20284
|
/**
|
|
19449
20285
|
* @example [
|
|
19450
20286
|
* {
|
|
19451
|
-
* "draft_name": "New For Rent Property draft • 30 Apr 2026,
|
|
19452
|
-
* "sku": "LST-PRP-LTR-
|
|
19453
|
-
* "uid": "
|
|
20287
|
+
* "draft_name": "New For Rent Property draft • 30 Apr 2026, 3:52 PM",
|
|
20288
|
+
* "sku": "LST-PRP-LTR-MOLNX8BHWWD",
|
|
20289
|
+
* "uid": "acfeccdb-b8c4-45f3-80de-a46d909e7f90",
|
|
19454
20290
|
* "listing_type": "Rent",
|
|
19455
20291
|
* "vertical": "Property",
|
|
19456
20292
|
* "arrangement_type": "let_to_let",
|
|
@@ -19467,9 +20303,9 @@ export interface operations {
|
|
|
19467
20303
|
* "media": []
|
|
19468
20304
|
* },
|
|
19469
20305
|
* {
|
|
19470
|
-
* "draft_name": "New Short Let Property draft • 30 Apr 2026,
|
|
19471
|
-
* "sku": "LST-PRP-SHL-
|
|
19472
|
-
* "uid": "
|
|
20306
|
+
* "draft_name": "New Short Let Property draft • 30 Apr 2026, 3:52 PM",
|
|
20307
|
+
* "sku": "LST-PRP-SHL-MOLNX8BMU1R",
|
|
20308
|
+
* "uid": "9c722f2f-94a9-466b-93bb-6c2916e4529b",
|
|
19473
20309
|
* "listing_type": "Short Let",
|
|
19474
20310
|
* "vertical": "Property",
|
|
19475
20311
|
* "arrangement_type": "short_term_managed",
|
|
@@ -19488,11 +20324,11 @@ export interface operations {
|
|
|
19488
20324
|
* ]
|
|
19489
20325
|
*/
|
|
19490
20326
|
data?: {
|
|
19491
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
20327
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
19492
20328
|
draft_name?: string;
|
|
19493
|
-
/** @example LST-PRP-LTR-
|
|
20329
|
+
/** @example LST-PRP-LTR-MOLNX8BHWWD */
|
|
19494
20330
|
sku?: string;
|
|
19495
|
-
/** @example
|
|
20331
|
+
/** @example acfeccdb-b8c4-45f3-80de-a46d909e7f90 */
|
|
19496
20332
|
uid?: string;
|
|
19497
20333
|
/** @example Rent */
|
|
19498
20334
|
listing_type?: string;
|
|
@@ -19602,9 +20438,9 @@ export interface operations {
|
|
|
19602
20438
|
/**
|
|
19603
20439
|
* @example [
|
|
19604
20440
|
* {
|
|
19605
|
-
* "draft_name": "New For Rent Property draft • 30 Apr 2026,
|
|
19606
|
-
* "sku": "LST-PRP-LTR-
|
|
19607
|
-
* "uid": "
|
|
20441
|
+
* "draft_name": "New For Rent Property draft • 30 Apr 2026, 3:52 PM",
|
|
20442
|
+
* "sku": "LST-PRP-LTR-MOLNX8BSBTK",
|
|
20443
|
+
* "uid": "1db0e4d4-a13e-4841-9c16-a3f48f7dd840",
|
|
19608
20444
|
* "listing_type": "Rent",
|
|
19609
20445
|
* "vertical": "Property",
|
|
19610
20446
|
* "arrangement_type": "let_to_let",
|
|
@@ -19621,9 +20457,9 @@ export interface operations {
|
|
|
19621
20457
|
* "media": []
|
|
19622
20458
|
* },
|
|
19623
20459
|
* {
|
|
19624
|
-
* "draft_name": "New Short Let Property draft • 30 Apr 2026,
|
|
19625
|
-
* "sku": "LST-PRP-SHL-
|
|
19626
|
-
* "uid": "
|
|
20460
|
+
* "draft_name": "New Short Let Property draft • 30 Apr 2026, 3:52 PM",
|
|
20461
|
+
* "sku": "LST-PRP-SHL-MOLNX8BVGHP",
|
|
20462
|
+
* "uid": "ae18bd3a-313f-444d-86c1-871d9e8fbda3",
|
|
19627
20463
|
* "listing_type": "Short Let",
|
|
19628
20464
|
* "vertical": "Property",
|
|
19629
20465
|
* "arrangement_type": "short_term_managed",
|
|
@@ -19642,11 +20478,11 @@ export interface operations {
|
|
|
19642
20478
|
* ]
|
|
19643
20479
|
*/
|
|
19644
20480
|
data?: {
|
|
19645
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
20481
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
19646
20482
|
draft_name?: string;
|
|
19647
|
-
/** @example LST-PRP-LTR-
|
|
20483
|
+
/** @example LST-PRP-LTR-MOLNX8BSBTK */
|
|
19648
20484
|
sku?: string;
|
|
19649
|
-
/** @example
|
|
20485
|
+
/** @example 1db0e4d4-a13e-4841-9c16-a3f48f7dd840 */
|
|
19650
20486
|
uid?: string;
|
|
19651
20487
|
/** @example Rent */
|
|
19652
20488
|
listing_type?: string;
|
|
@@ -19927,7 +20763,7 @@ export interface operations {
|
|
|
19927
20763
|
sku?: string;
|
|
19928
20764
|
/** @example 09 Apr 2026, 11:14 AM */
|
|
19929
20765
|
published_at?: string;
|
|
19930
|
-
/** @example
|
|
20766
|
+
/** @example 3 weeks ago */
|
|
19931
20767
|
published_since?: string;
|
|
19932
20768
|
details?: {
|
|
19933
20769
|
/** @example New Benin */
|
|
@@ -20895,7 +21731,7 @@ export interface operations {
|
|
|
20895
21731
|
content: {
|
|
20896
21732
|
"application/json": {
|
|
20897
21733
|
data?: {
|
|
20898
|
-
/** @example
|
|
21734
|
+
/** @example f2dd12cc-9722-4e5e-8eac-db0ad0b74202 */
|
|
20899
21735
|
uid?: string;
|
|
20900
21736
|
/** @example photo */
|
|
20901
21737
|
media_type?: string;
|
|
@@ -21044,11 +21880,11 @@ export interface operations {
|
|
|
21044
21880
|
content: {
|
|
21045
21881
|
"application/json": {
|
|
21046
21882
|
data?: {
|
|
21047
|
-
/** @example New For Rent Property draft • 30 Apr 2026,
|
|
21883
|
+
/** @example New For Rent Property draft • 30 Apr 2026, 3:52 PM */
|
|
21048
21884
|
draft_name?: string;
|
|
21049
|
-
/** @example LST-PRP-LTR-
|
|
21885
|
+
/** @example LST-PRP-LTR-MOLNX8E6TUH */
|
|
21050
21886
|
sku?: string;
|
|
21051
|
-
/** @example
|
|
21887
|
+
/** @example 78be0851-8bd1-41e4-9139-656030bd0026 */
|
|
21052
21888
|
uid?: string;
|
|
21053
21889
|
/** @example Rent */
|
|
21054
21890
|
listing_type?: string;
|
|
@@ -21208,7 +22044,7 @@ export interface operations {
|
|
|
21208
22044
|
content: {
|
|
21209
22045
|
"application/json": {
|
|
21210
22046
|
data?: {
|
|
21211
|
-
/** @example
|
|
22047
|
+
/** @example 0c2b8849-081d-4620-ac65-766cdb2893c1 */
|
|
21212
22048
|
uid?: string;
|
|
21213
22049
|
/** @example null */
|
|
21214
22050
|
compliances?: string | null;
|
|
@@ -21259,7 +22095,7 @@ export interface operations {
|
|
|
21259
22095
|
content: {
|
|
21260
22096
|
"application/json": {
|
|
21261
22097
|
data?: {
|
|
21262
|
-
/** @example
|
|
22098
|
+
/** @example 166 */
|
|
21263
22099
|
id?: number;
|
|
21264
22100
|
compliance?: {
|
|
21265
22101
|
/** @example 1 */
|
|
@@ -21281,7 +22117,7 @@ export interface operations {
|
|
|
21281
22117
|
reviewed_by?: number;
|
|
21282
22118
|
/** @example null */
|
|
21283
22119
|
reviewed_at?: string | null;
|
|
21284
|
-
/** @example 2026-04-
|
|
22120
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
21285
22121
|
created_at?: string;
|
|
21286
22122
|
};
|
|
21287
22123
|
};
|
|
@@ -21336,10 +22172,7 @@ export interface operations {
|
|
|
21336
22172
|
/**
|
|
21337
22173
|
* @example [
|
|
21338
22174
|
* {
|
|
21339
|
-
* "uid": "
|
|
21340
|
-
* "listing_id": 1,
|
|
21341
|
-
* "landlord_id": 2,
|
|
21342
|
-
* "tenant_id": 2,
|
|
22175
|
+
* "uid": "61311d12-29a4-47fb-bd40-26c9fbb003d2",
|
|
21343
22176
|
* "rent_amount": "4881.50",
|
|
21344
22177
|
* "deposit_amount": "2151.17",
|
|
21345
22178
|
* "state": "offer_accepted",
|
|
@@ -21348,34 +22181,25 @@ export interface operations {
|
|
|
21348
22181
|
* "is_periodic": false,
|
|
21349
22182
|
* "company_name": null,
|
|
21350
22183
|
* "company_registration_number": null,
|
|
21351
|
-
* "created_at": "2026-04-
|
|
22184
|
+
* "created_at": "2026-04-30T15:52:37.000000Z"
|
|
21352
22185
|
* },
|
|
21353
22186
|
* {
|
|
21354
|
-
* "uid": "
|
|
21355
|
-
* "listing_id": 1,
|
|
21356
|
-
* "landlord_id": 2,
|
|
21357
|
-
* "tenant_id": 2,
|
|
22187
|
+
* "uid": "01671034-7980-4f40-912c-2ada93208a57",
|
|
21358
22188
|
* "rent_amount": "3832.26",
|
|
21359
22189
|
* "deposit_amount": "1384.27",
|
|
21360
22190
|
* "state": "terminated",
|
|
21361
|
-
* "start_date": "2025-
|
|
21362
|
-
* "end_date": "2026-
|
|
22191
|
+
* "start_date": "2025-10-01T00:00:00.000000Z",
|
|
22192
|
+
* "end_date": "2026-10-01T00:00:00.000000Z",
|
|
21363
22193
|
* "is_periodic": false,
|
|
21364
22194
|
* "company_name": null,
|
|
21365
22195
|
* "company_registration_number": null,
|
|
21366
|
-
* "created_at": "2026-04-
|
|
22196
|
+
* "created_at": "2026-04-30T15:52:37.000000Z"
|
|
21367
22197
|
* }
|
|
21368
22198
|
* ]
|
|
21369
22199
|
*/
|
|
21370
22200
|
data?: {
|
|
21371
|
-
/** @example
|
|
22201
|
+
/** @example 61311d12-29a4-47fb-bd40-26c9fbb003d2 */
|
|
21372
22202
|
uid?: string;
|
|
21373
|
-
/** @example 1 */
|
|
21374
|
-
listing_id?: number;
|
|
21375
|
-
/** @example 2 */
|
|
21376
|
-
landlord_id?: number;
|
|
21377
|
-
/** @example 2 */
|
|
21378
|
-
tenant_id?: number;
|
|
21379
22203
|
/** @example 4881.50 */
|
|
21380
22204
|
rent_amount?: string;
|
|
21381
22205
|
/** @example 2151.17 */
|
|
@@ -21392,7 +22216,7 @@ export interface operations {
|
|
|
21392
22216
|
company_name?: string | null;
|
|
21393
22217
|
/** @example null */
|
|
21394
22218
|
company_registration_number?: string | null;
|
|
21395
|
-
/** @example 2026-04-
|
|
22219
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
21396
22220
|
created_at?: string;
|
|
21397
22221
|
}[];
|
|
21398
22222
|
links?: {
|
|
@@ -21479,10 +22303,7 @@ export interface operations {
|
|
|
21479
22303
|
/**
|
|
21480
22304
|
* @example [
|
|
21481
22305
|
* {
|
|
21482
|
-
* "uid": "
|
|
21483
|
-
* "listing_id": 1,
|
|
21484
|
-
* "landlord_id": 2,
|
|
21485
|
-
* "tenant_id": 2,
|
|
22306
|
+
* "uid": "ec6fbf30-fefa-418f-ab11-059e0d8b8c1d",
|
|
21486
22307
|
* "rent_amount": "4881.50",
|
|
21487
22308
|
* "deposit_amount": "2151.17",
|
|
21488
22309
|
* "state": "offer_accepted",
|
|
@@ -21491,34 +22312,25 @@ export interface operations {
|
|
|
21491
22312
|
* "is_periodic": false,
|
|
21492
22313
|
* "company_name": null,
|
|
21493
22314
|
* "company_registration_number": null,
|
|
21494
|
-
* "created_at": "2026-04-
|
|
22315
|
+
* "created_at": "2026-04-30T15:52:37.000000Z"
|
|
21495
22316
|
* },
|
|
21496
22317
|
* {
|
|
21497
|
-
* "uid": "
|
|
21498
|
-
* "listing_id": 1,
|
|
21499
|
-
* "landlord_id": 2,
|
|
21500
|
-
* "tenant_id": 2,
|
|
22318
|
+
* "uid": "ab31c477-e02c-40b1-ad3c-86628c7c9c73",
|
|
21501
22319
|
* "rent_amount": "3832.26",
|
|
21502
22320
|
* "deposit_amount": "1384.27",
|
|
21503
22321
|
* "state": "terminated",
|
|
21504
|
-
* "start_date": "2025-
|
|
21505
|
-
* "end_date": "2026-
|
|
22322
|
+
* "start_date": "2025-10-01T00:00:00.000000Z",
|
|
22323
|
+
* "end_date": "2026-10-01T00:00:00.000000Z",
|
|
21506
22324
|
* "is_periodic": false,
|
|
21507
22325
|
* "company_name": null,
|
|
21508
22326
|
* "company_registration_number": null,
|
|
21509
|
-
* "created_at": "2026-04-
|
|
22327
|
+
* "created_at": "2026-04-30T15:52:37.000000Z"
|
|
21510
22328
|
* }
|
|
21511
22329
|
* ]
|
|
21512
22330
|
*/
|
|
21513
22331
|
data?: {
|
|
21514
|
-
/** @example
|
|
22332
|
+
/** @example ec6fbf30-fefa-418f-ab11-059e0d8b8c1d */
|
|
21515
22333
|
uid?: string;
|
|
21516
|
-
/** @example 1 */
|
|
21517
|
-
listing_id?: number;
|
|
21518
|
-
/** @example 2 */
|
|
21519
|
-
landlord_id?: number;
|
|
21520
|
-
/** @example 2 */
|
|
21521
|
-
tenant_id?: number;
|
|
21522
22334
|
/** @example 4881.50 */
|
|
21523
22335
|
rent_amount?: string;
|
|
21524
22336
|
/** @example 2151.17 */
|
|
@@ -21535,7 +22347,7 @@ export interface operations {
|
|
|
21535
22347
|
company_name?: string | null;
|
|
21536
22348
|
/** @example null */
|
|
21537
22349
|
company_registration_number?: string | null;
|
|
21538
|
-
/** @example 2026-04-
|
|
22350
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
21539
22351
|
created_at?: string;
|
|
21540
22352
|
}[];
|
|
21541
22353
|
links?: {
|
|
@@ -21642,7 +22454,7 @@ export interface operations {
|
|
|
21642
22454
|
content: {
|
|
21643
22455
|
"application/json": {
|
|
21644
22456
|
data?: {
|
|
21645
|
-
/** @example
|
|
22457
|
+
/** @example 251 */
|
|
21646
22458
|
id?: number;
|
|
21647
22459
|
compliance?: {
|
|
21648
22460
|
/** @example 1 */
|
|
@@ -21662,9 +22474,9 @@ export interface operations {
|
|
|
21662
22474
|
rejection_reason?: string | null;
|
|
21663
22475
|
/** @example 1 */
|
|
21664
22476
|
reviewed_by?: number;
|
|
21665
|
-
/** @example 2026-04-
|
|
22477
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
21666
22478
|
reviewed_at?: string;
|
|
21667
|
-
/** @example 2026-04-
|
|
22479
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
21668
22480
|
created_at?: string;
|
|
21669
22481
|
};
|
|
21670
22482
|
};
|
|
@@ -21691,7 +22503,7 @@ export interface operations {
|
|
|
21691
22503
|
content: {
|
|
21692
22504
|
"application/json": {
|
|
21693
22505
|
data?: {
|
|
21694
|
-
/** @example
|
|
22506
|
+
/** @example 252 */
|
|
21695
22507
|
id?: number;
|
|
21696
22508
|
compliance?: {
|
|
21697
22509
|
/** @example 1 */
|
|
@@ -21711,9 +22523,9 @@ export interface operations {
|
|
|
21711
22523
|
rejection_reason?: string | null;
|
|
21712
22524
|
/** @example 1 */
|
|
21713
22525
|
reviewed_by?: number;
|
|
21714
|
-
/** @example 2026-04-
|
|
22526
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
21715
22527
|
reviewed_at?: string;
|
|
21716
|
-
/** @example 2026-04-
|
|
22528
|
+
/** @example 2026-04-30T15:52:37.000000Z */
|
|
21717
22529
|
created_at?: string;
|
|
21718
22530
|
};
|
|
21719
22531
|
};
|
|
@@ -22166,7 +22978,7 @@ export interface operations {
|
|
|
22166
22978
|
sku?: string;
|
|
22167
22979
|
/** @example 09 Apr 2026, 11:14 AM */
|
|
22168
22980
|
published_at?: string;
|
|
22169
|
-
/** @example
|
|
22981
|
+
/** @example 3 weeks ago */
|
|
22170
22982
|
published_since?: string;
|
|
22171
22983
|
details?: {
|
|
22172
22984
|
/** @example New Benin */
|
|
@@ -22845,37 +23657,37 @@ export interface operations {
|
|
|
22845
23657
|
/**
|
|
22846
23658
|
* @example [
|
|
22847
23659
|
* {
|
|
22848
|
-
* "uid": "
|
|
23660
|
+
* "uid": "e4216414-3f71-4afe-8b50-684913d22f83",
|
|
22849
23661
|
* "tenancy_id": 1,
|
|
22850
23662
|
* "title": "Quos velit et fugiat sunt nihil.",
|
|
22851
23663
|
* "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.",
|
|
22852
23664
|
* "status": "reported",
|
|
22853
23665
|
* "priority": "emergency",
|
|
22854
|
-
* "reported_at": "
|
|
22855
|
-
* "assigned_at": "28 Apr 2026,
|
|
23666
|
+
* "reported_at": "24 Apr 2026, 03:06 AM",
|
|
23667
|
+
* "assigned_at": "28 Apr 2026, 11:26 PM",
|
|
22856
23668
|
* "completed_at": null,
|
|
22857
|
-
* "sla_deadline": "
|
|
22858
|
-
* "created_at": "30 Apr 2026,
|
|
22859
|
-
* "updated_at": "30 Apr 2026,
|
|
23669
|
+
* "sla_deadline": "02 May 2026, 04:48 AM",
|
|
23670
|
+
* "created_at": "30 Apr 2026, 03:52 PM",
|
|
23671
|
+
* "updated_at": "30 Apr 2026, 03:52 PM"
|
|
22860
23672
|
* },
|
|
22861
23673
|
* {
|
|
22862
|
-
* "uid": "
|
|
23674
|
+
* "uid": "75ffc777-8932-4c7e-9b09-4c339595ad88",
|
|
22863
23675
|
* "tenancy_id": 1,
|
|
22864
23676
|
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
22865
23677
|
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
22866
23678
|
* "status": "completed",
|
|
22867
23679
|
* "priority": "normal",
|
|
22868
|
-
* "reported_at": "26 Apr 2026,
|
|
23680
|
+
* "reported_at": "26 Apr 2026, 03:44 PM",
|
|
22869
23681
|
* "assigned_at": null,
|
|
22870
23682
|
* "completed_at": null,
|
|
22871
|
-
* "sla_deadline": "03 May 2026,
|
|
22872
|
-
* "created_at": "30 Apr 2026,
|
|
22873
|
-
* "updated_at": "30 Apr 2026,
|
|
23683
|
+
* "sla_deadline": "03 May 2026, 12:48 PM",
|
|
23684
|
+
* "created_at": "30 Apr 2026, 03:52 PM",
|
|
23685
|
+
* "updated_at": "30 Apr 2026, 03:52 PM"
|
|
22874
23686
|
* }
|
|
22875
23687
|
* ]
|
|
22876
23688
|
*/
|
|
22877
23689
|
data?: {
|
|
22878
|
-
/** @example
|
|
23690
|
+
/** @example e4216414-3f71-4afe-8b50-684913d22f83 */
|
|
22879
23691
|
uid?: string;
|
|
22880
23692
|
/** @example 1 */
|
|
22881
23693
|
tenancy_id?: number;
|
|
@@ -22887,17 +23699,17 @@ export interface operations {
|
|
|
22887
23699
|
status?: string;
|
|
22888
23700
|
/** @example emergency */
|
|
22889
23701
|
priority?: string;
|
|
22890
|
-
/** @example
|
|
23702
|
+
/** @example 24 Apr 2026, 03:06 AM */
|
|
22891
23703
|
reported_at?: string;
|
|
22892
|
-
/** @example 28 Apr 2026,
|
|
23704
|
+
/** @example 28 Apr 2026, 11:26 PM */
|
|
22893
23705
|
assigned_at?: string;
|
|
22894
23706
|
/** @example null */
|
|
22895
23707
|
completed_at?: string | null;
|
|
22896
|
-
/** @example
|
|
23708
|
+
/** @example 02 May 2026, 04:48 AM */
|
|
22897
23709
|
sla_deadline?: string;
|
|
22898
|
-
/** @example 30 Apr 2026,
|
|
23710
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
22899
23711
|
created_at?: string;
|
|
22900
|
-
/** @example 30 Apr 2026,
|
|
23712
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
22901
23713
|
updated_at?: string;
|
|
22902
23714
|
}[];
|
|
22903
23715
|
links?: {
|
|
@@ -23013,13 +23825,13 @@ export interface operations {
|
|
|
23013
23825
|
};
|
|
23014
23826
|
} | {
|
|
23015
23827
|
data?: {
|
|
23016
|
-
/** @example
|
|
23828
|
+
/** @example a662e23c-99db-4698-80e0-ae2186532159 */
|
|
23017
23829
|
uid?: string;
|
|
23018
23830
|
/** @example image */
|
|
23019
23831
|
file_type?: string;
|
|
23020
23832
|
/** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
23021
23833
|
url?: string;
|
|
23022
|
-
/** @example 2026-04-
|
|
23834
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
23023
23835
|
created_at?: string;
|
|
23024
23836
|
};
|
|
23025
23837
|
};
|
|
@@ -23064,7 +23876,7 @@ export interface operations {
|
|
|
23064
23876
|
content: {
|
|
23065
23877
|
"application/json": {
|
|
23066
23878
|
data?: {
|
|
23067
|
-
/** @example
|
|
23879
|
+
/** @example 174 */
|
|
23068
23880
|
id?: number;
|
|
23069
23881
|
/** @example property_inquiry */
|
|
23070
23882
|
type?: string;
|
|
@@ -23080,7 +23892,7 @@ export interface operations {
|
|
|
23080
23892
|
};
|
|
23081
23893
|
/** @example null */
|
|
23082
23894
|
last_message_at?: string | null;
|
|
23083
|
-
/** @example 2026-04-
|
|
23895
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
23084
23896
|
created_at?: string;
|
|
23085
23897
|
};
|
|
23086
23898
|
};
|
|
@@ -23491,7 +24303,7 @@ export interface operations {
|
|
|
23491
24303
|
};
|
|
23492
24304
|
content: {
|
|
23493
24305
|
"application/json": {
|
|
23494
|
-
/** @example
|
|
24306
|
+
/** @example 55c279fe-c8ef-4909-b3df-ea6051eb7e81 */
|
|
23495
24307
|
id?: string;
|
|
23496
24308
|
/** @example APPOINTMENT_CREATED */
|
|
23497
24309
|
type?: string;
|
|
@@ -23503,7 +24315,7 @@ export interface operations {
|
|
|
23503
24315
|
data?: unknown[];
|
|
23504
24316
|
/** @example null */
|
|
23505
24317
|
read_at?: string | null;
|
|
23506
|
-
/** @example 2026-04-
|
|
24318
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
23507
24319
|
created_at?: string;
|
|
23508
24320
|
};
|
|
23509
24321
|
};
|
|
@@ -23609,9 +24421,9 @@ export interface operations {
|
|
|
23609
24421
|
content: {
|
|
23610
24422
|
"application/json": {
|
|
23611
24423
|
data?: {
|
|
23612
|
-
/** @example
|
|
24424
|
+
/** @example commodi */
|
|
23613
24425
|
key?: string;
|
|
23614
|
-
/** @example
|
|
24426
|
+
/** @example debitis */
|
|
23615
24427
|
name?: string;
|
|
23616
24428
|
/** @example soft */
|
|
23617
24429
|
enforcement_mode?: string;
|
|
@@ -23749,7 +24561,7 @@ export interface operations {
|
|
|
23749
24561
|
content: {
|
|
23750
24562
|
"application/json": {
|
|
23751
24563
|
data?: {
|
|
23752
|
-
/** @example
|
|
24564
|
+
/** @example 4dee73fe-dc53-483c-9037-076a69e448b8 */
|
|
23753
24565
|
uid?: string;
|
|
23754
24566
|
/** @example JH-APP-2026-089432 */
|
|
23755
24567
|
application_ref?: string;
|
|
@@ -23770,7 +24582,7 @@ export interface operations {
|
|
|
23770
24582
|
/** @example null */
|
|
23771
24583
|
rejection_reason?: string | null;
|
|
23772
24584
|
timeline?: {
|
|
23773
|
-
/** @example 2026-04-
|
|
24585
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
23774
24586
|
created_at?: string;
|
|
23775
24587
|
/** @example null */
|
|
23776
24588
|
approved_at?: string | null;
|
|
@@ -23810,7 +24622,7 @@ export interface operations {
|
|
|
23810
24622
|
*/
|
|
23811
24623
|
search?: string | null;
|
|
23812
24624
|
/**
|
|
23813
|
-
* @example
|
|
24625
|
+
* @example pending
|
|
23814
24626
|
* @enum {string|null}
|
|
23815
24627
|
*/
|
|
23816
24628
|
status?: "pending" | "approved" | "rejected" | "withdrawn" | "converted" | "cancelled" | null;
|
|
@@ -24008,7 +24820,7 @@ export interface operations {
|
|
|
24008
24820
|
};
|
|
24009
24821
|
};
|
|
24010
24822
|
};
|
|
24011
|
-
|
|
24823
|
+
fetchOneApplications: {
|
|
24012
24824
|
parameters: {
|
|
24013
24825
|
query?: never;
|
|
24014
24826
|
header?: never;
|
|
@@ -24020,42 +24832,93 @@ export interface operations {
|
|
|
24020
24832
|
};
|
|
24021
24833
|
requestBody?: never;
|
|
24022
24834
|
responses: {
|
|
24835
|
+
/** @description Retrieve one rental application owned by the authenticated tenant */
|
|
24023
24836
|
200: {
|
|
24024
24837
|
headers: {
|
|
24025
24838
|
[name: string]: unknown;
|
|
24026
24839
|
};
|
|
24027
24840
|
content: {
|
|
24028
24841
|
"application/json": {
|
|
24842
|
+
/** @example Rental application fetched successfully */
|
|
24843
|
+
message?: string;
|
|
24844
|
+
/** @example null */
|
|
24845
|
+
event?: string | null;
|
|
24029
24846
|
data?: {
|
|
24030
|
-
/** @example
|
|
24847
|
+
/** @example b1b5daf5-80a4-4ef3-9702-aedaf163369d */
|
|
24031
24848
|
uid?: string;
|
|
24032
|
-
/** @example JH-APP-2026-
|
|
24849
|
+
/** @example JH-APP-2026-000003 */
|
|
24033
24850
|
application_ref?: string;
|
|
24034
24851
|
status?: {
|
|
24035
|
-
/** @example
|
|
24852
|
+
/** @example converted */
|
|
24036
24853
|
value?: string;
|
|
24037
|
-
/** @example
|
|
24854
|
+
/** @example Converted to Tenancy */
|
|
24038
24855
|
label?: string;
|
|
24039
24856
|
};
|
|
24040
24857
|
source?: {
|
|
24041
|
-
/** @example
|
|
24858
|
+
/** @example landlord */
|
|
24042
24859
|
value?: string;
|
|
24043
|
-
/** @example
|
|
24860
|
+
/** @example Landlord */
|
|
24044
24861
|
label?: string;
|
|
24045
24862
|
};
|
|
24046
|
-
/** @example
|
|
24047
|
-
message?: string;
|
|
24863
|
+
/** @example null */
|
|
24864
|
+
message?: string | null;
|
|
24048
24865
|
/** @example null */
|
|
24049
24866
|
rejection_reason?: string | null;
|
|
24867
|
+
listing?: {
|
|
24868
|
+
/** @example 1962f047-b789-436b-b163-3c2747de807c */
|
|
24869
|
+
uid?: string;
|
|
24870
|
+
/** @example Dolore unde totam atque. */
|
|
24871
|
+
title?: string;
|
|
24872
|
+
/** @example 6 Thomas Crossroad */
|
|
24873
|
+
address?: string;
|
|
24874
|
+
/** @example long_term_rent */
|
|
24875
|
+
listing_type?: string;
|
|
24876
|
+
/** @example property */
|
|
24877
|
+
listing_vertical?: string;
|
|
24878
|
+
cover?: {
|
|
24879
|
+
/** @example 1f77f12c-66e4-4bae-8c97-48fabf1581d6 */
|
|
24880
|
+
uid?: string;
|
|
24881
|
+
/** @example photo */
|
|
24882
|
+
media_type?: string;
|
|
24883
|
+
/** @example http://justinshome-backendcore.test/storage/listings/long-term-rent-property-placeholder.png */
|
|
24884
|
+
storage_path?: string;
|
|
24885
|
+
/** @example 1 */
|
|
24886
|
+
order_index?: number;
|
|
24887
|
+
/** @example true */
|
|
24888
|
+
is_cover?: boolean;
|
|
24889
|
+
};
|
|
24890
|
+
};
|
|
24891
|
+
tenant?: {
|
|
24892
|
+
/** @example bb04ea86-8c19-4371-8680-0875855e38bf */
|
|
24893
|
+
uid?: string;
|
|
24894
|
+
/** @example Francesca Carter */
|
|
24895
|
+
name?: string;
|
|
24896
|
+
/** @example tenant10@justinshome.test */
|
|
24897
|
+
email?: string;
|
|
24898
|
+
};
|
|
24899
|
+
landlord?: {
|
|
24900
|
+
/** @example bf1a9d08-45a1-474c-b494-5e7be7b71aa8 */
|
|
24901
|
+
uid?: string;
|
|
24902
|
+
/** @example dogunfx */
|
|
24903
|
+
name?: string;
|
|
24904
|
+
/** @example landlord1@justinshome.test */
|
|
24905
|
+
email?: string;
|
|
24906
|
+
};
|
|
24907
|
+
tenancy?: {
|
|
24908
|
+
/** @example a8450b6d-4394-4e0a-9065-b17b85223ce0 */
|
|
24909
|
+
uid?: string;
|
|
24910
|
+
/** @example enquiry */
|
|
24911
|
+
state?: string;
|
|
24912
|
+
};
|
|
24050
24913
|
timeline?: {
|
|
24051
|
-
/** @example 2026-04-
|
|
24914
|
+
/** @example 2026-04-30T09:02:27.000000Z */
|
|
24052
24915
|
created_at?: string;
|
|
24053
|
-
/** @example
|
|
24054
|
-
approved_at?: string
|
|
24916
|
+
/** @example 2026-04-30T09:03:05.000000Z */
|
|
24917
|
+
approved_at?: string;
|
|
24055
24918
|
/** @example null */
|
|
24056
24919
|
rejected_at?: string | null;
|
|
24057
|
-
/** @example
|
|
24058
|
-
converted_to_tenancy_at?: string
|
|
24920
|
+
/** @example 2026-04-30T09:03:32.000000Z */
|
|
24921
|
+
converted_to_tenancy_at?: string;
|
|
24059
24922
|
};
|
|
24060
24923
|
};
|
|
24061
24924
|
};
|
|
@@ -24082,9 +24945,9 @@ export interface operations {
|
|
|
24082
24945
|
content: {
|
|
24083
24946
|
"application/json": {
|
|
24084
24947
|
data?: {
|
|
24085
|
-
/** @example
|
|
24948
|
+
/** @example 5859c5e2-e330-4c3a-a2ae-d52e8b5a8b50 */
|
|
24086
24949
|
uid?: string;
|
|
24087
|
-
/** @example JH-APP-2026-
|
|
24950
|
+
/** @example JH-APP-2026-700432 */
|
|
24088
24951
|
application_ref?: string;
|
|
24089
24952
|
status?: {
|
|
24090
24953
|
/** @example pending */
|
|
@@ -24098,12 +24961,12 @@ export interface operations {
|
|
|
24098
24961
|
/** @example Tenant */
|
|
24099
24962
|
label?: string;
|
|
24100
24963
|
};
|
|
24101
|
-
/** @example
|
|
24964
|
+
/** @example Commodi incidunt iure odit. */
|
|
24102
24965
|
message?: string;
|
|
24103
24966
|
/** @example null */
|
|
24104
24967
|
rejection_reason?: string | null;
|
|
24105
24968
|
timeline?: {
|
|
24106
|
-
/** @example 2026-04-
|
|
24969
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
24107
24970
|
created_at?: string;
|
|
24108
24971
|
/** @example null */
|
|
24109
24972
|
approved_at?: string | null;
|
|
@@ -24296,21 +25159,21 @@ export interface operations {
|
|
|
24296
25159
|
content: {
|
|
24297
25160
|
"application/json": {
|
|
24298
25161
|
data?: {
|
|
24299
|
-
/** @example
|
|
25162
|
+
/** @example 413 */
|
|
24300
25163
|
id?: number;
|
|
24301
25164
|
/** @example 1 */
|
|
24302
25165
|
rating?: number;
|
|
24303
25166
|
/** @example Nice Listing */
|
|
24304
25167
|
comment?: string;
|
|
24305
25168
|
reviewer?: {
|
|
24306
|
-
/** @example
|
|
25169
|
+
/** @example 17 */
|
|
24307
25170
|
id?: number;
|
|
24308
|
-
/** @example
|
|
25171
|
+
/** @example Hannah Ross */
|
|
24309
25172
|
name?: string;
|
|
24310
25173
|
};
|
|
24311
|
-
/** @example 30 Apr 2026,
|
|
25174
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
24312
25175
|
created_at?: string;
|
|
24313
|
-
/** @example 30 Apr 2026,
|
|
25176
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
24314
25177
|
updated_at?: string;
|
|
24315
25178
|
};
|
|
24316
25179
|
};
|
|
@@ -24354,21 +25217,21 @@ export interface operations {
|
|
|
24354
25217
|
content: {
|
|
24355
25218
|
"application/json": {
|
|
24356
25219
|
data?: {
|
|
24357
|
-
/** @example
|
|
25220
|
+
/** @example 414 */
|
|
24358
25221
|
id?: number;
|
|
24359
25222
|
/** @example 1 */
|
|
24360
25223
|
rating?: number;
|
|
24361
25224
|
/** @example Nice Listing */
|
|
24362
25225
|
comment?: string;
|
|
24363
25226
|
reviewer?: {
|
|
24364
|
-
/** @example
|
|
25227
|
+
/** @example 21 */
|
|
24365
25228
|
id?: number;
|
|
24366
|
-
/** @example
|
|
25229
|
+
/** @example Isla Simpson */
|
|
24367
25230
|
name?: string;
|
|
24368
25231
|
};
|
|
24369
|
-
/** @example 30 Apr 2026,
|
|
25232
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
24370
25233
|
created_at?: string;
|
|
24371
|
-
/** @example 30 Apr 2026,
|
|
25234
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
24372
25235
|
updated_at?: string;
|
|
24373
25236
|
};
|
|
24374
25237
|
};
|
|
@@ -24410,21 +25273,21 @@ export interface operations {
|
|
|
24410
25273
|
content: {
|
|
24411
25274
|
"application/json": {
|
|
24412
25275
|
data?: {
|
|
24413
|
-
/** @example
|
|
25276
|
+
/** @example 415 */
|
|
24414
25277
|
id?: number;
|
|
24415
25278
|
/** @example 1 */
|
|
24416
25279
|
rating?: number;
|
|
24417
25280
|
/** @example Nice Listing */
|
|
24418
25281
|
comment?: string;
|
|
24419
25282
|
reviewer?: {
|
|
24420
|
-
/** @example
|
|
25283
|
+
/** @example 13 */
|
|
24421
25284
|
id?: number;
|
|
24422
|
-
/** @example
|
|
25285
|
+
/** @example Matthew Campbell */
|
|
24423
25286
|
name?: string;
|
|
24424
25287
|
};
|
|
24425
|
-
/** @example 30 Apr 2026,
|
|
25288
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
24426
25289
|
created_at?: string;
|
|
24427
|
-
/** @example 30 Apr 2026,
|
|
25290
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
24428
25291
|
updated_at?: string;
|
|
24429
25292
|
};
|
|
24430
25293
|
};
|
|
@@ -24451,21 +25314,21 @@ export interface operations {
|
|
|
24451
25314
|
content: {
|
|
24452
25315
|
"application/json": {
|
|
24453
25316
|
data?: {
|
|
24454
|
-
/** @example
|
|
25317
|
+
/** @example 416 */
|
|
24455
25318
|
id?: number;
|
|
24456
25319
|
/** @example 1 */
|
|
24457
25320
|
rating?: number;
|
|
24458
25321
|
/** @example Nice Listing */
|
|
24459
25322
|
comment?: string;
|
|
24460
25323
|
reviewer?: {
|
|
24461
|
-
/** @example
|
|
25324
|
+
/** @example 4 */
|
|
24462
25325
|
id?: number;
|
|
24463
|
-
/** @example
|
|
25326
|
+
/** @example Lola Holmes */
|
|
24464
25327
|
name?: string;
|
|
24465
25328
|
};
|
|
24466
|
-
/** @example 30 Apr 2026,
|
|
25329
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
24467
25330
|
created_at?: string;
|
|
24468
|
-
/** @example 30 Apr 2026,
|
|
25331
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
24469
25332
|
updated_at?: string;
|
|
24470
25333
|
};
|
|
24471
25334
|
};
|
|
@@ -24492,14 +25355,8 @@ export interface operations {
|
|
|
24492
25355
|
content: {
|
|
24493
25356
|
"application/json": {
|
|
24494
25357
|
data?: {
|
|
24495
|
-
/** @example
|
|
25358
|
+
/** @example 1b245f9c-1361-476b-ac1e-5f7d597000f4 */
|
|
24496
25359
|
uid?: string;
|
|
24497
|
-
/** @example 1 */
|
|
24498
|
-
listing_id?: number;
|
|
24499
|
-
/** @example 2 */
|
|
24500
|
-
landlord_id?: number;
|
|
24501
|
-
/** @example 2 */
|
|
24502
|
-
tenant_id?: number;
|
|
24503
25360
|
/** @example 4881.50 */
|
|
24504
25361
|
rent_amount?: string;
|
|
24505
25362
|
/** @example 2151.17 */
|
|
@@ -24516,7 +25373,7 @@ export interface operations {
|
|
|
24516
25373
|
company_name?: string | null;
|
|
24517
25374
|
/** @example null */
|
|
24518
25375
|
company_registration_number?: string | null;
|
|
24519
|
-
/** @example 2026-04-
|
|
25376
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
24520
25377
|
created_at?: string;
|
|
24521
25378
|
/** @example [] */
|
|
24522
25379
|
compliances?: unknown[];
|
|
@@ -24593,23 +25450,17 @@ export interface operations {
|
|
|
24593
25450
|
content: {
|
|
24594
25451
|
"application/json": {
|
|
24595
25452
|
data?: {
|
|
24596
|
-
/** @example
|
|
25453
|
+
/** @example d6453c0e-4811-4cdd-9050-1d1cdde7cb53 */
|
|
24597
25454
|
uid?: string;
|
|
24598
|
-
/** @example 1 */
|
|
24599
|
-
listing_id?: number;
|
|
24600
|
-
/** @example 2 */
|
|
24601
|
-
landlord_id?: number;
|
|
24602
|
-
/** @example 2 */
|
|
24603
|
-
tenant_id?: number;
|
|
24604
25455
|
/** @example 4978.97 */
|
|
24605
25456
|
rent_amount?: string;
|
|
24606
25457
|
/** @example 1598.98 */
|
|
24607
25458
|
deposit_amount?: string;
|
|
24608
25459
|
/** @example active */
|
|
24609
25460
|
state?: string;
|
|
24610
|
-
/** @example 2025-10-
|
|
25461
|
+
/** @example 2025-10-16T00:00:00.000000Z */
|
|
24611
25462
|
start_date?: string;
|
|
24612
|
-
/** @example 2026-10-
|
|
25463
|
+
/** @example 2026-10-16T00:00:00.000000Z */
|
|
24613
25464
|
end_date?: string;
|
|
24614
25465
|
/** @example true */
|
|
24615
25466
|
is_periodic?: boolean;
|
|
@@ -24617,7 +25468,7 @@ export interface operations {
|
|
|
24617
25468
|
company_name?: string | null;
|
|
24618
25469
|
/** @example null */
|
|
24619
25470
|
company_registration_number?: string | null;
|
|
24620
|
-
/** @example 2026-04-
|
|
25471
|
+
/** @example 2026-04-30T15:52:38.000000Z */
|
|
24621
25472
|
created_at?: string;
|
|
24622
25473
|
};
|
|
24623
25474
|
};
|
|
@@ -24911,7 +25762,7 @@ export interface operations {
|
|
|
24911
25762
|
* "changed_by_user_id": 3,
|
|
24912
25763
|
* "changed_by_name": "Teagan King",
|
|
24913
25764
|
* "comment": "Qui commodi incidunt iure odit.",
|
|
24914
|
-
* "created_at": "2025-12-
|
|
25765
|
+
* "created_at": "2025-12-23T02:39:37.000000Z"
|
|
24915
25766
|
* },
|
|
24916
25767
|
* {
|
|
24917
25768
|
* "from_state": "pre_move_in_ready",
|
|
@@ -24919,7 +25770,7 @@ export interface operations {
|
|
|
24919
25770
|
* "changed_by_user_id": 3,
|
|
24920
25771
|
* "changed_by_name": "Teagan King",
|
|
24921
25772
|
* "comment": null,
|
|
24922
|
-
* "created_at": "2025-11-
|
|
25773
|
+
* "created_at": "2025-11-08T10:35:17.000000Z"
|
|
24923
25774
|
* }
|
|
24924
25775
|
* ]
|
|
24925
25776
|
*/
|
|
@@ -24934,7 +25785,7 @@ export interface operations {
|
|
|
24934
25785
|
changed_by_name?: string;
|
|
24935
25786
|
/** @example Qui commodi incidunt iure odit. */
|
|
24936
25787
|
comment?: string;
|
|
24937
|
-
/** @example 2025-12-
|
|
25788
|
+
/** @example 2025-12-23T02:39:37.000000Z */
|
|
24938
25789
|
created_at?: string;
|
|
24939
25790
|
}[];
|
|
24940
25791
|
};
|
|
@@ -25319,7 +26170,7 @@ export interface operations {
|
|
|
25319
26170
|
content: {
|
|
25320
26171
|
"application/json": {
|
|
25321
26172
|
data?: {
|
|
25322
|
-
/** @example
|
|
26173
|
+
/** @example a9368e25-fe23-4d7b-9036-4498f2b387af */
|
|
25323
26174
|
uid?: string;
|
|
25324
26175
|
/** @example Ms. Audra Crooks II */
|
|
25325
26176
|
username?: string;
|
|
@@ -25349,7 +26200,7 @@ export interface operations {
|
|
|
25349
26200
|
timezone?: string;
|
|
25350
26201
|
/** @example Customer */
|
|
25351
26202
|
user_type?: string;
|
|
25352
|
-
/** @example 30 Apr 2026,
|
|
26203
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
25353
26204
|
created?: string;
|
|
25354
26205
|
/** @example 0 seconds ago */
|
|
25355
26206
|
email_verified_at?: string;
|
|
@@ -25462,7 +26313,9 @@ export interface operations {
|
|
|
25462
26313
|
* "details": {
|
|
25463
26314
|
* "address": "24 Windsor Court, London, SW1",
|
|
25464
26315
|
* "title": "24 Windsor Court",
|
|
25465
|
-
* "type": "Rent"
|
|
26316
|
+
* "type": "Rent",
|
|
26317
|
+
* "check_in_time": "02:00 PM",
|
|
26318
|
+
* "check_out_time": "11:00 AM"
|
|
25466
26319
|
* }
|
|
25467
26320
|
* },
|
|
25468
26321
|
* "guest": {
|
|
@@ -25477,6 +26330,8 @@ export interface operations {
|
|
|
25477
26330
|
* "email": "alice@example.com",
|
|
25478
26331
|
* "avatar_path": null
|
|
25479
26332
|
* },
|
|
26333
|
+
* "start_date": "10 Jun 2026",
|
|
26334
|
+
* "end_date": "13 Jun 2026",
|
|
25480
26335
|
* "nights": 3,
|
|
25481
26336
|
* "status": "pending",
|
|
25482
26337
|
* "total_price": "450.00"
|
|
@@ -25510,6 +26365,10 @@ export interface operations {
|
|
|
25510
26365
|
title?: string;
|
|
25511
26366
|
/** @example Rent */
|
|
25512
26367
|
type?: string;
|
|
26368
|
+
/** @example 02:00 PM */
|
|
26369
|
+
check_in_time?: string;
|
|
26370
|
+
/** @example 11:00 AM */
|
|
26371
|
+
check_out_time?: string;
|
|
25513
26372
|
};
|
|
25514
26373
|
};
|
|
25515
26374
|
guest?: {
|
|
@@ -25532,6 +26391,10 @@ export interface operations {
|
|
|
25532
26391
|
/** @example null */
|
|
25533
26392
|
avatar_path?: string | null;
|
|
25534
26393
|
};
|
|
26394
|
+
/** @example 10 Jun 2026 */
|
|
26395
|
+
start_date?: string;
|
|
26396
|
+
/** @example 13 Jun 2026 */
|
|
26397
|
+
end_date?: string;
|
|
25535
26398
|
/** @example 3 */
|
|
25536
26399
|
nights?: number;
|
|
25537
26400
|
/** @example pending */
|
|
@@ -25612,7 +26475,7 @@ export interface operations {
|
|
|
25612
26475
|
content: {
|
|
25613
26476
|
"application/json": {
|
|
25614
26477
|
data?: {
|
|
25615
|
-
/** @example
|
|
26478
|
+
/** @example ba0af153-fff2-405d-9031-b1d563da141f */
|
|
25616
26479
|
uid?: string;
|
|
25617
26480
|
/** @example Morgan Hirthe */
|
|
25618
26481
|
username?: string;
|
|
@@ -25642,7 +26505,7 @@ export interface operations {
|
|
|
25642
26505
|
timezone?: string;
|
|
25643
26506
|
/** @example Customer */
|
|
25644
26507
|
user_type?: string;
|
|
25645
|
-
/** @example 30 Apr 2026,
|
|
26508
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
25646
26509
|
created?: string;
|
|
25647
26510
|
/** @example 0 seconds ago */
|
|
25648
26511
|
email_verified_at?: string;
|
|
@@ -25714,7 +26577,7 @@ export interface operations {
|
|
|
25714
26577
|
content: {
|
|
25715
26578
|
"application/json": {
|
|
25716
26579
|
data?: {
|
|
25717
|
-
/** @example
|
|
26580
|
+
/** @example 4bac0f3b-4482-4005-8c79-7ab6fce5f399 */
|
|
25718
26581
|
uid?: string;
|
|
25719
26582
|
/** @example Ms. Audra Crooks II */
|
|
25720
26583
|
username?: string;
|
|
@@ -25744,7 +26607,7 @@ export interface operations {
|
|
|
25744
26607
|
timezone?: string;
|
|
25745
26608
|
/** @example Customer */
|
|
25746
26609
|
user_type?: string;
|
|
25747
|
-
/** @example 30 Apr 2026,
|
|
26610
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
25748
26611
|
created?: string;
|
|
25749
26612
|
/** @example 0 seconds ago */
|
|
25750
26613
|
email_verified_at?: string;
|
|
@@ -25984,7 +26847,7 @@ export interface operations {
|
|
|
25984
26847
|
completed_layers?: number;
|
|
25985
26848
|
/** @example 4 */
|
|
25986
26849
|
pending_layers?: number;
|
|
25987
|
-
/** @example 30 Apr 2026,
|
|
26850
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
25988
26851
|
last_calculated_at?: string;
|
|
25989
26852
|
};
|
|
25990
26853
|
};
|
|
@@ -26032,7 +26895,7 @@ export interface operations {
|
|
|
26032
26895
|
completed_layers?: number;
|
|
26033
26896
|
/** @example 4 */
|
|
26034
26897
|
pending_layers?: number;
|
|
26035
|
-
/** @example 30 Apr 2026,
|
|
26898
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
26036
26899
|
last_calculated_at?: string;
|
|
26037
26900
|
};
|
|
26038
26901
|
};
|
|
@@ -26066,14 +26929,14 @@ export interface operations {
|
|
|
26066
26929
|
content: {
|
|
26067
26930
|
"application/json": {
|
|
26068
26931
|
data?: {
|
|
26069
|
-
/** @example
|
|
26932
|
+
/** @example 4d7dc846-ea8d-49e3-9e81-efe9aee9724f */
|
|
26070
26933
|
wishlist_uid?: string;
|
|
26071
26934
|
listing?: {
|
|
26072
|
-
/** @example New For Sale Used Item draft • 30 Apr 2026,
|
|
26935
|
+
/** @example New For Sale Used Item draft • 30 Apr 2026, 3:52 PM */
|
|
26073
26936
|
draft_name?: string;
|
|
26074
|
-
/** @example LST-UIT-SAL-
|
|
26937
|
+
/** @example LST-UIT-SAL-MOLNX9BAUZP */
|
|
26075
26938
|
sku?: string;
|
|
26076
|
-
/** @example
|
|
26939
|
+
/** @example 9b6aeea1-b634-454b-9f8f-82935a4b7e1c */
|
|
26077
26940
|
uid?: string;
|
|
26078
26941
|
/** @example Sale */
|
|
26079
26942
|
listing_type?: string;
|
|
@@ -26460,7 +27323,7 @@ export interface operations {
|
|
|
26460
27323
|
completed_layers?: number;
|
|
26461
27324
|
/** @example 4 */
|
|
26462
27325
|
pending_layers?: number;
|
|
26463
|
-
/** @example 30 Apr 2026,
|
|
27326
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
26464
27327
|
last_calculated_at?: string;
|
|
26465
27328
|
};
|
|
26466
27329
|
};
|
|
@@ -26702,7 +27565,7 @@ export interface operations {
|
|
|
26702
27565
|
completed_layers?: number;
|
|
26703
27566
|
/** @example 4 */
|
|
26704
27567
|
pending_layers?: number;
|
|
26705
|
-
/** @example 30 Apr 2026,
|
|
27568
|
+
/** @example 30 Apr 2026, 03:52 PM */
|
|
26706
27569
|
last_calculated_at?: string;
|
|
26707
27570
|
};
|
|
26708
27571
|
};
|