eservices-core 1.3.354 → 1.3.355

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.
@@ -38,6 +38,10 @@ export interface IOrganizationContent {
38
38
  * @description Строковое название организации
39
39
  */
40
40
  name: string;
41
+ /**
42
+ * @description Статус в котором находится организация.
43
+ */
44
+ statusCode: string;
41
45
  /**
42
46
  * @description Строковое название роли текущей персоны в организации
43
47
  */
@@ -1,4 +1,5 @@
1
1
  import { ICustomerRequestInfo } from './main';
2
+ import { default as CustomerConfigurationStore } from '../store/customer-configuration-store';
2
3
 
3
4
  export declare type ISocketEventHandler = ((options: ICustomerRequestInfo, data: unknown, requestUtils?: Partial<ISocketUtils>) => any);
4
5
  export interface ISocketUtils {
@@ -11,6 +12,11 @@ export interface ISocketUtils {
11
12
  * @param data Данные, которые будут переданы в событие.
12
13
  */
13
14
  execute: (eventName: string, data: any) => Promise<any>;
15
+ /**
16
+ * @description Ссылка на экземпляр класса, которы хранит и работы с конфигурацией веб-сервера.
17
+ */
18
+ customerConfigurationStore: CustomerConfigurationStore;
19
+ [name: string]: any;
14
20
  }
15
21
  /**
16
22
  * @deprecated