controlresell 2.8.22 → 2.8.24
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 +3 -3
- package/src/com/controlresell/models/filters/SavedFilters.d.ts +5 -0
- package/src/com/controlresell/models/filters/SavedFilters.d.ts.map +1 -1
- package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts +5 -0
- package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/metrics/DailyMetrics.d.ts +16 -0
- package/src/com/controlresell/models/platforms/metrics/DailyMetrics.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/metrics/DailyMetrics.js +10 -0
- package/src/com/controlresell/models/platforms/metrics/DailyMetrics.js.map +1 -0
- package/src/com/controlresell/models/platforms/metrics/DailyMetrics.ts +8 -0
- package/src/com/controlresell/models/platforms/metrics/HourlyMetrics.d.ts +16 -0
- package/src/com/controlresell/models/platforms/metrics/HourlyMetrics.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/metrics/HourlyMetrics.js +10 -0
- package/src/com/controlresell/models/platforms/metrics/HourlyMetrics.js.map +1 -0
- package/src/com/controlresell/models/platforms/metrics/HourlyMetrics.ts +8 -0
- package/src/com/controlresell/models/platforms/metrics/ItemMetricsResponse.d.ts +62 -0
- package/src/com/controlresell/models/platforms/metrics/ItemMetricsResponse.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/metrics/ItemMetricsResponse.js +14 -0
- package/src/com/controlresell/models/platforms/metrics/ItemMetricsResponse.js.map +1 -0
- package/src/com/controlresell/models/platforms/metrics/ItemMetricsResponse.ts +12 -0
- package/src/com/controlresell/models/platforms/metrics/ItemsMetricsResponse.d.ts +96 -0
- package/src/com/controlresell/models/platforms/metrics/ItemsMetricsResponse.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/metrics/ItemsMetricsResponse.js +9 -0
- package/src/com/controlresell/models/platforms/metrics/ItemsMetricsResponse.js.map +1 -0
- package/src/com/controlresell/models/platforms/metrics/ItemsMetricsResponse.ts +7 -0
- package/src/com/controlresell/models/platforms/orders/Order.d.ts +23 -9
- package/src/com/controlresell/models/platforms/orders/Order.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +176 -24
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +17 -7
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +148 -20
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
- package/src/com/controlresell/models/users/UpdateUserPayload.d.ts +5 -5
- package/src/com/controlresell/models/users/User.d.ts +5 -5
- package/src/com/controlresell/models/users/fields/FieldConfig.d.ts +3 -3
- package/src/com/controlresell/models/users/fields/FieldConfig.js +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.js.map +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.ts +1 -1
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +238 -18
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
- package/src/index.d.ts +4 -0
- package/src/index.d.ts.map +1 -1
- package/src/index.js +10 -2
- package/src/index.js.map +1 -1
- package/src/index.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "controlresell",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.24",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"typescript": "^5.9.3"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"controlresell-auth": "^0.0.
|
|
20
|
+
"controlresell-auth": "^0.0.12",
|
|
21
21
|
"controlresell-connector": "^0.7.18",
|
|
22
22
|
"controlresell-inbox": "^0.0.11",
|
|
23
|
-
"controlresell-inventory": "^0.0.
|
|
23
|
+
"controlresell-inventory": "^0.0.22",
|
|
24
24
|
"controlresell-storage": "^0.0.1",
|
|
25
25
|
"zod": "^3.25.76",
|
|
26
26
|
"zodable-idschema": "^1.0.0"
|
|
@@ -72,9 +72,11 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
72
72
|
hasLifecycleStarted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
73
73
|
accountIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
74
74
|
platforms: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>, "many">>>;
|
|
75
|
+
transactionType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["SINGLE_ITEM", "BUNDLE"]>>>;
|
|
75
76
|
}, "strip", z.ZodTypeAny, {
|
|
76
77
|
sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
77
78
|
isDraft?: boolean | null | undefined;
|
|
79
|
+
transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
|
|
78
80
|
sex?: string[] | null | undefined;
|
|
79
81
|
sold?: boolean | null | undefined;
|
|
80
82
|
platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
|
|
@@ -115,6 +117,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
115
117
|
}, {
|
|
116
118
|
sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
117
119
|
isDraft?: boolean | null | undefined;
|
|
120
|
+
transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
|
|
118
121
|
sex?: string[] | null | undefined;
|
|
119
122
|
sold?: boolean | null | undefined;
|
|
120
123
|
platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
|
|
@@ -159,6 +162,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
159
162
|
itemFilters?: {
|
|
160
163
|
sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
161
164
|
isDraft?: boolean | null | undefined;
|
|
165
|
+
transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
|
|
162
166
|
sex?: string[] | null | undefined;
|
|
163
167
|
sold?: boolean | null | undefined;
|
|
164
168
|
platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
|
|
@@ -203,6 +207,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
203
207
|
itemFilters?: {
|
|
204
208
|
sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
205
209
|
isDraft?: boolean | null | undefined;
|
|
210
|
+
transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
|
|
206
211
|
sex?: string[] | null | undefined;
|
|
207
212
|
sold?: boolean | null | undefined;
|
|
208
213
|
platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SavedFilters.d.ts","sourceRoot":"","sources":["SavedFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"SavedFilters.d.ts","sourceRoot":"","sources":["SavedFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI7B,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA"}
|
|
@@ -70,9 +70,11 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
70
70
|
hasLifecycleStarted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
71
71
|
accountIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
72
72
|
platforms: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>, "many">>>;
|
|
73
|
+
transactionType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["SINGLE_ITEM", "BUNDLE"]>>>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
75
76
|
isDraft?: boolean | null | undefined;
|
|
77
|
+
transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
|
|
76
78
|
sex?: string[] | null | undefined;
|
|
77
79
|
sold?: boolean | null | undefined;
|
|
78
80
|
platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
|
|
@@ -113,6 +115,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
113
115
|
}, {
|
|
114
116
|
sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
115
117
|
isDraft?: boolean | null | undefined;
|
|
118
|
+
transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
|
|
116
119
|
sex?: string[] | null | undefined;
|
|
117
120
|
sold?: boolean | null | undefined;
|
|
118
121
|
platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
|
|
@@ -155,6 +158,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
155
158
|
itemFilters?: {
|
|
156
159
|
sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
157
160
|
isDraft?: boolean | null | undefined;
|
|
161
|
+
transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
|
|
158
162
|
sex?: string[] | null | undefined;
|
|
159
163
|
sold?: boolean | null | undefined;
|
|
160
164
|
platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
|
|
@@ -197,6 +201,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
197
201
|
itemFilters?: {
|
|
198
202
|
sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
199
203
|
isDraft?: boolean | null | undefined;
|
|
204
|
+
transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
|
|
200
205
|
sex?: string[] | null | undefined;
|
|
201
206
|
sold?: boolean | null | undefined;
|
|
202
207
|
platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SavedFiltersPayload.d.ts","sourceRoot":"","sources":["SavedFiltersPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,yBAAyB
|
|
1
|
+
{"version":3,"file":"SavedFiltersPayload.d.ts","sourceRoot":"","sources":["SavedFiltersPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAA"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const DailyMetricsSchema: z.ZodObject<{
|
|
3
|
+
date: z.ZodDate;
|
|
4
|
+
views: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5
|
+
favorites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6
|
+
}, "strip", z.ZodTypeAny, {
|
|
7
|
+
date: Date;
|
|
8
|
+
favorites?: number | null | undefined;
|
|
9
|
+
views?: number | null | undefined;
|
|
10
|
+
}, {
|
|
11
|
+
date: Date;
|
|
12
|
+
favorites?: number | null | undefined;
|
|
13
|
+
views?: number | null | undefined;
|
|
14
|
+
}>;
|
|
15
|
+
export type DailyMetrics = z.infer<typeof DailyMetricsSchema>;
|
|
16
|
+
//# sourceMappingURL=DailyMetrics.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DailyMetrics.d.ts","sourceRoot":"","sources":["DailyMetrics.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAI7B,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DailyMetricsSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.DailyMetricsSchema = zod_1.z.object({
|
|
6
|
+
date: zod_1.z.coerce.date(),
|
|
7
|
+
views: zod_1.z.number().nullish(),
|
|
8
|
+
favorites: zod_1.z.number().nullish()
|
|
9
|
+
});
|
|
10
|
+
//# sourceMappingURL=DailyMetrics.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DailyMetrics.js","sourceRoot":"","sources":["DailyMetrics.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AAER,QAAA,kBAAkB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,IAAI,EAAE;IACrB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC3B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;CAClC,CAAC,CAAA"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const HourlyMetricsSchema: z.ZodObject<{
|
|
3
|
+
timestamp: z.ZodDate;
|
|
4
|
+
views: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5
|
+
favorites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6
|
+
}, "strip", z.ZodTypeAny, {
|
|
7
|
+
timestamp: Date;
|
|
8
|
+
favorites?: number | null | undefined;
|
|
9
|
+
views?: number | null | undefined;
|
|
10
|
+
}, {
|
|
11
|
+
timestamp: Date;
|
|
12
|
+
favorites?: number | null | undefined;
|
|
13
|
+
views?: number | null | undefined;
|
|
14
|
+
}>;
|
|
15
|
+
export type HourlyMetrics = z.infer<typeof HourlyMetricsSchema>;
|
|
16
|
+
//# sourceMappingURL=HourlyMetrics.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HourlyMetrics.d.ts","sourceRoot":"","sources":["HourlyMetrics.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAI9B,CAAA;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HourlyMetricsSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.HourlyMetricsSchema = zod_1.z.object({
|
|
6
|
+
timestamp: zod_1.z.coerce.date(),
|
|
7
|
+
views: zod_1.z.number().nullish(),
|
|
8
|
+
favorites: zod_1.z.number().nullish()
|
|
9
|
+
});
|
|
10
|
+
//# sourceMappingURL=HourlyMetrics.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HourlyMetrics.js","sourceRoot":"","sources":["HourlyMetrics.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AAER,QAAA,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC;IACxC,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,IAAI,EAAE;IAC1B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC3B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;CAClC,CAAC,CAAA"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const ItemMetricsResponseSchema: z.ZodObject<{
|
|
3
|
+
itemOnPlatformId: z.ZodString;
|
|
4
|
+
totalViews: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5
|
+
totalFavorites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6
|
+
hourlyData: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
7
|
+
timestamp: z.ZodDate;
|
|
8
|
+
views: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
9
|
+
favorites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
timestamp: Date;
|
|
12
|
+
favorites?: number | null | undefined;
|
|
13
|
+
views?: number | null | undefined;
|
|
14
|
+
}, {
|
|
15
|
+
timestamp: Date;
|
|
16
|
+
favorites?: number | null | undefined;
|
|
17
|
+
views?: number | null | undefined;
|
|
18
|
+
}>, "many">>>;
|
|
19
|
+
dailyData: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
20
|
+
date: z.ZodDate;
|
|
21
|
+
views: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22
|
+
favorites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
date: Date;
|
|
25
|
+
favorites?: number | null | undefined;
|
|
26
|
+
views?: number | null | undefined;
|
|
27
|
+
}, {
|
|
28
|
+
date: Date;
|
|
29
|
+
favorites?: number | null | undefined;
|
|
30
|
+
views?: number | null | undefined;
|
|
31
|
+
}>, "many">>>;
|
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
|
33
|
+
itemOnPlatformId: string;
|
|
34
|
+
totalViews?: number | null | undefined;
|
|
35
|
+
totalFavorites?: number | null | undefined;
|
|
36
|
+
hourlyData?: {
|
|
37
|
+
timestamp: Date;
|
|
38
|
+
favorites?: number | null | undefined;
|
|
39
|
+
views?: number | null | undefined;
|
|
40
|
+
}[] | null | undefined;
|
|
41
|
+
dailyData?: {
|
|
42
|
+
date: Date;
|
|
43
|
+
favorites?: number | null | undefined;
|
|
44
|
+
views?: number | null | undefined;
|
|
45
|
+
}[] | null | undefined;
|
|
46
|
+
}, {
|
|
47
|
+
itemOnPlatformId: string;
|
|
48
|
+
totalViews?: number | null | undefined;
|
|
49
|
+
totalFavorites?: number | null | undefined;
|
|
50
|
+
hourlyData?: {
|
|
51
|
+
timestamp: Date;
|
|
52
|
+
favorites?: number | null | undefined;
|
|
53
|
+
views?: number | null | undefined;
|
|
54
|
+
}[] | null | undefined;
|
|
55
|
+
dailyData?: {
|
|
56
|
+
date: Date;
|
|
57
|
+
favorites?: number | null | undefined;
|
|
58
|
+
views?: number | null | undefined;
|
|
59
|
+
}[] | null | undefined;
|
|
60
|
+
}>;
|
|
61
|
+
export type ItemMetricsResponse = z.infer<typeof ItemMetricsResponseSchema>;
|
|
62
|
+
//# sourceMappingURL=ItemMetricsResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ItemMetricsResponse.d.ts","sourceRoot":"","sources":["ItemMetricsResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMpC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ItemMetricsResponseSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const HourlyMetrics_1 = require("./HourlyMetrics");
|
|
6
|
+
const DailyMetrics_1 = require("./DailyMetrics");
|
|
7
|
+
exports.ItemMetricsResponseSchema = zod_1.z.object({
|
|
8
|
+
itemOnPlatformId: zod_1.z.string().uuid(),
|
|
9
|
+
totalViews: zod_1.z.number().nullish(),
|
|
10
|
+
totalFavorites: zod_1.z.number().nullish(),
|
|
11
|
+
hourlyData: zod_1.z.array(HourlyMetrics_1.HourlyMetricsSchema).nullish(),
|
|
12
|
+
dailyData: zod_1.z.array(DailyMetrics_1.DailyMetricsSchema).nullish()
|
|
13
|
+
});
|
|
14
|
+
//# sourceMappingURL=ItemMetricsResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ItemMetricsResponse.js","sourceRoot":"","sources":["ItemMetricsResponse.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AACrB,mDAAmD;AACnD,iDAAiD;AAEpC,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9C,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACnC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAChC,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACpC,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,mCAAmB,CAAC,CAAC,OAAO,EAAE;IAClD,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,iCAAkB,CAAC,CAAC,OAAO,EAAE;CACnD,CAAC,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import {z} from "zod"
|
|
2
|
+
import {HourlyMetricsSchema} from "./HourlyMetrics"
|
|
3
|
+
import {DailyMetricsSchema} from "./DailyMetrics"
|
|
4
|
+
|
|
5
|
+
export const ItemMetricsResponseSchema = z.object({
|
|
6
|
+
itemOnPlatformId: z.string().uuid(),
|
|
7
|
+
totalViews: z.number().nullish(),
|
|
8
|
+
totalFavorites: z.number().nullish(),
|
|
9
|
+
hourlyData: z.array(HourlyMetricsSchema).nullish(),
|
|
10
|
+
dailyData: z.array(DailyMetricsSchema).nullish()
|
|
11
|
+
})
|
|
12
|
+
export type ItemMetricsResponse = z.infer<typeof ItemMetricsResponseSchema>
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const ItemsMetricsResponseSchema: z.ZodObject<{
|
|
3
|
+
items: z.ZodArray<z.ZodObject<{
|
|
4
|
+
itemOnPlatformId: z.ZodString;
|
|
5
|
+
totalViews: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6
|
+
totalFavorites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7
|
+
hourlyData: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
8
|
+
timestamp: z.ZodDate;
|
|
9
|
+
views: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10
|
+
favorites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
|
12
|
+
timestamp: Date;
|
|
13
|
+
favorites?: number | null | undefined;
|
|
14
|
+
views?: number | null | undefined;
|
|
15
|
+
}, {
|
|
16
|
+
timestamp: Date;
|
|
17
|
+
favorites?: number | null | undefined;
|
|
18
|
+
views?: number | null | undefined;
|
|
19
|
+
}>, "many">>>;
|
|
20
|
+
dailyData: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
21
|
+
date: z.ZodDate;
|
|
22
|
+
views: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
|
+
favorites: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
date: Date;
|
|
26
|
+
favorites?: number | null | undefined;
|
|
27
|
+
views?: number | null | undefined;
|
|
28
|
+
}, {
|
|
29
|
+
date: Date;
|
|
30
|
+
favorites?: number | null | undefined;
|
|
31
|
+
views?: number | null | undefined;
|
|
32
|
+
}>, "many">>>;
|
|
33
|
+
}, "strip", z.ZodTypeAny, {
|
|
34
|
+
itemOnPlatformId: string;
|
|
35
|
+
totalViews?: number | null | undefined;
|
|
36
|
+
totalFavorites?: number | null | undefined;
|
|
37
|
+
hourlyData?: {
|
|
38
|
+
timestamp: Date;
|
|
39
|
+
favorites?: number | null | undefined;
|
|
40
|
+
views?: number | null | undefined;
|
|
41
|
+
}[] | null | undefined;
|
|
42
|
+
dailyData?: {
|
|
43
|
+
date: Date;
|
|
44
|
+
favorites?: number | null | undefined;
|
|
45
|
+
views?: number | null | undefined;
|
|
46
|
+
}[] | null | undefined;
|
|
47
|
+
}, {
|
|
48
|
+
itemOnPlatformId: string;
|
|
49
|
+
totalViews?: number | null | undefined;
|
|
50
|
+
totalFavorites?: number | null | undefined;
|
|
51
|
+
hourlyData?: {
|
|
52
|
+
timestamp: Date;
|
|
53
|
+
favorites?: number | null | undefined;
|
|
54
|
+
views?: number | null | undefined;
|
|
55
|
+
}[] | null | undefined;
|
|
56
|
+
dailyData?: {
|
|
57
|
+
date: Date;
|
|
58
|
+
favorites?: number | null | undefined;
|
|
59
|
+
views?: number | null | undefined;
|
|
60
|
+
}[] | null | undefined;
|
|
61
|
+
}>, "many">;
|
|
62
|
+
}, "strip", z.ZodTypeAny, {
|
|
63
|
+
items: {
|
|
64
|
+
itemOnPlatformId: string;
|
|
65
|
+
totalViews?: number | null | undefined;
|
|
66
|
+
totalFavorites?: number | null | undefined;
|
|
67
|
+
hourlyData?: {
|
|
68
|
+
timestamp: Date;
|
|
69
|
+
favorites?: number | null | undefined;
|
|
70
|
+
views?: number | null | undefined;
|
|
71
|
+
}[] | null | undefined;
|
|
72
|
+
dailyData?: {
|
|
73
|
+
date: Date;
|
|
74
|
+
favorites?: number | null | undefined;
|
|
75
|
+
views?: number | null | undefined;
|
|
76
|
+
}[] | null | undefined;
|
|
77
|
+
}[];
|
|
78
|
+
}, {
|
|
79
|
+
items: {
|
|
80
|
+
itemOnPlatformId: string;
|
|
81
|
+
totalViews?: number | null | undefined;
|
|
82
|
+
totalFavorites?: number | null | undefined;
|
|
83
|
+
hourlyData?: {
|
|
84
|
+
timestamp: Date;
|
|
85
|
+
favorites?: number | null | undefined;
|
|
86
|
+
views?: number | null | undefined;
|
|
87
|
+
}[] | null | undefined;
|
|
88
|
+
dailyData?: {
|
|
89
|
+
date: Date;
|
|
90
|
+
favorites?: number | null | undefined;
|
|
91
|
+
views?: number | null | undefined;
|
|
92
|
+
}[] | null | undefined;
|
|
93
|
+
}[];
|
|
94
|
+
}>;
|
|
95
|
+
export type ItemsMetricsResponse = z.infer<typeof ItemsMetricsResponseSchema>;
|
|
96
|
+
//# sourceMappingURL=ItemsMetricsResponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ItemsMetricsResponse.d.ts","sourceRoot":"","sources":["ItemsMetricsResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAErC,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ItemsMetricsResponseSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const ItemMetricsResponse_1 = require("./ItemMetricsResponse");
|
|
6
|
+
exports.ItemsMetricsResponseSchema = zod_1.z.object({
|
|
7
|
+
items: zod_1.z.array(ItemMetricsResponse_1.ItemMetricsResponseSchema)
|
|
8
|
+
});
|
|
9
|
+
//# sourceMappingURL=ItemsMetricsResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ItemsMetricsResponse.js","sourceRoot":"","sources":["ItemsMetricsResponse.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AACrB,+DAA+D;AAElD,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,+CAAyB,CAAC;CAC5C,CAAC,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import {z} from "zod"
|
|
2
|
+
import {ItemMetricsResponseSchema} from "./ItemMetricsResponse"
|
|
3
|
+
|
|
4
|
+
export const ItemsMetricsResponseSchema = z.object({
|
|
5
|
+
items: z.array(ItemMetricsResponseSchema)
|
|
6
|
+
})
|
|
7
|
+
export type ItemsMetricsResponse = z.infer<typeof ItemsMetricsResponseSchema>
|
|
@@ -29,7 +29,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
29
29
|
platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
|
|
30
30
|
name: z.ZodString;
|
|
31
31
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
32
|
+
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR", "LOCKED"]>;
|
|
33
33
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
34
34
|
startsAt: z.ZodDate;
|
|
35
35
|
endsAt: z.ZodDate;
|
|
@@ -44,7 +44,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
44
44
|
ordersMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
45
45
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
47
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
48
48
|
userId: string | number;
|
|
49
49
|
name: string;
|
|
50
50
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -58,7 +58,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
58
58
|
ordersMaxDelay?: number | null | undefined;
|
|
59
59
|
conversationsMaxDelay?: number | null | undefined;
|
|
60
60
|
}, {
|
|
61
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
61
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
62
62
|
userId: string | number;
|
|
63
63
|
name: string;
|
|
64
64
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -73,6 +73,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
73
73
|
conversationsMaxDelay?: number | null | undefined;
|
|
74
74
|
}>>>;
|
|
75
75
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
76
|
+
viewsCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
77
|
+
favoritesCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
76
78
|
}, "strip", z.ZodTypeAny, {
|
|
77
79
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
78
80
|
id: string;
|
|
@@ -86,7 +88,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
86
88
|
publishedAt: Date;
|
|
87
89
|
conversationId?: string | null | undefined;
|
|
88
90
|
account?: {
|
|
89
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
91
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
90
92
|
userId: string | number;
|
|
91
93
|
name: string;
|
|
92
94
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -100,6 +102,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
100
102
|
ordersMaxDelay?: number | null | undefined;
|
|
101
103
|
conversationsMaxDelay?: number | null | undefined;
|
|
102
104
|
} | null | undefined;
|
|
105
|
+
viewsCount?: number | null | undefined;
|
|
106
|
+
favoritesCount?: number | null | undefined;
|
|
103
107
|
}, {
|
|
104
108
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
105
109
|
id: string;
|
|
@@ -113,7 +117,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
113
117
|
publishedAt: Date;
|
|
114
118
|
conversationId?: string | null | undefined;
|
|
115
119
|
account?: {
|
|
116
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
120
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
117
121
|
userId: string | number;
|
|
118
122
|
name: string;
|
|
119
123
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -127,6 +131,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
127
131
|
ordersMaxDelay?: number | null | undefined;
|
|
128
132
|
conversationsMaxDelay?: number | null | undefined;
|
|
129
133
|
} | null | undefined;
|
|
134
|
+
viewsCount?: number | null | undefined;
|
|
135
|
+
favoritesCount?: number | null | undefined;
|
|
130
136
|
}>>>;
|
|
131
137
|
}, "strip", z.ZodTypeAny, {
|
|
132
138
|
orderId: string;
|
|
@@ -144,7 +150,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
144
150
|
publishedAt: Date;
|
|
145
151
|
conversationId?: string | null | undefined;
|
|
146
152
|
account?: {
|
|
147
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
153
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
148
154
|
userId: string | number;
|
|
149
155
|
name: string;
|
|
150
156
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -158,6 +164,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
158
164
|
ordersMaxDelay?: number | null | undefined;
|
|
159
165
|
conversationsMaxDelay?: number | null | undefined;
|
|
160
166
|
} | null | undefined;
|
|
167
|
+
viewsCount?: number | null | undefined;
|
|
168
|
+
favoritesCount?: number | null | undefined;
|
|
161
169
|
} | null | undefined;
|
|
162
170
|
}, {
|
|
163
171
|
orderId: string;
|
|
@@ -175,7 +183,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
175
183
|
publishedAt: Date;
|
|
176
184
|
conversationId?: string | null | undefined;
|
|
177
185
|
account?: {
|
|
178
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
186
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
179
187
|
userId: string | number;
|
|
180
188
|
name: string;
|
|
181
189
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -189,6 +197,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
189
197
|
ordersMaxDelay?: number | null | undefined;
|
|
190
198
|
conversationsMaxDelay?: number | null | undefined;
|
|
191
199
|
} | null | undefined;
|
|
200
|
+
viewsCount?: number | null | undefined;
|
|
201
|
+
favoritesCount?: number | null | undefined;
|
|
192
202
|
} | null | undefined;
|
|
193
203
|
}>, "many">>>;
|
|
194
204
|
labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -418,7 +428,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
418
428
|
publishedAt: Date;
|
|
419
429
|
conversationId?: string | null | undefined;
|
|
420
430
|
account?: {
|
|
421
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
431
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
422
432
|
userId: string | number;
|
|
423
433
|
name: string;
|
|
424
434
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -432,6 +442,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
432
442
|
ordersMaxDelay?: number | null | undefined;
|
|
433
443
|
conversationsMaxDelay?: number | null | undefined;
|
|
434
444
|
} | null | undefined;
|
|
445
|
+
viewsCount?: number | null | undefined;
|
|
446
|
+
favoritesCount?: number | null | undefined;
|
|
435
447
|
} | null | undefined;
|
|
436
448
|
}[] | null | undefined;
|
|
437
449
|
conversationId?: string | null | undefined;
|
|
@@ -509,7 +521,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
509
521
|
publishedAt: Date;
|
|
510
522
|
conversationId?: string | null | undefined;
|
|
511
523
|
account?: {
|
|
512
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
524
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
513
525
|
userId: string | number;
|
|
514
526
|
name: string;
|
|
515
527
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -523,6 +535,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
523
535
|
ordersMaxDelay?: number | null | undefined;
|
|
524
536
|
conversationsMaxDelay?: number | null | undefined;
|
|
525
537
|
} | null | undefined;
|
|
538
|
+
viewsCount?: number | null | undefined;
|
|
539
|
+
favoritesCount?: number | null | undefined;
|
|
526
540
|
} | null | undefined;
|
|
527
541
|
}[] | null | undefined;
|
|
528
542
|
conversationId?: string | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Order.d.ts","sourceRoot":"","sources":["Order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAOrB,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"Order.d.ts","sourceRoot":"","sources":["Order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAOrB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAatB,CAAA;AACF,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA"}
|