@mivis/petmart-api 1.2.131 → 1.2.133

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 +10 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.131",
3
+ "version": "1.2.133",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -587,6 +587,7 @@ declare namespace Components {
587
587
  email: string;
588
588
  tel: number;
589
589
  type: ESellerTypes;
590
+ opt_otch: boolean;
590
591
  }
591
592
 
592
593
  export interface ICreateSellerInfo extends ISellerInfo {
@@ -1215,10 +1216,6 @@ declare namespace Components {
1215
1216
  INN: string;
1216
1217
  }
1217
1218
 
1218
- export interface IGetInfoOfLegalResponse {
1219
- name: string;
1220
- }
1221
-
1222
1219
  export interface IСheckCleanOfPassportRequest {
1223
1220
  passport_details: string;
1224
1221
  }
@@ -1278,6 +1275,7 @@ declare namespace Components {
1278
1275
  export interface ISellerAdditionalInfo {
1279
1276
  passport_details?: string;
1280
1277
  passport_photo?: string;
1278
+ card_number?: string;
1281
1279
  }
1282
1280
 
1283
1281
  export interface ISellerCompanyInfo {
@@ -1318,5 +1316,13 @@ declare namespace Components {
1318
1316
  'INCORRECT_INN' = 'INCORRECT_INN',
1319
1317
  'INN_NOT_FOUND' = 'INN_NOT_FOUND',
1320
1318
  }
1319
+
1320
+ export interface IAdminCreatePhysicalSellerRequest
1321
+ extends IAdminCreateSellerRequest {
1322
+ birthday: Date;
1323
+ passport_details: string;
1324
+ passport_photo: File | File[];
1325
+ card_number?: string;
1326
+ }
1321
1327
  }
1322
1328
  }