@justins-home/types 1.1.47 → 1.1.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/api-types.ts +639 -311
- package/package.json +1 -1
package/generated/api-types.ts
CHANGED
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
export interface paths {
|
|
2
|
+
"/api/v1/portal/admin/create-admin": {
|
|
3
|
+
parameters: {
|
|
4
|
+
query?: never;
|
|
5
|
+
header?: never;
|
|
6
|
+
path?: never;
|
|
7
|
+
cookie?: never;
|
|
8
|
+
};
|
|
9
|
+
get?: never;
|
|
10
|
+
put?: never;
|
|
11
|
+
/**
|
|
12
|
+
* newAdmin
|
|
13
|
+
* @description Creates a admin user account with associated admin profile data
|
|
14
|
+
*/
|
|
15
|
+
post: operations["newAdmin"];
|
|
16
|
+
delete?: never;
|
|
17
|
+
options?: never;
|
|
18
|
+
head?: never;
|
|
19
|
+
patch?: never;
|
|
20
|
+
trace?: never;
|
|
21
|
+
};
|
|
2
22
|
"/api/v1/portal/admin/login": {
|
|
3
23
|
parameters: {
|
|
4
24
|
query?: never;
|
|
@@ -160,6 +180,46 @@ export interface paths {
|
|
|
160
180
|
patch?: never;
|
|
161
181
|
trace?: never;
|
|
162
182
|
};
|
|
183
|
+
"/api/v1/portal/admin/users/admins/fetch-all": {
|
|
184
|
+
parameters: {
|
|
185
|
+
query?: never;
|
|
186
|
+
header?: never;
|
|
187
|
+
path?: never;
|
|
188
|
+
cookie?: never;
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* fetchAdminAccounts
|
|
192
|
+
* @description Retrieve paginated admin accounts.
|
|
193
|
+
*/
|
|
194
|
+
get: operations["fetchAdminAccounts"];
|
|
195
|
+
put?: never;
|
|
196
|
+
post?: never;
|
|
197
|
+
delete?: never;
|
|
198
|
+
options?: never;
|
|
199
|
+
head?: never;
|
|
200
|
+
patch?: never;
|
|
201
|
+
trace?: never;
|
|
202
|
+
};
|
|
203
|
+
"/api/v1/portal/admin/users/admins/fetch-all-no-pagination": {
|
|
204
|
+
parameters: {
|
|
205
|
+
query?: never;
|
|
206
|
+
header?: never;
|
|
207
|
+
path?: never;
|
|
208
|
+
cookie?: never;
|
|
209
|
+
};
|
|
210
|
+
/**
|
|
211
|
+
* fetchAllAdminsNoPagination
|
|
212
|
+
* @description Retrieve all admin accounts without pagination.
|
|
213
|
+
*/
|
|
214
|
+
get: operations["fetchAllAdminsNoPagination"];
|
|
215
|
+
put?: never;
|
|
216
|
+
post?: never;
|
|
217
|
+
delete?: never;
|
|
218
|
+
options?: never;
|
|
219
|
+
head?: never;
|
|
220
|
+
patch?: never;
|
|
221
|
+
trace?: never;
|
|
222
|
+
};
|
|
163
223
|
"/api/v1/portal/admin/users/landlords/fetch-all": {
|
|
164
224
|
parameters: {
|
|
165
225
|
query?: never;
|
|
@@ -4422,8 +4482,6 @@ export interface paths {
|
|
|
4422
4482
|
header?: never;
|
|
4423
4483
|
path: {
|
|
4424
4484
|
uid: string;
|
|
4425
|
-
/** @description The UID of the maintenance request. */
|
|
4426
|
-
maintenance_uid: string;
|
|
4427
4485
|
};
|
|
4428
4486
|
cookie?: never;
|
|
4429
4487
|
};
|
|
@@ -5566,6 +5624,135 @@ export interface components {
|
|
|
5566
5624
|
}
|
|
5567
5625
|
export type $defs = Record<string, never>;
|
|
5568
5626
|
export interface operations {
|
|
5627
|
+
newAdmin: {
|
|
5628
|
+
parameters: {
|
|
5629
|
+
query?: never;
|
|
5630
|
+
header?: never;
|
|
5631
|
+
path?: never;
|
|
5632
|
+
cookie?: never;
|
|
5633
|
+
};
|
|
5634
|
+
requestBody: {
|
|
5635
|
+
content: {
|
|
5636
|
+
"application/json": {
|
|
5637
|
+
/**
|
|
5638
|
+
* @description Full name of the admin.
|
|
5639
|
+
* @example John Doe
|
|
5640
|
+
*/
|
|
5641
|
+
name: string;
|
|
5642
|
+
/**
|
|
5643
|
+
* @description Email address of the admin. Must be a valid email address.
|
|
5644
|
+
* @example john@example.com
|
|
5645
|
+
*/
|
|
5646
|
+
email: string;
|
|
5647
|
+
/**
|
|
5648
|
+
* @description Account password for the admin.
|
|
5649
|
+
* @example secret123
|
|
5650
|
+
*/
|
|
5651
|
+
password?: string | null;
|
|
5652
|
+
/**
|
|
5653
|
+
* @description Contact phone number of the admin.
|
|
5654
|
+
* @example +447700900123
|
|
5655
|
+
*/
|
|
5656
|
+
phone?: string | null;
|
|
5657
|
+
/**
|
|
5658
|
+
* @description Account status of the admin.
|
|
5659
|
+
* @example active
|
|
5660
|
+
*/
|
|
5661
|
+
status?: string | null;
|
|
5662
|
+
/**
|
|
5663
|
+
* @description The role of the admin being created.
|
|
5664
|
+
* @example manager
|
|
5665
|
+
*/
|
|
5666
|
+
role?: string | null;
|
|
5667
|
+
};
|
|
5668
|
+
};
|
|
5669
|
+
};
|
|
5670
|
+
responses: {
|
|
5671
|
+
200: {
|
|
5672
|
+
headers: {
|
|
5673
|
+
[name: string]: unknown;
|
|
5674
|
+
};
|
|
5675
|
+
content: {
|
|
5676
|
+
"application/json": {
|
|
5677
|
+
data?: {
|
|
5678
|
+
/** @example 27cba191-c25e-42cc-a109-4975dcf85b38 */
|
|
5679
|
+
uid?: string;
|
|
5680
|
+
/** @example Ms. Audra Crooks II */
|
|
5681
|
+
username?: string;
|
|
5682
|
+
/** @example null */
|
|
5683
|
+
first_name?: string | null;
|
|
5684
|
+
/** @example null */
|
|
5685
|
+
last_name?: string | null;
|
|
5686
|
+
/** @example aschuster@example.com */
|
|
5687
|
+
email?: string;
|
|
5688
|
+
/** @example null */
|
|
5689
|
+
phone?: string | null;
|
|
5690
|
+
/** @example null */
|
|
5691
|
+
status?: string | null;
|
|
5692
|
+
/** @example form */
|
|
5693
|
+
user_mode?: string;
|
|
5694
|
+
/** @example null */
|
|
5695
|
+
last_login_at?: string | null;
|
|
5696
|
+
/** @example null */
|
|
5697
|
+
last_login_ip?: string | null;
|
|
5698
|
+
/** @example false */
|
|
5699
|
+
two_factor_enabled?: boolean;
|
|
5700
|
+
/** @example null */
|
|
5701
|
+
avatar_path?: string | null;
|
|
5702
|
+
/** @example en-GB */
|
|
5703
|
+
language?: string;
|
|
5704
|
+
/** @example Europe/London */
|
|
5705
|
+
timezone?: string;
|
|
5706
|
+
/** @example Customer */
|
|
5707
|
+
user_type?: string;
|
|
5708
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
5709
|
+
created?: string;
|
|
5710
|
+
/** @example 0 seconds ago */
|
|
5711
|
+
email_verified_at?: string;
|
|
5712
|
+
verification_status?: {
|
|
5713
|
+
/** @example not_verified */
|
|
5714
|
+
overall?: string;
|
|
5715
|
+
/**
|
|
5716
|
+
* @example [
|
|
5717
|
+
* {
|
|
5718
|
+
* "verification_name": "Email Verification",
|
|
5719
|
+
* "verification_description": "Verify the user's email address",
|
|
5720
|
+
* "verification_key": "email_verified",
|
|
5721
|
+
* "state": "not_verified"
|
|
5722
|
+
* },
|
|
5723
|
+
* {
|
|
5724
|
+
* "verification_name": "Phone Number Verification",
|
|
5725
|
+
* "verification_description": "Verify the user's phone number via OTP",
|
|
5726
|
+
* "verification_key": "phone_verified",
|
|
5727
|
+
* "state": "not_verified"
|
|
5728
|
+
* },
|
|
5729
|
+
* {
|
|
5730
|
+
* "verification_name": "Government ID Verification",
|
|
5731
|
+
* "verification_description": "Upload government ID",
|
|
5732
|
+
* "verification_key": "id_document",
|
|
5733
|
+
* "state": "not_verified"
|
|
5734
|
+
* }
|
|
5735
|
+
* ]
|
|
5736
|
+
*/
|
|
5737
|
+
breakdown?: {
|
|
5738
|
+
/** @example Email Verification */
|
|
5739
|
+
verification_name?: string;
|
|
5740
|
+
/** @example Verify the user's email address */
|
|
5741
|
+
verification_description?: string;
|
|
5742
|
+
/** @example email_verified */
|
|
5743
|
+
verification_key?: string;
|
|
5744
|
+
/** @example not_verified */
|
|
5745
|
+
state?: string;
|
|
5746
|
+
}[];
|
|
5747
|
+
};
|
|
5748
|
+
/** @example null */
|
|
5749
|
+
role?: string | null;
|
|
5750
|
+
};
|
|
5751
|
+
};
|
|
5752
|
+
};
|
|
5753
|
+
};
|
|
5754
|
+
};
|
|
5755
|
+
};
|
|
5569
5756
|
basicLoginAdmin: {
|
|
5570
5757
|
parameters: {
|
|
5571
5758
|
query?: never;
|
|
@@ -6046,7 +6233,7 @@ export interface operations {
|
|
|
6046
6233
|
content: {
|
|
6047
6234
|
"application/json": {
|
|
6048
6235
|
data?: {
|
|
6049
|
-
/** @example
|
|
6236
|
+
/** @example 113ce5b9-5fb2-4a0a-829b-bfacaf1c4e25 */
|
|
6050
6237
|
uid?: string;
|
|
6051
6238
|
/** @example Ms. Audra Crooks II */
|
|
6052
6239
|
username?: string;
|
|
@@ -6054,7 +6241,7 @@ export interface operations {
|
|
|
6054
6241
|
first_name?: string | null;
|
|
6055
6242
|
/** @example null */
|
|
6056
6243
|
last_name?: string | null;
|
|
6057
|
-
/** @example
|
|
6244
|
+
/** @example gilbert32@example.com */
|
|
6058
6245
|
email?: string;
|
|
6059
6246
|
/** @example null */
|
|
6060
6247
|
phone?: string | null;
|
|
@@ -6076,7 +6263,7 @@ export interface operations {
|
|
|
6076
6263
|
timezone?: string;
|
|
6077
6264
|
/** @example Customer */
|
|
6078
6265
|
user_type?: string;
|
|
6079
|
-
/** @example 24 Apr 2026,
|
|
6266
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
6080
6267
|
created?: string;
|
|
6081
6268
|
/** @example 0 seconds ago */
|
|
6082
6269
|
email_verified_at?: string;
|
|
@@ -6124,6 +6311,143 @@ export interface operations {
|
|
|
6124
6311
|
};
|
|
6125
6312
|
};
|
|
6126
6313
|
};
|
|
6314
|
+
fetchAdminAccounts: {
|
|
6315
|
+
parameters: {
|
|
6316
|
+
query?: {
|
|
6317
|
+
/** @description Items per page for the paginated admin list. Must be at least 1. Must not be greater than 100. */
|
|
6318
|
+
per_page?: number | null;
|
|
6319
|
+
/** @description Pagination page number. Must be at least 1. */
|
|
6320
|
+
page?: number | null;
|
|
6321
|
+
};
|
|
6322
|
+
header?: never;
|
|
6323
|
+
path?: never;
|
|
6324
|
+
cookie?: never;
|
|
6325
|
+
};
|
|
6326
|
+
requestBody?: never;
|
|
6327
|
+
responses: {
|
|
6328
|
+
/** @description Retrieve paginated admin accounts */
|
|
6329
|
+
200: {
|
|
6330
|
+
headers: {
|
|
6331
|
+
[name: string]: unknown;
|
|
6332
|
+
};
|
|
6333
|
+
content: {
|
|
6334
|
+
"application/json": {
|
|
6335
|
+
/** @example Admins fetched successfully */
|
|
6336
|
+
message?: string;
|
|
6337
|
+
/** @example null */
|
|
6338
|
+
event?: string | null;
|
|
6339
|
+
data?: {
|
|
6340
|
+
/**
|
|
6341
|
+
* @example [
|
|
6342
|
+
* {
|
|
6343
|
+
* "uid": "usr_123",
|
|
6344
|
+
* "username": "Jane Admin",
|
|
6345
|
+
* "email": "admin@example.com",
|
|
6346
|
+
* "phone": "+447700900123",
|
|
6347
|
+
* "status": "active",
|
|
6348
|
+
* "avatar_path": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg",
|
|
6349
|
+
* "role": "manager",
|
|
6350
|
+
* "created_at": "2026-04-24T10:00:00Z"
|
|
6351
|
+
* }
|
|
6352
|
+
* ]
|
|
6353
|
+
*/
|
|
6354
|
+
items?: {
|
|
6355
|
+
/** @example usr_123 */
|
|
6356
|
+
uid?: string;
|
|
6357
|
+
/** @example Jane Admin */
|
|
6358
|
+
username?: string;
|
|
6359
|
+
/** @example admin@example.com */
|
|
6360
|
+
email?: string;
|
|
6361
|
+
/** @example +447700900123 */
|
|
6362
|
+
phone?: string;
|
|
6363
|
+
/** @example active */
|
|
6364
|
+
status?: string;
|
|
6365
|
+
/** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg */
|
|
6366
|
+
avatar_path?: string;
|
|
6367
|
+
/** @example manager */
|
|
6368
|
+
role?: string;
|
|
6369
|
+
/** @example 2026-04-24T10:00:00Z */
|
|
6370
|
+
created_at?: string;
|
|
6371
|
+
}[];
|
|
6372
|
+
pagination?: {
|
|
6373
|
+
/** @example 1 */
|
|
6374
|
+
current_page?: number;
|
|
6375
|
+
/** @example 15 */
|
|
6376
|
+
per_page?: number;
|
|
6377
|
+
/** @example 1 */
|
|
6378
|
+
total?: number;
|
|
6379
|
+
/** @example 1 */
|
|
6380
|
+
last_page?: number;
|
|
6381
|
+
/** @example 1 */
|
|
6382
|
+
from?: number;
|
|
6383
|
+
/** @example 1 */
|
|
6384
|
+
to?: number;
|
|
6385
|
+
};
|
|
6386
|
+
};
|
|
6387
|
+
};
|
|
6388
|
+
};
|
|
6389
|
+
};
|
|
6390
|
+
};
|
|
6391
|
+
};
|
|
6392
|
+
fetchAllAdminsNoPagination: {
|
|
6393
|
+
parameters: {
|
|
6394
|
+
query?: never;
|
|
6395
|
+
header?: never;
|
|
6396
|
+
path?: never;
|
|
6397
|
+
cookie?: never;
|
|
6398
|
+
};
|
|
6399
|
+
requestBody?: never;
|
|
6400
|
+
responses: {
|
|
6401
|
+
/** @description Retrieve all admin accounts without pagination */
|
|
6402
|
+
200: {
|
|
6403
|
+
headers: {
|
|
6404
|
+
[name: string]: unknown;
|
|
6405
|
+
};
|
|
6406
|
+
content: {
|
|
6407
|
+
"application/json": {
|
|
6408
|
+
/** @example Admins fetched successfully */
|
|
6409
|
+
message?: string;
|
|
6410
|
+
/** @example null */
|
|
6411
|
+
event?: string | null;
|
|
6412
|
+
data?: {
|
|
6413
|
+
/**
|
|
6414
|
+
* @example [
|
|
6415
|
+
* {
|
|
6416
|
+
* "uid": "usr_123",
|
|
6417
|
+
* "username": "Jane Admin",
|
|
6418
|
+
* "email": "admin@example.com",
|
|
6419
|
+
* "phone": "+447700900123",
|
|
6420
|
+
* "status": "active",
|
|
6421
|
+
* "avatar_path": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg",
|
|
6422
|
+
* "role": "manager",
|
|
6423
|
+
* "created_at": "2026-04-24T10:00:00Z"
|
|
6424
|
+
* }
|
|
6425
|
+
* ]
|
|
6426
|
+
*/
|
|
6427
|
+
items?: {
|
|
6428
|
+
/** @example usr_123 */
|
|
6429
|
+
uid?: string;
|
|
6430
|
+
/** @example Jane Admin */
|
|
6431
|
+
username?: string;
|
|
6432
|
+
/** @example admin@example.com */
|
|
6433
|
+
email?: string;
|
|
6434
|
+
/** @example +447700900123 */
|
|
6435
|
+
phone?: string;
|
|
6436
|
+
/** @example active */
|
|
6437
|
+
status?: string;
|
|
6438
|
+
/** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg */
|
|
6439
|
+
avatar_path?: string;
|
|
6440
|
+
/** @example manager */
|
|
6441
|
+
role?: string;
|
|
6442
|
+
/** @example 2026-04-24T10:00:00Z */
|
|
6443
|
+
created_at?: string;
|
|
6444
|
+
}[];
|
|
6445
|
+
};
|
|
6446
|
+
};
|
|
6447
|
+
};
|
|
6448
|
+
};
|
|
6449
|
+
};
|
|
6450
|
+
};
|
|
6127
6451
|
fetchLandlordListAdmin: {
|
|
6128
6452
|
parameters: {
|
|
6129
6453
|
query?: {
|
|
@@ -6329,11 +6653,11 @@ export interface operations {
|
|
|
6329
6653
|
content: {
|
|
6330
6654
|
"application/json": {
|
|
6331
6655
|
data?: {
|
|
6332
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
6656
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
6333
6657
|
draft_name?: string;
|
|
6334
|
-
/** @example LST-PRP-LTR-
|
|
6658
|
+
/** @example LST-PRP-LTR-MOD9NQSUHRG */
|
|
6335
6659
|
sku?: string;
|
|
6336
|
-
/** @example
|
|
6660
|
+
/** @example c6e41629-6f4a-4915-8882-5d9b6c2e198c */
|
|
6337
6661
|
uid?: string;
|
|
6338
6662
|
/** @example Rent */
|
|
6339
6663
|
listing_type?: string;
|
|
@@ -7745,7 +8069,7 @@ export interface operations {
|
|
|
7745
8069
|
content: {
|
|
7746
8070
|
"application/json": {
|
|
7747
8071
|
/**
|
|
7748
|
-
* @example
|
|
8072
|
+
* @example Pending
|
|
7749
8073
|
* @enum {string}
|
|
7750
8074
|
*/
|
|
7751
8075
|
status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
|
|
@@ -7760,7 +8084,7 @@ export interface operations {
|
|
|
7760
8084
|
content: {
|
|
7761
8085
|
"application/json": {
|
|
7762
8086
|
data?: {
|
|
7763
|
-
/** @example
|
|
8087
|
+
/** @example 2c34a115-3e0d-4b36-9764-91f733a69f91 */
|
|
7764
8088
|
uid?: string;
|
|
7765
8089
|
/** @example Morgan Hirthe */
|
|
7766
8090
|
username?: string;
|
|
@@ -7790,7 +8114,7 @@ export interface operations {
|
|
|
7790
8114
|
timezone?: string;
|
|
7791
8115
|
/** @example Customer */
|
|
7792
8116
|
user_type?: string;
|
|
7793
|
-
/** @example 24 Apr 2026,
|
|
8117
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
7794
8118
|
created?: string;
|
|
7795
8119
|
/** @example 0 seconds ago */
|
|
7796
8120
|
email_verified_at?: string;
|
|
@@ -8499,11 +8823,11 @@ export interface operations {
|
|
|
8499
8823
|
content: {
|
|
8500
8824
|
"application/json": {
|
|
8501
8825
|
data?: {
|
|
8502
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
8826
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
8503
8827
|
draft_name?: string;
|
|
8504
|
-
/** @example LST-PRP-LTR-
|
|
8828
|
+
/** @example LST-PRP-LTR-MOD9NQVMZJB */
|
|
8505
8829
|
sku?: string;
|
|
8506
|
-
/** @example
|
|
8830
|
+
/** @example f95619de-7b6f-4929-a84e-2badbe027278 */
|
|
8507
8831
|
uid?: string;
|
|
8508
8832
|
/** @example Rent */
|
|
8509
8833
|
listing_type?: string;
|
|
@@ -8943,7 +9267,7 @@ export interface operations {
|
|
|
8943
9267
|
content: {
|
|
8944
9268
|
"application/json": {
|
|
8945
9269
|
data?: {
|
|
8946
|
-
/** @example
|
|
9270
|
+
/** @example fc032ffd-1f8d-4887-a9f0-af250070acc5 */
|
|
8947
9271
|
uid?: string;
|
|
8948
9272
|
/** @example photo */
|
|
8949
9273
|
media_type?: string;
|
|
@@ -9250,56 +9574,60 @@ export interface operations {
|
|
|
9250
9574
|
/**
|
|
9251
9575
|
* @example [
|
|
9252
9576
|
* {
|
|
9253
|
-
* "draft_name": "New For
|
|
9254
|
-
* "sku": "LST-
|
|
9255
|
-
* "uid": "
|
|
9256
|
-
* "listing_type": "
|
|
9257
|
-
* "vertical": "
|
|
9258
|
-
* "arrangement_type":
|
|
9259
|
-
* "arrangement_type_label":
|
|
9577
|
+
* "draft_name": "New For Rent Property draft • 24 Apr 2026, 6:51 PM",
|
|
9578
|
+
* "sku": "LST-PRP-LTR-MOD9NQX2RGA",
|
|
9579
|
+
* "uid": "7e6b03c7-cfea-4e95-abed-219d30700683",
|
|
9580
|
+
* "listing_type": "Rent",
|
|
9581
|
+
* "vertical": "Property",
|
|
9582
|
+
* "arrangement_type": "let_to_let",
|
|
9583
|
+
* "arrangement_type_label": "Let to Let",
|
|
9260
9584
|
* "price": null,
|
|
9261
9585
|
* "state": "draft",
|
|
9262
9586
|
* "published_at": null,
|
|
9263
9587
|
* "published_since": null,
|
|
9264
9588
|
* "is_visible": false,
|
|
9265
|
-
* "summary":
|
|
9589
|
+
* "summary": {
|
|
9590
|
+
* "availability": null
|
|
9591
|
+
* },
|
|
9266
9592
|
* "workflow": [],
|
|
9267
9593
|
* "media": []
|
|
9268
9594
|
* },
|
|
9269
9595
|
* {
|
|
9270
|
-
* "draft_name": "New
|
|
9271
|
-
* "sku": "LST-
|
|
9272
|
-
* "uid": "
|
|
9273
|
-
* "listing_type": "
|
|
9274
|
-
* "vertical": "
|
|
9275
|
-
* "arrangement_type":
|
|
9276
|
-
* "arrangement_type_label":
|
|
9596
|
+
* "draft_name": "New Short Let Property draft • 24 Apr 2026, 6:51 PM",
|
|
9597
|
+
* "sku": "LST-PRP-SHL-MOD9NQX5SCP",
|
|
9598
|
+
* "uid": "cc822dc1-7046-438f-baca-aac59a9e1514",
|
|
9599
|
+
* "listing_type": "Short Let",
|
|
9600
|
+
* "vertical": "Property",
|
|
9601
|
+
* "arrangement_type": "short_term_managed",
|
|
9602
|
+
* "arrangement_type_label": "Short Term Managed",
|
|
9277
9603
|
* "price": null,
|
|
9278
9604
|
* "state": "draft",
|
|
9279
9605
|
* "published_at": null,
|
|
9280
9606
|
* "published_since": null,
|
|
9281
9607
|
* "is_visible": false,
|
|
9282
|
-
* "summary":
|
|
9608
|
+
* "summary": {
|
|
9609
|
+
* "availability": null
|
|
9610
|
+
* },
|
|
9283
9611
|
* "workflow": [],
|
|
9284
9612
|
* "media": []
|
|
9285
9613
|
* }
|
|
9286
9614
|
* ]
|
|
9287
9615
|
*/
|
|
9288
9616
|
data?: {
|
|
9289
|
-
/** @example New For
|
|
9617
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
9290
9618
|
draft_name?: string;
|
|
9291
|
-
/** @example LST-
|
|
9619
|
+
/** @example LST-PRP-LTR-MOD9NQX2RGA */
|
|
9292
9620
|
sku?: string;
|
|
9293
|
-
/** @example
|
|
9621
|
+
/** @example 7e6b03c7-cfea-4e95-abed-219d30700683 */
|
|
9294
9622
|
uid?: string;
|
|
9295
|
-
/** @example
|
|
9623
|
+
/** @example Rent */
|
|
9296
9624
|
listing_type?: string;
|
|
9297
|
-
/** @example
|
|
9625
|
+
/** @example Property */
|
|
9298
9626
|
vertical?: string;
|
|
9299
|
-
/** @example
|
|
9300
|
-
arrangement_type?: string
|
|
9301
|
-
/** @example
|
|
9302
|
-
arrangement_type_label?: string
|
|
9627
|
+
/** @example let_to_let */
|
|
9628
|
+
arrangement_type?: string;
|
|
9629
|
+
/** @example Let to Let */
|
|
9630
|
+
arrangement_type_label?: string;
|
|
9303
9631
|
/** @example null */
|
|
9304
9632
|
price?: string | null;
|
|
9305
9633
|
/** @example draft */
|
|
@@ -9310,8 +9638,10 @@ export interface operations {
|
|
|
9310
9638
|
published_since?: string | null;
|
|
9311
9639
|
/** @example false */
|
|
9312
9640
|
is_visible?: boolean;
|
|
9313
|
-
|
|
9314
|
-
|
|
9641
|
+
summary?: {
|
|
9642
|
+
/** @example null */
|
|
9643
|
+
availability?: string | null;
|
|
9644
|
+
};
|
|
9315
9645
|
/** @example [] */
|
|
9316
9646
|
workflow?: unknown[];
|
|
9317
9647
|
/** @example [] */
|
|
@@ -9483,11 +9813,11 @@ export interface operations {
|
|
|
9483
9813
|
content: {
|
|
9484
9814
|
"application/json": {
|
|
9485
9815
|
data?: {
|
|
9486
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
9816
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
9487
9817
|
draft_name?: string;
|
|
9488
|
-
/** @example LST-PRP-LTR-
|
|
9818
|
+
/** @example LST-PRP-LTR-MOD9NQXEHRO */
|
|
9489
9819
|
sku?: string;
|
|
9490
|
-
/** @example
|
|
9820
|
+
/** @example caba3087-79f4-4d9f-bd4a-f57431e9bdc2 */
|
|
9491
9821
|
uid?: string;
|
|
9492
9822
|
/** @example Rent */
|
|
9493
9823
|
listing_type?: string;
|
|
@@ -9550,11 +9880,11 @@ export interface operations {
|
|
|
9550
9880
|
content: {
|
|
9551
9881
|
"application/json": {
|
|
9552
9882
|
data?: {
|
|
9553
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
9883
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
9554
9884
|
draft_name?: string;
|
|
9555
|
-
/** @example LST-PRP-LTR-
|
|
9885
|
+
/** @example LST-PRP-LTR-MOD9NQXKQFP */
|
|
9556
9886
|
sku?: string;
|
|
9557
|
-
/** @example
|
|
9887
|
+
/** @example a90501f9-fdb8-4b46-951e-e949cc2eec26 */
|
|
9558
9888
|
uid?: string;
|
|
9559
9889
|
/** @example Rent */
|
|
9560
9890
|
listing_type?: string;
|
|
@@ -9607,11 +9937,11 @@ export interface operations {
|
|
|
9607
9937
|
content: {
|
|
9608
9938
|
"application/json": {
|
|
9609
9939
|
data?: {
|
|
9610
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
9940
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
9611
9941
|
draft_name?: string;
|
|
9612
|
-
/** @example LST-PRP-LTR-
|
|
9942
|
+
/** @example LST-PRP-LTR-MOD9NQXPBRJ */
|
|
9613
9943
|
sku?: string;
|
|
9614
|
-
/** @example
|
|
9944
|
+
/** @example 7767dcf9-c1da-4cdc-8bbe-84ec3877db32 */
|
|
9615
9945
|
uid?: string;
|
|
9616
9946
|
/** @example Rent */
|
|
9617
9947
|
listing_type?: string;
|
|
@@ -9664,11 +9994,11 @@ export interface operations {
|
|
|
9664
9994
|
content: {
|
|
9665
9995
|
"application/json": {
|
|
9666
9996
|
data?: {
|
|
9667
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
9997
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
9668
9998
|
draft_name?: string;
|
|
9669
|
-
/** @example LST-PRP-LTR-
|
|
9999
|
+
/** @example LST-PRP-LTR-MOD9NQXWGBI */
|
|
9670
10000
|
sku?: string;
|
|
9671
|
-
/** @example
|
|
10001
|
+
/** @example 9c28f113-2c98-41c5-bf31-38504697c9e3 */
|
|
9672
10002
|
uid?: string;
|
|
9673
10003
|
/** @example Rent */
|
|
9674
10004
|
listing_type?: string;
|
|
@@ -9862,7 +10192,7 @@ export interface operations {
|
|
|
9862
10192
|
content: {
|
|
9863
10193
|
"application/json": {
|
|
9864
10194
|
data?: {
|
|
9865
|
-
/** @example
|
|
10195
|
+
/** @example 109 */
|
|
9866
10196
|
id?: number;
|
|
9867
10197
|
/** @example 1 */
|
|
9868
10198
|
category_id?: number;
|
|
@@ -9936,7 +10266,7 @@ export interface operations {
|
|
|
9936
10266
|
content: {
|
|
9937
10267
|
"application/json": {
|
|
9938
10268
|
data?: {
|
|
9939
|
-
/** @example
|
|
10269
|
+
/** @example 110 */
|
|
9940
10270
|
id?: number;
|
|
9941
10271
|
/** @example 1 */
|
|
9942
10272
|
category_id?: number;
|
|
@@ -9975,7 +10305,7 @@ export interface operations {
|
|
|
9975
10305
|
content: {
|
|
9976
10306
|
"application/json": {
|
|
9977
10307
|
data?: {
|
|
9978
|
-
/** @example
|
|
10308
|
+
/** @example 111 */
|
|
9979
10309
|
id?: number;
|
|
9980
10310
|
/** @example 1 */
|
|
9981
10311
|
category_id?: number;
|
|
@@ -10013,7 +10343,7 @@ export interface operations {
|
|
|
10013
10343
|
/**
|
|
10014
10344
|
* @example [
|
|
10015
10345
|
* {
|
|
10016
|
-
* "id":
|
|
10346
|
+
* "id": 125,
|
|
10017
10347
|
* "name": "Exterior",
|
|
10018
10348
|
* "description": "For Exterior categories",
|
|
10019
10349
|
* "display_order": 1,
|
|
@@ -10023,7 +10353,7 @@ export interface operations {
|
|
|
10023
10353
|
* "is_active": true
|
|
10024
10354
|
* },
|
|
10025
10355
|
* {
|
|
10026
|
-
* "id":
|
|
10356
|
+
* "id": 126,
|
|
10027
10357
|
* "name": "Exterior",
|
|
10028
10358
|
* "description": "For Exterior categories",
|
|
10029
10359
|
* "display_order": 1,
|
|
@@ -10035,7 +10365,7 @@ export interface operations {
|
|
|
10035
10365
|
* ]
|
|
10036
10366
|
*/
|
|
10037
10367
|
data?: {
|
|
10038
|
-
/** @example
|
|
10368
|
+
/** @example 125 */
|
|
10039
10369
|
id?: number;
|
|
10040
10370
|
/** @example Exterior */
|
|
10041
10371
|
name?: string;
|
|
@@ -10099,7 +10429,7 @@ export interface operations {
|
|
|
10099
10429
|
content: {
|
|
10100
10430
|
"application/json": {
|
|
10101
10431
|
data?: {
|
|
10102
|
-
/** @example
|
|
10432
|
+
/** @example 127 */
|
|
10103
10433
|
id?: number;
|
|
10104
10434
|
/** @example Exterior */
|
|
10105
10435
|
name?: string;
|
|
@@ -10166,7 +10496,7 @@ export interface operations {
|
|
|
10166
10496
|
content: {
|
|
10167
10497
|
"application/json": {
|
|
10168
10498
|
data?: {
|
|
10169
|
-
/** @example
|
|
10499
|
+
/** @example 128 */
|
|
10170
10500
|
id?: number;
|
|
10171
10501
|
/** @example Exterior */
|
|
10172
10502
|
name?: string;
|
|
@@ -10207,7 +10537,7 @@ export interface operations {
|
|
|
10207
10537
|
content: {
|
|
10208
10538
|
"application/json": {
|
|
10209
10539
|
data?: {
|
|
10210
|
-
/** @example
|
|
10540
|
+
/** @example 129 */
|
|
10211
10541
|
id?: number;
|
|
10212
10542
|
/** @example Exterior */
|
|
10213
10543
|
name?: string;
|
|
@@ -10470,7 +10800,7 @@ export interface operations {
|
|
|
10470
10800
|
content: {
|
|
10471
10801
|
"application/json": {
|
|
10472
10802
|
data?: {
|
|
10473
|
-
/** @example
|
|
10803
|
+
/** @example 61 */
|
|
10474
10804
|
id?: number;
|
|
10475
10805
|
/** @example email_fa_0 */
|
|
10476
10806
|
key?: string;
|
|
@@ -10484,9 +10814,9 @@ export interface operations {
|
|
|
10484
10814
|
metadata_schema?: unknown[];
|
|
10485
10815
|
/** @example true */
|
|
10486
10816
|
is_active?: boolean;
|
|
10487
|
-
/** @example 2026-04-
|
|
10817
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
10488
10818
|
created_at?: string;
|
|
10489
|
-
/** @example 2026-04-
|
|
10819
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
10490
10820
|
updated_at?: string;
|
|
10491
10821
|
};
|
|
10492
10822
|
};
|
|
@@ -10546,7 +10876,7 @@ export interface operations {
|
|
|
10546
10876
|
content: {
|
|
10547
10877
|
"application/json": {
|
|
10548
10878
|
data?: {
|
|
10549
|
-
/** @example
|
|
10879
|
+
/** @example 62 */
|
|
10550
10880
|
id?: number;
|
|
10551
10881
|
/** @example email_fa_0 */
|
|
10552
10882
|
key?: string;
|
|
@@ -10560,9 +10890,9 @@ export interface operations {
|
|
|
10560
10890
|
metadata_schema?: unknown[];
|
|
10561
10891
|
/** @example true */
|
|
10562
10892
|
is_active?: boolean;
|
|
10563
|
-
/** @example 2026-04-
|
|
10893
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
10564
10894
|
created_at?: string;
|
|
10565
|
-
/** @example 2026-04-
|
|
10895
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
10566
10896
|
updated_at?: string;
|
|
10567
10897
|
};
|
|
10568
10898
|
};
|
|
@@ -11828,25 +12158,25 @@ export interface operations {
|
|
|
11828
12158
|
/**
|
|
11829
12159
|
* @example [
|
|
11830
12160
|
* {
|
|
11831
|
-
* "key": "
|
|
11832
|
-
* "name": "
|
|
11833
|
-
* "description": "
|
|
12161
|
+
* "key": "aut",
|
|
12162
|
+
* "name": "adipisci",
|
|
12163
|
+
* "description": "Nostrum qui commodi incidunt iure.",
|
|
11834
12164
|
* "value_type": "string"
|
|
11835
12165
|
* },
|
|
11836
12166
|
* {
|
|
11837
|
-
* "key": "
|
|
11838
|
-
* "name": "
|
|
11839
|
-
* "description": "
|
|
12167
|
+
* "key": "odit",
|
|
12168
|
+
* "name": "et",
|
|
12169
|
+
* "description": "Modi ipsum nostrum omnis autem et.",
|
|
11840
12170
|
* "value_type": "string"
|
|
11841
12171
|
* }
|
|
11842
12172
|
* ]
|
|
11843
12173
|
*/
|
|
11844
12174
|
data?: {
|
|
11845
|
-
/** @example
|
|
12175
|
+
/** @example aut */
|
|
11846
12176
|
key?: string;
|
|
11847
|
-
/** @example
|
|
12177
|
+
/** @example adipisci */
|
|
11848
12178
|
name?: string;
|
|
11849
|
-
/** @example
|
|
12179
|
+
/** @example Nostrum qui commodi incidunt iure. */
|
|
11850
12180
|
description?: string;
|
|
11851
12181
|
/** @example string */
|
|
11852
12182
|
value_type?: string;
|
|
@@ -13088,13 +13418,13 @@ export interface operations {
|
|
|
13088
13418
|
};
|
|
13089
13419
|
} | {
|
|
13090
13420
|
data?: {
|
|
13091
|
-
/** @example
|
|
13421
|
+
/** @example ef3215ac-6160-4bd2-9361-663931742afd */
|
|
13092
13422
|
uid?: string;
|
|
13093
13423
|
/** @example follow_up */
|
|
13094
13424
|
inspection_type?: string;
|
|
13095
13425
|
/** @example cancelled */
|
|
13096
13426
|
status?: string;
|
|
13097
|
-
/** @example 30 Apr 2026,
|
|
13427
|
+
/** @example 30 Apr 2026, 08:49 AM */
|
|
13098
13428
|
scheduled_date?: string;
|
|
13099
13429
|
/** @example null */
|
|
13100
13430
|
completed_date?: string | null;
|
|
@@ -13102,11 +13432,11 @@ export interface operations {
|
|
|
13102
13432
|
condition_rating?: string;
|
|
13103
13433
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13104
13434
|
summary?: string;
|
|
13105
|
-
/** @example
|
|
13435
|
+
/** @example 23 Jun 2026, 05:38 AM */
|
|
13106
13436
|
next_inspection_date?: string;
|
|
13107
|
-
/** @example 24 Apr 2026,
|
|
13437
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13108
13438
|
created_at?: string;
|
|
13109
|
-
/** @example 24 Apr 2026,
|
|
13439
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13110
13440
|
updated_at?: string;
|
|
13111
13441
|
};
|
|
13112
13442
|
};
|
|
@@ -13161,13 +13491,13 @@ export interface operations {
|
|
|
13161
13491
|
content: {
|
|
13162
13492
|
"application/json": {
|
|
13163
13493
|
data?: {
|
|
13164
|
-
/** @example
|
|
13494
|
+
/** @example 22295c80-ef85-4f7f-b98d-0e73d4e8bc1e */
|
|
13165
13495
|
uid?: string;
|
|
13166
13496
|
/** @example follow_up */
|
|
13167
13497
|
inspection_type?: string;
|
|
13168
13498
|
/** @example cancelled */
|
|
13169
13499
|
status?: string;
|
|
13170
|
-
/** @example 30 Apr 2026,
|
|
13500
|
+
/** @example 30 Apr 2026, 08:49 AM */
|
|
13171
13501
|
scheduled_date?: string;
|
|
13172
13502
|
/** @example null */
|
|
13173
13503
|
completed_date?: string | null;
|
|
@@ -13175,11 +13505,11 @@ export interface operations {
|
|
|
13175
13505
|
condition_rating?: string;
|
|
13176
13506
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13177
13507
|
summary?: string;
|
|
13178
|
-
/** @example
|
|
13508
|
+
/** @example 23 Jun 2026, 05:38 AM */
|
|
13179
13509
|
next_inspection_date?: string;
|
|
13180
|
-
/** @example 24 Apr 2026,
|
|
13510
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13181
13511
|
created_at?: string;
|
|
13182
|
-
/** @example 24 Apr 2026,
|
|
13512
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13183
13513
|
updated_at?: string;
|
|
13184
13514
|
};
|
|
13185
13515
|
};
|
|
@@ -13274,13 +13604,13 @@ export interface operations {
|
|
|
13274
13604
|
content: {
|
|
13275
13605
|
"application/json": {
|
|
13276
13606
|
data?: {
|
|
13277
|
-
/** @example
|
|
13607
|
+
/** @example 15d770e5-80ed-422b-9ee1-8682432c1234 */
|
|
13278
13608
|
uid?: string;
|
|
13279
13609
|
/** @example follow_up */
|
|
13280
13610
|
inspection_type?: string;
|
|
13281
13611
|
/** @example cancelled */
|
|
13282
13612
|
status?: string;
|
|
13283
|
-
/** @example
|
|
13613
|
+
/** @example 18 Apr 2026, 06:16 AM */
|
|
13284
13614
|
scheduled_date?: string;
|
|
13285
13615
|
/** @example null */
|
|
13286
13616
|
completed_date?: string | null;
|
|
@@ -13288,11 +13618,11 @@ export interface operations {
|
|
|
13288
13618
|
condition_rating?: string;
|
|
13289
13619
|
/** @example Et animi quos velit et fugiat. */
|
|
13290
13620
|
summary?: string;
|
|
13291
|
-
/** @example 27 Jul 2026,
|
|
13621
|
+
/** @example 27 Jul 2026, 02:09 PM */
|
|
13292
13622
|
next_inspection_date?: string;
|
|
13293
|
-
/** @example 24 Apr 2026,
|
|
13623
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13294
13624
|
created_at?: string;
|
|
13295
|
-
/** @example 24 Apr 2026,
|
|
13625
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13296
13626
|
updated_at?: string;
|
|
13297
13627
|
};
|
|
13298
13628
|
};
|
|
@@ -13329,13 +13659,13 @@ export interface operations {
|
|
|
13329
13659
|
content: {
|
|
13330
13660
|
"application/json": {
|
|
13331
13661
|
data?: {
|
|
13332
|
-
/** @example
|
|
13662
|
+
/** @example 7ec76fc5-8e0c-455a-884f-bd15a5838d78 */
|
|
13333
13663
|
uid?: string;
|
|
13334
13664
|
/** @example follow_up */
|
|
13335
13665
|
inspection_type?: string;
|
|
13336
13666
|
/** @example cancelled */
|
|
13337
13667
|
status?: string;
|
|
13338
|
-
/** @example 30 Apr 2026,
|
|
13668
|
+
/** @example 30 Apr 2026, 08:49 AM */
|
|
13339
13669
|
scheduled_date?: string;
|
|
13340
13670
|
/** @example null */
|
|
13341
13671
|
completed_date?: string | null;
|
|
@@ -13343,11 +13673,11 @@ export interface operations {
|
|
|
13343
13673
|
condition_rating?: string;
|
|
13344
13674
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13345
13675
|
summary?: string;
|
|
13346
|
-
/** @example
|
|
13676
|
+
/** @example 23 Jun 2026, 05:38 AM */
|
|
13347
13677
|
next_inspection_date?: string;
|
|
13348
|
-
/** @example 24 Apr 2026,
|
|
13678
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13349
13679
|
created_at?: string;
|
|
13350
|
-
/** @example 24 Apr 2026,
|
|
13680
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13351
13681
|
updated_at?: string;
|
|
13352
13682
|
};
|
|
13353
13683
|
};
|
|
@@ -13384,13 +13714,13 @@ export interface operations {
|
|
|
13384
13714
|
content: {
|
|
13385
13715
|
"application/json": {
|
|
13386
13716
|
data?: {
|
|
13387
|
-
/** @example
|
|
13717
|
+
/** @example e6347373-1bf9-410b-a763-50d51f58f2ad */
|
|
13388
13718
|
uid?: string;
|
|
13389
13719
|
/** @example follow_up */
|
|
13390
13720
|
inspection_type?: string;
|
|
13391
13721
|
/** @example cancelled */
|
|
13392
13722
|
status?: string;
|
|
13393
|
-
/** @example
|
|
13723
|
+
/** @example 18 Apr 2026, 06:16 AM */
|
|
13394
13724
|
scheduled_date?: string;
|
|
13395
13725
|
/** @example null */
|
|
13396
13726
|
completed_date?: string | null;
|
|
@@ -13398,11 +13728,11 @@ export interface operations {
|
|
|
13398
13728
|
condition_rating?: string;
|
|
13399
13729
|
/** @example Et animi quos velit et fugiat. */
|
|
13400
13730
|
summary?: string;
|
|
13401
|
-
/** @example 27 Jul 2026,
|
|
13731
|
+
/** @example 27 Jul 2026, 02:09 PM */
|
|
13402
13732
|
next_inspection_date?: string;
|
|
13403
|
-
/** @example 24 Apr 2026,
|
|
13733
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13404
13734
|
created_at?: string;
|
|
13405
|
-
/** @example 24 Apr 2026,
|
|
13735
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13406
13736
|
updated_at?: string;
|
|
13407
13737
|
};
|
|
13408
13738
|
};
|
|
@@ -13529,7 +13859,7 @@ export interface operations {
|
|
|
13529
13859
|
};
|
|
13530
13860
|
} | {
|
|
13531
13861
|
data?: {
|
|
13532
|
-
/** @example
|
|
13862
|
+
/** @example 4333daa6-c89e-4e23-9d32-3555d2c42259 */
|
|
13533
13863
|
uid?: string;
|
|
13534
13864
|
/** @example Qui commodi incidunt iure. */
|
|
13535
13865
|
title?: string;
|
|
@@ -13539,17 +13869,17 @@ export interface operations {
|
|
|
13539
13869
|
status?: string;
|
|
13540
13870
|
/** @example low */
|
|
13541
13871
|
priority?: string;
|
|
13542
|
-
/** @example 23 Apr 2026,
|
|
13872
|
+
/** @example 23 Apr 2026, 08:19 AM */
|
|
13543
13873
|
reported_at?: string;
|
|
13544
13874
|
/** @example null */
|
|
13545
13875
|
assigned_at?: string | null;
|
|
13546
13876
|
/** @example null */
|
|
13547
13877
|
completed_at?: string | null;
|
|
13548
|
-
/** @example
|
|
13878
|
+
/** @example 26 Apr 2026, 04:44 AM */
|
|
13549
13879
|
sla_deadline?: string;
|
|
13550
|
-
/** @example 24 Apr 2026,
|
|
13880
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13551
13881
|
created_at?: string;
|
|
13552
|
-
/** @example 24 Apr 2026,
|
|
13882
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13553
13883
|
updated_at?: string;
|
|
13554
13884
|
};
|
|
13555
13885
|
};
|
|
@@ -13586,7 +13916,7 @@ export interface operations {
|
|
|
13586
13916
|
content: {
|
|
13587
13917
|
"application/json": {
|
|
13588
13918
|
data?: {
|
|
13589
|
-
/** @example
|
|
13919
|
+
/** @example 94966816-e867-4b76-8c0e-b7d7918362ac */
|
|
13590
13920
|
uid?: string;
|
|
13591
13921
|
/** @example Qui commodi incidunt iure. */
|
|
13592
13922
|
title?: string;
|
|
@@ -13596,17 +13926,17 @@ export interface operations {
|
|
|
13596
13926
|
status?: string;
|
|
13597
13927
|
/** @example low */
|
|
13598
13928
|
priority?: string;
|
|
13599
|
-
/** @example 23 Apr 2026,
|
|
13929
|
+
/** @example 23 Apr 2026, 08:19 AM */
|
|
13600
13930
|
reported_at?: string;
|
|
13601
13931
|
/** @example null */
|
|
13602
13932
|
assigned_at?: string | null;
|
|
13603
13933
|
/** @example null */
|
|
13604
13934
|
completed_at?: string | null;
|
|
13605
|
-
/** @example
|
|
13935
|
+
/** @example 26 Apr 2026, 04:44 AM */
|
|
13606
13936
|
sla_deadline?: string;
|
|
13607
|
-
/** @example 24 Apr 2026,
|
|
13937
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13608
13938
|
created_at?: string;
|
|
13609
|
-
/** @example 24 Apr 2026,
|
|
13939
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13610
13940
|
updated_at?: string;
|
|
13611
13941
|
};
|
|
13612
13942
|
};
|
|
@@ -13643,7 +13973,7 @@ export interface operations {
|
|
|
13643
13973
|
content: {
|
|
13644
13974
|
"application/json": {
|
|
13645
13975
|
data?: {
|
|
13646
|
-
/** @example
|
|
13976
|
+
/** @example f4f1301b-a2a8-4d66-8f06-47f3b2946cb5 */
|
|
13647
13977
|
uid?: string;
|
|
13648
13978
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13649
13979
|
title?: string;
|
|
@@ -13653,17 +13983,17 @@ export interface operations {
|
|
|
13653
13983
|
status?: string;
|
|
13654
13984
|
/** @example emergency */
|
|
13655
13985
|
priority?: string;
|
|
13656
|
-
/** @example
|
|
13986
|
+
/** @example 18 Apr 2026, 06:04 AM */
|
|
13657
13987
|
reported_at?: string;
|
|
13658
|
-
/** @example
|
|
13988
|
+
/** @example 23 Apr 2026, 02:24 AM */
|
|
13659
13989
|
assigned_at?: string;
|
|
13660
13990
|
/** @example null */
|
|
13661
13991
|
completed_at?: string | null;
|
|
13662
|
-
/** @example 26 Apr 2026,
|
|
13992
|
+
/** @example 26 Apr 2026, 07:47 AM */
|
|
13663
13993
|
sla_deadline?: string;
|
|
13664
|
-
/** @example 24 Apr 2026,
|
|
13994
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13665
13995
|
created_at?: string;
|
|
13666
|
-
/** @example 24 Apr 2026,
|
|
13996
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13667
13997
|
updated_at?: string;
|
|
13668
13998
|
};
|
|
13669
13999
|
};
|
|
@@ -13700,7 +14030,7 @@ export interface operations {
|
|
|
13700
14030
|
content: {
|
|
13701
14031
|
"application/json": {
|
|
13702
14032
|
data?: {
|
|
13703
|
-
/** @example
|
|
14033
|
+
/** @example 747007c5-797e-41f8-98c8-c01986b51fa1 */
|
|
13704
14034
|
uid?: string;
|
|
13705
14035
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13706
14036
|
title?: string;
|
|
@@ -13710,17 +14040,17 @@ export interface operations {
|
|
|
13710
14040
|
status?: string;
|
|
13711
14041
|
/** @example emergency */
|
|
13712
14042
|
priority?: string;
|
|
13713
|
-
/** @example
|
|
14043
|
+
/** @example 18 Apr 2026, 06:04 AM */
|
|
13714
14044
|
reported_at?: string;
|
|
13715
|
-
/** @example
|
|
14045
|
+
/** @example 23 Apr 2026, 02:24 AM */
|
|
13716
14046
|
assigned_at?: string;
|
|
13717
14047
|
/** @example null */
|
|
13718
14048
|
completed_at?: string | null;
|
|
13719
|
-
/** @example 26 Apr 2026,
|
|
14049
|
+
/** @example 26 Apr 2026, 07:47 AM */
|
|
13720
14050
|
sla_deadline?: string;
|
|
13721
|
-
/** @example 24 Apr 2026,
|
|
14051
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13722
14052
|
created_at?: string;
|
|
13723
|
-
/** @example 24 Apr 2026,
|
|
14053
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13724
14054
|
updated_at?: string;
|
|
13725
14055
|
};
|
|
13726
14056
|
};
|
|
@@ -13757,7 +14087,7 @@ export interface operations {
|
|
|
13757
14087
|
content: {
|
|
13758
14088
|
"application/json": {
|
|
13759
14089
|
data?: {
|
|
13760
|
-
/** @example
|
|
14090
|
+
/** @example 0aa4c80f-4052-4f72-abee-ed0645f7cefd */
|
|
13761
14091
|
uid?: string;
|
|
13762
14092
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13763
14093
|
title?: string;
|
|
@@ -13767,17 +14097,17 @@ export interface operations {
|
|
|
13767
14097
|
status?: string;
|
|
13768
14098
|
/** @example emergency */
|
|
13769
14099
|
priority?: string;
|
|
13770
|
-
/** @example
|
|
14100
|
+
/** @example 18 Apr 2026, 06:04 AM */
|
|
13771
14101
|
reported_at?: string;
|
|
13772
|
-
/** @example
|
|
14102
|
+
/** @example 23 Apr 2026, 02:24 AM */
|
|
13773
14103
|
assigned_at?: string;
|
|
13774
14104
|
/** @example null */
|
|
13775
14105
|
completed_at?: string | null;
|
|
13776
|
-
/** @example 26 Apr 2026,
|
|
14106
|
+
/** @example 26 Apr 2026, 07:47 AM */
|
|
13777
14107
|
sla_deadline?: string;
|
|
13778
|
-
/** @example 24 Apr 2026,
|
|
14108
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13779
14109
|
created_at?: string;
|
|
13780
|
-
/** @example 24 Apr 2026,
|
|
14110
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
13781
14111
|
updated_at?: string;
|
|
13782
14112
|
};
|
|
13783
14113
|
};
|
|
@@ -14173,19 +14503,19 @@ export interface operations {
|
|
|
14173
14503
|
content: {
|
|
14174
14504
|
"application/json": {
|
|
14175
14505
|
data?: {
|
|
14176
|
-
/** @example
|
|
14506
|
+
/** @example 162 */
|
|
14177
14507
|
id?: number;
|
|
14178
14508
|
/** @example 2 */
|
|
14179
14509
|
listing_id?: number;
|
|
14180
14510
|
/** @example completed */
|
|
14181
14511
|
status?: string;
|
|
14182
14512
|
scheduled?: {
|
|
14183
|
-
/** @example 1981-11-
|
|
14513
|
+
/** @example 1981-11-15T00:00:00.000000Z */
|
|
14184
14514
|
start?: string;
|
|
14185
|
-
/** @example 1979-12-
|
|
14515
|
+
/** @example 1979-12-12T00:00:00.000000Z */
|
|
14186
14516
|
end?: string;
|
|
14187
14517
|
};
|
|
14188
|
-
/** @example 2026-04-
|
|
14518
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
14189
14519
|
created_at?: string;
|
|
14190
14520
|
};
|
|
14191
14521
|
};
|
|
@@ -14212,19 +14542,19 @@ export interface operations {
|
|
|
14212
14542
|
content: {
|
|
14213
14543
|
"application/json": {
|
|
14214
14544
|
data?: {
|
|
14215
|
-
/** @example
|
|
14545
|
+
/** @example 163 */
|
|
14216
14546
|
id?: number;
|
|
14217
14547
|
/** @example 2 */
|
|
14218
14548
|
listing_id?: number;
|
|
14219
14549
|
/** @example completed */
|
|
14220
14550
|
status?: string;
|
|
14221
14551
|
scheduled?: {
|
|
14222
|
-
/** @example 1981-11-
|
|
14552
|
+
/** @example 1981-11-15T00:00:00.000000Z */
|
|
14223
14553
|
start?: string;
|
|
14224
|
-
/** @example 1979-12-
|
|
14554
|
+
/** @example 1979-12-12T00:00:00.000000Z */
|
|
14225
14555
|
end?: string;
|
|
14226
14556
|
};
|
|
14227
|
-
/** @example 2026-04-
|
|
14557
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
14228
14558
|
created_at?: string;
|
|
14229
14559
|
};
|
|
14230
14560
|
};
|
|
@@ -14250,41 +14580,41 @@ export interface operations {
|
|
|
14250
14580
|
/**
|
|
14251
14581
|
* @example [
|
|
14252
14582
|
* {
|
|
14253
|
-
* "id":
|
|
14583
|
+
* "id": 164,
|
|
14254
14584
|
* "listing_id": 2,
|
|
14255
14585
|
* "status": "completed",
|
|
14256
14586
|
* "scheduled": {
|
|
14257
|
-
* "start": "1981-11-
|
|
14258
|
-
* "end": "1979-12-
|
|
14587
|
+
* "start": "1981-11-15T00:00:00.000000Z",
|
|
14588
|
+
* "end": "1979-12-12T00:00:00.000000Z"
|
|
14259
14589
|
* },
|
|
14260
|
-
* "created_at": "2026-04-
|
|
14590
|
+
* "created_at": "2026-04-24T18:51:11.000000Z"
|
|
14261
14591
|
* },
|
|
14262
14592
|
* {
|
|
14263
|
-
* "id":
|
|
14593
|
+
* "id": 165,
|
|
14264
14594
|
* "listing_id": 2,
|
|
14265
14595
|
* "status": "completed",
|
|
14266
14596
|
* "scheduled": {
|
|
14267
14597
|
* "start": "2006-09-16T00:00:00.000000Z",
|
|
14268
14598
|
* "end": "2015-01-19T00:00:00.000000Z"
|
|
14269
14599
|
* },
|
|
14270
|
-
* "created_at": "2026-04-
|
|
14600
|
+
* "created_at": "2026-04-24T18:51:11.000000Z"
|
|
14271
14601
|
* }
|
|
14272
14602
|
* ]
|
|
14273
14603
|
*/
|
|
14274
14604
|
data?: {
|
|
14275
|
-
/** @example
|
|
14605
|
+
/** @example 164 */
|
|
14276
14606
|
id?: number;
|
|
14277
14607
|
/** @example 2 */
|
|
14278
14608
|
listing_id?: number;
|
|
14279
14609
|
/** @example completed */
|
|
14280
14610
|
status?: string;
|
|
14281
14611
|
scheduled?: {
|
|
14282
|
-
/** @example 1981-11-
|
|
14612
|
+
/** @example 1981-11-15T00:00:00.000000Z */
|
|
14283
14613
|
start?: string;
|
|
14284
|
-
/** @example 1979-12-
|
|
14614
|
+
/** @example 1979-12-12T00:00:00.000000Z */
|
|
14285
14615
|
end?: string;
|
|
14286
14616
|
};
|
|
14287
|
-
/** @example 2026-04-
|
|
14617
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
14288
14618
|
created_at?: string;
|
|
14289
14619
|
}[];
|
|
14290
14620
|
links?: {
|
|
@@ -14384,19 +14714,19 @@ export interface operations {
|
|
|
14384
14714
|
content: {
|
|
14385
14715
|
"application/json": {
|
|
14386
14716
|
data?: {
|
|
14387
|
-
/** @example
|
|
14717
|
+
/** @example 166 */
|
|
14388
14718
|
id?: number;
|
|
14389
14719
|
/** @example 2 */
|
|
14390
14720
|
listing_id?: number;
|
|
14391
14721
|
/** @example completed */
|
|
14392
14722
|
status?: string;
|
|
14393
14723
|
scheduled?: {
|
|
14394
|
-
/** @example 1981-11-
|
|
14724
|
+
/** @example 1981-11-15T00:00:00.000000Z */
|
|
14395
14725
|
start?: string;
|
|
14396
|
-
/** @example 1979-12-
|
|
14726
|
+
/** @example 1979-12-12T00:00:00.000000Z */
|
|
14397
14727
|
end?: string;
|
|
14398
14728
|
};
|
|
14399
|
-
/** @example 2026-04-
|
|
14729
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
14400
14730
|
created_at?: string;
|
|
14401
14731
|
};
|
|
14402
14732
|
};
|
|
@@ -14423,19 +14753,19 @@ export interface operations {
|
|
|
14423
14753
|
content: {
|
|
14424
14754
|
"application/json": {
|
|
14425
14755
|
data?: {
|
|
14426
|
-
/** @example
|
|
14756
|
+
/** @example 167 */
|
|
14427
14757
|
id?: number;
|
|
14428
14758
|
/** @example 2 */
|
|
14429
14759
|
listing_id?: number;
|
|
14430
14760
|
/** @example completed */
|
|
14431
14761
|
status?: string;
|
|
14432
14762
|
scheduled?: {
|
|
14433
|
-
/** @example 1981-11-
|
|
14763
|
+
/** @example 1981-11-15T00:00:00.000000Z */
|
|
14434
14764
|
start?: string;
|
|
14435
|
-
/** @example 1979-12-
|
|
14765
|
+
/** @example 1979-12-12T00:00:00.000000Z */
|
|
14436
14766
|
end?: string;
|
|
14437
14767
|
};
|
|
14438
|
-
/** @example 2026-04-
|
|
14768
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
14439
14769
|
created_at?: string;
|
|
14440
14770
|
};
|
|
14441
14771
|
};
|
|
@@ -14462,19 +14792,19 @@ export interface operations {
|
|
|
14462
14792
|
content: {
|
|
14463
14793
|
"application/json": {
|
|
14464
14794
|
data?: {
|
|
14465
|
-
/** @example
|
|
14795
|
+
/** @example 168 */
|
|
14466
14796
|
id?: number;
|
|
14467
14797
|
/** @example 2 */
|
|
14468
14798
|
listing_id?: number;
|
|
14469
14799
|
/** @example completed */
|
|
14470
14800
|
status?: string;
|
|
14471
14801
|
scheduled?: {
|
|
14472
|
-
/** @example 1981-11-
|
|
14802
|
+
/** @example 1981-11-15T00:00:00.000000Z */
|
|
14473
14803
|
start?: string;
|
|
14474
|
-
/** @example 1979-12-
|
|
14804
|
+
/** @example 1979-12-12T00:00:00.000000Z */
|
|
14475
14805
|
end?: string;
|
|
14476
14806
|
};
|
|
14477
|
-
/** @example 2026-04-
|
|
14807
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
14478
14808
|
created_at?: string;
|
|
14479
14809
|
};
|
|
14480
14810
|
};
|
|
@@ -15574,7 +15904,7 @@ export interface operations {
|
|
|
15574
15904
|
content: {
|
|
15575
15905
|
"application/json": {
|
|
15576
15906
|
data?: {
|
|
15577
|
-
/** @example
|
|
15907
|
+
/** @example b3540d6a-2097-4c2d-878c-3c501d7bcd29 */
|
|
15578
15908
|
uid?: string;
|
|
15579
15909
|
/** @example Ms. Audra Crooks II */
|
|
15580
15910
|
username?: string;
|
|
@@ -15604,7 +15934,7 @@ export interface operations {
|
|
|
15604
15934
|
timezone?: string;
|
|
15605
15935
|
/** @example Customer */
|
|
15606
15936
|
user_type?: string;
|
|
15607
|
-
/** @example 24 Apr 2026,
|
|
15937
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
15608
15938
|
created?: string;
|
|
15609
15939
|
/** @example 0 seconds ago */
|
|
15610
15940
|
email_verified_at?: string;
|
|
@@ -16073,7 +16403,7 @@ export interface operations {
|
|
|
16073
16403
|
content: {
|
|
16074
16404
|
"application/json": {
|
|
16075
16405
|
data?: {
|
|
16076
|
-
/** @example
|
|
16406
|
+
/** @example 186df064-d302-4f11-9bea-c9de4415d436 */
|
|
16077
16407
|
uid?: string;
|
|
16078
16408
|
/** @example Ms. Audra Crooks II */
|
|
16079
16409
|
username?: string;
|
|
@@ -16103,7 +16433,7 @@ export interface operations {
|
|
|
16103
16433
|
timezone?: string;
|
|
16104
16434
|
/** @example Customer */
|
|
16105
16435
|
user_type?: string;
|
|
16106
|
-
/** @example 24 Apr 2026,
|
|
16436
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
16107
16437
|
created?: string;
|
|
16108
16438
|
/** @example 0 seconds ago */
|
|
16109
16439
|
email_verified_at?: string;
|
|
@@ -16224,11 +16554,11 @@ export interface operations {
|
|
|
16224
16554
|
content: {
|
|
16225
16555
|
"application/json": {
|
|
16226
16556
|
data?: {
|
|
16227
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
16557
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
16228
16558
|
draft_name?: string;
|
|
16229
|
-
/** @example LST-PRP-LTR-
|
|
16559
|
+
/** @example LST-PRP-LTR-MOD9NQLRLAW */
|
|
16230
16560
|
sku?: string;
|
|
16231
|
-
/** @example
|
|
16561
|
+
/** @example ffa89373-898c-4b23-b14e-c3e232edabb0 */
|
|
16232
16562
|
uid?: string;
|
|
16233
16563
|
/** @example Rent */
|
|
16234
16564
|
listing_type?: string;
|
|
@@ -16352,9 +16682,9 @@ export interface operations {
|
|
|
16352
16682
|
/**
|
|
16353
16683
|
* @example [
|
|
16354
16684
|
* {
|
|
16355
|
-
* "draft_name": "New For Rent Property draft • 24 Apr 2026,
|
|
16356
|
-
* "sku": "LST-PRP-LTR-
|
|
16357
|
-
* "uid": "
|
|
16685
|
+
* "draft_name": "New For Rent Property draft • 24 Apr 2026, 6:51 PM",
|
|
16686
|
+
* "sku": "LST-PRP-LTR-MOD9NQMHNZ7",
|
|
16687
|
+
* "uid": "bce1dee0-dae5-45ff-898c-cd2d6fcf463f",
|
|
16358
16688
|
* "listing_type": "Rent",
|
|
16359
16689
|
* "vertical": "Property",
|
|
16360
16690
|
* "arrangement_type": "let_to_let",
|
|
@@ -16371,9 +16701,9 @@ export interface operations {
|
|
|
16371
16701
|
* "media": []
|
|
16372
16702
|
* },
|
|
16373
16703
|
* {
|
|
16374
|
-
* "draft_name": "New Short Let Property draft • 24 Apr 2026,
|
|
16375
|
-
* "sku": "LST-PRP-SHL-
|
|
16376
|
-
* "uid": "
|
|
16704
|
+
* "draft_name": "New Short Let Property draft • 24 Apr 2026, 6:51 PM",
|
|
16705
|
+
* "sku": "LST-PRP-SHL-MOD9NQMKOAF",
|
|
16706
|
+
* "uid": "f08a506c-5b86-4098-81ef-98f86eab4555",
|
|
16377
16707
|
* "listing_type": "Short Let",
|
|
16378
16708
|
* "vertical": "Property",
|
|
16379
16709
|
* "arrangement_type": "short_term_managed",
|
|
@@ -16392,11 +16722,11 @@ export interface operations {
|
|
|
16392
16722
|
* ]
|
|
16393
16723
|
*/
|
|
16394
16724
|
data?: {
|
|
16395
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
16725
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
16396
16726
|
draft_name?: string;
|
|
16397
|
-
/** @example LST-PRP-LTR-
|
|
16727
|
+
/** @example LST-PRP-LTR-MOD9NQMHNZ7 */
|
|
16398
16728
|
sku?: string;
|
|
16399
|
-
/** @example
|
|
16729
|
+
/** @example bce1dee0-dae5-45ff-898c-cd2d6fcf463f */
|
|
16400
16730
|
uid?: string;
|
|
16401
16731
|
/** @example Rent */
|
|
16402
16732
|
listing_type?: string;
|
|
@@ -16506,9 +16836,9 @@ export interface operations {
|
|
|
16506
16836
|
/**
|
|
16507
16837
|
* @example [
|
|
16508
16838
|
* {
|
|
16509
|
-
* "draft_name": "New For Rent Property draft • 24 Apr 2026,
|
|
16510
|
-
* "sku": "LST-PRP-LTR-
|
|
16511
|
-
* "uid": "
|
|
16839
|
+
* "draft_name": "New For Rent Property draft • 24 Apr 2026, 6:51 PM",
|
|
16840
|
+
* "sku": "LST-PRP-LTR-MOD9NQMRIYE",
|
|
16841
|
+
* "uid": "f12cf68c-ee59-40cb-978c-d1abc011c5d0",
|
|
16512
16842
|
* "listing_type": "Rent",
|
|
16513
16843
|
* "vertical": "Property",
|
|
16514
16844
|
* "arrangement_type": "let_to_let",
|
|
@@ -16525,9 +16855,9 @@ export interface operations {
|
|
|
16525
16855
|
* "media": []
|
|
16526
16856
|
* },
|
|
16527
16857
|
* {
|
|
16528
|
-
* "draft_name": "New Short Let Property draft • 24 Apr 2026,
|
|
16529
|
-
* "sku": "LST-PRP-SHL-
|
|
16530
|
-
* "uid": "
|
|
16858
|
+
* "draft_name": "New Short Let Property draft • 24 Apr 2026, 6:51 PM",
|
|
16859
|
+
* "sku": "LST-PRP-SHL-MOD9NQMUXRT",
|
|
16860
|
+
* "uid": "3c0e5c68-e778-4c79-99df-9c7130ba12d8",
|
|
16531
16861
|
* "listing_type": "Short Let",
|
|
16532
16862
|
* "vertical": "Property",
|
|
16533
16863
|
* "arrangement_type": "short_term_managed",
|
|
@@ -16546,11 +16876,11 @@ export interface operations {
|
|
|
16546
16876
|
* ]
|
|
16547
16877
|
*/
|
|
16548
16878
|
data?: {
|
|
16549
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
16879
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
16550
16880
|
draft_name?: string;
|
|
16551
|
-
/** @example LST-PRP-LTR-
|
|
16881
|
+
/** @example LST-PRP-LTR-MOD9NQMRIYE */
|
|
16552
16882
|
sku?: string;
|
|
16553
|
-
/** @example
|
|
16883
|
+
/** @example f12cf68c-ee59-40cb-978c-d1abc011c5d0 */
|
|
16554
16884
|
uid?: string;
|
|
16555
16885
|
/** @example Rent */
|
|
16556
16886
|
listing_type?: string;
|
|
@@ -17614,7 +17944,7 @@ export interface operations {
|
|
|
17614
17944
|
content: {
|
|
17615
17945
|
"application/json": {
|
|
17616
17946
|
data?: {
|
|
17617
|
-
/** @example
|
|
17947
|
+
/** @example a79d7754-56b5-4114-b143-278d6945ce96 */
|
|
17618
17948
|
uid?: string;
|
|
17619
17949
|
/** @example photo */
|
|
17620
17950
|
media_type?: string;
|
|
@@ -17763,11 +18093,11 @@ export interface operations {
|
|
|
17763
18093
|
content: {
|
|
17764
18094
|
"application/json": {
|
|
17765
18095
|
data?: {
|
|
17766
|
-
/** @example New For Rent Property draft • 24 Apr 2026,
|
|
18096
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 6:51 PM */
|
|
17767
18097
|
draft_name?: string;
|
|
17768
|
-
/** @example LST-PRP-LTR-
|
|
18098
|
+
/** @example LST-PRP-LTR-MOD9NQOXPXQ */
|
|
17769
18099
|
sku?: string;
|
|
17770
|
-
/** @example
|
|
18100
|
+
/** @example 263de7f6-3f3b-4084-834d-da393c8bfeb2 */
|
|
17771
18101
|
uid?: string;
|
|
17772
18102
|
/** @example Rent */
|
|
17773
18103
|
listing_type?: string;
|
|
@@ -17927,7 +18257,7 @@ export interface operations {
|
|
|
17927
18257
|
content: {
|
|
17928
18258
|
"application/json": {
|
|
17929
18259
|
data?: {
|
|
17930
|
-
/** @example
|
|
18260
|
+
/** @example 11b40b81-1623-4063-8403-0690e6b48f55 */
|
|
17931
18261
|
uid?: string;
|
|
17932
18262
|
/** @example null */
|
|
17933
18263
|
compliances?: string | null;
|
|
@@ -17978,7 +18308,7 @@ export interface operations {
|
|
|
17978
18308
|
content: {
|
|
17979
18309
|
"application/json": {
|
|
17980
18310
|
data?: {
|
|
17981
|
-
/** @example
|
|
18311
|
+
/** @example 109 */
|
|
17982
18312
|
id?: number;
|
|
17983
18313
|
compliance?: {
|
|
17984
18314
|
/** @example 1 */
|
|
@@ -18000,7 +18330,7 @@ export interface operations {
|
|
|
18000
18330
|
reviewed_by?: number;
|
|
18001
18331
|
/** @example null */
|
|
18002
18332
|
reviewed_at?: string | null;
|
|
18003
|
-
/** @example 2026-04-
|
|
18333
|
+
/** @example 2026-04-24T18:51:10.000000Z */
|
|
18004
18334
|
created_at?: string;
|
|
18005
18335
|
};
|
|
18006
18336
|
};
|
|
@@ -18055,7 +18385,7 @@ export interface operations {
|
|
|
18055
18385
|
/**
|
|
18056
18386
|
* @example [
|
|
18057
18387
|
* {
|
|
18058
|
-
* "uid": "
|
|
18388
|
+
* "uid": "e8058fbd-791d-4bdb-86df-6da4a107987b",
|
|
18059
18389
|
* "listing_id": 1,
|
|
18060
18390
|
* "landlord_id": 2,
|
|
18061
18391
|
* "tenant_id": 2,
|
|
@@ -18067,27 +18397,27 @@ export interface operations {
|
|
|
18067
18397
|
* "is_periodic": false,
|
|
18068
18398
|
* "company_name": null,
|
|
18069
18399
|
* "company_registration_number": null,
|
|
18070
|
-
* "created_at": "2026-04-
|
|
18400
|
+
* "created_at": "2026-04-24T18:51:10.000000Z"
|
|
18071
18401
|
* },
|
|
18072
18402
|
* {
|
|
18073
|
-
* "uid": "
|
|
18403
|
+
* "uid": "015748b5-6b25-4eb2-81fd-26cff7549e36",
|
|
18074
18404
|
* "listing_id": 1,
|
|
18075
18405
|
* "landlord_id": 2,
|
|
18076
18406
|
* "tenant_id": 2,
|
|
18077
18407
|
* "rent_amount": "3832.26",
|
|
18078
18408
|
* "deposit_amount": "1384.27",
|
|
18079
18409
|
* "state": "terminated",
|
|
18080
|
-
* "start_date": "2025-09-
|
|
18081
|
-
* "end_date": "2026-09-
|
|
18410
|
+
* "start_date": "2025-09-25T00:00:00.000000Z",
|
|
18411
|
+
* "end_date": "2026-09-25T00:00:00.000000Z",
|
|
18082
18412
|
* "is_periodic": false,
|
|
18083
18413
|
* "company_name": null,
|
|
18084
18414
|
* "company_registration_number": null,
|
|
18085
|
-
* "created_at": "2026-04-
|
|
18415
|
+
* "created_at": "2026-04-24T18:51:10.000000Z"
|
|
18086
18416
|
* }
|
|
18087
18417
|
* ]
|
|
18088
18418
|
*/
|
|
18089
18419
|
data?: {
|
|
18090
|
-
/** @example
|
|
18420
|
+
/** @example e8058fbd-791d-4bdb-86df-6da4a107987b */
|
|
18091
18421
|
uid?: string;
|
|
18092
18422
|
/** @example 1 */
|
|
18093
18423
|
listing_id?: number;
|
|
@@ -18111,7 +18441,7 @@ export interface operations {
|
|
|
18111
18441
|
company_name?: string | null;
|
|
18112
18442
|
/** @example null */
|
|
18113
18443
|
company_registration_number?: string | null;
|
|
18114
|
-
/** @example 2026-04-
|
|
18444
|
+
/** @example 2026-04-24T18:51:10.000000Z */
|
|
18115
18445
|
created_at?: string;
|
|
18116
18446
|
}[];
|
|
18117
18447
|
links?: {
|
|
@@ -18198,7 +18528,7 @@ export interface operations {
|
|
|
18198
18528
|
/**
|
|
18199
18529
|
* @example [
|
|
18200
18530
|
* {
|
|
18201
|
-
* "uid": "
|
|
18531
|
+
* "uid": "5149fc17-96e7-4ebb-a1a1-400e85382485",
|
|
18202
18532
|
* "listing_id": 1,
|
|
18203
18533
|
* "landlord_id": 2,
|
|
18204
18534
|
* "tenant_id": 2,
|
|
@@ -18210,27 +18540,27 @@ export interface operations {
|
|
|
18210
18540
|
* "is_periodic": false,
|
|
18211
18541
|
* "company_name": null,
|
|
18212
18542
|
* "company_registration_number": null,
|
|
18213
|
-
* "created_at": "2026-04-
|
|
18543
|
+
* "created_at": "2026-04-24T18:51:10.000000Z"
|
|
18214
18544
|
* },
|
|
18215
18545
|
* {
|
|
18216
|
-
* "uid": "
|
|
18546
|
+
* "uid": "d9ca7489-7817-429a-9723-b65ed0727476",
|
|
18217
18547
|
* "listing_id": 1,
|
|
18218
18548
|
* "landlord_id": 2,
|
|
18219
18549
|
* "tenant_id": 2,
|
|
18220
18550
|
* "rent_amount": "3832.26",
|
|
18221
18551
|
* "deposit_amount": "1384.27",
|
|
18222
18552
|
* "state": "terminated",
|
|
18223
|
-
* "start_date": "2025-09-
|
|
18224
|
-
* "end_date": "2026-09-
|
|
18553
|
+
* "start_date": "2025-09-25T00:00:00.000000Z",
|
|
18554
|
+
* "end_date": "2026-09-25T00:00:00.000000Z",
|
|
18225
18555
|
* "is_periodic": false,
|
|
18226
18556
|
* "company_name": null,
|
|
18227
18557
|
* "company_registration_number": null,
|
|
18228
|
-
* "created_at": "2026-04-
|
|
18558
|
+
* "created_at": "2026-04-24T18:51:10.000000Z"
|
|
18229
18559
|
* }
|
|
18230
18560
|
* ]
|
|
18231
18561
|
*/
|
|
18232
18562
|
data?: {
|
|
18233
|
-
/** @example
|
|
18563
|
+
/** @example 5149fc17-96e7-4ebb-a1a1-400e85382485 */
|
|
18234
18564
|
uid?: string;
|
|
18235
18565
|
/** @example 1 */
|
|
18236
18566
|
listing_id?: number;
|
|
@@ -18254,7 +18584,7 @@ export interface operations {
|
|
|
18254
18584
|
company_name?: string | null;
|
|
18255
18585
|
/** @example null */
|
|
18256
18586
|
company_registration_number?: string | null;
|
|
18257
|
-
/** @example 2026-04-
|
|
18587
|
+
/** @example 2026-04-24T18:51:10.000000Z */
|
|
18258
18588
|
created_at?: string;
|
|
18259
18589
|
}[];
|
|
18260
18590
|
links?: {
|
|
@@ -18361,7 +18691,7 @@ export interface operations {
|
|
|
18361
18691
|
content: {
|
|
18362
18692
|
"application/json": {
|
|
18363
18693
|
data?: {
|
|
18364
|
-
/** @example
|
|
18694
|
+
/** @example 137 */
|
|
18365
18695
|
id?: number;
|
|
18366
18696
|
compliance?: {
|
|
18367
18697
|
/** @example 1 */
|
|
@@ -18381,9 +18711,9 @@ export interface operations {
|
|
|
18381
18711
|
rejection_reason?: string | null;
|
|
18382
18712
|
/** @example 1 */
|
|
18383
18713
|
reviewed_by?: number;
|
|
18384
|
-
/** @example 2026-04-
|
|
18714
|
+
/** @example 2026-04-24T18:51:10.000000Z */
|
|
18385
18715
|
reviewed_at?: string;
|
|
18386
|
-
/** @example 2026-04-
|
|
18716
|
+
/** @example 2026-04-24T18:51:10.000000Z */
|
|
18387
18717
|
created_at?: string;
|
|
18388
18718
|
};
|
|
18389
18719
|
};
|
|
@@ -18410,7 +18740,7 @@ export interface operations {
|
|
|
18410
18740
|
content: {
|
|
18411
18741
|
"application/json": {
|
|
18412
18742
|
data?: {
|
|
18413
|
-
/** @example
|
|
18743
|
+
/** @example 138 */
|
|
18414
18744
|
id?: number;
|
|
18415
18745
|
compliance?: {
|
|
18416
18746
|
/** @example 1 */
|
|
@@ -18430,9 +18760,9 @@ export interface operations {
|
|
|
18430
18760
|
rejection_reason?: string | null;
|
|
18431
18761
|
/** @example 1 */
|
|
18432
18762
|
reviewed_by?: number;
|
|
18433
|
-
/** @example 2026-04-
|
|
18763
|
+
/** @example 2026-04-24T18:51:10.000000Z */
|
|
18434
18764
|
reviewed_at?: string;
|
|
18435
|
-
/** @example 2026-04-
|
|
18765
|
+
/** @example 2026-04-24T18:51:10.000000Z */
|
|
18436
18766
|
created_at?: string;
|
|
18437
18767
|
};
|
|
18438
18768
|
};
|
|
@@ -19292,8 +19622,6 @@ export interface operations {
|
|
|
19292
19622
|
header?: never;
|
|
19293
19623
|
path: {
|
|
19294
19624
|
uid: string;
|
|
19295
|
-
/** @description The UID of the maintenance request. */
|
|
19296
|
-
maintenance_uid: string;
|
|
19297
19625
|
};
|
|
19298
19626
|
cookie?: never;
|
|
19299
19627
|
};
|
|
@@ -19566,35 +19894,35 @@ export interface operations {
|
|
|
19566
19894
|
/**
|
|
19567
19895
|
* @example [
|
|
19568
19896
|
* {
|
|
19569
|
-
* "uid": "
|
|
19897
|
+
* "uid": "3080a2af-8ab6-4d02-af0d-e5ec76f54afa",
|
|
19570
19898
|
* "title": "Quos velit et fugiat sunt nihil.",
|
|
19571
19899
|
* "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.",
|
|
19572
19900
|
* "status": "reported",
|
|
19573
19901
|
* "priority": "emergency",
|
|
19574
|
-
* "reported_at": "
|
|
19575
|
-
* "assigned_at": "
|
|
19902
|
+
* "reported_at": "18 Apr 2026, 06:04 AM",
|
|
19903
|
+
* "assigned_at": "23 Apr 2026, 02:24 AM",
|
|
19576
19904
|
* "completed_at": null,
|
|
19577
|
-
* "sla_deadline": "26 Apr 2026,
|
|
19578
|
-
* "created_at": "24 Apr 2026,
|
|
19579
|
-
* "updated_at": "24 Apr 2026,
|
|
19905
|
+
* "sla_deadline": "26 Apr 2026, 07:47 AM",
|
|
19906
|
+
* "created_at": "24 Apr 2026, 06:51 PM",
|
|
19907
|
+
* "updated_at": "24 Apr 2026, 06:51 PM"
|
|
19580
19908
|
* },
|
|
19581
19909
|
* {
|
|
19582
|
-
* "uid": "
|
|
19910
|
+
* "uid": "c2101938-d3b0-4068-85ab-2b6345d8a61b",
|
|
19583
19911
|
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
19584
19912
|
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
19585
19913
|
* "status": "completed",
|
|
19586
19914
|
* "priority": "normal",
|
|
19587
|
-
* "reported_at": "20 Apr 2026,
|
|
19915
|
+
* "reported_at": "20 Apr 2026, 06:43 PM",
|
|
19588
19916
|
* "assigned_at": null,
|
|
19589
19917
|
* "completed_at": null,
|
|
19590
|
-
* "sla_deadline": "27 Apr 2026,
|
|
19591
|
-
* "created_at": "24 Apr 2026,
|
|
19592
|
-
* "updated_at": "24 Apr 2026,
|
|
19918
|
+
* "sla_deadline": "27 Apr 2026, 03:46 PM",
|
|
19919
|
+
* "created_at": "24 Apr 2026, 06:51 PM",
|
|
19920
|
+
* "updated_at": "24 Apr 2026, 06:51 PM"
|
|
19593
19921
|
* }
|
|
19594
19922
|
* ]
|
|
19595
19923
|
*/
|
|
19596
19924
|
data?: {
|
|
19597
|
-
/** @example
|
|
19925
|
+
/** @example 3080a2af-8ab6-4d02-af0d-e5ec76f54afa */
|
|
19598
19926
|
uid?: string;
|
|
19599
19927
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
19600
19928
|
title?: string;
|
|
@@ -19604,17 +19932,17 @@ export interface operations {
|
|
|
19604
19932
|
status?: string;
|
|
19605
19933
|
/** @example emergency */
|
|
19606
19934
|
priority?: string;
|
|
19607
|
-
/** @example
|
|
19935
|
+
/** @example 18 Apr 2026, 06:04 AM */
|
|
19608
19936
|
reported_at?: string;
|
|
19609
|
-
/** @example
|
|
19937
|
+
/** @example 23 Apr 2026, 02:24 AM */
|
|
19610
19938
|
assigned_at?: string;
|
|
19611
19939
|
/** @example null */
|
|
19612
19940
|
completed_at?: string | null;
|
|
19613
|
-
/** @example 26 Apr 2026,
|
|
19941
|
+
/** @example 26 Apr 2026, 07:47 AM */
|
|
19614
19942
|
sla_deadline?: string;
|
|
19615
|
-
/** @example 24 Apr 2026,
|
|
19943
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
19616
19944
|
created_at?: string;
|
|
19617
|
-
/** @example 24 Apr 2026,
|
|
19945
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
19618
19946
|
updated_at?: string;
|
|
19619
19947
|
}[];
|
|
19620
19948
|
links?: {
|
|
@@ -19730,13 +20058,13 @@ export interface operations {
|
|
|
19730
20058
|
};
|
|
19731
20059
|
} | {
|
|
19732
20060
|
data?: {
|
|
19733
|
-
/** @example
|
|
20061
|
+
/** @example 17506ee9-e7d0-447b-9a17-8b24ecef80ed */
|
|
19734
20062
|
uid?: string;
|
|
19735
20063
|
/** @example image */
|
|
19736
20064
|
file_type?: string;
|
|
19737
20065
|
/** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
19738
20066
|
url?: string;
|
|
19739
|
-
/** @example 2026-04-
|
|
20067
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
19740
20068
|
created_at?: string;
|
|
19741
20069
|
};
|
|
19742
20070
|
};
|
|
@@ -19781,7 +20109,7 @@ export interface operations {
|
|
|
19781
20109
|
content: {
|
|
19782
20110
|
"application/json": {
|
|
19783
20111
|
data?: {
|
|
19784
|
-
/** @example
|
|
20112
|
+
/** @example 70 */
|
|
19785
20113
|
id?: number;
|
|
19786
20114
|
/** @example property_inquiry */
|
|
19787
20115
|
type?: string;
|
|
@@ -19789,7 +20117,7 @@ export interface operations {
|
|
|
19789
20117
|
listing_id?: number;
|
|
19790
20118
|
/** @example null */
|
|
19791
20119
|
last_message_at?: string | null;
|
|
19792
|
-
/** @example 2026-04-
|
|
20120
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
19793
20121
|
created_at?: string;
|
|
19794
20122
|
};
|
|
19795
20123
|
};
|
|
@@ -19815,23 +20143,23 @@ export interface operations {
|
|
|
19815
20143
|
/**
|
|
19816
20144
|
* @example [
|
|
19817
20145
|
* {
|
|
19818
|
-
* "id":
|
|
20146
|
+
* "id": 71,
|
|
19819
20147
|
* "type": "property_inquiry",
|
|
19820
20148
|
* "listing_id": 2,
|
|
19821
20149
|
* "last_message_at": null,
|
|
19822
|
-
* "created_at": "2026-04-
|
|
20150
|
+
* "created_at": "2026-04-24T18:51:11.000000Z"
|
|
19823
20151
|
* },
|
|
19824
20152
|
* {
|
|
19825
|
-
* "id":
|
|
20153
|
+
* "id": 72,
|
|
19826
20154
|
* "type": "property_inquiry",
|
|
19827
20155
|
* "listing_id": 2,
|
|
19828
20156
|
* "last_message_at": null,
|
|
19829
|
-
* "created_at": "2026-04-
|
|
20157
|
+
* "created_at": "2026-04-24T18:51:11.000000Z"
|
|
19830
20158
|
* }
|
|
19831
20159
|
* ]
|
|
19832
20160
|
*/
|
|
19833
20161
|
data?: {
|
|
19834
|
-
/** @example
|
|
20162
|
+
/** @example 71 */
|
|
19835
20163
|
id?: number;
|
|
19836
20164
|
/** @example property_inquiry */
|
|
19837
20165
|
type?: string;
|
|
@@ -19839,7 +20167,7 @@ export interface operations {
|
|
|
19839
20167
|
listing_id?: number;
|
|
19840
20168
|
/** @example null */
|
|
19841
20169
|
last_message_at?: string | null;
|
|
19842
|
-
/** @example 2026-04-
|
|
20170
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
19843
20171
|
created_at?: string;
|
|
19844
20172
|
}[];
|
|
19845
20173
|
links?: {
|
|
@@ -20157,27 +20485,27 @@ export interface operations {
|
|
|
20157
20485
|
/**
|
|
20158
20486
|
* @example [
|
|
20159
20487
|
* {
|
|
20160
|
-
* "id": "
|
|
20488
|
+
* "id": "c4f8d889-fc31-47b3-b5f4-5b38537d97e0",
|
|
20161
20489
|
* "type": "APPOINTMENT_CREATED",
|
|
20162
20490
|
* "title": "faker notification",
|
|
20163
20491
|
* "body": "faker notification body",
|
|
20164
20492
|
* "data": [],
|
|
20165
20493
|
* "read_at": null,
|
|
20166
|
-
* "created_at": "2026-04-
|
|
20494
|
+
* "created_at": "2026-04-24T18:51:11.000000Z"
|
|
20167
20495
|
* },
|
|
20168
20496
|
* {
|
|
20169
|
-
* "id": "
|
|
20497
|
+
* "id": "fe457903-6bb5-4547-a25b-c59ba8b75bdc",
|
|
20170
20498
|
* "type": "APPOINTMENT_CREATED",
|
|
20171
20499
|
* "title": "faker notification",
|
|
20172
20500
|
* "body": "faker notification body",
|
|
20173
20501
|
* "data": [],
|
|
20174
20502
|
* "read_at": null,
|
|
20175
|
-
* "created_at": "2026-04-
|
|
20503
|
+
* "created_at": "2026-04-24T18:51:11.000000Z"
|
|
20176
20504
|
* }
|
|
20177
20505
|
* ]
|
|
20178
20506
|
*/
|
|
20179
20507
|
data?: {
|
|
20180
|
-
/** @example
|
|
20508
|
+
/** @example c4f8d889-fc31-47b3-b5f4-5b38537d97e0 */
|
|
20181
20509
|
id?: string;
|
|
20182
20510
|
/** @example APPOINTMENT_CREATED */
|
|
20183
20511
|
type?: string;
|
|
@@ -20189,7 +20517,7 @@ export interface operations {
|
|
|
20189
20517
|
data?: unknown[];
|
|
20190
20518
|
/** @example null */
|
|
20191
20519
|
read_at?: string | null;
|
|
20192
|
-
/** @example 2026-04-
|
|
20520
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
20193
20521
|
created_at?: string;
|
|
20194
20522
|
}[];
|
|
20195
20523
|
links?: {
|
|
@@ -20273,7 +20601,7 @@ export interface operations {
|
|
|
20273
20601
|
};
|
|
20274
20602
|
content: {
|
|
20275
20603
|
"application/json": {
|
|
20276
|
-
/** @example
|
|
20604
|
+
/** @example fa72ac0c-97ae-4b73-8ce6-f5ddc6160405 */
|
|
20277
20605
|
id?: string;
|
|
20278
20606
|
/** @example APPOINTMENT_CREATED */
|
|
20279
20607
|
type?: string;
|
|
@@ -20285,7 +20613,7 @@ export interface operations {
|
|
|
20285
20613
|
data?: unknown[];
|
|
20286
20614
|
/** @example null */
|
|
20287
20615
|
read_at?: string | null;
|
|
20288
|
-
/** @example 2026-04-
|
|
20616
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
20289
20617
|
created_at?: string;
|
|
20290
20618
|
};
|
|
20291
20619
|
};
|
|
@@ -20534,45 +20862,45 @@ export interface operations {
|
|
|
20534
20862
|
/**
|
|
20535
20863
|
* @example [
|
|
20536
20864
|
* {
|
|
20537
|
-
* "id":
|
|
20865
|
+
* "id": 139,
|
|
20538
20866
|
* "rating": 1,
|
|
20539
20867
|
* "comment": "Nice Listing",
|
|
20540
20868
|
* "reviewer": {
|
|
20541
|
-
* "id":
|
|
20542
|
-
* "name": "
|
|
20869
|
+
* "id": 174,
|
|
20870
|
+
* "name": "ejiro"
|
|
20543
20871
|
* },
|
|
20544
|
-
* "created_at": "2026-04-
|
|
20545
|
-
* "updated_at": "2026-04-
|
|
20872
|
+
* "created_at": "2026-04-24T18:51:11+00:00",
|
|
20873
|
+
* "updated_at": "2026-04-24T18:51:11+00:00"
|
|
20546
20874
|
* },
|
|
20547
20875
|
* {
|
|
20548
|
-
* "id":
|
|
20876
|
+
* "id": 140,
|
|
20549
20877
|
* "rating": 1,
|
|
20550
20878
|
* "comment": "Nice Listing",
|
|
20551
20879
|
* "reviewer": {
|
|
20552
20880
|
* "id": 2,
|
|
20553
20881
|
* "name": "dogunfx"
|
|
20554
20882
|
* },
|
|
20555
|
-
* "created_at": "2026-04-
|
|
20556
|
-
* "updated_at": "2026-04-
|
|
20883
|
+
* "created_at": "2026-04-24T18:51:11+00:00",
|
|
20884
|
+
* "updated_at": "2026-04-24T18:51:11+00:00"
|
|
20557
20885
|
* }
|
|
20558
20886
|
* ]
|
|
20559
20887
|
*/
|
|
20560
20888
|
data?: {
|
|
20561
|
-
/** @example
|
|
20889
|
+
/** @example 139 */
|
|
20562
20890
|
id?: number;
|
|
20563
20891
|
/** @example 1 */
|
|
20564
20892
|
rating?: number;
|
|
20565
20893
|
/** @example Nice Listing */
|
|
20566
20894
|
comment?: string;
|
|
20567
20895
|
reviewer?: {
|
|
20568
|
-
/** @example
|
|
20896
|
+
/** @example 174 */
|
|
20569
20897
|
id?: number;
|
|
20570
|
-
/** @example
|
|
20898
|
+
/** @example ejiro */
|
|
20571
20899
|
name?: string;
|
|
20572
20900
|
};
|
|
20573
|
-
/** @example 2026-04-
|
|
20901
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20574
20902
|
created_at?: string;
|
|
20575
|
-
/** @example 2026-04-
|
|
20903
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20576
20904
|
updated_at?: string;
|
|
20577
20905
|
}[];
|
|
20578
20906
|
links?: {
|
|
@@ -20726,21 +21054,21 @@ export interface operations {
|
|
|
20726
21054
|
content: {
|
|
20727
21055
|
"application/json": {
|
|
20728
21056
|
data?: {
|
|
20729
|
-
/** @example
|
|
21057
|
+
/** @example 141 */
|
|
20730
21058
|
id?: number;
|
|
20731
21059
|
/** @example 1 */
|
|
20732
21060
|
rating?: number;
|
|
20733
21061
|
/** @example Nice Listing */
|
|
20734
21062
|
comment?: string;
|
|
20735
21063
|
reviewer?: {
|
|
20736
|
-
/** @example
|
|
21064
|
+
/** @example 22 */
|
|
20737
21065
|
id?: number;
|
|
20738
|
-
/** @example
|
|
21066
|
+
/** @example Theo Ward */
|
|
20739
21067
|
name?: string;
|
|
20740
21068
|
};
|
|
20741
|
-
/** @example 2026-04-
|
|
21069
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20742
21070
|
created_at?: string;
|
|
20743
|
-
/** @example 2026-04-
|
|
21071
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20744
21072
|
updated_at?: string;
|
|
20745
21073
|
};
|
|
20746
21074
|
};
|
|
@@ -20784,21 +21112,21 @@ export interface operations {
|
|
|
20784
21112
|
content: {
|
|
20785
21113
|
"application/json": {
|
|
20786
21114
|
data?: {
|
|
20787
|
-
/** @example
|
|
21115
|
+
/** @example 142 */
|
|
20788
21116
|
id?: number;
|
|
20789
21117
|
/** @example 1 */
|
|
20790
21118
|
rating?: number;
|
|
20791
21119
|
/** @example Nice Listing */
|
|
20792
21120
|
comment?: string;
|
|
20793
21121
|
reviewer?: {
|
|
20794
|
-
/** @example
|
|
21122
|
+
/** @example 7 */
|
|
20795
21123
|
id?: number;
|
|
20796
|
-
/** @example
|
|
21124
|
+
/** @example Sienna Palmer */
|
|
20797
21125
|
name?: string;
|
|
20798
21126
|
};
|
|
20799
|
-
/** @example 2026-04-
|
|
21127
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20800
21128
|
created_at?: string;
|
|
20801
|
-
/** @example 2026-04-
|
|
21129
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20802
21130
|
updated_at?: string;
|
|
20803
21131
|
};
|
|
20804
21132
|
};
|
|
@@ -20840,21 +21168,21 @@ export interface operations {
|
|
|
20840
21168
|
content: {
|
|
20841
21169
|
"application/json": {
|
|
20842
21170
|
data?: {
|
|
20843
|
-
/** @example
|
|
21171
|
+
/** @example 143 */
|
|
20844
21172
|
id?: number;
|
|
20845
21173
|
/** @example 1 */
|
|
20846
21174
|
rating?: number;
|
|
20847
21175
|
/** @example Nice Listing */
|
|
20848
21176
|
comment?: string;
|
|
20849
21177
|
reviewer?: {
|
|
20850
|
-
/** @example
|
|
21178
|
+
/** @example 8 */
|
|
20851
21179
|
id?: number;
|
|
20852
|
-
/** @example
|
|
21180
|
+
/** @example Kyle Matthews */
|
|
20853
21181
|
name?: string;
|
|
20854
21182
|
};
|
|
20855
|
-
/** @example 2026-04-
|
|
21183
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20856
21184
|
created_at?: string;
|
|
20857
|
-
/** @example 2026-04-
|
|
21185
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20858
21186
|
updated_at?: string;
|
|
20859
21187
|
};
|
|
20860
21188
|
};
|
|
@@ -20881,21 +21209,21 @@ export interface operations {
|
|
|
20881
21209
|
content: {
|
|
20882
21210
|
"application/json": {
|
|
20883
21211
|
data?: {
|
|
20884
|
-
/** @example
|
|
21212
|
+
/** @example 144 */
|
|
20885
21213
|
id?: number;
|
|
20886
21214
|
/** @example 1 */
|
|
20887
21215
|
rating?: number;
|
|
20888
21216
|
/** @example Nice Listing */
|
|
20889
21217
|
comment?: string;
|
|
20890
21218
|
reviewer?: {
|
|
20891
|
-
/** @example
|
|
21219
|
+
/** @example 25 */
|
|
20892
21220
|
id?: number;
|
|
20893
|
-
/** @example
|
|
21221
|
+
/** @example Jayden Ward */
|
|
20894
21222
|
name?: string;
|
|
20895
21223
|
};
|
|
20896
|
-
/** @example 2026-04-
|
|
21224
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20897
21225
|
created_at?: string;
|
|
20898
|
-
/** @example 2026-04-
|
|
21226
|
+
/** @example 2026-04-24T18:51:11+00:00 */
|
|
20899
21227
|
updated_at?: string;
|
|
20900
21228
|
};
|
|
20901
21229
|
};
|
|
@@ -20922,7 +21250,7 @@ export interface operations {
|
|
|
20922
21250
|
content: {
|
|
20923
21251
|
"application/json": {
|
|
20924
21252
|
data?: {
|
|
20925
|
-
/** @example
|
|
21253
|
+
/** @example a3c6c4d6-b4e3-4c1e-8da4-db4bd132649e */
|
|
20926
21254
|
uid?: string;
|
|
20927
21255
|
/** @example 1 */
|
|
20928
21256
|
listing_id?: number;
|
|
@@ -20946,7 +21274,7 @@ export interface operations {
|
|
|
20946
21274
|
company_name?: string | null;
|
|
20947
21275
|
/** @example null */
|
|
20948
21276
|
company_registration_number?: string | null;
|
|
20949
|
-
/** @example 2026-04-
|
|
21277
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
20950
21278
|
created_at?: string;
|
|
20951
21279
|
/** @example [] */
|
|
20952
21280
|
compliances?: unknown[];
|
|
@@ -21023,7 +21351,7 @@ export interface operations {
|
|
|
21023
21351
|
content: {
|
|
21024
21352
|
"application/json": {
|
|
21025
21353
|
data?: {
|
|
21026
|
-
/** @example
|
|
21354
|
+
/** @example a60c7704-eed8-462b-aac6-3ecb89aba6b5 */
|
|
21027
21355
|
uid?: string;
|
|
21028
21356
|
/** @example 1 */
|
|
21029
21357
|
listing_id?: number;
|
|
@@ -21047,7 +21375,7 @@ export interface operations {
|
|
|
21047
21375
|
company_name?: string | null;
|
|
21048
21376
|
/** @example null */
|
|
21049
21377
|
company_registration_number?: string | null;
|
|
21050
|
-
/** @example 2026-04-
|
|
21378
|
+
/** @example 2026-04-24T18:51:11.000000Z */
|
|
21051
21379
|
created_at?: string;
|
|
21052
21380
|
};
|
|
21053
21381
|
};
|
|
@@ -21341,7 +21669,7 @@ export interface operations {
|
|
|
21341
21669
|
* "changed_by_user_id": 3,
|
|
21342
21670
|
* "changed_by_name": "Teagan King",
|
|
21343
21671
|
* "comment": "Qui commodi incidunt iure odit.",
|
|
21344
|
-
* "created_at": "2025-12-
|
|
21672
|
+
* "created_at": "2025-12-17T05:38:10.000000Z"
|
|
21345
21673
|
* },
|
|
21346
21674
|
* {
|
|
21347
21675
|
* "from_state": "pre_move_in_ready",
|
|
@@ -21349,7 +21677,7 @@ export interface operations {
|
|
|
21349
21677
|
* "changed_by_user_id": 3,
|
|
21350
21678
|
* "changed_by_name": "Teagan King",
|
|
21351
21679
|
* "comment": null,
|
|
21352
|
-
* "created_at": "2025-11-
|
|
21680
|
+
* "created_at": "2025-11-02T13:33:50.000000Z"
|
|
21353
21681
|
* }
|
|
21354
21682
|
* ]
|
|
21355
21683
|
*/
|
|
@@ -21364,7 +21692,7 @@ export interface operations {
|
|
|
21364
21692
|
changed_by_name?: string;
|
|
21365
21693
|
/** @example Qui commodi incidunt iure odit. */
|
|
21366
21694
|
comment?: string;
|
|
21367
|
-
/** @example 2025-12-
|
|
21695
|
+
/** @example 2025-12-17T05:38:10.000000Z */
|
|
21368
21696
|
created_at?: string;
|
|
21369
21697
|
}[];
|
|
21370
21698
|
};
|
|
@@ -21608,7 +21936,7 @@ export interface operations {
|
|
|
21608
21936
|
content: {
|
|
21609
21937
|
"application/json": {
|
|
21610
21938
|
data?: {
|
|
21611
|
-
/** @example
|
|
21939
|
+
/** @example 50289fbc-9749-44c0-9e5f-5edb9ffd996e */
|
|
21612
21940
|
uid?: string;
|
|
21613
21941
|
/** @example Ms. Audra Crooks II */
|
|
21614
21942
|
username?: string;
|
|
@@ -21616,7 +21944,7 @@ export interface operations {
|
|
|
21616
21944
|
first_name?: string | null;
|
|
21617
21945
|
/** @example null */
|
|
21618
21946
|
last_name?: string | null;
|
|
21619
|
-
/** @example
|
|
21947
|
+
/** @example hirthe.theo@example.com */
|
|
21620
21948
|
email?: string;
|
|
21621
21949
|
/** @example null */
|
|
21622
21950
|
phone?: string | null;
|
|
@@ -21638,7 +21966,7 @@ export interface operations {
|
|
|
21638
21966
|
timezone?: string;
|
|
21639
21967
|
/** @example Customer */
|
|
21640
21968
|
user_type?: string;
|
|
21641
|
-
/** @example 24 Apr 2026,
|
|
21969
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
21642
21970
|
created?: string;
|
|
21643
21971
|
/** @example 0 seconds ago */
|
|
21644
21972
|
email_verified_at?: string;
|
|
@@ -21737,7 +22065,7 @@ export interface operations {
|
|
|
21737
22065
|
content: {
|
|
21738
22066
|
"application/json": {
|
|
21739
22067
|
data?: {
|
|
21740
|
-
/** @example
|
|
22068
|
+
/** @example 1df76bab-eea4-495c-be74-41cafa7a8221 */
|
|
21741
22069
|
uid?: string;
|
|
21742
22070
|
/** @example Morgan Hirthe */
|
|
21743
22071
|
username?: string;
|
|
@@ -21767,7 +22095,7 @@ export interface operations {
|
|
|
21767
22095
|
timezone?: string;
|
|
21768
22096
|
/** @example Customer */
|
|
21769
22097
|
user_type?: string;
|
|
21770
|
-
/** @example 24 Apr 2026,
|
|
22098
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
21771
22099
|
created?: string;
|
|
21772
22100
|
/** @example 0 seconds ago */
|
|
21773
22101
|
email_verified_at?: string;
|
|
@@ -21839,7 +22167,7 @@ export interface operations {
|
|
|
21839
22167
|
content: {
|
|
21840
22168
|
"application/json": {
|
|
21841
22169
|
data?: {
|
|
21842
|
-
/** @example
|
|
22170
|
+
/** @example 5092f0b9-0c2b-4e03-a81b-797e4f7da0e0 */
|
|
21843
22171
|
uid?: string;
|
|
21844
22172
|
/** @example Ms. Audra Crooks II */
|
|
21845
22173
|
username?: string;
|
|
@@ -21847,7 +22175,7 @@ export interface operations {
|
|
|
21847
22175
|
first_name?: string | null;
|
|
21848
22176
|
/** @example null */
|
|
21849
22177
|
last_name?: string | null;
|
|
21850
|
-
/** @example
|
|
22178
|
+
/** @example leo34@example.net */
|
|
21851
22179
|
email?: string;
|
|
21852
22180
|
/** @example null */
|
|
21853
22181
|
phone?: string | null;
|
|
@@ -21869,7 +22197,7 @@ export interface operations {
|
|
|
21869
22197
|
timezone?: string;
|
|
21870
22198
|
/** @example Customer */
|
|
21871
22199
|
user_type?: string;
|
|
21872
|
-
/** @example 24 Apr 2026,
|
|
22200
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
21873
22201
|
created?: string;
|
|
21874
22202
|
/** @example 0 seconds ago */
|
|
21875
22203
|
email_verified_at?: string;
|
|
@@ -22109,7 +22437,7 @@ export interface operations {
|
|
|
22109
22437
|
completed_layers?: number;
|
|
22110
22438
|
/** @example 4 */
|
|
22111
22439
|
pending_layers?: number;
|
|
22112
|
-
/** @example 24 Apr 2026,
|
|
22440
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
22113
22441
|
last_calculated_at?: string;
|
|
22114
22442
|
};
|
|
22115
22443
|
};
|
|
@@ -22157,7 +22485,7 @@ export interface operations {
|
|
|
22157
22485
|
completed_layers?: number;
|
|
22158
22486
|
/** @example 4 */
|
|
22159
22487
|
pending_layers?: number;
|
|
22160
|
-
/** @example 24 Apr 2026,
|
|
22488
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
22161
22489
|
last_calculated_at?: string;
|
|
22162
22490
|
};
|
|
22163
22491
|
};
|
|
@@ -22191,14 +22519,14 @@ export interface operations {
|
|
|
22191
22519
|
content: {
|
|
22192
22520
|
"application/json": {
|
|
22193
22521
|
data?: {
|
|
22194
|
-
/** @example
|
|
22522
|
+
/** @example 4bc2a0a1-b0d3-4dd4-8b4a-a4d8bc881e1b */
|
|
22195
22523
|
wishlist_uid?: string;
|
|
22196
22524
|
listing?: {
|
|
22197
|
-
/** @example New For Sale Used Item draft • 24 Apr 2026,
|
|
22525
|
+
/** @example New For Sale Used Item draft • 24 Apr 2026, 6:51 PM */
|
|
22198
22526
|
draft_name?: string;
|
|
22199
|
-
/** @example LST-UIT-SAL-
|
|
22527
|
+
/** @example LST-UIT-SAL-MOD9NRHJYAT */
|
|
22200
22528
|
sku?: string;
|
|
22201
|
-
/** @example
|
|
22529
|
+
/** @example b721fdaf-ea5e-4e58-9d80-83290d3b582f */
|
|
22202
22530
|
uid?: string;
|
|
22203
22531
|
/** @example Sale */
|
|
22204
22532
|
listing_type?: string;
|
|
@@ -22282,15 +22610,15 @@ export interface operations {
|
|
|
22282
22610
|
/**
|
|
22283
22611
|
* @example [
|
|
22284
22612
|
* {
|
|
22285
|
-
* "wishlist_uid": "
|
|
22613
|
+
* "wishlist_uid": "e5fb69b8-c4c1-4620-b049-1c04c2ae822b"
|
|
22286
22614
|
* },
|
|
22287
22615
|
* {
|
|
22288
|
-
* "wishlist_uid": "
|
|
22616
|
+
* "wishlist_uid": "728fe694-e4dc-4239-ad5b-9b450f1f6c25"
|
|
22289
22617
|
* }
|
|
22290
22618
|
* ]
|
|
22291
22619
|
*/
|
|
22292
22620
|
data?: {
|
|
22293
|
-
/** @example
|
|
22621
|
+
/** @example e5fb69b8-c4c1-4620-b049-1c04c2ae822b */
|
|
22294
22622
|
wishlist_uid?: string;
|
|
22295
22623
|
}[];
|
|
22296
22624
|
links?: {
|
|
@@ -22425,7 +22753,7 @@ export interface operations {
|
|
|
22425
22753
|
completed_layers?: number;
|
|
22426
22754
|
/** @example 4 */
|
|
22427
22755
|
pending_layers?: number;
|
|
22428
|
-
/** @example 24 Apr 2026,
|
|
22756
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
22429
22757
|
last_calculated_at?: string;
|
|
22430
22758
|
};
|
|
22431
22759
|
};
|
|
@@ -22587,7 +22915,7 @@ export interface operations {
|
|
|
22587
22915
|
completed_layers?: number;
|
|
22588
22916
|
/** @example 4 */
|
|
22589
22917
|
pending_layers?: number;
|
|
22590
|
-
/** @example 24 Apr 2026,
|
|
22918
|
+
/** @example 24 Apr 2026, 06:51 PM */
|
|
22591
22919
|
last_calculated_at?: string;
|
|
22592
22920
|
};
|
|
22593
22921
|
};
|