b2m-utils 0.0.122 → 0.0.123
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.gz
CHANGED
|
Binary file
|
package/build/index.js.gz
CHANGED
|
Binary file
|
|
@@ -1,11 +1,17 @@
|
|
|
1
|
+
import City from "../City";
|
|
1
2
|
import Dates from "../Dates";
|
|
2
3
|
import ShippingCompany from "../ShippingCompany";
|
|
3
4
|
import ShippingCompanyRegion from "../ShippingCompanyRegion";
|
|
5
|
+
import SlaRegion from "../SlaRegion";
|
|
4
6
|
export type ShippingCompanyRegionCity = {
|
|
5
7
|
id: number;
|
|
6
|
-
|
|
8
|
+
shippingCompanyId?: number;
|
|
9
|
+
slaRegionId?: number;
|
|
10
|
+
shippingCompanyRegionId?: number;
|
|
7
11
|
cityId: number;
|
|
8
12
|
shippingCompany?: ShippingCompany;
|
|
13
|
+
slaRegion?: SlaRegion;
|
|
9
14
|
shippingCompanyRegion?: ShippingCompanyRegion;
|
|
15
|
+
city?: City;
|
|
10
16
|
} & Dates;
|
|
11
17
|
export default ShippingCompanyRegionCity;
|