@omnia/management-system 7.8.7-preview → 7.8.7

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.
Files changed (34) hide show
  1. package/internal-do-not-import-from-here/apis/documents/DocumentItemCustomRenderFieldApi.d.ts +1 -0
  2. package/internal-do-not-import-from-here/apis/documents/DocumentItemCustomRenderFieldApi.manifest.d.ts +1 -0
  3. package/internal-do-not-import-from-here/apis/documents/DocumentLibraryContextMenuButtonApi.d.ts +1 -0
  4. package/internal-do-not-import-from-here/apis/documents/DocumentLibraryContextMenuButtonApi.manifest.d.ts +1 -0
  5. package/internal-do-not-import-from-here/constants.d.ts +20 -0
  6. package/internal-do-not-import-from-here/manifests/omnia.ms.fx.manifest.json +1 -1
  7. package/internal-do-not-import-from-here/models/Enums.d.ts +11 -3
  8. package/internal-do-not-import-from-here/models/Enums.js +8 -0
  9. package/internal-do-not-import-from-here/models/components/documentlibrary/DocumentItemCustomRenderFieldApi.d.ts +31 -0
  10. package/internal-do-not-import-from-here/models/components/documentlibrary/DocumentItemCustomRenderFieldApi.js +2 -0
  11. package/internal-do-not-import-from-here/models/components/documentlibrary/DocumentLibraryContextMenuButtonApi.d.ts +25 -0
  12. package/internal-do-not-import-from-here/models/components/documentlibrary/DocumentLibraryContextMenuButtonApi.js +2 -0
  13. package/internal-do-not-import-from-here/models/components/documentlibrary/index.d.ts +2 -0
  14. package/internal-do-not-import-from-here/models/components/documentlibrary/index.js +2 -0
  15. package/internal-do-not-import-from-here/models/components/documentrollup/DocumentRollupBlockSettings.d.ts +14 -0
  16. package/internal-do-not-import-from-here/models/data/documentrollup/RollupDocument.d.ts +1 -0
  17. package/internal-do-not-import-from-here/models/data/documenttype/DocumentTypeItemSettings.d.ts +1 -0
  18. package/internal-do-not-import-from-here/models/data/index.d.ts +1 -0
  19. package/internal-do-not-import-from-here/models/data/index.js +1 -0
  20. package/internal-do-not-import-from-here/models/data/relateddocuments/RelatedDocumentProperty.d.ts +7 -0
  21. package/internal-do-not-import-from-here/models/data/relateddocuments/RelatedDocumentProperty.js +2 -0
  22. package/internal-do-not-import-from-here/models/data/relateddocuments/RelatedDocumentResult.d.ts +7 -0
  23. package/internal-do-not-import-from-here/models/data/relateddocuments/RelatedDocumentResult.js +2 -0
  24. package/internal-do-not-import-from-here/models/data/relateddocuments/RelatedDocumentUpdate.d.ts +7 -0
  25. package/internal-do-not-import-from-here/models/data/relateddocuments/RelatedDocumentUpdate.js +2 -0
  26. package/internal-do-not-import-from-here/models/data/relateddocuments/index.d.ts +3 -0
  27. package/internal-do-not-import-from-here/models/data/relateddocuments/index.js +6 -0
  28. package/internal-do-not-import-from-here/services/document/DocumentRollupService.d.ts +12 -0
  29. package/internal-do-not-import-from-here/services/document/index.d.ts +1 -0
  30. package/internal-do-not-import-from-here/services/documentlibrary/RelatedDocumentsService.d.ts +10 -0
  31. package/internal-do-not-import-from-here/services/documentlibrary/TaskService.d.ts +1 -0
  32. package/internal-do-not-import-from-here/services/documentlibrary/index.d.ts +1 -0
  33. package/internal-do-not-import-from-here/utils.d.ts +2 -1
  34. package/package.json +1 -1
