@justins-home/types 1.0.0 → 1.1.0
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/dist/index.d.mts +361 -0
- package/dist/index.d.ts +361 -0
- package/dist/index.js +1 -0
- package/generated/api-types.ts +830 -365
- package/package.json +27 -5
- package/.turbo/turbo-build.log +0 -14
- package/CHANGELOG.md +0 -17
- package/src/api.types.ts +0 -33
- package/src/common.types.ts +0 -37
- package/src/compliance.types.ts +0 -93
- package/src/feature.types.ts +0 -38
- package/src/index.ts +0 -20
- package/src/inspection.types.ts +0 -37
- package/src/listing.types.ts +0 -65
- package/src/maintenance.types.ts +0 -59
- package/src/messaging.types.ts +0 -36
- package/src/notification.types.ts +0 -15
- package/src/plan.types.ts +0 -43
- package/src/review.types.ts +0 -16
- package/src/tenancy.types.ts +0 -43
- package/src/user.types.ts +0 -17
- package/src/verification.types.ts +0 -65
- package/src/wishlist.types.ts +0 -7
package/generated/api-types.ts
CHANGED
|
@@ -1551,6 +1551,95 @@ export interface paths {
|
|
|
1551
1551
|
patch?: never;
|
|
1552
1552
|
trace?: never;
|
|
1553
1553
|
};
|
|
1554
|
+
"/api/v1/public/booking/create": {
|
|
1555
|
+
parameters: {
|
|
1556
|
+
query?: never;
|
|
1557
|
+
header?: never;
|
|
1558
|
+
path?: never;
|
|
1559
|
+
cookie?: never;
|
|
1560
|
+
};
|
|
1561
|
+
get?: never;
|
|
1562
|
+
put?: never;
|
|
1563
|
+
/**
|
|
1564
|
+
* createBooking
|
|
1565
|
+
* @description Create a new booking request for a short-let listing.
|
|
1566
|
+
*/
|
|
1567
|
+
post: operations["createBooking"];
|
|
1568
|
+
delete?: never;
|
|
1569
|
+
options?: never;
|
|
1570
|
+
head?: never;
|
|
1571
|
+
patch?: never;
|
|
1572
|
+
trace?: never;
|
|
1573
|
+
};
|
|
1574
|
+
"/api/v1/public/booking/{booking_id}/confirm": {
|
|
1575
|
+
parameters: {
|
|
1576
|
+
query?: never;
|
|
1577
|
+
header?: never;
|
|
1578
|
+
path: {
|
|
1579
|
+
/** @description The ID of the booking. */
|
|
1580
|
+
booking_id: number;
|
|
1581
|
+
};
|
|
1582
|
+
cookie?: never;
|
|
1583
|
+
};
|
|
1584
|
+
get?: never;
|
|
1585
|
+
put?: never;
|
|
1586
|
+
/**
|
|
1587
|
+
* confirmBooking
|
|
1588
|
+
* @description Confirm a pending booking.
|
|
1589
|
+
*/
|
|
1590
|
+
post: operations["confirmBooking"];
|
|
1591
|
+
delete?: never;
|
|
1592
|
+
options?: never;
|
|
1593
|
+
head?: never;
|
|
1594
|
+
patch?: never;
|
|
1595
|
+
trace?: never;
|
|
1596
|
+
};
|
|
1597
|
+
"/api/v1/public/booking/{booking_id}/cancel": {
|
|
1598
|
+
parameters: {
|
|
1599
|
+
query?: never;
|
|
1600
|
+
header?: never;
|
|
1601
|
+
path: {
|
|
1602
|
+
/** @description The ID of the booking. */
|
|
1603
|
+
booking_id: number;
|
|
1604
|
+
};
|
|
1605
|
+
cookie?: never;
|
|
1606
|
+
};
|
|
1607
|
+
get?: never;
|
|
1608
|
+
put?: never;
|
|
1609
|
+
/**
|
|
1610
|
+
* cancelBooking
|
|
1611
|
+
* @description Cancel a booking.
|
|
1612
|
+
*/
|
|
1613
|
+
post: operations["cancelBooking"];
|
|
1614
|
+
delete?: never;
|
|
1615
|
+
options?: never;
|
|
1616
|
+
head?: never;
|
|
1617
|
+
patch?: never;
|
|
1618
|
+
trace?: never;
|
|
1619
|
+
};
|
|
1620
|
+
"/api/v1/public/booking/fetch-one/{booking_id}": {
|
|
1621
|
+
parameters: {
|
|
1622
|
+
query?: never;
|
|
1623
|
+
header?: never;
|
|
1624
|
+
path: {
|
|
1625
|
+
/** @description The ID of the booking. */
|
|
1626
|
+
booking_id: string;
|
|
1627
|
+
};
|
|
1628
|
+
cookie?: never;
|
|
1629
|
+
};
|
|
1630
|
+
/**
|
|
1631
|
+
* Get booking
|
|
1632
|
+
* @description Retrieve booking details.
|
|
1633
|
+
*/
|
|
1634
|
+
get: operations["getBooking"];
|
|
1635
|
+
put?: never;
|
|
1636
|
+
post?: never;
|
|
1637
|
+
delete?: never;
|
|
1638
|
+
options?: never;
|
|
1639
|
+
head?: never;
|
|
1640
|
+
patch?: never;
|
|
1641
|
+
trace?: never;
|
|
1642
|
+
};
|
|
1554
1643
|
"/api/v1/portal/agent/test": {
|
|
1555
1644
|
parameters: {
|
|
1556
1645
|
query?: never;
|
|
@@ -1854,6 +1943,26 @@ export interface paths {
|
|
|
1854
1943
|
patch?: never;
|
|
1855
1944
|
trace?: never;
|
|
1856
1945
|
};
|
|
1946
|
+
"/api/v1/portal/landlord/login": {
|
|
1947
|
+
parameters: {
|
|
1948
|
+
query?: never;
|
|
1949
|
+
header?: never;
|
|
1950
|
+
path?: never;
|
|
1951
|
+
cookie?: never;
|
|
1952
|
+
};
|
|
1953
|
+
get?: never;
|
|
1954
|
+
put?: never;
|
|
1955
|
+
/**
|
|
1956
|
+
* basicLoginLandlord
|
|
1957
|
+
* @description Authenticate landlord user with basic strategy (email, password) and return an access token.
|
|
1958
|
+
*/
|
|
1959
|
+
post: operations["basicLoginLandlord"];
|
|
1960
|
+
delete?: never;
|
|
1961
|
+
options?: never;
|
|
1962
|
+
head?: never;
|
|
1963
|
+
patch?: never;
|
|
1964
|
+
trace?: never;
|
|
1965
|
+
};
|
|
1857
1966
|
"/api/v1/portal/landlord/listing": {
|
|
1858
1967
|
parameters: {
|
|
1859
1968
|
query?: never;
|
|
@@ -2006,6 +2115,29 @@ export interface paths {
|
|
|
2006
2115
|
patch?: never;
|
|
2007
2116
|
trace?: never;
|
|
2008
2117
|
};
|
|
2118
|
+
"/api/v1/portal/landlord/listing/{listing_uid}/shortlet-details": {
|
|
2119
|
+
parameters: {
|
|
2120
|
+
query?: never;
|
|
2121
|
+
header?: never;
|
|
2122
|
+
path: {
|
|
2123
|
+
/** @description The UID of the listing. */
|
|
2124
|
+
listing_uid: string;
|
|
2125
|
+
};
|
|
2126
|
+
cookie?: never;
|
|
2127
|
+
};
|
|
2128
|
+
get?: never;
|
|
2129
|
+
put?: never;
|
|
2130
|
+
/**
|
|
2131
|
+
* saveShortLetDetails
|
|
2132
|
+
* @description Save or update short details for a property listing.
|
|
2133
|
+
*/
|
|
2134
|
+
post: operations["saveShortLetDetails"];
|
|
2135
|
+
delete?: never;
|
|
2136
|
+
options?: never;
|
|
2137
|
+
head?: never;
|
|
2138
|
+
patch?: never;
|
|
2139
|
+
trace?: never;
|
|
2140
|
+
};
|
|
2009
2141
|
"/api/v1/portal/landlord/listing/{listing_uid}/features": {
|
|
2010
2142
|
parameters: {
|
|
2011
2143
|
query?: never;
|
|
@@ -3331,7 +3463,7 @@ export interface operations {
|
|
|
3331
3463
|
status?: string | null;
|
|
3332
3464
|
/** @example null */
|
|
3333
3465
|
user_mode?: string | null;
|
|
3334
|
-
/** @example 2026-03-
|
|
3466
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
3335
3467
|
created_at?: string;
|
|
3336
3468
|
/** @example null */
|
|
3337
3469
|
role?: string | null;
|
|
@@ -3359,7 +3491,7 @@ export interface operations {
|
|
|
3359
3491
|
/**
|
|
3360
3492
|
* @example [
|
|
3361
3493
|
* {
|
|
3362
|
-
* "uid": "
|
|
3494
|
+
* "uid": "bf2fdc86-75c5-41cf-a33e-7a9d831b3814",
|
|
3363
3495
|
* "listing_type": "rent",
|
|
3364
3496
|
* "vertical": "property",
|
|
3365
3497
|
* "price": null,
|
|
@@ -3376,7 +3508,7 @@ export interface operations {
|
|
|
3376
3508
|
* "media": []
|
|
3377
3509
|
* },
|
|
3378
3510
|
* {
|
|
3379
|
-
* "uid": "
|
|
3511
|
+
* "uid": "9d5a277a-c77a-4d75-8f9b-090f4bf3f854",
|
|
3380
3512
|
* "listing_type": "rent",
|
|
3381
3513
|
* "vertical": "property",
|
|
3382
3514
|
* "price": null,
|
|
@@ -3395,7 +3527,7 @@ export interface operations {
|
|
|
3395
3527
|
* ]
|
|
3396
3528
|
*/
|
|
3397
3529
|
data?: {
|
|
3398
|
-
/** @example
|
|
3530
|
+
/** @example bf2fdc86-75c5-41cf-a33e-7a9d831b3814 */
|
|
3399
3531
|
uid?: string;
|
|
3400
3532
|
/** @example rent */
|
|
3401
3533
|
listing_type?: string;
|
|
@@ -3506,7 +3638,7 @@ export interface operations {
|
|
|
3506
3638
|
content: {
|
|
3507
3639
|
"application/json": {
|
|
3508
3640
|
data?: {
|
|
3509
|
-
/** @example
|
|
3641
|
+
/** @example a81f6190-9df6-4597-b168-8cdb3007b7ed */
|
|
3510
3642
|
uid?: string;
|
|
3511
3643
|
/** @example rent */
|
|
3512
3644
|
listing_type?: string;
|
|
@@ -3569,7 +3701,7 @@ export interface operations {
|
|
|
3569
3701
|
content: {
|
|
3570
3702
|
"application/json": {
|
|
3571
3703
|
data?: {
|
|
3572
|
-
/** @example
|
|
3704
|
+
/** @example 5302733a-d4af-47ad-9e45-68c678e6a37d */
|
|
3573
3705
|
uid?: string;
|
|
3574
3706
|
/** @example rent */
|
|
3575
3707
|
listing_type?: string;
|
|
@@ -3622,7 +3754,7 @@ export interface operations {
|
|
|
3622
3754
|
content: {
|
|
3623
3755
|
"application/json": {
|
|
3624
3756
|
data?: {
|
|
3625
|
-
/** @example
|
|
3757
|
+
/** @example d60691e0-6891-4f46-9e65-2924a1b4fa6c */
|
|
3626
3758
|
uid?: string;
|
|
3627
3759
|
/** @example rent */
|
|
3628
3760
|
listing_type?: string;
|
|
@@ -3675,7 +3807,7 @@ export interface operations {
|
|
|
3675
3807
|
content: {
|
|
3676
3808
|
"application/json": {
|
|
3677
3809
|
data?: {
|
|
3678
|
-
/** @example
|
|
3810
|
+
/** @example f25fd0d0-8a18-460f-8aa2-ac555cdcf4d8 */
|
|
3679
3811
|
uid?: string;
|
|
3680
3812
|
/** @example rent */
|
|
3681
3813
|
listing_type?: string;
|
|
@@ -3770,7 +3902,7 @@ export interface operations {
|
|
|
3770
3902
|
content: {
|
|
3771
3903
|
"application/json": {
|
|
3772
3904
|
data?: {
|
|
3773
|
-
/** @example
|
|
3905
|
+
/** @example 187 */
|
|
3774
3906
|
id?: number;
|
|
3775
3907
|
/** @example 1 */
|
|
3776
3908
|
category_id?: number;
|
|
@@ -3844,7 +3976,7 @@ export interface operations {
|
|
|
3844
3976
|
content: {
|
|
3845
3977
|
"application/json": {
|
|
3846
3978
|
data?: {
|
|
3847
|
-
/** @example
|
|
3979
|
+
/** @example 188 */
|
|
3848
3980
|
id?: number;
|
|
3849
3981
|
/** @example 1 */
|
|
3850
3982
|
category_id?: number;
|
|
@@ -3883,7 +4015,7 @@ export interface operations {
|
|
|
3883
4015
|
content: {
|
|
3884
4016
|
"application/json": {
|
|
3885
4017
|
data?: {
|
|
3886
|
-
/** @example
|
|
4018
|
+
/** @example 189 */
|
|
3887
4019
|
id?: number;
|
|
3888
4020
|
/** @example 1 */
|
|
3889
4021
|
category_id?: number;
|
|
@@ -3921,14 +4053,14 @@ export interface operations {
|
|
|
3921
4053
|
/**
|
|
3922
4054
|
* @example [
|
|
3923
4055
|
* {
|
|
3924
|
-
* "id":
|
|
4056
|
+
* "id": 240,
|
|
3925
4057
|
* "name": "Exterior",
|
|
3926
4058
|
* "description": "For Exterior categories",
|
|
3927
4059
|
* "display_order": 1,
|
|
3928
4060
|
* "is_active": true
|
|
3929
4061
|
* },
|
|
3930
4062
|
* {
|
|
3931
|
-
* "id":
|
|
4063
|
+
* "id": 241,
|
|
3932
4064
|
* "name": "Exterior",
|
|
3933
4065
|
* "description": "For Exterior categories",
|
|
3934
4066
|
* "display_order": 1,
|
|
@@ -3937,7 +4069,7 @@ export interface operations {
|
|
|
3937
4069
|
* ]
|
|
3938
4070
|
*/
|
|
3939
4071
|
data?: {
|
|
3940
|
-
/** @example
|
|
4072
|
+
/** @example 240 */
|
|
3941
4073
|
id?: number;
|
|
3942
4074
|
/** @example Exterior */
|
|
3943
4075
|
name?: string;
|
|
@@ -3989,7 +4121,7 @@ export interface operations {
|
|
|
3989
4121
|
content: {
|
|
3990
4122
|
"application/json": {
|
|
3991
4123
|
data?: {
|
|
3992
|
-
/** @example
|
|
4124
|
+
/** @example 242 */
|
|
3993
4125
|
id?: number;
|
|
3994
4126
|
/** @example Exterior */
|
|
3995
4127
|
name?: string;
|
|
@@ -4044,7 +4176,7 @@ export interface operations {
|
|
|
4044
4176
|
content: {
|
|
4045
4177
|
"application/json": {
|
|
4046
4178
|
data?: {
|
|
4047
|
-
/** @example
|
|
4179
|
+
/** @example 243 */
|
|
4048
4180
|
id?: number;
|
|
4049
4181
|
/** @example Exterior */
|
|
4050
4182
|
name?: string;
|
|
@@ -4079,7 +4211,7 @@ export interface operations {
|
|
|
4079
4211
|
content: {
|
|
4080
4212
|
"application/json": {
|
|
4081
4213
|
data?: {
|
|
4082
|
-
/** @example
|
|
4214
|
+
/** @example 244 */
|
|
4083
4215
|
id?: number;
|
|
4084
4216
|
/** @example Exterior */
|
|
4085
4217
|
name?: string;
|
|
@@ -4113,31 +4245,31 @@ export interface operations {
|
|
|
4113
4245
|
/**
|
|
4114
4246
|
* @example [
|
|
4115
4247
|
* {
|
|
4116
|
-
* "id":
|
|
4248
|
+
* "id": 186,
|
|
4117
4249
|
* "key": "email_fa_1",
|
|
4118
4250
|
* "name": "Ramiro Okuneva",
|
|
4119
4251
|
* "description": "Et fugiat sunt nihil accusantium harum.",
|
|
4120
4252
|
* "requires_review": true,
|
|
4121
4253
|
* "metadata_schema": [],
|
|
4122
4254
|
* "is_active": true,
|
|
4123
|
-
* "created_at": "2026-03-
|
|
4124
|
-
* "updated_at": "2026-03-
|
|
4255
|
+
* "created_at": "2026-03-14T21:11:49.000000Z",
|
|
4256
|
+
* "updated_at": "2026-03-14T21:11:49.000000Z"
|
|
4125
4257
|
* },
|
|
4126
4258
|
* {
|
|
4127
|
-
* "id":
|
|
4259
|
+
* "id": 187,
|
|
4128
4260
|
* "key": "email_fa_4",
|
|
4129
4261
|
* "name": "Vesta Schuster PhD",
|
|
4130
4262
|
* "description": "Perspiciatis quo omnis nostrum aut adipisci quidem nostrum qui commodi incidunt iure.",
|
|
4131
4263
|
* "requires_review": true,
|
|
4132
4264
|
* "metadata_schema": [],
|
|
4133
4265
|
* "is_active": true,
|
|
4134
|
-
* "created_at": "2026-03-
|
|
4135
|
-
* "updated_at": "2026-03-
|
|
4266
|
+
* "created_at": "2026-03-14T21:11:49.000000Z",
|
|
4267
|
+
* "updated_at": "2026-03-14T21:11:49.000000Z"
|
|
4136
4268
|
* }
|
|
4137
4269
|
* ]
|
|
4138
4270
|
*/
|
|
4139
4271
|
data?: {
|
|
4140
|
-
/** @example
|
|
4272
|
+
/** @example 186 */
|
|
4141
4273
|
id?: number;
|
|
4142
4274
|
/** @example email_fa_1 */
|
|
4143
4275
|
key?: string;
|
|
@@ -4151,9 +4283,9 @@ export interface operations {
|
|
|
4151
4283
|
metadata_schema?: unknown[];
|
|
4152
4284
|
/** @example true */
|
|
4153
4285
|
is_active?: boolean;
|
|
4154
|
-
/** @example 2026-03-
|
|
4286
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4155
4287
|
created_at?: string;
|
|
4156
|
-
/** @example 2026-03-
|
|
4288
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4157
4289
|
updated_at?: string;
|
|
4158
4290
|
}[];
|
|
4159
4291
|
};
|
|
@@ -4215,7 +4347,7 @@ export interface operations {
|
|
|
4215
4347
|
content: {
|
|
4216
4348
|
"application/json": {
|
|
4217
4349
|
data?: {
|
|
4218
|
-
/** @example
|
|
4350
|
+
/** @example 188 */
|
|
4219
4351
|
id?: number;
|
|
4220
4352
|
/** @example email_fa_9 */
|
|
4221
4353
|
key?: string;
|
|
@@ -4229,9 +4361,9 @@ export interface operations {
|
|
|
4229
4361
|
metadata_schema?: unknown[];
|
|
4230
4362
|
/** @example true */
|
|
4231
4363
|
is_active?: boolean;
|
|
4232
|
-
/** @example 2026-03-
|
|
4364
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4233
4365
|
created_at?: string;
|
|
4234
|
-
/** @example 2026-03-
|
|
4366
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4235
4367
|
updated_at?: string;
|
|
4236
4368
|
};
|
|
4237
4369
|
};
|
|
@@ -4291,7 +4423,7 @@ export interface operations {
|
|
|
4291
4423
|
content: {
|
|
4292
4424
|
"application/json": {
|
|
4293
4425
|
data?: {
|
|
4294
|
-
/** @example
|
|
4426
|
+
/** @example 189 */
|
|
4295
4427
|
id?: number;
|
|
4296
4428
|
/** @example email_fa_1 */
|
|
4297
4429
|
key?: string;
|
|
@@ -4305,9 +4437,9 @@ export interface operations {
|
|
|
4305
4437
|
metadata_schema?: unknown[];
|
|
4306
4438
|
/** @example true */
|
|
4307
4439
|
is_active?: boolean;
|
|
4308
|
-
/** @example 2026-03-
|
|
4440
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4309
4441
|
created_at?: string;
|
|
4310
|
-
/** @example 2026-03-
|
|
4442
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4311
4443
|
updated_at?: string;
|
|
4312
4444
|
};
|
|
4313
4445
|
};
|
|
@@ -4459,29 +4591,29 @@ export interface operations {
|
|
|
4459
4591
|
/**
|
|
4460
4592
|
* @example [
|
|
4461
4593
|
* {
|
|
4462
|
-
* "id":
|
|
4594
|
+
* "id": 163,
|
|
4463
4595
|
* "status": "approved",
|
|
4464
4596
|
* "submitted_data": [],
|
|
4465
4597
|
* "rejection_reason": null,
|
|
4466
4598
|
* "reviewed_by": 1,
|
|
4467
|
-
* "reviewed_at": "2026-03-
|
|
4468
|
-
* "created_at": "2026-03-
|
|
4469
|
-
* "updated_at": "2026-03-
|
|
4599
|
+
* "reviewed_at": "2026-03-14T21:11:49.000000Z",
|
|
4600
|
+
* "created_at": "2026-03-14T21:11:49.000000Z",
|
|
4601
|
+
* "updated_at": "2026-03-14T21:11:49.000000Z"
|
|
4470
4602
|
* },
|
|
4471
4603
|
* {
|
|
4472
|
-
* "id":
|
|
4604
|
+
* "id": 164,
|
|
4473
4605
|
* "status": "approved",
|
|
4474
4606
|
* "submitted_data": [],
|
|
4475
4607
|
* "rejection_reason": null,
|
|
4476
4608
|
* "reviewed_by": 1,
|
|
4477
|
-
* "reviewed_at": "2026-03-
|
|
4478
|
-
* "created_at": "2026-03-
|
|
4479
|
-
* "updated_at": "2026-03-
|
|
4609
|
+
* "reviewed_at": "2026-03-14T21:11:49.000000Z",
|
|
4610
|
+
* "created_at": "2026-03-14T21:11:49.000000Z",
|
|
4611
|
+
* "updated_at": "2026-03-14T21:11:49.000000Z"
|
|
4480
4612
|
* }
|
|
4481
4613
|
* ]
|
|
4482
4614
|
*/
|
|
4483
4615
|
data?: {
|
|
4484
|
-
/** @example
|
|
4616
|
+
/** @example 163 */
|
|
4485
4617
|
id?: number;
|
|
4486
4618
|
/** @example approved */
|
|
4487
4619
|
status?: string;
|
|
@@ -4491,11 +4623,11 @@ export interface operations {
|
|
|
4491
4623
|
rejection_reason?: string | null;
|
|
4492
4624
|
/** @example 1 */
|
|
4493
4625
|
reviewed_by?: number;
|
|
4494
|
-
/** @example 2026-03-
|
|
4626
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4495
4627
|
reviewed_at?: string;
|
|
4496
|
-
/** @example 2026-03-
|
|
4628
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4497
4629
|
created_at?: string;
|
|
4498
|
-
/** @example 2026-03-
|
|
4630
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4499
4631
|
updated_at?: string;
|
|
4500
4632
|
}[];
|
|
4501
4633
|
links?: {
|
|
@@ -4582,29 +4714,29 @@ export interface operations {
|
|
|
4582
4714
|
/**
|
|
4583
4715
|
* @example [
|
|
4584
4716
|
* {
|
|
4585
|
-
* "id":
|
|
4717
|
+
* "id": 165,
|
|
4586
4718
|
* "status": "approved",
|
|
4587
4719
|
* "submitted_data": [],
|
|
4588
4720
|
* "rejection_reason": null,
|
|
4589
4721
|
* "reviewed_by": 1,
|
|
4590
|
-
* "reviewed_at": "2026-03-
|
|
4591
|
-
* "created_at": "2026-03-
|
|
4592
|
-
* "updated_at": "2026-03-
|
|
4722
|
+
* "reviewed_at": "2026-03-14T21:11:49.000000Z",
|
|
4723
|
+
* "created_at": "2026-03-14T21:11:49.000000Z",
|
|
4724
|
+
* "updated_at": "2026-03-14T21:11:49.000000Z"
|
|
4593
4725
|
* },
|
|
4594
4726
|
* {
|
|
4595
|
-
* "id":
|
|
4727
|
+
* "id": 166,
|
|
4596
4728
|
* "status": "approved",
|
|
4597
4729
|
* "submitted_data": [],
|
|
4598
4730
|
* "rejection_reason": null,
|
|
4599
4731
|
* "reviewed_by": 1,
|
|
4600
|
-
* "reviewed_at": "2026-03-
|
|
4601
|
-
* "created_at": "2026-03-
|
|
4602
|
-
* "updated_at": "2026-03-
|
|
4732
|
+
* "reviewed_at": "2026-03-14T21:11:49.000000Z",
|
|
4733
|
+
* "created_at": "2026-03-14T21:11:49.000000Z",
|
|
4734
|
+
* "updated_at": "2026-03-14T21:11:49.000000Z"
|
|
4603
4735
|
* }
|
|
4604
4736
|
* ]
|
|
4605
4737
|
*/
|
|
4606
4738
|
data?: {
|
|
4607
|
-
/** @example
|
|
4739
|
+
/** @example 165 */
|
|
4608
4740
|
id?: number;
|
|
4609
4741
|
/** @example approved */
|
|
4610
4742
|
status?: string;
|
|
@@ -4614,11 +4746,11 @@ export interface operations {
|
|
|
4614
4746
|
rejection_reason?: string | null;
|
|
4615
4747
|
/** @example 1 */
|
|
4616
4748
|
reviewed_by?: number;
|
|
4617
|
-
/** @example 2026-03-
|
|
4749
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4618
4750
|
reviewed_at?: string;
|
|
4619
|
-
/** @example 2026-03-
|
|
4751
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4620
4752
|
created_at?: string;
|
|
4621
|
-
/** @example 2026-03-
|
|
4753
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4622
4754
|
updated_at?: string;
|
|
4623
4755
|
}[];
|
|
4624
4756
|
};
|
|
@@ -4732,7 +4864,7 @@ export interface operations {
|
|
|
4732
4864
|
/**
|
|
4733
4865
|
* @example [
|
|
4734
4866
|
* {
|
|
4735
|
-
* "id":
|
|
4867
|
+
* "id": 131,
|
|
4736
4868
|
* "listing_id": 7,
|
|
4737
4869
|
* "compliance": {
|
|
4738
4870
|
* "id": 1,
|
|
@@ -4745,10 +4877,10 @@ export interface operations {
|
|
|
4745
4877
|
* "rejection_reason": null,
|
|
4746
4878
|
* "reviewed_by": 1,
|
|
4747
4879
|
* "reviewed_at": null,
|
|
4748
|
-
* "created_at": "2026-03-
|
|
4880
|
+
* "created_at": "2026-03-14T21:11:49.000000Z"
|
|
4749
4881
|
* },
|
|
4750
4882
|
* {
|
|
4751
|
-
* "id":
|
|
4883
|
+
* "id": 132,
|
|
4752
4884
|
* "listing_id": 5,
|
|
4753
4885
|
* "compliance": {
|
|
4754
4886
|
* "id": 1,
|
|
@@ -4761,12 +4893,12 @@ export interface operations {
|
|
|
4761
4893
|
* "rejection_reason": null,
|
|
4762
4894
|
* "reviewed_by": 1,
|
|
4763
4895
|
* "reviewed_at": null,
|
|
4764
|
-
* "created_at": "2026-03-
|
|
4896
|
+
* "created_at": "2026-03-14T21:11:49.000000Z"
|
|
4765
4897
|
* }
|
|
4766
4898
|
* ]
|
|
4767
4899
|
*/
|
|
4768
4900
|
data?: {
|
|
4769
|
-
/** @example
|
|
4901
|
+
/** @example 131 */
|
|
4770
4902
|
id?: number;
|
|
4771
4903
|
/** @example 7 */
|
|
4772
4904
|
listing_id?: number;
|
|
@@ -4790,7 +4922,7 @@ export interface operations {
|
|
|
4790
4922
|
reviewed_by?: number;
|
|
4791
4923
|
/** @example null */
|
|
4792
4924
|
reviewed_at?: string | null;
|
|
4793
|
-
/** @example 2026-03-
|
|
4925
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4794
4926
|
created_at?: string;
|
|
4795
4927
|
}[];
|
|
4796
4928
|
links?: {
|
|
@@ -4910,7 +5042,7 @@ export interface operations {
|
|
|
4910
5042
|
/**
|
|
4911
5043
|
* @example [
|
|
4912
5044
|
* {
|
|
4913
|
-
* "id":
|
|
5045
|
+
* "id": 126,
|
|
4914
5046
|
* "tenancy_id": 1,
|
|
4915
5047
|
* "compliance": {
|
|
4916
5048
|
* "id": 1,
|
|
@@ -4922,11 +5054,11 @@ export interface operations {
|
|
|
4922
5054
|
* "submitted_data": null,
|
|
4923
5055
|
* "rejection_reason": null,
|
|
4924
5056
|
* "reviewed_by": 1,
|
|
4925
|
-
* "reviewed_at": "2026-03-
|
|
4926
|
-
* "created_at": "2026-03-
|
|
5057
|
+
* "reviewed_at": "2026-03-14T21:11:49.000000Z",
|
|
5058
|
+
* "created_at": "2026-03-14T21:11:49.000000Z"
|
|
4927
5059
|
* },
|
|
4928
5060
|
* {
|
|
4929
|
-
* "id":
|
|
5061
|
+
* "id": 127,
|
|
4930
5062
|
* "tenancy_id": 1,
|
|
4931
5063
|
* "compliance": {
|
|
4932
5064
|
* "id": 1,
|
|
@@ -4938,13 +5070,13 @@ export interface operations {
|
|
|
4938
5070
|
* "submitted_data": null,
|
|
4939
5071
|
* "rejection_reason": null,
|
|
4940
5072
|
* "reviewed_by": 1,
|
|
4941
|
-
* "reviewed_at": "2026-03-
|
|
4942
|
-
* "created_at": "2026-03-
|
|
5073
|
+
* "reviewed_at": "2026-03-14T21:11:49.000000Z",
|
|
5074
|
+
* "created_at": "2026-03-14T21:11:49.000000Z"
|
|
4943
5075
|
* }
|
|
4944
5076
|
* ]
|
|
4945
5077
|
*/
|
|
4946
5078
|
data?: {
|
|
4947
|
-
/** @example
|
|
5079
|
+
/** @example 126 */
|
|
4948
5080
|
id?: number;
|
|
4949
5081
|
/** @example 1 */
|
|
4950
5082
|
tenancy_id?: number;
|
|
@@ -4966,9 +5098,9 @@ export interface operations {
|
|
|
4966
5098
|
rejection_reason?: string | null;
|
|
4967
5099
|
/** @example 1 */
|
|
4968
5100
|
reviewed_by?: number;
|
|
4969
|
-
/** @example 2026-03-
|
|
5101
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4970
5102
|
reviewed_at?: string;
|
|
4971
|
-
/** @example 2026-03-
|
|
5103
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
4972
5104
|
created_at?: string;
|
|
4973
5105
|
}[];
|
|
4974
5106
|
links?: {
|
|
@@ -5368,25 +5500,25 @@ export interface operations {
|
|
|
5368
5500
|
/**
|
|
5369
5501
|
* @example [
|
|
5370
5502
|
* {
|
|
5371
|
-
* "key": "
|
|
5372
|
-
* "name": "
|
|
5373
|
-
* "description": "
|
|
5503
|
+
* "key": "eius",
|
|
5504
|
+
* "name": "et",
|
|
5505
|
+
* "description": "Quos velit et fugiat sunt nihil accusantium harum.",
|
|
5374
5506
|
* "value_type": "string"
|
|
5375
5507
|
* },
|
|
5376
5508
|
* {
|
|
5377
|
-
* "key": "
|
|
5378
|
-
* "name": "
|
|
5379
|
-
* "description": "
|
|
5509
|
+
* "key": "mollitia",
|
|
5510
|
+
* "name": "modi",
|
|
5511
|
+
* "description": "Aut ab provident perspiciatis quo omnis nostrum aut.",
|
|
5380
5512
|
* "value_type": "string"
|
|
5381
5513
|
* }
|
|
5382
5514
|
* ]
|
|
5383
5515
|
*/
|
|
5384
5516
|
data?: {
|
|
5385
|
-
/** @example
|
|
5517
|
+
/** @example eius */
|
|
5386
5518
|
key?: string;
|
|
5387
|
-
/** @example
|
|
5519
|
+
/** @example et */
|
|
5388
5520
|
name?: string;
|
|
5389
|
-
/** @example
|
|
5521
|
+
/** @example Quos velit et fugiat sunt nihil accusantium harum. */
|
|
5390
5522
|
description?: string;
|
|
5391
5523
|
/** @example string */
|
|
5392
5524
|
value_type?: string;
|
|
@@ -5568,23 +5700,23 @@ export interface operations {
|
|
|
5568
5700
|
/**
|
|
5569
5701
|
* @example [
|
|
5570
5702
|
* {
|
|
5571
|
-
* "key": "
|
|
5572
|
-
* "name": "
|
|
5573
|
-
* "description": "
|
|
5703
|
+
* "key": "rem",
|
|
5704
|
+
* "name": "eius",
|
|
5705
|
+
* "description": "Aut voluptate vitae in ipsam velit quasi rerum."
|
|
5574
5706
|
* },
|
|
5575
5707
|
* {
|
|
5576
|
-
* "key": "
|
|
5577
|
-
* "name": "
|
|
5578
|
-
* "description": "
|
|
5708
|
+
* "key": "sint",
|
|
5709
|
+
* "name": "ut",
|
|
5710
|
+
* "description": "Animi iste cupiditate placeat nihil et accusantium."
|
|
5579
5711
|
* }
|
|
5580
5712
|
* ]
|
|
5581
5713
|
*/
|
|
5582
5714
|
data?: {
|
|
5583
|
-
/** @example
|
|
5715
|
+
/** @example rem */
|
|
5584
5716
|
key?: string;
|
|
5585
|
-
/** @example
|
|
5717
|
+
/** @example eius */
|
|
5586
5718
|
name?: string;
|
|
5587
|
-
/** @example
|
|
5719
|
+
/** @example Aut voluptate vitae in ipsam velit quasi rerum. */
|
|
5588
5720
|
description?: string;
|
|
5589
5721
|
}[];
|
|
5590
5722
|
};
|
|
@@ -5714,7 +5846,7 @@ export interface operations {
|
|
|
5714
5846
|
* "status": "active"
|
|
5715
5847
|
* },
|
|
5716
5848
|
* {
|
|
5717
|
-
* "id":
|
|
5849
|
+
* "id": 94,
|
|
5718
5850
|
* "compliance_key": "energy_performance",
|
|
5719
5851
|
* "name": "et",
|
|
5720
5852
|
* "description": "Modi ipsum nostrum omnis autem et.",
|
|
@@ -5802,7 +5934,7 @@ export interface operations {
|
|
|
5802
5934
|
content: {
|
|
5803
5935
|
"application/json": {
|
|
5804
5936
|
data?: {
|
|
5805
|
-
/** @example
|
|
5937
|
+
/** @example 95 */
|
|
5806
5938
|
id?: number;
|
|
5807
5939
|
/** @example fire_safety */
|
|
5808
5940
|
compliance_key?: string;
|
|
@@ -6007,39 +6139,39 @@ export interface operations {
|
|
|
6007
6139
|
/**
|
|
6008
6140
|
* @example [
|
|
6009
6141
|
* {
|
|
6010
|
-
* "uid": "
|
|
6142
|
+
* "uid": "b2195c95-8ed2-467d-bc30-2f93e3edea7d",
|
|
6011
6143
|
* "inspection_type": "follow_up",
|
|
6012
6144
|
* "status": "cancelled",
|
|
6013
|
-
* "scheduled_date": "2026-03-
|
|
6145
|
+
* "scheduled_date": "2026-03-08T20:35:13.000000Z",
|
|
6014
6146
|
* "completed_date": null,
|
|
6015
6147
|
* "condition_rating": "attention_required",
|
|
6016
6148
|
* "summary": "Animi quos velit et fugiat.",
|
|
6017
|
-
* "next_inspection_date": "2026-06-
|
|
6018
|
-
* "created_at": "2026-03-
|
|
6019
|
-
* "updated_at": "2026-03-
|
|
6149
|
+
* "next_inspection_date": "2026-06-17T16:30:31.000000Z",
|
|
6150
|
+
* "created_at": "2026-03-14T21:11:49.000000Z",
|
|
6151
|
+
* "updated_at": "2026-03-14T21:11:49.000000Z"
|
|
6020
6152
|
* },
|
|
6021
6153
|
* {
|
|
6022
|
-
* "uid": "
|
|
6154
|
+
* "uid": "14d2a728-e2a4-40c3-aec4-abf65e96f448",
|
|
6023
6155
|
* "inspection_type": "follow_up",
|
|
6024
6156
|
* "status": "cancelled",
|
|
6025
|
-
* "scheduled_date": "2026-03-
|
|
6157
|
+
* "scheduled_date": "2026-03-07T23:23:02.000000Z",
|
|
6026
6158
|
* "completed_date": null,
|
|
6027
6159
|
* "condition_rating": "attention_required",
|
|
6028
6160
|
* "summary": "Harum mollitia modi deserunt aut ab provident perspiciatis quo.",
|
|
6029
|
-
* "next_inspection_date": "2026-05-
|
|
6030
|
-
* "created_at": "2026-03-
|
|
6031
|
-
* "updated_at": "2026-03-
|
|
6161
|
+
* "next_inspection_date": "2026-05-24T01:48:11.000000Z",
|
|
6162
|
+
* "created_at": "2026-03-14T21:11:49.000000Z",
|
|
6163
|
+
* "updated_at": "2026-03-14T21:11:49.000000Z"
|
|
6032
6164
|
* }
|
|
6033
6165
|
* ]
|
|
6034
6166
|
*/
|
|
6035
6167
|
data?: {
|
|
6036
|
-
/** @example
|
|
6168
|
+
/** @example b2195c95-8ed2-467d-bc30-2f93e3edea7d */
|
|
6037
6169
|
uid?: string;
|
|
6038
6170
|
/** @example follow_up */
|
|
6039
6171
|
inspection_type?: string;
|
|
6040
6172
|
/** @example cancelled */
|
|
6041
6173
|
status?: string;
|
|
6042
|
-
/** @example 2026-03-
|
|
6174
|
+
/** @example 2026-03-08T20:35:13.000000Z */
|
|
6043
6175
|
scheduled_date?: string;
|
|
6044
6176
|
/** @example null */
|
|
6045
6177
|
completed_date?: string | null;
|
|
@@ -6047,11 +6179,11 @@ export interface operations {
|
|
|
6047
6179
|
condition_rating?: string;
|
|
6048
6180
|
/** @example Animi quos velit et fugiat. */
|
|
6049
6181
|
summary?: string;
|
|
6050
|
-
/** @example 2026-06-
|
|
6182
|
+
/** @example 2026-06-17T16:30:31.000000Z */
|
|
6051
6183
|
next_inspection_date?: string;
|
|
6052
|
-
/** @example 2026-03-
|
|
6184
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6053
6185
|
created_at?: string;
|
|
6054
|
-
/** @example 2026-03-
|
|
6186
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6055
6187
|
updated_at?: string;
|
|
6056
6188
|
}[];
|
|
6057
6189
|
links?: {
|
|
@@ -6164,13 +6296,13 @@ export interface operations {
|
|
|
6164
6296
|
content: {
|
|
6165
6297
|
"application/json": {
|
|
6166
6298
|
data?: {
|
|
6167
|
-
/** @example
|
|
6299
|
+
/** @example 3ad53ee1-962a-409b-bb59-e6be5e3062c5 */
|
|
6168
6300
|
uid?: string;
|
|
6169
6301
|
/** @example follow_up */
|
|
6170
6302
|
inspection_type?: string;
|
|
6171
6303
|
/** @example cancelled */
|
|
6172
6304
|
status?: string;
|
|
6173
|
-
/** @example 2026-03-
|
|
6305
|
+
/** @example 2026-03-19T12:28:16.000000Z */
|
|
6174
6306
|
scheduled_date?: string;
|
|
6175
6307
|
/** @example null */
|
|
6176
6308
|
completed_date?: string | null;
|
|
@@ -6178,11 +6310,11 @@ export interface operations {
|
|
|
6178
6310
|
condition_rating?: string;
|
|
6179
6311
|
/** @example Adipisci quidem nostrum qui commodi incidunt iure. */
|
|
6180
6312
|
summary?: string;
|
|
6181
|
-
/** @example 2026-06-
|
|
6313
|
+
/** @example 2026-06-05T02:16:46.000000Z */
|
|
6182
6314
|
next_inspection_date?: string;
|
|
6183
|
-
/** @example 2026-03-
|
|
6315
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6184
6316
|
created_at?: string;
|
|
6185
|
-
/** @example 2026-03-
|
|
6317
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6186
6318
|
updated_at?: string;
|
|
6187
6319
|
};
|
|
6188
6320
|
};
|
|
@@ -6225,13 +6357,13 @@ export interface operations {
|
|
|
6225
6357
|
content: {
|
|
6226
6358
|
"application/json": {
|
|
6227
6359
|
data?: {
|
|
6228
|
-
/** @example
|
|
6360
|
+
/** @example 6354ba74-7304-46a1-918a-7562d5144063 */
|
|
6229
6361
|
uid?: string;
|
|
6230
6362
|
/** @example follow_up */
|
|
6231
6363
|
inspection_type?: string;
|
|
6232
6364
|
/** @example cancelled */
|
|
6233
6365
|
status?: string;
|
|
6234
|
-
/** @example 2026-03-
|
|
6366
|
+
/** @example 2026-03-08T08:36:44.000000Z */
|
|
6235
6367
|
scheduled_date?: string;
|
|
6236
6368
|
/** @example null */
|
|
6237
6369
|
completed_date?: string | null;
|
|
@@ -6239,11 +6371,11 @@ export interface operations {
|
|
|
6239
6371
|
condition_rating?: string;
|
|
6240
6372
|
/** @example Et animi quos velit et fugiat. */
|
|
6241
6373
|
summary?: string;
|
|
6242
|
-
/** @example 2026-06-
|
|
6374
|
+
/** @example 2026-06-17T16:30:31.000000Z */
|
|
6243
6375
|
next_inspection_date?: string;
|
|
6244
|
-
/** @example 2026-03-
|
|
6376
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6245
6377
|
created_at?: string;
|
|
6246
|
-
/** @example 2026-03-
|
|
6378
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6247
6379
|
updated_at?: string;
|
|
6248
6380
|
};
|
|
6249
6381
|
};
|
|
@@ -6280,13 +6412,13 @@ export interface operations {
|
|
|
6280
6412
|
content: {
|
|
6281
6413
|
"application/json": {
|
|
6282
6414
|
data?: {
|
|
6283
|
-
/** @example
|
|
6415
|
+
/** @example cd4c10d8-d629-4a10-9638-401338a2c67b */
|
|
6284
6416
|
uid?: string;
|
|
6285
6417
|
/** @example follow_up */
|
|
6286
6418
|
inspection_type?: string;
|
|
6287
6419
|
/** @example cancelled */
|
|
6288
6420
|
status?: string;
|
|
6289
|
-
/** @example 2026-03-
|
|
6421
|
+
/** @example 2026-03-08T20:35:13.000000Z */
|
|
6290
6422
|
scheduled_date?: string;
|
|
6291
6423
|
/** @example null */
|
|
6292
6424
|
completed_date?: string | null;
|
|
@@ -6294,11 +6426,11 @@ export interface operations {
|
|
|
6294
6426
|
condition_rating?: string;
|
|
6295
6427
|
/** @example Animi quos velit et fugiat. */
|
|
6296
6428
|
summary?: string;
|
|
6297
|
-
/** @example 2026-06-
|
|
6429
|
+
/** @example 2026-06-17T16:30:31.000000Z */
|
|
6298
6430
|
next_inspection_date?: string;
|
|
6299
|
-
/** @example 2026-03-
|
|
6431
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6300
6432
|
created_at?: string;
|
|
6301
|
-
/** @example 2026-03-
|
|
6433
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6302
6434
|
updated_at?: string;
|
|
6303
6435
|
};
|
|
6304
6436
|
};
|
|
@@ -6335,13 +6467,13 @@ export interface operations {
|
|
|
6335
6467
|
content: {
|
|
6336
6468
|
"application/json": {
|
|
6337
6469
|
data?: {
|
|
6338
|
-
/** @example
|
|
6470
|
+
/** @example 83940de9-db21-4725-9eaa-acb165ecaf2e */
|
|
6339
6471
|
uid?: string;
|
|
6340
6472
|
/** @example follow_up */
|
|
6341
6473
|
inspection_type?: string;
|
|
6342
6474
|
/** @example cancelled */
|
|
6343
6475
|
status?: string;
|
|
6344
|
-
/** @example 2026-03-
|
|
6476
|
+
/** @example 2026-03-08T08:36:44.000000Z */
|
|
6345
6477
|
scheduled_date?: string;
|
|
6346
6478
|
/** @example null */
|
|
6347
6479
|
completed_date?: string | null;
|
|
@@ -6349,11 +6481,11 @@ export interface operations {
|
|
|
6349
6481
|
condition_rating?: string;
|
|
6350
6482
|
/** @example Et animi quos velit et fugiat. */
|
|
6351
6483
|
summary?: string;
|
|
6352
|
-
/** @example 2026-06-
|
|
6484
|
+
/** @example 2026-06-17T16:30:31.000000Z */
|
|
6353
6485
|
next_inspection_date?: string;
|
|
6354
|
-
/** @example 2026-03-
|
|
6486
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6355
6487
|
created_at?: string;
|
|
6356
|
-
/** @example 2026-03-
|
|
6488
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6357
6489
|
updated_at?: string;
|
|
6358
6490
|
};
|
|
6359
6491
|
};
|
|
@@ -6390,27 +6522,27 @@ export interface operations {
|
|
|
6390
6522
|
content: {
|
|
6391
6523
|
"application/json": {
|
|
6392
6524
|
data?: {
|
|
6393
|
-
/** @example
|
|
6525
|
+
/** @example 14247f3f-8cb8-4055-917d-5e78d9ddff4a */
|
|
6394
6526
|
uid?: string;
|
|
6395
|
-
/** @example
|
|
6527
|
+
/** @example Velit et fugiat sunt. */
|
|
6396
6528
|
title?: string;
|
|
6397
|
-
/** @example
|
|
6529
|
+
/** @example Harum 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. */
|
|
6398
6530
|
description?: string;
|
|
6399
6531
|
/** @example breach */
|
|
6400
6532
|
status?: string;
|
|
6401
6533
|
/** @example urgent */
|
|
6402
6534
|
priority?: string;
|
|
6403
|
-
/** @example 2026-03-
|
|
6535
|
+
/** @example 2026-03-08T20:05:46.000000Z */
|
|
6404
6536
|
reported_at?: string;
|
|
6405
|
-
/** @example
|
|
6406
|
-
assigned_at?: string;
|
|
6537
|
+
/** @example null */
|
|
6538
|
+
assigned_at?: string | null;
|
|
6407
6539
|
/** @example null */
|
|
6408
6540
|
completed_at?: string | null;
|
|
6409
|
-
/** @example 2026-03-
|
|
6541
|
+
/** @example 2026-03-15T05:34:44.000000Z */
|
|
6410
6542
|
sla_deadline?: string;
|
|
6411
|
-
/** @example 2026-03-
|
|
6543
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6412
6544
|
created_at?: string;
|
|
6413
|
-
/** @example 2026-03-
|
|
6545
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6414
6546
|
updated_at?: string;
|
|
6415
6547
|
};
|
|
6416
6548
|
};
|
|
@@ -6447,7 +6579,7 @@ export interface operations {
|
|
|
6447
6579
|
content: {
|
|
6448
6580
|
"application/json": {
|
|
6449
6581
|
data?: {
|
|
6450
|
-
/** @example
|
|
6582
|
+
/** @example 38ad377f-4906-4853-a1c5-3eea8e528bb6 */
|
|
6451
6583
|
uid?: string;
|
|
6452
6584
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
6453
6585
|
title?: string;
|
|
@@ -6457,17 +6589,17 @@ export interface operations {
|
|
|
6457
6589
|
status?: string;
|
|
6458
6590
|
/** @example emergency */
|
|
6459
6591
|
priority?: string;
|
|
6460
|
-
/** @example 2026-03-
|
|
6592
|
+
/** @example 2026-03-08T08:25:24.000000Z */
|
|
6461
6593
|
reported_at?: string;
|
|
6462
|
-
/** @example 2026-03-
|
|
6594
|
+
/** @example 2026-03-13T04:45:16.000000Z */
|
|
6463
6595
|
assigned_at?: string;
|
|
6464
6596
|
/** @example null */
|
|
6465
6597
|
completed_at?: string | null;
|
|
6466
|
-
/** @example 2026-03-
|
|
6598
|
+
/** @example 2026-03-16T10:07:39.000000Z */
|
|
6467
6599
|
sla_deadline?: string;
|
|
6468
|
-
/** @example 2026-03-
|
|
6600
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6469
6601
|
created_at?: string;
|
|
6470
|
-
/** @example 2026-03-
|
|
6602
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6471
6603
|
updated_at?: string;
|
|
6472
6604
|
};
|
|
6473
6605
|
};
|
|
@@ -6504,7 +6636,7 @@ export interface operations {
|
|
|
6504
6636
|
content: {
|
|
6505
6637
|
"application/json": {
|
|
6506
6638
|
data?: {
|
|
6507
|
-
/** @example
|
|
6639
|
+
/** @example 6b38c74b-8e6e-45fa-a162-a843abce9202 */
|
|
6508
6640
|
uid?: string;
|
|
6509
6641
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
6510
6642
|
title?: string;
|
|
@@ -6514,17 +6646,17 @@ export interface operations {
|
|
|
6514
6646
|
status?: string;
|
|
6515
6647
|
/** @example emergency */
|
|
6516
6648
|
priority?: string;
|
|
6517
|
-
/** @example 2026-03-
|
|
6649
|
+
/** @example 2026-03-08T08:25:24.000000Z */
|
|
6518
6650
|
reported_at?: string;
|
|
6519
|
-
/** @example 2026-03-
|
|
6651
|
+
/** @example 2026-03-13T04:45:16.000000Z */
|
|
6520
6652
|
assigned_at?: string;
|
|
6521
6653
|
/** @example null */
|
|
6522
6654
|
completed_at?: string | null;
|
|
6523
|
-
/** @example 2026-03-
|
|
6655
|
+
/** @example 2026-03-16T10:07:39.000000Z */
|
|
6524
6656
|
sla_deadline?: string;
|
|
6525
|
-
/** @example 2026-03-
|
|
6657
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6526
6658
|
created_at?: string;
|
|
6527
|
-
/** @example 2026-03-
|
|
6659
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6528
6660
|
updated_at?: string;
|
|
6529
6661
|
};
|
|
6530
6662
|
};
|
|
@@ -6561,7 +6693,7 @@ export interface operations {
|
|
|
6561
6693
|
content: {
|
|
6562
6694
|
"application/json": {
|
|
6563
6695
|
data?: {
|
|
6564
|
-
/** @example
|
|
6696
|
+
/** @example 89b4ae1a-853b-42ef-ad90-3adecb72f6fd */
|
|
6565
6697
|
uid?: string;
|
|
6566
6698
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
6567
6699
|
title?: string;
|
|
@@ -6571,17 +6703,17 @@ export interface operations {
|
|
|
6571
6703
|
status?: string;
|
|
6572
6704
|
/** @example emergency */
|
|
6573
6705
|
priority?: string;
|
|
6574
|
-
/** @example 2026-03-
|
|
6706
|
+
/** @example 2026-03-08T08:25:24.000000Z */
|
|
6575
6707
|
reported_at?: string;
|
|
6576
|
-
/** @example 2026-03-
|
|
6708
|
+
/** @example 2026-03-13T04:45:16.000000Z */
|
|
6577
6709
|
assigned_at?: string;
|
|
6578
6710
|
/** @example null */
|
|
6579
6711
|
completed_at?: string | null;
|
|
6580
|
-
/** @example 2026-03-
|
|
6712
|
+
/** @example 2026-03-16T10:07:39.000000Z */
|
|
6581
6713
|
sla_deadline?: string;
|
|
6582
|
-
/** @example 2026-03-
|
|
6714
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6583
6715
|
created_at?: string;
|
|
6584
|
-
/** @example 2026-03-
|
|
6716
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
6585
6717
|
updated_at?: string;
|
|
6586
6718
|
};
|
|
6587
6719
|
};
|
|
@@ -6631,7 +6763,7 @@ export interface operations {
|
|
|
6631
6763
|
* @example rent
|
|
6632
6764
|
* @enum {string}
|
|
6633
6765
|
*/
|
|
6634
|
-
listing_type: "sale" | "rent";
|
|
6766
|
+
listing_type: "sale" | "rent" | "short_let";
|
|
6635
6767
|
};
|
|
6636
6768
|
};
|
|
6637
6769
|
};
|
|
@@ -6673,19 +6805,19 @@ export interface operations {
|
|
|
6673
6805
|
content: {
|
|
6674
6806
|
"application/json": {
|
|
6675
6807
|
data?: {
|
|
6676
|
-
/** @example
|
|
6808
|
+
/** @example 1293 */
|
|
6677
6809
|
id?: number;
|
|
6678
6810
|
/** @example 2 */
|
|
6679
6811
|
listing_id?: number;
|
|
6680
6812
|
/** @example completed */
|
|
6681
6813
|
status?: string;
|
|
6682
6814
|
scheduled?: {
|
|
6683
|
-
/** @example
|
|
6815
|
+
/** @example 2024-07-30T00:00:00.000000Z */
|
|
6684
6816
|
start?: string;
|
|
6685
|
-
/** @example
|
|
6817
|
+
/** @example 2016-12-12T00:00:00.000000Z */
|
|
6686
6818
|
end?: string;
|
|
6687
6819
|
};
|
|
6688
|
-
/** @example 2026-03-
|
|
6820
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
6689
6821
|
created_at?: string;
|
|
6690
6822
|
};
|
|
6691
6823
|
};
|
|
@@ -6712,19 +6844,19 @@ export interface operations {
|
|
|
6712
6844
|
content: {
|
|
6713
6845
|
"application/json": {
|
|
6714
6846
|
data?: {
|
|
6715
|
-
/** @example
|
|
6847
|
+
/** @example 1294 */
|
|
6716
6848
|
id?: number;
|
|
6717
6849
|
/** @example 2 */
|
|
6718
6850
|
listing_id?: number;
|
|
6719
6851
|
/** @example completed */
|
|
6720
6852
|
status?: string;
|
|
6721
6853
|
scheduled?: {
|
|
6722
|
-
/** @example 1981-07-
|
|
6854
|
+
/** @example 1981-07-14T00:00:00.000000Z */
|
|
6723
6855
|
start?: string;
|
|
6724
|
-
/** @example 1998-06-
|
|
6856
|
+
/** @example 1998-06-21T00:00:00.000000Z */
|
|
6725
6857
|
end?: string;
|
|
6726
6858
|
};
|
|
6727
|
-
/** @example 2026-03-
|
|
6859
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
6728
6860
|
created_at?: string;
|
|
6729
6861
|
};
|
|
6730
6862
|
};
|
|
@@ -6750,41 +6882,41 @@ export interface operations {
|
|
|
6750
6882
|
/**
|
|
6751
6883
|
* @example [
|
|
6752
6884
|
* {
|
|
6753
|
-
* "id":
|
|
6885
|
+
* "id": 1295,
|
|
6754
6886
|
* "listing_id": 2,
|
|
6755
6887
|
* "status": "completed",
|
|
6756
6888
|
* "scheduled": {
|
|
6757
|
-
* "start": "2025-02-
|
|
6758
|
-
* "end": "1973-05-
|
|
6889
|
+
* "start": "2025-02-09T00:00:00.000000Z",
|
|
6890
|
+
* "end": "1973-05-17T00:00:00.000000Z"
|
|
6759
6891
|
* },
|
|
6760
|
-
* "created_at": "2026-03-
|
|
6892
|
+
* "created_at": "2026-03-14T21:11:50.000000Z"
|
|
6761
6893
|
* },
|
|
6762
6894
|
* {
|
|
6763
|
-
* "id":
|
|
6895
|
+
* "id": 1296,
|
|
6764
6896
|
* "listing_id": 2,
|
|
6765
6897
|
* "status": "completed",
|
|
6766
6898
|
* "scheduled": {
|
|
6767
|
-
* "start": "1997-02-
|
|
6768
|
-
* "end": "2020-09-
|
|
6899
|
+
* "start": "1997-02-09T00:00:00.000000Z",
|
|
6900
|
+
* "end": "2020-09-08T00:00:00.000000Z"
|
|
6769
6901
|
* },
|
|
6770
|
-
* "created_at": "2026-03-
|
|
6902
|
+
* "created_at": "2026-03-14T21:11:50.000000Z"
|
|
6771
6903
|
* }
|
|
6772
6904
|
* ]
|
|
6773
6905
|
*/
|
|
6774
6906
|
data?: {
|
|
6775
|
-
/** @example
|
|
6907
|
+
/** @example 1295 */
|
|
6776
6908
|
id?: number;
|
|
6777
6909
|
/** @example 2 */
|
|
6778
6910
|
listing_id?: number;
|
|
6779
6911
|
/** @example completed */
|
|
6780
6912
|
status?: string;
|
|
6781
6913
|
scheduled?: {
|
|
6782
|
-
/** @example 2025-02-
|
|
6914
|
+
/** @example 2025-02-09T00:00:00.000000Z */
|
|
6783
6915
|
start?: string;
|
|
6784
|
-
/** @example 1973-05-
|
|
6916
|
+
/** @example 1973-05-17T00:00:00.000000Z */
|
|
6785
6917
|
end?: string;
|
|
6786
6918
|
};
|
|
6787
|
-
/** @example 2026-03-
|
|
6919
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
6788
6920
|
created_at?: string;
|
|
6789
6921
|
}[];
|
|
6790
6922
|
links?: {
|
|
@@ -6884,19 +7016,19 @@ export interface operations {
|
|
|
6884
7016
|
content: {
|
|
6885
7017
|
"application/json": {
|
|
6886
7018
|
data?: {
|
|
6887
|
-
/** @example
|
|
7019
|
+
/** @example 1297 */
|
|
6888
7020
|
id?: number;
|
|
6889
7021
|
/** @example 2 */
|
|
6890
7022
|
listing_id?: number;
|
|
6891
7023
|
/** @example completed */
|
|
6892
7024
|
status?: string;
|
|
6893
7025
|
scheduled?: {
|
|
6894
|
-
/** @example 2018-10-
|
|
7026
|
+
/** @example 2018-10-13T00:00:00.000000Z */
|
|
6895
7027
|
start?: string;
|
|
6896
|
-
/** @example 2019-12-
|
|
7028
|
+
/** @example 2019-12-15T00:00:00.000000Z */
|
|
6897
7029
|
end?: string;
|
|
6898
7030
|
};
|
|
6899
|
-
/** @example 2026-03-
|
|
7031
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
6900
7032
|
created_at?: string;
|
|
6901
7033
|
};
|
|
6902
7034
|
};
|
|
@@ -6923,7 +7055,7 @@ export interface operations {
|
|
|
6923
7055
|
content: {
|
|
6924
7056
|
"application/json": {
|
|
6925
7057
|
data?: {
|
|
6926
|
-
/** @example
|
|
7058
|
+
/** @example 1298 */
|
|
6927
7059
|
id?: number;
|
|
6928
7060
|
/** @example 2 */
|
|
6929
7061
|
listing_id?: number;
|
|
@@ -6935,7 +7067,7 @@ export interface operations {
|
|
|
6935
7067
|
/** @example 1990-07-03T00:00:00.000000Z */
|
|
6936
7068
|
end?: string;
|
|
6937
7069
|
};
|
|
6938
|
-
/** @example 2026-03-
|
|
7070
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
6939
7071
|
created_at?: string;
|
|
6940
7072
|
};
|
|
6941
7073
|
};
|
|
@@ -6962,7 +7094,7 @@ export interface operations {
|
|
|
6962
7094
|
content: {
|
|
6963
7095
|
"application/json": {
|
|
6964
7096
|
data?: {
|
|
6965
|
-
/** @example
|
|
7097
|
+
/** @example 1299 */
|
|
6966
7098
|
id?: number;
|
|
6967
7099
|
/** @example 2 */
|
|
6968
7100
|
listing_id?: number;
|
|
@@ -6974,7 +7106,7 @@ export interface operations {
|
|
|
6974
7106
|
/** @example 1997-01-07T00:00:00.000000Z */
|
|
6975
7107
|
end?: string;
|
|
6976
7108
|
};
|
|
6977
|
-
/** @example 2026-03-
|
|
7109
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
6978
7110
|
created_at?: string;
|
|
6979
7111
|
};
|
|
6980
7112
|
};
|
|
@@ -7146,6 +7278,223 @@ export interface operations {
|
|
|
7146
7278
|
};
|
|
7147
7279
|
};
|
|
7148
7280
|
};
|
|
7281
|
+
createBooking: {
|
|
7282
|
+
parameters: {
|
|
7283
|
+
query?: never;
|
|
7284
|
+
header?: never;
|
|
7285
|
+
path?: never;
|
|
7286
|
+
cookie?: never;
|
|
7287
|
+
};
|
|
7288
|
+
requestBody: {
|
|
7289
|
+
content: {
|
|
7290
|
+
"application/json": {
|
|
7291
|
+
/**
|
|
7292
|
+
* @description The listing to book. The <code>uid</code> of an existing record in the listings table.
|
|
7293
|
+
* @example 12
|
|
7294
|
+
*/
|
|
7295
|
+
listing_uid: string;
|
|
7296
|
+
/**
|
|
7297
|
+
* @description Booking start date. Must be a valid date.
|
|
7298
|
+
* @example 2026-06-10
|
|
7299
|
+
*/
|
|
7300
|
+
start_date: string;
|
|
7301
|
+
/**
|
|
7302
|
+
* @description Booking end date. Must be a valid date. Must be a date after <code>start_date</code>.
|
|
7303
|
+
* @example 2026-06-14
|
|
7304
|
+
*/
|
|
7305
|
+
end_date: string;
|
|
7306
|
+
};
|
|
7307
|
+
};
|
|
7308
|
+
};
|
|
7309
|
+
responses: {
|
|
7310
|
+
/** @description Booking created successfully */
|
|
7311
|
+
200: {
|
|
7312
|
+
headers: {
|
|
7313
|
+
[name: string]: unknown;
|
|
7314
|
+
};
|
|
7315
|
+
content: {
|
|
7316
|
+
"application/json": {
|
|
7317
|
+
/** @example Booking created successfully */
|
|
7318
|
+
message?: string;
|
|
7319
|
+
/** @example null */
|
|
7320
|
+
event?: string | null;
|
|
7321
|
+
data?: {
|
|
7322
|
+
/** @example null */
|
|
7323
|
+
id?: string | null;
|
|
7324
|
+
/** @example null */
|
|
7325
|
+
listing_id?: string | null;
|
|
7326
|
+
/** @example null */
|
|
7327
|
+
guest_id?: string | null;
|
|
7328
|
+
/** @example null */
|
|
7329
|
+
host_id?: string | null;
|
|
7330
|
+
/** @example null */
|
|
7331
|
+
start_date?: string | null;
|
|
7332
|
+
/** @example null */
|
|
7333
|
+
end_date?: string | null;
|
|
7334
|
+
/** @example null */
|
|
7335
|
+
nights?: string | null;
|
|
7336
|
+
/** @example null */
|
|
7337
|
+
price_total?: string | null;
|
|
7338
|
+
/** @example null */
|
|
7339
|
+
status?: string | null;
|
|
7340
|
+
/** @example null */
|
|
7341
|
+
created_at?: string | null;
|
|
7342
|
+
};
|
|
7343
|
+
};
|
|
7344
|
+
};
|
|
7345
|
+
};
|
|
7346
|
+
};
|
|
7347
|
+
};
|
|
7348
|
+
confirmBooking: {
|
|
7349
|
+
parameters: {
|
|
7350
|
+
query?: never;
|
|
7351
|
+
header?: never;
|
|
7352
|
+
path: {
|
|
7353
|
+
/** @description The ID of the booking. */
|
|
7354
|
+
booking_id: number;
|
|
7355
|
+
};
|
|
7356
|
+
cookie?: never;
|
|
7357
|
+
};
|
|
7358
|
+
requestBody?: never;
|
|
7359
|
+
responses: {
|
|
7360
|
+
/** @description Booking confirmed successfully */
|
|
7361
|
+
200: {
|
|
7362
|
+
headers: {
|
|
7363
|
+
[name: string]: unknown;
|
|
7364
|
+
};
|
|
7365
|
+
content: {
|
|
7366
|
+
"application/json": {
|
|
7367
|
+
/** @example Booking confirmed successfully */
|
|
7368
|
+
message?: string;
|
|
7369
|
+
/** @example null */
|
|
7370
|
+
event?: string | null;
|
|
7371
|
+
data?: {
|
|
7372
|
+
/** @example null */
|
|
7373
|
+
id?: string | null;
|
|
7374
|
+
/** @example null */
|
|
7375
|
+
listing_id?: string | null;
|
|
7376
|
+
/** @example null */
|
|
7377
|
+
guest_id?: string | null;
|
|
7378
|
+
/** @example null */
|
|
7379
|
+
host_id?: string | null;
|
|
7380
|
+
/** @example null */
|
|
7381
|
+
start_date?: string | null;
|
|
7382
|
+
/** @example null */
|
|
7383
|
+
end_date?: string | null;
|
|
7384
|
+
/** @example null */
|
|
7385
|
+
nights?: string | null;
|
|
7386
|
+
/** @example null */
|
|
7387
|
+
price_total?: string | null;
|
|
7388
|
+
/** @example null */
|
|
7389
|
+
status?: string | null;
|
|
7390
|
+
/** @example null */
|
|
7391
|
+
created_at?: string | null;
|
|
7392
|
+
};
|
|
7393
|
+
};
|
|
7394
|
+
};
|
|
7395
|
+
};
|
|
7396
|
+
};
|
|
7397
|
+
};
|
|
7398
|
+
cancelBooking: {
|
|
7399
|
+
parameters: {
|
|
7400
|
+
query?: never;
|
|
7401
|
+
header?: never;
|
|
7402
|
+
path: {
|
|
7403
|
+
/** @description The ID of the booking. */
|
|
7404
|
+
booking_id: number;
|
|
7405
|
+
};
|
|
7406
|
+
cookie?: never;
|
|
7407
|
+
};
|
|
7408
|
+
requestBody?: never;
|
|
7409
|
+
responses: {
|
|
7410
|
+
/** @description Booking cancelled successfully */
|
|
7411
|
+
200: {
|
|
7412
|
+
headers: {
|
|
7413
|
+
[name: string]: unknown;
|
|
7414
|
+
};
|
|
7415
|
+
content: {
|
|
7416
|
+
"application/json": {
|
|
7417
|
+
/** @example Booking cancelled successfully */
|
|
7418
|
+
message?: string;
|
|
7419
|
+
/** @example null */
|
|
7420
|
+
event?: string | null;
|
|
7421
|
+
data?: {
|
|
7422
|
+
/** @example null */
|
|
7423
|
+
id?: string | null;
|
|
7424
|
+
/** @example null */
|
|
7425
|
+
listing_id?: string | null;
|
|
7426
|
+
/** @example null */
|
|
7427
|
+
guest_id?: string | null;
|
|
7428
|
+
/** @example null */
|
|
7429
|
+
host_id?: string | null;
|
|
7430
|
+
/** @example null */
|
|
7431
|
+
start_date?: string | null;
|
|
7432
|
+
/** @example null */
|
|
7433
|
+
end_date?: string | null;
|
|
7434
|
+
/** @example null */
|
|
7435
|
+
nights?: string | null;
|
|
7436
|
+
/** @example null */
|
|
7437
|
+
price_total?: string | null;
|
|
7438
|
+
/** @example null */
|
|
7439
|
+
status?: string | null;
|
|
7440
|
+
/** @example null */
|
|
7441
|
+
created_at?: string | null;
|
|
7442
|
+
};
|
|
7443
|
+
};
|
|
7444
|
+
};
|
|
7445
|
+
};
|
|
7446
|
+
};
|
|
7447
|
+
};
|
|
7448
|
+
getBooking: {
|
|
7449
|
+
parameters: {
|
|
7450
|
+
query?: never;
|
|
7451
|
+
header?: never;
|
|
7452
|
+
path: {
|
|
7453
|
+
/** @description The ID of the booking. */
|
|
7454
|
+
booking_id: string;
|
|
7455
|
+
};
|
|
7456
|
+
cookie?: never;
|
|
7457
|
+
};
|
|
7458
|
+
requestBody?: never;
|
|
7459
|
+
responses: {
|
|
7460
|
+
/** @description Booking retrieved successfully */
|
|
7461
|
+
200: {
|
|
7462
|
+
headers: {
|
|
7463
|
+
[name: string]: unknown;
|
|
7464
|
+
};
|
|
7465
|
+
content: {
|
|
7466
|
+
"application/json": {
|
|
7467
|
+
/** @example Booking retrieved successfully */
|
|
7468
|
+
message?: string;
|
|
7469
|
+
/** @example null */
|
|
7470
|
+
event?: string | null;
|
|
7471
|
+
data?: {
|
|
7472
|
+
/** @example null */
|
|
7473
|
+
id?: string | null;
|
|
7474
|
+
/** @example null */
|
|
7475
|
+
listing_id?: string | null;
|
|
7476
|
+
/** @example null */
|
|
7477
|
+
guest_id?: string | null;
|
|
7478
|
+
/** @example null */
|
|
7479
|
+
host_id?: string | null;
|
|
7480
|
+
/** @example null */
|
|
7481
|
+
start_date?: string | null;
|
|
7482
|
+
/** @example null */
|
|
7483
|
+
end_date?: string | null;
|
|
7484
|
+
/** @example null */
|
|
7485
|
+
nights?: string | null;
|
|
7486
|
+
/** @example null */
|
|
7487
|
+
price_total?: string | null;
|
|
7488
|
+
/** @example null */
|
|
7489
|
+
status?: string | null;
|
|
7490
|
+
/** @example null */
|
|
7491
|
+
created_at?: string | null;
|
|
7492
|
+
};
|
|
7493
|
+
};
|
|
7494
|
+
};
|
|
7495
|
+
};
|
|
7496
|
+
};
|
|
7497
|
+
};
|
|
7149
7498
|
getApiV1PortalAgentTest: {
|
|
7150
7499
|
parameters: {
|
|
7151
7500
|
query?: never;
|
|
@@ -7454,39 +7803,39 @@ export interface operations {
|
|
|
7454
7803
|
/**
|
|
7455
7804
|
* @example [
|
|
7456
7805
|
* {
|
|
7457
|
-
* "uid": "
|
|
7806
|
+
* "uid": "dc8fa68a-f6db-4cf6-aa2f-55c3ed85d759",
|
|
7458
7807
|
* "inspection_type": "follow_up",
|
|
7459
7808
|
* "status": "cancelled",
|
|
7460
|
-
* "scheduled_date": "2026-03-
|
|
7809
|
+
* "scheduled_date": "2026-03-08T20:35:14.000000Z",
|
|
7461
7810
|
* "completed_date": null,
|
|
7462
7811
|
* "condition_rating": "attention_required",
|
|
7463
7812
|
* "summary": "Animi quos velit et fugiat.",
|
|
7464
|
-
* "next_inspection_date": "2026-06-
|
|
7465
|
-
* "created_at": "2026-03-
|
|
7466
|
-
* "updated_at": "2026-03-
|
|
7813
|
+
* "next_inspection_date": "2026-06-17T16:30:32.000000Z",
|
|
7814
|
+
* "created_at": "2026-03-14T21:11:50.000000Z",
|
|
7815
|
+
* "updated_at": "2026-03-14T21:11:50.000000Z"
|
|
7467
7816
|
* },
|
|
7468
7817
|
* {
|
|
7469
|
-
* "uid": "
|
|
7818
|
+
* "uid": "dcb20002-0d9e-4660-b29c-489f55a37f72",
|
|
7470
7819
|
* "inspection_type": "follow_up",
|
|
7471
7820
|
* "status": "cancelled",
|
|
7472
|
-
* "scheduled_date": "2026-03-
|
|
7821
|
+
* "scheduled_date": "2026-03-07T23:23:03.000000Z",
|
|
7473
7822
|
* "completed_date": null,
|
|
7474
7823
|
* "condition_rating": "attention_required",
|
|
7475
7824
|
* "summary": "Harum mollitia modi deserunt aut ab provident perspiciatis quo.",
|
|
7476
|
-
* "next_inspection_date": "2026-05-
|
|
7477
|
-
* "created_at": "2026-03-
|
|
7478
|
-
* "updated_at": "2026-03-
|
|
7825
|
+
* "next_inspection_date": "2026-05-24T01:48:12.000000Z",
|
|
7826
|
+
* "created_at": "2026-03-14T21:11:50.000000Z",
|
|
7827
|
+
* "updated_at": "2026-03-14T21:11:50.000000Z"
|
|
7479
7828
|
* }
|
|
7480
7829
|
* ]
|
|
7481
7830
|
*/
|
|
7482
7831
|
data?: {
|
|
7483
|
-
/** @example
|
|
7832
|
+
/** @example dc8fa68a-f6db-4cf6-aa2f-55c3ed85d759 */
|
|
7484
7833
|
uid?: string;
|
|
7485
7834
|
/** @example follow_up */
|
|
7486
7835
|
inspection_type?: string;
|
|
7487
7836
|
/** @example cancelled */
|
|
7488
7837
|
status?: string;
|
|
7489
|
-
/** @example 2026-03-
|
|
7838
|
+
/** @example 2026-03-08T20:35:14.000000Z */
|
|
7490
7839
|
scheduled_date?: string;
|
|
7491
7840
|
/** @example null */
|
|
7492
7841
|
completed_date?: string | null;
|
|
@@ -7494,11 +7843,11 @@ export interface operations {
|
|
|
7494
7843
|
condition_rating?: string;
|
|
7495
7844
|
/** @example Animi quos velit et fugiat. */
|
|
7496
7845
|
summary?: string;
|
|
7497
|
-
/** @example 2026-06-
|
|
7846
|
+
/** @example 2026-06-17T16:30:32.000000Z */
|
|
7498
7847
|
next_inspection_date?: string;
|
|
7499
|
-
/** @example 2026-03-
|
|
7848
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
7500
7849
|
created_at?: string;
|
|
7501
|
-
/** @example 2026-03-
|
|
7850
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
7502
7851
|
updated_at?: string;
|
|
7503
7852
|
}[];
|
|
7504
7853
|
links?: {
|
|
@@ -7574,22 +7923,40 @@ export interface operations {
|
|
|
7574
7923
|
requestBody: {
|
|
7575
7924
|
content: {
|
|
7576
7925
|
"application/json": {
|
|
7577
|
-
/**
|
|
7926
|
+
/**
|
|
7927
|
+
* @description Full name of the landlord.
|
|
7928
|
+
* @example John Doe
|
|
7929
|
+
*/
|
|
7578
7930
|
name: string;
|
|
7579
7931
|
/**
|
|
7580
|
-
* @description Must be a valid email address.
|
|
7581
|
-
* @example
|
|
7932
|
+
* @description Email address of the landlord. Must be a valid email address.
|
|
7933
|
+
* @example john@example.com
|
|
7582
7934
|
*/
|
|
7583
7935
|
email: string;
|
|
7584
|
-
/**
|
|
7936
|
+
/**
|
|
7937
|
+
* @description Account password.
|
|
7938
|
+
* @example secret123
|
|
7939
|
+
*/
|
|
7585
7940
|
password?: string | null;
|
|
7586
|
-
/**
|
|
7941
|
+
/**
|
|
7942
|
+
* @description Contact phone number.
|
|
7943
|
+
* @example +447700900123
|
|
7944
|
+
*/
|
|
7587
7945
|
phone?: string | null;
|
|
7588
|
-
/**
|
|
7946
|
+
/**
|
|
7947
|
+
* @description Account status.
|
|
7948
|
+
* @example active
|
|
7949
|
+
*/
|
|
7589
7950
|
status?: string | null;
|
|
7590
|
-
/**
|
|
7951
|
+
/**
|
|
7952
|
+
* @description User role mode.
|
|
7953
|
+
* @example landlord
|
|
7954
|
+
*/
|
|
7591
7955
|
user_mode?: string | null;
|
|
7592
|
-
/**
|
|
7956
|
+
/**
|
|
7957
|
+
* @description Landlord address.
|
|
7958
|
+
* @example 12 Baker Street, London
|
|
7959
|
+
*/
|
|
7593
7960
|
address: string;
|
|
7594
7961
|
};
|
|
7595
7962
|
};
|
|
@@ -7614,11 +7981,11 @@ export interface operations {
|
|
|
7614
7981
|
status?: string | null;
|
|
7615
7982
|
/** @example null */
|
|
7616
7983
|
user_mode?: string | null;
|
|
7617
|
-
/** @example 2026-03-
|
|
7984
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
7618
7985
|
created_at?: string;
|
|
7619
7986
|
/**
|
|
7620
|
-
* @example
|
|
7621
|
-
*
|
|
7987
|
+
* @example 99365 Chadrick Courts Suite 343
|
|
7988
|
+
* East Cecil, FL 06748
|
|
7622
7989
|
*/
|
|
7623
7990
|
address?: string;
|
|
7624
7991
|
};
|
|
@@ -7627,6 +7994,34 @@ export interface operations {
|
|
|
7627
7994
|
};
|
|
7628
7995
|
};
|
|
7629
7996
|
};
|
|
7997
|
+
basicLoginLandlord: {
|
|
7998
|
+
parameters: {
|
|
7999
|
+
query?: never;
|
|
8000
|
+
header?: never;
|
|
8001
|
+
path?: never;
|
|
8002
|
+
cookie?: never;
|
|
8003
|
+
};
|
|
8004
|
+
requestBody: {
|
|
8005
|
+
content: {
|
|
8006
|
+
"application/json": {
|
|
8007
|
+
/** @example null */
|
|
8008
|
+
email: string;
|
|
8009
|
+
/** @example null */
|
|
8010
|
+
password: string;
|
|
8011
|
+
};
|
|
8012
|
+
};
|
|
8013
|
+
};
|
|
8014
|
+
responses: {
|
|
8015
|
+
200: {
|
|
8016
|
+
headers: {
|
|
8017
|
+
[name: string]: unknown;
|
|
8018
|
+
};
|
|
8019
|
+
content: {
|
|
8020
|
+
"text/plain": string;
|
|
8021
|
+
};
|
|
8022
|
+
};
|
|
8023
|
+
};
|
|
8024
|
+
};
|
|
7630
8025
|
createListingDraft: {
|
|
7631
8026
|
parameters: {
|
|
7632
8027
|
query?: never;
|
|
@@ -7660,7 +8055,7 @@ export interface operations {
|
|
|
7660
8055
|
content: {
|
|
7661
8056
|
"application/json": {
|
|
7662
8057
|
data?: {
|
|
7663
|
-
/** @example
|
|
8058
|
+
/** @example c2a2d4d4-7472-4268-8042-e44020f821e1 */
|
|
7664
8059
|
uid?: string;
|
|
7665
8060
|
/** @example rent */
|
|
7666
8061
|
listing_type?: string;
|
|
@@ -7712,7 +8107,7 @@ export interface operations {
|
|
|
7712
8107
|
/**
|
|
7713
8108
|
* @example [
|
|
7714
8109
|
* {
|
|
7715
|
-
* "uid": "
|
|
8110
|
+
* "uid": "e6895064-0878-4706-b91e-b4d53b20afba",
|
|
7716
8111
|
* "listing_type": "rent",
|
|
7717
8112
|
* "vertical": "property",
|
|
7718
8113
|
* "price": null,
|
|
@@ -7729,7 +8124,7 @@ export interface operations {
|
|
|
7729
8124
|
* "media": []
|
|
7730
8125
|
* },
|
|
7731
8126
|
* {
|
|
7732
|
-
* "uid": "
|
|
8127
|
+
* "uid": "cfbc1338-7900-44df-92d0-09751b0cc630",
|
|
7733
8128
|
* "listing_type": "rent",
|
|
7734
8129
|
* "vertical": "property",
|
|
7735
8130
|
* "price": null,
|
|
@@ -7748,7 +8143,7 @@ export interface operations {
|
|
|
7748
8143
|
* ]
|
|
7749
8144
|
*/
|
|
7750
8145
|
data?: {
|
|
7751
|
-
/** @example
|
|
8146
|
+
/** @example e6895064-0878-4706-b91e-b4d53b20afba */
|
|
7752
8147
|
uid?: string;
|
|
7753
8148
|
/** @example rent */
|
|
7754
8149
|
listing_type?: string;
|
|
@@ -7858,7 +8253,7 @@ export interface operations {
|
|
|
7858
8253
|
/**
|
|
7859
8254
|
* @example [
|
|
7860
8255
|
* {
|
|
7861
|
-
* "uid": "
|
|
8256
|
+
* "uid": "a9221392-cbb9-4e8a-b919-9d8ca7fade4e",
|
|
7862
8257
|
* "listing_type": "rent",
|
|
7863
8258
|
* "vertical": "property",
|
|
7864
8259
|
* "price": null,
|
|
@@ -7875,7 +8270,7 @@ export interface operations {
|
|
|
7875
8270
|
* "media": []
|
|
7876
8271
|
* },
|
|
7877
8272
|
* {
|
|
7878
|
-
* "uid": "
|
|
8273
|
+
* "uid": "575cb4fe-17b0-4288-af80-c63c1d97cc37",
|
|
7879
8274
|
* "listing_type": "rent",
|
|
7880
8275
|
* "vertical": "property",
|
|
7881
8276
|
* "price": null,
|
|
@@ -7894,7 +8289,7 @@ export interface operations {
|
|
|
7894
8289
|
* ]
|
|
7895
8290
|
*/
|
|
7896
8291
|
data?: {
|
|
7897
|
-
/** @example
|
|
8292
|
+
/** @example a9221392-cbb9-4e8a-b919-9d8ca7fade4e */
|
|
7898
8293
|
uid?: string;
|
|
7899
8294
|
/** @example rent */
|
|
7900
8295
|
listing_type?: string;
|
|
@@ -8004,7 +8399,7 @@ export interface operations {
|
|
|
8004
8399
|
/**
|
|
8005
8400
|
* @example [
|
|
8006
8401
|
* {
|
|
8007
|
-
* "uid": "
|
|
8402
|
+
* "uid": "c3d6d399-41aa-450b-a279-b88c0cdf2457",
|
|
8008
8403
|
* "listing_type": "rent",
|
|
8009
8404
|
* "vertical": "property",
|
|
8010
8405
|
* "price": null,
|
|
@@ -8021,7 +8416,7 @@ export interface operations {
|
|
|
8021
8416
|
* "media": []
|
|
8022
8417
|
* },
|
|
8023
8418
|
* {
|
|
8024
|
-
* "uid": "
|
|
8419
|
+
* "uid": "915a6c7e-402b-433a-a02f-3903a8fbb7d6",
|
|
8025
8420
|
* "listing_type": "rent",
|
|
8026
8421
|
* "vertical": "property",
|
|
8027
8422
|
* "price": null,
|
|
@@ -8040,7 +8435,7 @@ export interface operations {
|
|
|
8040
8435
|
* ]
|
|
8041
8436
|
*/
|
|
8042
8437
|
data?: {
|
|
8043
|
-
/** @example
|
|
8438
|
+
/** @example c3d6d399-41aa-450b-a279-b88c0cdf2457 */
|
|
8044
8439
|
uid?: string;
|
|
8045
8440
|
/** @example rent */
|
|
8046
8441
|
listing_type?: string;
|
|
@@ -8151,7 +8546,7 @@ export interface operations {
|
|
|
8151
8546
|
content: {
|
|
8152
8547
|
"application/json": {
|
|
8153
8548
|
data?: {
|
|
8154
|
-
/** @example
|
|
8549
|
+
/** @example 0647d125-c25c-4793-9107-3b41dc21087b */
|
|
8155
8550
|
uid?: string;
|
|
8156
8551
|
/** @example rent */
|
|
8157
8552
|
listing_type?: string;
|
|
@@ -8326,6 +8721,70 @@ export interface operations {
|
|
|
8326
8721
|
};
|
|
8327
8722
|
};
|
|
8328
8723
|
};
|
|
8724
|
+
saveShortLetDetails: {
|
|
8725
|
+
parameters: {
|
|
8726
|
+
query?: never;
|
|
8727
|
+
header?: never;
|
|
8728
|
+
path: {
|
|
8729
|
+
/** @description The UID of the listing. */
|
|
8730
|
+
listing_uid: string;
|
|
8731
|
+
};
|
|
8732
|
+
cookie?: never;
|
|
8733
|
+
};
|
|
8734
|
+
requestBody: {
|
|
8735
|
+
content: {
|
|
8736
|
+
"application/json": {
|
|
8737
|
+
/**
|
|
8738
|
+
* @description Nightly rental price for the property. Must be at least 0.
|
|
8739
|
+
* @example 120
|
|
8740
|
+
*/
|
|
8741
|
+
nightly_price: number;
|
|
8742
|
+
/**
|
|
8743
|
+
* @description Minimum number of nights a guest must book. Must be at least 1.
|
|
8744
|
+
* @example 2
|
|
8745
|
+
*/
|
|
8746
|
+
minimum_stay_nights: number;
|
|
8747
|
+
/**
|
|
8748
|
+
* @description Maximum number of nights allowed for a single booking. Optional.
|
|
8749
|
+
* @example 30
|
|
8750
|
+
*/
|
|
8751
|
+
maximum_stay_nights?: number | null;
|
|
8752
|
+
/**
|
|
8753
|
+
* @description Optional cleaning fee charged per booking. Must be at least 0.
|
|
8754
|
+
* @example 40
|
|
8755
|
+
*/
|
|
8756
|
+
cleaning_fee?: number | null;
|
|
8757
|
+
/**
|
|
8758
|
+
* @description Check-in time for guests (24-hour format). Must be a valid date in the format <code>H:i</code>.
|
|
8759
|
+
* @example 14:00
|
|
8760
|
+
*/
|
|
8761
|
+
check_in_time?: string | null;
|
|
8762
|
+
/**
|
|
8763
|
+
* @description Check-out time for guests (24-hour format). Must be a valid date in the format <code>H:i</code>.
|
|
8764
|
+
* @example 11:00
|
|
8765
|
+
*/
|
|
8766
|
+
check_out_time?: string | null;
|
|
8767
|
+
};
|
|
8768
|
+
};
|
|
8769
|
+
};
|
|
8770
|
+
responses: {
|
|
8771
|
+
200: {
|
|
8772
|
+
headers: {
|
|
8773
|
+
[name: string]: unknown;
|
|
8774
|
+
};
|
|
8775
|
+
content: {
|
|
8776
|
+
"application/json": {
|
|
8777
|
+
/** @example Short let details updated Successfully */
|
|
8778
|
+
message?: string;
|
|
8779
|
+
/** @example success */
|
|
8780
|
+
event?: string;
|
|
8781
|
+
/** @example [] */
|
|
8782
|
+
data?: unknown[];
|
|
8783
|
+
};
|
|
8784
|
+
};
|
|
8785
|
+
};
|
|
8786
|
+
};
|
|
8787
|
+
};
|
|
8329
8788
|
saveListingFeatures: {
|
|
8330
8789
|
parameters: {
|
|
8331
8790
|
query?: never;
|
|
@@ -8585,7 +9044,7 @@ export interface operations {
|
|
|
8585
9044
|
content: {
|
|
8586
9045
|
"application/json": {
|
|
8587
9046
|
data?: {
|
|
8588
|
-
/** @example
|
|
9047
|
+
/** @example 230 */
|
|
8589
9048
|
id?: number;
|
|
8590
9049
|
/** @example 2 */
|
|
8591
9050
|
listing_id?: number;
|
|
@@ -8710,7 +9169,7 @@ export interface operations {
|
|
|
8710
9169
|
content: {
|
|
8711
9170
|
"application/json": {
|
|
8712
9171
|
data?: {
|
|
8713
|
-
/** @example
|
|
9172
|
+
/** @example 37f13297-2f93-4bc5-afba-6459217545d4 */
|
|
8714
9173
|
uid?: string;
|
|
8715
9174
|
/** @example rent */
|
|
8716
9175
|
listing_type?: string;
|
|
@@ -8814,7 +9273,7 @@ export interface operations {
|
|
|
8814
9273
|
content: {
|
|
8815
9274
|
"application/json": {
|
|
8816
9275
|
data?: {
|
|
8817
|
-
/** @example
|
|
9276
|
+
/** @example 130 */
|
|
8818
9277
|
id?: number;
|
|
8819
9278
|
/** @example 5 */
|
|
8820
9279
|
listing_id?: number;
|
|
@@ -8838,7 +9297,7 @@ export interface operations {
|
|
|
8838
9297
|
reviewed_by?: number;
|
|
8839
9298
|
/** @example null */
|
|
8840
9299
|
reviewed_at?: string | null;
|
|
8841
|
-
/** @example 2026-03-
|
|
9300
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
8842
9301
|
created_at?: string;
|
|
8843
9302
|
};
|
|
8844
9303
|
};
|
|
@@ -8893,35 +9352,35 @@ export interface operations {
|
|
|
8893
9352
|
/**
|
|
8894
9353
|
* @example [
|
|
8895
9354
|
* {
|
|
8896
|
-
* "uid": "
|
|
9355
|
+
* "uid": "46f5c776-f683-4bfe-92bd-34ffcef7a525",
|
|
8897
9356
|
* "listing_id": 1,
|
|
8898
9357
|
* "landlord_id": 2,
|
|
8899
9358
|
* "tenant_id": 2,
|
|
8900
9359
|
* "rent_amount": "1598.98",
|
|
8901
9360
|
* "deposit_amount": "3360.55",
|
|
8902
9361
|
* "state": "renewal_pending",
|
|
8903
|
-
* "start_date": "2025-07-
|
|
8904
|
-
* "end_date": "2026-07-
|
|
9362
|
+
* "start_date": "2025-07-30T00:00:00.000000Z",
|
|
9363
|
+
* "end_date": "2026-07-30T00:00:00.000000Z",
|
|
8905
9364
|
* "is_periodic": false,
|
|
8906
|
-
* "created_at": "2026-03-
|
|
9365
|
+
* "created_at": "2026-03-14T21:11:49.000000Z"
|
|
8907
9366
|
* },
|
|
8908
9367
|
* {
|
|
8909
|
-
* "uid": "
|
|
9368
|
+
* "uid": "2a38d956-3b9f-470b-8f81-0308615946f8",
|
|
8910
9369
|
* "listing_id": 1,
|
|
8911
9370
|
* "landlord_id": 2,
|
|
8912
9371
|
* "tenant_id": 2,
|
|
8913
9372
|
* "rent_amount": "2942.24",
|
|
8914
9373
|
* "deposit_amount": "3019.78",
|
|
8915
9374
|
* "state": "terminated",
|
|
8916
|
-
* "start_date": "2025-12-
|
|
8917
|
-
* "end_date": "2026-12-
|
|
9375
|
+
* "start_date": "2025-12-25T00:00:00.000000Z",
|
|
9376
|
+
* "end_date": "2026-12-25T00:00:00.000000Z",
|
|
8918
9377
|
* "is_periodic": false,
|
|
8919
|
-
* "created_at": "2026-03-
|
|
9378
|
+
* "created_at": "2026-03-14T21:11:49.000000Z"
|
|
8920
9379
|
* }
|
|
8921
9380
|
* ]
|
|
8922
9381
|
*/
|
|
8923
9382
|
data?: {
|
|
8924
|
-
/** @example
|
|
9383
|
+
/** @example 46f5c776-f683-4bfe-92bd-34ffcef7a525 */
|
|
8925
9384
|
uid?: string;
|
|
8926
9385
|
/** @example 1 */
|
|
8927
9386
|
listing_id?: number;
|
|
@@ -8935,13 +9394,13 @@ export interface operations {
|
|
|
8935
9394
|
deposit_amount?: string;
|
|
8936
9395
|
/** @example renewal_pending */
|
|
8937
9396
|
state?: string;
|
|
8938
|
-
/** @example 2025-07-
|
|
9397
|
+
/** @example 2025-07-30T00:00:00.000000Z */
|
|
8939
9398
|
start_date?: string;
|
|
8940
|
-
/** @example 2026-07-
|
|
9399
|
+
/** @example 2026-07-30T00:00:00.000000Z */
|
|
8941
9400
|
end_date?: string;
|
|
8942
9401
|
/** @example false */
|
|
8943
9402
|
is_periodic?: boolean;
|
|
8944
|
-
/** @example 2026-03-
|
|
9403
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
8945
9404
|
created_at?: string;
|
|
8946
9405
|
}[];
|
|
8947
9406
|
links?: {
|
|
@@ -9048,7 +9507,7 @@ export interface operations {
|
|
|
9048
9507
|
content: {
|
|
9049
9508
|
"application/json": {
|
|
9050
9509
|
data?: {
|
|
9051
|
-
/** @example
|
|
9510
|
+
/** @example 125 */
|
|
9052
9511
|
id?: number;
|
|
9053
9512
|
/** @example 1 */
|
|
9054
9513
|
tenancy_id?: number;
|
|
@@ -9070,9 +9529,9 @@ export interface operations {
|
|
|
9070
9529
|
rejection_reason?: string | null;
|
|
9071
9530
|
/** @example 1 */
|
|
9072
9531
|
reviewed_by?: number;
|
|
9073
|
-
/** @example 2026-03-
|
|
9532
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
9074
9533
|
reviewed_at?: string;
|
|
9075
|
-
/** @example 2026-03-
|
|
9534
|
+
/** @example 2026-03-14T21:11:49.000000Z */
|
|
9076
9535
|
created_at?: string;
|
|
9077
9536
|
};
|
|
9078
9537
|
};
|
|
@@ -9135,7 +9594,7 @@ export interface operations {
|
|
|
9135
9594
|
/**
|
|
9136
9595
|
* @example [
|
|
9137
9596
|
* {
|
|
9138
|
-
* "uid": "
|
|
9597
|
+
* "uid": "99194587-a1ee-49c9-883f-4406c40aee59",
|
|
9139
9598
|
* "listing_type": "rent",
|
|
9140
9599
|
* "vertical": "property",
|
|
9141
9600
|
* "price": null,
|
|
@@ -9152,7 +9611,7 @@ export interface operations {
|
|
|
9152
9611
|
* "media": []
|
|
9153
9612
|
* },
|
|
9154
9613
|
* {
|
|
9155
|
-
* "uid": "
|
|
9614
|
+
* "uid": "f8d99222-2fc9-4b77-8498-84044f526f97",
|
|
9156
9615
|
* "listing_type": "rent",
|
|
9157
9616
|
* "vertical": "property",
|
|
9158
9617
|
* "price": null,
|
|
@@ -9171,7 +9630,7 @@ export interface operations {
|
|
|
9171
9630
|
* ]
|
|
9172
9631
|
*/
|
|
9173
9632
|
data?: {
|
|
9174
|
-
/** @example
|
|
9633
|
+
/** @example 99194587-a1ee-49c9-883f-4406c40aee59 */
|
|
9175
9634
|
uid?: string;
|
|
9176
9635
|
/** @example rent */
|
|
9177
9636
|
listing_type?: string;
|
|
@@ -9286,6 +9745,12 @@ export interface operations {
|
|
|
9286
9745
|
max_price?: number;
|
|
9287
9746
|
/** @description Keyword search. */
|
|
9288
9747
|
q?: string;
|
|
9748
|
+
/** @description Filter by nightly_price. */
|
|
9749
|
+
nightly_price?: string;
|
|
9750
|
+
/** @description Available from . Must be a valid date. */
|
|
9751
|
+
available_from?: string;
|
|
9752
|
+
/** @description Available to . Must be a valid date. */
|
|
9753
|
+
available_to?: string;
|
|
9289
9754
|
/** @description Sorting column. */
|
|
9290
9755
|
sort?: string;
|
|
9291
9756
|
/** @description Sort direction. */
|
|
@@ -9308,7 +9773,7 @@ export interface operations {
|
|
|
9308
9773
|
/**
|
|
9309
9774
|
* @example [
|
|
9310
9775
|
* {
|
|
9311
|
-
* "uid": "
|
|
9776
|
+
* "uid": "16a86e3a-1669-4496-bfcd-a267a1de48e0",
|
|
9312
9777
|
* "listing_type": "rent",
|
|
9313
9778
|
* "vertical": "property",
|
|
9314
9779
|
* "price": null,
|
|
@@ -9325,7 +9790,7 @@ export interface operations {
|
|
|
9325
9790
|
* "media": []
|
|
9326
9791
|
* },
|
|
9327
9792
|
* {
|
|
9328
|
-
* "uid": "
|
|
9793
|
+
* "uid": "899404f2-1dc0-4224-b0f4-6821f74148a2",
|
|
9329
9794
|
* "listing_type": "rent",
|
|
9330
9795
|
* "vertical": "property",
|
|
9331
9796
|
* "price": null,
|
|
@@ -9344,7 +9809,7 @@ export interface operations {
|
|
|
9344
9809
|
* ]
|
|
9345
9810
|
*/
|
|
9346
9811
|
data?: {
|
|
9347
|
-
/** @example
|
|
9812
|
+
/** @example 16a86e3a-1669-4496-bfcd-a267a1de48e0 */
|
|
9348
9813
|
uid?: string;
|
|
9349
9814
|
/** @example rent */
|
|
9350
9815
|
listing_type?: string;
|
|
@@ -9448,37 +9913,32 @@ export interface operations {
|
|
|
9448
9913
|
};
|
|
9449
9914
|
requestBody?: never;
|
|
9450
9915
|
responses: {
|
|
9916
|
+
/** @description Listing Retrieve Successfully */
|
|
9451
9917
|
200: {
|
|
9452
9918
|
headers: {
|
|
9453
9919
|
[name: string]: unknown;
|
|
9454
9920
|
};
|
|
9455
9921
|
content: {
|
|
9456
9922
|
"application/json": {
|
|
9923
|
+
/** @example Listing Retrieve Successfully */
|
|
9924
|
+
message?: string;
|
|
9925
|
+
/** @example null */
|
|
9926
|
+
event?: string | null;
|
|
9457
9927
|
data?: {
|
|
9458
|
-
/** @example
|
|
9459
|
-
uid?: string;
|
|
9460
|
-
/** @example
|
|
9461
|
-
listing_type?: string;
|
|
9462
|
-
/** @example
|
|
9463
|
-
vertical?: string;
|
|
9928
|
+
/** @example null */
|
|
9929
|
+
uid?: string | null;
|
|
9930
|
+
/** @example null */
|
|
9931
|
+
listing_type?: string | null;
|
|
9932
|
+
/** @example null */
|
|
9933
|
+
vertical?: string | null;
|
|
9464
9934
|
/** @example null */
|
|
9465
9935
|
price?: string | null;
|
|
9466
|
-
/** @example
|
|
9467
|
-
state?: string;
|
|
9936
|
+
/** @example null */
|
|
9937
|
+
state?: string | null;
|
|
9468
9938
|
/** @example false */
|
|
9469
9939
|
is_visible?: boolean;
|
|
9470
|
-
|
|
9471
|
-
|
|
9472
|
-
property_type?: string | null;
|
|
9473
|
-
/** @example null */
|
|
9474
|
-
bedrooms?: string | null;
|
|
9475
|
-
/** @example null */
|
|
9476
|
-
bathrooms?: string | null;
|
|
9477
|
-
/** @example null */
|
|
9478
|
-
city?: string | null;
|
|
9479
|
-
/** @example null */
|
|
9480
|
-
availability?: string | null;
|
|
9481
|
-
};
|
|
9940
|
+
/** @example [] */
|
|
9941
|
+
summary?: unknown[];
|
|
9482
9942
|
/** @example [] */
|
|
9483
9943
|
workflow?: unknown[];
|
|
9484
9944
|
/** @example [] */
|
|
@@ -9518,35 +9978,35 @@ export interface operations {
|
|
|
9518
9978
|
/**
|
|
9519
9979
|
* @example [
|
|
9520
9980
|
* {
|
|
9521
|
-
* "uid": "
|
|
9981
|
+
* "uid": "b64bbb49-6c0a-47fe-920a-ddb35b6fcdf3",
|
|
9522
9982
|
* "title": "Nostrum qui commodi.",
|
|
9523
9983
|
* "description": "Odit et et modi. Nostrum omnis autem et consequatur aut. Enim non facere tempora ex voluptatem laboriosam praesentium. Adipisci molestias fugit deleniti distinctio eum doloremque id.",
|
|
9524
9984
|
* "status": "reported",
|
|
9525
9985
|
* "priority": "low",
|
|
9526
|
-
* "reported_at": "2026-03-
|
|
9986
|
+
* "reported_at": "2026-03-12T12:27:31.000000Z",
|
|
9527
9987
|
* "assigned_at": null,
|
|
9528
9988
|
* "completed_at": null,
|
|
9529
|
-
* "sla_deadline": "2026-03-
|
|
9530
|
-
* "created_at": "2026-03-
|
|
9531
|
-
* "updated_at": "2026-03-
|
|
9989
|
+
* "sla_deadline": "2026-03-19T08:09:36.000000Z",
|
|
9990
|
+
* "created_at": "2026-03-14T21:11:50.000000Z",
|
|
9991
|
+
* "updated_at": "2026-03-14T21:11:50.000000Z"
|
|
9532
9992
|
* },
|
|
9533
9993
|
* {
|
|
9534
|
-
* "uid": "
|
|
9994
|
+
* "uid": "467ca303-0e9f-43e5-bf0e-61ef1f6422d7",
|
|
9535
9995
|
* "title": "Mollitia deleniti nemo odit.",
|
|
9536
9996
|
* "description": "Est dignissimos neque blanditiis odio veritatis excepturi doloribus. Fugit qui repudiandae laboriosam est alias. Ratione nemo voluptate accusamus ut et recusandae modi rerum. Repellendus assumenda et tenetur ab reiciendis.",
|
|
9537
9997
|
* "status": "reported",
|
|
9538
9998
|
* "priority": "urgent",
|
|
9539
|
-
* "reported_at": "2026-03-
|
|
9999
|
+
* "reported_at": "2026-03-08T18:34:29.000000Z",
|
|
9540
10000
|
* "assigned_at": null,
|
|
9541
10001
|
* "completed_at": null,
|
|
9542
|
-
* "sla_deadline": "2026-03-
|
|
9543
|
-
* "created_at": "2026-03-
|
|
9544
|
-
* "updated_at": "2026-03-
|
|
10002
|
+
* "sla_deadline": "2026-03-18T01:53:37.000000Z",
|
|
10003
|
+
* "created_at": "2026-03-14T21:11:50.000000Z",
|
|
10004
|
+
* "updated_at": "2026-03-14T21:11:50.000000Z"
|
|
9545
10005
|
* }
|
|
9546
10006
|
* ]
|
|
9547
10007
|
*/
|
|
9548
10008
|
data?: {
|
|
9549
|
-
/** @example
|
|
10009
|
+
/** @example b64bbb49-6c0a-47fe-920a-ddb35b6fcdf3 */
|
|
9550
10010
|
uid?: string;
|
|
9551
10011
|
/** @example Nostrum qui commodi. */
|
|
9552
10012
|
title?: string;
|
|
@@ -9556,17 +10016,17 @@ export interface operations {
|
|
|
9556
10016
|
status?: string;
|
|
9557
10017
|
/** @example low */
|
|
9558
10018
|
priority?: string;
|
|
9559
|
-
/** @example 2026-03-
|
|
10019
|
+
/** @example 2026-03-12T12:27:31.000000Z */
|
|
9560
10020
|
reported_at?: string;
|
|
9561
10021
|
/** @example null */
|
|
9562
10022
|
assigned_at?: string | null;
|
|
9563
10023
|
/** @example null */
|
|
9564
10024
|
completed_at?: string | null;
|
|
9565
|
-
/** @example 2026-03-
|
|
10025
|
+
/** @example 2026-03-19T08:09:36.000000Z */
|
|
9566
10026
|
sla_deadline?: string;
|
|
9567
|
-
/** @example 2026-03-
|
|
10027
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
9568
10028
|
created_at?: string;
|
|
9569
|
-
/** @example 2026-03-
|
|
10029
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
9570
10030
|
updated_at?: string;
|
|
9571
10031
|
}[];
|
|
9572
10032
|
links?: {
|
|
@@ -9681,35 +10141,35 @@ export interface operations {
|
|
|
9681
10141
|
/**
|
|
9682
10142
|
* @example [
|
|
9683
10143
|
* {
|
|
9684
|
-
* "uid": "
|
|
10144
|
+
* "uid": "0d361524-a76b-43c5-ae58-fbd06c15e449",
|
|
9685
10145
|
* "title": "Quos velit et fugiat sunt nihil.",
|
|
9686
10146
|
* "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.",
|
|
9687
10147
|
* "status": "reported",
|
|
9688
10148
|
* "priority": "emergency",
|
|
9689
|
-
* "reported_at": "2026-03-
|
|
9690
|
-
* "assigned_at": "2026-03-
|
|
10149
|
+
* "reported_at": "2026-03-08T08:25:25.000000Z",
|
|
10150
|
+
* "assigned_at": "2026-03-13T04:45:17.000000Z",
|
|
9691
10151
|
* "completed_at": null,
|
|
9692
|
-
* "sla_deadline": "2026-03-
|
|
9693
|
-
* "created_at": "2026-03-
|
|
9694
|
-
* "updated_at": "2026-03-
|
|
10152
|
+
* "sla_deadline": "2026-03-16T10:07:40.000000Z",
|
|
10153
|
+
* "created_at": "2026-03-14T21:11:50.000000Z",
|
|
10154
|
+
* "updated_at": "2026-03-14T21:11:50.000000Z"
|
|
9695
10155
|
* },
|
|
9696
10156
|
* {
|
|
9697
|
-
* "uid": "
|
|
10157
|
+
* "uid": "ad5d2193-8521-4680-85ce-d46a89e18bbc",
|
|
9698
10158
|
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
9699
10159
|
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
9700
10160
|
* "status": "completed",
|
|
9701
10161
|
* "priority": "normal",
|
|
9702
|
-
* "reported_at": "2026-03-
|
|
10162
|
+
* "reported_at": "2026-03-10T21:03:50.000000Z",
|
|
9703
10163
|
* "assigned_at": null,
|
|
9704
10164
|
* "completed_at": null,
|
|
9705
|
-
* "sla_deadline": "2026-03-
|
|
9706
|
-
* "created_at": "2026-03-
|
|
9707
|
-
* "updated_at": "2026-03-
|
|
10165
|
+
* "sla_deadline": "2026-03-17T18:07:37.000000Z",
|
|
10166
|
+
* "created_at": "2026-03-14T21:11:50.000000Z",
|
|
10167
|
+
* "updated_at": "2026-03-14T21:11:50.000000Z"
|
|
9708
10168
|
* }
|
|
9709
10169
|
* ]
|
|
9710
10170
|
*/
|
|
9711
10171
|
data?: {
|
|
9712
|
-
/** @example
|
|
10172
|
+
/** @example 0d361524-a76b-43c5-ae58-fbd06c15e449 */
|
|
9713
10173
|
uid?: string;
|
|
9714
10174
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
9715
10175
|
title?: string;
|
|
@@ -9719,17 +10179,17 @@ export interface operations {
|
|
|
9719
10179
|
status?: string;
|
|
9720
10180
|
/** @example emergency */
|
|
9721
10181
|
priority?: string;
|
|
9722
|
-
/** @example 2026-03-
|
|
10182
|
+
/** @example 2026-03-08T08:25:25.000000Z */
|
|
9723
10183
|
reported_at?: string;
|
|
9724
|
-
/** @example 2026-03-
|
|
10184
|
+
/** @example 2026-03-13T04:45:17.000000Z */
|
|
9725
10185
|
assigned_at?: string;
|
|
9726
10186
|
/** @example null */
|
|
9727
10187
|
completed_at?: string | null;
|
|
9728
|
-
/** @example 2026-03-
|
|
10188
|
+
/** @example 2026-03-16T10:07:40.000000Z */
|
|
9729
10189
|
sla_deadline?: string;
|
|
9730
|
-
/** @example 2026-03-
|
|
10190
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
9731
10191
|
created_at?: string;
|
|
9732
|
-
/** @example 2026-03-
|
|
10192
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
9733
10193
|
updated_at?: string;
|
|
9734
10194
|
}[];
|
|
9735
10195
|
links?: {
|
|
@@ -9824,13 +10284,13 @@ export interface operations {
|
|
|
9824
10284
|
content: {
|
|
9825
10285
|
"application/json": {
|
|
9826
10286
|
data?: {
|
|
9827
|
-
/** @example
|
|
10287
|
+
/** @example 84be10e2-74b7-4434-9c77-e55b29d799cb */
|
|
9828
10288
|
uid?: string;
|
|
9829
10289
|
/** @example image */
|
|
9830
10290
|
file_type?: string;
|
|
9831
10291
|
/** @example /storage/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
9832
10292
|
url?: string;
|
|
9833
|
-
/** @example 2026-03-
|
|
10293
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
9834
10294
|
created_at?: string;
|
|
9835
10295
|
};
|
|
9836
10296
|
};
|
|
@@ -9853,12 +10313,17 @@ export interface operations {
|
|
|
9853
10313
|
* @example listing
|
|
9854
10314
|
* @enum {string}
|
|
9855
10315
|
*/
|
|
9856
|
-
type: "property_inquiry" | "booking" | "support";
|
|
10316
|
+
type: "property_inquiry" | "booking" | "support" | "general" | "appointment";
|
|
9857
10317
|
/**
|
|
9858
10318
|
* @description Listing ID if the conversation is related to a listing. The <code>id</code> of an existing record in the listings table.
|
|
9859
10319
|
* @example 15
|
|
9860
10320
|
*/
|
|
9861
10321
|
listing_id?: string | null;
|
|
10322
|
+
/**
|
|
10323
|
+
* @description Booking ID if the conversation is related to a booking. The <code>id</code> of an existing record in the bookings table.
|
|
10324
|
+
* @example 15
|
|
10325
|
+
*/
|
|
10326
|
+
booking_id?: string | null;
|
|
9862
10327
|
};
|
|
9863
10328
|
};
|
|
9864
10329
|
};
|
|
@@ -9870,7 +10335,7 @@ export interface operations {
|
|
|
9870
10335
|
content: {
|
|
9871
10336
|
"application/json": {
|
|
9872
10337
|
data?: {
|
|
9873
|
-
/** @example
|
|
10338
|
+
/** @example 535 */
|
|
9874
10339
|
id?: number;
|
|
9875
10340
|
/** @example property_inquiry */
|
|
9876
10341
|
type?: string;
|
|
@@ -9878,7 +10343,7 @@ export interface operations {
|
|
|
9878
10343
|
listing_id?: number;
|
|
9879
10344
|
/** @example null */
|
|
9880
10345
|
last_message_at?: string | null;
|
|
9881
|
-
/** @example 2026-03-
|
|
10346
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
9882
10347
|
created_at?: string;
|
|
9883
10348
|
};
|
|
9884
10349
|
};
|
|
@@ -9904,23 +10369,23 @@ export interface operations {
|
|
|
9904
10369
|
/**
|
|
9905
10370
|
* @example [
|
|
9906
10371
|
* {
|
|
9907
|
-
* "id":
|
|
10372
|
+
* "id": 536,
|
|
9908
10373
|
* "type": "property_inquiry",
|
|
9909
10374
|
* "listing_id": 2,
|
|
9910
10375
|
* "last_message_at": null,
|
|
9911
|
-
* "created_at": "2026-03-
|
|
10376
|
+
* "created_at": "2026-03-14T21:11:50.000000Z"
|
|
9912
10377
|
* },
|
|
9913
10378
|
* {
|
|
9914
|
-
* "id":
|
|
10379
|
+
* "id": 537,
|
|
9915
10380
|
* "type": "property_inquiry",
|
|
9916
10381
|
* "listing_id": 2,
|
|
9917
10382
|
* "last_message_at": null,
|
|
9918
|
-
* "created_at": "2026-03-
|
|
10383
|
+
* "created_at": "2026-03-14T21:11:50.000000Z"
|
|
9919
10384
|
* }
|
|
9920
10385
|
* ]
|
|
9921
10386
|
*/
|
|
9922
10387
|
data?: {
|
|
9923
|
-
/** @example
|
|
10388
|
+
/** @example 536 */
|
|
9924
10389
|
id?: number;
|
|
9925
10390
|
/** @example property_inquiry */
|
|
9926
10391
|
type?: string;
|
|
@@ -9928,7 +10393,7 @@ export interface operations {
|
|
|
9928
10393
|
listing_id?: number;
|
|
9929
10394
|
/** @example null */
|
|
9930
10395
|
last_message_at?: string | null;
|
|
9931
|
-
/** @example 2026-03-
|
|
10396
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
9932
10397
|
created_at?: string;
|
|
9933
10398
|
}[];
|
|
9934
10399
|
links?: {
|
|
@@ -10015,29 +10480,29 @@ export interface operations {
|
|
|
10015
10480
|
/**
|
|
10016
10481
|
* @example [
|
|
10017
10482
|
* {
|
|
10018
|
-
* "id":
|
|
10483
|
+
* "id": 322,
|
|
10019
10484
|
* "conversation_id": 1,
|
|
10020
10485
|
* "body": "Aut ab provident perspiciatis quo omnis nostrum aut.",
|
|
10021
10486
|
* "attachment_url": null,
|
|
10022
10487
|
* "is_system": false,
|
|
10023
10488
|
* "state": "delivered",
|
|
10024
10489
|
* "read_at": null,
|
|
10025
|
-
* "created_at": "2026-03-
|
|
10490
|
+
* "created_at": "2026-03-14T21:11:50.000000Z"
|
|
10026
10491
|
* },
|
|
10027
10492
|
* {
|
|
10028
|
-
* "id":
|
|
10493
|
+
* "id": 323,
|
|
10029
10494
|
* "conversation_id": 1,
|
|
10030
10495
|
* "body": "Quidem nostrum qui commodi incidunt iure odit.",
|
|
10031
10496
|
* "attachment_url": null,
|
|
10032
10497
|
* "is_system": false,
|
|
10033
10498
|
* "state": "delivered",
|
|
10034
10499
|
* "read_at": null,
|
|
10035
|
-
* "created_at": "2026-03-
|
|
10500
|
+
* "created_at": "2026-03-14T21:11:50.000000Z"
|
|
10036
10501
|
* }
|
|
10037
10502
|
* ]
|
|
10038
10503
|
*/
|
|
10039
10504
|
data?: {
|
|
10040
|
-
/** @example
|
|
10505
|
+
/** @example 322 */
|
|
10041
10506
|
id?: number;
|
|
10042
10507
|
/** @example 1 */
|
|
10043
10508
|
conversation_id?: number;
|
|
@@ -10051,7 +10516,7 @@ export interface operations {
|
|
|
10051
10516
|
state?: string;
|
|
10052
10517
|
/** @example null */
|
|
10053
10518
|
read_at?: string | null;
|
|
10054
|
-
/** @example 2026-03-
|
|
10519
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
10055
10520
|
created_at?: string;
|
|
10056
10521
|
}[];
|
|
10057
10522
|
links?: {
|
|
@@ -10222,28 +10687,28 @@ export interface operations {
|
|
|
10222
10687
|
/**
|
|
10223
10688
|
* @example [
|
|
10224
10689
|
* {
|
|
10225
|
-
* "id":
|
|
10690
|
+
* "id": "280e4e2c-9767-4957-9a8c-dd9ec2da0297",
|
|
10226
10691
|
* "type": "APPOINTMENT_CREATED",
|
|
10227
10692
|
* "title": "faker notification",
|
|
10228
10693
|
* "body": "faker notification body",
|
|
10229
10694
|
* "data": [],
|
|
10230
10695
|
* "read_at": null,
|
|
10231
|
-
* "created_at":
|
|
10696
|
+
* "created_at": "2026-03-14T21:11:50.000000Z"
|
|
10232
10697
|
* },
|
|
10233
10698
|
* {
|
|
10234
|
-
* "id": "
|
|
10699
|
+
* "id": "4ed348eb-c8cd-4898-bf74-1ff132bea6e2",
|
|
10235
10700
|
* "type": "APPOINTMENT_CREATED",
|
|
10236
10701
|
* "title": "faker notification",
|
|
10237
10702
|
* "body": "faker notification body",
|
|
10238
10703
|
* "data": [],
|
|
10239
10704
|
* "read_at": null,
|
|
10240
|
-
* "created_at": "2026-03-
|
|
10705
|
+
* "created_at": "2026-03-14T21:11:50.000000Z"
|
|
10241
10706
|
* }
|
|
10242
10707
|
* ]
|
|
10243
10708
|
*/
|
|
10244
10709
|
data?: {
|
|
10245
|
-
/** @example
|
|
10246
|
-
id?: string
|
|
10710
|
+
/** @example 280e4e2c-9767-4957-9a8c-dd9ec2da0297 */
|
|
10711
|
+
id?: string;
|
|
10247
10712
|
/** @example APPOINTMENT_CREATED */
|
|
10248
10713
|
type?: string;
|
|
10249
10714
|
/** @example faker notification */
|
|
@@ -10254,8 +10719,8 @@ export interface operations {
|
|
|
10254
10719
|
data?: unknown[];
|
|
10255
10720
|
/** @example null */
|
|
10256
10721
|
read_at?: string | null;
|
|
10257
|
-
/** @example
|
|
10258
|
-
created_at?: string
|
|
10722
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
10723
|
+
created_at?: string;
|
|
10259
10724
|
}[];
|
|
10260
10725
|
links?: {
|
|
10261
10726
|
/** @example /?page=1 */
|
|
@@ -10338,7 +10803,7 @@ export interface operations {
|
|
|
10338
10803
|
};
|
|
10339
10804
|
content: {
|
|
10340
10805
|
"application/json": {
|
|
10341
|
-
/** @example
|
|
10806
|
+
/** @example 317b4d96-b982-42aa-b1fb-bab3ca083b6f */
|
|
10342
10807
|
id?: string;
|
|
10343
10808
|
/** @example APPOINTMENT_CREATED */
|
|
10344
10809
|
type?: string;
|
|
@@ -10350,7 +10815,7 @@ export interface operations {
|
|
|
10350
10815
|
data?: unknown[];
|
|
10351
10816
|
/** @example null */
|
|
10352
10817
|
read_at?: string | null;
|
|
10353
|
-
/** @example 2026-03-
|
|
10818
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
10354
10819
|
created_at?: string;
|
|
10355
10820
|
};
|
|
10356
10821
|
};
|
|
@@ -10543,31 +11008,31 @@ export interface operations {
|
|
|
10543
11008
|
/**
|
|
10544
11009
|
* @example [
|
|
10545
11010
|
* {
|
|
10546
|
-
* "id":
|
|
11011
|
+
* "id": 1053,
|
|
10547
11012
|
* "rating": 1,
|
|
10548
11013
|
* "comment": "Nice Listing",
|
|
10549
11014
|
* "reviewer": {
|
|
10550
11015
|
* "id": 5,
|
|
10551
11016
|
* "name": "Poppy Lloyd"
|
|
10552
11017
|
* },
|
|
10553
|
-
* "created_at": "2026-03-
|
|
10554
|
-
* "updated_at": "2026-03-
|
|
11018
|
+
* "created_at": "2026-03-14T21:11:50+00:00",
|
|
11019
|
+
* "updated_at": "2026-03-14T21:11:50+00:00"
|
|
10555
11020
|
* },
|
|
10556
11021
|
* {
|
|
10557
|
-
* "id":
|
|
11022
|
+
* "id": 1054,
|
|
10558
11023
|
* "rating": 1,
|
|
10559
11024
|
* "comment": "Nice Listing",
|
|
10560
11025
|
* "reviewer": {
|
|
10561
11026
|
* "id": 6,
|
|
10562
11027
|
* "name": "Harry Moore"
|
|
10563
11028
|
* },
|
|
10564
|
-
* "created_at": "2026-03-
|
|
10565
|
-
* "updated_at": "2026-03-
|
|
11029
|
+
* "created_at": "2026-03-14T21:11:50+00:00",
|
|
11030
|
+
* "updated_at": "2026-03-14T21:11:50+00:00"
|
|
10566
11031
|
* }
|
|
10567
11032
|
* ]
|
|
10568
11033
|
*/
|
|
10569
11034
|
data?: {
|
|
10570
|
-
/** @example
|
|
11035
|
+
/** @example 1053 */
|
|
10571
11036
|
id?: number;
|
|
10572
11037
|
/** @example 1 */
|
|
10573
11038
|
rating?: number;
|
|
@@ -10579,9 +11044,9 @@ export interface operations {
|
|
|
10579
11044
|
/** @example Poppy Lloyd */
|
|
10580
11045
|
name?: string;
|
|
10581
11046
|
};
|
|
10582
|
-
/** @example 2026-03-
|
|
11047
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10583
11048
|
created_at?: string;
|
|
10584
|
-
/** @example 2026-03-
|
|
11049
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10585
11050
|
updated_at?: string;
|
|
10586
11051
|
}[];
|
|
10587
11052
|
links?: {
|
|
@@ -10723,7 +11188,7 @@ export interface operations {
|
|
|
10723
11188
|
content: {
|
|
10724
11189
|
"application/json": {
|
|
10725
11190
|
data?: {
|
|
10726
|
-
/** @example
|
|
11191
|
+
/** @example 1055 */
|
|
10727
11192
|
id?: number;
|
|
10728
11193
|
/** @example 1 */
|
|
10729
11194
|
rating?: number;
|
|
@@ -10735,9 +11200,9 @@ export interface operations {
|
|
|
10735
11200
|
/** @example Poppy Lloyd */
|
|
10736
11201
|
name?: string;
|
|
10737
11202
|
};
|
|
10738
|
-
/** @example 2026-03-
|
|
11203
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10739
11204
|
created_at?: string;
|
|
10740
|
-
/** @example 2026-03-
|
|
11205
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10741
11206
|
updated_at?: string;
|
|
10742
11207
|
};
|
|
10743
11208
|
};
|
|
@@ -10781,7 +11246,7 @@ export interface operations {
|
|
|
10781
11246
|
content: {
|
|
10782
11247
|
"application/json": {
|
|
10783
11248
|
data?: {
|
|
10784
|
-
/** @example
|
|
11249
|
+
/** @example 1056 */
|
|
10785
11250
|
id?: number;
|
|
10786
11251
|
/** @example 1 */
|
|
10787
11252
|
rating?: number;
|
|
@@ -10793,9 +11258,9 @@ export interface operations {
|
|
|
10793
11258
|
/** @example Poppy Lloyd */
|
|
10794
11259
|
name?: string;
|
|
10795
11260
|
};
|
|
10796
|
-
/** @example 2026-03-
|
|
11261
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10797
11262
|
created_at?: string;
|
|
10798
|
-
/** @example 2026-03-
|
|
11263
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10799
11264
|
updated_at?: string;
|
|
10800
11265
|
};
|
|
10801
11266
|
};
|
|
@@ -10837,7 +11302,7 @@ export interface operations {
|
|
|
10837
11302
|
content: {
|
|
10838
11303
|
"application/json": {
|
|
10839
11304
|
data?: {
|
|
10840
|
-
/** @example
|
|
11305
|
+
/** @example 1057 */
|
|
10841
11306
|
id?: number;
|
|
10842
11307
|
/** @example 1 */
|
|
10843
11308
|
rating?: number;
|
|
@@ -10849,9 +11314,9 @@ export interface operations {
|
|
|
10849
11314
|
/** @example Poppy Lloyd */
|
|
10850
11315
|
name?: string;
|
|
10851
11316
|
};
|
|
10852
|
-
/** @example 2026-03-
|
|
11317
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10853
11318
|
created_at?: string;
|
|
10854
|
-
/** @example 2026-03-
|
|
11319
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10855
11320
|
updated_at?: string;
|
|
10856
11321
|
};
|
|
10857
11322
|
};
|
|
@@ -10878,7 +11343,7 @@ export interface operations {
|
|
|
10878
11343
|
content: {
|
|
10879
11344
|
"application/json": {
|
|
10880
11345
|
data?: {
|
|
10881
|
-
/** @example
|
|
11346
|
+
/** @example 1058 */
|
|
10882
11347
|
id?: number;
|
|
10883
11348
|
/** @example 1 */
|
|
10884
11349
|
rating?: number;
|
|
@@ -10890,9 +11355,9 @@ export interface operations {
|
|
|
10890
11355
|
/** @example System Admin */
|
|
10891
11356
|
name?: string;
|
|
10892
11357
|
};
|
|
10893
|
-
/** @example 2026-03-
|
|
11358
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10894
11359
|
created_at?: string;
|
|
10895
|
-
/** @example 2026-03-
|
|
11360
|
+
/** @example 2026-03-14T21:11:50+00:00 */
|
|
10896
11361
|
updated_at?: string;
|
|
10897
11362
|
};
|
|
10898
11363
|
};
|
|
@@ -10919,7 +11384,7 @@ export interface operations {
|
|
|
10919
11384
|
content: {
|
|
10920
11385
|
"application/json": {
|
|
10921
11386
|
data?: {
|
|
10922
|
-
/** @example
|
|
11387
|
+
/** @example 6dc5ef10-d7f2-442c-a90f-1476f736ebf7 */
|
|
10923
11388
|
uid?: string;
|
|
10924
11389
|
/** @example 1 */
|
|
10925
11390
|
listing_id?: number;
|
|
@@ -10927,19 +11392,19 @@ export interface operations {
|
|
|
10927
11392
|
landlord_id?: number;
|
|
10928
11393
|
/** @example 2 */
|
|
10929
11394
|
tenant_id?: number;
|
|
10930
|
-
/** @example
|
|
11395
|
+
/** @example 1598.98 */
|
|
10931
11396
|
rent_amount?: string;
|
|
10932
|
-
/** @example
|
|
11397
|
+
/** @example 3360.55 */
|
|
10933
11398
|
deposit_amount?: string;
|
|
10934
|
-
/** @example
|
|
11399
|
+
/** @example renewal_pending */
|
|
10935
11400
|
state?: string;
|
|
10936
|
-
/** @example 2025-
|
|
11401
|
+
/** @example 2025-07-30T00:00:00.000000Z */
|
|
10937
11402
|
start_date?: string;
|
|
10938
|
-
/** @example 2026-
|
|
11403
|
+
/** @example 2026-07-30T00:00:00.000000Z */
|
|
10939
11404
|
end_date?: string;
|
|
10940
11405
|
/** @example false */
|
|
10941
11406
|
is_periodic?: boolean;
|
|
10942
|
-
/** @example 2026-03-
|
|
11407
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
10943
11408
|
created_at?: string;
|
|
10944
11409
|
/** @example [] */
|
|
10945
11410
|
compliances?: unknown[];
|
|
@@ -11006,7 +11471,7 @@ export interface operations {
|
|
|
11006
11471
|
content: {
|
|
11007
11472
|
"application/json": {
|
|
11008
11473
|
data?: {
|
|
11009
|
-
/** @example
|
|
11474
|
+
/** @example 86acb90f-0049-4515-bd30-d6910f5ea7fd */
|
|
11010
11475
|
uid?: string;
|
|
11011
11476
|
/** @example 1 */
|
|
11012
11477
|
listing_id?: number;
|
|
@@ -11020,13 +11485,13 @@ export interface operations {
|
|
|
11020
11485
|
deposit_amount?: string;
|
|
11021
11486
|
/** @example active */
|
|
11022
11487
|
state?: string;
|
|
11023
|
-
/** @example 2025-06-
|
|
11488
|
+
/** @example 2025-06-07T00:00:00.000000Z */
|
|
11024
11489
|
start_date?: string;
|
|
11025
|
-
/** @example 2026-06-
|
|
11490
|
+
/** @example 2026-06-07T00:00:00.000000Z */
|
|
11026
11491
|
end_date?: string;
|
|
11027
11492
|
/** @example true */
|
|
11028
11493
|
is_periodic?: boolean;
|
|
11029
|
-
/** @example 2026-03-
|
|
11494
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
11030
11495
|
created_at?: string;
|
|
11031
11496
|
};
|
|
11032
11497
|
};
|
|
@@ -11320,7 +11785,7 @@ export interface operations {
|
|
|
11320
11785
|
* "changed_by_user_id": 3,
|
|
11321
11786
|
* "changed_by_name": "Toby Robertson",
|
|
11322
11787
|
* "comment": null,
|
|
11323
|
-
* "created_at": "2025-10-
|
|
11788
|
+
* "created_at": "2025-10-24T10:41:46.000000Z"
|
|
11324
11789
|
* },
|
|
11325
11790
|
* {
|
|
11326
11791
|
* "from_state": "pre_move_in_ready",
|
|
@@ -11328,7 +11793,7 @@ export interface operations {
|
|
|
11328
11793
|
* "changed_by_user_id": 3,
|
|
11329
11794
|
* "changed_by_name": "Toby Robertson",
|
|
11330
11795
|
* "comment": "Nihil accusantium harum mollitia modi deserunt.",
|
|
11331
|
-
* "created_at": "2026-02-
|
|
11796
|
+
* "created_at": "2026-02-20T20:23:49.000000Z"
|
|
11332
11797
|
* }
|
|
11333
11798
|
* ]
|
|
11334
11799
|
*/
|
|
@@ -11343,7 +11808,7 @@ export interface operations {
|
|
|
11343
11808
|
changed_by_name?: string;
|
|
11344
11809
|
/** @example null */
|
|
11345
11810
|
comment?: string | null;
|
|
11346
|
-
/** @example 2025-10-
|
|
11811
|
+
/** @example 2025-10-24T10:41:46.000000Z */
|
|
11347
11812
|
created_at?: string;
|
|
11348
11813
|
}[];
|
|
11349
11814
|
};
|
|
@@ -11451,7 +11916,7 @@ export interface operations {
|
|
|
11451
11916
|
completed_layers?: number;
|
|
11452
11917
|
/** @example 6 */
|
|
11453
11918
|
pending_layers?: number;
|
|
11454
|
-
/** @example 2026-03-
|
|
11919
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
11455
11920
|
last_calculated_at?: string;
|
|
11456
11921
|
};
|
|
11457
11922
|
};
|
|
@@ -11499,7 +11964,7 @@ export interface operations {
|
|
|
11499
11964
|
completed_layers?: number;
|
|
11500
11965
|
/** @example 5 */
|
|
11501
11966
|
pending_layers?: number;
|
|
11502
|
-
/** @example 2026-03-
|
|
11967
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
11503
11968
|
last_calculated_at?: string;
|
|
11504
11969
|
};
|
|
11505
11970
|
};
|
|
@@ -11587,15 +12052,15 @@ export interface operations {
|
|
|
11587
12052
|
/**
|
|
11588
12053
|
* @example [
|
|
11589
12054
|
* {
|
|
11590
|
-
* "wishlist_uid": "
|
|
12055
|
+
* "wishlist_uid": "5b1a9caf-229b-4019-82d6-433c80a47587"
|
|
11591
12056
|
* },
|
|
11592
12057
|
* {
|
|
11593
|
-
* "wishlist_uid": "
|
|
12058
|
+
* "wishlist_uid": "910628ed-8efe-4d57-b6bc-37fbab04fdc2"
|
|
11594
12059
|
* }
|
|
11595
12060
|
* ]
|
|
11596
12061
|
*/
|
|
11597
12062
|
data?: {
|
|
11598
|
-
/** @example
|
|
12063
|
+
/** @example 5b1a9caf-229b-4019-82d6-433c80a47587 */
|
|
11599
12064
|
wishlist_uid?: string;
|
|
11600
12065
|
}[];
|
|
11601
12066
|
links?: {
|
|
@@ -11683,7 +12148,7 @@ export interface operations {
|
|
|
11683
12148
|
completed_layers?: number;
|
|
11684
12149
|
/** @example 4 */
|
|
11685
12150
|
pending_layers?: number;
|
|
11686
|
-
/** @example 2026-03-
|
|
12151
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
11687
12152
|
last_calculated_at?: string;
|
|
11688
12153
|
};
|
|
11689
12154
|
};
|
|
@@ -11731,7 +12196,7 @@ export interface operations {
|
|
|
11731
12196
|
completed_layers?: number;
|
|
11732
12197
|
/** @example 2 */
|
|
11733
12198
|
pending_layers?: number;
|
|
11734
|
-
/** @example 2026-03-
|
|
12199
|
+
/** @example 2026-03-14T21:11:50.000000Z */
|
|
11735
12200
|
last_calculated_at?: string;
|
|
11736
12201
|
};
|
|
11737
12202
|
};
|