randmar-api-client 1.11.0 → 1.12.0
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.
|
@@ -2197,6 +2197,12 @@ export type SalesData = {
|
|
|
2197
2197
|
ManufacturerId?: string | null;
|
|
2198
2198
|
ResellerId?: string | null;
|
|
2199
2199
|
};
|
|
2200
|
+
export type SalesStatistic = {
|
|
2201
|
+
Day?: number;
|
|
2202
|
+
ExtendedPrice?: number;
|
|
2203
|
+
Quantity?: number;
|
|
2204
|
+
RandmarSKU?: string | null;
|
|
2205
|
+
};
|
|
2200
2206
|
export type Manufacturer = {
|
|
2201
2207
|
AutoUpdate?: boolean;
|
|
2202
2208
|
OpenToWork?: boolean;
|
|
@@ -2241,6 +2247,7 @@ export type Manufacturer = {
|
|
|
2241
2247
|
TermsCode?: string | null;
|
|
2242
2248
|
Website?: string | null;
|
|
2243
2249
|
YoutubePlaylist?: string | null;
|
|
2250
|
+
SalesStatistics?: SalesStatistic[] | null;
|
|
2244
2251
|
};
|
|
2245
2252
|
export type OrderDetail = {
|
|
2246
2253
|
DocumentDate?: number;
|
|
@@ -2295,6 +2302,7 @@ export type Reseller = {
|
|
|
2295
2302
|
PriceProfile?: number;
|
|
2296
2303
|
ActiveOrderDetails?: OrderDetail[] | null;
|
|
2297
2304
|
Qualifications?: Qualification[] | null;
|
|
2305
|
+
SalesStatistics?: SalesStatistic[] | null;
|
|
2298
2306
|
SalesData?: SalesData;
|
|
2299
2307
|
Statement?: Statement;
|
|
2300
2308
|
About?: string | null;
|
|
@@ -2767,12 +2775,6 @@ export type Return = {
|
|
|
2767
2775
|
Status?: string | null;
|
|
2768
2776
|
WarehouseLocation?: string | null;
|
|
2769
2777
|
};
|
|
2770
|
-
export type SalesStatistic = {
|
|
2771
|
-
Day?: number;
|
|
2772
|
-
ExtendedPrice?: number;
|
|
2773
|
-
Quantity?: number;
|
|
2774
|
-
RandmarSKU?: string | null;
|
|
2775
|
-
};
|
|
2776
2778
|
export type Shipment = {
|
|
2777
2779
|
ExtendedPrice?: number;
|
|
2778
2780
|
QuantityBackOrder?: number;
|