b2m-utils 0.0.163 → 0.0.165
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,6 +1,7 @@
|
|
|
1
1
|
import Carrier from "../Carrier";
|
|
2
2
|
import City from "../City";
|
|
3
3
|
import CteAuditValue from "../CteAuditedValue";
|
|
4
|
+
import CteChat from "../CteChat";
|
|
4
5
|
import CteCost from "../CteCost";
|
|
5
6
|
import CteStatus from "../CteStatus";
|
|
6
7
|
import CteType from "../CteType";
|
|
@@ -93,5 +94,6 @@ export type Cte = {
|
|
|
93
94
|
cteStatus?: CteStatus;
|
|
94
95
|
cte_audited_values?: CteAuditValue[];
|
|
95
96
|
users?: User;
|
|
97
|
+
cte_chats?: CteChat[];
|
|
96
98
|
} & Dates;
|
|
97
99
|
export default Cte;
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { CteChat } from "../CteChat";
|
|
2
2
|
import Dates from "../Dates";
|
|
3
|
+
import Domain from "../Domain";
|
|
3
4
|
import User from "../User";
|
|
4
5
|
export type CteChatMessage = {
|
|
5
6
|
id: number;
|
|
6
7
|
cteChatId: number;
|
|
8
|
+
domainId: number;
|
|
7
9
|
messageAuthorId: number;
|
|
8
10
|
message: string;
|
|
9
11
|
cte_chats?: CteChat;
|
|
10
12
|
users?: User;
|
|
13
|
+
domains?: Domain;
|
|
11
14
|
} & Dates;
|
|
12
15
|
export default CteChatMessage;
|