b2m-utils 0.0.214 → 0.0.216
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.
- package/build/index.esm.js +46 -30
- package/build/index.esm.js.gz +0 -0
- package/build/index.esm.js.map +1 -1
- package/build/index.js +46 -30
- package/build/index.js.gz +0 -0
- package/build/index.js.map +1 -1
- package/build/types/City/index.d.ts +2 -0
- package/build/types/Ratecard/index.d.ts +2 -0
- package/build/types/RatecardOriginCity/index.d.ts +11 -0
- package/build/types/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import Dates from "../Dates";
|
|
2
|
+
import RatecardOriginCity from "../RatecardOriginCity";
|
|
2
3
|
import ShippingCompanyRegionCity from "../ShippingCompanyRegionCity";
|
|
3
4
|
import SlaRegion from "../SlaRegion";
|
|
4
5
|
import State from "../State";
|
|
@@ -10,5 +11,6 @@ export type City = {
|
|
|
10
11
|
state: State;
|
|
11
12
|
slaRegion?: SlaRegion;
|
|
12
13
|
ShippingCompanyRegionCity?: ShippingCompanyRegionCity[];
|
|
14
|
+
ratecard_origin_cities?: RatecardOriginCity[];
|
|
13
15
|
} & Dates;
|
|
14
16
|
export default City;
|
|
@@ -4,6 +4,7 @@ import File from "../File";
|
|
|
4
4
|
import RatecardConditionalFee from "../RatecardConditionalFee";
|
|
5
5
|
import RatecardLane from "../RatecardLane";
|
|
6
6
|
import RatecardModal from "../RatecardModal";
|
|
7
|
+
import RatecardOriginCity from "../RatecardOriginCity";
|
|
7
8
|
import RatecardProvider from "../RatecardProvider";
|
|
8
9
|
import RatecardRegion from "../RatecardRegion";
|
|
9
10
|
import RatecardRegionCity from "../RatecardRegionCity";
|
|
@@ -26,6 +27,7 @@ export type Ratecard = {
|
|
|
26
27
|
modal?: RatecardModal;
|
|
27
28
|
RatecardConditionalFee?: RatecardConditionalFee[];
|
|
28
29
|
RatecardLane?: RatecardLane[];
|
|
30
|
+
ratecard_origin_cities?: RatecardOriginCity[];
|
|
29
31
|
RatecardRegionCity?: RatecardRegionCity[];
|
|
30
32
|
RatecardRegion?: RatecardRegion[];
|
|
31
33
|
} & Dates;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import City from "../City";
|
|
2
|
+
import Dates from "../Dates";
|
|
3
|
+
import Ratecard from "../Ratecard";
|
|
4
|
+
export type RatecardOriginCity = {
|
|
5
|
+
id: number;
|
|
6
|
+
ratecardId: number;
|
|
7
|
+
cityId: number;
|
|
8
|
+
cities?: City;
|
|
9
|
+
ratecards?: Ratecard;
|
|
10
|
+
} & Dates;
|
|
11
|
+
export default RatecardOriginCity;
|
package/build/types/index.d.ts
CHANGED
|
@@ -142,6 +142,8 @@ export * from './RatecardLaneFee';
|
|
|
142
142
|
export { default as RatecardLaneFee } from './RatecardLaneFee';
|
|
143
143
|
export * from './RatecardModal';
|
|
144
144
|
export { default as RatecardModal } from './RatecardModal';
|
|
145
|
+
export * from './RatecardOriginCity';
|
|
146
|
+
export { default as RatecardOriginCity } from './RatecardOriginCity';
|
|
145
147
|
export * from './RatecardProvider';
|
|
146
148
|
export { default as RatecardProvider } from './RatecardProvider';
|
|
147
149
|
export * from './RatecardRegion';
|