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
|
@@ -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;
|