@justins-home/types 1.1.37 → 1.1.38
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 +597 -300
- package/package.json +1 -1
package/generated/api-types.ts
CHANGED
|
@@ -2176,6 +2176,29 @@ export interface paths {
|
|
|
2176
2176
|
patch?: never;
|
|
2177
2177
|
trace?: never;
|
|
2178
2178
|
};
|
|
2179
|
+
"/api/v1/portal/admin/compliances/{compliance_id}/remove-from-global": {
|
|
2180
|
+
parameters: {
|
|
2181
|
+
query?: never;
|
|
2182
|
+
header?: never;
|
|
2183
|
+
path: {
|
|
2184
|
+
/** @description The ID of the compliance definition to remove from global scope. */
|
|
2185
|
+
compliance_id: number;
|
|
2186
|
+
};
|
|
2187
|
+
cookie?: never;
|
|
2188
|
+
};
|
|
2189
|
+
get?: never;
|
|
2190
|
+
put?: never;
|
|
2191
|
+
/**
|
|
2192
|
+
* removeComplianceFromGlobal
|
|
2193
|
+
* @description Remove a compliance definition from the global scope.
|
|
2194
|
+
*/
|
|
2195
|
+
post: operations["removeComplianceFromGlobal"];
|
|
2196
|
+
delete?: never;
|
|
2197
|
+
options?: never;
|
|
2198
|
+
head?: never;
|
|
2199
|
+
patch?: never;
|
|
2200
|
+
trace?: never;
|
|
2201
|
+
};
|
|
2179
2202
|
"/api/v1/portal/admin/compliances/{compliance_id}/assign-category/{categoryId}": {
|
|
2180
2203
|
parameters: {
|
|
2181
2204
|
query?: never;
|
|
@@ -2201,6 +2224,31 @@ export interface paths {
|
|
|
2201
2224
|
patch?: never;
|
|
2202
2225
|
trace?: never;
|
|
2203
2226
|
};
|
|
2227
|
+
"/api/v1/portal/admin/compliances/{compliance_id}/remove-category/{categoryId}": {
|
|
2228
|
+
parameters: {
|
|
2229
|
+
query?: never;
|
|
2230
|
+
header?: never;
|
|
2231
|
+
path: {
|
|
2232
|
+
/** @description The ID of the compliance definition. */
|
|
2233
|
+
compliance_id: number;
|
|
2234
|
+
/** @description The ID of the listing category. */
|
|
2235
|
+
categoryId: number;
|
|
2236
|
+
};
|
|
2237
|
+
cookie?: never;
|
|
2238
|
+
};
|
|
2239
|
+
get?: never;
|
|
2240
|
+
put?: never;
|
|
2241
|
+
/**
|
|
2242
|
+
* removeComplianceFromCategory
|
|
2243
|
+
* @description Remove a compliance definition from a specific listing category.
|
|
2244
|
+
*/
|
|
2245
|
+
post: operations["removeComplianceFromCategory"];
|
|
2246
|
+
delete?: never;
|
|
2247
|
+
options?: never;
|
|
2248
|
+
head?: never;
|
|
2249
|
+
patch?: never;
|
|
2250
|
+
trace?: never;
|
|
2251
|
+
};
|
|
2204
2252
|
"/api/v1/portal/admin/compliances/{compliance_id}/assign-to-listing/{listing_uid}": {
|
|
2205
2253
|
parameters: {
|
|
2206
2254
|
query?: never;
|
|
@@ -2226,6 +2274,31 @@ export interface paths {
|
|
|
2226
2274
|
patch?: never;
|
|
2227
2275
|
trace?: never;
|
|
2228
2276
|
};
|
|
2277
|
+
"/api/v1/portal/admin/compliances/{compliance_id}/remove-from-listing/{listing_uid}": {
|
|
2278
|
+
parameters: {
|
|
2279
|
+
query?: never;
|
|
2280
|
+
header?: never;
|
|
2281
|
+
path: {
|
|
2282
|
+
/** @description The ID of the compliance definition. */
|
|
2283
|
+
compliance_id: number;
|
|
2284
|
+
/** @description The UID of the listing to remove the compliance rule from. */
|
|
2285
|
+
listing_uid: string;
|
|
2286
|
+
};
|
|
2287
|
+
cookie?: never;
|
|
2288
|
+
};
|
|
2289
|
+
get?: never;
|
|
2290
|
+
put?: never;
|
|
2291
|
+
/**
|
|
2292
|
+
* removeComplianceFromListing
|
|
2293
|
+
* @description Remove a compliance definition from a specific listing.
|
|
2294
|
+
*/
|
|
2295
|
+
post: operations["removeComplianceFromListing"];
|
|
2296
|
+
delete?: never;
|
|
2297
|
+
options?: never;
|
|
2298
|
+
head?: never;
|
|
2299
|
+
patch?: never;
|
|
2300
|
+
trace?: never;
|
|
2301
|
+
};
|
|
2229
2302
|
"/api/v1/portal/admin/compliances/{compliance_id}/assign-to-tenancy/{tenancy_uid}": {
|
|
2230
2303
|
parameters: {
|
|
2231
2304
|
query?: never;
|
|
@@ -2251,6 +2324,31 @@ export interface paths {
|
|
|
2251
2324
|
patch?: never;
|
|
2252
2325
|
trace?: never;
|
|
2253
2326
|
};
|
|
2327
|
+
"/api/v1/portal/admin/compliances/{compliance_id}/remove-from-tenancy/{tenancy_uid}": {
|
|
2328
|
+
parameters: {
|
|
2329
|
+
query?: never;
|
|
2330
|
+
header?: never;
|
|
2331
|
+
path: {
|
|
2332
|
+
/** @description The ID of the compliance definition. */
|
|
2333
|
+
compliance_id: number;
|
|
2334
|
+
/** @description The UID of the tenancy to remove the compliance rule from. */
|
|
2335
|
+
tenancy_uid: string;
|
|
2336
|
+
};
|
|
2337
|
+
cookie?: never;
|
|
2338
|
+
};
|
|
2339
|
+
get?: never;
|
|
2340
|
+
put?: never;
|
|
2341
|
+
/**
|
|
2342
|
+
* removeComplianceFromTenancy
|
|
2343
|
+
* @description Remove a compliance definition from a specific tenancy.
|
|
2344
|
+
*/
|
|
2345
|
+
post: operations["removeComplianceFromTenancy"];
|
|
2346
|
+
delete?: never;
|
|
2347
|
+
options?: never;
|
|
2348
|
+
head?: never;
|
|
2349
|
+
patch?: never;
|
|
2350
|
+
trace?: never;
|
|
2351
|
+
};
|
|
2254
2352
|
"/api/v1/portal/admin/compliances/{compliance_id}/assign-to-listing-vertical": {
|
|
2255
2353
|
parameters: {
|
|
2256
2354
|
query?: never;
|
|
@@ -2274,6 +2372,29 @@ export interface paths {
|
|
|
2274
2372
|
patch?: never;
|
|
2275
2373
|
trace?: never;
|
|
2276
2374
|
};
|
|
2375
|
+
"/api/v1/portal/admin/compliances/{compliance_id}/remove-from-listing-vertical": {
|
|
2376
|
+
parameters: {
|
|
2377
|
+
query?: never;
|
|
2378
|
+
header?: never;
|
|
2379
|
+
path: {
|
|
2380
|
+
/** @description The ID of the compliance definition. */
|
|
2381
|
+
compliance_id: number;
|
|
2382
|
+
};
|
|
2383
|
+
cookie?: never;
|
|
2384
|
+
};
|
|
2385
|
+
get?: never;
|
|
2386
|
+
put?: never;
|
|
2387
|
+
/**
|
|
2388
|
+
* removeComplianceFromListingVertical
|
|
2389
|
+
* @description Remove a compliance definition from a specific listing vertical.
|
|
2390
|
+
*/
|
|
2391
|
+
post: operations["removeComplianceFromListingVertical"];
|
|
2392
|
+
delete?: never;
|
|
2393
|
+
options?: never;
|
|
2394
|
+
head?: never;
|
|
2395
|
+
patch?: never;
|
|
2396
|
+
trace?: never;
|
|
2397
|
+
};
|
|
2277
2398
|
"/api/v1/portal/admin/compliances/{compliance_id}/assign-to-listing-type": {
|
|
2278
2399
|
parameters: {
|
|
2279
2400
|
query?: never;
|
|
@@ -2297,6 +2418,29 @@ export interface paths {
|
|
|
2297
2418
|
patch?: never;
|
|
2298
2419
|
trace?: never;
|
|
2299
2420
|
};
|
|
2421
|
+
"/api/v1/portal/admin/compliances/{compliance_id}/remove-from-listing-type": {
|
|
2422
|
+
parameters: {
|
|
2423
|
+
query?: never;
|
|
2424
|
+
header?: never;
|
|
2425
|
+
path: {
|
|
2426
|
+
/** @description The ID of the compliance definition. */
|
|
2427
|
+
compliance_id: number;
|
|
2428
|
+
};
|
|
2429
|
+
cookie?: never;
|
|
2430
|
+
};
|
|
2431
|
+
get?: never;
|
|
2432
|
+
put?: never;
|
|
2433
|
+
/**
|
|
2434
|
+
* removeComplianceFromListingType
|
|
2435
|
+
* @description Remove a compliance definition from a specific listing type.
|
|
2436
|
+
*/
|
|
2437
|
+
post: operations["removeComplianceFromListingType"];
|
|
2438
|
+
delete?: never;
|
|
2439
|
+
options?: never;
|
|
2440
|
+
head?: never;
|
|
2441
|
+
patch?: never;
|
|
2442
|
+
trace?: never;
|
|
2443
|
+
};
|
|
2300
2444
|
"/api/v1/portal/admin/compliances/{compliance_id}/assign-to-arrangement-type": {
|
|
2301
2445
|
parameters: {
|
|
2302
2446
|
query?: never;
|
|
@@ -2320,6 +2464,29 @@ export interface paths {
|
|
|
2320
2464
|
patch?: never;
|
|
2321
2465
|
trace?: never;
|
|
2322
2466
|
};
|
|
2467
|
+
"/api/v1/portal/admin/compliances/{compliance_id}/remove-from-arrangement-type": {
|
|
2468
|
+
parameters: {
|
|
2469
|
+
query?: never;
|
|
2470
|
+
header?: never;
|
|
2471
|
+
path: {
|
|
2472
|
+
/** @description The ID of the compliance definition. */
|
|
2473
|
+
compliance_id: number;
|
|
2474
|
+
};
|
|
2475
|
+
cookie?: never;
|
|
2476
|
+
};
|
|
2477
|
+
get?: never;
|
|
2478
|
+
put?: never;
|
|
2479
|
+
/**
|
|
2480
|
+
* removeComplianceFromArrangementType
|
|
2481
|
+
* @description Remove a compliance definition from a specific arrangement type.
|
|
2482
|
+
*/
|
|
2483
|
+
post: operations["removeComplianceFromArrangementType"];
|
|
2484
|
+
delete?: never;
|
|
2485
|
+
options?: never;
|
|
2486
|
+
head?: never;
|
|
2487
|
+
patch?: never;
|
|
2488
|
+
trace?: never;
|
|
2489
|
+
};
|
|
2323
2490
|
"/api/v1/portal/admin/inspections/fetch-history/{listing_uid}": {
|
|
2324
2491
|
parameters: {
|
|
2325
2492
|
query?: never;
|
|
@@ -5687,7 +5854,7 @@ export interface operations {
|
|
|
5687
5854
|
content: {
|
|
5688
5855
|
"application/json": {
|
|
5689
5856
|
data?: {
|
|
5690
|
-
/** @example
|
|
5857
|
+
/** @example aef63d00-21af-4ba3-915d-ffcd51174b07 */
|
|
5691
5858
|
uid?: string;
|
|
5692
5859
|
/** @example Ms. Audra Crooks II */
|
|
5693
5860
|
username?: string;
|
|
@@ -5717,7 +5884,7 @@ export interface operations {
|
|
|
5717
5884
|
timezone?: string;
|
|
5718
5885
|
/** @example Customer */
|
|
5719
5886
|
user_type?: string;
|
|
5720
|
-
/** @example 21 Apr 2026,
|
|
5887
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
5721
5888
|
created?: string;
|
|
5722
5889
|
/** @example 0 seconds ago */
|
|
5723
5890
|
email_verified_at?: string;
|
|
@@ -5970,11 +6137,11 @@ export interface operations {
|
|
|
5970
6137
|
content: {
|
|
5971
6138
|
"application/json": {
|
|
5972
6139
|
data?: {
|
|
5973
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
6140
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
5974
6141
|
draft_name?: string;
|
|
5975
|
-
/** @example LST-PRP-LTR-
|
|
6142
|
+
/** @example LST-PRP-LTR-MO8UBUFG03L */
|
|
5976
6143
|
sku?: string;
|
|
5977
|
-
/** @example
|
|
6144
|
+
/** @example 69d2a846-0595-406f-857e-dbd48fff888f */
|
|
5978
6145
|
uid?: string;
|
|
5979
6146
|
/** @example Rent */
|
|
5980
6147
|
listing_type?: string;
|
|
@@ -7401,7 +7568,7 @@ export interface operations {
|
|
|
7401
7568
|
content: {
|
|
7402
7569
|
"application/json": {
|
|
7403
7570
|
data?: {
|
|
7404
|
-
/** @example
|
|
7571
|
+
/** @example 54f61983-1adc-4b79-bf82-f94e5fae1056 */
|
|
7405
7572
|
uid?: string;
|
|
7406
7573
|
/** @example Morgan Hirthe */
|
|
7407
7574
|
username?: string;
|
|
@@ -7431,7 +7598,7 @@ export interface operations {
|
|
|
7431
7598
|
timezone?: string;
|
|
7432
7599
|
/** @example Customer */
|
|
7433
7600
|
user_type?: string;
|
|
7434
|
-
/** @example 21 Apr 2026,
|
|
7601
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
7435
7602
|
created?: string;
|
|
7436
7603
|
/** @example 0 seconds ago */
|
|
7437
7604
|
email_verified_at?: string;
|
|
@@ -8140,11 +8307,11 @@ export interface operations {
|
|
|
8140
8307
|
content: {
|
|
8141
8308
|
"application/json": {
|
|
8142
8309
|
data?: {
|
|
8143
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
8310
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
8144
8311
|
draft_name?: string;
|
|
8145
|
-
/** @example LST-PRP-LTR-
|
|
8312
|
+
/** @example LST-PRP-LTR-MO8UBUIURYX */
|
|
8146
8313
|
sku?: string;
|
|
8147
|
-
/** @example
|
|
8314
|
+
/** @example 45ed3afd-3771-43ac-ab70-d7c94b11acd9 */
|
|
8148
8315
|
uid?: string;
|
|
8149
8316
|
/** @example Rent */
|
|
8150
8317
|
listing_type?: string;
|
|
@@ -8584,7 +8751,7 @@ export interface operations {
|
|
|
8584
8751
|
content: {
|
|
8585
8752
|
"application/json": {
|
|
8586
8753
|
data?: {
|
|
8587
|
-
/** @example
|
|
8754
|
+
/** @example 769073e9-ba40-4e1e-85e3-900410a5abf5 */
|
|
8588
8755
|
uid?: string;
|
|
8589
8756
|
/** @example photo */
|
|
8590
8757
|
media_type?: string;
|
|
@@ -8891,13 +9058,13 @@ export interface operations {
|
|
|
8891
9058
|
/**
|
|
8892
9059
|
* @example [
|
|
8893
9060
|
* {
|
|
8894
|
-
* "draft_name": "New For Rent Property draft • 21 Apr 2026,
|
|
8895
|
-
* "sku": "LST-PRP-LTR-
|
|
8896
|
-
* "uid": "
|
|
9061
|
+
* "draft_name": "New For Rent Property draft • 21 Apr 2026, 4:30 PM",
|
|
9062
|
+
* "sku": "LST-PRP-LTR-MO8UBUKQQ5T",
|
|
9063
|
+
* "uid": "4fc5a87b-add2-4aff-9b0c-2558a5e20016",
|
|
8897
9064
|
* "listing_type": "Rent",
|
|
8898
9065
|
* "vertical": "Property",
|
|
8899
|
-
* "arrangement_type": "
|
|
8900
|
-
* "arrangement_type_label": "
|
|
9066
|
+
* "arrangement_type": "standard_residential",
|
|
9067
|
+
* "arrangement_type_label": "Standard Residential",
|
|
8901
9068
|
* "price": null,
|
|
8902
9069
|
* "state": "draft",
|
|
8903
9070
|
* "published_at": null,
|
|
@@ -8910,40 +9077,38 @@ export interface operations {
|
|
|
8910
9077
|
* "media": []
|
|
8911
9078
|
* },
|
|
8912
9079
|
* {
|
|
8913
|
-
* "draft_name": "New
|
|
8914
|
-
* "sku": "LST-
|
|
8915
|
-
* "uid": "
|
|
8916
|
-
* "listing_type": "
|
|
8917
|
-
* "vertical": "
|
|
8918
|
-
* "arrangement_type":
|
|
8919
|
-
* "arrangement_type_label":
|
|
9080
|
+
* "draft_name": "New For Sale Used Item draft • 21 Apr 2026, 4:30 PM",
|
|
9081
|
+
* "sku": "LST-UIT-SAL-MO8UBUKTEQC",
|
|
9082
|
+
* "uid": "222b3ace-c88f-4d9f-948e-f1ed0bcc3430",
|
|
9083
|
+
* "listing_type": "Sale",
|
|
9084
|
+
* "vertical": "Used Item",
|
|
9085
|
+
* "arrangement_type": null,
|
|
9086
|
+
* "arrangement_type_label": null,
|
|
8920
9087
|
* "price": null,
|
|
8921
9088
|
* "state": "draft",
|
|
8922
9089
|
* "published_at": null,
|
|
8923
9090
|
* "published_since": null,
|
|
8924
9091
|
* "is_visible": false,
|
|
8925
|
-
* "summary":
|
|
8926
|
-
* "availability": null
|
|
8927
|
-
* },
|
|
9092
|
+
* "summary": [],
|
|
8928
9093
|
* "workflow": [],
|
|
8929
9094
|
* "media": []
|
|
8930
9095
|
* }
|
|
8931
9096
|
* ]
|
|
8932
9097
|
*/
|
|
8933
9098
|
data?: {
|
|
8934
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
9099
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
8935
9100
|
draft_name?: string;
|
|
8936
|
-
/** @example LST-PRP-LTR-
|
|
9101
|
+
/** @example LST-PRP-LTR-MO8UBUKQQ5T */
|
|
8937
9102
|
sku?: string;
|
|
8938
|
-
/** @example
|
|
9103
|
+
/** @example 4fc5a87b-add2-4aff-9b0c-2558a5e20016 */
|
|
8939
9104
|
uid?: string;
|
|
8940
9105
|
/** @example Rent */
|
|
8941
9106
|
listing_type?: string;
|
|
8942
9107
|
/** @example Property */
|
|
8943
9108
|
vertical?: string;
|
|
8944
|
-
/** @example
|
|
9109
|
+
/** @example standard_residential */
|
|
8945
9110
|
arrangement_type?: string;
|
|
8946
|
-
/** @example
|
|
9111
|
+
/** @example Standard Residential */
|
|
8947
9112
|
arrangement_type_label?: string;
|
|
8948
9113
|
/** @example null */
|
|
8949
9114
|
price?: string | null;
|
|
@@ -9130,11 +9295,11 @@ export interface operations {
|
|
|
9130
9295
|
content: {
|
|
9131
9296
|
"application/json": {
|
|
9132
9297
|
data?: {
|
|
9133
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
9298
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
9134
9299
|
draft_name?: string;
|
|
9135
|
-
/** @example LST-PRP-LTR-
|
|
9300
|
+
/** @example LST-PRP-LTR-MO8UBUNCISK */
|
|
9136
9301
|
sku?: string;
|
|
9137
|
-
/** @example
|
|
9302
|
+
/** @example 1678c9d9-9f84-4bd6-858a-f39519e4e36a */
|
|
9138
9303
|
uid?: string;
|
|
9139
9304
|
/** @example Rent */
|
|
9140
9305
|
listing_type?: string;
|
|
@@ -9197,11 +9362,11 @@ export interface operations {
|
|
|
9197
9362
|
content: {
|
|
9198
9363
|
"application/json": {
|
|
9199
9364
|
data?: {
|
|
9200
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
9365
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
9201
9366
|
draft_name?: string;
|
|
9202
|
-
/** @example LST-PRP-LTR-
|
|
9367
|
+
/** @example LST-PRP-LTR-MO8UBUOHF6E */
|
|
9203
9368
|
sku?: string;
|
|
9204
|
-
/** @example
|
|
9369
|
+
/** @example 0f533411-1fd5-41a7-bddf-5661065abbb9 */
|
|
9205
9370
|
uid?: string;
|
|
9206
9371
|
/** @example Rent */
|
|
9207
9372
|
listing_type?: string;
|
|
@@ -9254,11 +9419,11 @@ export interface operations {
|
|
|
9254
9419
|
content: {
|
|
9255
9420
|
"application/json": {
|
|
9256
9421
|
data?: {
|
|
9257
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
9422
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
9258
9423
|
draft_name?: string;
|
|
9259
|
-
/** @example LST-PRP-LTR-
|
|
9424
|
+
/** @example LST-PRP-LTR-MO8UBUP0UMJ */
|
|
9260
9425
|
sku?: string;
|
|
9261
|
-
/** @example
|
|
9426
|
+
/** @example fad78e3b-0241-4c2b-b280-9caca5ce6c08 */
|
|
9262
9427
|
uid?: string;
|
|
9263
9428
|
/** @example Rent */
|
|
9264
9429
|
listing_type?: string;
|
|
@@ -9311,11 +9476,11 @@ export interface operations {
|
|
|
9311
9476
|
content: {
|
|
9312
9477
|
"application/json": {
|
|
9313
9478
|
data?: {
|
|
9314
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
9479
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
9315
9480
|
draft_name?: string;
|
|
9316
|
-
/** @example LST-PRP-LTR-
|
|
9481
|
+
/** @example LST-PRP-LTR-MO8UBUQ1MRJ */
|
|
9317
9482
|
sku?: string;
|
|
9318
|
-
/** @example
|
|
9483
|
+
/** @example c293c382-e427-4e86-835f-e85f7f0e311a */
|
|
9319
9484
|
uid?: string;
|
|
9320
9485
|
/** @example Rent */
|
|
9321
9486
|
listing_type?: string;
|
|
@@ -9509,7 +9674,7 @@ export interface operations {
|
|
|
9509
9674
|
content: {
|
|
9510
9675
|
"application/json": {
|
|
9511
9676
|
data?: {
|
|
9512
|
-
/** @example
|
|
9677
|
+
/** @example 67 */
|
|
9513
9678
|
id?: number;
|
|
9514
9679
|
/** @example 1 */
|
|
9515
9680
|
category_id?: number;
|
|
@@ -9583,7 +9748,7 @@ export interface operations {
|
|
|
9583
9748
|
content: {
|
|
9584
9749
|
"application/json": {
|
|
9585
9750
|
data?: {
|
|
9586
|
-
/** @example
|
|
9751
|
+
/** @example 68 */
|
|
9587
9752
|
id?: number;
|
|
9588
9753
|
/** @example 1 */
|
|
9589
9754
|
category_id?: number;
|
|
@@ -9622,7 +9787,7 @@ export interface operations {
|
|
|
9622
9787
|
content: {
|
|
9623
9788
|
"application/json": {
|
|
9624
9789
|
data?: {
|
|
9625
|
-
/** @example
|
|
9790
|
+
/** @example 69 */
|
|
9626
9791
|
id?: number;
|
|
9627
9792
|
/** @example 1 */
|
|
9628
9793
|
category_id?: number;
|
|
@@ -9660,7 +9825,7 @@ export interface operations {
|
|
|
9660
9825
|
/**
|
|
9661
9826
|
* @example [
|
|
9662
9827
|
* {
|
|
9663
|
-
* "id":
|
|
9828
|
+
* "id": 55,
|
|
9664
9829
|
* "name": "Exterior",
|
|
9665
9830
|
* "description": "For Exterior categories",
|
|
9666
9831
|
* "display_order": 1,
|
|
@@ -9670,7 +9835,7 @@ export interface operations {
|
|
|
9670
9835
|
* "is_active": true
|
|
9671
9836
|
* },
|
|
9672
9837
|
* {
|
|
9673
|
-
* "id":
|
|
9838
|
+
* "id": 56,
|
|
9674
9839
|
* "name": "Exterior",
|
|
9675
9840
|
* "description": "For Exterior categories",
|
|
9676
9841
|
* "display_order": 1,
|
|
@@ -9682,7 +9847,7 @@ export interface operations {
|
|
|
9682
9847
|
* ]
|
|
9683
9848
|
*/
|
|
9684
9849
|
data?: {
|
|
9685
|
-
/** @example
|
|
9850
|
+
/** @example 55 */
|
|
9686
9851
|
id?: number;
|
|
9687
9852
|
/** @example Exterior */
|
|
9688
9853
|
name?: string;
|
|
@@ -9746,7 +9911,7 @@ export interface operations {
|
|
|
9746
9911
|
content: {
|
|
9747
9912
|
"application/json": {
|
|
9748
9913
|
data?: {
|
|
9749
|
-
/** @example
|
|
9914
|
+
/** @example 57 */
|
|
9750
9915
|
id?: number;
|
|
9751
9916
|
/** @example Exterior */
|
|
9752
9917
|
name?: string;
|
|
@@ -9813,7 +9978,7 @@ export interface operations {
|
|
|
9813
9978
|
content: {
|
|
9814
9979
|
"application/json": {
|
|
9815
9980
|
data?: {
|
|
9816
|
-
/** @example
|
|
9981
|
+
/** @example 58 */
|
|
9817
9982
|
id?: number;
|
|
9818
9983
|
/** @example Exterior */
|
|
9819
9984
|
name?: string;
|
|
@@ -9854,7 +10019,7 @@ export interface operations {
|
|
|
9854
10019
|
content: {
|
|
9855
10020
|
"application/json": {
|
|
9856
10021
|
data?: {
|
|
9857
|
-
/** @example
|
|
10022
|
+
/** @example 59 */
|
|
9858
10023
|
id?: number;
|
|
9859
10024
|
/** @example Exterior */
|
|
9860
10025
|
name?: string;
|
|
@@ -10117,7 +10282,7 @@ export interface operations {
|
|
|
10117
10282
|
content: {
|
|
10118
10283
|
"application/json": {
|
|
10119
10284
|
data?: {
|
|
10120
|
-
/** @example
|
|
10285
|
+
/** @example 32 */
|
|
10121
10286
|
id?: number;
|
|
10122
10287
|
/** @example email_fa_0 */
|
|
10123
10288
|
key?: string;
|
|
@@ -10131,9 +10296,9 @@ export interface operations {
|
|
|
10131
10296
|
metadata_schema?: unknown[];
|
|
10132
10297
|
/** @example true */
|
|
10133
10298
|
is_active?: boolean;
|
|
10134
|
-
/** @example 2026-04-
|
|
10299
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
10135
10300
|
created_at?: string;
|
|
10136
|
-
/** @example 2026-04-
|
|
10301
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
10137
10302
|
updated_at?: string;
|
|
10138
10303
|
};
|
|
10139
10304
|
};
|
|
@@ -10193,7 +10358,7 @@ export interface operations {
|
|
|
10193
10358
|
content: {
|
|
10194
10359
|
"application/json": {
|
|
10195
10360
|
data?: {
|
|
10196
|
-
/** @example
|
|
10361
|
+
/** @example 33 */
|
|
10197
10362
|
id?: number;
|
|
10198
10363
|
/** @example email_fa_0 */
|
|
10199
10364
|
key?: string;
|
|
@@ -10207,9 +10372,9 @@ export interface operations {
|
|
|
10207
10372
|
metadata_schema?: unknown[];
|
|
10208
10373
|
/** @example true */
|
|
10209
10374
|
is_active?: boolean;
|
|
10210
|
-
/** @example 2026-04-
|
|
10375
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
10211
10376
|
created_at?: string;
|
|
10212
|
-
/** @example 2026-04-
|
|
10377
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
10213
10378
|
updated_at?: string;
|
|
10214
10379
|
};
|
|
10215
10380
|
};
|
|
@@ -11566,11 +11731,11 @@ export interface operations {
|
|
|
11566
11731
|
content: {
|
|
11567
11732
|
"application/json": {
|
|
11568
11733
|
data?: {
|
|
11569
|
-
/** @example
|
|
11734
|
+
/** @example quaerat */
|
|
11570
11735
|
key?: string;
|
|
11571
|
-
/** @example
|
|
11736
|
+
/** @example distinctio */
|
|
11572
11737
|
name?: string;
|
|
11573
|
-
/** @example
|
|
11738
|
+
/** @example Doloremque similique eos laboriosam deserunt quaerat modi et. */
|
|
11574
11739
|
description?: string;
|
|
11575
11740
|
/** @example string */
|
|
11576
11741
|
value_type?: string;
|
|
@@ -12118,6 +12283,19 @@ export interface operations {
|
|
|
12118
12283
|
requestBody?: never;
|
|
12119
12284
|
responses: never;
|
|
12120
12285
|
};
|
|
12286
|
+
removeComplianceFromGlobal: {
|
|
12287
|
+
parameters: {
|
|
12288
|
+
query?: never;
|
|
12289
|
+
header?: never;
|
|
12290
|
+
path: {
|
|
12291
|
+
/** @description The ID of the compliance definition to remove from global scope. */
|
|
12292
|
+
compliance_id: number;
|
|
12293
|
+
};
|
|
12294
|
+
cookie?: never;
|
|
12295
|
+
};
|
|
12296
|
+
requestBody?: never;
|
|
12297
|
+
responses: never;
|
|
12298
|
+
};
|
|
12121
12299
|
assignComplianceToCategory: {
|
|
12122
12300
|
parameters: {
|
|
12123
12301
|
query?: never;
|
|
@@ -12133,6 +12311,21 @@ export interface operations {
|
|
|
12133
12311
|
requestBody?: never;
|
|
12134
12312
|
responses: never;
|
|
12135
12313
|
};
|
|
12314
|
+
removeComplianceFromCategory: {
|
|
12315
|
+
parameters: {
|
|
12316
|
+
query?: never;
|
|
12317
|
+
header?: never;
|
|
12318
|
+
path: {
|
|
12319
|
+
/** @description The ID of the compliance definition. */
|
|
12320
|
+
compliance_id: number;
|
|
12321
|
+
/** @description The ID of the listing category. */
|
|
12322
|
+
categoryId: number;
|
|
12323
|
+
};
|
|
12324
|
+
cookie?: never;
|
|
12325
|
+
};
|
|
12326
|
+
requestBody?: never;
|
|
12327
|
+
responses: never;
|
|
12328
|
+
};
|
|
12136
12329
|
assignComplianceToListing: {
|
|
12137
12330
|
parameters: {
|
|
12138
12331
|
query?: never;
|
|
@@ -12148,6 +12341,21 @@ export interface operations {
|
|
|
12148
12341
|
requestBody?: never;
|
|
12149
12342
|
responses: never;
|
|
12150
12343
|
};
|
|
12344
|
+
removeComplianceFromListing: {
|
|
12345
|
+
parameters: {
|
|
12346
|
+
query?: never;
|
|
12347
|
+
header?: never;
|
|
12348
|
+
path: {
|
|
12349
|
+
/** @description The ID of the compliance definition. */
|
|
12350
|
+
compliance_id: number;
|
|
12351
|
+
/** @description The UID of the listing to remove the compliance rule from. */
|
|
12352
|
+
listing_uid: string;
|
|
12353
|
+
};
|
|
12354
|
+
cookie?: never;
|
|
12355
|
+
};
|
|
12356
|
+
requestBody?: never;
|
|
12357
|
+
responses: never;
|
|
12358
|
+
};
|
|
12151
12359
|
assignComplianceToTenancy: {
|
|
12152
12360
|
parameters: {
|
|
12153
12361
|
query?: never;
|
|
@@ -12163,6 +12371,21 @@ export interface operations {
|
|
|
12163
12371
|
requestBody?: never;
|
|
12164
12372
|
responses: never;
|
|
12165
12373
|
};
|
|
12374
|
+
removeComplianceFromTenancy: {
|
|
12375
|
+
parameters: {
|
|
12376
|
+
query?: never;
|
|
12377
|
+
header?: never;
|
|
12378
|
+
path: {
|
|
12379
|
+
/** @description The ID of the compliance definition. */
|
|
12380
|
+
compliance_id: number;
|
|
12381
|
+
/** @description The UID of the tenancy to remove the compliance rule from. */
|
|
12382
|
+
tenancy_uid: string;
|
|
12383
|
+
};
|
|
12384
|
+
cookie?: never;
|
|
12385
|
+
};
|
|
12386
|
+
requestBody?: never;
|
|
12387
|
+
responses: never;
|
|
12388
|
+
};
|
|
12166
12389
|
assignComplianceToListingVertical: {
|
|
12167
12390
|
parameters: {
|
|
12168
12391
|
query?: never;
|
|
@@ -12187,6 +12410,30 @@ export interface operations {
|
|
|
12187
12410
|
};
|
|
12188
12411
|
responses: never;
|
|
12189
12412
|
};
|
|
12413
|
+
removeComplianceFromListingVertical: {
|
|
12414
|
+
parameters: {
|
|
12415
|
+
query?: never;
|
|
12416
|
+
header?: never;
|
|
12417
|
+
path: {
|
|
12418
|
+
/** @description The ID of the compliance definition. */
|
|
12419
|
+
compliance_id: number;
|
|
12420
|
+
};
|
|
12421
|
+
cookie?: never;
|
|
12422
|
+
};
|
|
12423
|
+
requestBody: {
|
|
12424
|
+
content: {
|
|
12425
|
+
"application/json": {
|
|
12426
|
+
/**
|
|
12427
|
+
* @description The listing vertical where this compliance rule should apply.
|
|
12428
|
+
* @example property
|
|
12429
|
+
* @enum {string}
|
|
12430
|
+
*/
|
|
12431
|
+
listing_vertical: "property" | "used_item";
|
|
12432
|
+
};
|
|
12433
|
+
};
|
|
12434
|
+
};
|
|
12435
|
+
responses: never;
|
|
12436
|
+
};
|
|
12190
12437
|
assignComplianceToListingType: {
|
|
12191
12438
|
parameters: {
|
|
12192
12439
|
query?: never;
|
|
@@ -12211,6 +12458,30 @@ export interface operations {
|
|
|
12211
12458
|
};
|
|
12212
12459
|
responses: never;
|
|
12213
12460
|
};
|
|
12461
|
+
removeComplianceFromListingType: {
|
|
12462
|
+
parameters: {
|
|
12463
|
+
query?: never;
|
|
12464
|
+
header?: never;
|
|
12465
|
+
path: {
|
|
12466
|
+
/** @description The ID of the compliance definition. */
|
|
12467
|
+
compliance_id: number;
|
|
12468
|
+
};
|
|
12469
|
+
cookie?: never;
|
|
12470
|
+
};
|
|
12471
|
+
requestBody: {
|
|
12472
|
+
content: {
|
|
12473
|
+
"application/json": {
|
|
12474
|
+
/**
|
|
12475
|
+
* @description The listing type where this compliance rule should apply.
|
|
12476
|
+
* @example rent
|
|
12477
|
+
* @enum {string}
|
|
12478
|
+
*/
|
|
12479
|
+
listing_type: "sale" | "long_term_rent" | "short_let";
|
|
12480
|
+
};
|
|
12481
|
+
};
|
|
12482
|
+
};
|
|
12483
|
+
responses: never;
|
|
12484
|
+
};
|
|
12214
12485
|
assignComplianceToArrangementType: {
|
|
12215
12486
|
parameters: {
|
|
12216
12487
|
query?: never;
|
|
@@ -12235,6 +12506,30 @@ export interface operations {
|
|
|
12235
12506
|
};
|
|
12236
12507
|
responses: never;
|
|
12237
12508
|
};
|
|
12509
|
+
removeComplianceFromArrangementType: {
|
|
12510
|
+
parameters: {
|
|
12511
|
+
query?: never;
|
|
12512
|
+
header?: never;
|
|
12513
|
+
path: {
|
|
12514
|
+
/** @description The ID of the compliance definition. */
|
|
12515
|
+
compliance_id: number;
|
|
12516
|
+
};
|
|
12517
|
+
cookie?: never;
|
|
12518
|
+
};
|
|
12519
|
+
requestBody: {
|
|
12520
|
+
content: {
|
|
12521
|
+
"application/json": {
|
|
12522
|
+
/**
|
|
12523
|
+
* @description The arrangement type where this compliance rule should apply.
|
|
12524
|
+
* @example company_lease
|
|
12525
|
+
* @enum {string}
|
|
12526
|
+
*/
|
|
12527
|
+
arrangement_type: "standard_residential" | "let_to_let" | "company_lease" | "short_term_managed";
|
|
12528
|
+
};
|
|
12529
|
+
};
|
|
12530
|
+
};
|
|
12531
|
+
responses: never;
|
|
12532
|
+
};
|
|
12238
12533
|
listingHistoryInspectionAdmin: {
|
|
12239
12534
|
parameters: {
|
|
12240
12535
|
query?: {
|
|
@@ -12382,13 +12677,13 @@ export interface operations {
|
|
|
12382
12677
|
content: {
|
|
12383
12678
|
"application/json": {
|
|
12384
12679
|
data?: {
|
|
12385
|
-
/** @example
|
|
12680
|
+
/** @example 3c6154e4-3946-49af-90cb-1deda6a925a5 */
|
|
12386
12681
|
uid?: string;
|
|
12387
12682
|
/** @example follow_up */
|
|
12388
12683
|
inspection_type?: string;
|
|
12389
12684
|
/** @example cancelled */
|
|
12390
12685
|
status?: string;
|
|
12391
|
-
/** @example 2026-04-
|
|
12686
|
+
/** @example 2026-04-27T06:29:19.000000Z */
|
|
12392
12687
|
scheduled_date?: string;
|
|
12393
12688
|
/** @example null */
|
|
12394
12689
|
completed_date?: string | null;
|
|
@@ -12396,11 +12691,11 @@ export interface operations {
|
|
|
12396
12691
|
condition_rating?: string;
|
|
12397
12692
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
12398
12693
|
summary?: string;
|
|
12399
|
-
/** @example 2026-06-
|
|
12694
|
+
/** @example 2026-06-20T03:17:53.000000Z */
|
|
12400
12695
|
next_inspection_date?: string;
|
|
12401
|
-
/** @example 2026-04-
|
|
12696
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12402
12697
|
created_at?: string;
|
|
12403
|
-
/** @example 2026-04-
|
|
12698
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12404
12699
|
updated_at?: string;
|
|
12405
12700
|
};
|
|
12406
12701
|
};
|
|
@@ -12443,13 +12738,13 @@ export interface operations {
|
|
|
12443
12738
|
content: {
|
|
12444
12739
|
"application/json": {
|
|
12445
12740
|
data?: {
|
|
12446
|
-
/** @example
|
|
12741
|
+
/** @example 64519cd2-e269-485d-8415-d9fc1497ec76 */
|
|
12447
12742
|
uid?: string;
|
|
12448
12743
|
/** @example follow_up */
|
|
12449
12744
|
inspection_type?: string;
|
|
12450
12745
|
/** @example cancelled */
|
|
12451
12746
|
status?: string;
|
|
12452
|
-
/** @example 2026-04-
|
|
12747
|
+
/** @example 2026-04-15T03:55:52.000000Z */
|
|
12453
12748
|
scheduled_date?: string;
|
|
12454
12749
|
/** @example null */
|
|
12455
12750
|
completed_date?: string | null;
|
|
@@ -12457,11 +12752,11 @@ export interface operations {
|
|
|
12457
12752
|
condition_rating?: string;
|
|
12458
12753
|
/** @example Et animi quos velit et fugiat. */
|
|
12459
12754
|
summary?: string;
|
|
12460
|
-
/** @example 2026-07-
|
|
12755
|
+
/** @example 2026-07-24T11:49:39.000000Z */
|
|
12461
12756
|
next_inspection_date?: string;
|
|
12462
|
-
/** @example 2026-04-
|
|
12757
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12463
12758
|
created_at?: string;
|
|
12464
|
-
/** @example 2026-04-
|
|
12759
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12465
12760
|
updated_at?: string;
|
|
12466
12761
|
};
|
|
12467
12762
|
};
|
|
@@ -12498,13 +12793,13 @@ export interface operations {
|
|
|
12498
12793
|
content: {
|
|
12499
12794
|
"application/json": {
|
|
12500
12795
|
data?: {
|
|
12501
|
-
/** @example
|
|
12796
|
+
/** @example 4411765c-c1af-4895-9646-c6fbe217e0a4 */
|
|
12502
12797
|
uid?: string;
|
|
12503
12798
|
/** @example follow_up */
|
|
12504
12799
|
inspection_type?: string;
|
|
12505
12800
|
/** @example cancelled */
|
|
12506
12801
|
status?: string;
|
|
12507
|
-
/** @example 2026-04-
|
|
12802
|
+
/** @example 2026-04-27T06:29:19.000000Z */
|
|
12508
12803
|
scheduled_date?: string;
|
|
12509
12804
|
/** @example null */
|
|
12510
12805
|
completed_date?: string | null;
|
|
@@ -12512,11 +12807,11 @@ export interface operations {
|
|
|
12512
12807
|
condition_rating?: string;
|
|
12513
12808
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
12514
12809
|
summary?: string;
|
|
12515
|
-
/** @example 2026-06-
|
|
12810
|
+
/** @example 2026-06-20T03:17:53.000000Z */
|
|
12516
12811
|
next_inspection_date?: string;
|
|
12517
|
-
/** @example 2026-04-
|
|
12812
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12518
12813
|
created_at?: string;
|
|
12519
|
-
/** @example 2026-04-
|
|
12814
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12520
12815
|
updated_at?: string;
|
|
12521
12816
|
};
|
|
12522
12817
|
};
|
|
@@ -12553,13 +12848,13 @@ export interface operations {
|
|
|
12553
12848
|
content: {
|
|
12554
12849
|
"application/json": {
|
|
12555
12850
|
data?: {
|
|
12556
|
-
/** @example
|
|
12851
|
+
/** @example b06ae721-ae4d-409b-b7be-f4de3ae42b20 */
|
|
12557
12852
|
uid?: string;
|
|
12558
12853
|
/** @example follow_up */
|
|
12559
12854
|
inspection_type?: string;
|
|
12560
12855
|
/** @example cancelled */
|
|
12561
12856
|
status?: string;
|
|
12562
|
-
/** @example 2026-04-
|
|
12857
|
+
/** @example 2026-04-15T03:55:52.000000Z */
|
|
12563
12858
|
scheduled_date?: string;
|
|
12564
12859
|
/** @example null */
|
|
12565
12860
|
completed_date?: string | null;
|
|
@@ -12567,11 +12862,11 @@ export interface operations {
|
|
|
12567
12862
|
condition_rating?: string;
|
|
12568
12863
|
/** @example Et animi quos velit et fugiat. */
|
|
12569
12864
|
summary?: string;
|
|
12570
|
-
/** @example 2026-07-
|
|
12865
|
+
/** @example 2026-07-24T11:49:39.000000Z */
|
|
12571
12866
|
next_inspection_date?: string;
|
|
12572
|
-
/** @example 2026-04-
|
|
12867
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12573
12868
|
created_at?: string;
|
|
12574
|
-
/** @example 2026-04-
|
|
12869
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12575
12870
|
updated_at?: string;
|
|
12576
12871
|
};
|
|
12577
12872
|
};
|
|
@@ -12608,27 +12903,27 @@ export interface operations {
|
|
|
12608
12903
|
content: {
|
|
12609
12904
|
"application/json": {
|
|
12610
12905
|
data?: {
|
|
12611
|
-
/** @example
|
|
12906
|
+
/** @example 40a0490d-ace4-4d1b-8a3b-24d53f074479 */
|
|
12612
12907
|
uid?: string;
|
|
12613
|
-
/** @example
|
|
12908
|
+
/** @example Qui commodi incidunt iure. */
|
|
12614
12909
|
title?: string;
|
|
12615
|
-
/** @example
|
|
12910
|
+
/** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
|
|
12616
12911
|
description?: string;
|
|
12617
|
-
/** @example
|
|
12912
|
+
/** @example breach */
|
|
12618
12913
|
status?: string;
|
|
12619
|
-
/** @example
|
|
12914
|
+
/** @example low */
|
|
12620
12915
|
priority?: string;
|
|
12621
|
-
/** @example 2026-04-
|
|
12916
|
+
/** @example 2026-04-20T05:59:40.000000Z */
|
|
12622
12917
|
reported_at?: string;
|
|
12623
12918
|
/** @example null */
|
|
12624
12919
|
assigned_at?: string | null;
|
|
12625
12920
|
/** @example null */
|
|
12626
12921
|
completed_at?: string | null;
|
|
12627
|
-
/** @example 2026-04-
|
|
12922
|
+
/** @example 2026-04-23T02:24:06.000000Z */
|
|
12628
12923
|
sla_deadline?: string;
|
|
12629
|
-
/** @example 2026-04-
|
|
12924
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12630
12925
|
created_at?: string;
|
|
12631
|
-
/** @example 2026-04-
|
|
12926
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12632
12927
|
updated_at?: string;
|
|
12633
12928
|
};
|
|
12634
12929
|
};
|
|
@@ -12665,7 +12960,7 @@ export interface operations {
|
|
|
12665
12960
|
content: {
|
|
12666
12961
|
"application/json": {
|
|
12667
12962
|
data?: {
|
|
12668
|
-
/** @example
|
|
12963
|
+
/** @example 3b8a8b23-955a-40c0-a89f-8b316b9fd371 */
|
|
12669
12964
|
uid?: string;
|
|
12670
12965
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
12671
12966
|
title?: string;
|
|
@@ -12675,17 +12970,17 @@ export interface operations {
|
|
|
12675
12970
|
status?: string;
|
|
12676
12971
|
/** @example emergency */
|
|
12677
12972
|
priority?: string;
|
|
12678
|
-
/** @example 2026-04-
|
|
12973
|
+
/** @example 2026-04-15T03:44:32.000000Z */
|
|
12679
12974
|
reported_at?: string;
|
|
12680
|
-
/** @example 2026-04-
|
|
12975
|
+
/** @example 2026-04-20T00:04:24.000000Z */
|
|
12681
12976
|
assigned_at?: string;
|
|
12682
12977
|
/** @example null */
|
|
12683
12978
|
completed_at?: string | null;
|
|
12684
|
-
/** @example 2026-04-
|
|
12979
|
+
/** @example 2026-04-23T05:26:47.000000Z */
|
|
12685
12980
|
sla_deadline?: string;
|
|
12686
|
-
/** @example 2026-04-
|
|
12981
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12687
12982
|
created_at?: string;
|
|
12688
|
-
/** @example 2026-04-
|
|
12983
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12689
12984
|
updated_at?: string;
|
|
12690
12985
|
};
|
|
12691
12986
|
};
|
|
@@ -12722,7 +13017,7 @@ export interface operations {
|
|
|
12722
13017
|
content: {
|
|
12723
13018
|
"application/json": {
|
|
12724
13019
|
data?: {
|
|
12725
|
-
/** @example
|
|
13020
|
+
/** @example 73e9f203-52be-4a0b-823e-0eff9780939e */
|
|
12726
13021
|
uid?: string;
|
|
12727
13022
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
12728
13023
|
title?: string;
|
|
@@ -12732,17 +13027,17 @@ export interface operations {
|
|
|
12732
13027
|
status?: string;
|
|
12733
13028
|
/** @example emergency */
|
|
12734
13029
|
priority?: string;
|
|
12735
|
-
/** @example 2026-04-
|
|
13030
|
+
/** @example 2026-04-15T03:44:32.000000Z */
|
|
12736
13031
|
reported_at?: string;
|
|
12737
|
-
/** @example 2026-04-
|
|
13032
|
+
/** @example 2026-04-20T00:04:24.000000Z */
|
|
12738
13033
|
assigned_at?: string;
|
|
12739
13034
|
/** @example null */
|
|
12740
13035
|
completed_at?: string | null;
|
|
12741
|
-
/** @example 2026-04-
|
|
13036
|
+
/** @example 2026-04-23T05:26:47.000000Z */
|
|
12742
13037
|
sla_deadline?: string;
|
|
12743
|
-
/** @example 2026-04-
|
|
13038
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12744
13039
|
created_at?: string;
|
|
12745
|
-
/** @example 2026-04-
|
|
13040
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12746
13041
|
updated_at?: string;
|
|
12747
13042
|
};
|
|
12748
13043
|
};
|
|
@@ -12779,7 +13074,7 @@ export interface operations {
|
|
|
12779
13074
|
content: {
|
|
12780
13075
|
"application/json": {
|
|
12781
13076
|
data?: {
|
|
12782
|
-
/** @example
|
|
13077
|
+
/** @example 042a7ebc-88da-47d1-8983-97972d5643cc */
|
|
12783
13078
|
uid?: string;
|
|
12784
13079
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
12785
13080
|
title?: string;
|
|
@@ -12789,17 +13084,17 @@ export interface operations {
|
|
|
12789
13084
|
status?: string;
|
|
12790
13085
|
/** @example emergency */
|
|
12791
13086
|
priority?: string;
|
|
12792
|
-
/** @example 2026-04-
|
|
13087
|
+
/** @example 2026-04-15T03:44:32.000000Z */
|
|
12793
13088
|
reported_at?: string;
|
|
12794
|
-
/** @example 2026-04-
|
|
13089
|
+
/** @example 2026-04-20T00:04:24.000000Z */
|
|
12795
13090
|
assigned_at?: string;
|
|
12796
13091
|
/** @example null */
|
|
12797
13092
|
completed_at?: string | null;
|
|
12798
|
-
/** @example 2026-04-
|
|
13093
|
+
/** @example 2026-04-23T05:26:47.000000Z */
|
|
12799
13094
|
sla_deadline?: string;
|
|
12800
|
-
/** @example 2026-04-
|
|
13095
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12801
13096
|
created_at?: string;
|
|
12802
|
-
/** @example 2026-04-
|
|
13097
|
+
/** @example 2026-04-21T16:30:57.000000Z */
|
|
12803
13098
|
updated_at?: string;
|
|
12804
13099
|
};
|
|
12805
13100
|
};
|
|
@@ -13195,19 +13490,19 @@ export interface operations {
|
|
|
13195
13490
|
content: {
|
|
13196
13491
|
"application/json": {
|
|
13197
13492
|
data?: {
|
|
13198
|
-
/** @example
|
|
13493
|
+
/** @example 64 */
|
|
13199
13494
|
id?: number;
|
|
13200
13495
|
/** @example 2 */
|
|
13201
13496
|
listing_id?: number;
|
|
13202
13497
|
/** @example completed */
|
|
13203
13498
|
status?: string;
|
|
13204
13499
|
scheduled?: {
|
|
13205
|
-
/** @example
|
|
13500
|
+
/** @example 1990-09-04T00:00:00.000000Z */
|
|
13206
13501
|
start?: string;
|
|
13207
|
-
/** @example
|
|
13502
|
+
/** @example 1981-06-10T00:00:00.000000Z */
|
|
13208
13503
|
end?: string;
|
|
13209
13504
|
};
|
|
13210
|
-
/** @example 2026-04-
|
|
13505
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
13211
13506
|
created_at?: string;
|
|
13212
13507
|
};
|
|
13213
13508
|
};
|
|
@@ -13234,19 +13529,19 @@ export interface operations {
|
|
|
13234
13529
|
content: {
|
|
13235
13530
|
"application/json": {
|
|
13236
13531
|
data?: {
|
|
13237
|
-
/** @example
|
|
13532
|
+
/** @example 65 */
|
|
13238
13533
|
id?: number;
|
|
13239
13534
|
/** @example 2 */
|
|
13240
13535
|
listing_id?: number;
|
|
13241
13536
|
/** @example completed */
|
|
13242
13537
|
status?: string;
|
|
13243
13538
|
scheduled?: {
|
|
13244
|
-
/** @example 1981-11-
|
|
13539
|
+
/** @example 1981-11-18T00:00:00.000000Z */
|
|
13245
13540
|
start?: string;
|
|
13246
|
-
/** @example 1979-12-
|
|
13541
|
+
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13247
13542
|
end?: string;
|
|
13248
13543
|
};
|
|
13249
|
-
/** @example 2026-04-
|
|
13544
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
13250
13545
|
created_at?: string;
|
|
13251
13546
|
};
|
|
13252
13547
|
};
|
|
@@ -13272,41 +13567,41 @@ export interface operations {
|
|
|
13272
13567
|
/**
|
|
13273
13568
|
* @example [
|
|
13274
13569
|
* {
|
|
13275
|
-
* "id":
|
|
13570
|
+
* "id": 66,
|
|
13276
13571
|
* "listing_id": 2,
|
|
13277
13572
|
* "status": "completed",
|
|
13278
13573
|
* "scheduled": {
|
|
13279
|
-
* "start": "1981-11-
|
|
13280
|
-
* "end": "1979-12-
|
|
13574
|
+
* "start": "1981-11-18T00:00:00.000000Z",
|
|
13575
|
+
* "end": "1979-12-15T00:00:00.000000Z"
|
|
13281
13576
|
* },
|
|
13282
|
-
* "created_at": "2026-04-
|
|
13577
|
+
* "created_at": "2026-04-21T16:30:58.000000Z"
|
|
13283
13578
|
* },
|
|
13284
13579
|
* {
|
|
13285
|
-
* "id":
|
|
13580
|
+
* "id": 67,
|
|
13286
13581
|
* "listing_id": 2,
|
|
13287
13582
|
* "status": "completed",
|
|
13288
13583
|
* "scheduled": {
|
|
13289
13584
|
* "start": "2006-09-19T00:00:00.000000Z",
|
|
13290
13585
|
* "end": "2015-01-19T00:00:00.000000Z"
|
|
13291
13586
|
* },
|
|
13292
|
-
* "created_at": "2026-04-
|
|
13587
|
+
* "created_at": "2026-04-21T16:30:58.000000Z"
|
|
13293
13588
|
* }
|
|
13294
13589
|
* ]
|
|
13295
13590
|
*/
|
|
13296
13591
|
data?: {
|
|
13297
|
-
/** @example
|
|
13592
|
+
/** @example 66 */
|
|
13298
13593
|
id?: number;
|
|
13299
13594
|
/** @example 2 */
|
|
13300
13595
|
listing_id?: number;
|
|
13301
13596
|
/** @example completed */
|
|
13302
13597
|
status?: string;
|
|
13303
13598
|
scheduled?: {
|
|
13304
|
-
/** @example 1981-11-
|
|
13599
|
+
/** @example 1981-11-18T00:00:00.000000Z */
|
|
13305
13600
|
start?: string;
|
|
13306
|
-
/** @example 1979-12-
|
|
13601
|
+
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13307
13602
|
end?: string;
|
|
13308
13603
|
};
|
|
13309
|
-
/** @example 2026-04-
|
|
13604
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
13310
13605
|
created_at?: string;
|
|
13311
13606
|
}[];
|
|
13312
13607
|
links?: {
|
|
@@ -13406,19 +13701,19 @@ export interface operations {
|
|
|
13406
13701
|
content: {
|
|
13407
13702
|
"application/json": {
|
|
13408
13703
|
data?: {
|
|
13409
|
-
/** @example
|
|
13704
|
+
/** @example 68 */
|
|
13410
13705
|
id?: number;
|
|
13411
13706
|
/** @example 2 */
|
|
13412
13707
|
listing_id?: number;
|
|
13413
13708
|
/** @example completed */
|
|
13414
13709
|
status?: string;
|
|
13415
13710
|
scheduled?: {
|
|
13416
|
-
/** @example 1981-11-
|
|
13711
|
+
/** @example 1981-11-18T00:00:00.000000Z */
|
|
13417
13712
|
start?: string;
|
|
13418
|
-
/** @example 1979-12-
|
|
13713
|
+
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13419
13714
|
end?: string;
|
|
13420
13715
|
};
|
|
13421
|
-
/** @example 2026-04-
|
|
13716
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
13422
13717
|
created_at?: string;
|
|
13423
13718
|
};
|
|
13424
13719
|
};
|
|
@@ -13445,19 +13740,19 @@ export interface operations {
|
|
|
13445
13740
|
content: {
|
|
13446
13741
|
"application/json": {
|
|
13447
13742
|
data?: {
|
|
13448
|
-
/** @example
|
|
13743
|
+
/** @example 69 */
|
|
13449
13744
|
id?: number;
|
|
13450
13745
|
/** @example 2 */
|
|
13451
13746
|
listing_id?: number;
|
|
13452
13747
|
/** @example completed */
|
|
13453
13748
|
status?: string;
|
|
13454
13749
|
scheduled?: {
|
|
13455
|
-
/** @example 1981-11-
|
|
13750
|
+
/** @example 1981-11-18T00:00:00.000000Z */
|
|
13456
13751
|
start?: string;
|
|
13457
|
-
/** @example 1979-12-
|
|
13752
|
+
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13458
13753
|
end?: string;
|
|
13459
13754
|
};
|
|
13460
|
-
/** @example 2026-04-
|
|
13755
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
13461
13756
|
created_at?: string;
|
|
13462
13757
|
};
|
|
13463
13758
|
};
|
|
@@ -13484,19 +13779,19 @@ export interface operations {
|
|
|
13484
13779
|
content: {
|
|
13485
13780
|
"application/json": {
|
|
13486
13781
|
data?: {
|
|
13487
|
-
/** @example
|
|
13782
|
+
/** @example 70 */
|
|
13488
13783
|
id?: number;
|
|
13489
13784
|
/** @example 2 */
|
|
13490
13785
|
listing_id?: number;
|
|
13491
13786
|
/** @example completed */
|
|
13492
13787
|
status?: string;
|
|
13493
13788
|
scheduled?: {
|
|
13494
|
-
/** @example 1981-11-
|
|
13789
|
+
/** @example 1981-11-18T00:00:00.000000Z */
|
|
13495
13790
|
start?: string;
|
|
13496
|
-
/** @example 1979-12-
|
|
13791
|
+
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13497
13792
|
end?: string;
|
|
13498
13793
|
};
|
|
13499
|
-
/** @example 2026-04-
|
|
13794
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
13500
13795
|
created_at?: string;
|
|
13501
13796
|
};
|
|
13502
13797
|
};
|
|
@@ -14567,7 +14862,7 @@ export interface operations {
|
|
|
14567
14862
|
content: {
|
|
14568
14863
|
"application/json": {
|
|
14569
14864
|
data?: {
|
|
14570
|
-
/** @example
|
|
14865
|
+
/** @example 0d194118-7a80-4a7f-8740-46a97acf11f6 */
|
|
14571
14866
|
uid?: string;
|
|
14572
14867
|
/** @example Ms. Audra Crooks II */
|
|
14573
14868
|
username?: string;
|
|
@@ -14597,9 +14892,9 @@ export interface operations {
|
|
|
14597
14892
|
timezone?: string;
|
|
14598
14893
|
/** @example Customer */
|
|
14599
14894
|
user_type?: string;
|
|
14600
|
-
/** @example 21 Apr 2026,
|
|
14895
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
14601
14896
|
created?: string;
|
|
14602
|
-
/** @example
|
|
14897
|
+
/** @example 1 second ago */
|
|
14603
14898
|
email_verified_at?: string;
|
|
14604
14899
|
verification_status?: {
|
|
14605
14900
|
/** @example not_verified */
|
|
@@ -15066,7 +15361,7 @@ export interface operations {
|
|
|
15066
15361
|
content: {
|
|
15067
15362
|
"application/json": {
|
|
15068
15363
|
data?: {
|
|
15069
|
-
/** @example
|
|
15364
|
+
/** @example dbc08658-44a5-444b-afe8-7ddc50513821 */
|
|
15070
15365
|
uid?: string;
|
|
15071
15366
|
/** @example Ms. Audra Crooks II */
|
|
15072
15367
|
username?: string;
|
|
@@ -15096,7 +15391,7 @@ export interface operations {
|
|
|
15096
15391
|
timezone?: string;
|
|
15097
15392
|
/** @example Customer */
|
|
15098
15393
|
user_type?: string;
|
|
15099
|
-
/** @example 21 Apr 2026,
|
|
15394
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
15100
15395
|
created?: string;
|
|
15101
15396
|
/** @example 0 seconds ago */
|
|
15102
15397
|
email_verified_at?: string;
|
|
@@ -15217,20 +15512,20 @@ export interface operations {
|
|
|
15217
15512
|
content: {
|
|
15218
15513
|
"application/json": {
|
|
15219
15514
|
data?: {
|
|
15220
|
-
/** @example New For
|
|
15515
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
15221
15516
|
draft_name?: string;
|
|
15222
|
-
/** @example LST-
|
|
15517
|
+
/** @example LST-PRP-LTR-MO8UBU5WOUK */
|
|
15223
15518
|
sku?: string;
|
|
15224
|
-
/** @example
|
|
15519
|
+
/** @example 1820e19d-24ac-4c40-98f9-af1c0687c3f8 */
|
|
15225
15520
|
uid?: string;
|
|
15226
|
-
/** @example
|
|
15521
|
+
/** @example Rent */
|
|
15227
15522
|
listing_type?: string;
|
|
15228
|
-
/** @example
|
|
15523
|
+
/** @example Property */
|
|
15229
15524
|
vertical?: string;
|
|
15230
|
-
/** @example
|
|
15231
|
-
arrangement_type?: string
|
|
15232
|
-
/** @example
|
|
15233
|
-
arrangement_type_label?: string
|
|
15525
|
+
/** @example let_to_let */
|
|
15526
|
+
arrangement_type?: string;
|
|
15527
|
+
/** @example Let to Let */
|
|
15528
|
+
arrangement_type_label?: string;
|
|
15234
15529
|
/** @example null */
|
|
15235
15530
|
price?: string | null;
|
|
15236
15531
|
/** @example draft */
|
|
@@ -15241,8 +15536,10 @@ export interface operations {
|
|
|
15241
15536
|
published_since?: string | null;
|
|
15242
15537
|
/** @example false */
|
|
15243
15538
|
is_visible?: boolean;
|
|
15244
|
-
|
|
15245
|
-
|
|
15539
|
+
summary?: {
|
|
15540
|
+
/** @example null */
|
|
15541
|
+
availability?: string | null;
|
|
15542
|
+
};
|
|
15246
15543
|
/** @example [] */
|
|
15247
15544
|
workflow?: unknown[];
|
|
15248
15545
|
/** @example [] */
|
|
@@ -15343,9 +15640,9 @@ export interface operations {
|
|
|
15343
15640
|
/**
|
|
15344
15641
|
* @example [
|
|
15345
15642
|
* {
|
|
15346
|
-
* "draft_name": "New For Rent Property draft • 21 Apr 2026,
|
|
15347
|
-
* "sku": "LST-PRP-LTR-
|
|
15348
|
-
* "uid": "
|
|
15643
|
+
* "draft_name": "New For Rent Property draft • 21 Apr 2026, 4:30 PM",
|
|
15644
|
+
* "sku": "LST-PRP-LTR-MO8UBU7EIGL",
|
|
15645
|
+
* "uid": "7c893cdc-9251-4944-98f3-8ea83e1787e6",
|
|
15349
15646
|
* "listing_type": "Rent",
|
|
15350
15647
|
* "vertical": "Property",
|
|
15351
15648
|
* "arrangement_type": "let_to_let",
|
|
@@ -15362,9 +15659,9 @@ export interface operations {
|
|
|
15362
15659
|
* "media": []
|
|
15363
15660
|
* },
|
|
15364
15661
|
* {
|
|
15365
|
-
* "draft_name": "New Short Let Property draft • 21 Apr 2026,
|
|
15366
|
-
* "sku": "LST-PRP-SHL-
|
|
15367
|
-
* "uid": "
|
|
15662
|
+
* "draft_name": "New Short Let Property draft • 21 Apr 2026, 4:30 PM",
|
|
15663
|
+
* "sku": "LST-PRP-SHL-MO8UBU7IB6M",
|
|
15664
|
+
* "uid": "73dfc252-8075-48f9-a81d-35b1e585bcf0",
|
|
15368
15665
|
* "listing_type": "Short Let",
|
|
15369
15666
|
* "vertical": "Property",
|
|
15370
15667
|
* "arrangement_type": "short_term_managed",
|
|
@@ -15383,11 +15680,11 @@ export interface operations {
|
|
|
15383
15680
|
* ]
|
|
15384
15681
|
*/
|
|
15385
15682
|
data?: {
|
|
15386
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
15683
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
15387
15684
|
draft_name?: string;
|
|
15388
|
-
/** @example LST-PRP-LTR-
|
|
15685
|
+
/** @example LST-PRP-LTR-MO8UBU7EIGL */
|
|
15389
15686
|
sku?: string;
|
|
15390
|
-
/** @example
|
|
15687
|
+
/** @example 7c893cdc-9251-4944-98f3-8ea83e1787e6 */
|
|
15391
15688
|
uid?: string;
|
|
15392
15689
|
/** @example Rent */
|
|
15393
15690
|
listing_type?: string;
|
|
@@ -15497,9 +15794,9 @@ export interface operations {
|
|
|
15497
15794
|
/**
|
|
15498
15795
|
* @example [
|
|
15499
15796
|
* {
|
|
15500
|
-
* "draft_name": "New For Rent Property draft • 21 Apr 2026,
|
|
15501
|
-
* "sku": "LST-PRP-LTR-
|
|
15502
|
-
* "uid": "
|
|
15797
|
+
* "draft_name": "New For Rent Property draft • 21 Apr 2026, 4:30 PM",
|
|
15798
|
+
* "sku": "LST-PRP-LTR-MO8UBU7RLYB",
|
|
15799
|
+
* "uid": "d06d4898-4309-4287-bb21-1b293acc6432",
|
|
15503
15800
|
* "listing_type": "Rent",
|
|
15504
15801
|
* "vertical": "Property",
|
|
15505
15802
|
* "arrangement_type": "let_to_let",
|
|
@@ -15516,9 +15813,9 @@ export interface operations {
|
|
|
15516
15813
|
* "media": []
|
|
15517
15814
|
* },
|
|
15518
15815
|
* {
|
|
15519
|
-
* "draft_name": "New Short Let Property draft • 21 Apr 2026,
|
|
15520
|
-
* "sku": "LST-PRP-SHL-
|
|
15521
|
-
* "uid": "
|
|
15816
|
+
* "draft_name": "New Short Let Property draft • 21 Apr 2026, 4:30 PM",
|
|
15817
|
+
* "sku": "LST-PRP-SHL-MO8UBU7UFRS",
|
|
15818
|
+
* "uid": "5b6fd51a-c09b-4c9a-946e-3c8b221cc4e4",
|
|
15522
15819
|
* "listing_type": "Short Let",
|
|
15523
15820
|
* "vertical": "Property",
|
|
15524
15821
|
* "arrangement_type": "short_term_managed",
|
|
@@ -15537,11 +15834,11 @@ export interface operations {
|
|
|
15537
15834
|
* ]
|
|
15538
15835
|
*/
|
|
15539
15836
|
data?: {
|
|
15540
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
15837
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
15541
15838
|
draft_name?: string;
|
|
15542
|
-
/** @example LST-PRP-LTR-
|
|
15839
|
+
/** @example LST-PRP-LTR-MO8UBU7RLYB */
|
|
15543
15840
|
sku?: string;
|
|
15544
|
-
/** @example
|
|
15841
|
+
/** @example d06d4898-4309-4287-bb21-1b293acc6432 */
|
|
15545
15842
|
uid?: string;
|
|
15546
15843
|
/** @example Rent */
|
|
15547
15844
|
listing_type?: string;
|
|
@@ -16605,7 +16902,7 @@ export interface operations {
|
|
|
16605
16902
|
content: {
|
|
16606
16903
|
"application/json": {
|
|
16607
16904
|
data?: {
|
|
16608
|
-
/** @example
|
|
16905
|
+
/** @example 8b762bea-1808-461c-928f-cd9783d7f05f */
|
|
16609
16906
|
uid?: string;
|
|
16610
16907
|
/** @example photo */
|
|
16611
16908
|
media_type?: string;
|
|
@@ -16754,11 +17051,11 @@ export interface operations {
|
|
|
16754
17051
|
content: {
|
|
16755
17052
|
"application/json": {
|
|
16756
17053
|
data?: {
|
|
16757
|
-
/** @example New For Rent Property draft • 21 Apr 2026,
|
|
17054
|
+
/** @example New For Rent Property draft • 21 Apr 2026, 4:30 PM */
|
|
16758
17055
|
draft_name?: string;
|
|
16759
|
-
/** @example LST-PRP-LTR-
|
|
17056
|
+
/** @example LST-PRP-LTR-MO8UBUATPFI */
|
|
16760
17057
|
sku?: string;
|
|
16761
|
-
/** @example
|
|
17058
|
+
/** @example 08209e85-2042-4fc5-89a4-3d67d5aee129 */
|
|
16762
17059
|
uid?: string;
|
|
16763
17060
|
/** @example Rent */
|
|
16764
17061
|
listing_type?: string;
|
|
@@ -16918,7 +17215,7 @@ export interface operations {
|
|
|
16918
17215
|
content: {
|
|
16919
17216
|
"application/json": {
|
|
16920
17217
|
data?: {
|
|
16921
|
-
/** @example
|
|
17218
|
+
/** @example 118b50f8-39a0-498c-8ef8-78dd13142c6c */
|
|
16922
17219
|
uid?: string;
|
|
16923
17220
|
/** @example null */
|
|
16924
17221
|
compliances?: string | null;
|
|
@@ -16969,7 +17266,7 @@ export interface operations {
|
|
|
16969
17266
|
content: {
|
|
16970
17267
|
"application/json": {
|
|
16971
17268
|
data?: {
|
|
16972
|
-
/** @example
|
|
17269
|
+
/** @example 93 */
|
|
16973
17270
|
id?: number;
|
|
16974
17271
|
compliance?: {
|
|
16975
17272
|
/** @example 1 */
|
|
@@ -16991,7 +17288,7 @@ export interface operations {
|
|
|
16991
17288
|
reviewed_by?: number;
|
|
16992
17289
|
/** @example null */
|
|
16993
17290
|
reviewed_at?: string | null;
|
|
16994
|
-
/** @example 2026-04-
|
|
17291
|
+
/** @example 2026-04-21T16:30:56.000000Z */
|
|
16995
17292
|
created_at?: string;
|
|
16996
17293
|
};
|
|
16997
17294
|
};
|
|
@@ -17046,7 +17343,7 @@ export interface operations {
|
|
|
17046
17343
|
/**
|
|
17047
17344
|
* @example [
|
|
17048
17345
|
* {
|
|
17049
|
-
* "uid": "
|
|
17346
|
+
* "uid": "acd75d42-0b9f-4822-8e6b-ecd1f895437e",
|
|
17050
17347
|
* "listing_id": 1,
|
|
17051
17348
|
* "landlord_id": 2,
|
|
17052
17349
|
* "tenant_id": 2,
|
|
@@ -17058,27 +17355,27 @@ export interface operations {
|
|
|
17058
17355
|
* "is_periodic": false,
|
|
17059
17356
|
* "company_name": null,
|
|
17060
17357
|
* "company_registration_number": null,
|
|
17061
|
-
* "created_at": "2026-04-
|
|
17358
|
+
* "created_at": "2026-04-21T16:30:56.000000Z"
|
|
17062
17359
|
* },
|
|
17063
17360
|
* {
|
|
17064
|
-
* "uid": "
|
|
17361
|
+
* "uid": "ec2539fd-a79d-456b-9d47-e7184540d781",
|
|
17065
17362
|
* "listing_id": 1,
|
|
17066
17363
|
* "landlord_id": 2,
|
|
17067
17364
|
* "tenant_id": 2,
|
|
17068
17365
|
* "rent_amount": "3832.26",
|
|
17069
17366
|
* "deposit_amount": "1384.27",
|
|
17070
17367
|
* "state": "terminated",
|
|
17071
|
-
* "start_date": "2025-09-
|
|
17072
|
-
* "end_date": "2026-09-
|
|
17368
|
+
* "start_date": "2025-09-22T00:00:00.000000Z",
|
|
17369
|
+
* "end_date": "2026-09-22T00:00:00.000000Z",
|
|
17073
17370
|
* "is_periodic": false,
|
|
17074
17371
|
* "company_name": null,
|
|
17075
17372
|
* "company_registration_number": null,
|
|
17076
|
-
* "created_at": "2026-04-
|
|
17373
|
+
* "created_at": "2026-04-21T16:30:56.000000Z"
|
|
17077
17374
|
* }
|
|
17078
17375
|
* ]
|
|
17079
17376
|
*/
|
|
17080
17377
|
data?: {
|
|
17081
|
-
/** @example
|
|
17378
|
+
/** @example acd75d42-0b9f-4822-8e6b-ecd1f895437e */
|
|
17082
17379
|
uid?: string;
|
|
17083
17380
|
/** @example 1 */
|
|
17084
17381
|
listing_id?: number;
|
|
@@ -17102,7 +17399,7 @@ export interface operations {
|
|
|
17102
17399
|
company_name?: string | null;
|
|
17103
17400
|
/** @example null */
|
|
17104
17401
|
company_registration_number?: string | null;
|
|
17105
|
-
/** @example 2026-04-
|
|
17402
|
+
/** @example 2026-04-21T16:30:56.000000Z */
|
|
17106
17403
|
created_at?: string;
|
|
17107
17404
|
}[];
|
|
17108
17405
|
links?: {
|
|
@@ -17189,7 +17486,7 @@ export interface operations {
|
|
|
17189
17486
|
/**
|
|
17190
17487
|
* @example [
|
|
17191
17488
|
* {
|
|
17192
|
-
* "uid": "
|
|
17489
|
+
* "uid": "e41cd8f0-fb58-4246-bf3b-f33fbd05c629",
|
|
17193
17490
|
* "listing_id": 1,
|
|
17194
17491
|
* "landlord_id": 2,
|
|
17195
17492
|
* "tenant_id": 2,
|
|
@@ -17201,27 +17498,27 @@ export interface operations {
|
|
|
17201
17498
|
* "is_periodic": false,
|
|
17202
17499
|
* "company_name": null,
|
|
17203
17500
|
* "company_registration_number": null,
|
|
17204
|
-
* "created_at": "2026-04-
|
|
17501
|
+
* "created_at": "2026-04-21T16:30:56.000000Z"
|
|
17205
17502
|
* },
|
|
17206
17503
|
* {
|
|
17207
|
-
* "uid": "
|
|
17504
|
+
* "uid": "853f48e7-9151-496b-ab78-ca8ae53a73e2",
|
|
17208
17505
|
* "listing_id": 1,
|
|
17209
17506
|
* "landlord_id": 2,
|
|
17210
17507
|
* "tenant_id": 2,
|
|
17211
17508
|
* "rent_amount": "3832.26",
|
|
17212
17509
|
* "deposit_amount": "1384.27",
|
|
17213
17510
|
* "state": "terminated",
|
|
17214
|
-
* "start_date": "2025-09-
|
|
17215
|
-
* "end_date": "2026-09-
|
|
17511
|
+
* "start_date": "2025-09-22T00:00:00.000000Z",
|
|
17512
|
+
* "end_date": "2026-09-22T00:00:00.000000Z",
|
|
17216
17513
|
* "is_periodic": false,
|
|
17217
17514
|
* "company_name": null,
|
|
17218
17515
|
* "company_registration_number": null,
|
|
17219
|
-
* "created_at": "2026-04-
|
|
17516
|
+
* "created_at": "2026-04-21T16:30:56.000000Z"
|
|
17220
17517
|
* }
|
|
17221
17518
|
* ]
|
|
17222
17519
|
*/
|
|
17223
17520
|
data?: {
|
|
17224
|
-
/** @example
|
|
17521
|
+
/** @example e41cd8f0-fb58-4246-bf3b-f33fbd05c629 */
|
|
17225
17522
|
uid?: string;
|
|
17226
17523
|
/** @example 1 */
|
|
17227
17524
|
listing_id?: number;
|
|
@@ -17245,7 +17542,7 @@ export interface operations {
|
|
|
17245
17542
|
company_name?: string | null;
|
|
17246
17543
|
/** @example null */
|
|
17247
17544
|
company_registration_number?: string | null;
|
|
17248
|
-
/** @example 2026-04-
|
|
17545
|
+
/** @example 2026-04-21T16:30:56.000000Z */
|
|
17249
17546
|
created_at?: string;
|
|
17250
17547
|
}[];
|
|
17251
17548
|
links?: {
|
|
@@ -17352,7 +17649,7 @@ export interface operations {
|
|
|
17352
17649
|
content: {
|
|
17353
17650
|
"application/json": {
|
|
17354
17651
|
data?: {
|
|
17355
|
-
/** @example
|
|
17652
|
+
/** @example 105 */
|
|
17356
17653
|
id?: number;
|
|
17357
17654
|
compliance?: {
|
|
17358
17655
|
/** @example 1 */
|
|
@@ -17372,9 +17669,9 @@ export interface operations {
|
|
|
17372
17669
|
rejection_reason?: string | null;
|
|
17373
17670
|
/** @example 1 */
|
|
17374
17671
|
reviewed_by?: number;
|
|
17375
|
-
/** @example 2026-04-
|
|
17672
|
+
/** @example 2026-04-21T16:30:56.000000Z */
|
|
17376
17673
|
reviewed_at?: string;
|
|
17377
|
-
/** @example 2026-04-
|
|
17674
|
+
/** @example 2026-04-21T16:30:56.000000Z */
|
|
17378
17675
|
created_at?: string;
|
|
17379
17676
|
};
|
|
17380
17677
|
};
|
|
@@ -17401,7 +17698,7 @@ export interface operations {
|
|
|
17401
17698
|
content: {
|
|
17402
17699
|
"application/json": {
|
|
17403
17700
|
data?: {
|
|
17404
|
-
/** @example
|
|
17701
|
+
/** @example 106 */
|
|
17405
17702
|
id?: number;
|
|
17406
17703
|
compliance?: {
|
|
17407
17704
|
/** @example 1 */
|
|
@@ -17421,9 +17718,9 @@ export interface operations {
|
|
|
17421
17718
|
rejection_reason?: string | null;
|
|
17422
17719
|
/** @example 1 */
|
|
17423
17720
|
reviewed_by?: number;
|
|
17424
|
-
/** @example 2026-04-
|
|
17721
|
+
/** @example 2026-04-21T16:30:56.000000Z */
|
|
17425
17722
|
reviewed_at?: string;
|
|
17426
|
-
/** @example 2026-04-
|
|
17723
|
+
/** @example 2026-04-21T16:30:56.000000Z */
|
|
17427
17724
|
created_at?: string;
|
|
17428
17725
|
};
|
|
17429
17726
|
};
|
|
@@ -18445,35 +18742,35 @@ export interface operations {
|
|
|
18445
18742
|
/**
|
|
18446
18743
|
* @example [
|
|
18447
18744
|
* {
|
|
18448
|
-
* "uid": "
|
|
18745
|
+
* "uid": "b2a60143-a3d3-4c14-a044-a353883f912d",
|
|
18449
18746
|
* "title": "Quos velit et fugiat sunt nihil.",
|
|
18450
18747
|
* "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.",
|
|
18451
18748
|
* "status": "reported",
|
|
18452
18749
|
* "priority": "emergency",
|
|
18453
|
-
* "reported_at": "2026-04-
|
|
18454
|
-
* "assigned_at": "2026-04-
|
|
18750
|
+
* "reported_at": "2026-04-15T03:44:33.000000Z",
|
|
18751
|
+
* "assigned_at": "2026-04-20T00:04:25.000000Z",
|
|
18455
18752
|
* "completed_at": null,
|
|
18456
|
-
* "sla_deadline": "2026-04-
|
|
18457
|
-
* "created_at": "2026-04-
|
|
18458
|
-
* "updated_at": "2026-04-
|
|
18753
|
+
* "sla_deadline": "2026-04-23T05:26:48.000000Z",
|
|
18754
|
+
* "created_at": "2026-04-21T16:30:58.000000Z",
|
|
18755
|
+
* "updated_at": "2026-04-21T16:30:58.000000Z"
|
|
18459
18756
|
* },
|
|
18460
18757
|
* {
|
|
18461
|
-
* "uid": "
|
|
18758
|
+
* "uid": "0bfb3eb5-c7f2-4bc0-89fa-0ffe387a4a4d",
|
|
18462
18759
|
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
18463
18760
|
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
18464
18761
|
* "status": "completed",
|
|
18465
18762
|
* "priority": "normal",
|
|
18466
|
-
* "reported_at": "2026-04-
|
|
18763
|
+
* "reported_at": "2026-04-17T16:22:58.000000Z",
|
|
18467
18764
|
* "assigned_at": null,
|
|
18468
18765
|
* "completed_at": null,
|
|
18469
|
-
* "sla_deadline": "2026-04-
|
|
18470
|
-
* "created_at": "2026-04-
|
|
18471
|
-
* "updated_at": "2026-04-
|
|
18766
|
+
* "sla_deadline": "2026-04-24T13:26:45.000000Z",
|
|
18767
|
+
* "created_at": "2026-04-21T16:30:58.000000Z",
|
|
18768
|
+
* "updated_at": "2026-04-21T16:30:58.000000Z"
|
|
18472
18769
|
* }
|
|
18473
18770
|
* ]
|
|
18474
18771
|
*/
|
|
18475
18772
|
data?: {
|
|
18476
|
-
/** @example
|
|
18773
|
+
/** @example b2a60143-a3d3-4c14-a044-a353883f912d */
|
|
18477
18774
|
uid?: string;
|
|
18478
18775
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
18479
18776
|
title?: string;
|
|
@@ -18483,17 +18780,17 @@ export interface operations {
|
|
|
18483
18780
|
status?: string;
|
|
18484
18781
|
/** @example emergency */
|
|
18485
18782
|
priority?: string;
|
|
18486
|
-
/** @example 2026-04-
|
|
18783
|
+
/** @example 2026-04-15T03:44:33.000000Z */
|
|
18487
18784
|
reported_at?: string;
|
|
18488
|
-
/** @example 2026-04-
|
|
18785
|
+
/** @example 2026-04-20T00:04:25.000000Z */
|
|
18489
18786
|
assigned_at?: string;
|
|
18490
18787
|
/** @example null */
|
|
18491
18788
|
completed_at?: string | null;
|
|
18492
|
-
/** @example 2026-04-
|
|
18789
|
+
/** @example 2026-04-23T05:26:48.000000Z */
|
|
18493
18790
|
sla_deadline?: string;
|
|
18494
|
-
/** @example 2026-04-
|
|
18791
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
18495
18792
|
created_at?: string;
|
|
18496
|
-
/** @example 2026-04-
|
|
18793
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
18497
18794
|
updated_at?: string;
|
|
18498
18795
|
}[];
|
|
18499
18796
|
links?: {
|
|
@@ -18588,13 +18885,13 @@ export interface operations {
|
|
|
18588
18885
|
content: {
|
|
18589
18886
|
"application/json": {
|
|
18590
18887
|
data?: {
|
|
18591
|
-
/** @example
|
|
18888
|
+
/** @example aa3087e4-3306-4c8c-9ddf-89c9e1c2252c */
|
|
18592
18889
|
uid?: string;
|
|
18593
18890
|
/** @example image */
|
|
18594
18891
|
file_type?: string;
|
|
18595
18892
|
/** @example /storage/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
18596
18893
|
url?: string;
|
|
18597
|
-
/** @example 2026-04-
|
|
18894
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
18598
18895
|
created_at?: string;
|
|
18599
18896
|
};
|
|
18600
18897
|
};
|
|
@@ -18639,7 +18936,7 @@ export interface operations {
|
|
|
18639
18936
|
content: {
|
|
18640
18937
|
"application/json": {
|
|
18641
18938
|
data?: {
|
|
18642
|
-
/** @example
|
|
18939
|
+
/** @example 28 */
|
|
18643
18940
|
id?: number;
|
|
18644
18941
|
/** @example property_inquiry */
|
|
18645
18942
|
type?: string;
|
|
@@ -18647,7 +18944,7 @@ export interface operations {
|
|
|
18647
18944
|
listing_id?: number;
|
|
18648
18945
|
/** @example null */
|
|
18649
18946
|
last_message_at?: string | null;
|
|
18650
|
-
/** @example 2026-04-
|
|
18947
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
18651
18948
|
created_at?: string;
|
|
18652
18949
|
};
|
|
18653
18950
|
};
|
|
@@ -18673,23 +18970,23 @@ export interface operations {
|
|
|
18673
18970
|
/**
|
|
18674
18971
|
* @example [
|
|
18675
18972
|
* {
|
|
18676
|
-
* "id":
|
|
18973
|
+
* "id": 29,
|
|
18677
18974
|
* "type": "property_inquiry",
|
|
18678
18975
|
* "listing_id": 2,
|
|
18679
18976
|
* "last_message_at": null,
|
|
18680
|
-
* "created_at": "2026-04-
|
|
18977
|
+
* "created_at": "2026-04-21T16:30:58.000000Z"
|
|
18681
18978
|
* },
|
|
18682
18979
|
* {
|
|
18683
|
-
* "id":
|
|
18980
|
+
* "id": 30,
|
|
18684
18981
|
* "type": "property_inquiry",
|
|
18685
18982
|
* "listing_id": 2,
|
|
18686
18983
|
* "last_message_at": null,
|
|
18687
|
-
* "created_at": "2026-04-
|
|
18984
|
+
* "created_at": "2026-04-21T16:30:58.000000Z"
|
|
18688
18985
|
* }
|
|
18689
18986
|
* ]
|
|
18690
18987
|
*/
|
|
18691
18988
|
data?: {
|
|
18692
|
-
/** @example
|
|
18989
|
+
/** @example 29 */
|
|
18693
18990
|
id?: number;
|
|
18694
18991
|
/** @example property_inquiry */
|
|
18695
18992
|
type?: string;
|
|
@@ -18697,7 +18994,7 @@ export interface operations {
|
|
|
18697
18994
|
listing_id?: number;
|
|
18698
18995
|
/** @example null */
|
|
18699
18996
|
last_message_at?: string | null;
|
|
18700
|
-
/** @example 2026-04-
|
|
18997
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
18701
18998
|
created_at?: string;
|
|
18702
18999
|
}[];
|
|
18703
19000
|
links?: {
|
|
@@ -19015,27 +19312,27 @@ export interface operations {
|
|
|
19015
19312
|
/**
|
|
19016
19313
|
* @example [
|
|
19017
19314
|
* {
|
|
19018
|
-
* "id": "
|
|
19315
|
+
* "id": "ba8d617e-c5fb-4e16-8b0f-f4ac39617d8f",
|
|
19019
19316
|
* "type": "APPOINTMENT_CREATED",
|
|
19020
19317
|
* "title": "faker notification",
|
|
19021
19318
|
* "body": "faker notification body",
|
|
19022
19319
|
* "data": [],
|
|
19023
19320
|
* "read_at": null,
|
|
19024
|
-
* "created_at": "2026-04-
|
|
19321
|
+
* "created_at": "2026-04-21T16:30:58.000000Z"
|
|
19025
19322
|
* },
|
|
19026
19323
|
* {
|
|
19027
|
-
* "id": "
|
|
19324
|
+
* "id": "2acc2ea7-ad9d-43e8-bfec-ccabc4eff7f8",
|
|
19028
19325
|
* "type": "APPOINTMENT_CREATED",
|
|
19029
19326
|
* "title": "faker notification",
|
|
19030
19327
|
* "body": "faker notification body",
|
|
19031
19328
|
* "data": [],
|
|
19032
19329
|
* "read_at": null,
|
|
19033
|
-
* "created_at": "2026-04-
|
|
19330
|
+
* "created_at": "2026-04-21T16:30:58.000000Z"
|
|
19034
19331
|
* }
|
|
19035
19332
|
* ]
|
|
19036
19333
|
*/
|
|
19037
19334
|
data?: {
|
|
19038
|
-
/** @example
|
|
19335
|
+
/** @example ba8d617e-c5fb-4e16-8b0f-f4ac39617d8f */
|
|
19039
19336
|
id?: string;
|
|
19040
19337
|
/** @example APPOINTMENT_CREATED */
|
|
19041
19338
|
type?: string;
|
|
@@ -19047,7 +19344,7 @@ export interface operations {
|
|
|
19047
19344
|
data?: unknown[];
|
|
19048
19345
|
/** @example null */
|
|
19049
19346
|
read_at?: string | null;
|
|
19050
|
-
/** @example 2026-04-
|
|
19347
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
19051
19348
|
created_at?: string;
|
|
19052
19349
|
}[];
|
|
19053
19350
|
links?: {
|
|
@@ -19131,7 +19428,7 @@ export interface operations {
|
|
|
19131
19428
|
};
|
|
19132
19429
|
content: {
|
|
19133
19430
|
"application/json": {
|
|
19134
|
-
/** @example
|
|
19431
|
+
/** @example f7d1d93a-f722-40dd-b2b4-81f4b7cf4205 */
|
|
19135
19432
|
id?: string;
|
|
19136
19433
|
/** @example APPOINTMENT_CREATED */
|
|
19137
19434
|
type?: string;
|
|
@@ -19143,7 +19440,7 @@ export interface operations {
|
|
|
19143
19440
|
data?: unknown[];
|
|
19144
19441
|
/** @example null */
|
|
19145
19442
|
read_at?: string | null;
|
|
19146
|
-
/** @example 2026-04-
|
|
19443
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
19147
19444
|
created_at?: string;
|
|
19148
19445
|
};
|
|
19149
19446
|
};
|
|
@@ -19390,45 +19687,45 @@ export interface operations {
|
|
|
19390
19687
|
/**
|
|
19391
19688
|
* @example [
|
|
19392
19689
|
* {
|
|
19393
|
-
* "id":
|
|
19690
|
+
* "id": 55,
|
|
19394
19691
|
* "rating": 1,
|
|
19395
19692
|
* "comment": "Nice Listing",
|
|
19396
19693
|
* "reviewer": {
|
|
19397
|
-
* "id":
|
|
19398
|
-
* "name": "
|
|
19694
|
+
* "id": 21,
|
|
19695
|
+
* "name": "Isla Simpson"
|
|
19399
19696
|
* },
|
|
19400
|
-
* "created_at": "2026-04-
|
|
19401
|
-
* "updated_at": "2026-04-
|
|
19697
|
+
* "created_at": "2026-04-21T16:30:57+00:00",
|
|
19698
|
+
* "updated_at": "2026-04-21T16:30:57+00:00"
|
|
19402
19699
|
* },
|
|
19403
19700
|
* {
|
|
19404
|
-
* "id":
|
|
19701
|
+
* "id": 56,
|
|
19405
19702
|
* "rating": 1,
|
|
19406
19703
|
* "comment": "Nice Listing",
|
|
19407
19704
|
* "reviewer": {
|
|
19408
|
-
* "id":
|
|
19409
|
-
* "name": "
|
|
19705
|
+
* "id": 24,
|
|
19706
|
+
* "name": "Ethan Green"
|
|
19410
19707
|
* },
|
|
19411
|
-
* "created_at": "2026-04-
|
|
19412
|
-
* "updated_at": "2026-04-
|
|
19708
|
+
* "created_at": "2026-04-21T16:30:57+00:00",
|
|
19709
|
+
* "updated_at": "2026-04-21T16:30:57+00:00"
|
|
19413
19710
|
* }
|
|
19414
19711
|
* ]
|
|
19415
19712
|
*/
|
|
19416
19713
|
data?: {
|
|
19417
|
-
/** @example
|
|
19714
|
+
/** @example 55 */
|
|
19418
19715
|
id?: number;
|
|
19419
19716
|
/** @example 1 */
|
|
19420
19717
|
rating?: number;
|
|
19421
19718
|
/** @example Nice Listing */
|
|
19422
19719
|
comment?: string;
|
|
19423
19720
|
reviewer?: {
|
|
19424
|
-
/** @example
|
|
19721
|
+
/** @example 21 */
|
|
19425
19722
|
id?: number;
|
|
19426
|
-
/** @example
|
|
19723
|
+
/** @example Isla Simpson */
|
|
19427
19724
|
name?: string;
|
|
19428
19725
|
};
|
|
19429
|
-
/** @example 2026-04-
|
|
19726
|
+
/** @example 2026-04-21T16:30:57+00:00 */
|
|
19430
19727
|
created_at?: string;
|
|
19431
|
-
/** @example 2026-04-
|
|
19728
|
+
/** @example 2026-04-21T16:30:57+00:00 */
|
|
19432
19729
|
updated_at?: string;
|
|
19433
19730
|
}[];
|
|
19434
19731
|
links?: {
|
|
@@ -19582,7 +19879,7 @@ export interface operations {
|
|
|
19582
19879
|
content: {
|
|
19583
19880
|
"application/json": {
|
|
19584
19881
|
data?: {
|
|
19585
|
-
/** @example
|
|
19882
|
+
/** @example 57 */
|
|
19586
19883
|
id?: number;
|
|
19587
19884
|
/** @example 1 */
|
|
19588
19885
|
rating?: number;
|
|
@@ -19594,9 +19891,9 @@ export interface operations {
|
|
|
19594
19891
|
/** @example dogunfx */
|
|
19595
19892
|
name?: string;
|
|
19596
19893
|
};
|
|
19597
|
-
/** @example 2026-04-
|
|
19894
|
+
/** @example 2026-04-21T16:30:58+00:00 */
|
|
19598
19895
|
created_at?: string;
|
|
19599
|
-
/** @example 2026-04-
|
|
19896
|
+
/** @example 2026-04-21T16:30:58+00:00 */
|
|
19600
19897
|
updated_at?: string;
|
|
19601
19898
|
};
|
|
19602
19899
|
};
|
|
@@ -19640,21 +19937,21 @@ export interface operations {
|
|
|
19640
19937
|
content: {
|
|
19641
19938
|
"application/json": {
|
|
19642
19939
|
data?: {
|
|
19643
|
-
/** @example
|
|
19940
|
+
/** @example 58 */
|
|
19644
19941
|
id?: number;
|
|
19645
19942
|
/** @example 1 */
|
|
19646
19943
|
rating?: number;
|
|
19647
19944
|
/** @example Nice Listing */
|
|
19648
19945
|
comment?: string;
|
|
19649
19946
|
reviewer?: {
|
|
19650
|
-
/** @example
|
|
19947
|
+
/** @example 6 */
|
|
19651
19948
|
id?: number;
|
|
19652
|
-
/** @example
|
|
19949
|
+
/** @example Rowena Patel */
|
|
19653
19950
|
name?: string;
|
|
19654
19951
|
};
|
|
19655
|
-
/** @example 2026-04-
|
|
19952
|
+
/** @example 2026-04-21T16:30:58+00:00 */
|
|
19656
19953
|
created_at?: string;
|
|
19657
|
-
/** @example 2026-04-
|
|
19954
|
+
/** @example 2026-04-21T16:30:58+00:00 */
|
|
19658
19955
|
updated_at?: string;
|
|
19659
19956
|
};
|
|
19660
19957
|
};
|
|
@@ -19696,21 +19993,21 @@ export interface operations {
|
|
|
19696
19993
|
content: {
|
|
19697
19994
|
"application/json": {
|
|
19698
19995
|
data?: {
|
|
19699
|
-
/** @example
|
|
19996
|
+
/** @example 59 */
|
|
19700
19997
|
id?: number;
|
|
19701
19998
|
/** @example 1 */
|
|
19702
19999
|
rating?: number;
|
|
19703
20000
|
/** @example Nice Listing */
|
|
19704
20001
|
comment?: string;
|
|
19705
20002
|
reviewer?: {
|
|
19706
|
-
/** @example
|
|
20003
|
+
/** @example 9 */
|
|
19707
20004
|
id?: number;
|
|
19708
|
-
/** @example
|
|
20005
|
+
/** @example Dominic Thomas */
|
|
19709
20006
|
name?: string;
|
|
19710
20007
|
};
|
|
19711
|
-
/** @example 2026-04-
|
|
20008
|
+
/** @example 2026-04-21T16:30:58+00:00 */
|
|
19712
20009
|
created_at?: string;
|
|
19713
|
-
/** @example 2026-04-
|
|
20010
|
+
/** @example 2026-04-21T16:30:58+00:00 */
|
|
19714
20011
|
updated_at?: string;
|
|
19715
20012
|
};
|
|
19716
20013
|
};
|
|
@@ -19737,21 +20034,21 @@ export interface operations {
|
|
|
19737
20034
|
content: {
|
|
19738
20035
|
"application/json": {
|
|
19739
20036
|
data?: {
|
|
19740
|
-
/** @example
|
|
20037
|
+
/** @example 60 */
|
|
19741
20038
|
id?: number;
|
|
19742
20039
|
/** @example 1 */
|
|
19743
20040
|
rating?: number;
|
|
19744
20041
|
/** @example Nice Listing */
|
|
19745
20042
|
comment?: string;
|
|
19746
20043
|
reviewer?: {
|
|
19747
|
-
/** @example
|
|
20044
|
+
/** @example 23 */
|
|
19748
20045
|
id?: number;
|
|
19749
|
-
/** @example
|
|
20046
|
+
/** @example Anthony Baker */
|
|
19750
20047
|
name?: string;
|
|
19751
20048
|
};
|
|
19752
|
-
/** @example 2026-04-
|
|
20049
|
+
/** @example 2026-04-21T16:30:58+00:00 */
|
|
19753
20050
|
created_at?: string;
|
|
19754
|
-
/** @example 2026-04-
|
|
20051
|
+
/** @example 2026-04-21T16:30:58+00:00 */
|
|
19755
20052
|
updated_at?: string;
|
|
19756
20053
|
};
|
|
19757
20054
|
};
|
|
@@ -19778,7 +20075,7 @@ export interface operations {
|
|
|
19778
20075
|
content: {
|
|
19779
20076
|
"application/json": {
|
|
19780
20077
|
data?: {
|
|
19781
|
-
/** @example
|
|
20078
|
+
/** @example afe5fde0-308d-48fd-9090-a74df12b3f5d */
|
|
19782
20079
|
uid?: string;
|
|
19783
20080
|
/** @example 1 */
|
|
19784
20081
|
listing_id?: number;
|
|
@@ -19786,15 +20083,15 @@ export interface operations {
|
|
|
19786
20083
|
landlord_id?: number;
|
|
19787
20084
|
/** @example 2 */
|
|
19788
20085
|
tenant_id?: number;
|
|
19789
|
-
/** @example
|
|
20086
|
+
/** @example 4758.26 */
|
|
19790
20087
|
rent_amount?: string;
|
|
19791
|
-
/** @example
|
|
20088
|
+
/** @example 3662.48 */
|
|
19792
20089
|
deposit_amount?: string;
|
|
19793
|
-
/** @example
|
|
20090
|
+
/** @example offer_pending */
|
|
19794
20091
|
state?: string;
|
|
19795
|
-
/** @example 2025-
|
|
20092
|
+
/** @example 2025-05-22T00:00:00.000000Z */
|
|
19796
20093
|
start_date?: string;
|
|
19797
|
-
/** @example 2026-
|
|
20094
|
+
/** @example 2026-05-22T00:00:00.000000Z */
|
|
19798
20095
|
end_date?: string;
|
|
19799
20096
|
/** @example false */
|
|
19800
20097
|
is_periodic?: boolean;
|
|
@@ -19802,7 +20099,7 @@ export interface operations {
|
|
|
19802
20099
|
company_name?: string | null;
|
|
19803
20100
|
/** @example null */
|
|
19804
20101
|
company_registration_number?: string | null;
|
|
19805
|
-
/** @example 2026-04-
|
|
20102
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
19806
20103
|
created_at?: string;
|
|
19807
20104
|
/** @example [] */
|
|
19808
20105
|
compliances?: unknown[];
|
|
@@ -19879,7 +20176,7 @@ export interface operations {
|
|
|
19879
20176
|
content: {
|
|
19880
20177
|
"application/json": {
|
|
19881
20178
|
data?: {
|
|
19882
|
-
/** @example
|
|
20179
|
+
/** @example 665d06a2-a60c-4fc4-9251-8eb1efcf94bb */
|
|
19883
20180
|
uid?: string;
|
|
19884
20181
|
/** @example 1 */
|
|
19885
20182
|
listing_id?: number;
|
|
@@ -19903,7 +20200,7 @@ export interface operations {
|
|
|
19903
20200
|
company_name?: string | null;
|
|
19904
20201
|
/** @example null */
|
|
19905
20202
|
company_registration_number?: string | null;
|
|
19906
|
-
/** @example 2026-04-
|
|
20203
|
+
/** @example 2026-04-21T16:30:58.000000Z */
|
|
19907
20204
|
created_at?: string;
|
|
19908
20205
|
};
|
|
19909
20206
|
};
|
|
@@ -20197,7 +20494,7 @@ export interface operations {
|
|
|
20197
20494
|
* "changed_by_user_id": 3,
|
|
20198
20495
|
* "changed_by_name": "Teagan King",
|
|
20199
20496
|
* "comment": "Qui commodi incidunt iure odit.",
|
|
20200
|
-
* "created_at": "2025-12-
|
|
20497
|
+
* "created_at": "2025-12-14T03:17:57.000000Z"
|
|
20201
20498
|
* },
|
|
20202
20499
|
* {
|
|
20203
20500
|
* "from_state": "pre_move_in_ready",
|
|
@@ -20205,7 +20502,7 @@ export interface operations {
|
|
|
20205
20502
|
* "changed_by_user_id": 3,
|
|
20206
20503
|
* "changed_by_name": "Teagan King",
|
|
20207
20504
|
* "comment": null,
|
|
20208
|
-
* "created_at": "2025-10-
|
|
20505
|
+
* "created_at": "2025-10-30T11:13:37.000000Z"
|
|
20209
20506
|
* }
|
|
20210
20507
|
* ]
|
|
20211
20508
|
*/
|
|
@@ -20220,7 +20517,7 @@ export interface operations {
|
|
|
20220
20517
|
changed_by_name?: string;
|
|
20221
20518
|
/** @example Qui commodi incidunt iure odit. */
|
|
20222
20519
|
comment?: string;
|
|
20223
|
-
/** @example 2025-12-
|
|
20520
|
+
/** @example 2025-12-14T03:17:57.000000Z */
|
|
20224
20521
|
created_at?: string;
|
|
20225
20522
|
}[];
|
|
20226
20523
|
};
|
|
@@ -20464,7 +20761,7 @@ export interface operations {
|
|
|
20464
20761
|
content: {
|
|
20465
20762
|
"application/json": {
|
|
20466
20763
|
data?: {
|
|
20467
|
-
/** @example
|
|
20764
|
+
/** @example 2137d99c-2048-4db3-9d49-6cfde69bc9b5 */
|
|
20468
20765
|
uid?: string;
|
|
20469
20766
|
/** @example Ms. Audra Crooks II */
|
|
20470
20767
|
username?: string;
|
|
@@ -20494,7 +20791,7 @@ export interface operations {
|
|
|
20494
20791
|
timezone?: string;
|
|
20495
20792
|
/** @example Customer */
|
|
20496
20793
|
user_type?: string;
|
|
20497
|
-
/** @example 21 Apr 2026,
|
|
20794
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
20498
20795
|
created?: string;
|
|
20499
20796
|
/** @example 0 seconds ago */
|
|
20500
20797
|
email_verified_at?: string;
|
|
@@ -20593,7 +20890,7 @@ export interface operations {
|
|
|
20593
20890
|
content: {
|
|
20594
20891
|
"application/json": {
|
|
20595
20892
|
data?: {
|
|
20596
|
-
/** @example
|
|
20893
|
+
/** @example 48d14b47-f1d9-47f4-b7da-1634e3f7441f */
|
|
20597
20894
|
uid?: string;
|
|
20598
20895
|
/** @example Morgan Hirthe */
|
|
20599
20896
|
username?: string;
|
|
@@ -20623,7 +20920,7 @@ export interface operations {
|
|
|
20623
20920
|
timezone?: string;
|
|
20624
20921
|
/** @example Customer */
|
|
20625
20922
|
user_type?: string;
|
|
20626
|
-
/** @example 21 Apr 2026,
|
|
20923
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
20627
20924
|
created?: string;
|
|
20628
20925
|
/** @example 0 seconds ago */
|
|
20629
20926
|
email_verified_at?: string;
|
|
@@ -20695,7 +20992,7 @@ export interface operations {
|
|
|
20695
20992
|
content: {
|
|
20696
20993
|
"application/json": {
|
|
20697
20994
|
data?: {
|
|
20698
|
-
/** @example
|
|
20995
|
+
/** @example 29218733-39a4-45cf-836b-c2c6fd7af4ea */
|
|
20699
20996
|
uid?: string;
|
|
20700
20997
|
/** @example Ms. Audra Crooks II */
|
|
20701
20998
|
username?: string;
|
|
@@ -20725,7 +21022,7 @@ export interface operations {
|
|
|
20725
21022
|
timezone?: string;
|
|
20726
21023
|
/** @example Customer */
|
|
20727
21024
|
user_type?: string;
|
|
20728
|
-
/** @example 21 Apr 2026,
|
|
21025
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
20729
21026
|
created?: string;
|
|
20730
21027
|
/** @example 0 seconds ago */
|
|
20731
21028
|
email_verified_at?: string;
|
|
@@ -20959,13 +21256,13 @@ export interface operations {
|
|
|
20959
21256
|
content: {
|
|
20960
21257
|
"application/json": {
|
|
20961
21258
|
data?: {
|
|
20962
|
-
/** @example
|
|
21259
|
+
/** @example 0 */
|
|
20963
21260
|
current_level?: number;
|
|
20964
21261
|
/** @example 3 */
|
|
20965
21262
|
completed_layers?: number;
|
|
20966
|
-
/** @example
|
|
21263
|
+
/** @example 4 */
|
|
20967
21264
|
pending_layers?: number;
|
|
20968
|
-
/** @example 21 Apr 2026,
|
|
21265
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
20969
21266
|
last_calculated_at?: string;
|
|
20970
21267
|
};
|
|
20971
21268
|
};
|
|
@@ -21013,7 +21310,7 @@ export interface operations {
|
|
|
21013
21310
|
completed_layers?: number;
|
|
21014
21311
|
/** @example 4 */
|
|
21015
21312
|
pending_layers?: number;
|
|
21016
|
-
/** @example 21 Apr 2026,
|
|
21313
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
21017
21314
|
last_calculated_at?: string;
|
|
21018
21315
|
};
|
|
21019
21316
|
};
|
|
@@ -21047,14 +21344,14 @@ export interface operations {
|
|
|
21047
21344
|
content: {
|
|
21048
21345
|
"application/json": {
|
|
21049
21346
|
data?: {
|
|
21050
|
-
/** @example
|
|
21347
|
+
/** @example 753e7bf2-5b3e-49b1-b0d8-1c45b0547fee */
|
|
21051
21348
|
wishlist_uid?: string;
|
|
21052
21349
|
listing?: {
|
|
21053
|
-
/** @example New For Sale Used Item draft • 21 Apr 2026,
|
|
21350
|
+
/** @example New For Sale Used Item draft • 21 Apr 2026, 4:30 PM */
|
|
21054
21351
|
draft_name?: string;
|
|
21055
|
-
/** @example LST-UIT-SAL-
|
|
21352
|
+
/** @example LST-UIT-SAL-MO8UBVLECCV */
|
|
21056
21353
|
sku?: string;
|
|
21057
|
-
/** @example
|
|
21354
|
+
/** @example 0c5f458e-2a87-46b8-97cd-22e6b1c06637 */
|
|
21058
21355
|
uid?: string;
|
|
21059
21356
|
/** @example Sale */
|
|
21060
21357
|
listing_type?: string;
|
|
@@ -21138,15 +21435,15 @@ export interface operations {
|
|
|
21138
21435
|
/**
|
|
21139
21436
|
* @example [
|
|
21140
21437
|
* {
|
|
21141
|
-
* "wishlist_uid": "
|
|
21438
|
+
* "wishlist_uid": "eeb9dad5-1191-4547-9935-f232f1a6cb75"
|
|
21142
21439
|
* },
|
|
21143
21440
|
* {
|
|
21144
|
-
* "wishlist_uid": "
|
|
21441
|
+
* "wishlist_uid": "798f81b8-651d-4703-8b83-6f44e64f1113"
|
|
21145
21442
|
* }
|
|
21146
21443
|
* ]
|
|
21147
21444
|
*/
|
|
21148
21445
|
data?: {
|
|
21149
|
-
/** @example
|
|
21446
|
+
/** @example eeb9dad5-1191-4547-9935-f232f1a6cb75 */
|
|
21150
21447
|
wishlist_uid?: string;
|
|
21151
21448
|
}[];
|
|
21152
21449
|
links?: {
|
|
@@ -21234,7 +21531,7 @@ export interface operations {
|
|
|
21234
21531
|
completed_layers?: number;
|
|
21235
21532
|
/** @example 4 */
|
|
21236
21533
|
pending_layers?: number;
|
|
21237
|
-
/** @example 21 Apr 2026,
|
|
21534
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
21238
21535
|
last_calculated_at?: string;
|
|
21239
21536
|
};
|
|
21240
21537
|
};
|
|
@@ -21396,7 +21693,7 @@ export interface operations {
|
|
|
21396
21693
|
completed_layers?: number;
|
|
21397
21694
|
/** @example 4 */
|
|
21398
21695
|
pending_layers?: number;
|
|
21399
|
-
/** @example 21 Apr 2026,
|
|
21696
|
+
/** @example 21 Apr 2026, 04:30 PM */
|
|
21400
21697
|
last_calculated_at?: string;
|
|
21401
21698
|
};
|
|
21402
21699
|
};
|