@nomalism-com/types 0.32.31 → 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.
|
@@ -108,6 +108,11 @@ export interface IChat extends ICalendar {
|
|
|
108
108
|
processed: number;
|
|
109
109
|
delivered: number;
|
|
110
110
|
}
|
|
111
|
+
export interface IKafka extends ICalendar {
|
|
112
|
+
topic: string;
|
|
113
|
+
count: number;
|
|
114
|
+
error_count: number;
|
|
115
|
+
}
|
|
111
116
|
export interface IGetDataResponse {
|
|
112
117
|
server: {
|
|
113
118
|
services: IServiceStatus[];
|
|
@@ -134,6 +139,7 @@ export interface IGetDataResponse {
|
|
|
134
139
|
emails: IEmail[];
|
|
135
140
|
errors: IError[];
|
|
136
141
|
chats: IChat[];
|
|
142
|
+
kafka: IKafka[];
|
|
137
143
|
};
|
|
138
144
|
}
|
|
139
145
|
export interface IRepository {
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"typescript",
|
|
10
10
|
"helper"
|
|
11
11
|
],
|
|
12
|
-
"version": "0.32.
|
|
12
|
+
"version": "0.32.33",
|
|
13
13
|
"main": "./dist/index.min.js",
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
15
|
"files": [
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@typescript-eslint/parser": "^8.26.1",
|
|
45
45
|
"eslint": "^9.22.0",
|
|
46
46
|
"eslint-config-prettier": "^10.1.1",
|
|
47
|
-
"eslint-import-resolver-typescript": "^4.
|
|
47
|
+
"eslint-import-resolver-typescript": "^4.2.1",
|
|
48
48
|
"eslint-plugin-prettier": "^5.2.3",
|
|
49
49
|
"prettier": "^3.5.3",
|
|
50
50
|
"rollup": "^4.36.0",
|