controlresell 2.8.7 → 2.8.22
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/package.json +4 -5
- package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +5 -5
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +7 -0
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +5 -0
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
- package/src/com/controlresell/models/users/UpdateUserPayload.d.ts +5 -0
- package/src/com/controlresell/models/users/UpdateUserPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/users/User.d.ts +5 -0
- package/src/com/controlresell/models/users/User.d.ts.map +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.d.ts +3 -0
- package/src/com/controlresell/models/users/fields/FieldConfig.d.ts.map +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.js +2 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.js.map +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.ts +2 -1
- package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +5 -5
- package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +5 -5
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +10 -0
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "controlresell",
|
|
3
|
-
"version": "2.8.
|
|
4
|
-
"description": "Auto-generated zod project from Kotlin using guimauvedigital/zodable",
|
|
3
|
+
"version": "2.8.22",
|
|
5
4
|
"main": "src/index.js",
|
|
6
5
|
"scripts": {
|
|
7
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -9,7 +8,7 @@
|
|
|
9
8
|
"keywords": [],
|
|
10
9
|
"author": "",
|
|
11
10
|
"license": "ISC",
|
|
12
|
-
"
|
|
11
|
+
"description": "Auto-generated zod project from Kotlin using guimauvedigital/zodable",
|
|
13
12
|
"types": "src/index.d.ts",
|
|
14
13
|
"files": [
|
|
15
14
|
"src/**/*"
|
|
@@ -18,10 +17,10 @@
|
|
|
18
17
|
"typescript": "^5.9.3"
|
|
19
18
|
},
|
|
20
19
|
"dependencies": {
|
|
21
|
-
"controlresell-auth": "^0.0.
|
|
20
|
+
"controlresell-auth": "^0.0.11",
|
|
22
21
|
"controlresell-connector": "^0.7.18",
|
|
23
22
|
"controlresell-inbox": "^0.0.11",
|
|
24
|
-
"controlresell-inventory": "^0.0.
|
|
23
|
+
"controlresell-inventory": "^0.0.21",
|
|
25
24
|
"controlresell-storage": "^0.0.1",
|
|
26
25
|
"zod": "^3.25.76",
|
|
27
26
|
"zodable-idschema": "^1.0.0"
|
|
@@ -34,7 +34,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
34
34
|
platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
|
|
35
35
|
name: z.ZodString;
|
|
36
36
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
37
|
+
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR", "LOCKED"]>;
|
|
38
38
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
39
39
|
startsAt: z.ZodDate;
|
|
40
40
|
endsAt: z.ZodDate;
|
|
@@ -49,7 +49,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
49
49
|
ordersMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
50
50
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
52
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
53
53
|
userId: string | number;
|
|
54
54
|
name: string;
|
|
55
55
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -63,7 +63,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
63
63
|
ordersMaxDelay?: number | null | undefined;
|
|
64
64
|
conversationsMaxDelay?: number | null | undefined;
|
|
65
65
|
}, {
|
|
66
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
66
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
67
67
|
userId: string | number;
|
|
68
68
|
name: string;
|
|
69
69
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -79,7 +79,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
79
79
|
}>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
81
|
account: {
|
|
82
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
82
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
83
83
|
userId: string | number;
|
|
84
84
|
name: string;
|
|
85
85
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -105,7 +105,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
105
105
|
};
|
|
106
106
|
}, {
|
|
107
107
|
account: {
|
|
108
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
108
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
109
109
|
userId: string | number;
|
|
110
110
|
name: string;
|
|
111
111
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -585,6 +585,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
585
585
|
id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
586
586
|
userId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
587
587
|
name: z.ZodString;
|
|
588
|
+
sku: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
588
589
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
589
590
|
files: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
590
591
|
fileId: z.ZodString;
|
|
@@ -1399,6 +1400,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1399
1400
|
estimatedPrice?: number | null | undefined;
|
|
1400
1401
|
purchaseDate?: Date | null | undefined;
|
|
1401
1402
|
sellingDate?: Date | null | undefined;
|
|
1403
|
+
sku?: string | null | undefined;
|
|
1402
1404
|
files?: {
|
|
1403
1405
|
fileId: string;
|
|
1404
1406
|
itemId: string | number;
|
|
@@ -1589,6 +1591,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1589
1591
|
estimatedPrice?: number | null | undefined;
|
|
1590
1592
|
purchaseDate?: Date | null | undefined;
|
|
1591
1593
|
sellingDate?: Date | null | undefined;
|
|
1594
|
+
sku?: string | null | undefined;
|
|
1592
1595
|
files?: {
|
|
1593
1596
|
fileId: string;
|
|
1594
1597
|
itemId: string | number;
|
|
@@ -1781,6 +1784,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1781
1784
|
estimatedPrice?: number | null | undefined;
|
|
1782
1785
|
purchaseDate?: Date | null | undefined;
|
|
1783
1786
|
sellingDate?: Date | null | undefined;
|
|
1787
|
+
sku?: string | null | undefined;
|
|
1784
1788
|
files?: {
|
|
1785
1789
|
fileId: string;
|
|
1786
1790
|
itemId: string | number;
|
|
@@ -2065,6 +2069,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2065
2069
|
estimatedPrice?: number | null | undefined;
|
|
2066
2070
|
purchaseDate?: Date | null | undefined;
|
|
2067
2071
|
sellingDate?: Date | null | undefined;
|
|
2072
|
+
sku?: string | null | undefined;
|
|
2068
2073
|
files?: {
|
|
2069
2074
|
fileId: string;
|
|
2070
2075
|
itemId: string | number;
|
|
@@ -2354,6 +2359,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2354
2359
|
estimatedPrice?: number | null | undefined;
|
|
2355
2360
|
purchaseDate?: Date | null | undefined;
|
|
2356
2361
|
sellingDate?: Date | null | undefined;
|
|
2362
|
+
sku?: string | null | undefined;
|
|
2357
2363
|
files?: {
|
|
2358
2364
|
fileId: string;
|
|
2359
2365
|
itemId: string | number;
|
|
@@ -2644,6 +2650,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2644
2650
|
estimatedPrice?: number | null | undefined;
|
|
2645
2651
|
purchaseDate?: Date | null | undefined;
|
|
2646
2652
|
sellingDate?: Date | null | undefined;
|
|
2653
|
+
sku?: string | null | undefined;
|
|
2647
2654
|
files?: {
|
|
2648
2655
|
fileId: string;
|
|
2649
2656
|
itemId: string | number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserOrders.d.ts","sourceRoot":"","sources":["UserOrders.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"UserOrders.d.ts","sourceRoot":"","sources":["UserOrders.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAA;AACF,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAA"}
|
|
@@ -582,6 +582,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
582
582
|
id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
583
583
|
userId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
584
584
|
name: z.ZodString;
|
|
585
|
+
sku: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
585
586
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
586
587
|
files: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
587
588
|
fileId: z.ZodString;
|
|
@@ -1396,6 +1397,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
1396
1397
|
estimatedPrice?: number | null | undefined;
|
|
1397
1398
|
purchaseDate?: Date | null | undefined;
|
|
1398
1399
|
sellingDate?: Date | null | undefined;
|
|
1400
|
+
sku?: string | null | undefined;
|
|
1399
1401
|
files?: {
|
|
1400
1402
|
fileId: string;
|
|
1401
1403
|
itemId: string | number;
|
|
@@ -1586,6 +1588,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
1586
1588
|
estimatedPrice?: number | null | undefined;
|
|
1587
1589
|
purchaseDate?: Date | null | undefined;
|
|
1588
1590
|
sellingDate?: Date | null | undefined;
|
|
1591
|
+
sku?: string | null | undefined;
|
|
1589
1592
|
files?: {
|
|
1590
1593
|
fileId: string;
|
|
1591
1594
|
itemId: string | number;
|
|
@@ -1778,6 +1781,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
1778
1781
|
estimatedPrice?: number | null | undefined;
|
|
1779
1782
|
purchaseDate?: Date | null | undefined;
|
|
1780
1783
|
sellingDate?: Date | null | undefined;
|
|
1784
|
+
sku?: string | null | undefined;
|
|
1781
1785
|
files?: {
|
|
1782
1786
|
fileId: string;
|
|
1783
1787
|
itemId: string | number;
|
|
@@ -2062,6 +2066,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2062
2066
|
estimatedPrice?: number | null | undefined;
|
|
2063
2067
|
purchaseDate?: Date | null | undefined;
|
|
2064
2068
|
sellingDate?: Date | null | undefined;
|
|
2069
|
+
sku?: string | null | undefined;
|
|
2065
2070
|
files?: {
|
|
2066
2071
|
fileId: string;
|
|
2067
2072
|
itemId: string | number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrderWithItems.d.ts","sourceRoot":"","sources":["OrderWithItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"OrderWithItems.d.ts","sourceRoot":"","sources":["OrderWithItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG/B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA"}
|
|
@@ -11,11 +11,14 @@ export declare const UpdateUserPayloadSchema: z.ZodObject<{
|
|
|
11
11
|
fieldConfigs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
12
12
|
id: z.ZodString;
|
|
13
13
|
defaultValue: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
order: z.ZodNumber;
|
|
14
15
|
}, "strip", z.ZodTypeAny, {
|
|
15
16
|
id: string;
|
|
17
|
+
order: number;
|
|
16
18
|
defaultValue?: string | null | undefined;
|
|
17
19
|
}, {
|
|
18
20
|
id: string;
|
|
21
|
+
order: number;
|
|
19
22
|
defaultValue?: string | null | undefined;
|
|
20
23
|
}>, "many">>>;
|
|
21
24
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -29,6 +32,7 @@ export declare const UpdateUserPayloadSchema: z.ZodObject<{
|
|
|
29
32
|
countryDialCode?: string | null | undefined;
|
|
30
33
|
fieldConfigs?: {
|
|
31
34
|
id: string;
|
|
35
|
+
order: number;
|
|
32
36
|
defaultValue?: string | null | undefined;
|
|
33
37
|
}[] | null | undefined;
|
|
34
38
|
}, {
|
|
@@ -42,6 +46,7 @@ export declare const UpdateUserPayloadSchema: z.ZodObject<{
|
|
|
42
46
|
countryDialCode?: string | null | undefined;
|
|
43
47
|
fieldConfigs?: {
|
|
44
48
|
id: string;
|
|
49
|
+
order: number;
|
|
45
50
|
defaultValue?: string | null | undefined;
|
|
46
51
|
}[] | null | undefined;
|
|
47
52
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateUserPayload.d.ts","sourceRoot":"","sources":["UpdateUserPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"UpdateUserPayload.d.ts","sourceRoot":"","sources":["UpdateUserPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
|
|
@@ -49,11 +49,14 @@ export declare const UserSchema: z.ZodObject<{
|
|
|
49
49
|
fieldConfigs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
50
50
|
id: z.ZodString;
|
|
51
51
|
defaultValue: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
52
|
+
order: z.ZodNumber;
|
|
52
53
|
}, "strip", z.ZodTypeAny, {
|
|
53
54
|
id: string;
|
|
55
|
+
order: number;
|
|
54
56
|
defaultValue?: string | null | undefined;
|
|
55
57
|
}, {
|
|
56
58
|
id: string;
|
|
59
|
+
order: number;
|
|
57
60
|
defaultValue?: string | null | undefined;
|
|
58
61
|
}>, "many">>>;
|
|
59
62
|
createdAt: z.ZodDate;
|
|
@@ -74,6 +77,7 @@ export declare const UserSchema: z.ZodObject<{
|
|
|
74
77
|
countryDialCode?: string | null | undefined;
|
|
75
78
|
fieldConfigs?: {
|
|
76
79
|
id: string;
|
|
80
|
+
order: number;
|
|
77
81
|
defaultValue?: string | null | undefined;
|
|
78
82
|
}[] | null | undefined;
|
|
79
83
|
customers?: {
|
|
@@ -104,6 +108,7 @@ export declare const UserSchema: z.ZodObject<{
|
|
|
104
108
|
countryDialCode?: string | null | undefined;
|
|
105
109
|
fieldConfigs?: {
|
|
106
110
|
id: string;
|
|
111
|
+
order: number;
|
|
107
112
|
defaultValue?: string | null | undefined;
|
|
108
113
|
}[] | null | undefined;
|
|
109
114
|
customers?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"User.d.ts","sourceRoot":"","sources":["User.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"User.d.ts","sourceRoot":"","sources":["User.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAerB,CAAA;AACF,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAA"}
|
|
@@ -2,11 +2,14 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const FieldConfigSchema: z.ZodObject<{
|
|
3
3
|
id: z.ZodString;
|
|
4
4
|
defaultValue: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5
|
+
order: z.ZodNumber;
|
|
5
6
|
}, "strip", z.ZodTypeAny, {
|
|
6
7
|
id: string;
|
|
8
|
+
order: number;
|
|
7
9
|
defaultValue?: string | null | undefined;
|
|
8
10
|
}, {
|
|
9
11
|
id: string;
|
|
12
|
+
order: number;
|
|
10
13
|
defaultValue?: string | null | undefined;
|
|
11
14
|
}>;
|
|
12
15
|
export type FieldConfig = z.infer<typeof FieldConfigSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldConfig.d.ts","sourceRoot":"","sources":["FieldConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"FieldConfig.d.ts","sourceRoot":"","sources":["FieldConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAI5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA"}
|
|
@@ -4,6 +4,7 @@ exports.FieldConfigSchema = void 0;
|
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
exports.FieldConfigSchema = zod_1.z.object({
|
|
6
6
|
id: zod_1.z.string(),
|
|
7
|
-
defaultValue: zod_1.z.string().nullish()
|
|
7
|
+
defaultValue: zod_1.z.string().nullish(),
|
|
8
|
+
order: zod_1.z.number().int()
|
|
8
9
|
});
|
|
9
10
|
//# sourceMappingURL=FieldConfig.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldConfig.js","sourceRoot":"","sources":["FieldConfig.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AAER,QAAA,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IACtC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;
|
|
1
|
+
{"version":3,"file":"FieldConfig.js","sourceRoot":"","sources":["FieldConfig.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AAER,QAAA,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IACtC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC1B,CAAC,CAAA"}
|
|
@@ -6,7 +6,7 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
6
6
|
platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
|
|
7
7
|
name: z.ZodString;
|
|
8
8
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
9
|
+
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR", "LOCKED"]>;
|
|
10
10
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11
11
|
startsAt: z.ZodDate;
|
|
12
12
|
endsAt: z.ZodDate;
|
|
@@ -21,7 +21,7 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
21
21
|
ordersMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22
22
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
24
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
25
25
|
userId: string | number;
|
|
26
26
|
name: string;
|
|
27
27
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -35,7 +35,7 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
35
35
|
ordersMaxDelay?: number | null | undefined;
|
|
36
36
|
conversationsMaxDelay?: number | null | undefined;
|
|
37
37
|
}, {
|
|
38
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
38
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
39
39
|
userId: string | number;
|
|
40
40
|
name: string;
|
|
41
41
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -53,7 +53,7 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
53
53
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
55
|
account: {
|
|
56
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
56
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
57
57
|
userId: string | number;
|
|
58
58
|
name: string;
|
|
59
59
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -71,7 +71,7 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
71
71
|
otp?: number | null | undefined;
|
|
72
72
|
}, {
|
|
73
73
|
account: {
|
|
74
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
74
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
75
75
|
userId: string | number;
|
|
76
76
|
name: string;
|
|
77
77
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -6,7 +6,7 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
6
6
|
platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
|
|
7
7
|
name: z.ZodString;
|
|
8
8
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
9
|
+
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR", "LOCKED"]>;
|
|
10
10
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
11
11
|
startsAt: z.ZodDate;
|
|
12
12
|
endsAt: z.ZodDate;
|
|
@@ -21,7 +21,7 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
21
21
|
ordersMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22
22
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
24
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
25
25
|
userId: string | number;
|
|
26
26
|
name: string;
|
|
27
27
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -35,7 +35,7 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
35
35
|
ordersMaxDelay?: number | null | undefined;
|
|
36
36
|
conversationsMaxDelay?: number | null | undefined;
|
|
37
37
|
}, {
|
|
38
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
38
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
39
39
|
userId: string | number;
|
|
40
40
|
name: string;
|
|
41
41
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -53,7 +53,7 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
53
53
|
done: z.ZodBoolean;
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
55
|
account: {
|
|
56
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
56
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
57
57
|
userId: string | number;
|
|
58
58
|
name: string;
|
|
59
59
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -71,7 +71,7 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
71
71
|
done: boolean;
|
|
72
72
|
}, {
|
|
73
73
|
account: {
|
|
74
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
74
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
75
75
|
userId: string | number;
|
|
76
76
|
name: string;
|
|
77
77
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -944,6 +944,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
944
944
|
id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
945
945
|
userId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
946
946
|
name: z.ZodString;
|
|
947
|
+
sku: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
947
948
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
948
949
|
files: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
949
950
|
fileId: z.ZodString;
|
|
@@ -1758,6 +1759,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
1758
1759
|
estimatedPrice?: number | null | undefined;
|
|
1759
1760
|
purchaseDate?: Date | null | undefined;
|
|
1760
1761
|
sellingDate?: Date | null | undefined;
|
|
1762
|
+
sku?: string | null | undefined;
|
|
1761
1763
|
files?: {
|
|
1762
1764
|
fileId: string;
|
|
1763
1765
|
itemId: string | number;
|
|
@@ -1948,6 +1950,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
1948
1950
|
estimatedPrice?: number | null | undefined;
|
|
1949
1951
|
purchaseDate?: Date | null | undefined;
|
|
1950
1952
|
sellingDate?: Date | null | undefined;
|
|
1953
|
+
sku?: string | null | undefined;
|
|
1951
1954
|
files?: {
|
|
1952
1955
|
fileId: string;
|
|
1953
1956
|
itemId: string | number;
|
|
@@ -2143,6 +2146,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
2143
2146
|
estimatedPrice?: number | null | undefined;
|
|
2144
2147
|
purchaseDate?: Date | null | undefined;
|
|
2145
2148
|
sellingDate?: Date | null | undefined;
|
|
2149
|
+
sku?: string | null | undefined;
|
|
2146
2150
|
files?: {
|
|
2147
2151
|
fileId: string;
|
|
2148
2152
|
itemId: string | number;
|
|
@@ -2337,6 +2341,7 @@ export declare const UserWsPayloadItemUpdatedSchema: z.ZodObject<{
|
|
|
2337
2341
|
estimatedPrice?: number | null | undefined;
|
|
2338
2342
|
purchaseDate?: Date | null | undefined;
|
|
2339
2343
|
sellingDate?: Date | null | undefined;
|
|
2344
|
+
sku?: string | null | undefined;
|
|
2340
2345
|
files?: {
|
|
2341
2346
|
fileId: string;
|
|
2342
2347
|
itemId: string | number;
|
|
@@ -4168,6 +4173,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
4168
4173
|
id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
4169
4174
|
userId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
4170
4175
|
name: z.ZodString;
|
|
4176
|
+
sku: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4171
4177
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4172
4178
|
files: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4173
4179
|
fileId: z.ZodString;
|
|
@@ -4982,6 +4988,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
4982
4988
|
estimatedPrice?: number | null | undefined;
|
|
4983
4989
|
purchaseDate?: Date | null | undefined;
|
|
4984
4990
|
sellingDate?: Date | null | undefined;
|
|
4991
|
+
sku?: string | null | undefined;
|
|
4985
4992
|
files?: {
|
|
4986
4993
|
fileId: string;
|
|
4987
4994
|
itemId: string | number;
|
|
@@ -5172,6 +5179,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
5172
5179
|
estimatedPrice?: number | null | undefined;
|
|
5173
5180
|
purchaseDate?: Date | null | undefined;
|
|
5174
5181
|
sellingDate?: Date | null | undefined;
|
|
5182
|
+
sku?: string | null | undefined;
|
|
5175
5183
|
files?: {
|
|
5176
5184
|
fileId: string;
|
|
5177
5185
|
itemId: string | number;
|
|
@@ -5367,6 +5375,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
5367
5375
|
estimatedPrice?: number | null | undefined;
|
|
5368
5376
|
purchaseDate?: Date | null | undefined;
|
|
5369
5377
|
sellingDate?: Date | null | undefined;
|
|
5378
|
+
sku?: string | null | undefined;
|
|
5370
5379
|
files?: {
|
|
5371
5380
|
fileId: string;
|
|
5372
5381
|
itemId: string | number;
|
|
@@ -5561,6 +5570,7 @@ export declare const UserWsPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
|
|
|
5561
5570
|
estimatedPrice?: number | null | undefined;
|
|
5562
5571
|
purchaseDate?: Date | null | undefined;
|
|
5563
5572
|
sellingDate?: Date | null | undefined;
|
|
5573
|
+
sku?: string | null | undefined;
|
|
5564
5574
|
files?: {
|
|
5565
5575
|
fileId: string;
|
|
5566
5576
|
itemId: string | number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserWsPayload.d.ts","sourceRoot":"","sources":["UserWsPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAQrB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI1C,CAAA;AACF,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAA;AAEvF,eAAO,MAAM,wBAAwB;;;;;;EAEnC,CAAA;AACF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAA;AAEzE,eAAO,MAAM,8BAA8B
|
|
1
|
+
{"version":3,"file":"UserWsPayload.d.ts","sourceRoot":"","sources":["UserWsPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAQrB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI1C,CAAA;AACF,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAA;AAEvF,eAAO,MAAM,wBAAwB;;;;;;EAEnC,CAAA;AACF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAA;AAEzE,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAS9B,CAAA;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA"}
|