@nomalism-com/types 0.32.32 → 0.32.33
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.
|
@@ -32,9 +32,8 @@ export interface IProposta {
|
|
|
32
32
|
created_at: Date;
|
|
33
33
|
}
|
|
34
34
|
export interface ITask extends ICalendar {
|
|
35
|
-
topic: boolean;
|
|
36
35
|
count: number;
|
|
37
|
-
|
|
36
|
+
auto: boolean;
|
|
38
37
|
}
|
|
39
38
|
export interface IStock {
|
|
40
39
|
created_at: Date;
|
|
@@ -109,6 +108,11 @@ export interface IChat extends ICalendar {
|
|
|
109
108
|
processed: number;
|
|
110
109
|
delivered: number;
|
|
111
110
|
}
|
|
111
|
+
export interface IKafka extends ICalendar {
|
|
112
|
+
topic: string;
|
|
113
|
+
count: number;
|
|
114
|
+
error_count: number;
|
|
115
|
+
}
|
|
112
116
|
export interface IGetDataResponse {
|
|
113
117
|
server: {
|
|
114
118
|
services: IServiceStatus[];
|
|
@@ -135,6 +139,7 @@ export interface IGetDataResponse {
|
|
|
135
139
|
emails: IEmail[];
|
|
136
140
|
errors: IError[];
|
|
137
141
|
chats: IChat[];
|
|
142
|
+
kafka: IKafka[];
|
|
138
143
|
};
|
|
139
144
|
}
|
|
140
145
|
export interface IRepository {
|