@justins-home/types 1.1.47 → 1.1.48
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 +628 -296
- 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;
|
|
@@ -5566,6 +5626,135 @@ export interface components {
|
|
|
5566
5626
|
}
|
|
5567
5627
|
export type $defs = Record<string, never>;
|
|
5568
5628
|
export interface operations {
|
|
5629
|
+
newAdmin: {
|
|
5630
|
+
parameters: {
|
|
5631
|
+
query?: never;
|
|
5632
|
+
header?: never;
|
|
5633
|
+
path?: never;
|
|
5634
|
+
cookie?: never;
|
|
5635
|
+
};
|
|
5636
|
+
requestBody: {
|
|
5637
|
+
content: {
|
|
5638
|
+
"application/json": {
|
|
5639
|
+
/**
|
|
5640
|
+
* @description Full name of the admin.
|
|
5641
|
+
* @example John Doe
|
|
5642
|
+
*/
|
|
5643
|
+
name: string;
|
|
5644
|
+
/**
|
|
5645
|
+
* @description Email address of the admin. Must be a valid email address.
|
|
5646
|
+
* @example john@example.com
|
|
5647
|
+
*/
|
|
5648
|
+
email: string;
|
|
5649
|
+
/**
|
|
5650
|
+
* @description Account password for the admin.
|
|
5651
|
+
* @example secret123
|
|
5652
|
+
*/
|
|
5653
|
+
password?: string | null;
|
|
5654
|
+
/**
|
|
5655
|
+
* @description Contact phone number of the admin.
|
|
5656
|
+
* @example +447700900123
|
|
5657
|
+
*/
|
|
5658
|
+
phone?: string | null;
|
|
5659
|
+
/**
|
|
5660
|
+
* @description Account status of the admin.
|
|
5661
|
+
* @example active
|
|
5662
|
+
*/
|
|
5663
|
+
status?: string | null;
|
|
5664
|
+
/**
|
|
5665
|
+
* @description The role of the admin being created.
|
|
5666
|
+
* @example manager
|
|
5667
|
+
*/
|
|
5668
|
+
role?: string | null;
|
|
5669
|
+
};
|
|
5670
|
+
};
|
|
5671
|
+
};
|
|
5672
|
+
responses: {
|
|
5673
|
+
200: {
|
|
5674
|
+
headers: {
|
|
5675
|
+
[name: string]: unknown;
|
|
5676
|
+
};
|
|
5677
|
+
content: {
|
|
5678
|
+
"application/json": {
|
|
5679
|
+
data?: {
|
|
5680
|
+
/** @example 4b155eeb-ded7-4ea5-94ec-0c82922337f5 */
|
|
5681
|
+
uid?: string;
|
|
5682
|
+
/** @example Ms. Audra Crooks II */
|
|
5683
|
+
username?: string;
|
|
5684
|
+
/** @example null */
|
|
5685
|
+
first_name?: string | null;
|
|
5686
|
+
/** @example null */
|
|
5687
|
+
last_name?: string | null;
|
|
5688
|
+
/** @example aschuster@example.com */
|
|
5689
|
+
email?: string;
|
|
5690
|
+
/** @example null */
|
|
5691
|
+
phone?: string | null;
|
|
5692
|
+
/** @example null */
|
|
5693
|
+
status?: string | null;
|
|
5694
|
+
/** @example form */
|
|
5695
|
+
user_mode?: string;
|
|
5696
|
+
/** @example null */
|
|
5697
|
+
last_login_at?: string | null;
|
|
5698
|
+
/** @example null */
|
|
5699
|
+
last_login_ip?: string | null;
|
|
5700
|
+
/** @example false */
|
|
5701
|
+
two_factor_enabled?: boolean;
|
|
5702
|
+
/** @example null */
|
|
5703
|
+
avatar_path?: string | null;
|
|
5704
|
+
/** @example en-GB */
|
|
5705
|
+
language?: string;
|
|
5706
|
+
/** @example Europe/London */
|
|
5707
|
+
timezone?: string;
|
|
5708
|
+
/** @example Customer */
|
|
5709
|
+
user_type?: string;
|
|
5710
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
5711
|
+
created?: string;
|
|
5712
|
+
/** @example 0 seconds ago */
|
|
5713
|
+
email_verified_at?: string;
|
|
5714
|
+
verification_status?: {
|
|
5715
|
+
/** @example not_verified */
|
|
5716
|
+
overall?: string;
|
|
5717
|
+
/**
|
|
5718
|
+
* @example [
|
|
5719
|
+
* {
|
|
5720
|
+
* "verification_name": "Email Verification",
|
|
5721
|
+
* "verification_description": "Verify the user's email address",
|
|
5722
|
+
* "verification_key": "email_verified",
|
|
5723
|
+
* "state": "not_verified"
|
|
5724
|
+
* },
|
|
5725
|
+
* {
|
|
5726
|
+
* "verification_name": "Phone Number Verification",
|
|
5727
|
+
* "verification_description": "Verify the user's phone number via OTP",
|
|
5728
|
+
* "verification_key": "phone_verified",
|
|
5729
|
+
* "state": "not_verified"
|
|
5730
|
+
* },
|
|
5731
|
+
* {
|
|
5732
|
+
* "verification_name": "Government ID Verification",
|
|
5733
|
+
* "verification_description": "Upload government ID",
|
|
5734
|
+
* "verification_key": "id_document",
|
|
5735
|
+
* "state": "not_verified"
|
|
5736
|
+
* }
|
|
5737
|
+
* ]
|
|
5738
|
+
*/
|
|
5739
|
+
breakdown?: {
|
|
5740
|
+
/** @example Email Verification */
|
|
5741
|
+
verification_name?: string;
|
|
5742
|
+
/** @example Verify the user's email address */
|
|
5743
|
+
verification_description?: string;
|
|
5744
|
+
/** @example email_verified */
|
|
5745
|
+
verification_key?: string;
|
|
5746
|
+
/** @example not_verified */
|
|
5747
|
+
state?: string;
|
|
5748
|
+
}[];
|
|
5749
|
+
};
|
|
5750
|
+
/** @example null */
|
|
5751
|
+
role?: string | null;
|
|
5752
|
+
};
|
|
5753
|
+
};
|
|
5754
|
+
};
|
|
5755
|
+
};
|
|
5756
|
+
};
|
|
5757
|
+
};
|
|
5569
5758
|
basicLoginAdmin: {
|
|
5570
5759
|
parameters: {
|
|
5571
5760
|
query?: never;
|
|
@@ -6046,7 +6235,7 @@ export interface operations {
|
|
|
6046
6235
|
content: {
|
|
6047
6236
|
"application/json": {
|
|
6048
6237
|
data?: {
|
|
6049
|
-
/** @example
|
|
6238
|
+
/** @example ea209fa4-ac00-4ead-9f43-f0bb04dd50bb */
|
|
6050
6239
|
uid?: string;
|
|
6051
6240
|
/** @example Ms. Audra Crooks II */
|
|
6052
6241
|
username?: string;
|
|
@@ -6054,7 +6243,7 @@ export interface operations {
|
|
|
6054
6243
|
first_name?: string | null;
|
|
6055
6244
|
/** @example null */
|
|
6056
6245
|
last_name?: string | null;
|
|
6057
|
-
/** @example
|
|
6246
|
+
/** @example gilbert32@example.com */
|
|
6058
6247
|
email?: string;
|
|
6059
6248
|
/** @example null */
|
|
6060
6249
|
phone?: string | null;
|
|
@@ -6076,7 +6265,7 @@ export interface operations {
|
|
|
6076
6265
|
timezone?: string;
|
|
6077
6266
|
/** @example Customer */
|
|
6078
6267
|
user_type?: string;
|
|
6079
|
-
/** @example 24 Apr 2026, 12
|
|
6268
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
6080
6269
|
created?: string;
|
|
6081
6270
|
/** @example 0 seconds ago */
|
|
6082
6271
|
email_verified_at?: string;
|
|
@@ -6124,6 +6313,143 @@ export interface operations {
|
|
|
6124
6313
|
};
|
|
6125
6314
|
};
|
|
6126
6315
|
};
|
|
6316
|
+
fetchAdminAccounts: {
|
|
6317
|
+
parameters: {
|
|
6318
|
+
query?: {
|
|
6319
|
+
/** @description Items per page for the paginated admin list. Must be at least 1. Must not be greater than 100. */
|
|
6320
|
+
per_page?: number | null;
|
|
6321
|
+
/** @description Pagination page number. Must be at least 1. */
|
|
6322
|
+
page?: number | null;
|
|
6323
|
+
};
|
|
6324
|
+
header?: never;
|
|
6325
|
+
path?: never;
|
|
6326
|
+
cookie?: never;
|
|
6327
|
+
};
|
|
6328
|
+
requestBody?: never;
|
|
6329
|
+
responses: {
|
|
6330
|
+
/** @description Retrieve paginated admin accounts */
|
|
6331
|
+
200: {
|
|
6332
|
+
headers: {
|
|
6333
|
+
[name: string]: unknown;
|
|
6334
|
+
};
|
|
6335
|
+
content: {
|
|
6336
|
+
"application/json": {
|
|
6337
|
+
/** @example Admins fetched successfully */
|
|
6338
|
+
message?: string;
|
|
6339
|
+
/** @example null */
|
|
6340
|
+
event?: string | null;
|
|
6341
|
+
data?: {
|
|
6342
|
+
/**
|
|
6343
|
+
* @example [
|
|
6344
|
+
* {
|
|
6345
|
+
* "uid": "usr_123",
|
|
6346
|
+
* "username": "Jane Admin",
|
|
6347
|
+
* "email": "admin@example.com",
|
|
6348
|
+
* "phone": "+447700900123",
|
|
6349
|
+
* "status": "active",
|
|
6350
|
+
* "avatar_path": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg",
|
|
6351
|
+
* "role": "manager",
|
|
6352
|
+
* "created_at": "2026-04-24T10:00:00Z"
|
|
6353
|
+
* }
|
|
6354
|
+
* ]
|
|
6355
|
+
*/
|
|
6356
|
+
items?: {
|
|
6357
|
+
/** @example usr_123 */
|
|
6358
|
+
uid?: string;
|
|
6359
|
+
/** @example Jane Admin */
|
|
6360
|
+
username?: string;
|
|
6361
|
+
/** @example admin@example.com */
|
|
6362
|
+
email?: string;
|
|
6363
|
+
/** @example +447700900123 */
|
|
6364
|
+
phone?: string;
|
|
6365
|
+
/** @example active */
|
|
6366
|
+
status?: string;
|
|
6367
|
+
/** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg */
|
|
6368
|
+
avatar_path?: string;
|
|
6369
|
+
/** @example manager */
|
|
6370
|
+
role?: string;
|
|
6371
|
+
/** @example 2026-04-24T10:00:00Z */
|
|
6372
|
+
created_at?: string;
|
|
6373
|
+
}[];
|
|
6374
|
+
pagination?: {
|
|
6375
|
+
/** @example 1 */
|
|
6376
|
+
current_page?: number;
|
|
6377
|
+
/** @example 15 */
|
|
6378
|
+
per_page?: number;
|
|
6379
|
+
/** @example 1 */
|
|
6380
|
+
total?: number;
|
|
6381
|
+
/** @example 1 */
|
|
6382
|
+
last_page?: number;
|
|
6383
|
+
/** @example 1 */
|
|
6384
|
+
from?: number;
|
|
6385
|
+
/** @example 1 */
|
|
6386
|
+
to?: number;
|
|
6387
|
+
};
|
|
6388
|
+
};
|
|
6389
|
+
};
|
|
6390
|
+
};
|
|
6391
|
+
};
|
|
6392
|
+
};
|
|
6393
|
+
};
|
|
6394
|
+
fetchAllAdminsNoPagination: {
|
|
6395
|
+
parameters: {
|
|
6396
|
+
query?: never;
|
|
6397
|
+
header?: never;
|
|
6398
|
+
path?: never;
|
|
6399
|
+
cookie?: never;
|
|
6400
|
+
};
|
|
6401
|
+
requestBody?: never;
|
|
6402
|
+
responses: {
|
|
6403
|
+
/** @description Retrieve all admin accounts without pagination */
|
|
6404
|
+
200: {
|
|
6405
|
+
headers: {
|
|
6406
|
+
[name: string]: unknown;
|
|
6407
|
+
};
|
|
6408
|
+
content: {
|
|
6409
|
+
"application/json": {
|
|
6410
|
+
/** @example Admins fetched successfully */
|
|
6411
|
+
message?: string;
|
|
6412
|
+
/** @example null */
|
|
6413
|
+
event?: string | null;
|
|
6414
|
+
data?: {
|
|
6415
|
+
/**
|
|
6416
|
+
* @example [
|
|
6417
|
+
* {
|
|
6418
|
+
* "uid": "usr_123",
|
|
6419
|
+
* "username": "Jane Admin",
|
|
6420
|
+
* "email": "admin@example.com",
|
|
6421
|
+
* "phone": "+447700900123",
|
|
6422
|
+
* "status": "active",
|
|
6423
|
+
* "avatar_path": "http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg",
|
|
6424
|
+
* "role": "manager",
|
|
6425
|
+
* "created_at": "2026-04-24T10:00:00Z"
|
|
6426
|
+
* }
|
|
6427
|
+
* ]
|
|
6428
|
+
*/
|
|
6429
|
+
items?: {
|
|
6430
|
+
/** @example usr_123 */
|
|
6431
|
+
uid?: string;
|
|
6432
|
+
/** @example Jane Admin */
|
|
6433
|
+
username?: string;
|
|
6434
|
+
/** @example admin@example.com */
|
|
6435
|
+
email?: string;
|
|
6436
|
+
/** @example +447700900123 */
|
|
6437
|
+
phone?: string;
|
|
6438
|
+
/** @example active */
|
|
6439
|
+
status?: string;
|
|
6440
|
+
/** @example http://app.justinshome-backendcore.test/inspection-media/insp_34fda1/evidence.jpg */
|
|
6441
|
+
avatar_path?: string;
|
|
6442
|
+
/** @example manager */
|
|
6443
|
+
role?: string;
|
|
6444
|
+
/** @example 2026-04-24T10:00:00Z */
|
|
6445
|
+
created_at?: string;
|
|
6446
|
+
}[];
|
|
6447
|
+
};
|
|
6448
|
+
};
|
|
6449
|
+
};
|
|
6450
|
+
};
|
|
6451
|
+
};
|
|
6452
|
+
};
|
|
6127
6453
|
fetchLandlordListAdmin: {
|
|
6128
6454
|
parameters: {
|
|
6129
6455
|
query?: {
|
|
@@ -6329,11 +6655,11 @@ export interface operations {
|
|
|
6329
6655
|
content: {
|
|
6330
6656
|
"application/json": {
|
|
6331
6657
|
data?: {
|
|
6332
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
6658
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
6333
6659
|
draft_name?: string;
|
|
6334
|
-
/** @example LST-PRP-LTR-
|
|
6660
|
+
/** @example LST-PRP-LTR-MOCZPR86SOK */
|
|
6335
6661
|
sku?: string;
|
|
6336
|
-
/** @example
|
|
6662
|
+
/** @example 45c2b2ec-dc04-40c5-bcf4-712472baff55 */
|
|
6337
6663
|
uid?: string;
|
|
6338
6664
|
/** @example Rent */
|
|
6339
6665
|
listing_type?: string;
|
|
@@ -7745,7 +8071,7 @@ export interface operations {
|
|
|
7745
8071
|
content: {
|
|
7746
8072
|
"application/json": {
|
|
7747
8073
|
/**
|
|
7748
|
-
* @example
|
|
8074
|
+
* @example Unverified
|
|
7749
8075
|
* @enum {string}
|
|
7750
8076
|
*/
|
|
7751
8077
|
status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
|
|
@@ -7760,7 +8086,7 @@ export interface operations {
|
|
|
7760
8086
|
content: {
|
|
7761
8087
|
"application/json": {
|
|
7762
8088
|
data?: {
|
|
7763
|
-
/** @example
|
|
8089
|
+
/** @example 1e63daa9-388c-415a-9eed-37dfebcc9dcb */
|
|
7764
8090
|
uid?: string;
|
|
7765
8091
|
/** @example Morgan Hirthe */
|
|
7766
8092
|
username?: string;
|
|
@@ -7790,7 +8116,7 @@ export interface operations {
|
|
|
7790
8116
|
timezone?: string;
|
|
7791
8117
|
/** @example Customer */
|
|
7792
8118
|
user_type?: string;
|
|
7793
|
-
/** @example 24 Apr 2026, 12
|
|
8119
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
7794
8120
|
created?: string;
|
|
7795
8121
|
/** @example 0 seconds ago */
|
|
7796
8122
|
email_verified_at?: string;
|
|
@@ -8499,11 +8825,11 @@ export interface operations {
|
|
|
8499
8825
|
content: {
|
|
8500
8826
|
"application/json": {
|
|
8501
8827
|
data?: {
|
|
8502
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
8828
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
8503
8829
|
draft_name?: string;
|
|
8504
|
-
/** @example LST-PRP-LTR-
|
|
8830
|
+
/** @example LST-PRP-LTR-MOCZPRAVCPW */
|
|
8505
8831
|
sku?: string;
|
|
8506
|
-
/** @example
|
|
8832
|
+
/** @example 9314c63d-ecdf-4644-85d8-6bae702bea10 */
|
|
8507
8833
|
uid?: string;
|
|
8508
8834
|
/** @example Rent */
|
|
8509
8835
|
listing_type?: string;
|
|
@@ -8943,7 +9269,7 @@ export interface operations {
|
|
|
8943
9269
|
content: {
|
|
8944
9270
|
"application/json": {
|
|
8945
9271
|
data?: {
|
|
8946
|
-
/** @example
|
|
9272
|
+
/** @example 6340cfd6-9f1a-4f3c-b81d-190b36f5f09d */
|
|
8947
9273
|
uid?: string;
|
|
8948
9274
|
/** @example photo */
|
|
8949
9275
|
media_type?: string;
|
|
@@ -9250,56 +9576,60 @@ export interface operations {
|
|
|
9250
9576
|
/**
|
|
9251
9577
|
* @example [
|
|
9252
9578
|
* {
|
|
9253
|
-
* "draft_name": "New For
|
|
9254
|
-
* "sku": "LST-
|
|
9255
|
-
* "uid": "
|
|
9256
|
-
* "listing_type": "
|
|
9257
|
-
* "vertical": "
|
|
9258
|
-
* "arrangement_type":
|
|
9259
|
-
* "arrangement_type_label":
|
|
9579
|
+
* "draft_name": "New For Rent Property draft • 24 Apr 2026, 2:12 PM",
|
|
9580
|
+
* "sku": "LST-PRP-LTR-MOCZPRC9M4J",
|
|
9581
|
+
* "uid": "d3d244e1-b6c8-4dea-97a5-242c3f763aa3",
|
|
9582
|
+
* "listing_type": "Rent",
|
|
9583
|
+
* "vertical": "Property",
|
|
9584
|
+
* "arrangement_type": "let_to_let",
|
|
9585
|
+
* "arrangement_type_label": "Let to Let",
|
|
9260
9586
|
* "price": null,
|
|
9261
9587
|
* "state": "draft",
|
|
9262
9588
|
* "published_at": null,
|
|
9263
9589
|
* "published_since": null,
|
|
9264
9590
|
* "is_visible": false,
|
|
9265
|
-
* "summary":
|
|
9591
|
+
* "summary": {
|
|
9592
|
+
* "availability": null
|
|
9593
|
+
* },
|
|
9266
9594
|
* "workflow": [],
|
|
9267
9595
|
* "media": []
|
|
9268
9596
|
* },
|
|
9269
9597
|
* {
|
|
9270
|
-
* "draft_name": "New
|
|
9271
|
-
* "sku": "LST-
|
|
9272
|
-
* "uid": "
|
|
9273
|
-
* "listing_type": "
|
|
9274
|
-
* "vertical": "
|
|
9275
|
-
* "arrangement_type":
|
|
9276
|
-
* "arrangement_type_label":
|
|
9598
|
+
* "draft_name": "New Short Let Property draft • 24 Apr 2026, 2:12 PM",
|
|
9599
|
+
* "sku": "LST-PRP-SHL-MOCZPRCBJ2Y",
|
|
9600
|
+
* "uid": "43f2e4c9-aa32-4cdb-b179-3e3af85fbe71",
|
|
9601
|
+
* "listing_type": "Short Let",
|
|
9602
|
+
* "vertical": "Property",
|
|
9603
|
+
* "arrangement_type": "short_term_managed",
|
|
9604
|
+
* "arrangement_type_label": "Short Term Managed",
|
|
9277
9605
|
* "price": null,
|
|
9278
9606
|
* "state": "draft",
|
|
9279
9607
|
* "published_at": null,
|
|
9280
9608
|
* "published_since": null,
|
|
9281
9609
|
* "is_visible": false,
|
|
9282
|
-
* "summary":
|
|
9610
|
+
* "summary": {
|
|
9611
|
+
* "availability": null
|
|
9612
|
+
* },
|
|
9283
9613
|
* "workflow": [],
|
|
9284
9614
|
* "media": []
|
|
9285
9615
|
* }
|
|
9286
9616
|
* ]
|
|
9287
9617
|
*/
|
|
9288
9618
|
data?: {
|
|
9289
|
-
/** @example New For
|
|
9619
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
9290
9620
|
draft_name?: string;
|
|
9291
|
-
/** @example LST-
|
|
9621
|
+
/** @example LST-PRP-LTR-MOCZPRC9M4J */
|
|
9292
9622
|
sku?: string;
|
|
9293
|
-
/** @example
|
|
9623
|
+
/** @example d3d244e1-b6c8-4dea-97a5-242c3f763aa3 */
|
|
9294
9624
|
uid?: string;
|
|
9295
|
-
/** @example
|
|
9625
|
+
/** @example Rent */
|
|
9296
9626
|
listing_type?: string;
|
|
9297
|
-
/** @example
|
|
9627
|
+
/** @example Property */
|
|
9298
9628
|
vertical?: string;
|
|
9299
|
-
/** @example
|
|
9300
|
-
arrangement_type?: string
|
|
9301
|
-
/** @example
|
|
9302
|
-
arrangement_type_label?: string
|
|
9629
|
+
/** @example let_to_let */
|
|
9630
|
+
arrangement_type?: string;
|
|
9631
|
+
/** @example Let to Let */
|
|
9632
|
+
arrangement_type_label?: string;
|
|
9303
9633
|
/** @example null */
|
|
9304
9634
|
price?: string | null;
|
|
9305
9635
|
/** @example draft */
|
|
@@ -9310,8 +9640,10 @@ export interface operations {
|
|
|
9310
9640
|
published_since?: string | null;
|
|
9311
9641
|
/** @example false */
|
|
9312
9642
|
is_visible?: boolean;
|
|
9313
|
-
|
|
9314
|
-
|
|
9643
|
+
summary?: {
|
|
9644
|
+
/** @example null */
|
|
9645
|
+
availability?: string | null;
|
|
9646
|
+
};
|
|
9315
9647
|
/** @example [] */
|
|
9316
9648
|
workflow?: unknown[];
|
|
9317
9649
|
/** @example [] */
|
|
@@ -9483,11 +9815,11 @@ export interface operations {
|
|
|
9483
9815
|
content: {
|
|
9484
9816
|
"application/json": {
|
|
9485
9817
|
data?: {
|
|
9486
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
9818
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
9487
9819
|
draft_name?: string;
|
|
9488
|
-
/** @example LST-PRP-LTR-
|
|
9820
|
+
/** @example LST-PRP-LTR-MOCZPRCINT1 */
|
|
9489
9821
|
sku?: string;
|
|
9490
|
-
/** @example
|
|
9822
|
+
/** @example 65314981-f5ee-4300-b1d4-6f3a74550a62 */
|
|
9491
9823
|
uid?: string;
|
|
9492
9824
|
/** @example Rent */
|
|
9493
9825
|
listing_type?: string;
|
|
@@ -9550,11 +9882,11 @@ export interface operations {
|
|
|
9550
9882
|
content: {
|
|
9551
9883
|
"application/json": {
|
|
9552
9884
|
data?: {
|
|
9553
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
9885
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
9554
9886
|
draft_name?: string;
|
|
9555
|
-
/** @example LST-PRP-LTR-
|
|
9887
|
+
/** @example LST-PRP-LTR-MOCZPRCNDBW */
|
|
9556
9888
|
sku?: string;
|
|
9557
|
-
/** @example
|
|
9889
|
+
/** @example 7a06d2f1-dbbe-49e4-81b5-06b25e398976 */
|
|
9558
9890
|
uid?: string;
|
|
9559
9891
|
/** @example Rent */
|
|
9560
9892
|
listing_type?: string;
|
|
@@ -9607,11 +9939,11 @@ export interface operations {
|
|
|
9607
9939
|
content: {
|
|
9608
9940
|
"application/json": {
|
|
9609
9941
|
data?: {
|
|
9610
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
9942
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
9611
9943
|
draft_name?: string;
|
|
9612
|
-
/** @example LST-PRP-LTR-
|
|
9944
|
+
/** @example LST-PRP-LTR-MOCZPRCSEMU */
|
|
9613
9945
|
sku?: string;
|
|
9614
|
-
/** @example
|
|
9946
|
+
/** @example ae7c44ac-d602-4153-b9eb-2968fb2a5991 */
|
|
9615
9947
|
uid?: string;
|
|
9616
9948
|
/** @example Rent */
|
|
9617
9949
|
listing_type?: string;
|
|
@@ -9664,11 +9996,11 @@ export interface operations {
|
|
|
9664
9996
|
content: {
|
|
9665
9997
|
"application/json": {
|
|
9666
9998
|
data?: {
|
|
9667
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
9999
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
9668
10000
|
draft_name?: string;
|
|
9669
|
-
/** @example LST-PRP-LTR-
|
|
10001
|
+
/** @example LST-PRP-LTR-MOCZPRCWK6B */
|
|
9670
10002
|
sku?: string;
|
|
9671
|
-
/** @example
|
|
10003
|
+
/** @example a7ce662e-cce3-4551-972c-13a926263c1b */
|
|
9672
10004
|
uid?: string;
|
|
9673
10005
|
/** @example Rent */
|
|
9674
10006
|
listing_type?: string;
|
|
@@ -9862,7 +10194,7 @@ export interface operations {
|
|
|
9862
10194
|
content: {
|
|
9863
10195
|
"application/json": {
|
|
9864
10196
|
data?: {
|
|
9865
|
-
/** @example
|
|
10197
|
+
/** @example 106 */
|
|
9866
10198
|
id?: number;
|
|
9867
10199
|
/** @example 1 */
|
|
9868
10200
|
category_id?: number;
|
|
@@ -9936,7 +10268,7 @@ export interface operations {
|
|
|
9936
10268
|
content: {
|
|
9937
10269
|
"application/json": {
|
|
9938
10270
|
data?: {
|
|
9939
|
-
/** @example
|
|
10271
|
+
/** @example 107 */
|
|
9940
10272
|
id?: number;
|
|
9941
10273
|
/** @example 1 */
|
|
9942
10274
|
category_id?: number;
|
|
@@ -9975,7 +10307,7 @@ export interface operations {
|
|
|
9975
10307
|
content: {
|
|
9976
10308
|
"application/json": {
|
|
9977
10309
|
data?: {
|
|
9978
|
-
/** @example
|
|
10310
|
+
/** @example 108 */
|
|
9979
10311
|
id?: number;
|
|
9980
10312
|
/** @example 1 */
|
|
9981
10313
|
category_id?: number;
|
|
@@ -10013,7 +10345,7 @@ export interface operations {
|
|
|
10013
10345
|
/**
|
|
10014
10346
|
* @example [
|
|
10015
10347
|
* {
|
|
10016
|
-
* "id":
|
|
10348
|
+
* "id": 120,
|
|
10017
10349
|
* "name": "Exterior",
|
|
10018
10350
|
* "description": "For Exterior categories",
|
|
10019
10351
|
* "display_order": 1,
|
|
@@ -10023,7 +10355,7 @@ export interface operations {
|
|
|
10023
10355
|
* "is_active": true
|
|
10024
10356
|
* },
|
|
10025
10357
|
* {
|
|
10026
|
-
* "id":
|
|
10358
|
+
* "id": 121,
|
|
10027
10359
|
* "name": "Exterior",
|
|
10028
10360
|
* "description": "For Exterior categories",
|
|
10029
10361
|
* "display_order": 1,
|
|
@@ -10035,7 +10367,7 @@ export interface operations {
|
|
|
10035
10367
|
* ]
|
|
10036
10368
|
*/
|
|
10037
10369
|
data?: {
|
|
10038
|
-
/** @example
|
|
10370
|
+
/** @example 120 */
|
|
10039
10371
|
id?: number;
|
|
10040
10372
|
/** @example Exterior */
|
|
10041
10373
|
name?: string;
|
|
@@ -10099,7 +10431,7 @@ export interface operations {
|
|
|
10099
10431
|
content: {
|
|
10100
10432
|
"application/json": {
|
|
10101
10433
|
data?: {
|
|
10102
|
-
/** @example
|
|
10434
|
+
/** @example 122 */
|
|
10103
10435
|
id?: number;
|
|
10104
10436
|
/** @example Exterior */
|
|
10105
10437
|
name?: string;
|
|
@@ -10166,7 +10498,7 @@ export interface operations {
|
|
|
10166
10498
|
content: {
|
|
10167
10499
|
"application/json": {
|
|
10168
10500
|
data?: {
|
|
10169
|
-
/** @example
|
|
10501
|
+
/** @example 123 */
|
|
10170
10502
|
id?: number;
|
|
10171
10503
|
/** @example Exterior */
|
|
10172
10504
|
name?: string;
|
|
@@ -10207,7 +10539,7 @@ export interface operations {
|
|
|
10207
10539
|
content: {
|
|
10208
10540
|
"application/json": {
|
|
10209
10541
|
data?: {
|
|
10210
|
-
/** @example
|
|
10542
|
+
/** @example 124 */
|
|
10211
10543
|
id?: number;
|
|
10212
10544
|
/** @example Exterior */
|
|
10213
10545
|
name?: string;
|
|
@@ -10470,7 +10802,7 @@ export interface operations {
|
|
|
10470
10802
|
content: {
|
|
10471
10803
|
"application/json": {
|
|
10472
10804
|
data?: {
|
|
10473
|
-
/** @example
|
|
10805
|
+
/** @example 59 */
|
|
10474
10806
|
id?: number;
|
|
10475
10807
|
/** @example email_fa_0 */
|
|
10476
10808
|
key?: string;
|
|
@@ -10484,9 +10816,9 @@ export interface operations {
|
|
|
10484
10816
|
metadata_schema?: unknown[];
|
|
10485
10817
|
/** @example true */
|
|
10486
10818
|
is_active?: boolean;
|
|
10487
|
-
/** @example 2026-04-
|
|
10819
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
10488
10820
|
created_at?: string;
|
|
10489
|
-
/** @example 2026-04-
|
|
10821
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
10490
10822
|
updated_at?: string;
|
|
10491
10823
|
};
|
|
10492
10824
|
};
|
|
@@ -10546,7 +10878,7 @@ export interface operations {
|
|
|
10546
10878
|
content: {
|
|
10547
10879
|
"application/json": {
|
|
10548
10880
|
data?: {
|
|
10549
|
-
/** @example
|
|
10881
|
+
/** @example 60 */
|
|
10550
10882
|
id?: number;
|
|
10551
10883
|
/** @example email_fa_0 */
|
|
10552
10884
|
key?: string;
|
|
@@ -10560,9 +10892,9 @@ export interface operations {
|
|
|
10560
10892
|
metadata_schema?: unknown[];
|
|
10561
10893
|
/** @example true */
|
|
10562
10894
|
is_active?: boolean;
|
|
10563
|
-
/** @example 2026-04-
|
|
10895
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
10564
10896
|
created_at?: string;
|
|
10565
|
-
/** @example 2026-04-
|
|
10897
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
10566
10898
|
updated_at?: string;
|
|
10567
10899
|
};
|
|
10568
10900
|
};
|
|
@@ -11828,25 +12160,25 @@ export interface operations {
|
|
|
11828
12160
|
/**
|
|
11829
12161
|
* @example [
|
|
11830
12162
|
* {
|
|
11831
|
-
* "key": "
|
|
11832
|
-
* "name": "
|
|
11833
|
-
* "description": "
|
|
12163
|
+
* "key": "aut",
|
|
12164
|
+
* "name": "adipisci",
|
|
12165
|
+
* "description": "Nostrum qui commodi incidunt iure.",
|
|
11834
12166
|
* "value_type": "string"
|
|
11835
12167
|
* },
|
|
11836
12168
|
* {
|
|
11837
|
-
* "key": "
|
|
11838
|
-
* "name": "
|
|
11839
|
-
* "description": "
|
|
12169
|
+
* "key": "odit",
|
|
12170
|
+
* "name": "et",
|
|
12171
|
+
* "description": "Modi ipsum nostrum omnis autem et.",
|
|
11840
12172
|
* "value_type": "string"
|
|
11841
12173
|
* }
|
|
11842
12174
|
* ]
|
|
11843
12175
|
*/
|
|
11844
12176
|
data?: {
|
|
11845
|
-
/** @example
|
|
12177
|
+
/** @example aut */
|
|
11846
12178
|
key?: string;
|
|
11847
|
-
/** @example
|
|
12179
|
+
/** @example adipisci */
|
|
11848
12180
|
name?: string;
|
|
11849
|
-
/** @example
|
|
12181
|
+
/** @example Nostrum qui commodi incidunt iure. */
|
|
11850
12182
|
description?: string;
|
|
11851
12183
|
/** @example string */
|
|
11852
12184
|
value_type?: string;
|
|
@@ -13088,13 +13420,13 @@ export interface operations {
|
|
|
13088
13420
|
};
|
|
13089
13421
|
} | {
|
|
13090
13422
|
data?: {
|
|
13091
|
-
/** @example
|
|
13423
|
+
/** @example b2cf7b7b-41dd-4f7f-97ef-18d104c86a00 */
|
|
13092
13424
|
uid?: string;
|
|
13093
13425
|
/** @example follow_up */
|
|
13094
13426
|
inspection_type?: string;
|
|
13095
13427
|
/** @example cancelled */
|
|
13096
13428
|
status?: string;
|
|
13097
|
-
/** @example 30 Apr 2026,
|
|
13429
|
+
/** @example 30 Apr 2026, 04:11 AM */
|
|
13098
13430
|
scheduled_date?: string;
|
|
13099
13431
|
/** @example null */
|
|
13100
13432
|
completed_date?: string | null;
|
|
@@ -13102,11 +13434,11 @@ export interface operations {
|
|
|
13102
13434
|
condition_rating?: string;
|
|
13103
13435
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13104
13436
|
summary?: string;
|
|
13105
|
-
/** @example
|
|
13437
|
+
/** @example 23 Jun 2026, 12:59 AM */
|
|
13106
13438
|
next_inspection_date?: string;
|
|
13107
|
-
/** @example 24 Apr 2026, 12
|
|
13439
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13108
13440
|
created_at?: string;
|
|
13109
|
-
/** @example 24 Apr 2026, 12
|
|
13441
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13110
13442
|
updated_at?: string;
|
|
13111
13443
|
};
|
|
13112
13444
|
};
|
|
@@ -13161,13 +13493,13 @@ export interface operations {
|
|
|
13161
13493
|
content: {
|
|
13162
13494
|
"application/json": {
|
|
13163
13495
|
data?: {
|
|
13164
|
-
/** @example
|
|
13496
|
+
/** @example e65ec2f6-601d-4fd0-bbdd-21335c207b4e */
|
|
13165
13497
|
uid?: string;
|
|
13166
13498
|
/** @example follow_up */
|
|
13167
13499
|
inspection_type?: string;
|
|
13168
13500
|
/** @example cancelled */
|
|
13169
13501
|
status?: string;
|
|
13170
|
-
/** @example 30 Apr 2026,
|
|
13502
|
+
/** @example 30 Apr 2026, 04:11 AM */
|
|
13171
13503
|
scheduled_date?: string;
|
|
13172
13504
|
/** @example null */
|
|
13173
13505
|
completed_date?: string | null;
|
|
@@ -13175,11 +13507,11 @@ export interface operations {
|
|
|
13175
13507
|
condition_rating?: string;
|
|
13176
13508
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13177
13509
|
summary?: string;
|
|
13178
|
-
/** @example
|
|
13510
|
+
/** @example 23 Jun 2026, 12:59 AM */
|
|
13179
13511
|
next_inspection_date?: string;
|
|
13180
|
-
/** @example 24 Apr 2026, 12
|
|
13512
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13181
13513
|
created_at?: string;
|
|
13182
|
-
/** @example 24 Apr 2026, 12
|
|
13514
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13183
13515
|
updated_at?: string;
|
|
13184
13516
|
};
|
|
13185
13517
|
};
|
|
@@ -13274,13 +13606,13 @@ export interface operations {
|
|
|
13274
13606
|
content: {
|
|
13275
13607
|
"application/json": {
|
|
13276
13608
|
data?: {
|
|
13277
|
-
/** @example
|
|
13609
|
+
/** @example baeaae3b-1f3e-484a-be10-f6253377c4f4 */
|
|
13278
13610
|
uid?: string;
|
|
13279
13611
|
/** @example follow_up */
|
|
13280
13612
|
inspection_type?: string;
|
|
13281
13613
|
/** @example cancelled */
|
|
13282
13614
|
status?: string;
|
|
13283
|
-
/** @example
|
|
13615
|
+
/** @example 18 Apr 2026, 01:37 AM */
|
|
13284
13616
|
scheduled_date?: string;
|
|
13285
13617
|
/** @example null */
|
|
13286
13618
|
completed_date?: string | null;
|
|
@@ -13288,11 +13620,11 @@ export interface operations {
|
|
|
13288
13620
|
condition_rating?: string;
|
|
13289
13621
|
/** @example Et animi quos velit et fugiat. */
|
|
13290
13622
|
summary?: string;
|
|
13291
|
-
/** @example 27 Jul 2026,
|
|
13623
|
+
/** @example 27 Jul 2026, 09:31 AM */
|
|
13292
13624
|
next_inspection_date?: string;
|
|
13293
|
-
/** @example 24 Apr 2026, 12
|
|
13625
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13294
13626
|
created_at?: string;
|
|
13295
|
-
/** @example 24 Apr 2026, 12
|
|
13627
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13296
13628
|
updated_at?: string;
|
|
13297
13629
|
};
|
|
13298
13630
|
};
|
|
@@ -13329,13 +13661,13 @@ export interface operations {
|
|
|
13329
13661
|
content: {
|
|
13330
13662
|
"application/json": {
|
|
13331
13663
|
data?: {
|
|
13332
|
-
/** @example
|
|
13664
|
+
/** @example 85b25204-7c5b-43ff-8cfb-329514f1dfe2 */
|
|
13333
13665
|
uid?: string;
|
|
13334
13666
|
/** @example follow_up */
|
|
13335
13667
|
inspection_type?: string;
|
|
13336
13668
|
/** @example cancelled */
|
|
13337
13669
|
status?: string;
|
|
13338
|
-
/** @example 30 Apr 2026,
|
|
13670
|
+
/** @example 30 Apr 2026, 04:11 AM */
|
|
13339
13671
|
scheduled_date?: string;
|
|
13340
13672
|
/** @example null */
|
|
13341
13673
|
completed_date?: string | null;
|
|
@@ -13343,11 +13675,11 @@ export interface operations {
|
|
|
13343
13675
|
condition_rating?: string;
|
|
13344
13676
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
13345
13677
|
summary?: string;
|
|
13346
|
-
/** @example
|
|
13678
|
+
/** @example 23 Jun 2026, 12:59 AM */
|
|
13347
13679
|
next_inspection_date?: string;
|
|
13348
|
-
/** @example 24 Apr 2026, 12
|
|
13680
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13349
13681
|
created_at?: string;
|
|
13350
|
-
/** @example 24 Apr 2026, 12
|
|
13682
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13351
13683
|
updated_at?: string;
|
|
13352
13684
|
};
|
|
13353
13685
|
};
|
|
@@ -13384,13 +13716,13 @@ export interface operations {
|
|
|
13384
13716
|
content: {
|
|
13385
13717
|
"application/json": {
|
|
13386
13718
|
data?: {
|
|
13387
|
-
/** @example
|
|
13719
|
+
/** @example 218b8e3f-fed1-4086-9cff-a0c4cc7fcee4 */
|
|
13388
13720
|
uid?: string;
|
|
13389
13721
|
/** @example follow_up */
|
|
13390
13722
|
inspection_type?: string;
|
|
13391
13723
|
/** @example cancelled */
|
|
13392
13724
|
status?: string;
|
|
13393
|
-
/** @example
|
|
13725
|
+
/** @example 18 Apr 2026, 01:37 AM */
|
|
13394
13726
|
scheduled_date?: string;
|
|
13395
13727
|
/** @example null */
|
|
13396
13728
|
completed_date?: string | null;
|
|
@@ -13398,11 +13730,11 @@ export interface operations {
|
|
|
13398
13730
|
condition_rating?: string;
|
|
13399
13731
|
/** @example Et animi quos velit et fugiat. */
|
|
13400
13732
|
summary?: string;
|
|
13401
|
-
/** @example 27 Jul 2026,
|
|
13733
|
+
/** @example 27 Jul 2026, 09:31 AM */
|
|
13402
13734
|
next_inspection_date?: string;
|
|
13403
|
-
/** @example 24 Apr 2026, 12
|
|
13735
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13404
13736
|
created_at?: string;
|
|
13405
|
-
/** @example 24 Apr 2026, 12
|
|
13737
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13406
13738
|
updated_at?: string;
|
|
13407
13739
|
};
|
|
13408
13740
|
};
|
|
@@ -13529,7 +13861,7 @@ export interface operations {
|
|
|
13529
13861
|
};
|
|
13530
13862
|
} | {
|
|
13531
13863
|
data?: {
|
|
13532
|
-
/** @example
|
|
13864
|
+
/** @example e0ee1bee-5b97-49b8-acbb-a4591d91e655 */
|
|
13533
13865
|
uid?: string;
|
|
13534
13866
|
/** @example Qui commodi incidunt iure. */
|
|
13535
13867
|
title?: string;
|
|
@@ -13539,17 +13871,17 @@ export interface operations {
|
|
|
13539
13871
|
status?: string;
|
|
13540
13872
|
/** @example low */
|
|
13541
13873
|
priority?: string;
|
|
13542
|
-
/** @example 23 Apr 2026,
|
|
13874
|
+
/** @example 23 Apr 2026, 03:41 AM */
|
|
13543
13875
|
reported_at?: string;
|
|
13544
13876
|
/** @example null */
|
|
13545
13877
|
assigned_at?: string | null;
|
|
13546
13878
|
/** @example null */
|
|
13547
13879
|
completed_at?: string | null;
|
|
13548
|
-
/** @example
|
|
13880
|
+
/** @example 26 Apr 2026, 12:05 AM */
|
|
13549
13881
|
sla_deadline?: string;
|
|
13550
|
-
/** @example 24 Apr 2026, 12
|
|
13882
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13551
13883
|
created_at?: string;
|
|
13552
|
-
/** @example 24 Apr 2026, 12
|
|
13884
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13553
13885
|
updated_at?: string;
|
|
13554
13886
|
};
|
|
13555
13887
|
};
|
|
@@ -13586,7 +13918,7 @@ export interface operations {
|
|
|
13586
13918
|
content: {
|
|
13587
13919
|
"application/json": {
|
|
13588
13920
|
data?: {
|
|
13589
|
-
/** @example
|
|
13921
|
+
/** @example d9a5058f-a056-4f04-9536-8367687c15fd */
|
|
13590
13922
|
uid?: string;
|
|
13591
13923
|
/** @example Qui commodi incidunt iure. */
|
|
13592
13924
|
title?: string;
|
|
@@ -13596,17 +13928,17 @@ export interface operations {
|
|
|
13596
13928
|
status?: string;
|
|
13597
13929
|
/** @example low */
|
|
13598
13930
|
priority?: string;
|
|
13599
|
-
/** @example 23 Apr 2026,
|
|
13931
|
+
/** @example 23 Apr 2026, 03:41 AM */
|
|
13600
13932
|
reported_at?: string;
|
|
13601
13933
|
/** @example null */
|
|
13602
13934
|
assigned_at?: string | null;
|
|
13603
13935
|
/** @example null */
|
|
13604
13936
|
completed_at?: string | null;
|
|
13605
|
-
/** @example
|
|
13937
|
+
/** @example 26 Apr 2026, 12:05 AM */
|
|
13606
13938
|
sla_deadline?: string;
|
|
13607
|
-
/** @example 24 Apr 2026, 12
|
|
13939
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13608
13940
|
created_at?: string;
|
|
13609
|
-
/** @example 24 Apr 2026, 12
|
|
13941
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13610
13942
|
updated_at?: string;
|
|
13611
13943
|
};
|
|
13612
13944
|
};
|
|
@@ -13643,7 +13975,7 @@ export interface operations {
|
|
|
13643
13975
|
content: {
|
|
13644
13976
|
"application/json": {
|
|
13645
13977
|
data?: {
|
|
13646
|
-
/** @example
|
|
13978
|
+
/** @example dfd3b4dd-4143-475c-849f-24aada873034 */
|
|
13647
13979
|
uid?: string;
|
|
13648
13980
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13649
13981
|
title?: string;
|
|
@@ -13653,17 +13985,17 @@ export interface operations {
|
|
|
13653
13985
|
status?: string;
|
|
13654
13986
|
/** @example emergency */
|
|
13655
13987
|
priority?: string;
|
|
13656
|
-
/** @example
|
|
13988
|
+
/** @example 18 Apr 2026, 01:26 AM */
|
|
13657
13989
|
reported_at?: string;
|
|
13658
|
-
/** @example 22 Apr 2026,
|
|
13990
|
+
/** @example 22 Apr 2026, 09:46 PM */
|
|
13659
13991
|
assigned_at?: string;
|
|
13660
13992
|
/** @example null */
|
|
13661
13993
|
completed_at?: string | null;
|
|
13662
|
-
/** @example 26 Apr 2026,
|
|
13994
|
+
/** @example 26 Apr 2026, 03:08 AM */
|
|
13663
13995
|
sla_deadline?: string;
|
|
13664
|
-
/** @example 24 Apr 2026, 12
|
|
13996
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13665
13997
|
created_at?: string;
|
|
13666
|
-
/** @example 24 Apr 2026, 12
|
|
13998
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13667
13999
|
updated_at?: string;
|
|
13668
14000
|
};
|
|
13669
14001
|
};
|
|
@@ -13700,7 +14032,7 @@ export interface operations {
|
|
|
13700
14032
|
content: {
|
|
13701
14033
|
"application/json": {
|
|
13702
14034
|
data?: {
|
|
13703
|
-
/** @example
|
|
14035
|
+
/** @example c8dbf860-4993-4b40-ac24-6414dc50558a */
|
|
13704
14036
|
uid?: string;
|
|
13705
14037
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13706
14038
|
title?: string;
|
|
@@ -13710,17 +14042,17 @@ export interface operations {
|
|
|
13710
14042
|
status?: string;
|
|
13711
14043
|
/** @example emergency */
|
|
13712
14044
|
priority?: string;
|
|
13713
|
-
/** @example
|
|
14045
|
+
/** @example 18 Apr 2026, 01:26 AM */
|
|
13714
14046
|
reported_at?: string;
|
|
13715
|
-
/** @example 22 Apr 2026,
|
|
14047
|
+
/** @example 22 Apr 2026, 09:46 PM */
|
|
13716
14048
|
assigned_at?: string;
|
|
13717
14049
|
/** @example null */
|
|
13718
14050
|
completed_at?: string | null;
|
|
13719
|
-
/** @example 26 Apr 2026,
|
|
14051
|
+
/** @example 26 Apr 2026, 03:08 AM */
|
|
13720
14052
|
sla_deadline?: string;
|
|
13721
|
-
/** @example 24 Apr 2026, 12
|
|
14053
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13722
14054
|
created_at?: string;
|
|
13723
|
-
/** @example 24 Apr 2026, 12
|
|
14055
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13724
14056
|
updated_at?: string;
|
|
13725
14057
|
};
|
|
13726
14058
|
};
|
|
@@ -13757,7 +14089,7 @@ export interface operations {
|
|
|
13757
14089
|
content: {
|
|
13758
14090
|
"application/json": {
|
|
13759
14091
|
data?: {
|
|
13760
|
-
/** @example
|
|
14092
|
+
/** @example d0331e65-3aec-4d90-a49d-d9863aac1247 */
|
|
13761
14093
|
uid?: string;
|
|
13762
14094
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13763
14095
|
title?: string;
|
|
@@ -13767,17 +14099,17 @@ export interface operations {
|
|
|
13767
14099
|
status?: string;
|
|
13768
14100
|
/** @example emergency */
|
|
13769
14101
|
priority?: string;
|
|
13770
|
-
/** @example
|
|
14102
|
+
/** @example 18 Apr 2026, 01:26 AM */
|
|
13771
14103
|
reported_at?: string;
|
|
13772
|
-
/** @example 22 Apr 2026,
|
|
14104
|
+
/** @example 22 Apr 2026, 09:46 PM */
|
|
13773
14105
|
assigned_at?: string;
|
|
13774
14106
|
/** @example null */
|
|
13775
14107
|
completed_at?: string | null;
|
|
13776
|
-
/** @example 26 Apr 2026,
|
|
14108
|
+
/** @example 26 Apr 2026, 03:08 AM */
|
|
13777
14109
|
sla_deadline?: string;
|
|
13778
|
-
/** @example 24 Apr 2026, 12
|
|
14110
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13779
14111
|
created_at?: string;
|
|
13780
|
-
/** @example 24 Apr 2026, 12
|
|
14112
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
13781
14113
|
updated_at?: string;
|
|
13782
14114
|
};
|
|
13783
14115
|
};
|
|
@@ -14173,7 +14505,7 @@ export interface operations {
|
|
|
14173
14505
|
content: {
|
|
14174
14506
|
"application/json": {
|
|
14175
14507
|
data?: {
|
|
14176
|
-
/** @example
|
|
14508
|
+
/** @example 155 */
|
|
14177
14509
|
id?: number;
|
|
14178
14510
|
/** @example 2 */
|
|
14179
14511
|
listing_id?: number;
|
|
@@ -14185,7 +14517,7 @@ export interface operations {
|
|
|
14185
14517
|
/** @example 1979-12-13T00:00:00.000000Z */
|
|
14186
14518
|
end?: string;
|
|
14187
14519
|
};
|
|
14188
|
-
/** @example 2026-04-
|
|
14520
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
14189
14521
|
created_at?: string;
|
|
14190
14522
|
};
|
|
14191
14523
|
};
|
|
@@ -14212,7 +14544,7 @@ export interface operations {
|
|
|
14212
14544
|
content: {
|
|
14213
14545
|
"application/json": {
|
|
14214
14546
|
data?: {
|
|
14215
|
-
/** @example
|
|
14547
|
+
/** @example 156 */
|
|
14216
14548
|
id?: number;
|
|
14217
14549
|
/** @example 2 */
|
|
14218
14550
|
listing_id?: number;
|
|
@@ -14224,7 +14556,7 @@ export interface operations {
|
|
|
14224
14556
|
/** @example 1979-12-13T00:00:00.000000Z */
|
|
14225
14557
|
end?: string;
|
|
14226
14558
|
};
|
|
14227
|
-
/** @example 2026-04-
|
|
14559
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
14228
14560
|
created_at?: string;
|
|
14229
14561
|
};
|
|
14230
14562
|
};
|
|
@@ -14250,29 +14582,29 @@ export interface operations {
|
|
|
14250
14582
|
/**
|
|
14251
14583
|
* @example [
|
|
14252
14584
|
* {
|
|
14253
|
-
* "id":
|
|
14585
|
+
* "id": 157,
|
|
14254
14586
|
* "listing_id": 2,
|
|
14255
14587
|
* "status": "completed",
|
|
14256
14588
|
* "scheduled": {
|
|
14257
14589
|
* "start": "1981-11-16T00:00:00.000000Z",
|
|
14258
14590
|
* "end": "1979-12-13T00:00:00.000000Z"
|
|
14259
14591
|
* },
|
|
14260
|
-
* "created_at": "2026-04-
|
|
14592
|
+
* "created_at": "2026-04-24T14:12:49.000000Z"
|
|
14261
14593
|
* },
|
|
14262
14594
|
* {
|
|
14263
|
-
* "id":
|
|
14595
|
+
* "id": 158,
|
|
14264
14596
|
* "listing_id": 2,
|
|
14265
14597
|
* "status": "completed",
|
|
14266
14598
|
* "scheduled": {
|
|
14267
14599
|
* "start": "2006-09-16T00:00:00.000000Z",
|
|
14268
14600
|
* "end": "2015-01-19T00:00:00.000000Z"
|
|
14269
14601
|
* },
|
|
14270
|
-
* "created_at": "2026-04-
|
|
14602
|
+
* "created_at": "2026-04-24T14:12:49.000000Z"
|
|
14271
14603
|
* }
|
|
14272
14604
|
* ]
|
|
14273
14605
|
*/
|
|
14274
14606
|
data?: {
|
|
14275
|
-
/** @example
|
|
14607
|
+
/** @example 157 */
|
|
14276
14608
|
id?: number;
|
|
14277
14609
|
/** @example 2 */
|
|
14278
14610
|
listing_id?: number;
|
|
@@ -14284,7 +14616,7 @@ export interface operations {
|
|
|
14284
14616
|
/** @example 1979-12-13T00:00:00.000000Z */
|
|
14285
14617
|
end?: string;
|
|
14286
14618
|
};
|
|
14287
|
-
/** @example 2026-04-
|
|
14619
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
14288
14620
|
created_at?: string;
|
|
14289
14621
|
}[];
|
|
14290
14622
|
links?: {
|
|
@@ -14384,7 +14716,7 @@ export interface operations {
|
|
|
14384
14716
|
content: {
|
|
14385
14717
|
"application/json": {
|
|
14386
14718
|
data?: {
|
|
14387
|
-
/** @example
|
|
14719
|
+
/** @example 159 */
|
|
14388
14720
|
id?: number;
|
|
14389
14721
|
/** @example 2 */
|
|
14390
14722
|
listing_id?: number;
|
|
@@ -14396,7 +14728,7 @@ export interface operations {
|
|
|
14396
14728
|
/** @example 1979-12-13T00:00:00.000000Z */
|
|
14397
14729
|
end?: string;
|
|
14398
14730
|
};
|
|
14399
|
-
/** @example 2026-04-
|
|
14731
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
14400
14732
|
created_at?: string;
|
|
14401
14733
|
};
|
|
14402
14734
|
};
|
|
@@ -14423,7 +14755,7 @@ export interface operations {
|
|
|
14423
14755
|
content: {
|
|
14424
14756
|
"application/json": {
|
|
14425
14757
|
data?: {
|
|
14426
|
-
/** @example
|
|
14758
|
+
/** @example 160 */
|
|
14427
14759
|
id?: number;
|
|
14428
14760
|
/** @example 2 */
|
|
14429
14761
|
listing_id?: number;
|
|
@@ -14435,7 +14767,7 @@ export interface operations {
|
|
|
14435
14767
|
/** @example 1979-12-13T00:00:00.000000Z */
|
|
14436
14768
|
end?: string;
|
|
14437
14769
|
};
|
|
14438
|
-
/** @example 2026-04-
|
|
14770
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
14439
14771
|
created_at?: string;
|
|
14440
14772
|
};
|
|
14441
14773
|
};
|
|
@@ -14462,7 +14794,7 @@ export interface operations {
|
|
|
14462
14794
|
content: {
|
|
14463
14795
|
"application/json": {
|
|
14464
14796
|
data?: {
|
|
14465
|
-
/** @example
|
|
14797
|
+
/** @example 161 */
|
|
14466
14798
|
id?: number;
|
|
14467
14799
|
/** @example 2 */
|
|
14468
14800
|
listing_id?: number;
|
|
@@ -14474,7 +14806,7 @@ export interface operations {
|
|
|
14474
14806
|
/** @example 1979-12-13T00:00:00.000000Z */
|
|
14475
14807
|
end?: string;
|
|
14476
14808
|
};
|
|
14477
|
-
/** @example 2026-04-
|
|
14809
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
14478
14810
|
created_at?: string;
|
|
14479
14811
|
};
|
|
14480
14812
|
};
|
|
@@ -15574,7 +15906,7 @@ export interface operations {
|
|
|
15574
15906
|
content: {
|
|
15575
15907
|
"application/json": {
|
|
15576
15908
|
data?: {
|
|
15577
|
-
/** @example
|
|
15909
|
+
/** @example bd2ea985-4eea-446b-93e8-32b72ee9bc0e */
|
|
15578
15910
|
uid?: string;
|
|
15579
15911
|
/** @example Ms. Audra Crooks II */
|
|
15580
15912
|
username?: string;
|
|
@@ -15604,9 +15936,9 @@ export interface operations {
|
|
|
15604
15936
|
timezone?: string;
|
|
15605
15937
|
/** @example Customer */
|
|
15606
15938
|
user_type?: string;
|
|
15607
|
-
/** @example 24 Apr 2026, 12
|
|
15939
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
15608
15940
|
created?: string;
|
|
15609
|
-
/** @example
|
|
15941
|
+
/** @example 1 second ago */
|
|
15610
15942
|
email_verified_at?: string;
|
|
15611
15943
|
verification_status?: {
|
|
15612
15944
|
/** @example not_verified */
|
|
@@ -16073,7 +16405,7 @@ export interface operations {
|
|
|
16073
16405
|
content: {
|
|
16074
16406
|
"application/json": {
|
|
16075
16407
|
data?: {
|
|
16076
|
-
/** @example
|
|
16408
|
+
/** @example 6245fa24-b0da-41e1-afb5-646cab656814 */
|
|
16077
16409
|
uid?: string;
|
|
16078
16410
|
/** @example Ms. Audra Crooks II */
|
|
16079
16411
|
username?: string;
|
|
@@ -16103,7 +16435,7 @@ export interface operations {
|
|
|
16103
16435
|
timezone?: string;
|
|
16104
16436
|
/** @example Customer */
|
|
16105
16437
|
user_type?: string;
|
|
16106
|
-
/** @example 24 Apr 2026, 12
|
|
16438
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
16107
16439
|
created?: string;
|
|
16108
16440
|
/** @example 0 seconds ago */
|
|
16109
16441
|
email_verified_at?: string;
|
|
@@ -16224,11 +16556,11 @@ export interface operations {
|
|
|
16224
16556
|
content: {
|
|
16225
16557
|
"application/json": {
|
|
16226
16558
|
data?: {
|
|
16227
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
16559
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
16228
16560
|
draft_name?: string;
|
|
16229
|
-
/** @example LST-PRP-LTR-
|
|
16561
|
+
/** @example LST-PRP-LTR-MOCZPR2F77X */
|
|
16230
16562
|
sku?: string;
|
|
16231
|
-
/** @example
|
|
16563
|
+
/** @example 9ded09cb-1406-41fe-b895-ece654f2f3b8 */
|
|
16232
16564
|
uid?: string;
|
|
16233
16565
|
/** @example Rent */
|
|
16234
16566
|
listing_type?: string;
|
|
@@ -16352,9 +16684,9 @@ export interface operations {
|
|
|
16352
16684
|
/**
|
|
16353
16685
|
* @example [
|
|
16354
16686
|
* {
|
|
16355
|
-
* "draft_name": "New For Rent Property draft • 24 Apr 2026, 12
|
|
16356
|
-
* "sku": "LST-PRP-LTR-
|
|
16357
|
-
* "uid": "
|
|
16687
|
+
* "draft_name": "New For Rent Property draft • 24 Apr 2026, 2:12 PM",
|
|
16688
|
+
* "sku": "LST-PRP-LTR-MOCZPR2VBXO",
|
|
16689
|
+
* "uid": "90fa3485-cfae-4a4c-ae9a-d66386ea37d7",
|
|
16358
16690
|
* "listing_type": "Rent",
|
|
16359
16691
|
* "vertical": "Property",
|
|
16360
16692
|
* "arrangement_type": "let_to_let",
|
|
@@ -16371,9 +16703,9 @@ export interface operations {
|
|
|
16371
16703
|
* "media": []
|
|
16372
16704
|
* },
|
|
16373
16705
|
* {
|
|
16374
|
-
* "draft_name": "New Short Let Property draft • 24 Apr 2026, 12
|
|
16375
|
-
* "sku": "LST-PRP-SHL-
|
|
16376
|
-
* "uid": "
|
|
16706
|
+
* "draft_name": "New Short Let Property draft • 24 Apr 2026, 2:12 PM",
|
|
16707
|
+
* "sku": "LST-PRP-SHL-MOCZPR2XB44",
|
|
16708
|
+
* "uid": "b18b8a04-a840-4503-864a-947c061fe566",
|
|
16377
16709
|
* "listing_type": "Short Let",
|
|
16378
16710
|
* "vertical": "Property",
|
|
16379
16711
|
* "arrangement_type": "short_term_managed",
|
|
@@ -16392,11 +16724,11 @@ export interface operations {
|
|
|
16392
16724
|
* ]
|
|
16393
16725
|
*/
|
|
16394
16726
|
data?: {
|
|
16395
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
16727
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
16396
16728
|
draft_name?: string;
|
|
16397
|
-
/** @example LST-PRP-LTR-
|
|
16729
|
+
/** @example LST-PRP-LTR-MOCZPR2VBXO */
|
|
16398
16730
|
sku?: string;
|
|
16399
|
-
/** @example
|
|
16731
|
+
/** @example 90fa3485-cfae-4a4c-ae9a-d66386ea37d7 */
|
|
16400
16732
|
uid?: string;
|
|
16401
16733
|
/** @example Rent */
|
|
16402
16734
|
listing_type?: string;
|
|
@@ -16506,9 +16838,9 @@ export interface operations {
|
|
|
16506
16838
|
/**
|
|
16507
16839
|
* @example [
|
|
16508
16840
|
* {
|
|
16509
|
-
* "draft_name": "New For Rent Property draft • 24 Apr 2026, 12
|
|
16510
|
-
* "sku": "LST-PRP-LTR-
|
|
16511
|
-
* "uid": "
|
|
16841
|
+
* "draft_name": "New For Rent Property draft • 24 Apr 2026, 2:12 PM",
|
|
16842
|
+
* "sku": "LST-PRP-LTR-MOCZPR350GJ",
|
|
16843
|
+
* "uid": "ddd42796-f118-46ec-b306-02cf0f7a3223",
|
|
16512
16844
|
* "listing_type": "Rent",
|
|
16513
16845
|
* "vertical": "Property",
|
|
16514
16846
|
* "arrangement_type": "let_to_let",
|
|
@@ -16525,9 +16857,9 @@ export interface operations {
|
|
|
16525
16857
|
* "media": []
|
|
16526
16858
|
* },
|
|
16527
16859
|
* {
|
|
16528
|
-
* "draft_name": "New Short Let Property draft • 24 Apr 2026, 12
|
|
16529
|
-
* "sku": "LST-PRP-SHL-
|
|
16530
|
-
* "uid": "
|
|
16860
|
+
* "draft_name": "New Short Let Property draft • 24 Apr 2026, 2:12 PM",
|
|
16861
|
+
* "sku": "LST-PRP-SHL-MOCZPR3748B",
|
|
16862
|
+
* "uid": "4e13cdb3-0e1f-43e9-a3ad-d272d39fde6d",
|
|
16531
16863
|
* "listing_type": "Short Let",
|
|
16532
16864
|
* "vertical": "Property",
|
|
16533
16865
|
* "arrangement_type": "short_term_managed",
|
|
@@ -16546,11 +16878,11 @@ export interface operations {
|
|
|
16546
16878
|
* ]
|
|
16547
16879
|
*/
|
|
16548
16880
|
data?: {
|
|
16549
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
16881
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
16550
16882
|
draft_name?: string;
|
|
16551
|
-
/** @example LST-PRP-LTR-
|
|
16883
|
+
/** @example LST-PRP-LTR-MOCZPR350GJ */
|
|
16552
16884
|
sku?: string;
|
|
16553
|
-
/** @example
|
|
16885
|
+
/** @example ddd42796-f118-46ec-b306-02cf0f7a3223 */
|
|
16554
16886
|
uid?: string;
|
|
16555
16887
|
/** @example Rent */
|
|
16556
16888
|
listing_type?: string;
|
|
@@ -17614,7 +17946,7 @@ export interface operations {
|
|
|
17614
17946
|
content: {
|
|
17615
17947
|
"application/json": {
|
|
17616
17948
|
data?: {
|
|
17617
|
-
/** @example
|
|
17949
|
+
/** @example ba9eb1a9-ff7b-475a-a2fe-715650a9800a */
|
|
17618
17950
|
uid?: string;
|
|
17619
17951
|
/** @example photo */
|
|
17620
17952
|
media_type?: string;
|
|
@@ -17763,11 +18095,11 @@ export interface operations {
|
|
|
17763
18095
|
content: {
|
|
17764
18096
|
"application/json": {
|
|
17765
18097
|
data?: {
|
|
17766
|
-
/** @example New For Rent Property draft • 24 Apr 2026, 12
|
|
18098
|
+
/** @example New For Rent Property draft • 24 Apr 2026, 2:12 PM */
|
|
17767
18099
|
draft_name?: string;
|
|
17768
|
-
/** @example LST-PRP-LTR-
|
|
18100
|
+
/** @example LST-PRP-LTR-MOCZPR542CD */
|
|
17769
18101
|
sku?: string;
|
|
17770
|
-
/** @example
|
|
18102
|
+
/** @example 79752a30-dc3b-47a4-ba4b-becdf27c853a */
|
|
17771
18103
|
uid?: string;
|
|
17772
18104
|
/** @example Rent */
|
|
17773
18105
|
listing_type?: string;
|
|
@@ -17927,7 +18259,7 @@ export interface operations {
|
|
|
17927
18259
|
content: {
|
|
17928
18260
|
"application/json": {
|
|
17929
18261
|
data?: {
|
|
17930
|
-
/** @example
|
|
18262
|
+
/** @example d4784d4d-6548-4d2d-ba4a-bb5ddce8f322 */
|
|
17931
18263
|
uid?: string;
|
|
17932
18264
|
/** @example null */
|
|
17933
18265
|
compliances?: string | null;
|
|
@@ -17978,7 +18310,7 @@ export interface operations {
|
|
|
17978
18310
|
content: {
|
|
17979
18311
|
"application/json": {
|
|
17980
18312
|
data?: {
|
|
17981
|
-
/** @example
|
|
18313
|
+
/** @example 108 */
|
|
17982
18314
|
id?: number;
|
|
17983
18315
|
compliance?: {
|
|
17984
18316
|
/** @example 1 */
|
|
@@ -18000,7 +18332,7 @@ export interface operations {
|
|
|
18000
18332
|
reviewed_by?: number;
|
|
18001
18333
|
/** @example null */
|
|
18002
18334
|
reviewed_at?: string | null;
|
|
18003
|
-
/** @example 2026-04-
|
|
18335
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
18004
18336
|
created_at?: string;
|
|
18005
18337
|
};
|
|
18006
18338
|
};
|
|
@@ -18055,7 +18387,7 @@ export interface operations {
|
|
|
18055
18387
|
/**
|
|
18056
18388
|
* @example [
|
|
18057
18389
|
* {
|
|
18058
|
-
* "uid": "
|
|
18390
|
+
* "uid": "1986f693-59eb-4756-98ea-c5b492c5764f",
|
|
18059
18391
|
* "listing_id": 1,
|
|
18060
18392
|
* "landlord_id": 2,
|
|
18061
18393
|
* "tenant_id": 2,
|
|
@@ -18067,27 +18399,27 @@ export interface operations {
|
|
|
18067
18399
|
* "is_periodic": false,
|
|
18068
18400
|
* "company_name": null,
|
|
18069
18401
|
* "company_registration_number": null,
|
|
18070
|
-
* "created_at": "2026-04-
|
|
18402
|
+
* "created_at": "2026-04-24T14:12:48.000000Z"
|
|
18071
18403
|
* },
|
|
18072
18404
|
* {
|
|
18073
|
-
* "uid": "
|
|
18405
|
+
* "uid": "49092639-dfc8-4395-bbcd-176d25912437",
|
|
18074
18406
|
* "listing_id": 1,
|
|
18075
18407
|
* "landlord_id": 2,
|
|
18076
18408
|
* "tenant_id": 2,
|
|
18077
18409
|
* "rent_amount": "3832.26",
|
|
18078
18410
|
* "deposit_amount": "1384.27",
|
|
18079
18411
|
* "state": "terminated",
|
|
18080
|
-
* "start_date": "2025-09-
|
|
18081
|
-
* "end_date": "2026-09-
|
|
18412
|
+
* "start_date": "2025-09-25T00:00:00.000000Z",
|
|
18413
|
+
* "end_date": "2026-09-25T00:00:00.000000Z",
|
|
18082
18414
|
* "is_periodic": false,
|
|
18083
18415
|
* "company_name": null,
|
|
18084
18416
|
* "company_registration_number": null,
|
|
18085
|
-
* "created_at": "2026-04-
|
|
18417
|
+
* "created_at": "2026-04-24T14:12:48.000000Z"
|
|
18086
18418
|
* }
|
|
18087
18419
|
* ]
|
|
18088
18420
|
*/
|
|
18089
18421
|
data?: {
|
|
18090
|
-
/** @example
|
|
18422
|
+
/** @example 1986f693-59eb-4756-98ea-c5b492c5764f */
|
|
18091
18423
|
uid?: string;
|
|
18092
18424
|
/** @example 1 */
|
|
18093
18425
|
listing_id?: number;
|
|
@@ -18111,7 +18443,7 @@ export interface operations {
|
|
|
18111
18443
|
company_name?: string | null;
|
|
18112
18444
|
/** @example null */
|
|
18113
18445
|
company_registration_number?: string | null;
|
|
18114
|
-
/** @example 2026-04-
|
|
18446
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
18115
18447
|
created_at?: string;
|
|
18116
18448
|
}[];
|
|
18117
18449
|
links?: {
|
|
@@ -18198,7 +18530,7 @@ export interface operations {
|
|
|
18198
18530
|
/**
|
|
18199
18531
|
* @example [
|
|
18200
18532
|
* {
|
|
18201
|
-
* "uid": "
|
|
18533
|
+
* "uid": "358abb70-50eb-4667-b5fe-319960fe4ce4",
|
|
18202
18534
|
* "listing_id": 1,
|
|
18203
18535
|
* "landlord_id": 2,
|
|
18204
18536
|
* "tenant_id": 2,
|
|
@@ -18210,27 +18542,27 @@ export interface operations {
|
|
|
18210
18542
|
* "is_periodic": false,
|
|
18211
18543
|
* "company_name": null,
|
|
18212
18544
|
* "company_registration_number": null,
|
|
18213
|
-
* "created_at": "2026-04-
|
|
18545
|
+
* "created_at": "2026-04-24T14:12:48.000000Z"
|
|
18214
18546
|
* },
|
|
18215
18547
|
* {
|
|
18216
|
-
* "uid": "
|
|
18548
|
+
* "uid": "bdd0a2e5-9397-44f7-acf5-913afba2a9a2",
|
|
18217
18549
|
* "listing_id": 1,
|
|
18218
18550
|
* "landlord_id": 2,
|
|
18219
18551
|
* "tenant_id": 2,
|
|
18220
18552
|
* "rent_amount": "3832.26",
|
|
18221
18553
|
* "deposit_amount": "1384.27",
|
|
18222
18554
|
* "state": "terminated",
|
|
18223
|
-
* "start_date": "2025-09-
|
|
18224
|
-
* "end_date": "2026-09-
|
|
18555
|
+
* "start_date": "2025-09-25T00:00:00.000000Z",
|
|
18556
|
+
* "end_date": "2026-09-25T00:00:00.000000Z",
|
|
18225
18557
|
* "is_periodic": false,
|
|
18226
18558
|
* "company_name": null,
|
|
18227
18559
|
* "company_registration_number": null,
|
|
18228
|
-
* "created_at": "2026-04-
|
|
18560
|
+
* "created_at": "2026-04-24T14:12:48.000000Z"
|
|
18229
18561
|
* }
|
|
18230
18562
|
* ]
|
|
18231
18563
|
*/
|
|
18232
18564
|
data?: {
|
|
18233
|
-
/** @example
|
|
18565
|
+
/** @example 358abb70-50eb-4667-b5fe-319960fe4ce4 */
|
|
18234
18566
|
uid?: string;
|
|
18235
18567
|
/** @example 1 */
|
|
18236
18568
|
listing_id?: number;
|
|
@@ -18254,7 +18586,7 @@ export interface operations {
|
|
|
18254
18586
|
company_name?: string | null;
|
|
18255
18587
|
/** @example null */
|
|
18256
18588
|
company_registration_number?: string | null;
|
|
18257
|
-
/** @example 2026-04-
|
|
18589
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
18258
18590
|
created_at?: string;
|
|
18259
18591
|
}[];
|
|
18260
18592
|
links?: {
|
|
@@ -18361,7 +18693,7 @@ export interface operations {
|
|
|
18361
18693
|
content: {
|
|
18362
18694
|
"application/json": {
|
|
18363
18695
|
data?: {
|
|
18364
|
-
/** @example
|
|
18696
|
+
/** @example 135 */
|
|
18365
18697
|
id?: number;
|
|
18366
18698
|
compliance?: {
|
|
18367
18699
|
/** @example 1 */
|
|
@@ -18381,9 +18713,9 @@ export interface operations {
|
|
|
18381
18713
|
rejection_reason?: string | null;
|
|
18382
18714
|
/** @example 1 */
|
|
18383
18715
|
reviewed_by?: number;
|
|
18384
|
-
/** @example 2026-04-
|
|
18716
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
18385
18717
|
reviewed_at?: string;
|
|
18386
|
-
/** @example 2026-04-
|
|
18718
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
18387
18719
|
created_at?: string;
|
|
18388
18720
|
};
|
|
18389
18721
|
};
|
|
@@ -18410,7 +18742,7 @@ export interface operations {
|
|
|
18410
18742
|
content: {
|
|
18411
18743
|
"application/json": {
|
|
18412
18744
|
data?: {
|
|
18413
|
-
/** @example
|
|
18745
|
+
/** @example 136 */
|
|
18414
18746
|
id?: number;
|
|
18415
18747
|
compliance?: {
|
|
18416
18748
|
/** @example 1 */
|
|
@@ -18430,9 +18762,9 @@ export interface operations {
|
|
|
18430
18762
|
rejection_reason?: string | null;
|
|
18431
18763
|
/** @example 1 */
|
|
18432
18764
|
reviewed_by?: number;
|
|
18433
|
-
/** @example 2026-04-
|
|
18765
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
18434
18766
|
reviewed_at?: string;
|
|
18435
|
-
/** @example 2026-04-
|
|
18767
|
+
/** @example 2026-04-24T14:12:48.000000Z */
|
|
18436
18768
|
created_at?: string;
|
|
18437
18769
|
};
|
|
18438
18770
|
};
|
|
@@ -19566,35 +19898,35 @@ export interface operations {
|
|
|
19566
19898
|
/**
|
|
19567
19899
|
* @example [
|
|
19568
19900
|
* {
|
|
19569
|
-
* "uid": "
|
|
19901
|
+
* "uid": "cd48a837-1477-4d5c-a8bb-e4ffcf8de5dd",
|
|
19570
19902
|
* "title": "Quos velit et fugiat sunt nihil.",
|
|
19571
19903
|
* "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
19904
|
* "status": "reported",
|
|
19573
19905
|
* "priority": "emergency",
|
|
19574
|
-
* "reported_at": "
|
|
19575
|
-
* "assigned_at": "22 Apr 2026,
|
|
19906
|
+
* "reported_at": "18 Apr 2026, 01:26 AM",
|
|
19907
|
+
* "assigned_at": "22 Apr 2026, 09:46 PM",
|
|
19576
19908
|
* "completed_at": null,
|
|
19577
|
-
* "sla_deadline": "26 Apr 2026,
|
|
19578
|
-
* "created_at": "24 Apr 2026, 12
|
|
19579
|
-
* "updated_at": "24 Apr 2026, 12
|
|
19909
|
+
* "sla_deadline": "26 Apr 2026, 03:08 AM",
|
|
19910
|
+
* "created_at": "24 Apr 2026, 02:12 PM",
|
|
19911
|
+
* "updated_at": "24 Apr 2026, 02:12 PM"
|
|
19580
19912
|
* },
|
|
19581
19913
|
* {
|
|
19582
|
-
* "uid": "
|
|
19914
|
+
* "uid": "877b08b8-e469-4297-a16a-e1d0957d8dcf",
|
|
19583
19915
|
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
19584
19916
|
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
19585
19917
|
* "status": "completed",
|
|
19586
19918
|
* "priority": "normal",
|
|
19587
|
-
* "reported_at": "20 Apr 2026,
|
|
19919
|
+
* "reported_at": "20 Apr 2026, 02:04 PM",
|
|
19588
19920
|
* "assigned_at": null,
|
|
19589
19921
|
* "completed_at": null,
|
|
19590
|
-
* "sla_deadline": "27 Apr 2026,
|
|
19591
|
-
* "created_at": "24 Apr 2026, 12
|
|
19592
|
-
* "updated_at": "24 Apr 2026, 12
|
|
19922
|
+
* "sla_deadline": "27 Apr 2026, 11:08 AM",
|
|
19923
|
+
* "created_at": "24 Apr 2026, 02:12 PM",
|
|
19924
|
+
* "updated_at": "24 Apr 2026, 02:12 PM"
|
|
19593
19925
|
* }
|
|
19594
19926
|
* ]
|
|
19595
19927
|
*/
|
|
19596
19928
|
data?: {
|
|
19597
|
-
/** @example
|
|
19929
|
+
/** @example cd48a837-1477-4d5c-a8bb-e4ffcf8de5dd */
|
|
19598
19930
|
uid?: string;
|
|
19599
19931
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
19600
19932
|
title?: string;
|
|
@@ -19604,17 +19936,17 @@ export interface operations {
|
|
|
19604
19936
|
status?: string;
|
|
19605
19937
|
/** @example emergency */
|
|
19606
19938
|
priority?: string;
|
|
19607
|
-
/** @example
|
|
19939
|
+
/** @example 18 Apr 2026, 01:26 AM */
|
|
19608
19940
|
reported_at?: string;
|
|
19609
|
-
/** @example 22 Apr 2026,
|
|
19941
|
+
/** @example 22 Apr 2026, 09:46 PM */
|
|
19610
19942
|
assigned_at?: string;
|
|
19611
19943
|
/** @example null */
|
|
19612
19944
|
completed_at?: string | null;
|
|
19613
|
-
/** @example 26 Apr 2026,
|
|
19945
|
+
/** @example 26 Apr 2026, 03:08 AM */
|
|
19614
19946
|
sla_deadline?: string;
|
|
19615
|
-
/** @example 24 Apr 2026, 12
|
|
19947
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
19616
19948
|
created_at?: string;
|
|
19617
|
-
/** @example 24 Apr 2026, 12
|
|
19949
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
19618
19950
|
updated_at?: string;
|
|
19619
19951
|
}[];
|
|
19620
19952
|
links?: {
|
|
@@ -19730,13 +20062,13 @@ export interface operations {
|
|
|
19730
20062
|
};
|
|
19731
20063
|
} | {
|
|
19732
20064
|
data?: {
|
|
19733
|
-
/** @example
|
|
20065
|
+
/** @example 10192309-1811-4af1-8129-db8e19a04fe9 */
|
|
19734
20066
|
uid?: string;
|
|
19735
20067
|
/** @example image */
|
|
19736
20068
|
file_type?: string;
|
|
19737
20069
|
/** @example http://justinshome-backendcore.test/maintenance-attachments/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
19738
20070
|
url?: string;
|
|
19739
|
-
/** @example 2026-04-
|
|
20071
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
19740
20072
|
created_at?: string;
|
|
19741
20073
|
};
|
|
19742
20074
|
};
|
|
@@ -19781,7 +20113,7 @@ export interface operations {
|
|
|
19781
20113
|
content: {
|
|
19782
20114
|
"application/json": {
|
|
19783
20115
|
data?: {
|
|
19784
|
-
/** @example
|
|
20116
|
+
/** @example 67 */
|
|
19785
20117
|
id?: number;
|
|
19786
20118
|
/** @example property_inquiry */
|
|
19787
20119
|
type?: string;
|
|
@@ -19789,7 +20121,7 @@ export interface operations {
|
|
|
19789
20121
|
listing_id?: number;
|
|
19790
20122
|
/** @example null */
|
|
19791
20123
|
last_message_at?: string | null;
|
|
19792
|
-
/** @example 2026-04-
|
|
20124
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
19793
20125
|
created_at?: string;
|
|
19794
20126
|
};
|
|
19795
20127
|
};
|
|
@@ -19815,23 +20147,23 @@ export interface operations {
|
|
|
19815
20147
|
/**
|
|
19816
20148
|
* @example [
|
|
19817
20149
|
* {
|
|
19818
|
-
* "id":
|
|
20150
|
+
* "id": 68,
|
|
19819
20151
|
* "type": "property_inquiry",
|
|
19820
20152
|
* "listing_id": 2,
|
|
19821
20153
|
* "last_message_at": null,
|
|
19822
|
-
* "created_at": "2026-04-
|
|
20154
|
+
* "created_at": "2026-04-24T14:12:49.000000Z"
|
|
19823
20155
|
* },
|
|
19824
20156
|
* {
|
|
19825
|
-
* "id":
|
|
20157
|
+
* "id": 69,
|
|
19826
20158
|
* "type": "property_inquiry",
|
|
19827
20159
|
* "listing_id": 2,
|
|
19828
20160
|
* "last_message_at": null,
|
|
19829
|
-
* "created_at": "2026-04-
|
|
20161
|
+
* "created_at": "2026-04-24T14:12:49.000000Z"
|
|
19830
20162
|
* }
|
|
19831
20163
|
* ]
|
|
19832
20164
|
*/
|
|
19833
20165
|
data?: {
|
|
19834
|
-
/** @example
|
|
20166
|
+
/** @example 68 */
|
|
19835
20167
|
id?: number;
|
|
19836
20168
|
/** @example property_inquiry */
|
|
19837
20169
|
type?: string;
|
|
@@ -19839,7 +20171,7 @@ export interface operations {
|
|
|
19839
20171
|
listing_id?: number;
|
|
19840
20172
|
/** @example null */
|
|
19841
20173
|
last_message_at?: string | null;
|
|
19842
|
-
/** @example 2026-04-
|
|
20174
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
19843
20175
|
created_at?: string;
|
|
19844
20176
|
}[];
|
|
19845
20177
|
links?: {
|
|
@@ -20157,27 +20489,27 @@ export interface operations {
|
|
|
20157
20489
|
/**
|
|
20158
20490
|
* @example [
|
|
20159
20491
|
* {
|
|
20160
|
-
* "id": "
|
|
20492
|
+
* "id": "996adce2-eb3a-4db4-8a22-0eb4c66cc067",
|
|
20161
20493
|
* "type": "APPOINTMENT_CREATED",
|
|
20162
20494
|
* "title": "faker notification",
|
|
20163
20495
|
* "body": "faker notification body",
|
|
20164
20496
|
* "data": [],
|
|
20165
20497
|
* "read_at": null,
|
|
20166
|
-
* "created_at": "2026-04-
|
|
20498
|
+
* "created_at": "2026-04-24T14:12:49.000000Z"
|
|
20167
20499
|
* },
|
|
20168
20500
|
* {
|
|
20169
|
-
* "id": "
|
|
20501
|
+
* "id": "66fdbe08-0d26-40a7-82f8-502c04758d18",
|
|
20170
20502
|
* "type": "APPOINTMENT_CREATED",
|
|
20171
20503
|
* "title": "faker notification",
|
|
20172
20504
|
* "body": "faker notification body",
|
|
20173
20505
|
* "data": [],
|
|
20174
20506
|
* "read_at": null,
|
|
20175
|
-
* "created_at": "2026-04-
|
|
20507
|
+
* "created_at": "2026-04-24T14:12:49.000000Z"
|
|
20176
20508
|
* }
|
|
20177
20509
|
* ]
|
|
20178
20510
|
*/
|
|
20179
20511
|
data?: {
|
|
20180
|
-
/** @example
|
|
20512
|
+
/** @example 996adce2-eb3a-4db4-8a22-0eb4c66cc067 */
|
|
20181
20513
|
id?: string;
|
|
20182
20514
|
/** @example APPOINTMENT_CREATED */
|
|
20183
20515
|
type?: string;
|
|
@@ -20189,7 +20521,7 @@ export interface operations {
|
|
|
20189
20521
|
data?: unknown[];
|
|
20190
20522
|
/** @example null */
|
|
20191
20523
|
read_at?: string | null;
|
|
20192
|
-
/** @example 2026-04-
|
|
20524
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
20193
20525
|
created_at?: string;
|
|
20194
20526
|
}[];
|
|
20195
20527
|
links?: {
|
|
@@ -20273,7 +20605,7 @@ export interface operations {
|
|
|
20273
20605
|
};
|
|
20274
20606
|
content: {
|
|
20275
20607
|
"application/json": {
|
|
20276
|
-
/** @example
|
|
20608
|
+
/** @example 03561274-fe3c-4cf5-bc77-17b20d3dc613 */
|
|
20277
20609
|
id?: string;
|
|
20278
20610
|
/** @example APPOINTMENT_CREATED */
|
|
20279
20611
|
type?: string;
|
|
@@ -20285,7 +20617,7 @@ export interface operations {
|
|
|
20285
20617
|
data?: unknown[];
|
|
20286
20618
|
/** @example null */
|
|
20287
20619
|
read_at?: string | null;
|
|
20288
|
-
/** @example 2026-04-
|
|
20620
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
20289
20621
|
created_at?: string;
|
|
20290
20622
|
};
|
|
20291
20623
|
};
|
|
@@ -20534,45 +20866,45 @@ export interface operations {
|
|
|
20534
20866
|
/**
|
|
20535
20867
|
* @example [
|
|
20536
20868
|
* {
|
|
20537
|
-
* "id":
|
|
20869
|
+
* "id": 133,
|
|
20538
20870
|
* "rating": 1,
|
|
20539
20871
|
* "comment": "Nice Listing",
|
|
20540
20872
|
* "reviewer": {
|
|
20541
|
-
* "id":
|
|
20542
|
-
* "name": "
|
|
20873
|
+
* "id": 17,
|
|
20874
|
+
* "name": "Hannah Ross"
|
|
20543
20875
|
* },
|
|
20544
|
-
* "created_at": "2026-04-
|
|
20545
|
-
* "updated_at": "2026-04-
|
|
20876
|
+
* "created_at": "2026-04-24T14:12:49+00:00",
|
|
20877
|
+
* "updated_at": "2026-04-24T14:12:49+00:00"
|
|
20546
20878
|
* },
|
|
20547
20879
|
* {
|
|
20548
|
-
* "id":
|
|
20880
|
+
* "id": 134,
|
|
20549
20881
|
* "rating": 1,
|
|
20550
20882
|
* "comment": "Nice Listing",
|
|
20551
20883
|
* "reviewer": {
|
|
20552
|
-
* "id":
|
|
20553
|
-
* "name": "
|
|
20884
|
+
* "id": 21,
|
|
20885
|
+
* "name": "Isla Simpson"
|
|
20554
20886
|
* },
|
|
20555
|
-
* "created_at": "2026-04-
|
|
20556
|
-
* "updated_at": "2026-04-
|
|
20887
|
+
* "created_at": "2026-04-24T14:12:49+00:00",
|
|
20888
|
+
* "updated_at": "2026-04-24T14:12:49+00:00"
|
|
20557
20889
|
* }
|
|
20558
20890
|
* ]
|
|
20559
20891
|
*/
|
|
20560
20892
|
data?: {
|
|
20561
|
-
/** @example
|
|
20893
|
+
/** @example 133 */
|
|
20562
20894
|
id?: number;
|
|
20563
20895
|
/** @example 1 */
|
|
20564
20896
|
rating?: number;
|
|
20565
20897
|
/** @example Nice Listing */
|
|
20566
20898
|
comment?: string;
|
|
20567
20899
|
reviewer?: {
|
|
20568
|
-
/** @example
|
|
20900
|
+
/** @example 17 */
|
|
20569
20901
|
id?: number;
|
|
20570
|
-
/** @example
|
|
20902
|
+
/** @example Hannah Ross */
|
|
20571
20903
|
name?: string;
|
|
20572
20904
|
};
|
|
20573
|
-
/** @example 2026-04-
|
|
20905
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20574
20906
|
created_at?: string;
|
|
20575
|
-
/** @example 2026-04-
|
|
20907
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20576
20908
|
updated_at?: string;
|
|
20577
20909
|
}[];
|
|
20578
20910
|
links?: {
|
|
@@ -20726,21 +21058,21 @@ export interface operations {
|
|
|
20726
21058
|
content: {
|
|
20727
21059
|
"application/json": {
|
|
20728
21060
|
data?: {
|
|
20729
|
-
/** @example
|
|
21061
|
+
/** @example 135 */
|
|
20730
21062
|
id?: number;
|
|
20731
21063
|
/** @example 1 */
|
|
20732
21064
|
rating?: number;
|
|
20733
21065
|
/** @example Nice Listing */
|
|
20734
21066
|
comment?: string;
|
|
20735
21067
|
reviewer?: {
|
|
20736
|
-
/** @example
|
|
21068
|
+
/** @example 17 */
|
|
20737
21069
|
id?: number;
|
|
20738
|
-
/** @example
|
|
21070
|
+
/** @example Hannah Ross */
|
|
20739
21071
|
name?: string;
|
|
20740
21072
|
};
|
|
20741
|
-
/** @example 2026-04-
|
|
21073
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20742
21074
|
created_at?: string;
|
|
20743
|
-
/** @example 2026-04-
|
|
21075
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20744
21076
|
updated_at?: string;
|
|
20745
21077
|
};
|
|
20746
21078
|
};
|
|
@@ -20784,21 +21116,21 @@ export interface operations {
|
|
|
20784
21116
|
content: {
|
|
20785
21117
|
"application/json": {
|
|
20786
21118
|
data?: {
|
|
20787
|
-
/** @example
|
|
21119
|
+
/** @example 136 */
|
|
20788
21120
|
id?: number;
|
|
20789
21121
|
/** @example 1 */
|
|
20790
21122
|
rating?: number;
|
|
20791
21123
|
/** @example Nice Listing */
|
|
20792
21124
|
comment?: string;
|
|
20793
21125
|
reviewer?: {
|
|
20794
|
-
/** @example
|
|
21126
|
+
/** @example 9 */
|
|
20795
21127
|
id?: number;
|
|
20796
|
-
/** @example
|
|
21128
|
+
/** @example Dominic Thomas */
|
|
20797
21129
|
name?: string;
|
|
20798
21130
|
};
|
|
20799
|
-
/** @example 2026-04-
|
|
21131
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20800
21132
|
created_at?: string;
|
|
20801
|
-
/** @example 2026-04-
|
|
21133
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20802
21134
|
updated_at?: string;
|
|
20803
21135
|
};
|
|
20804
21136
|
};
|
|
@@ -20840,21 +21172,21 @@ export interface operations {
|
|
|
20840
21172
|
content: {
|
|
20841
21173
|
"application/json": {
|
|
20842
21174
|
data?: {
|
|
20843
|
-
/** @example
|
|
21175
|
+
/** @example 137 */
|
|
20844
21176
|
id?: number;
|
|
20845
21177
|
/** @example 1 */
|
|
20846
21178
|
rating?: number;
|
|
20847
21179
|
/** @example Nice Listing */
|
|
20848
21180
|
comment?: string;
|
|
20849
21181
|
reviewer?: {
|
|
20850
|
-
/** @example
|
|
21182
|
+
/** @example 22 */
|
|
20851
21183
|
id?: number;
|
|
20852
|
-
/** @example
|
|
21184
|
+
/** @example Theo Ward */
|
|
20853
21185
|
name?: string;
|
|
20854
21186
|
};
|
|
20855
|
-
/** @example 2026-04-
|
|
21187
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20856
21188
|
created_at?: string;
|
|
20857
|
-
/** @example 2026-04-
|
|
21189
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20858
21190
|
updated_at?: string;
|
|
20859
21191
|
};
|
|
20860
21192
|
};
|
|
@@ -20881,21 +21213,21 @@ export interface operations {
|
|
|
20881
21213
|
content: {
|
|
20882
21214
|
"application/json": {
|
|
20883
21215
|
data?: {
|
|
20884
|
-
/** @example
|
|
21216
|
+
/** @example 138 */
|
|
20885
21217
|
id?: number;
|
|
20886
21218
|
/** @example 1 */
|
|
20887
21219
|
rating?: number;
|
|
20888
21220
|
/** @example Nice Listing */
|
|
20889
21221
|
comment?: string;
|
|
20890
21222
|
reviewer?: {
|
|
20891
|
-
/** @example
|
|
21223
|
+
/** @example 4 */
|
|
20892
21224
|
id?: number;
|
|
20893
|
-
/** @example
|
|
21225
|
+
/** @example Lola Holmes */
|
|
20894
21226
|
name?: string;
|
|
20895
21227
|
};
|
|
20896
|
-
/** @example 2026-04-
|
|
21228
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20897
21229
|
created_at?: string;
|
|
20898
|
-
/** @example 2026-04-
|
|
21230
|
+
/** @example 2026-04-24T14:12:49+00:00 */
|
|
20899
21231
|
updated_at?: string;
|
|
20900
21232
|
};
|
|
20901
21233
|
};
|
|
@@ -20922,7 +21254,7 @@ export interface operations {
|
|
|
20922
21254
|
content: {
|
|
20923
21255
|
"application/json": {
|
|
20924
21256
|
data?: {
|
|
20925
|
-
/** @example
|
|
21257
|
+
/** @example 8516c1d8-969f-4a26-a9be-eb1b7b74fc38 */
|
|
20926
21258
|
uid?: string;
|
|
20927
21259
|
/** @example 1 */
|
|
20928
21260
|
listing_id?: number;
|
|
@@ -20946,7 +21278,7 @@ export interface operations {
|
|
|
20946
21278
|
company_name?: string | null;
|
|
20947
21279
|
/** @example null */
|
|
20948
21280
|
company_registration_number?: string | null;
|
|
20949
|
-
/** @example 2026-04-
|
|
21281
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
20950
21282
|
created_at?: string;
|
|
20951
21283
|
/** @example [] */
|
|
20952
21284
|
compliances?: unknown[];
|
|
@@ -21023,7 +21355,7 @@ export interface operations {
|
|
|
21023
21355
|
content: {
|
|
21024
21356
|
"application/json": {
|
|
21025
21357
|
data?: {
|
|
21026
|
-
/** @example
|
|
21358
|
+
/** @example a0b7a5fe-9b12-4d20-9bb0-43e634e910ce */
|
|
21027
21359
|
uid?: string;
|
|
21028
21360
|
/** @example 1 */
|
|
21029
21361
|
listing_id?: number;
|
|
@@ -21047,7 +21379,7 @@ export interface operations {
|
|
|
21047
21379
|
company_name?: string | null;
|
|
21048
21380
|
/** @example null */
|
|
21049
21381
|
company_registration_number?: string | null;
|
|
21050
|
-
/** @example 2026-04-
|
|
21382
|
+
/** @example 2026-04-24T14:12:49.000000Z */
|
|
21051
21383
|
created_at?: string;
|
|
21052
21384
|
};
|
|
21053
21385
|
};
|
|
@@ -21341,7 +21673,7 @@ export interface operations {
|
|
|
21341
21673
|
* "changed_by_user_id": 3,
|
|
21342
21674
|
* "changed_by_name": "Teagan King",
|
|
21343
21675
|
* "comment": "Qui commodi incidunt iure odit.",
|
|
21344
|
-
* "created_at": "2025-12-
|
|
21676
|
+
* "created_at": "2025-12-17T00:59:48.000000Z"
|
|
21345
21677
|
* },
|
|
21346
21678
|
* {
|
|
21347
21679
|
* "from_state": "pre_move_in_ready",
|
|
@@ -21349,7 +21681,7 @@ export interface operations {
|
|
|
21349
21681
|
* "changed_by_user_id": 3,
|
|
21350
21682
|
* "changed_by_name": "Teagan King",
|
|
21351
21683
|
* "comment": null,
|
|
21352
|
-
* "created_at": "2025-11-
|
|
21684
|
+
* "created_at": "2025-11-02T08:55:28.000000Z"
|
|
21353
21685
|
* }
|
|
21354
21686
|
* ]
|
|
21355
21687
|
*/
|
|
@@ -21364,7 +21696,7 @@ export interface operations {
|
|
|
21364
21696
|
changed_by_name?: string;
|
|
21365
21697
|
/** @example Qui commodi incidunt iure odit. */
|
|
21366
21698
|
comment?: string;
|
|
21367
|
-
/** @example 2025-12-
|
|
21699
|
+
/** @example 2025-12-17T00:59:48.000000Z */
|
|
21368
21700
|
created_at?: string;
|
|
21369
21701
|
}[];
|
|
21370
21702
|
};
|
|
@@ -21608,7 +21940,7 @@ export interface operations {
|
|
|
21608
21940
|
content: {
|
|
21609
21941
|
"application/json": {
|
|
21610
21942
|
data?: {
|
|
21611
|
-
/** @example
|
|
21943
|
+
/** @example 8021d227-e1d1-4c22-83b6-1ee7934068c6 */
|
|
21612
21944
|
uid?: string;
|
|
21613
21945
|
/** @example Ms. Audra Crooks II */
|
|
21614
21946
|
username?: string;
|
|
@@ -21616,7 +21948,7 @@ export interface operations {
|
|
|
21616
21948
|
first_name?: string | null;
|
|
21617
21949
|
/** @example null */
|
|
21618
21950
|
last_name?: string | null;
|
|
21619
|
-
/** @example
|
|
21951
|
+
/** @example hirthe.theo@example.com */
|
|
21620
21952
|
email?: string;
|
|
21621
21953
|
/** @example null */
|
|
21622
21954
|
phone?: string | null;
|
|
@@ -21638,7 +21970,7 @@ export interface operations {
|
|
|
21638
21970
|
timezone?: string;
|
|
21639
21971
|
/** @example Customer */
|
|
21640
21972
|
user_type?: string;
|
|
21641
|
-
/** @example 24 Apr 2026, 12
|
|
21973
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
21642
21974
|
created?: string;
|
|
21643
21975
|
/** @example 0 seconds ago */
|
|
21644
21976
|
email_verified_at?: string;
|
|
@@ -21737,7 +22069,7 @@ export interface operations {
|
|
|
21737
22069
|
content: {
|
|
21738
22070
|
"application/json": {
|
|
21739
22071
|
data?: {
|
|
21740
|
-
/** @example
|
|
22072
|
+
/** @example 12dd9404-a722-4e22-8094-ca3b9b452b3b */
|
|
21741
22073
|
uid?: string;
|
|
21742
22074
|
/** @example Morgan Hirthe */
|
|
21743
22075
|
username?: string;
|
|
@@ -21767,7 +22099,7 @@ export interface operations {
|
|
|
21767
22099
|
timezone?: string;
|
|
21768
22100
|
/** @example Customer */
|
|
21769
22101
|
user_type?: string;
|
|
21770
|
-
/** @example 24 Apr 2026, 12
|
|
22102
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
21771
22103
|
created?: string;
|
|
21772
22104
|
/** @example 0 seconds ago */
|
|
21773
22105
|
email_verified_at?: string;
|
|
@@ -21839,7 +22171,7 @@ export interface operations {
|
|
|
21839
22171
|
content: {
|
|
21840
22172
|
"application/json": {
|
|
21841
22173
|
data?: {
|
|
21842
|
-
/** @example
|
|
22174
|
+
/** @example 97a79ca0-b7d7-48cd-b7c9-55885cf393e0 */
|
|
21843
22175
|
uid?: string;
|
|
21844
22176
|
/** @example Ms. Audra Crooks II */
|
|
21845
22177
|
username?: string;
|
|
@@ -21847,7 +22179,7 @@ export interface operations {
|
|
|
21847
22179
|
first_name?: string | null;
|
|
21848
22180
|
/** @example null */
|
|
21849
22181
|
last_name?: string | null;
|
|
21850
|
-
/** @example
|
|
22182
|
+
/** @example leo34@example.net */
|
|
21851
22183
|
email?: string;
|
|
21852
22184
|
/** @example null */
|
|
21853
22185
|
phone?: string | null;
|
|
@@ -21869,7 +22201,7 @@ export interface operations {
|
|
|
21869
22201
|
timezone?: string;
|
|
21870
22202
|
/** @example Customer */
|
|
21871
22203
|
user_type?: string;
|
|
21872
|
-
/** @example 24 Apr 2026, 12
|
|
22204
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
21873
22205
|
created?: string;
|
|
21874
22206
|
/** @example 0 seconds ago */
|
|
21875
22207
|
email_verified_at?: string;
|
|
@@ -22109,7 +22441,7 @@ export interface operations {
|
|
|
22109
22441
|
completed_layers?: number;
|
|
22110
22442
|
/** @example 4 */
|
|
22111
22443
|
pending_layers?: number;
|
|
22112
|
-
/** @example 24 Apr 2026, 12
|
|
22444
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
22113
22445
|
last_calculated_at?: string;
|
|
22114
22446
|
};
|
|
22115
22447
|
};
|
|
@@ -22157,7 +22489,7 @@ export interface operations {
|
|
|
22157
22489
|
completed_layers?: number;
|
|
22158
22490
|
/** @example 4 */
|
|
22159
22491
|
pending_layers?: number;
|
|
22160
|
-
/** @example 24 Apr 2026, 12
|
|
22492
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
22161
22493
|
last_calculated_at?: string;
|
|
22162
22494
|
};
|
|
22163
22495
|
};
|
|
@@ -22191,14 +22523,14 @@ export interface operations {
|
|
|
22191
22523
|
content: {
|
|
22192
22524
|
"application/json": {
|
|
22193
22525
|
data?: {
|
|
22194
|
-
/** @example
|
|
22526
|
+
/** @example f24372ba-7ab4-48f1-883e-370daf6d5177 */
|
|
22195
22527
|
wishlist_uid?: string;
|
|
22196
22528
|
listing?: {
|
|
22197
|
-
/** @example New For Sale Used Item draft • 24 Apr 2026, 12
|
|
22529
|
+
/** @example New For Sale Used Item draft • 24 Apr 2026, 2:12 PM */
|
|
22198
22530
|
draft_name?: string;
|
|
22199
|
-
/** @example LST-UIT-SAL-
|
|
22531
|
+
/** @example LST-UIT-SAL-MOCZPRUKZEF */
|
|
22200
22532
|
sku?: string;
|
|
22201
|
-
/** @example
|
|
22533
|
+
/** @example 7c92cc5f-8800-4509-996e-c9db8f228078 */
|
|
22202
22534
|
uid?: string;
|
|
22203
22535
|
/** @example Sale */
|
|
22204
22536
|
listing_type?: string;
|
|
@@ -22282,15 +22614,15 @@ export interface operations {
|
|
|
22282
22614
|
/**
|
|
22283
22615
|
* @example [
|
|
22284
22616
|
* {
|
|
22285
|
-
* "wishlist_uid": "
|
|
22617
|
+
* "wishlist_uid": "40007f97-f904-40fc-ba69-b999c89452c9"
|
|
22286
22618
|
* },
|
|
22287
22619
|
* {
|
|
22288
|
-
* "wishlist_uid": "
|
|
22620
|
+
* "wishlist_uid": "ab61ad3e-ec9f-414e-bb27-abb28b66816e"
|
|
22289
22621
|
* }
|
|
22290
22622
|
* ]
|
|
22291
22623
|
*/
|
|
22292
22624
|
data?: {
|
|
22293
|
-
/** @example
|
|
22625
|
+
/** @example 40007f97-f904-40fc-ba69-b999c89452c9 */
|
|
22294
22626
|
wishlist_uid?: string;
|
|
22295
22627
|
}[];
|
|
22296
22628
|
links?: {
|
|
@@ -22425,7 +22757,7 @@ export interface operations {
|
|
|
22425
22757
|
completed_layers?: number;
|
|
22426
22758
|
/** @example 4 */
|
|
22427
22759
|
pending_layers?: number;
|
|
22428
|
-
/** @example 24 Apr 2026, 12
|
|
22760
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
22429
22761
|
last_calculated_at?: string;
|
|
22430
22762
|
};
|
|
22431
22763
|
};
|
|
@@ -22587,7 +22919,7 @@ export interface operations {
|
|
|
22587
22919
|
completed_layers?: number;
|
|
22588
22920
|
/** @example 4 */
|
|
22589
22921
|
pending_layers?: number;
|
|
22590
|
-
/** @example 24 Apr 2026, 12
|
|
22922
|
+
/** @example 24 Apr 2026, 02:12 PM */
|
|
22591
22923
|
last_calculated_at?: string;
|
|
22592
22924
|
};
|
|
22593
22925
|
};
|