@nomalism-com/types 0.32.32 → 0.32.34
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,12 @@ 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
|
+
avg_time_to_complete: number;
|
|
114
|
+
count: number;
|
|
115
|
+
error_count: number;
|
|
116
|
+
}
|
|
112
117
|
export interface IGetDataResponse {
|
|
113
118
|
server: {
|
|
114
119
|
services: IServiceStatus[];
|
|
@@ -135,6 +140,7 @@ export interface IGetDataResponse {
|
|
|
135
140
|
emails: IEmail[];
|
|
136
141
|
errors: IError[];
|
|
137
142
|
chats: IChat[];
|
|
143
|
+
kafka: IKafka[];
|
|
138
144
|
};
|
|
139
145
|
}
|
|
140
146
|
export interface IRepository {
|