@mivis/petmart-api 1.2.317 → 1.2.319
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 +22 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -575,6 +575,11 @@ declare namespace Components {
|
|
|
575
575
|
|
|
576
576
|
export interface IGetCategoryQuery extends FilterBaseQuery {
|
|
577
577
|
parsed?: string;
|
|
578
|
+
onlyNonEmpty?: string;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
export interface IGetSubCategoryQuery {
|
|
582
|
+
onlyNonEmpty?: string;
|
|
578
583
|
}
|
|
579
584
|
|
|
580
585
|
export interface IParsedCategory {
|
|
@@ -666,6 +671,9 @@ declare namespace Components {
|
|
|
666
671
|
PC: string;
|
|
667
672
|
KC: string;
|
|
668
673
|
legal_address: string;
|
|
674
|
+
actual_address: string;
|
|
675
|
+
edo_operator?: string;
|
|
676
|
+
edo_id?: string;
|
|
669
677
|
}
|
|
670
678
|
|
|
671
679
|
export type ILegalBankingDetails = Omit<
|
|
@@ -847,6 +855,10 @@ declare namespace Components {
|
|
|
847
855
|
shop_name: string;
|
|
848
856
|
send_email?: boolean;
|
|
849
857
|
opt_otch: boolean;
|
|
858
|
+
edo_operator?: string;
|
|
859
|
+
edo_id?: string;
|
|
860
|
+
legal_address?: string;
|
|
861
|
+
legal_actual_address?: string;
|
|
850
862
|
}
|
|
851
863
|
|
|
852
864
|
export interface IUpdateSellerRequest {
|
|
@@ -861,6 +873,10 @@ declare namespace Components {
|
|
|
861
873
|
passport_details?: string;
|
|
862
874
|
passport_photo?: File | File[] | string;
|
|
863
875
|
card_number?: string;
|
|
876
|
+
edo_operator?: string;
|
|
877
|
+
edo_id?: string;
|
|
878
|
+
registration_address?: string;
|
|
879
|
+
actual_address?: string;
|
|
864
880
|
is_disabled?: boolean;
|
|
865
881
|
isFreeDeliveryToPvz?: boolean;
|
|
866
882
|
}
|
|
@@ -1586,12 +1602,18 @@ declare namespace Components {
|
|
|
1586
1602
|
birthday: string;
|
|
1587
1603
|
passport_details: string;
|
|
1588
1604
|
passport_photo: File;
|
|
1605
|
+
registration_address: string;
|
|
1606
|
+
actual_address: string;
|
|
1589
1607
|
}
|
|
1590
1608
|
|
|
1591
1609
|
export interface ISellerAdditionalInfo {
|
|
1592
1610
|
passport_details?: string;
|
|
1593
1611
|
passport_photo?: string;
|
|
1594
1612
|
card_number?: string;
|
|
1613
|
+
edo_operator?: string;
|
|
1614
|
+
edo_id?: string;
|
|
1615
|
+
registration_address?: string;
|
|
1616
|
+
actual_address?: string;
|
|
1595
1617
|
}
|
|
1596
1618
|
|
|
1597
1619
|
export interface ISellerCompanyInfo {
|