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.
|
@@ -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,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;
|
package/build/types/index.d.ts
CHANGED
|
@@ -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';
|