@mivis/petmart-api 1.2.157 → 1.2.158
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 +1 -1
- package/type.d.ts +16 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -259,6 +259,8 @@ declare namespace Components {
|
|
|
259
259
|
photo: string[];
|
|
260
260
|
desc: string;
|
|
261
261
|
characteristic: ICharacteristic[];
|
|
262
|
+
external_item_id: string | null;
|
|
263
|
+
variations: string[];
|
|
262
264
|
purchases_count: number;
|
|
263
265
|
viewed?: number;
|
|
264
266
|
number: number;
|
|
@@ -1442,5 +1444,19 @@ declare namespace Components {
|
|
|
1442
1444
|
createdAt: Date;
|
|
1443
1445
|
updatedAt: Date;
|
|
1444
1446
|
}
|
|
1447
|
+
|
|
1448
|
+
export interface IMoySkladLinkerRequest {
|
|
1449
|
+
updateData: {
|
|
1450
|
+
linker_id: string;
|
|
1451
|
+
category_id: string;
|
|
1452
|
+
subCategory_id: string;
|
|
1453
|
+
}[];
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
export interface IMoySkladLinker {
|
|
1457
|
+
pathName: string;
|
|
1458
|
+
seller_id: string;
|
|
1459
|
+
product_ids: string[];
|
|
1460
|
+
}
|
|
1445
1461
|
}
|
|
1446
1462
|
}
|