@omnia/management-system 7.8.54-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.
- package/internal-do-not-import-from-here/models/Enums.d.ts +2 -1
- package/internal-do-not-import-from-here/models/Enums.js +1 -0
- package/internal-do-not-import-from-here/models/components/documentrollup/DocumentRollupBlockSettings.d.ts +2 -0
- package/internal-do-not-import-from-here/services/documentlibrary/TaskService.d.ts +1 -0
- package/package.json +1 -1
@@ -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