@mivis/petmart-api 1.2.129 → 1.2.131

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 +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.129",
3
+ "version": "1.2.131",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -1312,5 +1312,11 @@ declare namespace Components {
1312
1312
  birthday: Date;
1313
1313
  passport_details: string;
1314
1314
  }
1315
+
1316
+ export enum ECheckSellerDataErrors {
1317
+ 'INVALID_PASSPORT' = 'INVALID_PASSPORT',
1318
+ 'INCORRECT_INN' = 'INCORRECT_INN',
1319
+ 'INN_NOT_FOUND' = 'INN_NOT_FOUND',
1320
+ }
1315
1321
  }
1316
1322
  }