b2m-utils 0.0.98 → 0.0.99
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,6 +1,8 @@
|
|
|
1
|
+
import FreightsRegionsType from "../FreightsRegionsType";
|
|
1
2
|
import FreightsStatsType from "../FreightsStatsType";
|
|
2
3
|
export type FreightsFromShippingCompanyType = {
|
|
3
4
|
id: number;
|
|
4
5
|
monthByMonth: FreightsStatsType[];
|
|
6
|
+
regions: FreightsRegionsType[];
|
|
5
7
|
} & FreightsStatsType;
|
|
6
8
|
export default FreightsFromShippingCompanyType;
|
package/build/types/index.d.ts
CHANGED
|
@@ -66,6 +66,8 @@ export * from './FreightPlaceRegion';
|
|
|
66
66
|
export { default as FreightPlaceRegion } from './FreightPlaceRegion';
|
|
67
67
|
export * from './FreightsFromShippingCompanyType';
|
|
68
68
|
export { default as FreightsFromShippingCompanyType } from './FreightsFromShippingCompanyType';
|
|
69
|
+
export * from './FreightsRegionsType';
|
|
70
|
+
export { default as FreightsRegionsType } from './FreightsRegionsType';
|
|
69
71
|
export * from './FreightsResultType';
|
|
70
72
|
export { default as FreightsResultType } from './FreightsResultType';
|
|
71
73
|
export * from './FreightsStatsType';
|