mdt-client 31.3.3 → 31.3.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdt-client",
3
- "version": "31.3.3",
3
+ "version": "31.3.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -145,7 +145,7 @@ export declare namespace ApiV2 {
145
145
  idField?: string;
146
146
  parentIdField?: string;
147
147
  mode?: Mode;
148
- filter?: string;
148
+ filter?: Filter;
149
149
  }
150
150
  type Mode = "NA" | "Up" | "Down" | "UpDown";
151
151
  type Dependency = FetchDependencyTypes.Request;
@@ -4,5 +4,15 @@ export declare type QuerySortingObject = {
4
4
  asc?: boolean;
5
5
  cast?: Cast;
6
6
  };
7
+ /**
8
+ * Настройка сортировки.
9
+ * @defaultSnippets
10
+ * [
11
+ * {
12
+ * "label": "Объект сортировки,
13
+ * "body": { "path": "$1", "asc": true }
14
+ * }
15
+ * ]
16
+ */
7
17
  export declare type QuerySorting = string | QuerySortingObject;
8
18
  export {};
@@ -118,4 +118,8 @@ export interface ILegacyFacade {
118
118
  URLHelper: any;
119
119
  SchemaError: any;
120
120
  MemoryDatasource: any;
121
+ ChangePasswordCtrl: any;
122
+ layoutFormGroup: any;
123
+ FilterSettings: any;
124
+ TextFieldCtrl: any;
121
125
  }