b2m-utils 0.0.151 → 0.0.153
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 Carrier from "../Carrier";
|
|
2
2
|
import City from "../City";
|
|
3
|
+
import CteAuditValue from "../CteAuditedValue";
|
|
3
4
|
import CteCost from "../CteCost";
|
|
4
5
|
import CteStatus from "../CteStatus";
|
|
5
6
|
import CteType from "../CteType";
|
|
@@ -7,9 +8,11 @@ import Dates from "../Dates";
|
|
|
7
8
|
import Domain from "../Domain";
|
|
8
9
|
import File from "../File";
|
|
9
10
|
import ServiceType from "../ServiceType";
|
|
11
|
+
import User from "../User";
|
|
10
12
|
export type Cte = {
|
|
11
13
|
id: number;
|
|
12
14
|
domainId: number;
|
|
15
|
+
approvedByUserId?: number;
|
|
13
16
|
carrierId?: number;
|
|
14
17
|
statusId?: number;
|
|
15
18
|
typeId?: number;
|
|
@@ -88,5 +91,7 @@ export type Cte = {
|
|
|
88
91
|
file?: File;
|
|
89
92
|
serviceType?: ServiceType;
|
|
90
93
|
cteStatus?: CteStatus;
|
|
94
|
+
cte_audited_values?: CteAuditValue[];
|
|
95
|
+
users?: User;
|
|
91
96
|
} & Dates;
|
|
92
97
|
export default Cte;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import Cte from "../Cte";
|
|
2
|
+
import Dates from "../Dates";
|
|
3
|
+
import Fee from "../Fee";
|
|
4
|
+
export type CteAuditedValue = {
|
|
5
|
+
id: number;
|
|
6
|
+
cteId: number;
|
|
7
|
+
feeId: number;
|
|
8
|
+
feeName: string;
|
|
9
|
+
value: string;
|
|
10
|
+
total: string;
|
|
11
|
+
description: string;
|
|
12
|
+
ctes?: Cte;
|
|
13
|
+
fees?: Fee;
|
|
14
|
+
} & Dates;
|
|
15
|
+
export default CteAuditedValue;
|
package/build/types/index.d.ts
CHANGED
|
@@ -18,6 +18,8 @@ export * from './Country';
|
|
|
18
18
|
export { default as Country } from './Country';
|
|
19
19
|
export * from './Cte';
|
|
20
20
|
export { default as Cte } from './Cte';
|
|
21
|
+
export * from './CteAuditedValue';
|
|
22
|
+
export { default as CteAuditedValue } from './CteAuditedValue';
|
|
21
23
|
export * from './CteChat';
|
|
22
24
|
export { default as CteChat } from './CteChat';
|
|
23
25
|
export * from './CteChatMessage';
|