b2m-utils 0.0.96 → 0.0.98

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,5 +1,6 @@
1
1
  import Dates from "../Dates";
2
2
  import Domain from "../Domain";
3
+ import DomainSlaRoute from "../DomainSlaRoute";
3
4
  import ShippingCompany from "../ShippingCompany";
4
5
  export type DomainSlaContract = {
5
6
  id: number;
@@ -10,5 +11,6 @@ export type DomainSlaContract = {
10
11
  percentage: number;
11
12
  domain?: Domain;
12
13
  shippingCompany?: ShippingCompany;
14
+ DomainSlaRoute?: DomainSlaRoute[];
13
15
  } & Dates;
14
16
  export default DomainSlaContract;
@@ -0,0 +1,6 @@
1
+ import FreightsStatsType from "../FreightsStatsType";
2
+ export type FreightsFromShippingCompanyType = {
3
+ id: number;
4
+ monthByMonth: FreightsStatsType[];
5
+ } & FreightsStatsType;
6
+ export default FreightsFromShippingCompanyType;
@@ -0,0 +1,6 @@
1
+ import FreightsStatsType from "../FreightsStatsType";
2
+ export type FreightsResultType = {
3
+ id: number;
4
+ company: string;
5
+ } & FreightsStatsType;
6
+ export default FreightsResultType;
@@ -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;
@@ -64,6 +64,12 @@ 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 './FreightsResultType';
70
+ export { default as FreightsResultType } from './FreightsResultType';
71
+ export * from './FreightsStatsType';
72
+ export { default as FreightsStatsType } from './FreightsStatsType';
67
73
  export * from './InvoiceType';
68
74
  export { default as InvoiceType } from './InvoiceType';
69
75
  export * from './Incoterm';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.96",
3
+ "version": "0.0.98",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",