b2m-utils 0.0.298 → 0.0.299

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.
@@ -0,0 +1,12 @@
1
+ import Dates from "../Dates";
2
+ import RatecardConfigValue from "../RatecardConfigValue";
3
+ export type RatecardConfig = {
4
+ id: number;
5
+ configKey: string;
6
+ name: string;
7
+ configType: string;
8
+ description?: string | null;
9
+ defaultValue?: string | null;
10
+ RatecardConfigValue?: RatecardConfigValue[];
11
+ } & Dates;
12
+ export default RatecardConfig;
@@ -0,0 +1,12 @@
1
+ import Dates from "../Dates";
2
+ import Ratecard from "../Ratecard";
3
+ import RatecardConfig from "../RatecardConfig";
4
+ export type RatecardConfigValue = {
5
+ id: number;
6
+ ratecardId: number;
7
+ configId: number;
8
+ configValue: string;
9
+ ratecard?: Ratecard;
10
+ ratecardConfig?: RatecardConfig;
11
+ } & Dates;
12
+ export default RatecardConfigValue;
@@ -150,6 +150,10 @@ export * from './RatecardFeeConfig';
150
150
  export { default as RatecardFeeConfig } from './RatecardFeeConfig';
151
151
  export * from './RatecardCityDistance';
152
152
  export { default as RatecardCityDistance } from './RatecardCityDistance';
153
+ export * from './RatecardConfig';
154
+ export { default as RatecardConfig } from './RatecardConfig';
155
+ export * from './RatecardConfigValue';
156
+ export { default as RatecardConfigValue } from './RatecardConfigValue';
153
157
  export * from './RatecardLane';
154
158
  export { default as RatecardLane } from './RatecardLane';
155
159
  export * from './RatecardLaneFee';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.298",
3
+ "version": "0.0.299",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",