b2m-utils 0.0.125 → 0.0.126
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import Dates from "../Dates";
|
|
2
|
+
import ShippingCompanyRegionCity from "../ShippingCompanyRegionCity";
|
|
2
3
|
import SlaRegion from "../SlaRegion";
|
|
3
4
|
import State from "../State";
|
|
4
5
|
export type City = {
|
|
@@ -8,5 +9,6 @@ export type City = {
|
|
|
8
9
|
name: string;
|
|
9
10
|
state: State;
|
|
10
11
|
slaRegion?: SlaRegion;
|
|
12
|
+
ShippingCompanyRegionCity?: ShippingCompanyRegionCity[];
|
|
11
13
|
} & Dates;
|
|
12
14
|
export default City;
|