@mivis/petmart-api 1.2.293 → 1.2.295
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 +7 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -342,12 +342,14 @@ declare namespace Components {
|
|
|
342
342
|
name: string;
|
|
343
343
|
category_id: string;
|
|
344
344
|
slug: string;
|
|
345
|
+
number: number;
|
|
345
346
|
};
|
|
346
347
|
category_id: {
|
|
347
348
|
_id: string;
|
|
348
349
|
photo: string;
|
|
349
350
|
name: string;
|
|
350
351
|
slug: string;
|
|
352
|
+
number: number;
|
|
351
353
|
};
|
|
352
354
|
seller_id?: {
|
|
353
355
|
_id: string;
|
|
@@ -485,15 +487,18 @@ declare namespace Components {
|
|
|
485
487
|
dimension: IDimension;
|
|
486
488
|
price: number;
|
|
487
489
|
slug: string;
|
|
490
|
+
number: number;
|
|
488
491
|
category_id: {
|
|
489
492
|
_id: string;
|
|
490
493
|
name: string;
|
|
491
494
|
slug: string;
|
|
495
|
+
number: number;
|
|
492
496
|
};
|
|
493
497
|
subCategory_id: {
|
|
494
498
|
_id: string;
|
|
495
499
|
name: string;
|
|
496
500
|
slug: string;
|
|
501
|
+
number: number;
|
|
497
502
|
};
|
|
498
503
|
seller_id: {
|
|
499
504
|
_id: string;
|
|
@@ -554,6 +559,7 @@ declare namespace Components {
|
|
|
554
559
|
type: string;
|
|
555
560
|
photo: string;
|
|
556
561
|
seoInfo?: ISeoInfo;
|
|
562
|
+
number: number;
|
|
557
563
|
slug: string;
|
|
558
564
|
updatedAt: Date;
|
|
559
565
|
children: IParsedSubCategory[];
|
|
@@ -564,6 +570,7 @@ declare namespace Components {
|
|
|
564
570
|
title: string;
|
|
565
571
|
type: string;
|
|
566
572
|
seoInfo?: ISeoInfo;
|
|
573
|
+
number: number;
|
|
567
574
|
slug: string;
|
|
568
575
|
updatedAt: Date;
|
|
569
576
|
status: ESubCategoryStatus;
|