mdt-client 31.3.18 → 31.3.20

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.18",
3
+ "version": "31.3.20",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -111,6 +111,7 @@ export declare namespace ApiV2 {
111
111
  dependency?: Exts.Dependency;
112
112
  placeIn?: Exts.PlaceIn;
113
113
  audit?: Exts.Audit;
114
+ tabular?: Exts.Tabular;
114
115
  tag?: Exts.Tag;
115
116
  workflow?: Exts.Workflow;
116
117
  workflowStage?: Exts.WorkflowStage;
@@ -168,6 +169,20 @@ export declare namespace ApiV2 {
168
169
  };
169
170
  type Audit = TicketQuery;
170
171
  type Tag = TicketQuery;
172
+ interface Tabular {
173
+ select?: {
174
+ path: FieldPath;
175
+ table: ObjectCode;
176
+ }[];
177
+ groupBy?: {
178
+ path: FieldPath;
179
+ table: ObjectCode;
180
+ }[];
181
+ orderBy?: {
182
+ path: FieldPath;
183
+ table: ObjectCode;
184
+ }[];
185
+ }
171
186
  type Workflow = TicketQuery;
172
187
  interface WorkflowStage {
173
188
  enabled: boolean;
@@ -106,6 +106,7 @@ export interface ILegacyFacade {
106
106
  toolbarView: any;
107
107
  uiComponents: {
108
108
  alert: any;
109
+ labelStyle: any;
109
110
  };
110
111
  PlaceInQueryHelpers: any;
111
112
  isApiV2: () => boolean;