@mivis/petmart-api 1.2.317 → 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 +17 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.317",
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<
@@ -847,6 +850,10 @@ declare namespace Components {
847
850
  shop_name: string;
848
851
  send_email?: boolean;
849
852
  opt_otch: boolean;
853
+ edo_operator?: string;
854
+ edo_id?: string;
855
+ legal_address?: string;
856
+ legal_actual_address?: string;
850
857
  }
851
858
 
852
859
  export interface IUpdateSellerRequest {
@@ -861,6 +868,10 @@ declare namespace Components {
861
868
  passport_details?: string;
862
869
  passport_photo?: File | File[] | string;
863
870
  card_number?: string;
871
+ edo_operator?: string;
872
+ edo_id?: string;
873
+ registration_address?: string;
874
+ actual_address?: string;
864
875
  is_disabled?: boolean;
865
876
  isFreeDeliveryToPvz?: boolean;
866
877
  }
@@ -1586,12 +1597,18 @@ declare namespace Components {
1586
1597
  birthday: string;
1587
1598
  passport_details: string;
1588
1599
  passport_photo: File;
1600
+ registration_address: string;
1601
+ actual_address: string;
1589
1602
  }
1590
1603
 
1591
1604
  export interface ISellerAdditionalInfo {
1592
1605
  passport_details?: string;
1593
1606
  passport_photo?: string;
1594
1607
  card_number?: string;
1608
+ edo_operator?: string;
1609
+ edo_id?: string;
1610
+ registration_address?: string;
1611
+ actual_address?: string;
1595
1612
  }
1596
1613
 
1597
1614
  export interface ISellerCompanyInfo {