@omnia/management-system 7.8.53-preview → 7.8.55-preview

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.
@@ -163,7 +163,8 @@ export declare module Enums {
163
163
  PublishWithoutApproval = 5,
164
164
  ReviewReminderWorkflow = 6,
165
165
  DeletePublishedDocument = 7,
166
- RestoreDocument = 8
166
+ RestoreDocument = 8,
167
+ ChangeDraftComment = 9
167
168
  }
168
169
  enum ReviewReminderTaskOutcome {
169
170
  Undefined = 0,
@@ -189,6 +189,7 @@ var Enums;
189
189
  WorkflowType[WorkflowType["ReviewReminderWorkflow"] = 6] = "ReviewReminderWorkflow";
190
190
  WorkflowType[WorkflowType["DeletePublishedDocument"] = 7] = "DeletePublishedDocument";
191
191
  WorkflowType[WorkflowType["RestoreDocument"] = 8] = "RestoreDocument";
192
+ WorkflowType[WorkflowType["ChangeDraftComment"] = 9] = "ChangeDraftComment";
192
193
  })(WorkflowType = DocumentViewEnums.WorkflowType || (DocumentViewEnums.WorkflowType = {}));
193
194
  let ReviewReminderTaskOutcome;
194
195
  (function (ReviewReminderTaskOutcome) {
@@ -31,6 +31,8 @@ export interface DocumentRollupBlockSettings {
31
31
  };
32
32
  defaultExpandedSectionIndex?: number;
33
33
  excelExportColumns?: Array<ListViewColumn>;
34
+ excelExportSortBy?: string;
35
+ excelExportSortDescending?: boolean;
34
36
  noResultText?: MultilingualString;
35
37
  analyticsSettings?: AnalyticsSettings;
36
38
  processDocumentQuerySettings?: ProcessDocumentQuerySettings;
@@ -7,5 +7,6 @@ export declare class TaskService {
7
7
  getFilterTasks: (request: TaskRequest) => Promise<TaskItemResponse>;
8
8
  getTaskById: (webUrl: string, taskId: number) => Promise<DocumentTaskDetail>;
9
9
  getDocumentWorkflow: (spDocumentId: number, sqlId: GuidValue, webUrl: string, workflowType?: Enums.DocumentViewEnums.WorkflowType) => Promise<Workflow>;
10
+ getDocumentWorkflowByType: (sqlId: GuidValue, workflowType: Enums.DocumentViewEnums.WorkflowType) => Promise<Workflow>;
10
11
  deleteTask: (webUrl: string, spId: number) => Promise<void>;
11
12
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/management-system",
3
3
  "license": "MIT",
4
- "version": "7.8.53-preview",
4
+ "version": "7.8.55-preview",
5
5
  "description": "Omnia Management System.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"