@omnia/management-system 8.0.3-dev → 8.0.6-dev
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/README.md +2 -2
- package/internal-do-not-import-from-here/constants.d.ts +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.ms.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/models/Enums.d.ts +12 -5
- package/internal-do-not-import-from-here/models/Enums.js +7 -0
- package/internal-do-not-import-from-here/models/Enums.tooling.d.ts +1 -1
- package/internal-do-not-import-from-here/models/Enums.tooling.js +2 -1
- package/internal-do-not-import-from-here/models/components/documentrollup/DocumentRollupBlockProperty.d.ts +4 -0
- package/internal-do-not-import-from-here/models/components/documentrollup/DocumentRollupBlockProperty.js +2 -0
- package/internal-do-not-import-from-here/models/components/documentrollup/DocumentRollupBlockSettings.d.ts +15 -0
- package/internal-do-not-import-from-here/models/components/documentrollup/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/components/documentrollup/index.js +1 -0
- package/internal-do-not-import-from-here/models/components/processrollup/ProcessRollupBlockSettings.d.ts +3 -2
- package/internal-do-not-import-from-here/models/components/processrollup/ProcessRollupProvider.d.ts +19 -0
- package/internal-do-not-import-from-here/models/components/processrollup/ProcessRollupProvider.js +2 -0
- package/internal-do-not-import-from-here/models/components/processrollup/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/components/processrollup/index.js +1 -0
- package/internal-do-not-import-from-here/models/components/viewprocess/drawingblock/DrawingBlockSettings.d.ts +3 -3
- package/internal-do-not-import-from-here/models/components/viewprocess/processnavigation/ProcessNavigationBlockSettings.d.ts +3 -2
- package/internal-do-not-import-from-here/models/components/viewprocess/titleblock/TitleBlockSettings.d.ts +2 -2
- package/internal-do-not-import-from-here/models/data/controlleddocuments/requests/PublishDocumentWithoutApprovalRequest.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/controlleddocuments/requests/fields/UpdateDocumentFieldsRequest.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/documentrollup/RollupDocument.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/documenttype/DocumentTypeItemSettings.d.ts +6 -1
- package/internal-do-not-import-from-here/models/data/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/index.js +1 -0
- package/internal-do-not-import-from-here/models/data/processes/ProcessStep.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/scheduledpublishingsettings/ScheduledPublishingSettings.d.ts +8 -0
- package/internal-do-not-import-from-here/models/data/scheduledpublishingsettings/ScheduledPublishingSettings.js +15 -0
- package/internal-do-not-import-from-here/models/data/scheduledpublishingsettings/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/scheduledpublishingsettings/index.js +4 -0
- package/internal-do-not-import-from-here/models/data/sharepoint/fields/SharePointDateTimeField.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/sharepoint/fields/SharePointField.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/tasks/ApprovalTask.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/workflows/WorkflowHistory.d.ts +1 -0
- package/internal-do-not-import-from-here/models/messaging/ProcessRollupViewRegistration.d.ts +2 -2
- package/internal-do-not-import-from-here/models/styles/index.d.ts +0 -1
- package/internal-do-not-import-from-here/models/styles/index.js +0 -1
- package/internal-do-not-import-from-here/routing/OPMRouter.d.ts +1 -0
- package/internal-do-not-import-from-here/services/documentlibrary/PublishDocumentService.d.ts +2 -0
- package/internal-do-not-import-from-here/services/documentlibrary/TaskService.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/ProcessStore.d.ts +31 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/process/ProcessPropertyRenderer.d.ts +27 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionarea/process/SelectionsAreaProcessRenderer.d.ts +27 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/process/ProcessPropertyDefaultValueInput.d.ts +27 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/process/ProcessPropertySettings.d.ts +27 -3
- package/internal-do-not-import-from-here/wctypings.d.ts +316 -133
- package/models/package.json +6 -7
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Omnia Management System
|
|
2
2
|
|
|
3
|
-
Omnia Management System is a product from
|
|
3
|
+
Omnia Management System is a product from Omnia Digital Workplace AB.
|
|
4
4
|
|
|
5
5
|
### Documentation
|
|
6
|
-
https://github.com/
|
|
6
|
+
https://github.com/omniaintranet/Omnia-Foundation-Docs
|
|
@@ -176,7 +176,7 @@ export declare const DocumentsBlockDataSettingsKey: {
|
|
|
176
176
|
readonly ShortcutProcess: string;
|
|
177
177
|
};
|
|
178
178
|
export declare const PagesBlockDataSettingsKey: {
|
|
179
|
-
readonly CurrentProcess:
|
|
179
|
+
readonly CurrentProcess: guid;
|
|
180
180
|
readonly ShortcutProcess: string;
|
|
181
181
|
};
|
|
182
182
|
export declare const RootProcessStepDesignerItemIds: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"omniaWebpackJsonp['b3d13ef7-5ff8-4496-a283-81a742080aef']['54a125ba-c2f8-4c4c-b549-ce0c3861026b']","content":{"./node_modules/@omnia/management-system/constants.js":{"id":"./node_modules/@omnia/management-system/constants.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BuiltInActionButtonHandlers","ContentBlockConfigurationFactory","DefaultDateFormat","DocumentLibrariesUrl","DocumentsBlockDataSettingsKey","DrawingBlockConfigurationFactory","ImageFolders","LinksBlockConfigurationFactory","ODMDocumentRollupDisplayFields","ODMFeatureIds","ODMFieldNameConstants","ODMRecentDocumentTypesLocalStorageKey","OPMEnterprisePropertyInternalNames","OPMFeatureIds","OPMProcessProperty","OPMSpecialRouteVersion","OWA_QUERY_PARAMETER","PagesBlockDataSettingsKey","ProcessDefaultData","ProcessLayoutBlockConfigurationFactory","ProcessNavigationConfigurationFactory","ProcessRollupConstants","ProcessTableColumnsConstants","ProcessTaskProviderIds","PropertiesBlockConfigurationFactory","RootProcessStepDesignerItemIds","Security","ShapeHighlightProperties","ShapeTemplatesConstants","SharePointFieldsConstants","SignOffRequest","SystemProcessProperties","TasksBlockConfigurationFactory","TextSpacingWithShape","TitleBlockConfigurationFactory","WebEmojiIcons"]},"./node_modules/@omnia/management-system/messaging/InternalOPMTopics.js":{"id":"./node_modules/@omnia/management-system/messaging/internalopmtopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalOPMTopics"]},"./node_modules/@omnia/management-system/processshape/fabricshape/FabricShapeData.js":{"id":"./node_modules/@omnia/management-system/processshape/fabricshape/fabricshapedata.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FabricShapeDataTypes"]},"./node_modules/@omnia/management-system/processshape/fabricshape/index.js":{"id":"./node_modules/@omnia/management-system/processshape/fabricshape/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FabricShapeDataTypes"]},"./node_modules/@omnia/management-system/processshape/index.js":{"id":"./node_modules/@omnia/management-system/processshape/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FabricShapeDataTypes","ShapeDefinitionFactory","ShapeFactory"]},"./node_modules/@omnia/management-system/processshape/shapedefinitions/index.js":{"id":"./node_modules/@omnia/management-system/processshape/shapedefinitions/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ShapeDefinitionFactory"]},"./node_modules/@omnia/management-system/processshape/shapedefinitions/ShapeDefinitionData.js":{"id":"./node_modules/@omnia/management-system/processshape/shapedefinitions/shapedefinitiondata.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ShapeDefinitionFactory"]},"./node_modules/@omnia/management-system/processshape/shapes/index.js":{"id":"./node_modules/@omnia/management-system/processshape/shapes/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ShapeFactory"]},"./node_modules/@omnia/management-system/processshape/shapes/Shape.js":{"id":"./node_modules/@omnia/management-system/processshape/shapes/shape.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ShapeFactory"]},"./node_modules/@omnia/management-system/processshape/shapes/ShapeObject.js":{"id":"./node_modules/@omnia/management-system/processshape/shapes/shapeobject.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/management-system/services/index.js":{"id":"./node_modules/@omnia/management-system/services/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ApprovalTaskService","DocumentLibraryService","DocumentService","DocumentTemplateService","DocumentTypeService","ImageService","MoveProcessService","PermissionService","ProcessDocumentRelationshipService","ProcessFeedbackService","ProcessRollupService","ProcessService","ProcessTaskService","ProcessTemplateService","ProcessTypeService","PublishDocumentService","QueryablePropertiesService","ReviewReminderTaskService","ReviewTaskService","SettingsService","ShapeTemplateService","SharePointTaskService","TaskService","TeamAppPropertyService","UserService"]},"./node_modules/@omnia/management-system/models/index.js":{"id":"711e87d2-a76a-42d5-8658-eb2d0f74135a","buildMeta":{"exportsType":"namespace"},"expo.js":["AddShapePanelStyles","ArchiveFactory","CenterConfigurableHeightDialogStyles","CenterScrollableDialogStyles","DateTimeMode","DefaultControlSettings","DisplayProcessButtonType","DocumentApproverId","DocumentAuthorsType","DocumentConversions","DocumentLibraryViewType","DocumentTaskBulkUpdateTrackingStatusEnum","DocumentTemplateCategoryFactory","DocumentTemplateContentFactory","DocumentTemplateContentTypes","DocumentTemplateFactory","DocumentTemplateSettingsFactory","DocumentTemplateSettingsTypes","DocumentTypeFactory","DocumentTypeSettingsTypes","DocumentTypeTermSynchronizationStatusStatuses","DrawingCanvasSettingsStyles","DrawingShapeTypes","DynamicKeySetting","Enums","FreeformPickerStyles","GlobalSettings","GraphApiPlannerTaskProgress","MSService","MediaPickerStyles","NavigationNodeStyles","PagingServerQuery","ProcessApproverId","ProcessButtonType","ProcessDefaultControlSettings","ProcessDesignerStyles","
|
|
1
|
+
{"name":"omniaWebpackJsonp['b3d13ef7-5ff8-4496-a283-81a742080aef']['54a125ba-c2f8-4c4c-b549-ce0c3861026b']","content":{"./node_modules/@omnia/management-system/constants.js":{"id":"./node_modules/@omnia/management-system/constants.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BuiltInActionButtonHandlers","ContentBlockConfigurationFactory","DefaultDateFormat","DocumentLibrariesUrl","DocumentsBlockDataSettingsKey","DrawingBlockConfigurationFactory","ImageFolders","LinksBlockConfigurationFactory","ODMDocumentRollupDisplayFields","ODMFeatureIds","ODMFieldNameConstants","ODMRecentDocumentTypesLocalStorageKey","OPMEnterprisePropertyInternalNames","OPMFeatureIds","OPMProcessProperty","OPMSpecialRouteVersion","OWA_QUERY_PARAMETER","PagesBlockDataSettingsKey","ProcessDefaultData","ProcessLayoutBlockConfigurationFactory","ProcessNavigationConfigurationFactory","ProcessRollupConstants","ProcessTableColumnsConstants","ProcessTaskProviderIds","PropertiesBlockConfigurationFactory","RootProcessStepDesignerItemIds","Security","ShapeHighlightProperties","ShapeTemplatesConstants","SharePointFieldsConstants","SignOffRequest","SystemProcessProperties","TasksBlockConfigurationFactory","TextSpacingWithShape","TitleBlockConfigurationFactory","WebEmojiIcons"]},"./node_modules/@omnia/management-system/messaging/InternalOPMTopics.js":{"id":"./node_modules/@omnia/management-system/messaging/internalopmtopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalOPMTopics"]},"./node_modules/@omnia/management-system/processshape/fabricshape/FabricShapeData.js":{"id":"./node_modules/@omnia/management-system/processshape/fabricshape/fabricshapedata.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FabricShapeDataTypes"]},"./node_modules/@omnia/management-system/processshape/fabricshape/index.js":{"id":"./node_modules/@omnia/management-system/processshape/fabricshape/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FabricShapeDataTypes"]},"./node_modules/@omnia/management-system/processshape/index.js":{"id":"./node_modules/@omnia/management-system/processshape/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FabricShapeDataTypes","ShapeDefinitionFactory","ShapeFactory"]},"./node_modules/@omnia/management-system/processshape/shapedefinitions/index.js":{"id":"./node_modules/@omnia/management-system/processshape/shapedefinitions/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ShapeDefinitionFactory"]},"./node_modules/@omnia/management-system/processshape/shapedefinitions/ShapeDefinitionData.js":{"id":"./node_modules/@omnia/management-system/processshape/shapedefinitions/shapedefinitiondata.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ShapeDefinitionFactory"]},"./node_modules/@omnia/management-system/processshape/shapes/index.js":{"id":"./node_modules/@omnia/management-system/processshape/shapes/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ShapeFactory"]},"./node_modules/@omnia/management-system/processshape/shapes/Shape.js":{"id":"./node_modules/@omnia/management-system/processshape/shapes/shape.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ShapeFactory"]},"./node_modules/@omnia/management-system/processshape/shapes/ShapeObject.js":{"id":"./node_modules/@omnia/management-system/processshape/shapes/shapeobject.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/management-system/services/index.js":{"id":"./node_modules/@omnia/management-system/services/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ApprovalTaskService","DocumentLibraryService","DocumentService","DocumentTemplateService","DocumentTypeService","ImageService","MoveProcessService","PermissionService","ProcessDocumentRelationshipService","ProcessFeedbackService","ProcessRollupService","ProcessService","ProcessTaskService","ProcessTemplateService","ProcessTypeService","PublishDocumentService","QueryablePropertiesService","ReviewReminderTaskService","ReviewTaskService","SettingsService","ShapeTemplateService","SharePointTaskService","TaskService","TeamAppPropertyService","UserService"]},"./node_modules/@omnia/management-system/models/index.js":{"id":"711e87d2-a76a-42d5-8658-eb2d0f74135a","buildMeta":{"exportsType":"namespace"},"expo.js":["AddShapePanelStyles","ArchiveFactory","CenterConfigurableHeightDialogStyles","CenterScrollableDialogStyles","DateTimeMode","DefaultControlSettings","DisplayProcessButtonType","DocumentApproverId","DocumentAuthorsType","DocumentConversions","DocumentLibraryViewType","DocumentTaskBulkUpdateTrackingStatusEnum","DocumentTemplateCategoryFactory","DocumentTemplateContentFactory","DocumentTemplateContentTypes","DocumentTemplateFactory","DocumentTemplateSettingsFactory","DocumentTemplateSettingsTypes","DocumentTypeFactory","DocumentTypeSettingsTypes","DocumentTypeTermSynchronizationStatusStatuses","DrawingCanvasSettingsStyles","DrawingShapeTypes","DynamicKeySetting","Enums","FreeformPickerStyles","GlobalSettings","GraphApiPlannerTaskProgress","MSService","MediaPickerStyles","NavigationNodeStyles","PagingServerQuery","ProcessApproverId","ProcessButtonType","ProcessDefaultControlSettings","ProcessDesignerStyles","ProcessGlobalSettings","ProcessLayoutProvider","ProcessNavigationBlockStyles","ProcessPickerStyles","ProcessReviewReminderFactory","ProcessStepDrawingStyles","ProcessStepPickerStyles","ProcessStepStatusType","ProcessStepType","ProcessTaskAssignmentDataType","ProcessTaskProvider","ProcessTemplateFactory","ProcessTemplateLayoutDefinition","ProcessTypeFactory","ProcessTypeSettingsTypes","ProcessTypeTermSynchronizationStatusStatuses","ProcessVersionType","ProcessWorkflowType","ProcessWorkingStatus","PropertySelectionListType","PublishingApprovalSettingsFactory","PublishingApprovalSettingsTypes","RetentionFactory","RetentionTypes","ReviewReminderFactory","ReviewReminderScheduleFactory","ReviewReminderScheduleTypes","ReviewReminderTaskFactory","ReviewReminderTaskSettingsFactory","ScheduledPublishingSettingsFactory","Setting","ShapeDefinitionTypes","ShapeGalleryDefaultSettingStyles","ShapeMovingDirection","ShapeSelectionStyles","ShapeSettingsStyles","ShapeTemplateFactory","ShapeTemplateType","ShapeTypeStyles","SiteGroupIdSettings","TargetControlIdentifierType","TaskOutcome","TextAlignment","TextPosition","TitleBlockStyles","VDialogScrollableDialogStyles","WorkflowCompletedType"]},"./node_modules/@omnia/management-system/index.js":{"id":"c91869c1-7bd3-46b4-9e71-21d5b16a5460","buildMeta":{"exportsType":"namespace"},"expo.js":["ApprovalTaskService","BuiltInActionButtonHandlers","ContentBlockConfigurationFactory","CurrentProcessStore","DefaultDateFormat","DocumentConversionStore","DocumentLibrariesUrl","DocumentLibraryService","DocumentPropetiesStore","DocumentRollupSettingsProvider","DocumentService","DocumentSharePointFieldStore","DocumentTemplateService","DocumentTemplateStore","DocumentTypeService","DocumentTypeStore","DocumentsBlockDataSettingsKey","DrawingBlockConfigurationFactory","FabricShapeDataTypes","ImageFolders","ImageService","InternalOPMTopics","LibraryStore","LinksBlockConfigurationFactory","MoveProcessService","NewDocumentStore","ODMDocumentRollupDisplayFields","ODMFeatureIds","ODMFieldNameConstants","ODMRecentDocumentTypesLocalStorageKey","ODMUtils","OPMEnterprisePropertyInternalNames","OPMFeatureIds","OPMProcessProperty","OPMPublicTopics","OPMRouter","OPMSpecialRouteVersion","OPMUtils","OWA_QUERY_PARAMETER","OdmPublicTopics","PageRollupSettingsProvider","PagesBlockDataSettingsKey","PermissionService","ProcessDefaultData","ProcessDocumentRelationshipService","ProcessFeedbackService","ProcessLayoutBlockConfigurationFactory","ProcessNavigationConfigurationFactory","ProcessRendererOptions","ProcessRollupConstants","ProcessRollupService","ProcessService","ProcessStore","ProcessTableColumnsConstants","ProcessTaskProviderIds","ProcessTaskService","ProcessTemplateLayoutStore","ProcessTemplateService","ProcessTemplateStore","ProcessTypeService","ProcessTypeStore","PropertiesBlockConfigurationFactory","PublishDocumentService","QueryablePropertiesService","ReviewReminderTaskService","ReviewTaskService","RootProcessStepDesignerItemIds","Security","SettingsService","SettingsStore","ShapeDefinitionFactory","ShapeFactory","ShapeHighlightProperties","ShapeTemplateService","ShapeTemplateStore","ShapeTemplatesConstants","SharePointFieldsConstants","SharePointTaskService","SignOffRequest","SystemProcessProperties","TaskService","TasksBlockConfigurationFactory","TeamAppPropertyService","TextSpacingWithShape","TitleBlockConfigurationFactory","UserService","WebEmojiIcons","processMediaPickerProviderContext","shapeTemplateMediaPickerProviderContext"]}}}
|
|
@@ -103,7 +103,9 @@ export declare namespace Enums {
|
|
|
103
103
|
NoDocumentTypeError = 32,
|
|
104
104
|
FailedMergeWithTemplate = 33,
|
|
105
105
|
Deleted = 34,
|
|
106
|
-
Archiving = 35
|
|
106
|
+
Archiving = 35,
|
|
107
|
+
ScheduledForPublishing = 36,
|
|
108
|
+
FailedScheduleForPublishing = 37
|
|
107
109
|
}
|
|
108
110
|
enum TaskContentType {
|
|
109
111
|
Undefined = 0,
|
|
@@ -129,7 +131,8 @@ export declare namespace Enums {
|
|
|
129
131
|
None = 0,
|
|
130
132
|
AllTasksDone = 1,
|
|
131
133
|
MeetDueDate = 2,
|
|
132
|
-
Cancelled = 3
|
|
134
|
+
Cancelled = 3,
|
|
135
|
+
Failed = 4
|
|
133
136
|
}
|
|
134
137
|
enum DocumentRoles {
|
|
135
138
|
View = 1,
|
|
@@ -164,7 +167,9 @@ export declare namespace Enums {
|
|
|
164
167
|
PublishWithoutApproval = 5,
|
|
165
168
|
ReviewReminderWorkflow = 6,
|
|
166
169
|
DeletePublishedDocument = 7,
|
|
167
|
-
RestoreDocument = 8
|
|
170
|
+
RestoreDocument = 8,
|
|
171
|
+
ChangeDraftComment = 9,
|
|
172
|
+
ScheduledPublishing = 10
|
|
168
173
|
}
|
|
169
174
|
enum ReviewReminderTaskOutcome {
|
|
170
175
|
Undefined = 0,
|
|
@@ -194,7 +199,8 @@ export declare namespace Enums {
|
|
|
194
199
|
AllDocuments = 0,
|
|
195
200
|
PublishedDocuments = 1,
|
|
196
201
|
ArchivedDocuments = 2,
|
|
197
|
-
ProcessDocuments = 3
|
|
202
|
+
ProcessDocuments = 3,
|
|
203
|
+
SharePointLibrary = 4
|
|
198
204
|
}
|
|
199
205
|
enum QueryConfigurationType {
|
|
200
206
|
QueryBuilder = 0,
|
|
@@ -237,7 +243,8 @@ export declare namespace Enums {
|
|
|
237
243
|
}
|
|
238
244
|
enum PickerMode {
|
|
239
245
|
listingResult = 0,
|
|
240
|
-
pickOnly = 1
|
|
246
|
+
pickOnly = 1,
|
|
247
|
+
journey = 2
|
|
241
248
|
}
|
|
242
249
|
}
|
|
243
250
|
namespace ProcessViewEnums {
|
|
@@ -121,6 +121,8 @@ var Enums;
|
|
|
121
121
|
LibraryDocumentStatus[LibraryDocumentStatus["FailedMergeWithTemplate"] = 33] = "FailedMergeWithTemplate";
|
|
122
122
|
LibraryDocumentStatus[LibraryDocumentStatus["Deleted"] = 34] = "Deleted";
|
|
123
123
|
LibraryDocumentStatus[LibraryDocumentStatus["Archiving"] = 35] = "Archiving";
|
|
124
|
+
LibraryDocumentStatus[LibraryDocumentStatus["ScheduledForPublishing"] = 36] = "ScheduledForPublishing";
|
|
125
|
+
LibraryDocumentStatus[LibraryDocumentStatus["FailedScheduleForPublishing"] = 37] = "FailedScheduleForPublishing";
|
|
124
126
|
})(LibraryDocumentStatus = DocumentViewEnums.LibraryDocumentStatus || (DocumentViewEnums.LibraryDocumentStatus = {}));
|
|
125
127
|
let TaskContentType;
|
|
126
128
|
(function (TaskContentType) {
|
|
@@ -152,6 +154,7 @@ var Enums;
|
|
|
152
154
|
WorkflowCompletedType[WorkflowCompletedType["AllTasksDone"] = 1] = "AllTasksDone";
|
|
153
155
|
WorkflowCompletedType[WorkflowCompletedType["MeetDueDate"] = 2] = "MeetDueDate";
|
|
154
156
|
WorkflowCompletedType[WorkflowCompletedType["Cancelled"] = 3] = "Cancelled";
|
|
157
|
+
WorkflowCompletedType[WorkflowCompletedType["Failed"] = 4] = "Failed";
|
|
155
158
|
})(WorkflowCompletedType = DocumentViewEnums.WorkflowCompletedType || (DocumentViewEnums.WorkflowCompletedType = {}));
|
|
156
159
|
let DocumentRoles;
|
|
157
160
|
(function (DocumentRoles) {
|
|
@@ -190,6 +193,8 @@ var Enums;
|
|
|
190
193
|
WorkflowType[WorkflowType["ReviewReminderWorkflow"] = 6] = "ReviewReminderWorkflow";
|
|
191
194
|
WorkflowType[WorkflowType["DeletePublishedDocument"] = 7] = "DeletePublishedDocument";
|
|
192
195
|
WorkflowType[WorkflowType["RestoreDocument"] = 8] = "RestoreDocument";
|
|
196
|
+
WorkflowType[WorkflowType["ChangeDraftComment"] = 9] = "ChangeDraftComment";
|
|
197
|
+
WorkflowType[WorkflowType["ScheduledPublishing"] = 10] = "ScheduledPublishing";
|
|
193
198
|
})(WorkflowType = DocumentViewEnums.WorkflowType || (DocumentViewEnums.WorkflowType = {}));
|
|
194
199
|
let ReviewReminderTaskOutcome;
|
|
195
200
|
(function (ReviewReminderTaskOutcome) {
|
|
@@ -226,6 +231,7 @@ var Enums;
|
|
|
226
231
|
QueryScope[QueryScope["PublishedDocuments"] = 1] = "PublishedDocuments";
|
|
227
232
|
QueryScope[QueryScope["ArchivedDocuments"] = 2] = "ArchivedDocuments";
|
|
228
233
|
QueryScope[QueryScope["ProcessDocuments"] = 3] = "ProcessDocuments";
|
|
234
|
+
QueryScope[QueryScope["SharePointLibrary"] = 4] = "SharePointLibrary";
|
|
229
235
|
})(QueryScope = DocumentViewEnums.QueryScope || (DocumentViewEnums.QueryScope = {}));
|
|
230
236
|
let QueryConfigurationType;
|
|
231
237
|
(function (QueryConfigurationType) {
|
|
@@ -278,6 +284,7 @@ var Enums;
|
|
|
278
284
|
(function (PickerMode) {
|
|
279
285
|
PickerMode[PickerMode["listingResult"] = 0] = "listingResult";
|
|
280
286
|
PickerMode[PickerMode["pickOnly"] = 1] = "pickOnly";
|
|
287
|
+
PickerMode[PickerMode["journey"] = 2] = "journey";
|
|
281
288
|
})(PickerMode = DocumentPicker.PickerMode || (DocumentPicker.PickerMode = {}));
|
|
282
289
|
})(DocumentPicker = Enums.DocumentPicker || (Enums.DocumentPicker = {}));
|
|
283
290
|
let ProcessViewEnums;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { guid } from "@omnia/fx-models";
|
|
2
2
|
declare const webComponentManifests: Record<"DocumentRollup" | "DocumentLibrary" | "ProcessRollup" | "Core" | "DocumentRollupSettings" | "DocumentRollupBreakPointSettings" | "DocumentRollupListView" | "DocumentRollupListViewSettings" | "DocumentRollupCardView" | "DocumentRollupCardViewSettings" | "DocumentRollupCardGroupBySiteView" | "DocumentRollupCardGroupBySiteViewSettings" | "DocumentRollupSharePointCardView" | "DocumentRollupSharePointCardViewSettings" | "DocumentSearchTemplate" | "DocumentLibrarySettings" | "DocumentLibraryListView" | "DocumentHistory" | "DocumentPickerCategoryListingBlade" | "DocumentPickerCreateEditCategoryBlade" | "DocumentPicker" | "DocumentPickerPickDocDialog" | "DocumentLinkPicker" | "DocumentTemplateMergeSettings" | "DocumenTypeSettingTabApiRegistration" | "ApprovalTaskCustomViewApiRegistration" | "MicrosoftPlannerProviderRenderer" | "ProcessDesigner" | "ProcessDesignerNavigationNode" | "ProcessDesignerDrawingCanvasSettings" | "ProcessDesignerAddShapeWizard" | "ProcessDesignerShapeSelectionStep" | "ProcessDesignerShapeTypeStep" | "ProcessDesignerCreateLinkPanel" | "ProcessDesignerShapeSettingsPanel" | "ProcessDesignerCreateTask" | "ProcessLibraryCore" | "ProcessLibrary" | "ProcessLibrarySettings" | "ProcessLibraryListView" | "NewProcessDialog" | "DraftActionButtons" | "DraftMenuActions" | "DraftProcessingStatus" | "PublishedMenuActions" | "PublishedProcessingStatus" | "ProcessHistoryDialog" | "ProcessTooltip" | "MoveProcessDialog" | "CreateDraftProcessDialog" | "ProcessSearchTemplate" | "MediaPicker" | "FreeformPicker" | "GlobalProcessRenderer" | "PointPicker" | "UnpublishProcessDialog" | "PermissionDialog" | "ProcessStepPicker" | "ContentBlock" | "ContentBlockSettings" | "ProcessContextBlock" | "ProcessContextBlockSettings" | "DrawingBlock" | "DrawingBlockSettings" | "ProcessDrawing" | "ProcessDrawingCore" | "TasksBlock" | "TasksBlockSettings" | "TasksBlockCore" | "ProcessStepStatusBlock" | "LinksBlock" | "LinksBlockSettings" | "ProcessNavigationBlock" | "ProcessNavigationBlockSettings" | "BreadcrumbBlock" | "BreadcrumbBlockSettings" | "ProcessRollupSettings" | "ProcessRollupListView" | "ProcessRollupListViewSettings" | "PropertiesBlock" | "PropertiesBlockSettings" | "TitleBlock" | "TitleBlockSettings" | "DocumentsBlock" | "DocumentsBlockSettings" | "ChangeProcessType" | "ChangeProcessTemplate" | "ProcessFieldValueDefinition" | "ProcessFieldEdit" | "ProcessFieldDisplay" | "ProcessPicker" | "ProcessPickerDialog" | "ProcessPickerField" | "ActionButtonProcessFeedbackHandlerSettings" | "ActionButtonProcessFeedbackHandlerRegistration" | "ActionButtonProcessFeedHandlerSubscription" | "AddProcessFeedbackDialog" | "ActionButtonExportProcessHandlerSettings" | "ActionButtonExportProcessHandlerRegistration" | "ActionButtonExportProcessHandlerSubscription" | "AddExportProcessDialog" | "ProcessFeedbackDialog" | "ExportProcessDialog" | "QueryableProperties" | "PagesBlock" | "PagesBlockSettings" | "ProcessLayoutBlock" | "ProcessLayoutBlockSettings" | "AdminProcessTemplatesJourney" | "ProcessWorkflowHistoryDialog" | "UxFilterEngineProcessRenderer" | "UxFilterEngineProcessSelectionsAreaProperty" | "UxFilterEngineProcessPropertySettings" | "UxFilterEngineProcessPropertyDefaultValueInput" | "DocumentTaskBulkUpdateJourney" | "PublishedDocumentPicker" | "ReadSignOffRequest", guid>;
|
|
3
|
-
declare const resourceManifests: Record<"Core" | "Contexts" | "DialogCoreStyles" | "ProcessDesignerCore" | "ProcessDesignerItem" | "ProcessDesignerShapePickerCore" | "ProcessShapeCore" | "ProcessRollupCore" | "ProcessRollupViewRegistration" | "MovedProcessMessage" | "OPMMSTeamsTabProviderRegistration" | "RTFExtensionsCore" | "AdminProcessTemplatesCore" | "ProcessTaskApiRegistration" | "ProcessFilterEngineRegistrationApi" | "ProcessFilterEngineCore" | "ProcessButtonApiRegistration" | "DocumentTaskBulkUpdateCore" | "FxCore" | "DocumentLibraryCore" | "DocumentRollupSettingsTabsResources" | "DocumentPickerCore" | "DocumentPickerAdminCore" | "DocumentPickerAdminSettingsRegistration" | "ODMMSTeamsTabProviderRegistration" | "NewDocumentButtonRegistrationHandler" | "NewDocumentButtonSubscribeHandler" | "WCMIntegrationHandler" | "WCMLinkPickerHandler" | "SignOffRequestDocumentProvider" | "SignOffRequestCore", guid>;
|
|
3
|
+
declare const resourceManifests: Record<"Core" | "Contexts" | "DialogCoreStyles" | "ProcessDesignerCore" | "ProcessDesignerItem" | "ProcessDesignerShapePickerCore" | "ProcessShapeCore" | "ProcessRollupCore" | "ProcessRollupViewRegistration" | "MovedProcessMessage" | "OPMMSTeamsTabProviderRegistration" | "RTFExtensionsCore" | "AdminProcessTemplatesCore" | "ProcessTaskApiRegistration" | "ProcessFilterEngineRegistrationApi" | "ProcessFilterEngineCore" | "ProcessButtonApiRegistration" | "DocumentTaskBulkUpdateCore" | "FxCore" | "DocumentLibraryCore" | "DocumentRollupSettingsTabsResources" | "DocumentPickerCore" | "DocumentPickerAdminCore" | "DocumentPickerAdminSettingsRegistration" | "ODMMSTeamsTabProviderRegistration" | "NewDocumentButtonRegistrationHandler" | "NewDocumentButtonSubscribeHandler" | "WCMIntegrationHandler" | "WCMLinkPickerHandler" | "SignOffRequestDocumentProvider" | "SignOffRequestCore" | "ProcessRollupRegistrationApi", guid>;
|
|
4
4
|
declare module "@omnia/fx-models/Tooling" {
|
|
5
5
|
interface IEnums$ {
|
|
6
6
|
ms: {
|
|
@@ -153,5 +153,6 @@ const resourceManifests = enum$("ms.resourceManifests").value({
|
|
|
153
153
|
WCMIntegrationHandler: (0, fx_models_1.guid)("449717c1-88ac-409c-b0db-92fb95f389ce"),
|
|
154
154
|
WCMLinkPickerHandler: (0, fx_models_1.guid)("ad008fe9-7124-4482-ab44-a3fd734eb197"),
|
|
155
155
|
SignOffRequestDocumentProvider: (0, fx_models_1.guid)("93d0496d-522e-4f1a-9cf2-f60a4cf89a92"),
|
|
156
|
-
SignOffRequestCore: (0, fx_models_1.guid)("d17598a9-563c-44bf-a826-40533552b402")
|
|
156
|
+
SignOffRequestCore: (0, fx_models_1.guid)("d17598a9-563c-44bf-a826-40533552b402"),
|
|
157
|
+
ProcessRollupRegistrationApi: (0, fx_models_1.guid)("656f7836-6350-431d-bd53-456d15d9882e")
|
|
157
158
|
});
|
|
@@ -15,6 +15,7 @@ export interface DocumentRollupBlockSettings {
|
|
|
15
15
|
sortDescending: boolean;
|
|
16
16
|
pagingType: Enums.DocumentViewEnums.PagingType;
|
|
17
17
|
itemLimit: number;
|
|
18
|
+
pickInWriteMode?: boolean;
|
|
18
19
|
queryConfigurationType: Enums.DocumentViewEnums.QueryConfigurationType;
|
|
19
20
|
query?: string;
|
|
20
21
|
searchScope?: Enums.DocumentViewEnums.QueryScope;
|
|
@@ -31,5 +32,19 @@ export interface DocumentRollupBlockSettings {
|
|
|
31
32
|
};
|
|
32
33
|
defaultExpandedSectionIndex?: number;
|
|
33
34
|
excelExportColumns?: Array<ListViewColumn>;
|
|
35
|
+
excelExportSortBy?: string;
|
|
36
|
+
excelExportSortDescending?: boolean;
|
|
34
37
|
noResultText?: MultilingualString;
|
|
38
|
+
processDocumentQuerySettings?: ProcessDocumentQuerySettings;
|
|
39
|
+
sharePointLibraryQuerySettings?: SharePointLibraryQuerySettings;
|
|
40
|
+
}
|
|
41
|
+
export interface ProcessDocumentQuerySettings {
|
|
42
|
+
dayLimitProperty?: string;
|
|
43
|
+
dayLimitPeriod?: Enums.DocumentViewEnums.DatePeriods;
|
|
44
|
+
lastModifiedByCurrentUser: boolean;
|
|
45
|
+
}
|
|
46
|
+
export interface SharePointLibraryQuerySettings {
|
|
47
|
+
spLibraryQuery?: string;
|
|
48
|
+
spSiteUrl?: string;
|
|
49
|
+
spFolderUrl?: string;
|
|
35
50
|
}
|
|
@@ -11,3 +11,4 @@ export * from "./DocumentRollupPersonPropFilterValue";
|
|
|
11
11
|
export * from "./DocumentRollupBlockBreakPointSettings";
|
|
12
12
|
export * from "./DocumentRollupUISearchboxFilterValue";
|
|
13
13
|
export * from "./DocumentBaseQuerySettings";
|
|
14
|
+
export * from "./DocumentRollupBlockProperty";
|
|
@@ -14,3 +14,4 @@ tslib_1.__exportStar(require("./DocumentRollupPersonPropFilterValue"), exports);
|
|
|
14
14
|
tslib_1.__exportStar(require("./DocumentRollupBlockBreakPointSettings"), exports);
|
|
15
15
|
tslib_1.__exportStar(require("./DocumentRollupUISearchboxFilterValue"), exports);
|
|
16
16
|
tslib_1.__exportStar(require("./DocumentBaseQuerySettings"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./DocumentRollupBlockProperty"), exports);
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { FilterEngineSettings, MultilingualString, RollupSetting, Spacing } from "@omnia/fx-models";
|
|
1
|
+
import { FilterEngineSettings, guid, MultilingualString, RollupSetting, Spacing } from "@omnia/fx-models";
|
|
2
2
|
import { ProcessRollupViewSettings } from "..";
|
|
3
3
|
import { Enums } from "../..";
|
|
4
4
|
export interface ProcessRollupBlockSettings extends RollupSetting {
|
|
5
5
|
title: MultilingualString;
|
|
6
6
|
pagingType: Enums.ProcessViewEnums.PagingType;
|
|
7
|
-
selectedViewId: string;
|
|
8
7
|
viewSettings: ProcessRollupViewSettings;
|
|
9
8
|
spacing?: Spacing;
|
|
10
9
|
searchScope: Enums.ProcessViewEnums.QueryScope;
|
|
@@ -15,4 +14,6 @@ export interface ProcessRollupBlockSettings extends RollupSetting {
|
|
|
15
14
|
searchBoxFilled?: boolean;
|
|
16
15
|
noResultText?: MultilingualString;
|
|
17
16
|
filterEngine?: FilterEngineSettings;
|
|
17
|
+
selectedViewManifestId: guid;
|
|
18
|
+
selectedSettingsViewManifestId?: guid;
|
|
18
19
|
}
|
package/internal-do-not-import-from-here/models/components/processrollup/ProcessRollupProvider.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ApiPath } from "@omnia/fx/models";
|
|
2
|
+
import { ProcessRollupBlockStyles } from "internal/models";
|
|
3
|
+
import { ProcessRollupViewRegistration } from "../..";
|
|
4
|
+
export interface IProcessRollupRegistrationApi {
|
|
5
|
+
registerViews: (views: ProcessRollupViewRegistration | ProcessRollupViewRegistration[]) => void;
|
|
6
|
+
}
|
|
7
|
+
declare module "../../../apis/index" {
|
|
8
|
+
interface IMSApi {
|
|
9
|
+
processRollup: {
|
|
10
|
+
styles: Promise<typeof ProcessRollupBlockStyles>;
|
|
11
|
+
registration: Promise<IProcessRollupRegistrationApi>;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
interface IMSExtendApiManifest {
|
|
15
|
+
processRollup: {
|
|
16
|
+
registration: ApiPath;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -4,3 +4,4 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
tslib_1.__exportStar(require("./ProcessRollupBlockSettings"), exports);
|
|
5
5
|
tslib_1.__exportStar(require("./ProcessRollupFilter"), exports);
|
|
6
6
|
tslib_1.__exportStar(require("./ProcessRollupViewSettings"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./ProcessRollupProvider"), exports);
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { MultilingualString, Spacing } from "@omnia/fx-models";
|
|
1
|
+
import { ColorValue, MultilingualString, Spacing } from "@omnia/fx-models";
|
|
2
2
|
import { Point } from "../../pointpicker";
|
|
3
3
|
export interface DrawingBlockSettings {
|
|
4
4
|
title: MultilingualString;
|
|
5
5
|
spacing?: Spacing;
|
|
6
6
|
stackProcess: boolean;
|
|
7
|
-
stackDialogBackgroundColor?:
|
|
8
|
-
stackDialogBorderColor?:
|
|
7
|
+
stackDialogBackgroundColor?: ColorValue;
|
|
8
|
+
stackDialogBorderColor?: ColorValue;
|
|
9
9
|
stackDialogCloseButtonPosition?: Point;
|
|
10
10
|
enableProcessStatusColors?: boolean;
|
|
11
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Spacing, SpacingValue } from "@omnia/fx-models";
|
|
2
|
+
import { MultilingualString } from "@omnia/fx-models";
|
|
2
3
|
export interface ProcessNavigationBlockSettings {
|
|
3
4
|
title: MultilingualString;
|
|
4
5
|
spacing?: Spacing;
|
|
5
|
-
levelIndentation:
|
|
6
|
+
levelIndentation: SpacingValue;
|
|
6
7
|
}
|
package/internal-do-not-import-from-here/models/data/documenttype/DocumentTypeItemSettings.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { guid } from "@omnia/fx-models";
|
|
2
2
|
import { DocumentTypeSettings, DocumentTypeSettingsTypes, ReviewReminder, RetentionSettings } from ".";
|
|
3
|
-
import { PropertySetItemSettings, PublishingApprovalSettings, Archive } from "..";
|
|
3
|
+
import { PropertySetItemSettings, PublishingApprovalSettings, Archive, ScheduledPublishingSettings } from "..";
|
|
4
4
|
export declare const DocumentApproverId: guid;
|
|
5
5
|
export declare enum DocumentConversions {
|
|
6
6
|
NoConversion = 0,
|
|
@@ -23,6 +23,7 @@ export interface DocumentTypeItemSettings extends DocumentTypeSettings {
|
|
|
23
23
|
enableShowChangeButtonInRollup: boolean;
|
|
24
24
|
replaceTokenOnPublishing: boolean;
|
|
25
25
|
allowRevisions: boolean;
|
|
26
|
+
allowValidateUnacceptedChange: boolean;
|
|
26
27
|
allowBypassApprovalForRevisions: boolean;
|
|
27
28
|
showCreateDocumentIconInRollup: boolean;
|
|
28
29
|
conversions: DocumentConversions;
|
|
@@ -50,6 +51,10 @@ export interface DocumentTypeItemSettings extends DocumentTypeSettings {
|
|
|
50
51
|
* null means no Approval needed
|
|
51
52
|
* */
|
|
52
53
|
publishingApprovalSettings: PublishingApprovalSettings;
|
|
54
|
+
/**
|
|
55
|
+
* null means no scheduled publishing setup
|
|
56
|
+
* */
|
|
57
|
+
scheduledPublishingSettings?: ScheduledPublishingSettings;
|
|
53
58
|
propertySetItemSettings: {
|
|
54
59
|
[id: string]: PropertySetItemSettings;
|
|
55
60
|
};
|
|
@@ -37,3 +37,4 @@ tslib_1.__exportStar(require("./sharepointtasks"), exports);
|
|
|
37
37
|
tslib_1.__exportStar(require("./publishingapprovalsettings"), exports);
|
|
38
38
|
tslib_1.__exportStar(require("./reviewreminderschedule"), exports);
|
|
39
39
|
tslib_1.__exportStar(require("./archives"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./scheduledpublishingsettings"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { guid, TimePeriodSettings } from "@omnia/fx/models";
|
|
2
|
+
export interface ScheduledPublishingSettings {
|
|
3
|
+
dateTimeEnterprisePropertyDefinitionId: guid;
|
|
4
|
+
approvalReminderPeriod: TimePeriodSettings;
|
|
5
|
+
}
|
|
6
|
+
export declare const ScheduledPublishingSettingsFactory: {
|
|
7
|
+
createDefault(): ScheduledPublishingSettings;
|
|
8
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ScheduledPublishingSettingsFactory = void 0;
|
|
4
|
+
const models_1 = require("@omnia/fx/models");
|
|
5
|
+
exports.ScheduledPublishingSettingsFactory = {
|
|
6
|
+
createDefault() {
|
|
7
|
+
return {
|
|
8
|
+
dateTimeEnterprisePropertyDefinitionId: null,
|
|
9
|
+
approvalReminderPeriod: {
|
|
10
|
+
type: models_1.TimePeriodTypes.Days,
|
|
11
|
+
value: 1,
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./ScheduledPublishingSettings";
|
package/internal-do-not-import-from-here/models/messaging/ProcessRollupViewRegistration.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { guid } from "@omnia/fx-models";
|
|
|
2
2
|
export interface ProcessRollupViewRegistration {
|
|
3
3
|
id: guid;
|
|
4
4
|
title: string;
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
componentManifestId: guid;
|
|
6
|
+
settingsComponentManifestId?: guid;
|
|
7
7
|
supportScrollPaging?: boolean;
|
|
8
8
|
supportClassicPaging?: boolean;
|
|
9
9
|
}
|
|
@@ -12,7 +12,6 @@ export * from "./ShapeGalleryDefaultSettingStyles";
|
|
|
12
12
|
export * from "./FreeformPickerStyles";
|
|
13
13
|
export * from "./TitleBlockStyles";
|
|
14
14
|
export * from "./ProcessPickerStyles";
|
|
15
|
-
export * from "./ProcessFieldDisplayStyles";
|
|
16
15
|
export * from "./ProcessDesignerStyles";
|
|
17
16
|
export * from "./ShapeSettingsStyles";
|
|
18
17
|
export * from "./ProcessNavigationBlockStyles";
|
|
@@ -15,7 +15,6 @@ tslib_1.__exportStar(require("./ShapeGalleryDefaultSettingStyles"), exports);
|
|
|
15
15
|
tslib_1.__exportStar(require("./FreeformPickerStyles"), exports);
|
|
16
16
|
tslib_1.__exportStar(require("./TitleBlockStyles"), exports);
|
|
17
17
|
tslib_1.__exportStar(require("./ProcessPickerStyles"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./ProcessFieldDisplayStyles"), exports);
|
|
19
18
|
tslib_1.__exportStar(require("./ProcessDesignerStyles"), exports);
|
|
20
19
|
tslib_1.__exportStar(require("./ShapeSettingsStyles"), exports);
|
|
21
20
|
tslib_1.__exportStar(require("./ProcessNavigationBlockStyles"), exports);
|
|
@@ -8,6 +8,7 @@ export declare enum ProcessRendererOptions {
|
|
|
8
8
|
declare class InternalOPMRouter extends TokenBasedRouter<OPMRoute, OPMRouteStateData> {
|
|
9
9
|
private currentProcessStore;
|
|
10
10
|
private multilingualStore;
|
|
11
|
+
private omniaCtx;
|
|
11
12
|
private currentTitle;
|
|
12
13
|
private currentProcessId;
|
|
13
14
|
private currentProcessStepId;
|
package/internal-do-not-import-from-here/services/documentlibrary/PublishDocumentService.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export declare class PublishDocumentService {
|
|
|
7
7
|
checkPrePublishCondition: (webUrl: string, spDocumentId: number, sqlId: guid, status: Enums.DocumentViewEnums.LibraryDocumentStatus) => Promise<boolean>;
|
|
8
8
|
validateUnacceptedChange: (webUrl: string, spDocumentId: number, sqlId: guid, status: Enums.DocumentViewEnums.LibraryDocumentStatus) => Promise<boolean>;
|
|
9
9
|
publishDocumentWithoutApproval: (request: PublishDocumentWithoutApprovalRequest) => Promise<void>;
|
|
10
|
+
scheduleDocumentPublishing: (request: PublishDocumentWithoutApprovalRequest) => Promise<void>;
|
|
11
|
+
cancelScheduledDocumentPublishing: (sqlDocumentId: guid) => Promise<void>;
|
|
10
12
|
previewPublishedDocument: (request: PreviewPublishedDocumentRequest) => Promise<void>;
|
|
11
13
|
getReadReceiptSignOffByOdmDocId: (odmDocId: string, webUrl: string) => Promise<DocumentNotifiedPerson>;
|
|
12
14
|
getReadReceiptHistory: (odmDocId: string, webUrl: string) => Promise<Array<DocumentReadReceiptsHistory>>;
|
|
@@ -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: guid, webUrl: string, workflowType?: Enums.DocumentViewEnums.WorkflowType) => Promise<Workflow>;
|
|
10
|
+
getDocumentWorkflowByType: (sqlId: guid, workflowType: Enums.DocumentViewEnums.WorkflowType) => Promise<Workflow>;
|
|
10
11
|
deleteTask: (webUrl: string, spId: number) => Promise<void>;
|
|
11
12
|
}
|
|
@@ -3,7 +3,6 @@ import { guid, MediaPickerImage } from "@omnia/fx-models";
|
|
|
3
3
|
import { MoveProcessService } from "../services";
|
|
4
4
|
import { ProcessActionModel, Process, ProcessReference, ProcessReferenceData, ProcessCheckoutInfo, ProcessWithCheckoutInfo, Version, ProcessMoveInfo, ProcessDataLayoutMergeResult, ProcessStep } from "../models";
|
|
5
5
|
import { ProcessSite } from "../../models";
|
|
6
|
-
import { MediaPickerService } from "@omnia/fx/services";
|
|
7
6
|
import { ProcessTemplateLayoutStore } from "./ProcessTemplateLayoutStore";
|
|
8
7
|
interface ProcessMoveInfoDict {
|
|
9
8
|
[opmProcessId: string]: ProcessMoveInfo;
|
|
@@ -17,7 +16,37 @@ interface NotificationMessage {
|
|
|
17
16
|
export declare class ProcessStore extends Store {
|
|
18
17
|
private processService;
|
|
19
18
|
moveProcessService: MoveProcessService;
|
|
20
|
-
|
|
19
|
+
mediaPickerStore: {
|
|
20
|
+
get: {
|
|
21
|
+
readonly imageRatios: Array<MediaPickerImageRatio>;
|
|
22
|
+
imageRatioByUniqueId(uniqueId: guid): MediaPickerImageRatio;
|
|
23
|
+
readonly rollupRatios: Array<MediaPickerRollupImageRatio>;
|
|
24
|
+
readonly imageScalings: Array<MediaPickerImageScaling>;
|
|
25
|
+
imageScalingByUniqueId(uniqueId: guid): MediaPickerImageScaling;
|
|
26
|
+
readonly providers: Array<MediaPickerProvider>;
|
|
27
|
+
url: (media: MediaPickerImage | MediaPickerVideo, ratioId?: guid) => string;
|
|
28
|
+
imageUrl: (mediapickerImage: MediaPickerImage, imageRatioId?: number, scalingId?: number, useWithToken?: boolean) => string;
|
|
29
|
+
};
|
|
30
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
|
31
|
+
registerMediaPickerProvider(provider: MediaPickerProvider | Array<MediaPickerProvider>): void;
|
|
32
|
+
registerMediaPickerConfigurationHook(filterFunc: (current: Array<MediaPickerProvider>) => Array<MediaPickerProvider>): void;
|
|
33
|
+
ensureImageScalings(): Promise<void>;
|
|
34
|
+
addImageScaling(imageScalingDefinition: MediaPickerImageScalingDefinition): Promise<void>;
|
|
35
|
+
updateImageScaling(imageScalingToUpdate: MediaPickerImageScaling, newImageScalingDefinition: MediaPickerImageScalingDefinition): Promise<void>;
|
|
36
|
+
deleteImageScaling(imageScalingToDelete: MediaPickerImageScaling): Promise<void>;
|
|
37
|
+
ensureImageRatios(): Promise<void>;
|
|
38
|
+
addImageRatio(ratioDefinition: MediaPickerImageRatioDefinition): Promise<void>;
|
|
39
|
+
updateImageRatio(ratioToUpdate: MediaPickerImageRatio, newTitle: import("@omnia/fx-models").MultilingualString, enableInRollup: boolean): Promise<void>;
|
|
40
|
+
deleteImageRatio(ratioToDelete: MediaPickerImageRatio): Promise<void>;
|
|
41
|
+
}>;
|
|
42
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
|
43
|
+
imageRatios: MediaPickerImageRatio[];
|
|
44
|
+
imageScalings: MediaPickerImageScaling[];
|
|
45
|
+
providers: MediaPickerProvider[];
|
|
46
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
|
47
|
+
} & {
|
|
48
|
+
dispose?: () => void;
|
|
49
|
+
};
|
|
21
50
|
processTemplateLayoutStore: ProcessTemplateLayoutStore;
|
|
22
51
|
private processDict;
|
|
23
52
|
private processCheckoutInfoDict;
|