b2m-utils 0.0.198 → 0.0.200

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.
@@ -94,6 +94,7 @@ export type Cte = {
94
94
  isDuplicated?: number;
95
95
  isRedelivery?: number;
96
96
  hasSpecialApproval?: number;
97
+ specialApprovalObservations?: string;
97
98
  isCollect?: number;
98
99
  isCollectReverse?: number;
99
100
  CteCost?: CteCost[];
@@ -1,5 +1,7 @@
1
1
  import ContainerType from "../ContainerType";
2
2
  import Dates from "../Dates";
3
+ import FeeCategory from "../FeeCategory";
4
+ import FeeCalculationType from "../FeeCalculationType";
3
5
  export type Fee = {
4
6
  id: number;
5
7
  parentId?: number;
@@ -11,6 +13,8 @@ export type Fee = {
11
13
  containerTypeId?: number;
12
14
  vehicleTypeId?: number;
13
15
  name: string;
16
+ feeCategory?: FeeCategory;
17
+ feeCalculationType?: FeeCalculationType;
14
18
  containerType?: ContainerType;
15
19
  parentFee?: Fee;
16
20
  OtherFee?: Fee[];
@@ -0,0 +1,9 @@
1
+ import Dates from "../Dates";
2
+ import Fee from "../Fee";
3
+ export type FeeCalculationType = {
4
+ id: number;
5
+ isAvailableToCustomFees?: number;
6
+ name: string;
7
+ Fee?: Fee[];
8
+ } & Dates;
9
+ export default FeeCalculationType;
@@ -0,0 +1,14 @@
1
+ import Dates from "../Dates";
2
+ import Fee from "../Fee";
3
+ import FeeType from "../FeeType";
4
+ export type FeeCategory = {
5
+ id: number;
6
+ feeTypeId: number;
7
+ parentId?: number;
8
+ name: string;
9
+ feeType?: FeeType;
10
+ parentFeeCategory?: FeeCategory;
11
+ other_feecategories?: FeeCategory[];
12
+ Fee?: Fee[];
13
+ } & Dates;
14
+ export default FeeCategory;
@@ -0,0 +1,8 @@
1
+ import Dates from "../Dates";
2
+ import FeeCategory from "../FeeCategory";
3
+ export type FeeType = {
4
+ id: number;
5
+ name: string;
6
+ FeeCategory?: FeeCategory[];
7
+ } & Dates;
8
+ export default FeeType;
@@ -76,6 +76,12 @@ export * from './DomainUser';
76
76
  export { default as DomainUser } from './DomainUser';
77
77
  export * from './Fee';
78
78
  export { default as Fee } from './Fee';
79
+ export * from './FeeCategory';
80
+ export { default as FeeCategory } from './FeeCategory';
81
+ export * from './FeeCalculationType';
82
+ export { default as FeeCalculationType } from './FeeCalculationType';
83
+ export * from './FeeType';
84
+ export { default as FeeType } from './FeeType';
79
85
  export * from './File';
80
86
  export { default as File } from './File';
81
87
  export * from './FreightForwarder';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.198",
3
+ "version": "0.0.200",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",