@mivis/petmart-api 1.2.157 → 1.2.159
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 +17 -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;
|
|
@@ -416,6 +418,7 @@ declare namespace Components {
|
|
|
416
418
|
value: string;
|
|
417
419
|
title: string;
|
|
418
420
|
type: string;
|
|
421
|
+
photo: string;
|
|
419
422
|
children: IParsedSubCategory[];
|
|
420
423
|
}
|
|
421
424
|
|
|
@@ -1442,5 +1445,19 @@ declare namespace Components {
|
|
|
1442
1445
|
createdAt: Date;
|
|
1443
1446
|
updatedAt: Date;
|
|
1444
1447
|
}
|
|
1448
|
+
|
|
1449
|
+
export interface IMoySkladLinkerRequest {
|
|
1450
|
+
updateData: {
|
|
1451
|
+
linker_id: string;
|
|
1452
|
+
category_id: string;
|
|
1453
|
+
subCategory_id: string;
|
|
1454
|
+
}[];
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
export interface IMoySkladLinker {
|
|
1458
|
+
pathName: string;
|
|
1459
|
+
seller_id: string;
|
|
1460
|
+
product_ids: string[];
|
|
1461
|
+
}
|
|
1445
1462
|
}
|
|
1446
1463
|
}
|