@justins-home/types 1.1.41 → 1.1.43
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 +460 -298
- package/package.json +1 -1
package/generated/api-types.ts
CHANGED
|
@@ -1734,6 +1734,29 @@ export interface paths {
|
|
|
1734
1734
|
patch?: never;
|
|
1735
1735
|
trace?: never;
|
|
1736
1736
|
};
|
|
1737
|
+
"/api/v1/portal/admin/plans/fetch-one/{plan_key}": {
|
|
1738
|
+
parameters: {
|
|
1739
|
+
query?: never;
|
|
1740
|
+
header?: never;
|
|
1741
|
+
path: {
|
|
1742
|
+
/** @description The key of the plan to fetch. */
|
|
1743
|
+
plan_key: string;
|
|
1744
|
+
};
|
|
1745
|
+
cookie?: never;
|
|
1746
|
+
};
|
|
1747
|
+
/**
|
|
1748
|
+
* getPlan
|
|
1749
|
+
* @description Retrieve a single plan by its key.
|
|
1750
|
+
*/
|
|
1751
|
+
get: operations["getPlan"];
|
|
1752
|
+
put?: never;
|
|
1753
|
+
post?: never;
|
|
1754
|
+
delete?: never;
|
|
1755
|
+
options?: never;
|
|
1756
|
+
head?: never;
|
|
1757
|
+
patch?: never;
|
|
1758
|
+
trace?: never;
|
|
1759
|
+
};
|
|
1737
1760
|
"/api/v1/portal/admin/plans/create": {
|
|
1738
1761
|
parameters: {
|
|
1739
1762
|
query?: never;
|
|
@@ -1887,6 +1910,29 @@ export interface paths {
|
|
|
1887
1910
|
patch?: never;
|
|
1888
1911
|
trace?: never;
|
|
1889
1912
|
};
|
|
1913
|
+
"/api/v1/portal/admin/plans/entitlements/fetch-one/{entitlement_key}": {
|
|
1914
|
+
parameters: {
|
|
1915
|
+
query?: never;
|
|
1916
|
+
header?: never;
|
|
1917
|
+
path: {
|
|
1918
|
+
/** @description The unique key of the entitlement. */
|
|
1919
|
+
entitlement_key: string;
|
|
1920
|
+
};
|
|
1921
|
+
cookie?: never;
|
|
1922
|
+
};
|
|
1923
|
+
/**
|
|
1924
|
+
* getPlanEntitlement
|
|
1925
|
+
* @description Retrieve a single plan entitlement by key.
|
|
1926
|
+
*/
|
|
1927
|
+
get: operations["getPlanEntitlement"];
|
|
1928
|
+
put?: never;
|
|
1929
|
+
post?: never;
|
|
1930
|
+
delete?: never;
|
|
1931
|
+
options?: never;
|
|
1932
|
+
head?: never;
|
|
1933
|
+
patch?: never;
|
|
1934
|
+
trace?: never;
|
|
1935
|
+
};
|
|
1890
1936
|
"/api/v1/portal/admin/plans/entitlements/create": {
|
|
1891
1937
|
parameters: {
|
|
1892
1938
|
query?: never;
|
|
@@ -2013,6 +2059,29 @@ export interface paths {
|
|
|
2013
2059
|
patch?: never;
|
|
2014
2060
|
trace?: never;
|
|
2015
2061
|
};
|
|
2062
|
+
"/api/v1/portal/admin/capability/fetch-one/{capability_key}": {
|
|
2063
|
+
parameters: {
|
|
2064
|
+
query?: never;
|
|
2065
|
+
header?: never;
|
|
2066
|
+
path: {
|
|
2067
|
+
/** @description The key of the capability to fetch. */
|
|
2068
|
+
capability_key: string;
|
|
2069
|
+
};
|
|
2070
|
+
cookie?: never;
|
|
2071
|
+
};
|
|
2072
|
+
/**
|
|
2073
|
+
* getCapability
|
|
2074
|
+
* @description Retrieve a single capability definition by key.
|
|
2075
|
+
*/
|
|
2076
|
+
get: operations["getCapability"];
|
|
2077
|
+
put?: never;
|
|
2078
|
+
post?: never;
|
|
2079
|
+
delete?: never;
|
|
2080
|
+
options?: never;
|
|
2081
|
+
head?: never;
|
|
2082
|
+
patch?: never;
|
|
2083
|
+
trace?: never;
|
|
2084
|
+
};
|
|
2016
2085
|
"/api/v1/portal/admin/capability/create": {
|
|
2017
2086
|
parameters: {
|
|
2018
2087
|
query?: never;
|
|
@@ -2039,8 +2108,6 @@ export interface paths {
|
|
|
2039
2108
|
header?: never;
|
|
2040
2109
|
path: {
|
|
2041
2110
|
capability_key: string;
|
|
2042
|
-
/** @description The ID of the capability to update. */
|
|
2043
|
-
capability_id: number;
|
|
2044
2111
|
};
|
|
2045
2112
|
cookie?: never;
|
|
2046
2113
|
};
|
|
@@ -5867,7 +5934,7 @@ export interface operations {
|
|
|
5867
5934
|
content: {
|
|
5868
5935
|
"application/json": {
|
|
5869
5936
|
data?: {
|
|
5870
|
-
/** @example
|
|
5937
|
+
/** @example 477f5cf9-b4a4-402f-b452-13d402cc4ca3 */
|
|
5871
5938
|
uid?: string;
|
|
5872
5939
|
/** @example Ms. Audra Crooks II */
|
|
5873
5940
|
username?: string;
|
|
@@ -5897,7 +5964,7 @@ export interface operations {
|
|
|
5897
5964
|
timezone?: string;
|
|
5898
5965
|
/** @example Customer */
|
|
5899
5966
|
user_type?: string;
|
|
5900
|
-
/** @example
|
|
5967
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
5901
5968
|
created?: string;
|
|
5902
5969
|
/** @example 0 seconds ago */
|
|
5903
5970
|
email_verified_at?: string;
|
|
@@ -6150,11 +6217,11 @@ export interface operations {
|
|
|
6150
6217
|
content: {
|
|
6151
6218
|
"application/json": {
|
|
6152
6219
|
data?: {
|
|
6153
|
-
/** @example New For Rent Property draft •
|
|
6220
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
6154
6221
|
draft_name?: string;
|
|
6155
|
-
/** @example LST-PRP-LTR-
|
|
6222
|
+
/** @example LST-PRP-LTR-MO9RAL43PHR */
|
|
6156
6223
|
sku?: string;
|
|
6157
|
-
/** @example
|
|
6224
|
+
/** @example 32192739-4fb7-43af-9226-3e3f7cbb804d */
|
|
6158
6225
|
uid?: string;
|
|
6159
6226
|
/** @example Rent */
|
|
6160
6227
|
listing_type?: string;
|
|
@@ -7566,7 +7633,7 @@ export interface operations {
|
|
|
7566
7633
|
content: {
|
|
7567
7634
|
"application/json": {
|
|
7568
7635
|
/**
|
|
7569
|
-
* @example
|
|
7636
|
+
* @example Pending
|
|
7570
7637
|
* @enum {string}
|
|
7571
7638
|
*/
|
|
7572
7639
|
status: "Pending" | "Active" | "Dormant" | "Suspended" | "Unverified";
|
|
@@ -7581,7 +7648,7 @@ export interface operations {
|
|
|
7581
7648
|
content: {
|
|
7582
7649
|
"application/json": {
|
|
7583
7650
|
data?: {
|
|
7584
|
-
/** @example
|
|
7651
|
+
/** @example f7364d11-4c78-45d3-9a20-021f0aaca507 */
|
|
7585
7652
|
uid?: string;
|
|
7586
7653
|
/** @example Morgan Hirthe */
|
|
7587
7654
|
username?: string;
|
|
@@ -7611,7 +7678,7 @@ export interface operations {
|
|
|
7611
7678
|
timezone?: string;
|
|
7612
7679
|
/** @example Customer */
|
|
7613
7680
|
user_type?: string;
|
|
7614
|
-
/** @example
|
|
7681
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
7615
7682
|
created?: string;
|
|
7616
7683
|
/** @example 0 seconds ago */
|
|
7617
7684
|
email_verified_at?: string;
|
|
@@ -8320,11 +8387,11 @@ export interface operations {
|
|
|
8320
8387
|
content: {
|
|
8321
8388
|
"application/json": {
|
|
8322
8389
|
data?: {
|
|
8323
|
-
/** @example New For Rent Property draft •
|
|
8390
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
8324
8391
|
draft_name?: string;
|
|
8325
|
-
/** @example LST-PRP-LTR-
|
|
8392
|
+
/** @example LST-PRP-LTR-MO9RAL7CPNX */
|
|
8326
8393
|
sku?: string;
|
|
8327
|
-
/** @example
|
|
8394
|
+
/** @example 6fe0c81b-f9ff-4efe-945d-d9707ab41ef1 */
|
|
8328
8395
|
uid?: string;
|
|
8329
8396
|
/** @example Rent */
|
|
8330
8397
|
listing_type?: string;
|
|
@@ -8764,7 +8831,7 @@ export interface operations {
|
|
|
8764
8831
|
content: {
|
|
8765
8832
|
"application/json": {
|
|
8766
8833
|
data?: {
|
|
8767
|
-
/** @example
|
|
8834
|
+
/** @example e4962235-a397-425b-8081-f63543068de3 */
|
|
8768
8835
|
uid?: string;
|
|
8769
8836
|
/** @example photo */
|
|
8770
8837
|
media_type?: string;
|
|
@@ -9071,13 +9138,13 @@ export interface operations {
|
|
|
9071
9138
|
/**
|
|
9072
9139
|
* @example [
|
|
9073
9140
|
* {
|
|
9074
|
-
* "draft_name": "New For Rent Property draft •
|
|
9075
|
-
* "sku": "LST-PRP-LTR-
|
|
9076
|
-
* "uid": "
|
|
9141
|
+
* "draft_name": "New For Rent Property draft • 22 Apr 2026, 7:53 AM",
|
|
9142
|
+
* "sku": "LST-PRP-LTR-MO9RAL92O9R",
|
|
9143
|
+
* "uid": "5ab44e5a-a21f-472a-ac79-6341c2d201a9",
|
|
9077
9144
|
* "listing_type": "Rent",
|
|
9078
9145
|
* "vertical": "Property",
|
|
9079
|
-
* "arrangement_type": "
|
|
9080
|
-
* "arrangement_type_label": "
|
|
9146
|
+
* "arrangement_type": "standard_residential",
|
|
9147
|
+
* "arrangement_type_label": "Standard Residential",
|
|
9081
9148
|
* "price": null,
|
|
9082
9149
|
* "state": "draft",
|
|
9083
9150
|
* "published_at": null,
|
|
@@ -9090,40 +9157,38 @@ export interface operations {
|
|
|
9090
9157
|
* "media": []
|
|
9091
9158
|
* },
|
|
9092
9159
|
* {
|
|
9093
|
-
* "draft_name": "New
|
|
9094
|
-
* "sku": "LST-
|
|
9095
|
-
* "uid": "
|
|
9096
|
-
* "listing_type": "
|
|
9097
|
-
* "vertical": "
|
|
9098
|
-
* "arrangement_type":
|
|
9099
|
-
* "arrangement_type_label":
|
|
9160
|
+
* "draft_name": "New For Sale Used Item draft • 22 Apr 2026, 7:53 AM",
|
|
9161
|
+
* "sku": "LST-UIT-SAL-MO9RAL98WZM",
|
|
9162
|
+
* "uid": "359d9736-1ea5-4ba8-b98b-7dd2a2d84c52",
|
|
9163
|
+
* "listing_type": "Sale",
|
|
9164
|
+
* "vertical": "Used Item",
|
|
9165
|
+
* "arrangement_type": null,
|
|
9166
|
+
* "arrangement_type_label": null,
|
|
9100
9167
|
* "price": null,
|
|
9101
9168
|
* "state": "draft",
|
|
9102
9169
|
* "published_at": null,
|
|
9103
9170
|
* "published_since": null,
|
|
9104
9171
|
* "is_visible": false,
|
|
9105
|
-
* "summary":
|
|
9106
|
-
* "availability": null
|
|
9107
|
-
* },
|
|
9172
|
+
* "summary": [],
|
|
9108
9173
|
* "workflow": [],
|
|
9109
9174
|
* "media": []
|
|
9110
9175
|
* }
|
|
9111
9176
|
* ]
|
|
9112
9177
|
*/
|
|
9113
9178
|
data?: {
|
|
9114
|
-
/** @example New For Rent Property draft •
|
|
9179
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
9115
9180
|
draft_name?: string;
|
|
9116
|
-
/** @example LST-PRP-LTR-
|
|
9181
|
+
/** @example LST-PRP-LTR-MO9RAL92O9R */
|
|
9117
9182
|
sku?: string;
|
|
9118
|
-
/** @example
|
|
9183
|
+
/** @example 5ab44e5a-a21f-472a-ac79-6341c2d201a9 */
|
|
9119
9184
|
uid?: string;
|
|
9120
9185
|
/** @example Rent */
|
|
9121
9186
|
listing_type?: string;
|
|
9122
9187
|
/** @example Property */
|
|
9123
9188
|
vertical?: string;
|
|
9124
|
-
/** @example
|
|
9189
|
+
/** @example standard_residential */
|
|
9125
9190
|
arrangement_type?: string;
|
|
9126
|
-
/** @example
|
|
9191
|
+
/** @example Standard Residential */
|
|
9127
9192
|
arrangement_type_label?: string;
|
|
9128
9193
|
/** @example null */
|
|
9129
9194
|
price?: string | null;
|
|
@@ -9310,11 +9375,11 @@ export interface operations {
|
|
|
9310
9375
|
content: {
|
|
9311
9376
|
"application/json": {
|
|
9312
9377
|
data?: {
|
|
9313
|
-
/** @example New For Rent Property draft •
|
|
9378
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
9314
9379
|
draft_name?: string;
|
|
9315
|
-
/** @example LST-PRP-LTR-
|
|
9380
|
+
/** @example LST-PRP-LTR-MO9RAL9K908 */
|
|
9316
9381
|
sku?: string;
|
|
9317
|
-
/** @example
|
|
9382
|
+
/** @example bd25d387-289f-4c76-918b-e4522dac0ef6 */
|
|
9318
9383
|
uid?: string;
|
|
9319
9384
|
/** @example Rent */
|
|
9320
9385
|
listing_type?: string;
|
|
@@ -9377,11 +9442,11 @@ export interface operations {
|
|
|
9377
9442
|
content: {
|
|
9378
9443
|
"application/json": {
|
|
9379
9444
|
data?: {
|
|
9380
|
-
/** @example New For Rent Property draft •
|
|
9445
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
9381
9446
|
draft_name?: string;
|
|
9382
|
-
/** @example LST-PRP-LTR-
|
|
9447
|
+
/** @example LST-PRP-LTR-MO9RAL9RA0D */
|
|
9383
9448
|
sku?: string;
|
|
9384
|
-
/** @example
|
|
9449
|
+
/** @example d129fb49-3b28-44eb-ae07-2336439e6170 */
|
|
9385
9450
|
uid?: string;
|
|
9386
9451
|
/** @example Rent */
|
|
9387
9452
|
listing_type?: string;
|
|
@@ -9434,11 +9499,11 @@ export interface operations {
|
|
|
9434
9499
|
content: {
|
|
9435
9500
|
"application/json": {
|
|
9436
9501
|
data?: {
|
|
9437
|
-
/** @example New For Rent Property draft •
|
|
9502
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
9438
9503
|
draft_name?: string;
|
|
9439
|
-
/** @example LST-PRP-LTR-
|
|
9504
|
+
/** @example LST-PRP-LTR-MO9RAL9WMRA */
|
|
9440
9505
|
sku?: string;
|
|
9441
|
-
/** @example
|
|
9506
|
+
/** @example 171b8d27-784f-4621-9e44-7a60f67653b2 */
|
|
9442
9507
|
uid?: string;
|
|
9443
9508
|
/** @example Rent */
|
|
9444
9509
|
listing_type?: string;
|
|
@@ -9491,11 +9556,11 @@ export interface operations {
|
|
|
9491
9556
|
content: {
|
|
9492
9557
|
"application/json": {
|
|
9493
9558
|
data?: {
|
|
9494
|
-
/** @example New For Rent Property draft •
|
|
9559
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
9495
9560
|
draft_name?: string;
|
|
9496
|
-
/** @example LST-PRP-LTR-
|
|
9561
|
+
/** @example LST-PRP-LTR-MO9RALA3RKE */
|
|
9497
9562
|
sku?: string;
|
|
9498
|
-
/** @example
|
|
9563
|
+
/** @example 619fb9dd-0bae-404e-8788-e7beeddeeb13 */
|
|
9499
9564
|
uid?: string;
|
|
9500
9565
|
/** @example Rent */
|
|
9501
9566
|
listing_type?: string;
|
|
@@ -9689,7 +9754,7 @@ export interface operations {
|
|
|
9689
9754
|
content: {
|
|
9690
9755
|
"application/json": {
|
|
9691
9756
|
data?: {
|
|
9692
|
-
/** @example
|
|
9757
|
+
/** @example 85 */
|
|
9693
9758
|
id?: number;
|
|
9694
9759
|
/** @example 1 */
|
|
9695
9760
|
category_id?: number;
|
|
@@ -9763,7 +9828,7 @@ export interface operations {
|
|
|
9763
9828
|
content: {
|
|
9764
9829
|
"application/json": {
|
|
9765
9830
|
data?: {
|
|
9766
|
-
/** @example
|
|
9831
|
+
/** @example 86 */
|
|
9767
9832
|
id?: number;
|
|
9768
9833
|
/** @example 1 */
|
|
9769
9834
|
category_id?: number;
|
|
@@ -9802,7 +9867,7 @@ export interface operations {
|
|
|
9802
9867
|
content: {
|
|
9803
9868
|
"application/json": {
|
|
9804
9869
|
data?: {
|
|
9805
|
-
/** @example
|
|
9870
|
+
/** @example 87 */
|
|
9806
9871
|
id?: number;
|
|
9807
9872
|
/** @example 1 */
|
|
9808
9873
|
category_id?: number;
|
|
@@ -9840,7 +9905,7 @@ export interface operations {
|
|
|
9840
9905
|
/**
|
|
9841
9906
|
* @example [
|
|
9842
9907
|
* {
|
|
9843
|
-
* "id":
|
|
9908
|
+
* "id": 85,
|
|
9844
9909
|
* "name": "Exterior",
|
|
9845
9910
|
* "description": "For Exterior categories",
|
|
9846
9911
|
* "display_order": 1,
|
|
@@ -9850,7 +9915,7 @@ export interface operations {
|
|
|
9850
9915
|
* "is_active": true
|
|
9851
9916
|
* },
|
|
9852
9917
|
* {
|
|
9853
|
-
* "id":
|
|
9918
|
+
* "id": 86,
|
|
9854
9919
|
* "name": "Exterior",
|
|
9855
9920
|
* "description": "For Exterior categories",
|
|
9856
9921
|
* "display_order": 1,
|
|
@@ -9862,7 +9927,7 @@ export interface operations {
|
|
|
9862
9927
|
* ]
|
|
9863
9928
|
*/
|
|
9864
9929
|
data?: {
|
|
9865
|
-
/** @example
|
|
9930
|
+
/** @example 85 */
|
|
9866
9931
|
id?: number;
|
|
9867
9932
|
/** @example Exterior */
|
|
9868
9933
|
name?: string;
|
|
@@ -9926,7 +9991,7 @@ export interface operations {
|
|
|
9926
9991
|
content: {
|
|
9927
9992
|
"application/json": {
|
|
9928
9993
|
data?: {
|
|
9929
|
-
/** @example
|
|
9994
|
+
/** @example 87 */
|
|
9930
9995
|
id?: number;
|
|
9931
9996
|
/** @example Exterior */
|
|
9932
9997
|
name?: string;
|
|
@@ -9993,7 +10058,7 @@ export interface operations {
|
|
|
9993
10058
|
content: {
|
|
9994
10059
|
"application/json": {
|
|
9995
10060
|
data?: {
|
|
9996
|
-
/** @example
|
|
10061
|
+
/** @example 88 */
|
|
9997
10062
|
id?: number;
|
|
9998
10063
|
/** @example Exterior */
|
|
9999
10064
|
name?: string;
|
|
@@ -10034,7 +10099,7 @@ export interface operations {
|
|
|
10034
10099
|
content: {
|
|
10035
10100
|
"application/json": {
|
|
10036
10101
|
data?: {
|
|
10037
|
-
/** @example
|
|
10102
|
+
/** @example 89 */
|
|
10038
10103
|
id?: number;
|
|
10039
10104
|
/** @example Exterior */
|
|
10040
10105
|
name?: string;
|
|
@@ -10297,7 +10362,7 @@ export interface operations {
|
|
|
10297
10362
|
content: {
|
|
10298
10363
|
"application/json": {
|
|
10299
10364
|
data?: {
|
|
10300
|
-
/** @example
|
|
10365
|
+
/** @example 44 */
|
|
10301
10366
|
id?: number;
|
|
10302
10367
|
/** @example email_fa_0 */
|
|
10303
10368
|
key?: string;
|
|
@@ -10311,9 +10376,9 @@ export interface operations {
|
|
|
10311
10376
|
metadata_schema?: unknown[];
|
|
10312
10377
|
/** @example true */
|
|
10313
10378
|
is_active?: boolean;
|
|
10314
|
-
/** @example 2026-04-
|
|
10379
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
10315
10380
|
created_at?: string;
|
|
10316
|
-
/** @example 2026-04-
|
|
10381
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
10317
10382
|
updated_at?: string;
|
|
10318
10383
|
};
|
|
10319
10384
|
};
|
|
@@ -10373,7 +10438,7 @@ export interface operations {
|
|
|
10373
10438
|
content: {
|
|
10374
10439
|
"application/json": {
|
|
10375
10440
|
data?: {
|
|
10376
|
-
/** @example
|
|
10441
|
+
/** @example 45 */
|
|
10377
10442
|
id?: number;
|
|
10378
10443
|
/** @example email_fa_0 */
|
|
10379
10444
|
key?: string;
|
|
@@ -10387,9 +10452,9 @@ export interface operations {
|
|
|
10387
10452
|
metadata_schema?: unknown[];
|
|
10388
10453
|
/** @example true */
|
|
10389
10454
|
is_active?: boolean;
|
|
10390
|
-
/** @example 2026-04-
|
|
10455
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
10391
10456
|
created_at?: string;
|
|
10392
|
-
/** @example 2026-04-
|
|
10457
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
10393
10458
|
updated_at?: string;
|
|
10394
10459
|
};
|
|
10395
10460
|
};
|
|
@@ -11378,6 +11443,39 @@ export interface operations {
|
|
|
11378
11443
|
};
|
|
11379
11444
|
};
|
|
11380
11445
|
};
|
|
11446
|
+
getPlan: {
|
|
11447
|
+
parameters: {
|
|
11448
|
+
query?: never;
|
|
11449
|
+
header?: never;
|
|
11450
|
+
path: {
|
|
11451
|
+
/** @description The key of the plan to fetch. */
|
|
11452
|
+
plan_key: string;
|
|
11453
|
+
};
|
|
11454
|
+
cookie?: never;
|
|
11455
|
+
};
|
|
11456
|
+
requestBody?: never;
|
|
11457
|
+
responses: {
|
|
11458
|
+
200: {
|
|
11459
|
+
headers: {
|
|
11460
|
+
[name: string]: unknown;
|
|
11461
|
+
};
|
|
11462
|
+
content: {
|
|
11463
|
+
"application/json": {
|
|
11464
|
+
data?: {
|
|
11465
|
+
/** @example aut */
|
|
11466
|
+
key?: string;
|
|
11467
|
+
/** @example adipisci */
|
|
11468
|
+
name?: string;
|
|
11469
|
+
/** @example Landlord */
|
|
11470
|
+
user_type?: string;
|
|
11471
|
+
/** @example true */
|
|
11472
|
+
is_active?: boolean;
|
|
11473
|
+
};
|
|
11474
|
+
};
|
|
11475
|
+
};
|
|
11476
|
+
};
|
|
11477
|
+
};
|
|
11478
|
+
};
|
|
11381
11479
|
createPlan: {
|
|
11382
11480
|
parameters: {
|
|
11383
11481
|
query?: never;
|
|
@@ -11621,19 +11719,52 @@ export interface operations {
|
|
|
11621
11719
|
/**
|
|
11622
11720
|
* @example [
|
|
11623
11721
|
* {
|
|
11624
|
-
* "key": "
|
|
11625
|
-
* "name": "
|
|
11626
|
-
* "description": "
|
|
11722
|
+
* "key": "est",
|
|
11723
|
+
* "name": "illo",
|
|
11724
|
+
* "description": "Fugiat ut veniam iure facere inventore ipsa ea.",
|
|
11627
11725
|
* "value_type": "string"
|
|
11628
11726
|
* },
|
|
11629
11727
|
* {
|
|
11630
|
-
* "key": "
|
|
11631
|
-
* "name": "
|
|
11632
|
-
* "description": "
|
|
11728
|
+
* "key": "ipsum",
|
|
11729
|
+
* "name": "dolor",
|
|
11730
|
+
* "description": "Consequatur sed sit non et neque consequuntur ullam.",
|
|
11633
11731
|
* "value_type": "string"
|
|
11634
11732
|
* }
|
|
11635
11733
|
* ]
|
|
11636
11734
|
*/
|
|
11735
|
+
data?: {
|
|
11736
|
+
/** @example est */
|
|
11737
|
+
key?: string;
|
|
11738
|
+
/** @example illo */
|
|
11739
|
+
name?: string;
|
|
11740
|
+
/** @example Fugiat ut veniam iure facere inventore ipsa ea. */
|
|
11741
|
+
description?: string;
|
|
11742
|
+
/** @example string */
|
|
11743
|
+
value_type?: string;
|
|
11744
|
+
}[];
|
|
11745
|
+
};
|
|
11746
|
+
};
|
|
11747
|
+
};
|
|
11748
|
+
};
|
|
11749
|
+
};
|
|
11750
|
+
getPlanEntitlement: {
|
|
11751
|
+
parameters: {
|
|
11752
|
+
query?: never;
|
|
11753
|
+
header?: never;
|
|
11754
|
+
path: {
|
|
11755
|
+
/** @description The unique key of the entitlement. */
|
|
11756
|
+
entitlement_key: string;
|
|
11757
|
+
};
|
|
11758
|
+
cookie?: never;
|
|
11759
|
+
};
|
|
11760
|
+
requestBody?: never;
|
|
11761
|
+
responses: {
|
|
11762
|
+
200: {
|
|
11763
|
+
headers: {
|
|
11764
|
+
[name: string]: unknown;
|
|
11765
|
+
};
|
|
11766
|
+
content: {
|
|
11767
|
+
"application/json": {
|
|
11637
11768
|
data?: {
|
|
11638
11769
|
/** @example aut */
|
|
11639
11770
|
key?: string;
|
|
@@ -11643,7 +11774,7 @@ export interface operations {
|
|
|
11643
11774
|
description?: string;
|
|
11644
11775
|
/** @example string */
|
|
11645
11776
|
value_type?: string;
|
|
11646
|
-
}
|
|
11777
|
+
};
|
|
11647
11778
|
};
|
|
11648
11779
|
};
|
|
11649
11780
|
};
|
|
@@ -11893,6 +12024,37 @@ export interface operations {
|
|
|
11893
12024
|
};
|
|
11894
12025
|
};
|
|
11895
12026
|
};
|
|
12027
|
+
getCapability: {
|
|
12028
|
+
parameters: {
|
|
12029
|
+
query?: never;
|
|
12030
|
+
header?: never;
|
|
12031
|
+
path: {
|
|
12032
|
+
/** @description The key of the capability to fetch. */
|
|
12033
|
+
capability_key: string;
|
|
12034
|
+
};
|
|
12035
|
+
cookie?: never;
|
|
12036
|
+
};
|
|
12037
|
+
requestBody?: never;
|
|
12038
|
+
responses: {
|
|
12039
|
+
200: {
|
|
12040
|
+
headers: {
|
|
12041
|
+
[name: string]: unknown;
|
|
12042
|
+
};
|
|
12043
|
+
content: {
|
|
12044
|
+
"application/json": {
|
|
12045
|
+
data?: {
|
|
12046
|
+
/** @example aut */
|
|
12047
|
+
key?: string;
|
|
12048
|
+
/** @example adipisci */
|
|
12049
|
+
name?: string;
|
|
12050
|
+
/** @example Nostrum qui commodi incidunt iure. */
|
|
12051
|
+
description?: string;
|
|
12052
|
+
};
|
|
12053
|
+
};
|
|
12054
|
+
};
|
|
12055
|
+
};
|
|
12056
|
+
};
|
|
12057
|
+
};
|
|
11896
12058
|
createCapability: {
|
|
11897
12059
|
parameters: {
|
|
11898
12060
|
query?: never;
|
|
@@ -11947,8 +12109,6 @@ export interface operations {
|
|
|
11947
12109
|
header?: never;
|
|
11948
12110
|
path: {
|
|
11949
12111
|
capability_key: string;
|
|
11950
|
-
/** @description The ID of the capability to update. */
|
|
11951
|
-
capability_id: number;
|
|
11952
12112
|
};
|
|
11953
12113
|
cookie?: never;
|
|
11954
12114
|
};
|
|
@@ -12762,13 +12922,13 @@ export interface operations {
|
|
|
12762
12922
|
content: {
|
|
12763
12923
|
"application/json": {
|
|
12764
12924
|
data?: {
|
|
12765
|
-
/** @example
|
|
12925
|
+
/** @example b5cabec8-2ed0-45be-8911-78ced3a034b4 */
|
|
12766
12926
|
uid?: string;
|
|
12767
12927
|
/** @example follow_up */
|
|
12768
12928
|
inspection_type?: string;
|
|
12769
12929
|
/** @example cancelled */
|
|
12770
12930
|
status?: string;
|
|
12771
|
-
/** @example 2026-04-
|
|
12931
|
+
/** @example 2026-04-27T21:52:07.000000Z */
|
|
12772
12932
|
scheduled_date?: string;
|
|
12773
12933
|
/** @example null */
|
|
12774
12934
|
completed_date?: string | null;
|
|
@@ -12776,11 +12936,11 @@ export interface operations {
|
|
|
12776
12936
|
condition_rating?: string;
|
|
12777
12937
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
12778
12938
|
summary?: string;
|
|
12779
|
-
/** @example 2026-06-
|
|
12939
|
+
/** @example 2026-06-20T18:40:41.000000Z */
|
|
12780
12940
|
next_inspection_date?: string;
|
|
12781
|
-
/** @example 2026-04-
|
|
12941
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
12782
12942
|
created_at?: string;
|
|
12783
|
-
/** @example 2026-04-
|
|
12943
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
12784
12944
|
updated_at?: string;
|
|
12785
12945
|
};
|
|
12786
12946
|
};
|
|
@@ -12823,13 +12983,13 @@ export interface operations {
|
|
|
12823
12983
|
content: {
|
|
12824
12984
|
"application/json": {
|
|
12825
12985
|
data?: {
|
|
12826
|
-
/** @example
|
|
12986
|
+
/** @example 93d9c359-c462-41dd-8a0f-94769454d84d */
|
|
12827
12987
|
uid?: string;
|
|
12828
12988
|
/** @example follow_up */
|
|
12829
12989
|
inspection_type?: string;
|
|
12830
12990
|
/** @example cancelled */
|
|
12831
12991
|
status?: string;
|
|
12832
|
-
/** @example 2026-04-
|
|
12992
|
+
/** @example 2026-04-15T19:18:40.000000Z */
|
|
12833
12993
|
scheduled_date?: string;
|
|
12834
12994
|
/** @example null */
|
|
12835
12995
|
completed_date?: string | null;
|
|
@@ -12837,11 +12997,11 @@ export interface operations {
|
|
|
12837
12997
|
condition_rating?: string;
|
|
12838
12998
|
/** @example Et animi quos velit et fugiat. */
|
|
12839
12999
|
summary?: string;
|
|
12840
|
-
/** @example 2026-07-
|
|
13000
|
+
/** @example 2026-07-25T03:12:27.000000Z */
|
|
12841
13001
|
next_inspection_date?: string;
|
|
12842
|
-
/** @example 2026-04-
|
|
13002
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
12843
13003
|
created_at?: string;
|
|
12844
|
-
/** @example 2026-04-
|
|
13004
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
12845
13005
|
updated_at?: string;
|
|
12846
13006
|
};
|
|
12847
13007
|
};
|
|
@@ -12878,13 +13038,13 @@ export interface operations {
|
|
|
12878
13038
|
content: {
|
|
12879
13039
|
"application/json": {
|
|
12880
13040
|
data?: {
|
|
12881
|
-
/** @example
|
|
13041
|
+
/** @example 64cf623d-5a30-4b76-9a9b-178ef5e093e0 */
|
|
12882
13042
|
uid?: string;
|
|
12883
13043
|
/** @example follow_up */
|
|
12884
13044
|
inspection_type?: string;
|
|
12885
13045
|
/** @example cancelled */
|
|
12886
13046
|
status?: string;
|
|
12887
|
-
/** @example 2026-04-
|
|
13047
|
+
/** @example 2026-04-27T21:52:07.000000Z */
|
|
12888
13048
|
scheduled_date?: string;
|
|
12889
13049
|
/** @example null */
|
|
12890
13050
|
completed_date?: string | null;
|
|
@@ -12892,11 +13052,11 @@ export interface operations {
|
|
|
12892
13052
|
condition_rating?: string;
|
|
12893
13053
|
/** @example Quidem nostrum qui commodi incidunt iure odit. */
|
|
12894
13054
|
summary?: string;
|
|
12895
|
-
/** @example 2026-06-
|
|
13055
|
+
/** @example 2026-06-20T18:40:41.000000Z */
|
|
12896
13056
|
next_inspection_date?: string;
|
|
12897
|
-
/** @example 2026-04-
|
|
13057
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
12898
13058
|
created_at?: string;
|
|
12899
|
-
/** @example 2026-04-
|
|
13059
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
12900
13060
|
updated_at?: string;
|
|
12901
13061
|
};
|
|
12902
13062
|
};
|
|
@@ -12933,13 +13093,13 @@ export interface operations {
|
|
|
12933
13093
|
content: {
|
|
12934
13094
|
"application/json": {
|
|
12935
13095
|
data?: {
|
|
12936
|
-
/** @example
|
|
13096
|
+
/** @example 564b0870-a82c-406b-9317-635663cb586e */
|
|
12937
13097
|
uid?: string;
|
|
12938
13098
|
/** @example follow_up */
|
|
12939
13099
|
inspection_type?: string;
|
|
12940
13100
|
/** @example cancelled */
|
|
12941
13101
|
status?: string;
|
|
12942
|
-
/** @example 2026-04-
|
|
13102
|
+
/** @example 2026-04-15T19:18:40.000000Z */
|
|
12943
13103
|
scheduled_date?: string;
|
|
12944
13104
|
/** @example null */
|
|
12945
13105
|
completed_date?: string | null;
|
|
@@ -12947,11 +13107,11 @@ export interface operations {
|
|
|
12947
13107
|
condition_rating?: string;
|
|
12948
13108
|
/** @example Et animi quos velit et fugiat. */
|
|
12949
13109
|
summary?: string;
|
|
12950
|
-
/** @example 2026-07-
|
|
13110
|
+
/** @example 2026-07-25T03:12:27.000000Z */
|
|
12951
13111
|
next_inspection_date?: string;
|
|
12952
|
-
/** @example 2026-04-
|
|
13112
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
12953
13113
|
created_at?: string;
|
|
12954
|
-
/** @example 2026-04-
|
|
13114
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
12955
13115
|
updated_at?: string;
|
|
12956
13116
|
};
|
|
12957
13117
|
};
|
|
@@ -12988,27 +13148,27 @@ export interface operations {
|
|
|
12988
13148
|
content: {
|
|
12989
13149
|
"application/json": {
|
|
12990
13150
|
data?: {
|
|
12991
|
-
/** @example
|
|
13151
|
+
/** @example e8126bd8-59cc-4d73-b138-b49e4bd3906e */
|
|
12992
13152
|
uid?: string;
|
|
12993
|
-
/** @example
|
|
13153
|
+
/** @example Qui commodi incidunt iure. */
|
|
12994
13154
|
title?: string;
|
|
12995
|
-
/** @example
|
|
13155
|
+
/** @example Et modi ipsum nostrum omnis autem et consequatur. Dolores enim non facere tempora. Voluptatem laboriosam praesentium quis adipisci. */
|
|
12996
13156
|
description?: string;
|
|
12997
|
-
/** @example
|
|
13157
|
+
/** @example breach */
|
|
12998
13158
|
status?: string;
|
|
12999
|
-
/** @example
|
|
13159
|
+
/** @example low */
|
|
13000
13160
|
priority?: string;
|
|
13001
|
-
/** @example 2026-04-
|
|
13161
|
+
/** @example 2026-04-20T21:22:28.000000Z */
|
|
13002
13162
|
reported_at?: string;
|
|
13003
13163
|
/** @example null */
|
|
13004
13164
|
assigned_at?: string | null;
|
|
13005
13165
|
/** @example null */
|
|
13006
13166
|
completed_at?: string | null;
|
|
13007
|
-
/** @example 2026-04-
|
|
13167
|
+
/** @example 2026-04-23T17:46:54.000000Z */
|
|
13008
13168
|
sla_deadline?: string;
|
|
13009
|
-
/** @example 2026-04-
|
|
13169
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
13010
13170
|
created_at?: string;
|
|
13011
|
-
/** @example 2026-04-
|
|
13171
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
13012
13172
|
updated_at?: string;
|
|
13013
13173
|
};
|
|
13014
13174
|
};
|
|
@@ -13045,7 +13205,7 @@ export interface operations {
|
|
|
13045
13205
|
content: {
|
|
13046
13206
|
"application/json": {
|
|
13047
13207
|
data?: {
|
|
13048
|
-
/** @example
|
|
13208
|
+
/** @example 95bff3bd-de90-4f41-a8bf-f5f3445f6fe8 */
|
|
13049
13209
|
uid?: string;
|
|
13050
13210
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13051
13211
|
title?: string;
|
|
@@ -13055,17 +13215,17 @@ export interface operations {
|
|
|
13055
13215
|
status?: string;
|
|
13056
13216
|
/** @example emergency */
|
|
13057
13217
|
priority?: string;
|
|
13058
|
-
/** @example 2026-04-
|
|
13218
|
+
/** @example 2026-04-15T19:07:20.000000Z */
|
|
13059
13219
|
reported_at?: string;
|
|
13060
|
-
/** @example 2026-04-
|
|
13220
|
+
/** @example 2026-04-20T15:27:12.000000Z */
|
|
13061
13221
|
assigned_at?: string;
|
|
13062
13222
|
/** @example null */
|
|
13063
13223
|
completed_at?: string | null;
|
|
13064
|
-
/** @example 2026-04-
|
|
13224
|
+
/** @example 2026-04-23T20:49:35.000000Z */
|
|
13065
13225
|
sla_deadline?: string;
|
|
13066
|
-
/** @example 2026-04-
|
|
13226
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
13067
13227
|
created_at?: string;
|
|
13068
|
-
/** @example 2026-04-
|
|
13228
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
13069
13229
|
updated_at?: string;
|
|
13070
13230
|
};
|
|
13071
13231
|
};
|
|
@@ -13102,7 +13262,7 @@ export interface operations {
|
|
|
13102
13262
|
content: {
|
|
13103
13263
|
"application/json": {
|
|
13104
13264
|
data?: {
|
|
13105
|
-
/** @example
|
|
13265
|
+
/** @example 216b99bc-5ac2-4db1-b5df-a52014c17dc4 */
|
|
13106
13266
|
uid?: string;
|
|
13107
13267
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13108
13268
|
title?: string;
|
|
@@ -13112,17 +13272,17 @@ export interface operations {
|
|
|
13112
13272
|
status?: string;
|
|
13113
13273
|
/** @example emergency */
|
|
13114
13274
|
priority?: string;
|
|
13115
|
-
/** @example 2026-04-
|
|
13275
|
+
/** @example 2026-04-15T19:07:20.000000Z */
|
|
13116
13276
|
reported_at?: string;
|
|
13117
|
-
/** @example 2026-04-
|
|
13277
|
+
/** @example 2026-04-20T15:27:12.000000Z */
|
|
13118
13278
|
assigned_at?: string;
|
|
13119
13279
|
/** @example null */
|
|
13120
13280
|
completed_at?: string | null;
|
|
13121
|
-
/** @example 2026-04-
|
|
13281
|
+
/** @example 2026-04-23T20:49:35.000000Z */
|
|
13122
13282
|
sla_deadline?: string;
|
|
13123
|
-
/** @example 2026-04-
|
|
13283
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
13124
13284
|
created_at?: string;
|
|
13125
|
-
/** @example 2026-04-
|
|
13285
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
13126
13286
|
updated_at?: string;
|
|
13127
13287
|
};
|
|
13128
13288
|
};
|
|
@@ -13159,7 +13319,7 @@ export interface operations {
|
|
|
13159
13319
|
content: {
|
|
13160
13320
|
"application/json": {
|
|
13161
13321
|
data?: {
|
|
13162
|
-
/** @example
|
|
13322
|
+
/** @example f6175972-c136-4b67-8c34-4f8bd668dced */
|
|
13163
13323
|
uid?: string;
|
|
13164
13324
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
13165
13325
|
title?: string;
|
|
@@ -13169,17 +13329,17 @@ export interface operations {
|
|
|
13169
13329
|
status?: string;
|
|
13170
13330
|
/** @example emergency */
|
|
13171
13331
|
priority?: string;
|
|
13172
|
-
/** @example 2026-04-
|
|
13332
|
+
/** @example 2026-04-15T19:07:20.000000Z */
|
|
13173
13333
|
reported_at?: string;
|
|
13174
|
-
/** @example 2026-04-
|
|
13334
|
+
/** @example 2026-04-20T15:27:12.000000Z */
|
|
13175
13335
|
assigned_at?: string;
|
|
13176
13336
|
/** @example null */
|
|
13177
13337
|
completed_at?: string | null;
|
|
13178
|
-
/** @example 2026-04-
|
|
13338
|
+
/** @example 2026-04-23T20:49:35.000000Z */
|
|
13179
13339
|
sla_deadline?: string;
|
|
13180
|
-
/** @example 2026-04-
|
|
13340
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
13181
13341
|
created_at?: string;
|
|
13182
|
-
/** @example 2026-04-
|
|
13342
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
13183
13343
|
updated_at?: string;
|
|
13184
13344
|
};
|
|
13185
13345
|
};
|
|
@@ -13575,19 +13735,19 @@ export interface operations {
|
|
|
13575
13735
|
content: {
|
|
13576
13736
|
"application/json": {
|
|
13577
13737
|
data?: {
|
|
13578
|
-
/** @example
|
|
13738
|
+
/** @example 106 */
|
|
13579
13739
|
id?: number;
|
|
13580
13740
|
/** @example 2 */
|
|
13581
13741
|
listing_id?: number;
|
|
13582
13742
|
/** @example completed */
|
|
13583
13743
|
status?: string;
|
|
13584
13744
|
scheduled?: {
|
|
13585
|
-
/** @example
|
|
13745
|
+
/** @example 1995-07-19T00:00:00.000000Z */
|
|
13586
13746
|
start?: string;
|
|
13587
|
-
/** @example
|
|
13747
|
+
/** @example 1973-12-22T00:00:00.000000Z */
|
|
13588
13748
|
end?: string;
|
|
13589
13749
|
};
|
|
13590
|
-
/** @example 2026-04-
|
|
13750
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
13591
13751
|
created_at?: string;
|
|
13592
13752
|
};
|
|
13593
13753
|
};
|
|
@@ -13614,7 +13774,7 @@ export interface operations {
|
|
|
13614
13774
|
content: {
|
|
13615
13775
|
"application/json": {
|
|
13616
13776
|
data?: {
|
|
13617
|
-
/** @example
|
|
13777
|
+
/** @example 107 */
|
|
13618
13778
|
id?: number;
|
|
13619
13779
|
/** @example 2 */
|
|
13620
13780
|
listing_id?: number;
|
|
@@ -13626,7 +13786,7 @@ export interface operations {
|
|
|
13626
13786
|
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13627
13787
|
end?: string;
|
|
13628
13788
|
};
|
|
13629
|
-
/** @example 2026-04-
|
|
13789
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
13630
13790
|
created_at?: string;
|
|
13631
13791
|
};
|
|
13632
13792
|
};
|
|
@@ -13652,29 +13812,29 @@ export interface operations {
|
|
|
13652
13812
|
/**
|
|
13653
13813
|
* @example [
|
|
13654
13814
|
* {
|
|
13655
|
-
* "id":
|
|
13815
|
+
* "id": 108,
|
|
13656
13816
|
* "listing_id": 2,
|
|
13657
13817
|
* "status": "completed",
|
|
13658
13818
|
* "scheduled": {
|
|
13659
13819
|
* "start": "1981-11-18T00:00:00.000000Z",
|
|
13660
13820
|
* "end": "1979-12-15T00:00:00.000000Z"
|
|
13661
13821
|
* },
|
|
13662
|
-
* "created_at": "2026-04-
|
|
13822
|
+
* "created_at": "2026-04-22T07:53:46.000000Z"
|
|
13663
13823
|
* },
|
|
13664
13824
|
* {
|
|
13665
|
-
* "id":
|
|
13825
|
+
* "id": 109,
|
|
13666
13826
|
* "listing_id": 2,
|
|
13667
13827
|
* "status": "completed",
|
|
13668
13828
|
* "scheduled": {
|
|
13669
|
-
* "start": "2006-09-
|
|
13829
|
+
* "start": "2006-09-18T00:00:00.000000Z",
|
|
13670
13830
|
* "end": "2015-01-19T00:00:00.000000Z"
|
|
13671
13831
|
* },
|
|
13672
|
-
* "created_at": "2026-04-
|
|
13832
|
+
* "created_at": "2026-04-22T07:53:46.000000Z"
|
|
13673
13833
|
* }
|
|
13674
13834
|
* ]
|
|
13675
13835
|
*/
|
|
13676
13836
|
data?: {
|
|
13677
|
-
/** @example
|
|
13837
|
+
/** @example 108 */
|
|
13678
13838
|
id?: number;
|
|
13679
13839
|
/** @example 2 */
|
|
13680
13840
|
listing_id?: number;
|
|
@@ -13686,7 +13846,7 @@ export interface operations {
|
|
|
13686
13846
|
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13687
13847
|
end?: string;
|
|
13688
13848
|
};
|
|
13689
|
-
/** @example 2026-04-
|
|
13849
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
13690
13850
|
created_at?: string;
|
|
13691
13851
|
}[];
|
|
13692
13852
|
links?: {
|
|
@@ -13786,7 +13946,7 @@ export interface operations {
|
|
|
13786
13946
|
content: {
|
|
13787
13947
|
"application/json": {
|
|
13788
13948
|
data?: {
|
|
13789
|
-
/** @example
|
|
13949
|
+
/** @example 110 */
|
|
13790
13950
|
id?: number;
|
|
13791
13951
|
/** @example 2 */
|
|
13792
13952
|
listing_id?: number;
|
|
@@ -13798,7 +13958,7 @@ export interface operations {
|
|
|
13798
13958
|
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13799
13959
|
end?: string;
|
|
13800
13960
|
};
|
|
13801
|
-
/** @example 2026-04-
|
|
13961
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
13802
13962
|
created_at?: string;
|
|
13803
13963
|
};
|
|
13804
13964
|
};
|
|
@@ -13825,7 +13985,7 @@ export interface operations {
|
|
|
13825
13985
|
content: {
|
|
13826
13986
|
"application/json": {
|
|
13827
13987
|
data?: {
|
|
13828
|
-
/** @example
|
|
13988
|
+
/** @example 111 */
|
|
13829
13989
|
id?: number;
|
|
13830
13990
|
/** @example 2 */
|
|
13831
13991
|
listing_id?: number;
|
|
@@ -13837,7 +13997,7 @@ export interface operations {
|
|
|
13837
13997
|
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13838
13998
|
end?: string;
|
|
13839
13999
|
};
|
|
13840
|
-
/** @example 2026-04-
|
|
14000
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
13841
14001
|
created_at?: string;
|
|
13842
14002
|
};
|
|
13843
14003
|
};
|
|
@@ -13864,7 +14024,7 @@ export interface operations {
|
|
|
13864
14024
|
content: {
|
|
13865
14025
|
"application/json": {
|
|
13866
14026
|
data?: {
|
|
13867
|
-
/** @example
|
|
14027
|
+
/** @example 112 */
|
|
13868
14028
|
id?: number;
|
|
13869
14029
|
/** @example 2 */
|
|
13870
14030
|
listing_id?: number;
|
|
@@ -13876,7 +14036,7 @@ export interface operations {
|
|
|
13876
14036
|
/** @example 1979-12-15T00:00:00.000000Z */
|
|
13877
14037
|
end?: string;
|
|
13878
14038
|
};
|
|
13879
|
-
/** @example 2026-04-
|
|
14039
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
13880
14040
|
created_at?: string;
|
|
13881
14041
|
};
|
|
13882
14042
|
};
|
|
@@ -14947,7 +15107,7 @@ export interface operations {
|
|
|
14947
15107
|
content: {
|
|
14948
15108
|
"application/json": {
|
|
14949
15109
|
data?: {
|
|
14950
|
-
/** @example
|
|
15110
|
+
/** @example 4f0579da-5414-4909-94ef-e69eb87c8197 */
|
|
14951
15111
|
uid?: string;
|
|
14952
15112
|
/** @example Ms. Audra Crooks II */
|
|
14953
15113
|
username?: string;
|
|
@@ -14977,9 +15137,9 @@ export interface operations {
|
|
|
14977
15137
|
timezone?: string;
|
|
14978
15138
|
/** @example Customer */
|
|
14979
15139
|
user_type?: string;
|
|
14980
|
-
/** @example
|
|
15140
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
14981
15141
|
created?: string;
|
|
14982
|
-
/** @example
|
|
15142
|
+
/** @example 0 seconds ago */
|
|
14983
15143
|
email_verified_at?: string;
|
|
14984
15144
|
verification_status?: {
|
|
14985
15145
|
/** @example not_verified */
|
|
@@ -15446,7 +15606,7 @@ export interface operations {
|
|
|
15446
15606
|
content: {
|
|
15447
15607
|
"application/json": {
|
|
15448
15608
|
data?: {
|
|
15449
|
-
/** @example
|
|
15609
|
+
/** @example 3d7ff3c1-2c80-4dd8-b804-a07a6c7447d7 */
|
|
15450
15610
|
uid?: string;
|
|
15451
15611
|
/** @example Ms. Audra Crooks II */
|
|
15452
15612
|
username?: string;
|
|
@@ -15476,7 +15636,7 @@ export interface operations {
|
|
|
15476
15636
|
timezone?: string;
|
|
15477
15637
|
/** @example Customer */
|
|
15478
15638
|
user_type?: string;
|
|
15479
|
-
/** @example
|
|
15639
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
15480
15640
|
created?: string;
|
|
15481
15641
|
/** @example 0 seconds ago */
|
|
15482
15642
|
email_verified_at?: string;
|
|
@@ -15597,20 +15757,20 @@ export interface operations {
|
|
|
15597
15757
|
content: {
|
|
15598
15758
|
"application/json": {
|
|
15599
15759
|
data?: {
|
|
15600
|
-
/** @example New For
|
|
15760
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
15601
15761
|
draft_name?: string;
|
|
15602
|
-
/** @example LST-
|
|
15762
|
+
/** @example LST-PRP-LTR-MO9RAKM7IBP */
|
|
15603
15763
|
sku?: string;
|
|
15604
|
-
/** @example
|
|
15764
|
+
/** @example aad0ce50-cd9b-42ba-9d9f-0314f9e7653a */
|
|
15605
15765
|
uid?: string;
|
|
15606
|
-
/** @example
|
|
15766
|
+
/** @example Rent */
|
|
15607
15767
|
listing_type?: string;
|
|
15608
|
-
/** @example
|
|
15768
|
+
/** @example Property */
|
|
15609
15769
|
vertical?: string;
|
|
15610
|
-
/** @example
|
|
15611
|
-
arrangement_type?: string
|
|
15612
|
-
/** @example
|
|
15613
|
-
arrangement_type_label?: string
|
|
15770
|
+
/** @example let_to_let */
|
|
15771
|
+
arrangement_type?: string;
|
|
15772
|
+
/** @example Let to Let */
|
|
15773
|
+
arrangement_type_label?: string;
|
|
15614
15774
|
/** @example null */
|
|
15615
15775
|
price?: string | null;
|
|
15616
15776
|
/** @example draft */
|
|
@@ -15621,8 +15781,10 @@ export interface operations {
|
|
|
15621
15781
|
published_since?: string | null;
|
|
15622
15782
|
/** @example false */
|
|
15623
15783
|
is_visible?: boolean;
|
|
15624
|
-
|
|
15625
|
-
|
|
15784
|
+
summary?: {
|
|
15785
|
+
/** @example null */
|
|
15786
|
+
availability?: string | null;
|
|
15787
|
+
};
|
|
15626
15788
|
/** @example [] */
|
|
15627
15789
|
workflow?: unknown[];
|
|
15628
15790
|
/** @example [] */
|
|
@@ -15723,9 +15885,9 @@ export interface operations {
|
|
|
15723
15885
|
/**
|
|
15724
15886
|
* @example [
|
|
15725
15887
|
* {
|
|
15726
|
-
* "draft_name": "New For Rent Property draft •
|
|
15727
|
-
* "sku": "LST-PRP-LTR-
|
|
15728
|
-
* "uid": "
|
|
15888
|
+
* "draft_name": "New For Rent Property draft • 22 Apr 2026, 7:53 AM",
|
|
15889
|
+
* "sku": "LST-PRP-LTR-MO9RAKR6DHL",
|
|
15890
|
+
* "uid": "8543b467-bb9f-4562-8403-c522a0eb4781",
|
|
15729
15891
|
* "listing_type": "Rent",
|
|
15730
15892
|
* "vertical": "Property",
|
|
15731
15893
|
* "arrangement_type": "let_to_let",
|
|
@@ -15742,9 +15904,9 @@ export interface operations {
|
|
|
15742
15904
|
* "media": []
|
|
15743
15905
|
* },
|
|
15744
15906
|
* {
|
|
15745
|
-
* "draft_name": "New Short Let Property draft •
|
|
15746
|
-
* "sku": "LST-PRP-SHL-
|
|
15747
|
-
* "uid": "
|
|
15907
|
+
* "draft_name": "New Short Let Property draft • 22 Apr 2026, 7:53 AM",
|
|
15908
|
+
* "sku": "LST-PRP-SHL-MO9RAKR9G2H",
|
|
15909
|
+
* "uid": "af556141-d24e-45bf-843e-4fd58cd68b00",
|
|
15748
15910
|
* "listing_type": "Short Let",
|
|
15749
15911
|
* "vertical": "Property",
|
|
15750
15912
|
* "arrangement_type": "short_term_managed",
|
|
@@ -15763,11 +15925,11 @@ export interface operations {
|
|
|
15763
15925
|
* ]
|
|
15764
15926
|
*/
|
|
15765
15927
|
data?: {
|
|
15766
|
-
/** @example New For Rent Property draft •
|
|
15928
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
15767
15929
|
draft_name?: string;
|
|
15768
|
-
/** @example LST-PRP-LTR-
|
|
15930
|
+
/** @example LST-PRP-LTR-MO9RAKR6DHL */
|
|
15769
15931
|
sku?: string;
|
|
15770
|
-
/** @example
|
|
15932
|
+
/** @example 8543b467-bb9f-4562-8403-c522a0eb4781 */
|
|
15771
15933
|
uid?: string;
|
|
15772
15934
|
/** @example Rent */
|
|
15773
15935
|
listing_type?: string;
|
|
@@ -15877,9 +16039,9 @@ export interface operations {
|
|
|
15877
16039
|
/**
|
|
15878
16040
|
* @example [
|
|
15879
16041
|
* {
|
|
15880
|
-
* "draft_name": "New For Rent Property draft •
|
|
15881
|
-
* "sku": "LST-PRP-LTR-
|
|
15882
|
-
* "uid": "
|
|
16042
|
+
* "draft_name": "New For Rent Property draft • 22 Apr 2026, 7:53 AM",
|
|
16043
|
+
* "sku": "LST-PRP-LTR-MO9RAKRICMS",
|
|
16044
|
+
* "uid": "c6534ec4-be82-4c62-83fb-65de8dc62218",
|
|
15883
16045
|
* "listing_type": "Rent",
|
|
15884
16046
|
* "vertical": "Property",
|
|
15885
16047
|
* "arrangement_type": "let_to_let",
|
|
@@ -15896,9 +16058,9 @@ export interface operations {
|
|
|
15896
16058
|
* "media": []
|
|
15897
16059
|
* },
|
|
15898
16060
|
* {
|
|
15899
|
-
* "draft_name": "New Short Let Property draft •
|
|
15900
|
-
* "sku": "LST-PRP-SHL-
|
|
15901
|
-
* "uid": "
|
|
16061
|
+
* "draft_name": "New Short Let Property draft • 22 Apr 2026, 7:53 AM",
|
|
16062
|
+
* "sku": "LST-PRP-SHL-MO9RAKRREFY",
|
|
16063
|
+
* "uid": "799cdd38-e944-46f1-86e5-a9f7ee919f23",
|
|
15902
16064
|
* "listing_type": "Short Let",
|
|
15903
16065
|
* "vertical": "Property",
|
|
15904
16066
|
* "arrangement_type": "short_term_managed",
|
|
@@ -15917,11 +16079,11 @@ export interface operations {
|
|
|
15917
16079
|
* ]
|
|
15918
16080
|
*/
|
|
15919
16081
|
data?: {
|
|
15920
|
-
/** @example New For Rent Property draft •
|
|
16082
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
15921
16083
|
draft_name?: string;
|
|
15922
|
-
/** @example LST-PRP-LTR-
|
|
16084
|
+
/** @example LST-PRP-LTR-MO9RAKRICMS */
|
|
15923
16085
|
sku?: string;
|
|
15924
|
-
/** @example
|
|
16086
|
+
/** @example c6534ec4-be82-4c62-83fb-65de8dc62218 */
|
|
15925
16087
|
uid?: string;
|
|
15926
16088
|
/** @example Rent */
|
|
15927
16089
|
listing_type?: string;
|
|
@@ -16985,7 +17147,7 @@ export interface operations {
|
|
|
16985
17147
|
content: {
|
|
16986
17148
|
"application/json": {
|
|
16987
17149
|
data?: {
|
|
16988
|
-
/** @example
|
|
17150
|
+
/** @example ca40b42d-bb3b-4f1c-a2d3-2c61ec35931b */
|
|
16989
17151
|
uid?: string;
|
|
16990
17152
|
/** @example photo */
|
|
16991
17153
|
media_type?: string;
|
|
@@ -17134,11 +17296,11 @@ export interface operations {
|
|
|
17134
17296
|
content: {
|
|
17135
17297
|
"application/json": {
|
|
17136
17298
|
data?: {
|
|
17137
|
-
/** @example New For Rent Property draft •
|
|
17299
|
+
/** @example New For Rent Property draft • 22 Apr 2026, 7:53 AM */
|
|
17138
17300
|
draft_name?: string;
|
|
17139
|
-
/** @example LST-PRP-LTR-
|
|
17301
|
+
/** @example LST-PRP-LTR-MO9RAKYJC0J */
|
|
17140
17302
|
sku?: string;
|
|
17141
|
-
/** @example
|
|
17303
|
+
/** @example 9e062ba5-2aa1-4095-b771-586ef51fdfa1 */
|
|
17142
17304
|
uid?: string;
|
|
17143
17305
|
/** @example Rent */
|
|
17144
17306
|
listing_type?: string;
|
|
@@ -17298,7 +17460,7 @@ export interface operations {
|
|
|
17298
17460
|
content: {
|
|
17299
17461
|
"application/json": {
|
|
17300
17462
|
data?: {
|
|
17301
|
-
/** @example
|
|
17463
|
+
/** @example 4b4e94f6-580c-4259-a4ef-84c1294cd0e6 */
|
|
17302
17464
|
uid?: string;
|
|
17303
17465
|
/** @example null */
|
|
17304
17466
|
compliances?: string | null;
|
|
@@ -17349,7 +17511,7 @@ export interface operations {
|
|
|
17349
17511
|
content: {
|
|
17350
17512
|
"application/json": {
|
|
17351
17513
|
data?: {
|
|
17352
|
-
/** @example
|
|
17514
|
+
/** @example 99 */
|
|
17353
17515
|
id?: number;
|
|
17354
17516
|
compliance?: {
|
|
17355
17517
|
/** @example 1 */
|
|
@@ -17371,7 +17533,7 @@ export interface operations {
|
|
|
17371
17533
|
reviewed_by?: number;
|
|
17372
17534
|
/** @example null */
|
|
17373
17535
|
reviewed_at?: string | null;
|
|
17374
|
-
/** @example 2026-04-
|
|
17536
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
17375
17537
|
created_at?: string;
|
|
17376
17538
|
};
|
|
17377
17539
|
};
|
|
@@ -17426,7 +17588,7 @@ export interface operations {
|
|
|
17426
17588
|
/**
|
|
17427
17589
|
* @example [
|
|
17428
17590
|
* {
|
|
17429
|
-
* "uid": "
|
|
17591
|
+
* "uid": "13e1249e-38ad-455e-b769-c8094ce901c9",
|
|
17430
17592
|
* "listing_id": 1,
|
|
17431
17593
|
* "landlord_id": 2,
|
|
17432
17594
|
* "tenant_id": 2,
|
|
@@ -17438,10 +17600,10 @@ export interface operations {
|
|
|
17438
17600
|
* "is_periodic": false,
|
|
17439
17601
|
* "company_name": null,
|
|
17440
17602
|
* "company_registration_number": null,
|
|
17441
|
-
* "created_at": "2026-04-
|
|
17603
|
+
* "created_at": "2026-04-22T07:53:45.000000Z"
|
|
17442
17604
|
* },
|
|
17443
17605
|
* {
|
|
17444
|
-
* "uid": "
|
|
17606
|
+
* "uid": "2a75054b-a581-4694-9131-a2e6c113baf6",
|
|
17445
17607
|
* "listing_id": 1,
|
|
17446
17608
|
* "landlord_id": 2,
|
|
17447
17609
|
* "tenant_id": 2,
|
|
@@ -17453,12 +17615,12 @@ export interface operations {
|
|
|
17453
17615
|
* "is_periodic": false,
|
|
17454
17616
|
* "company_name": null,
|
|
17455
17617
|
* "company_registration_number": null,
|
|
17456
|
-
* "created_at": "2026-04-
|
|
17618
|
+
* "created_at": "2026-04-22T07:53:45.000000Z"
|
|
17457
17619
|
* }
|
|
17458
17620
|
* ]
|
|
17459
17621
|
*/
|
|
17460
17622
|
data?: {
|
|
17461
|
-
/** @example
|
|
17623
|
+
/** @example 13e1249e-38ad-455e-b769-c8094ce901c9 */
|
|
17462
17624
|
uid?: string;
|
|
17463
17625
|
/** @example 1 */
|
|
17464
17626
|
listing_id?: number;
|
|
@@ -17482,7 +17644,7 @@ export interface operations {
|
|
|
17482
17644
|
company_name?: string | null;
|
|
17483
17645
|
/** @example null */
|
|
17484
17646
|
company_registration_number?: string | null;
|
|
17485
|
-
/** @example 2026-04-
|
|
17647
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
17486
17648
|
created_at?: string;
|
|
17487
17649
|
}[];
|
|
17488
17650
|
links?: {
|
|
@@ -17569,7 +17731,7 @@ export interface operations {
|
|
|
17569
17731
|
/**
|
|
17570
17732
|
* @example [
|
|
17571
17733
|
* {
|
|
17572
|
-
* "uid": "
|
|
17734
|
+
* "uid": "c1553e66-90cf-4627-9cca-9a35621f9272",
|
|
17573
17735
|
* "listing_id": 1,
|
|
17574
17736
|
* "landlord_id": 2,
|
|
17575
17737
|
* "tenant_id": 2,
|
|
@@ -17581,10 +17743,10 @@ export interface operations {
|
|
|
17581
17743
|
* "is_periodic": false,
|
|
17582
17744
|
* "company_name": null,
|
|
17583
17745
|
* "company_registration_number": null,
|
|
17584
|
-
* "created_at": "2026-04-
|
|
17746
|
+
* "created_at": "2026-04-22T07:53:45.000000Z"
|
|
17585
17747
|
* },
|
|
17586
17748
|
* {
|
|
17587
|
-
* "uid": "
|
|
17749
|
+
* "uid": "0a62012f-4d13-4214-b7bf-3d368c4b2687",
|
|
17588
17750
|
* "listing_id": 1,
|
|
17589
17751
|
* "landlord_id": 2,
|
|
17590
17752
|
* "tenant_id": 2,
|
|
@@ -17596,12 +17758,12 @@ export interface operations {
|
|
|
17596
17758
|
* "is_periodic": false,
|
|
17597
17759
|
* "company_name": null,
|
|
17598
17760
|
* "company_registration_number": null,
|
|
17599
|
-
* "created_at": "2026-04-
|
|
17761
|
+
* "created_at": "2026-04-22T07:53:45.000000Z"
|
|
17600
17762
|
* }
|
|
17601
17763
|
* ]
|
|
17602
17764
|
*/
|
|
17603
17765
|
data?: {
|
|
17604
|
-
/** @example
|
|
17766
|
+
/** @example c1553e66-90cf-4627-9cca-9a35621f9272 */
|
|
17605
17767
|
uid?: string;
|
|
17606
17768
|
/** @example 1 */
|
|
17607
17769
|
listing_id?: number;
|
|
@@ -17625,7 +17787,7 @@ export interface operations {
|
|
|
17625
17787
|
company_name?: string | null;
|
|
17626
17788
|
/** @example null */
|
|
17627
17789
|
company_registration_number?: string | null;
|
|
17628
|
-
/** @example 2026-04-
|
|
17790
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
17629
17791
|
created_at?: string;
|
|
17630
17792
|
}[];
|
|
17631
17793
|
links?: {
|
|
@@ -17732,7 +17894,7 @@ export interface operations {
|
|
|
17732
17894
|
content: {
|
|
17733
17895
|
"application/json": {
|
|
17734
17896
|
data?: {
|
|
17735
|
-
/** @example
|
|
17897
|
+
/** @example 117 */
|
|
17736
17898
|
id?: number;
|
|
17737
17899
|
compliance?: {
|
|
17738
17900
|
/** @example 1 */
|
|
@@ -17752,9 +17914,9 @@ export interface operations {
|
|
|
17752
17914
|
rejection_reason?: string | null;
|
|
17753
17915
|
/** @example 1 */
|
|
17754
17916
|
reviewed_by?: number;
|
|
17755
|
-
/** @example 2026-04-
|
|
17917
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
17756
17918
|
reviewed_at?: string;
|
|
17757
|
-
/** @example 2026-04-
|
|
17919
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
17758
17920
|
created_at?: string;
|
|
17759
17921
|
};
|
|
17760
17922
|
};
|
|
@@ -17781,7 +17943,7 @@ export interface operations {
|
|
|
17781
17943
|
content: {
|
|
17782
17944
|
"application/json": {
|
|
17783
17945
|
data?: {
|
|
17784
|
-
/** @example
|
|
17946
|
+
/** @example 118 */
|
|
17785
17947
|
id?: number;
|
|
17786
17948
|
compliance?: {
|
|
17787
17949
|
/** @example 1 */
|
|
@@ -17801,9 +17963,9 @@ export interface operations {
|
|
|
17801
17963
|
rejection_reason?: string | null;
|
|
17802
17964
|
/** @example 1 */
|
|
17803
17965
|
reviewed_by?: number;
|
|
17804
|
-
/** @example 2026-04-
|
|
17966
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
17805
17967
|
reviewed_at?: string;
|
|
17806
|
-
/** @example 2026-04-
|
|
17968
|
+
/** @example 2026-04-22T07:53:45.000000Z */
|
|
17807
17969
|
created_at?: string;
|
|
17808
17970
|
};
|
|
17809
17971
|
};
|
|
@@ -18825,35 +18987,35 @@ export interface operations {
|
|
|
18825
18987
|
/**
|
|
18826
18988
|
* @example [
|
|
18827
18989
|
* {
|
|
18828
|
-
* "uid": "
|
|
18990
|
+
* "uid": "c26511e0-0be7-4220-a59b-0d69efb7b8f2",
|
|
18829
18991
|
* "title": "Quos velit et fugiat sunt nihil.",
|
|
18830
18992
|
* "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.",
|
|
18831
18993
|
* "status": "reported",
|
|
18832
18994
|
* "priority": "emergency",
|
|
18833
|
-
* "reported_at": "2026-04-
|
|
18834
|
-
* "assigned_at": "2026-04-
|
|
18995
|
+
* "reported_at": "2026-04-15T19:07:21.000000Z",
|
|
18996
|
+
* "assigned_at": "2026-04-20T15:27:13.000000Z",
|
|
18835
18997
|
* "completed_at": null,
|
|
18836
|
-
* "sla_deadline": "2026-04-
|
|
18837
|
-
* "created_at": "2026-04-
|
|
18838
|
-
* "updated_at": "2026-04-
|
|
18998
|
+
* "sla_deadline": "2026-04-23T20:49:36.000000Z",
|
|
18999
|
+
* "created_at": "2026-04-22T07:53:46.000000Z",
|
|
19000
|
+
* "updated_at": "2026-04-22T07:53:46.000000Z"
|
|
18839
19001
|
* },
|
|
18840
19002
|
* {
|
|
18841
|
-
* "uid": "
|
|
19003
|
+
* "uid": "9599429c-03d6-4199-8915-9b9c734167df",
|
|
18842
19004
|
* "title": "Fugit deleniti distinctio eum doloremque.",
|
|
18843
19005
|
* "description": "Libero aliquam veniam corporis dolorem mollitia deleniti. Odit quia officia est dignissimos neque blanditiis odio. Excepturi doloribus delectus fugit qui repudiandae laboriosam.",
|
|
18844
19006
|
* "status": "completed",
|
|
18845
19007
|
* "priority": "normal",
|
|
18846
|
-
* "reported_at": "2026-04-
|
|
19008
|
+
* "reported_at": "2026-04-18T07:45:46.000000Z",
|
|
18847
19009
|
* "assigned_at": null,
|
|
18848
19010
|
* "completed_at": null,
|
|
18849
|
-
* "sla_deadline": "2026-04-
|
|
18850
|
-
* "created_at": "2026-04-
|
|
18851
|
-
* "updated_at": "2026-04-
|
|
19011
|
+
* "sla_deadline": "2026-04-25T04:49:33.000000Z",
|
|
19012
|
+
* "created_at": "2026-04-22T07:53:46.000000Z",
|
|
19013
|
+
* "updated_at": "2026-04-22T07:53:46.000000Z"
|
|
18852
19014
|
* }
|
|
18853
19015
|
* ]
|
|
18854
19016
|
*/
|
|
18855
19017
|
data?: {
|
|
18856
|
-
/** @example
|
|
19018
|
+
/** @example c26511e0-0be7-4220-a59b-0d69efb7b8f2 */
|
|
18857
19019
|
uid?: string;
|
|
18858
19020
|
/** @example Quos velit et fugiat sunt nihil. */
|
|
18859
19021
|
title?: string;
|
|
@@ -18863,17 +19025,17 @@ export interface operations {
|
|
|
18863
19025
|
status?: string;
|
|
18864
19026
|
/** @example emergency */
|
|
18865
19027
|
priority?: string;
|
|
18866
|
-
/** @example 2026-04-
|
|
19028
|
+
/** @example 2026-04-15T19:07:21.000000Z */
|
|
18867
19029
|
reported_at?: string;
|
|
18868
|
-
/** @example 2026-04-
|
|
19030
|
+
/** @example 2026-04-20T15:27:13.000000Z */
|
|
18869
19031
|
assigned_at?: string;
|
|
18870
19032
|
/** @example null */
|
|
18871
19033
|
completed_at?: string | null;
|
|
18872
|
-
/** @example 2026-04-
|
|
19034
|
+
/** @example 2026-04-23T20:49:36.000000Z */
|
|
18873
19035
|
sla_deadline?: string;
|
|
18874
|
-
/** @example 2026-04-
|
|
19036
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
18875
19037
|
created_at?: string;
|
|
18876
|
-
/** @example 2026-04-
|
|
19038
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
18877
19039
|
updated_at?: string;
|
|
18878
19040
|
}[];
|
|
18879
19041
|
links?: {
|
|
@@ -18968,13 +19130,13 @@ export interface operations {
|
|
|
18968
19130
|
content: {
|
|
18969
19131
|
"application/json": {
|
|
18970
19132
|
data?: {
|
|
18971
|
-
/** @example
|
|
19133
|
+
/** @example 147acdd6-aa0f-428f-96e1-bff6648a7346 */
|
|
18972
19134
|
uid?: string;
|
|
18973
19135
|
/** @example image */
|
|
18974
19136
|
file_type?: string;
|
|
18975
19137
|
/** @example /storage/maintenance/a4855dc5-0acb-33c3-b921-f4291f719ca0.pdf */
|
|
18976
19138
|
url?: string;
|
|
18977
|
-
/** @example 2026-04-
|
|
19139
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
18978
19140
|
created_at?: string;
|
|
18979
19141
|
};
|
|
18980
19142
|
};
|
|
@@ -19019,7 +19181,7 @@ export interface operations {
|
|
|
19019
19181
|
content: {
|
|
19020
19182
|
"application/json": {
|
|
19021
19183
|
data?: {
|
|
19022
|
-
/** @example
|
|
19184
|
+
/** @example 46 */
|
|
19023
19185
|
id?: number;
|
|
19024
19186
|
/** @example property_inquiry */
|
|
19025
19187
|
type?: string;
|
|
@@ -19027,7 +19189,7 @@ export interface operations {
|
|
|
19027
19189
|
listing_id?: number;
|
|
19028
19190
|
/** @example null */
|
|
19029
19191
|
last_message_at?: string | null;
|
|
19030
|
-
/** @example 2026-04-
|
|
19192
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
19031
19193
|
created_at?: string;
|
|
19032
19194
|
};
|
|
19033
19195
|
};
|
|
@@ -19053,23 +19215,23 @@ export interface operations {
|
|
|
19053
19215
|
/**
|
|
19054
19216
|
* @example [
|
|
19055
19217
|
* {
|
|
19056
|
-
* "id":
|
|
19218
|
+
* "id": 47,
|
|
19057
19219
|
* "type": "property_inquiry",
|
|
19058
19220
|
* "listing_id": 2,
|
|
19059
19221
|
* "last_message_at": null,
|
|
19060
|
-
* "created_at": "2026-04-
|
|
19222
|
+
* "created_at": "2026-04-22T07:53:46.000000Z"
|
|
19061
19223
|
* },
|
|
19062
19224
|
* {
|
|
19063
|
-
* "id":
|
|
19225
|
+
* "id": 48,
|
|
19064
19226
|
* "type": "property_inquiry",
|
|
19065
19227
|
* "listing_id": 2,
|
|
19066
19228
|
* "last_message_at": null,
|
|
19067
|
-
* "created_at": "2026-04-
|
|
19229
|
+
* "created_at": "2026-04-22T07:53:46.000000Z"
|
|
19068
19230
|
* }
|
|
19069
19231
|
* ]
|
|
19070
19232
|
*/
|
|
19071
19233
|
data?: {
|
|
19072
|
-
/** @example
|
|
19234
|
+
/** @example 47 */
|
|
19073
19235
|
id?: number;
|
|
19074
19236
|
/** @example property_inquiry */
|
|
19075
19237
|
type?: string;
|
|
@@ -19077,7 +19239,7 @@ export interface operations {
|
|
|
19077
19239
|
listing_id?: number;
|
|
19078
19240
|
/** @example null */
|
|
19079
19241
|
last_message_at?: string | null;
|
|
19080
|
-
/** @example 2026-04-
|
|
19242
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
19081
19243
|
created_at?: string;
|
|
19082
19244
|
}[];
|
|
19083
19245
|
links?: {
|
|
@@ -19395,27 +19557,27 @@ export interface operations {
|
|
|
19395
19557
|
/**
|
|
19396
19558
|
* @example [
|
|
19397
19559
|
* {
|
|
19398
|
-
* "id": "
|
|
19560
|
+
* "id": "44e6d71e-b652-40b3-957a-ac75eaf75117",
|
|
19399
19561
|
* "type": "APPOINTMENT_CREATED",
|
|
19400
19562
|
* "title": "faker notification",
|
|
19401
19563
|
* "body": "faker notification body",
|
|
19402
19564
|
* "data": [],
|
|
19403
19565
|
* "read_at": null,
|
|
19404
|
-
* "created_at": "2026-04-
|
|
19566
|
+
* "created_at": "2026-04-22T07:53:46.000000Z"
|
|
19405
19567
|
* },
|
|
19406
19568
|
* {
|
|
19407
|
-
* "id": "
|
|
19569
|
+
* "id": "cbfe0522-b384-4087-b0f4-f8484a7131e9",
|
|
19408
19570
|
* "type": "APPOINTMENT_CREATED",
|
|
19409
19571
|
* "title": "faker notification",
|
|
19410
19572
|
* "body": "faker notification body",
|
|
19411
19573
|
* "data": [],
|
|
19412
19574
|
* "read_at": null,
|
|
19413
|
-
* "created_at": "2026-04-
|
|
19575
|
+
* "created_at": "2026-04-22T07:53:46.000000Z"
|
|
19414
19576
|
* }
|
|
19415
19577
|
* ]
|
|
19416
19578
|
*/
|
|
19417
19579
|
data?: {
|
|
19418
|
-
/** @example
|
|
19580
|
+
/** @example 44e6d71e-b652-40b3-957a-ac75eaf75117 */
|
|
19419
19581
|
id?: string;
|
|
19420
19582
|
/** @example APPOINTMENT_CREATED */
|
|
19421
19583
|
type?: string;
|
|
@@ -19427,7 +19589,7 @@ export interface operations {
|
|
|
19427
19589
|
data?: unknown[];
|
|
19428
19590
|
/** @example null */
|
|
19429
19591
|
read_at?: string | null;
|
|
19430
|
-
/** @example 2026-04-
|
|
19592
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
19431
19593
|
created_at?: string;
|
|
19432
19594
|
}[];
|
|
19433
19595
|
links?: {
|
|
@@ -19511,7 +19673,7 @@ export interface operations {
|
|
|
19511
19673
|
};
|
|
19512
19674
|
content: {
|
|
19513
19675
|
"application/json": {
|
|
19514
|
-
/** @example
|
|
19676
|
+
/** @example e949613a-4507-4c09-97d2-4b8200b7a803 */
|
|
19515
19677
|
id?: string;
|
|
19516
19678
|
/** @example APPOINTMENT_CREATED */
|
|
19517
19679
|
type?: string;
|
|
@@ -19523,7 +19685,7 @@ export interface operations {
|
|
|
19523
19685
|
data?: unknown[];
|
|
19524
19686
|
/** @example null */
|
|
19525
19687
|
read_at?: string | null;
|
|
19526
|
-
/** @example 2026-04-
|
|
19688
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
19527
19689
|
created_at?: string;
|
|
19528
19690
|
};
|
|
19529
19691
|
};
|
|
@@ -19770,45 +19932,45 @@ export interface operations {
|
|
|
19770
19932
|
/**
|
|
19771
19933
|
* @example [
|
|
19772
19934
|
* {
|
|
19773
|
-
* "id":
|
|
19935
|
+
* "id": 91,
|
|
19774
19936
|
* "rating": 1,
|
|
19775
19937
|
* "comment": "Nice Listing",
|
|
19776
19938
|
* "reviewer": {
|
|
19777
|
-
* "id":
|
|
19778
|
-
* "name": "
|
|
19939
|
+
* "id": 6,
|
|
19940
|
+
* "name": "Rowena Patel"
|
|
19779
19941
|
* },
|
|
19780
|
-
* "created_at": "2026-04-
|
|
19781
|
-
* "updated_at": "2026-04-
|
|
19942
|
+
* "created_at": "2026-04-22T07:53:46+00:00",
|
|
19943
|
+
* "updated_at": "2026-04-22T07:53:46+00:00"
|
|
19782
19944
|
* },
|
|
19783
19945
|
* {
|
|
19784
|
-
* "id":
|
|
19946
|
+
* "id": 92,
|
|
19785
19947
|
* "rating": 1,
|
|
19786
19948
|
* "comment": "Nice Listing",
|
|
19787
19949
|
* "reviewer": {
|
|
19788
|
-
* "id":
|
|
19789
|
-
* "name": "
|
|
19950
|
+
* "id": 26,
|
|
19951
|
+
* "name": "Arthur Reid"
|
|
19790
19952
|
* },
|
|
19791
|
-
* "created_at": "2026-04-
|
|
19792
|
-
* "updated_at": "2026-04-
|
|
19953
|
+
* "created_at": "2026-04-22T07:53:46+00:00",
|
|
19954
|
+
* "updated_at": "2026-04-22T07:53:46+00:00"
|
|
19793
19955
|
* }
|
|
19794
19956
|
* ]
|
|
19795
19957
|
*/
|
|
19796
19958
|
data?: {
|
|
19797
|
-
/** @example
|
|
19959
|
+
/** @example 91 */
|
|
19798
19960
|
id?: number;
|
|
19799
19961
|
/** @example 1 */
|
|
19800
19962
|
rating?: number;
|
|
19801
19963
|
/** @example Nice Listing */
|
|
19802
19964
|
comment?: string;
|
|
19803
19965
|
reviewer?: {
|
|
19804
|
-
/** @example
|
|
19966
|
+
/** @example 6 */
|
|
19805
19967
|
id?: number;
|
|
19806
|
-
/** @example
|
|
19968
|
+
/** @example Rowena Patel */
|
|
19807
19969
|
name?: string;
|
|
19808
19970
|
};
|
|
19809
|
-
/** @example 2026-04-
|
|
19971
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
19810
19972
|
created_at?: string;
|
|
19811
|
-
/** @example 2026-04-
|
|
19973
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
19812
19974
|
updated_at?: string;
|
|
19813
19975
|
}[];
|
|
19814
19976
|
links?: {
|
|
@@ -19962,21 +20124,21 @@ export interface operations {
|
|
|
19962
20124
|
content: {
|
|
19963
20125
|
"application/json": {
|
|
19964
20126
|
data?: {
|
|
19965
|
-
/** @example
|
|
20127
|
+
/** @example 93 */
|
|
19966
20128
|
id?: number;
|
|
19967
20129
|
/** @example 1 */
|
|
19968
20130
|
rating?: number;
|
|
19969
20131
|
/** @example Nice Listing */
|
|
19970
20132
|
comment?: string;
|
|
19971
20133
|
reviewer?: {
|
|
19972
|
-
/** @example
|
|
20134
|
+
/** @example 16 */
|
|
19973
20135
|
id?: number;
|
|
19974
|
-
/** @example
|
|
20136
|
+
/** @example Francesca Carter */
|
|
19975
20137
|
name?: string;
|
|
19976
20138
|
};
|
|
19977
|
-
/** @example 2026-04-
|
|
20139
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
19978
20140
|
created_at?: string;
|
|
19979
|
-
/** @example 2026-04-
|
|
20141
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
19980
20142
|
updated_at?: string;
|
|
19981
20143
|
};
|
|
19982
20144
|
};
|
|
@@ -20020,21 +20182,21 @@ export interface operations {
|
|
|
20020
20182
|
content: {
|
|
20021
20183
|
"application/json": {
|
|
20022
20184
|
data?: {
|
|
20023
|
-
/** @example
|
|
20185
|
+
/** @example 94 */
|
|
20024
20186
|
id?: number;
|
|
20025
20187
|
/** @example 1 */
|
|
20026
20188
|
rating?: number;
|
|
20027
20189
|
/** @example Nice Listing */
|
|
20028
20190
|
comment?: string;
|
|
20029
20191
|
reviewer?: {
|
|
20030
|
-
/** @example
|
|
20192
|
+
/** @example 7 */
|
|
20031
20193
|
id?: number;
|
|
20032
|
-
/** @example
|
|
20194
|
+
/** @example Sienna Palmer */
|
|
20033
20195
|
name?: string;
|
|
20034
20196
|
};
|
|
20035
|
-
/** @example 2026-04-
|
|
20197
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
20036
20198
|
created_at?: string;
|
|
20037
|
-
/** @example 2026-04-
|
|
20199
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
20038
20200
|
updated_at?: string;
|
|
20039
20201
|
};
|
|
20040
20202
|
};
|
|
@@ -20076,21 +20238,21 @@ export interface operations {
|
|
|
20076
20238
|
content: {
|
|
20077
20239
|
"application/json": {
|
|
20078
20240
|
data?: {
|
|
20079
|
-
/** @example
|
|
20241
|
+
/** @example 95 */
|
|
20080
20242
|
id?: number;
|
|
20081
20243
|
/** @example 1 */
|
|
20082
20244
|
rating?: number;
|
|
20083
20245
|
/** @example Nice Listing */
|
|
20084
20246
|
comment?: string;
|
|
20085
20247
|
reviewer?: {
|
|
20086
|
-
/** @example
|
|
20248
|
+
/** @example 26 */
|
|
20087
20249
|
id?: number;
|
|
20088
|
-
/** @example
|
|
20250
|
+
/** @example Arthur Reid */
|
|
20089
20251
|
name?: string;
|
|
20090
20252
|
};
|
|
20091
|
-
/** @example 2026-04-
|
|
20253
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
20092
20254
|
created_at?: string;
|
|
20093
|
-
/** @example 2026-04-
|
|
20255
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
20094
20256
|
updated_at?: string;
|
|
20095
20257
|
};
|
|
20096
20258
|
};
|
|
@@ -20117,21 +20279,21 @@ export interface operations {
|
|
|
20117
20279
|
content: {
|
|
20118
20280
|
"application/json": {
|
|
20119
20281
|
data?: {
|
|
20120
|
-
/** @example
|
|
20282
|
+
/** @example 96 */
|
|
20121
20283
|
id?: number;
|
|
20122
20284
|
/** @example 1 */
|
|
20123
20285
|
rating?: number;
|
|
20124
20286
|
/** @example Nice Listing */
|
|
20125
20287
|
comment?: string;
|
|
20126
20288
|
reviewer?: {
|
|
20127
|
-
/** @example
|
|
20289
|
+
/** @example 25 */
|
|
20128
20290
|
id?: number;
|
|
20129
|
-
/** @example
|
|
20291
|
+
/** @example Jayden Ward */
|
|
20130
20292
|
name?: string;
|
|
20131
20293
|
};
|
|
20132
|
-
/** @example 2026-04-
|
|
20294
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
20133
20295
|
created_at?: string;
|
|
20134
|
-
/** @example 2026-04-
|
|
20296
|
+
/** @example 2026-04-22T07:53:46+00:00 */
|
|
20135
20297
|
updated_at?: string;
|
|
20136
20298
|
};
|
|
20137
20299
|
};
|
|
@@ -20158,7 +20320,7 @@ export interface operations {
|
|
|
20158
20320
|
content: {
|
|
20159
20321
|
"application/json": {
|
|
20160
20322
|
data?: {
|
|
20161
|
-
/** @example
|
|
20323
|
+
/** @example b5a11f74-f204-4a9b-ad89-895ebc0c9a09 */
|
|
20162
20324
|
uid?: string;
|
|
20163
20325
|
/** @example 1 */
|
|
20164
20326
|
listing_id?: number;
|
|
@@ -20166,15 +20328,15 @@ export interface operations {
|
|
|
20166
20328
|
landlord_id?: number;
|
|
20167
20329
|
/** @example 2 */
|
|
20168
20330
|
tenant_id?: number;
|
|
20169
|
-
/** @example
|
|
20331
|
+
/** @example 3984.38 */
|
|
20170
20332
|
rent_amount?: string;
|
|
20171
|
-
/** @example
|
|
20333
|
+
/** @example 941.19 */
|
|
20172
20334
|
deposit_amount?: string;
|
|
20173
|
-
/** @example
|
|
20335
|
+
/** @example offer_pending */
|
|
20174
20336
|
state?: string;
|
|
20175
|
-
/** @example
|
|
20337
|
+
/** @example 2026-03-10T00:00:00.000000Z */
|
|
20176
20338
|
start_date?: string;
|
|
20177
|
-
/** @example
|
|
20339
|
+
/** @example 2027-03-10T00:00:00.000000Z */
|
|
20178
20340
|
end_date?: string;
|
|
20179
20341
|
/** @example false */
|
|
20180
20342
|
is_periodic?: boolean;
|
|
@@ -20182,7 +20344,7 @@ export interface operations {
|
|
|
20182
20344
|
company_name?: string | null;
|
|
20183
20345
|
/** @example null */
|
|
20184
20346
|
company_registration_number?: string | null;
|
|
20185
|
-
/** @example 2026-04-
|
|
20347
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
20186
20348
|
created_at?: string;
|
|
20187
20349
|
/** @example [] */
|
|
20188
20350
|
compliances?: unknown[];
|
|
@@ -20259,7 +20421,7 @@ export interface operations {
|
|
|
20259
20421
|
content: {
|
|
20260
20422
|
"application/json": {
|
|
20261
20423
|
data?: {
|
|
20262
|
-
/** @example
|
|
20424
|
+
/** @example 3d02cb61-f99d-4f78-b8bd-4aa9dc0386d1 */
|
|
20263
20425
|
uid?: string;
|
|
20264
20426
|
/** @example 1 */
|
|
20265
20427
|
listing_id?: number;
|
|
@@ -20283,7 +20445,7 @@ export interface operations {
|
|
|
20283
20445
|
company_name?: string | null;
|
|
20284
20446
|
/** @example null */
|
|
20285
20447
|
company_registration_number?: string | null;
|
|
20286
|
-
/** @example 2026-04-
|
|
20448
|
+
/** @example 2026-04-22T07:53:46.000000Z */
|
|
20287
20449
|
created_at?: string;
|
|
20288
20450
|
};
|
|
20289
20451
|
};
|
|
@@ -20577,7 +20739,7 @@ export interface operations {
|
|
|
20577
20739
|
* "changed_by_user_id": 3,
|
|
20578
20740
|
* "changed_by_name": "Teagan King",
|
|
20579
20741
|
* "comment": "Qui commodi incidunt iure odit.",
|
|
20580
|
-
* "created_at": "2025-12-
|
|
20742
|
+
* "created_at": "2025-12-14T18:40:45.000000Z"
|
|
20581
20743
|
* },
|
|
20582
20744
|
* {
|
|
20583
20745
|
* "from_state": "pre_move_in_ready",
|
|
@@ -20585,7 +20747,7 @@ export interface operations {
|
|
|
20585
20747
|
* "changed_by_user_id": 3,
|
|
20586
20748
|
* "changed_by_name": "Teagan King",
|
|
20587
20749
|
* "comment": null,
|
|
20588
|
-
* "created_at": "2025-10-
|
|
20750
|
+
* "created_at": "2025-10-31T02:36:25.000000Z"
|
|
20589
20751
|
* }
|
|
20590
20752
|
* ]
|
|
20591
20753
|
*/
|
|
@@ -20600,7 +20762,7 @@ export interface operations {
|
|
|
20600
20762
|
changed_by_name?: string;
|
|
20601
20763
|
/** @example Qui commodi incidunt iure odit. */
|
|
20602
20764
|
comment?: string;
|
|
20603
|
-
/** @example 2025-12-
|
|
20765
|
+
/** @example 2025-12-14T18:40:45.000000Z */
|
|
20604
20766
|
created_at?: string;
|
|
20605
20767
|
}[];
|
|
20606
20768
|
};
|
|
@@ -20844,7 +21006,7 @@ export interface operations {
|
|
|
20844
21006
|
content: {
|
|
20845
21007
|
"application/json": {
|
|
20846
21008
|
data?: {
|
|
20847
|
-
/** @example
|
|
21009
|
+
/** @example 4cc4102b-ff17-4de2-9267-fe303ee15ff8 */
|
|
20848
21010
|
uid?: string;
|
|
20849
21011
|
/** @example Ms. Audra Crooks II */
|
|
20850
21012
|
username?: string;
|
|
@@ -20874,7 +21036,7 @@ export interface operations {
|
|
|
20874
21036
|
timezone?: string;
|
|
20875
21037
|
/** @example Customer */
|
|
20876
21038
|
user_type?: string;
|
|
20877
|
-
/** @example
|
|
21039
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
20878
21040
|
created?: string;
|
|
20879
21041
|
/** @example 0 seconds ago */
|
|
20880
21042
|
email_verified_at?: string;
|
|
@@ -20973,7 +21135,7 @@ export interface operations {
|
|
|
20973
21135
|
content: {
|
|
20974
21136
|
"application/json": {
|
|
20975
21137
|
data?: {
|
|
20976
|
-
/** @example
|
|
21138
|
+
/** @example 9c0d16c9-abd2-484c-adb7-34540ea3e96d */
|
|
20977
21139
|
uid?: string;
|
|
20978
21140
|
/** @example Morgan Hirthe */
|
|
20979
21141
|
username?: string;
|
|
@@ -21003,7 +21165,7 @@ export interface operations {
|
|
|
21003
21165
|
timezone?: string;
|
|
21004
21166
|
/** @example Customer */
|
|
21005
21167
|
user_type?: string;
|
|
21006
|
-
/** @example
|
|
21168
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
21007
21169
|
created?: string;
|
|
21008
21170
|
/** @example 0 seconds ago */
|
|
21009
21171
|
email_verified_at?: string;
|
|
@@ -21075,7 +21237,7 @@ export interface operations {
|
|
|
21075
21237
|
content: {
|
|
21076
21238
|
"application/json": {
|
|
21077
21239
|
data?: {
|
|
21078
|
-
/** @example
|
|
21240
|
+
/** @example d4aa8981-7d8d-4c22-b317-7a3bc8d47e9f */
|
|
21079
21241
|
uid?: string;
|
|
21080
21242
|
/** @example Ms. Audra Crooks II */
|
|
21081
21243
|
username?: string;
|
|
@@ -21105,7 +21267,7 @@ export interface operations {
|
|
|
21105
21267
|
timezone?: string;
|
|
21106
21268
|
/** @example Customer */
|
|
21107
21269
|
user_type?: string;
|
|
21108
|
-
/** @example
|
|
21270
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
21109
21271
|
created?: string;
|
|
21110
21272
|
/** @example 0 seconds ago */
|
|
21111
21273
|
email_verified_at?: string;
|
|
@@ -21339,13 +21501,13 @@ export interface operations {
|
|
|
21339
21501
|
content: {
|
|
21340
21502
|
"application/json": {
|
|
21341
21503
|
data?: {
|
|
21342
|
-
/** @example
|
|
21504
|
+
/** @example 0 */
|
|
21343
21505
|
current_level?: number;
|
|
21344
21506
|
/** @example 3 */
|
|
21345
21507
|
completed_layers?: number;
|
|
21346
|
-
/** @example
|
|
21508
|
+
/** @example 4 */
|
|
21347
21509
|
pending_layers?: number;
|
|
21348
|
-
/** @example
|
|
21510
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
21349
21511
|
last_calculated_at?: string;
|
|
21350
21512
|
};
|
|
21351
21513
|
};
|
|
@@ -21393,7 +21555,7 @@ export interface operations {
|
|
|
21393
21555
|
completed_layers?: number;
|
|
21394
21556
|
/** @example 4 */
|
|
21395
21557
|
pending_layers?: number;
|
|
21396
|
-
/** @example
|
|
21558
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
21397
21559
|
last_calculated_at?: string;
|
|
21398
21560
|
};
|
|
21399
21561
|
};
|
|
@@ -21427,14 +21589,14 @@ export interface operations {
|
|
|
21427
21589
|
content: {
|
|
21428
21590
|
"application/json": {
|
|
21429
21591
|
data?: {
|
|
21430
|
-
/** @example
|
|
21592
|
+
/** @example d18ee4ee-fe7c-4784-9a2f-d6f9134ab783 */
|
|
21431
21593
|
wishlist_uid?: string;
|
|
21432
21594
|
listing?: {
|
|
21433
|
-
/** @example New For Sale Used Item draft •
|
|
21595
|
+
/** @example New For Sale Used Item draft • 22 Apr 2026, 7:53 AM */
|
|
21434
21596
|
draft_name?: string;
|
|
21435
|
-
/** @example LST-UIT-SAL-
|
|
21597
|
+
/** @example LST-UIT-SAL-MO9RALYHOTV */
|
|
21436
21598
|
sku?: string;
|
|
21437
|
-
/** @example
|
|
21599
|
+
/** @example 44b23187-ad0c-4446-8c99-9c15deab5f57 */
|
|
21438
21600
|
uid?: string;
|
|
21439
21601
|
/** @example Sale */
|
|
21440
21602
|
listing_type?: string;
|
|
@@ -21518,15 +21680,15 @@ export interface operations {
|
|
|
21518
21680
|
/**
|
|
21519
21681
|
* @example [
|
|
21520
21682
|
* {
|
|
21521
|
-
* "wishlist_uid": "
|
|
21683
|
+
* "wishlist_uid": "d8b28769-4ad0-47d0-b016-058f37fcc030"
|
|
21522
21684
|
* },
|
|
21523
21685
|
* {
|
|
21524
|
-
* "wishlist_uid": "
|
|
21686
|
+
* "wishlist_uid": "7e837ea3-266d-4260-848f-619f010e1a83"
|
|
21525
21687
|
* }
|
|
21526
21688
|
* ]
|
|
21527
21689
|
*/
|
|
21528
21690
|
data?: {
|
|
21529
|
-
/** @example
|
|
21691
|
+
/** @example d8b28769-4ad0-47d0-b016-058f37fcc030 */
|
|
21530
21692
|
wishlist_uid?: string;
|
|
21531
21693
|
}[];
|
|
21532
21694
|
links?: {
|
|
@@ -21614,7 +21776,7 @@ export interface operations {
|
|
|
21614
21776
|
completed_layers?: number;
|
|
21615
21777
|
/** @example 4 */
|
|
21616
21778
|
pending_layers?: number;
|
|
21617
|
-
/** @example
|
|
21779
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
21618
21780
|
last_calculated_at?: string;
|
|
21619
21781
|
};
|
|
21620
21782
|
};
|
|
@@ -21770,13 +21932,13 @@ export interface operations {
|
|
|
21770
21932
|
content: {
|
|
21771
21933
|
"application/json": {
|
|
21772
21934
|
data?: {
|
|
21773
|
-
/** @example
|
|
21935
|
+
/** @example 0 */
|
|
21774
21936
|
current_level?: number;
|
|
21775
21937
|
/** @example 3 */
|
|
21776
21938
|
completed_layers?: number;
|
|
21777
|
-
/** @example
|
|
21939
|
+
/** @example 4 */
|
|
21778
21940
|
pending_layers?: number;
|
|
21779
|
-
/** @example
|
|
21941
|
+
/** @example 22 Apr 2026, 07:53 AM */
|
|
21780
21942
|
last_calculated_at?: string;
|
|
21781
21943
|
};
|
|
21782
21944
|
};
|