mdt-client 31.0.13 → 31.0.15

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.
@@ -5,5 +5,15 @@ export interface ImportModuleFacade {
5
5
  };
6
6
  }
7
7
  export interface ImportFormFacade {
8
- new (objectCode: string, options?: any): ViewControl;
8
+ new (objectCode: string, options?: ImportFormOptions): ViewControl;
9
+ }
10
+ export interface PredefinedValues {
11
+ predefinedValues?: PredefinedValue[];
12
+ }
13
+ export interface PredefinedValue {
14
+ field: string;
15
+ value: string | number;
16
+ }
17
+ export interface ImportFormOptions extends PredefinedValues {
18
+ onSuccessfullyCompleted?: () => void;
9
19
  }
@@ -101,5 +101,14 @@ export interface ListPageOptions {
101
101
  * Включение/отключение фиксации колонок. По умолчанию true.
102
102
  */
103
103
  fixedColumns?: boolean;
104
+ /**
105
+ * Настройки агрегации
106
+ */
107
+ aggregation?: {
108
+ /**
109
+ * Подключение агрегации к списку. По умолчанию `true`.
110
+ */
111
+ enabled?: boolean;
112
+ };
104
113
  }
105
114
  export {};