b2m-utils 0.0.97 → 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.
- package/build/types/FreightsFromShippingCompanyType/index.d.ts +8 -0
- package/build/types/FreightsRegionsType/index.d.ts +6 -0
- package/build/types/FreightsResultType/index.d.ts +6 -0
- package/build/types/FreightsStatsType/index.d.ts +10 -0
- package/build/types/index.d.ts +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import FreightsRegionsType from "../FreightsRegionsType";
|
|
2
|
+
import FreightsStatsType from "../FreightsStatsType";
|
|
3
|
+
export type FreightsFromShippingCompanyType = {
|
|
4
|
+
id: number;
|
|
5
|
+
monthByMonth: FreightsStatsType[];
|
|
6
|
+
regions: FreightsRegionsType[];
|
|
7
|
+
} & FreightsStatsType;
|
|
8
|
+
export default FreightsFromShippingCompanyType;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type FreightsStatsType = {
|
|
2
|
+
freightsTotal: number;
|
|
3
|
+
freightsOnTime: number;
|
|
4
|
+
freightsOutTime: number;
|
|
5
|
+
freightsWithoutTransitTime: number;
|
|
6
|
+
agreedPercentage: number;
|
|
7
|
+
realPercentage: number;
|
|
8
|
+
monthNumber?: number;
|
|
9
|
+
};
|
|
10
|
+
export default FreightsStatsType;
|
package/build/types/index.d.ts
CHANGED
|
@@ -64,6 +64,14 @@ export * from './FreightPlaceCountry';
|
|
|
64
64
|
export { default as FreightPlaceCountry } from './FreightPlaceCountry';
|
|
65
65
|
export * from './FreightPlaceRegion';
|
|
66
66
|
export { default as FreightPlaceRegion } from './FreightPlaceRegion';
|
|
67
|
+
export * from './FreightsFromShippingCompanyType';
|
|
68
|
+
export { default as FreightsFromShippingCompanyType } from './FreightsFromShippingCompanyType';
|
|
69
|
+
export * from './FreightsRegionsType';
|
|
70
|
+
export { default as FreightsRegionsType } from './FreightsRegionsType';
|
|
71
|
+
export * from './FreightsResultType';
|
|
72
|
+
export { default as FreightsResultType } from './FreightsResultType';
|
|
73
|
+
export * from './FreightsStatsType';
|
|
74
|
+
export { default as FreightsStatsType } from './FreightsStatsType';
|
|
67
75
|
export * from './InvoiceType';
|
|
68
76
|
export { default as InvoiceType } from './InvoiceType';
|
|
69
77
|
export * from './Incoterm';
|