@mivis/petmart-api 1.2.120 → 1.2.122

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 +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.120",
3
+ "version": "1.2.122",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -19,7 +19,6 @@ declare namespace Components {
19
19
  }
20
20
  export interface ILoginResponse extends ITokensResponse {
21
21
  isSeller: boolean;
22
- isActivated: boolean;
23
22
  role: ERoles;
24
23
  isExistPassword: boolean;
25
24
  }
@@ -1177,5 +1176,9 @@ declare namespace Components {
1177
1176
  ORDER = 'ORDER',
1178
1177
  PRODUCT = 'PRODUCT',
1179
1178
  }
1179
+
1180
+ export interface IAdminChangeSellerStatusRequest {
1181
+ status: ESellerStatus.APPROVED | ESellerStatus.DECLINED;
1182
+ }
1180
1183
  }
1181
1184
  }