@mivis/petmart-api 1.2.107 → 1.2.109

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 +5 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.107",
3
+ "version": "1.2.109",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -215,11 +215,8 @@ declare namespace Components {
215
215
  }
216
216
 
217
217
  export enum EUnit {
218
- T = 'TON',
219
218
  KG = 'KG',
220
219
  GR = 'GR',
221
- L = 'LITER',
222
- ML = 'MILLILITER',
223
220
  }
224
221
 
225
222
  export interface IDimension {
@@ -738,6 +735,7 @@ declare namespace Components {
738
735
  ON_CONFIRMATION = 'ON_CONFIRMATION',
739
736
  CONFIRMED_BY_SELLER = 'CONFIRMED_BY_SELLER',
740
737
  IN_DELIVERY = 'IN_DELIVERY',
738
+ WAITING_IN_POINT = 'WAITING_IN_POINT',
741
739
  FINISHED = 'FINISHED',
742
740
  CANCELED = 'CANCELED',
743
741
  }
@@ -1168,5 +1166,9 @@ declare namespace Components {
1168
1166
  type: ESellerTransactionsType;
1169
1167
  sum: number;
1170
1168
  }
1169
+
1170
+ export interface IAdminAddCustomRefundTransactionRequest {
1171
+ custom_sum: number;
1172
+ }
1171
1173
  }
1172
1174
  }