eservices-core 1.3.371 → 1.3.373
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.
|
@@ -50,6 +50,10 @@ export interface ISocketOptions {
|
|
|
50
50
|
* @description Уникальный идентификатор события
|
|
51
51
|
*/
|
|
52
52
|
requestId?: number;
|
|
53
|
+
/**
|
|
54
|
+
* @description Метка языка запроса
|
|
55
|
+
*/
|
|
56
|
+
lang?: string;
|
|
53
57
|
}
|
|
54
58
|
export interface ISocketMessage {
|
|
55
59
|
/**
|
|
@@ -75,4 +79,8 @@ export interface ISocketMessage {
|
|
|
75
79
|
* @description Строковое значение URL, с которого было отправлено сообщение. Используется для вычисления UsageContext.
|
|
76
80
|
*/
|
|
77
81
|
url: string;
|
|
82
|
+
/**
|
|
83
|
+
* @description Строковая метка языка на котором ожидается ответ
|
|
84
|
+
*/
|
|
85
|
+
lang?: string;
|
|
78
86
|
}
|