b2m-utils 0.0.139 → 0.0.140

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.
@@ -3,6 +3,7 @@ import Dates from "../Dates";
3
3
  import Fee from "../Fee";
4
4
  import Ratecard from "../Ratecard";
5
5
  import RatecardConditionalFeeType from "../RatecardConditionalFeeType";
6
+ import State from "../State";
6
7
  export type RatecardConditionalFee = {
7
8
  id: number;
8
9
  ratecardId: number;
@@ -10,8 +11,10 @@ export type RatecardConditionalFee = {
10
11
  typeId: number;
11
12
  cityId?: number;
12
13
  cnpj?: string;
14
+ stateId?: number;
13
15
  city?: City;
14
16
  fee?: Fee;
17
+ state?: State;
15
18
  ratecard?: Ratecard;
16
19
  ratecardConditionalFeeType?: RatecardConditionalFeeType;
17
20
  } & Dates;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.139",
3
+ "version": "0.0.140",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",