@mivis/petmart-api 1.2.293 → 1.2.294
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 +6 -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;
|
|
@@ -489,11 +491,13 @@ declare namespace Components {
|
|
|
489
491
|
_id: string;
|
|
490
492
|
name: string;
|
|
491
493
|
slug: string;
|
|
494
|
+
number: number;
|
|
492
495
|
};
|
|
493
496
|
subCategory_id: {
|
|
494
497
|
_id: string;
|
|
495
498
|
name: string;
|
|
496
499
|
slug: string;
|
|
500
|
+
number: number;
|
|
497
501
|
};
|
|
498
502
|
seller_id: {
|
|
499
503
|
_id: string;
|
|
@@ -554,6 +558,7 @@ declare namespace Components {
|
|
|
554
558
|
type: string;
|
|
555
559
|
photo: string;
|
|
556
560
|
seoInfo?: ISeoInfo;
|
|
561
|
+
number: number;
|
|
557
562
|
slug: string;
|
|
558
563
|
updatedAt: Date;
|
|
559
564
|
children: IParsedSubCategory[];
|
|
@@ -564,6 +569,7 @@ declare namespace Components {
|
|
|
564
569
|
title: string;
|
|
565
570
|
type: string;
|
|
566
571
|
seoInfo?: ISeoInfo;
|
|
572
|
+
number: number;
|
|
567
573
|
slug: string;
|
|
568
574
|
updatedAt: Date;
|
|
569
575
|
status: ESubCategoryStatus;
|