@@ -6,6 +6,7 @@ import { ContentBlockSettings, LinksBlockSettings, TitleBlockSettings, TasksBloc
6
6
  import { ActionHandlerRegistrationId } from "@omnia/fx/models";
7
7
  export declare const ODMRecentDocumentTypesLocalStorageKey = "odm_recentdocumenttypes_key";
8
8
  export declare const OWA_QUERY_PARAMETER = "?Web=1";
9
+ export declare const SharePointSiteLayoutsUrl = "_layouts/15";
9
10
  export declare class ODMFeatureIds {
10
11
  static get ControlledDocument(): Guid;
11
12
  static get CreateNewDocumentInLibrary(): Guid;
@@ -74,6 +75,8 @@ export declare const ShapeTemplatesConstants: {
74
75
  readonly RoundedRect: ShapeTemplate;
75
76
  };
76
77
  export declare const SharePointFieldsConstants: {
78
+ readonly Created: string;
79
+ readonly CreatedBy: string;
77
80
  readonly Modified: string;
78
81
  readonly ModifiedBy: string;
79
82
  readonly Title: string;
@@ -106,6 +109,22 @@ export declare const ShapeHighlightProperties: {
106
109
  strokeDashArray: number[];
107
110
  };
108
111
  };
112
+ export declare const DefaultManagedPropertyConstants: {
113
+ readonly ODMDocIdOWSTEXT: string;
114
+ readonly ODMIsPublishedOWSBOOL: string;
115
+ readonly ODMIsRecordOWSBOOL: string;
116
+ readonly ODMIsArchivedOWSBOOL: string;
117
+ readonly ODMRelatedDocumentsOWSMTXT: string;
118
+ readonly ODMSignedDocumentsOWSMTXT: string;
119
+ readonly ODMDocIdNumberOWSNMBR: string;
120
+ readonly ODMDocumentTypeIdOWSTEXT: string;
121
+ readonly ODMAppendicesOWSMTXT: string;
122
+ readonly ODMPropertiesOWSMTXT: string;
123
+ readonly ODMTemplateDocumentIdNumberOWSNMBR: string;
124
+ readonly ODMTemplateDocumentEditionNumberOWSNMBR: string;
125
+ readonly ODMEditionOWSNMBR: string;
126
+ readonly ODMRevisionOWSNMBR: string;
127
+ };
109
128
  export declare const ODMFieldNameConstants: {
110
129
  readonly ODMDocId: string;
111
130
  readonly ODMDocIdNumber: string;
@@ -140,6 +159,7 @@ export declare const ODMFieldNameConstants: {
140
159
  readonly ODMIsNotifiedUsers: string;
141
160
  readonly ODMListNotifiedUsers: string;
142
161
  readonly ODMIsRequireReadReceipt: string;
162
+ readonly ODMIsIncludedInSemanticSearch: string;
143
163
  readonly ODMTemplateId: string;
144
164
  readonly ODMReviewReminderDate: string;
145
165
  readonly ODMIsPreview: string;
@@ -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","DocumentSemanticSearchSettingOptions","DocumentTaskBulkUpdateTrackingStatusEnum","DocumentTemplateCategoryFactory","DocumentTemplateContentFactory","DocumentTemplateContentTypes","DocumentTemplateFactory","DocumentTemplateSettingsFactory","DocumentTemplateSettingsTypes","DocumentTypeFactory","DocumentTypeSettingsTypes","DocumentTypeTermSynchronizationStatusStatuses","DrawingCanvasSettingsStyles","DrawingShapeTypes","DynamicKeySetting","Enums","FreeformPickerStyles","GlobalSettings","GraphApiPlannerTaskProgress","MSService","MediaPickerStyles","NavigationNodeStyles","ODMResourceManifests","ODMWebComponentManifests","OPMResourceManifests","OPMWebComponentManifests","PagingServerQuery","ProcessApproverId","ProcessButtonType","ProcessDefaultControlSettings","ProcessDesignerStyles","ProcessFieldDisplayStyles","ProcessGlobalSettings","ProcessLayoutProvider","ProcessMediaPickerProviderContext","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","Setting","ShapeDefinitionTypes","ShapeGalleryDefaultSettingStyles","ShapeMovingDirection","ShapeSelectionStyles","ShapeSettingsStyles","ShapeTemplateFactory","ShapeTemplateMediaPickerProviderContext","ShapeTemplateType","ShapeTypeStyles","SiteGroupIdSettings","TargetControlIdentifierType","TaskOutcome","TextAlignment","TextPosition","TitleBlockStyles","UnpublishProcessDialogStyles","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"]}}}
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","DefaultManagedPropertyConstants","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","SharePointSiteLayoutsUrl","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","DocumentRollupService","DocumentService","DocumentTemplateService","DocumentTypeService","ImageService","MoveProcessService","PermissionService","ProcessDocumentRelationshipService","ProcessFeedbackService","ProcessRollupService","ProcessService","ProcessTaskService","ProcessTemplateService","ProcessTypeService","PublishDocumentService","QueryablePropertiesService","RelatedDocumentsService","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","DocumentSemanticSearchSettingOptions","DocumentTaskBulkUpdateTrackingStatusEnum","DocumentTemplateCategoryFactory","DocumentTemplateContentFactory","DocumentTemplateContentTypes","DocumentTemplateFactory","DocumentTemplateSettingsFactory","DocumentTemplateSettingsTypes","DocumentTypeFactory","DocumentTypeSettingsTypes","DocumentTypeTermSynchronizationStatusStatuses","DrawingCanvasSettingsStyles","DrawingShapeTypes","DynamicKeySetting","Enums","FreeformPickerStyles","GlobalSettings","GraphApiPlannerTaskProgress","MSService","MediaPickerStyles","NavigationNodeStyles","ODMResourceManifests","ODMWebComponentManifests","OPMResourceManifests","OPMWebComponentManifests","PagingServerQuery","ProcessApproverId","ProcessButtonType","ProcessDefaultControlSettings","ProcessDesignerStyles","ProcessFieldDisplayStyles","ProcessGlobalSettings","ProcessLayoutProvider","ProcessMediaPickerProviderContext","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","Setting","ShapeDefinitionTypes","ShapeGalleryDefaultSettingStyles","ShapeMovingDirection","ShapeSelectionStyles","ShapeSettingsStyles","ShapeTemplateFactory","ShapeTemplateMediaPickerProviderContext","ShapeTemplateType","ShapeTypeStyles","SiteGroupIdSettings","TargetControlIdentifierType","TaskOutcome","TextAlignment","TextPosition","TitleBlockStyles","UnpublishProcessDialogStyles","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","DefaultManagedPropertyConstants","DocumentConversionStore","DocumentLibrariesUrl","DocumentLibraryService","DocumentPropetiesStore","DocumentRollupService","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","RelatedDocumentsService","ReviewReminderTaskService","ReviewTaskService","RootProcessStepDesignerItemIds","Security","SettingsService","SettingsStore","ShapeDefinitionFactory","ShapeFactory","ShapeHighlightProperties","ShapeTemplateService","ShapeTemplateStore","ShapeTemplatesConstants","SharePointFieldsConstants","SharePointSiteLayoutsUrl","SharePointTaskService","SignOffRequest","SystemProcessProperties","TaskService","TasksBlockConfigurationFactory","TeamAppPropertyService","TextSpacingWithShape","TitleBlockConfigurationFactory","UserService","WebEmojiIcons"]}}}
@@ -52,7 +52,13 @@ export declare module Enums {
52
52
  InRecyleBin = 7,
53
53
  Restoring = 8,
54
54
  Restored = 9,
55
- RecycleBinDeleting = 10
55
+ RecycleBinDeleting = 10,
56
+ FailedBeforePublishingDocument = 100,
57
+ FailedEnsureColumnsAndFolderWhenPublishingDocument = 101,
58
+ FailedConvertPdfFileWhenPublishingDocument = 102,
59
+ FailedCopyDocumentWhenPublishingDocument = 103,
60
+ FailedEnsurePermissionWhenPublishingDocument = 104,
61
+ FailedFinishingWhenPublishingDocument = 105
56
62
  }
57
63
  enum DocumentVersionType {
58
64
  Draft = 0,
@@ -157,7 +163,8 @@ export declare module Enums {
157
163
  PublishWithoutApproval = 5,
158
164
  ReviewReminderWorkflow = 6,
159
165
  DeletePublishedDocument = 7,
160
- RestoreDocument = 8
166
+ RestoreDocument = 8,
167
+ ChangeDraftComment = 9
161
168
  }
162
169
  enum ReviewReminderTaskOutcome {
163
170
  Undefined = 0,
@@ -187,7 +194,8 @@ export declare module Enums {
187
194
  AllDocuments = 0,
188
195
  PublishedDocuments = 1,
189
196
  ArchivedDocuments = 2,
190
- ProcessDocuments = 3
197
+ ProcessDocuments = 3,
198
+ SharePointLibrary = 4
191
199
  }
192
200
  enum QueryConfigurationType {
193
201
  QueryBuilder = 0,
@@ -68,6 +68,12 @@ var Enums;
68
68
  ProcessingStatus[ProcessingStatus["Restoring"] = 8] = "Restoring";
69
69
  ProcessingStatus[ProcessingStatus["Restored"] = 9] = "Restored";
70
70
  ProcessingStatus[ProcessingStatus["RecycleBinDeleting"] = 10] = "RecycleBinDeleting";
71
+ ProcessingStatus[ProcessingStatus["FailedBeforePublishingDocument"] = 100] = "FailedBeforePublishingDocument";
72
+ ProcessingStatus[ProcessingStatus["FailedEnsureColumnsAndFolderWhenPublishingDocument"] = 101] = "FailedEnsureColumnsAndFolderWhenPublishingDocument";
73
+ ProcessingStatus[ProcessingStatus["FailedConvertPdfFileWhenPublishingDocument"] = 102] = "FailedConvertPdfFileWhenPublishingDocument";
74
+ ProcessingStatus[ProcessingStatus["FailedCopyDocumentWhenPublishingDocument"] = 103] = "FailedCopyDocumentWhenPublishingDocument";
75
+ ProcessingStatus[ProcessingStatus["FailedEnsurePermissionWhenPublishingDocument"] = 104] = "FailedEnsurePermissionWhenPublishingDocument";
76
+ ProcessingStatus[ProcessingStatus["FailedFinishingWhenPublishingDocument"] = 105] = "FailedFinishingWhenPublishingDocument";
71
77
  })(ProcessingStatus = DocumentViewEnums.ProcessingStatus || (DocumentViewEnums.ProcessingStatus = {}));
72
78
  let DocumentVersionType;
73
79
  (function (DocumentVersionType) {
@@ -183,6 +189,7 @@ var Enums;
183
189
  WorkflowType[WorkflowType["ReviewReminderWorkflow"] = 6] = "ReviewReminderWorkflow";
184
190
  WorkflowType[WorkflowType["DeletePublishedDocument"] = 7] = "DeletePublishedDocument";
185
191
  WorkflowType[WorkflowType["RestoreDocument"] = 8] = "RestoreDocument";
192
+ WorkflowType[WorkflowType["ChangeDraftComment"] = 9] = "ChangeDraftComment";
186
193
  })(WorkflowType = DocumentViewEnums.WorkflowType || (DocumentViewEnums.WorkflowType = {}));
187
194
  let ReviewReminderTaskOutcome;
188
195
  (function (ReviewReminderTaskOutcome) {
@@ -219,6 +226,7 @@ var Enums;
219
226
  QueryScope[QueryScope["PublishedDocuments"] = 1] = "PublishedDocuments";
220
227
  QueryScope[QueryScope["ArchivedDocuments"] = 2] = "ArchivedDocuments";
221
228
  QueryScope[QueryScope["ProcessDocuments"] = 3] = "ProcessDocuments";
229
+ QueryScope[QueryScope["SharePointLibrary"] = 4] = "SharePointLibrary";
222
230
  })(QueryScope = DocumentViewEnums.QueryScope || (DocumentViewEnums.QueryScope = {}));
223
231
  let QueryConfigurationType;
224
232
  (function (QueryConfigurationType) {
@@ -0,0 +1,31 @@
1
+ import { Future, GuidValue, IExtendApiManifestWithConfiguration } from "@omnia/fx/models";
2
+ import { ControlledDocument, DraftControlledDocument } from "../../data";
3
+ import { DocumentLibraryViewType } from "./DocumentLibraryCommandButtonApi";
4
+ export interface IDocumentComponent<T extends ControlledDocument = ControlledDocument> {
5
+ documentItem: T;
6
+ }
7
+ export interface CustomRenderView {
8
+ internalName: string;
9
+ manifestId: GuidValue;
10
+ viewType: string;
11
+ }
12
+ export interface IDocumentItemCustomRender extends DraftControlledDocument {
13
+ disabled?: boolean;
14
+ hidden?: boolean;
15
+ }
16
+ export interface IDocumentItemCustomRenderFieldApi {
17
+ addCustomRenderField: (viewType: DocumentLibraryViewType, internalName: string, manifestId: GuidValue) => void;
18
+ getCustomRenderFieldsByType: (viewType: DocumentLibraryViewType) => Future<Array<CustomRenderView>>;
19
+ }
20
+ declare module "../../../apis/index" {
21
+ interface IMSApi {
22
+ documentItemCustomRender: {
23
+ registration: Promise<IDocumentItemCustomRenderFieldApi>;
24
+ };
25
+ }
26
+ interface IMSExtendApiManifest {
27
+ documentItemCustomRender: {
28
+ registration: IExtendApiManifestWithConfiguration<DocumentLibraryViewType>;
29
+ };
30
+ }
31
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ import { Future, IExtendApiManifestWithConfiguration } from "@omnia/fx/models";
2
+ import { ControlledDocument } from "../../data";
3
+ import { DocumentLibraryViewType, ICommandButton } from "./DocumentLibraryCommandButtonApi";
4
+ export interface IContextMenuButton extends ICommandButton {
5
+ onSelectionChanged?: (document: ControlledDocument) => Future<void>;
6
+ }
7
+ export interface IContextMenuButtonComponent<T extends IContextMenuButton = IContextMenuButton> {
8
+ button: T;
9
+ }
10
+ export interface IDocumentLibraryContextMenuButtonApi {
11
+ addContextMenuButton: (viewType: DocumentLibraryViewType, items: IContextMenuButton) => void;
12
+ getContextMenuButtonsByType: (viewType: DocumentLibraryViewType) => Future<Array<IContextMenuButton>>;
13
+ }
14
+ declare module "../../../apis/index" {
15
+ interface IMSApi {
16
+ documentLibraryContextMenuButton: {
17
+ registration: Promise<IDocumentLibraryContextMenuButtonApi>;
18
+ };
19
+ }
20
+ interface IMSExtendApiManifest {
21
+ documentLibraryContextMenuButton: {
22
+ registration: IExtendApiManifestWithConfiguration<DocumentLibraryViewType>;
23
+ };
24
+ }
25
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -2,3 +2,5 @@ export * from "./DocumentLibraryDisplaySettings";
2
2
  export * from "./DocumentLibrarySettings";
3
3
  export * from "./DocumentLibraryViewSettings";
4
4
  export * from "./DocumentLibraryCommandButtonApi";
5
+ export * from "./DocumentLibraryContextMenuButtonApi";
6
+ export * from "./DocumentItemCustomRenderFieldApi";
@@ -5,3 +5,5 @@ tslib_1.__exportStar(require("./DocumentLibraryDisplaySettings"), exports);
5
5
  tslib_1.__exportStar(require("./DocumentLibrarySettings"), exports);
6
6
  tslib_1.__exportStar(require("./DocumentLibraryViewSettings"), exports);
7
7
  tslib_1.__exportStar(require("./DocumentLibraryCommandButtonApi"), exports);
8
+ tslib_1.__exportStar(require("./DocumentLibraryContextMenuButtonApi"), exports);
9
+ tslib_1.__exportStar(require("./DocumentItemCustomRenderFieldApi"), exports);
@@ -31,6 +31,20 @@ 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;
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;
36
50
  }
@@ -14,4 +14,5 @@ export interface RollupDocument {
14
14
  openFileUrl: string;
15
15
  isNew: boolean;
16
16
  unsearchable?: boolean;
17
+ isLocalDocument?: boolean;
17
18
  }
@@ -29,6 +29,7 @@ export interface DocumentTypeItemSettings extends DocumentTypeSettings {
29
29
  enableShowChangeButtonInRollup: boolean;
30
30
  replaceTokenOnPublishing: boolean;
31
31
  allowRevisions: boolean;
32
+ allowValidateUnacceptedChange: boolean;
32
33
  allowBypassApprovalForRevisions: boolean;
33
34
  showCreateDocumentIconInRollup: boolean;
34
35
  conversions: DocumentConversions;
@@ -14,6 +14,7 @@ export * from "./feedback";
14
14
  export * from "./documentstatistics";
15
15
  export * from "./retention";
16
16
  export * from "./documentbulkupdate";
17
+ export * from "./relateddocuments";
17
18
  export * from "./processtemplates";
18
19
  export * from "./shapedefinitions";
19
20
  export * from "./processes";
@@ -17,6 +17,7 @@ tslib_1.__exportStar(require("./feedback"), exports);
17
17
  tslib_1.__exportStar(require("./documentstatistics"), exports);
18
18
  tslib_1.__exportStar(require("./retention"), exports);
19
19
  tslib_1.__exportStar(require("./documentbulkupdate"), exports);
20
+ tslib_1.__exportStar(require("./relateddocuments"), exports);
20
21
  tslib_1.__exportStar(require("./processtemplates"), exports);
21
22
  tslib_1.__exportStar(require("./shapedefinitions"), exports);
22
23
  tslib_1.__exportStar(require("./processes"), exports);
@@ -0,0 +1,7 @@
1
+ import { GuidValue } from "@omnia/fx-models";
2
+ export interface RelatedDocumentProperty {
3
+ id: GuidValue;
4
+ documentIdNumber: number;
5
+ isNotify: boolean;
6
+ userPropertyName: string;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { SharePointField, ControlledDocument } from "..";
2
+ import { RelatedDocumentProperty } from ".";
3
+ export interface RelatedDocumentResult {
4
+ property: RelatedDocumentProperty;
5
+ relatedDocuments: Array<ControlledDocument>;
6
+ notifyFields: Array<SharePointField>;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { RelatedDocument } from "..";
2
+ import { RelatedDocumentProperty } from ".";
3
+ export interface RelatedDocumentUpdate {
4
+ property: RelatedDocumentProperty;
5
+ relatedDocuments: Array<RelatedDocument>;
6
+ spDocumentId: number;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ export * from "./RelatedDocumentProperty";
2
+ export * from "./RelatedDocumentResult";
3
+ export * from "./RelatedDocumentUpdate";
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./RelatedDocumentProperty"), exports);
5
+ tslib_1.__exportStar(require("./RelatedDocumentResult"), exports);
6
+ tslib_1.__exportStar(require("./RelatedDocumentUpdate"), exports);
@@ -0,0 +1,12 @@
1
+ import { OmniaContext } from "@omnia/fx";
2
+ import { EnterprisePropertyDefinition } from "@omnia/fx/models";
3
+ import { DocumentRollupRequest, ExportDocumentRollupRequest, DocumentQueryResult, RollupDocument, ExportDocumentRollupResult } from "../../models";
4
+ export declare class DocumentRollupService {
5
+ private httpClient;
6
+ omniaContext: OmniaContext;
7
+ constructor();
8
+ queryDocuments: (query: DocumentRollupRequest, openInClientApp: boolean) => Promise<DocumentQueryResult>;
9
+ exportToExcel: (query: ExportDocumentRollupRequest) => Promise<ExportDocumentRollupResult>;
10
+ getExportedFile: (exportingFileName: string, exportingFileToken: string) => Promise<void>;
11
+ getControlledDocumentsByDocId: (managedProperties: EnterprisePropertyDefinition[], odmDocIds: Array<string>) => Promise<Array<RollupDocument>>;
12
+ }
@@ -1,3 +1,4 @@
1
1
  export * from "./DocumentService";
2
2
  export * from "./DocumentTemplateService";
3
3
  export * from "./DocumentTypeService";
4
+ export * from "./DocumentRollupService";
@@ -0,0 +1,10 @@
1
+ import { GuidValue } from "@omnia/fx/models";
2
+ import { PagingRequest, GetControlledDocumentsResponse, RelatedDocumentResult, RelatedDocumentUpdate } from "../../models";
3
+ export declare class RelatedDocumentsService {
4
+ private httpClient;
5
+ constructor();
6
+ getRelatedDocuments: (isIncomingRelation: boolean, spDocumentId: number, odmDocIdNumber: number, webUrl: string, documentTypeId: GuidValue) => Promise<RelatedDocumentResult>;
7
+ updateRelatedDocumentsOnPublishedDocument: (webUrl: string, odmDocIdNumber: number, spDocumentId: number, relatedODMDocIds: Array<number>) => Promise<void>;
8
+ searchPublishedDocuments: (request: PagingRequest) => Promise<GetControlledDocumentsResponse>;
9
+ updateRelatedDocuments: (relatedResult: RelatedDocumentUpdate, webUrl: string) => Promise<void>;
10
+ }
@@ -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
  }
@@ -4,3 +4,4 @@ export * from "./ReviewTaskService";
4
4
  export * from "./PublishDocumentService";
5
5
  export * from "./ReviewReminderTaskService";
6
6
  export * from "./ApprovalTaskService";
7
+ export * from "./RelatedDocumentsService";
@@ -1,7 +1,7 @@
1
1
  import { ProcessStep, Process, ProcessReference, RootProcessStep, InternalProcessStep, DrawingShapeDefinition } from "./models";
2
2
  import { GuidValue } from "@omnia/fx-models";
3
3
  import { MultilingualStore } from "@omnia/fx/stores";
4
- import { MultilingualString } from "@omnia/fx/models";
4
+ import { MultilingualString, EnterprisePropertyDefinition } from "@omnia/fx/models";
5
5
  import { RecentDocumentType } from "../models";
6
6
  export declare module OPMUtils {
7
7
  function generateProcessStepExpandState(processStep: RootProcessStep, processStepId: GuidValue): {
@@ -35,6 +35,7 @@ export declare module ODMUtils {
35
35
  function addOfficeClientPrefix(url: string): string;
36
36
  function saveRecentDocumentType(documentTypeId: GuidValue): void;
37
37
  function getRecentDocumentTypes(): Array<RecentDocumentType>;
38
+ function getManagedProperty(managedProperties: EnterprisePropertyDefinition[], defaultManagedProperty: string, field: string): string;
38
39
  function isSupportedByOfficeWebApp(fileExtension: string): boolean;
39
40
  function isSupportedByOfficeWebAppWithMsTeams(fileExtension: string): boolean;
40
41
  function correctDateOnlyValue(dateValue: any): Date;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/management-system",
3
3
  "license": "MIT",
4
- "version": "7.8.7-preview",
4
+ "version": "7.8.7",
5
5
  "description": "Omnia Management System.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"