@mivis/petmart-api 1.2.316 → 1.2.318

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +19 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.316",
3
+ "version": "1.2.318",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -666,6 +666,9 @@ declare namespace Components {
666
666
  PC: string;
667
667
  KC: string;
668
668
  legal_address: string;
669
+ actual_address: string;
670
+ edo_operator?: string;
671
+ edo_id?: string;
669
672
  }
670
673
 
671
674
  export type ILegalBankingDetails = Omit<
@@ -775,6 +778,7 @@ declare namespace Components {
775
778
  moy_sklad?: IMoySklad;
776
779
  commission: number;
777
780
  status: ESellerStatus;
781
+ isFreeDeliveryToPvz?: boolean;
778
782
  telegram_message_id: number | null;
779
783
  api_token: string | null;
780
784
  slug: string;
@@ -846,6 +850,10 @@ declare namespace Components {
846
850
  shop_name: string;
847
851
  send_email?: boolean;
848
852
  opt_otch: boolean;
853
+ edo_operator?: string;
854
+ edo_id?: string;
855
+ legal_address?: string;
856
+ legal_actual_address?: string;
849
857
  }
850
858
 
851
859
  export interface IUpdateSellerRequest {
@@ -860,7 +868,12 @@ declare namespace Components {
860
868
  passport_details?: string;
861
869
  passport_photo?: File | File[] | string;
862
870
  card_number?: string;
871
+ edo_operator?: string;
872
+ edo_id?: string;
873
+ registration_address?: string;
874
+ actual_address?: string;
863
875
  is_disabled?: boolean;
876
+ isFreeDeliveryToPvz?: boolean;
864
877
  }
865
878
 
866
879
  export interface IActionsSellersRequest {
@@ -1584,12 +1597,18 @@ declare namespace Components {
1584
1597
  birthday: string;
1585
1598
  passport_details: string;
1586
1599
  passport_photo: File;
1600
+ registration_address: string;
1601
+ actual_address: string;
1587
1602
  }
1588
1603
 
1589
1604
  export interface ISellerAdditionalInfo {
1590
1605
  passport_details?: string;
1591
1606
  passport_photo?: string;
1592
1607
  card_number?: string;
1608
+ edo_operator?: string;
1609
+ edo_id?: string;
1610
+ registration_address?: string;
1611
+ actual_address?: string;
1593
1612
  }
1594
1613
 
1595
1614
  export interface ISellerCompanyInfo {