wildberries-sdk 0.1.110 → 0.1.111
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.
|
@@ -15,14 +15,6 @@
|
|
|
15
15
|
* @interface Listing
|
|
16
16
|
*/
|
|
17
17
|
export interface Listing {
|
|
18
|
-
/**
|
|
19
|
-
* [Будет отключено 16 июня](https://dev.wildberries.ru/release-notes?id=534)
|
|
20
|
-
*
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof Listing
|
|
23
|
-
* @deprecated
|
|
24
|
-
*/
|
|
25
|
-
date?: string;
|
|
26
18
|
/**
|
|
27
19
|
* Артикул WB
|
|
28
20
|
* @type {number}
|
|
@@ -32,7 +32,6 @@ function ListingFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
32
|
return json;
|
|
33
33
|
}
|
|
34
34
|
return {
|
|
35
|
-
'date': json['date'] == null ? undefined : json['date'],
|
|
36
35
|
'nmID': json['nmID'] == null ? undefined : json['nmID'],
|
|
37
36
|
'price': json['price'] == null ? undefined : json['price'],
|
|
38
37
|
'priceCurrency': json['priceCurrency'] == null ? undefined : json['priceCurrency'],
|
|
@@ -49,7 +48,6 @@ function ListingToJSONTyped(value, ignoreDiscriminator) {
|
|
|
49
48
|
return value;
|
|
50
49
|
}
|
|
51
50
|
return {
|
|
52
|
-
'date': value['date'],
|
|
53
51
|
'nmID': value['nmID'],
|
|
54
52
|
'price': value['price'],
|
|
55
53
|
'priceCurrency': value['priceCurrency'],
|