b2m-utils 0.0.215 → 0.0.217
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/index.esm.js +46 -30
- package/build/index.esm.js.gz +0 -0
- package/build/index.esm.js.map +1 -1
- package/build/index.js +46 -30
- package/build/index.js.gz +0 -0
- package/build/index.js.map +1 -1
- package/build/types/Cte/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ import Domain from "../Domain";
|
|
|
12
12
|
import File from "../File";
|
|
13
13
|
import InvoiceCte from "../InvoiceCte";
|
|
14
14
|
import Modal from "../Modal";
|
|
15
|
+
import RatecardModal from "../RatecardModal";
|
|
15
16
|
import ServiceType from "../ServiceType";
|
|
16
17
|
import User from "../User";
|
|
17
18
|
export type Cte = {
|
|
@@ -20,6 +21,7 @@ export type Cte = {
|
|
|
20
21
|
approvedByUserId?: number;
|
|
21
22
|
carrierId?: number;
|
|
22
23
|
modalId?: number;
|
|
24
|
+
ratecardModalId?: number;
|
|
23
25
|
vehicleTypeId?: number;
|
|
24
26
|
statusId?: number;
|
|
25
27
|
typeId?: number;
|
|
@@ -119,5 +121,6 @@ export type Cte = {
|
|
|
119
121
|
cte_chats?: CteChat[];
|
|
120
122
|
invoice_ctes?: InvoiceCte[];
|
|
121
123
|
cte_tag_relations?: CteTagRelation[];
|
|
124
|
+
ratecard_modals?: RatecardModal;
|
|
122
125
|
} & Dates;
|
|
123
126
|
export default Cte;
|