b2m-utils 0.0.299 → 0.0.301

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.
@@ -11,6 +11,7 @@ import RatecardProvider from "../RatecardProvider";
11
11
  import RatecardRegion from "../RatecardRegion";
12
12
  import RatecardRegionCity from "../RatecardRegionCity";
13
13
  import RatecardFeeConfig from "../RatecardFeeConfig";
14
+ import RatecardConfigValue from "../RatecardConfigValue";
14
15
  export type Ratecard = {
15
16
  id: number;
16
17
  domainId: number;
@@ -36,5 +37,6 @@ export type Ratecard = {
36
37
  ratecard_origin_cities?: RatecardOriginCity[];
37
38
  RatecardRegionCity?: RatecardRegionCity[];
38
39
  RatecardRegion?: RatecardRegion[];
40
+ ratecard_config_values?: RatecardConfigValue[];
39
41
  } & Dates;
40
42
  export default Ratecard;
@@ -7,6 +7,6 @@ export type RatecardConfig = {
7
7
  configType: string;
8
8
  description?: string | null;
9
9
  defaultValue?: string | null;
10
- RatecardConfigValue?: RatecardConfigValue[];
10
+ ratecard_config_values?: RatecardConfigValue[];
11
11
  } & Dates;
12
12
  export default RatecardConfig;
@@ -6,7 +6,7 @@ export type RatecardConfigValue = {
6
6
  ratecardId: number;
7
7
  configId: number;
8
8
  configValue: string;
9
- ratecard?: Ratecard;
10
- ratecardConfig?: RatecardConfig;
9
+ ratecards?: Ratecard;
10
+ ratecard_configs?: RatecardConfig;
11
11
  } & Dates;
12
12
  export default RatecardConfigValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.299",
3
+ "version": "0.0.301",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",