@omnia/management-system 7.10.0-preview.12 → 7.10.0-preview.14
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 +7 -3
- package/internal-do-not-import-from-here/models/Enums.js +4 -0
- 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 +1 -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/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/services/documentlibrary/PublishDocumentService.d.ts +2 -0
- package/package.json +1 -1
@@ -102,7 +102,9 @@ export declare module Enums {
|
|
102
102
|
NoDocumentTypeError = 32,
|
103
103
|
FailedMergeWithTemplate = 33,
|
104
104
|
Deleted = 34,
|
105
|
-
Archiving = 35
|
105
|
+
Archiving = 35,
|
106
|
+
ScheduledForPublishing = 36,
|
107
|
+
FailedScheduleForPublishing = 37
|
106
108
|
}
|
107
109
|
enum TaskContentType {
|
108
110
|
Undefined = 0,
|
@@ -128,7 +130,8 @@ export declare module Enums {
|
|
128
130
|
None = 0,
|
129
131
|
AllTasksDone = 1,
|
130
132
|
MeetDueDate = 2,
|
131
|
-
Cancelled = 3
|
133
|
+
Cancelled = 3,
|
134
|
+
Failed = 4
|
132
135
|
}
|
133
136
|
enum DocumentRoles {
|
134
137
|
View = 1,
|
@@ -164,7 +167,8 @@ export declare module Enums {
|
|
164
167
|
ReviewReminderWorkflow = 6,
|
165
168
|
DeletePublishedDocument = 7,
|
166
169
|
RestoreDocument = 8,
|
167
|
-
ChangeDraftComment = 9
|
170
|
+
ChangeDraftComment = 9,
|
171
|
+
ScheduledPublishing = 10
|
168
172
|
}
|
169
173
|
enum ReviewReminderTaskOutcome {
|
170
174
|
Undefined = 0,
|
@@ -120,6 +120,8 @@ var Enums;
|
|
120
120
|
LibraryDocumentStatus[LibraryDocumentStatus["FailedMergeWithTemplate"] = 33] = "FailedMergeWithTemplate";
|
121
121
|
LibraryDocumentStatus[LibraryDocumentStatus["Deleted"] = 34] = "Deleted";
|
122
122
|
LibraryDocumentStatus[LibraryDocumentStatus["Archiving"] = 35] = "Archiving";
|
123
|
+
LibraryDocumentStatus[LibraryDocumentStatus["ScheduledForPublishing"] = 36] = "ScheduledForPublishing";
|
124
|
+
LibraryDocumentStatus[LibraryDocumentStatus["FailedScheduleForPublishing"] = 37] = "FailedScheduleForPublishing";
|
123
125
|
})(LibraryDocumentStatus = DocumentViewEnums.LibraryDocumentStatus || (DocumentViewEnums.LibraryDocumentStatus = {}));
|
124
126
|
let TaskContentType;
|
125
127
|
(function (TaskContentType) {
|
@@ -151,6 +153,7 @@ var Enums;
|
|
151
153
|
WorkflowCompletedType[WorkflowCompletedType["AllTasksDone"] = 1] = "AllTasksDone";
|
152
154
|
WorkflowCompletedType[WorkflowCompletedType["MeetDueDate"] = 2] = "MeetDueDate";
|
153
155
|
WorkflowCompletedType[WorkflowCompletedType["Cancelled"] = 3] = "Cancelled";
|
156
|
+
WorkflowCompletedType[WorkflowCompletedType["Failed"] = 4] = "Failed";
|
154
157
|
})(WorkflowCompletedType = DocumentViewEnums.WorkflowCompletedType || (DocumentViewEnums.WorkflowCompletedType = {}));
|
155
158
|
let DocumentRoles;
|
156
159
|
(function (DocumentRoles) {
|
@@ -190,6 +193,7 @@ var Enums;
|
|
190
193
|
WorkflowType[WorkflowType["DeletePublishedDocument"] = 7] = "DeletePublishedDocument";
|
191
194
|
WorkflowType[WorkflowType["RestoreDocument"] = 8] = "RestoreDocument";
|
192
195
|
WorkflowType[WorkflowType["ChangeDraftComment"] = 9] = "ChangeDraftComment";
|
196
|
+
WorkflowType[WorkflowType["ScheduledPublishing"] = 10] = "ScheduledPublishing";
|
193
197
|
})(WorkflowType = DocumentViewEnums.WorkflowType || (DocumentViewEnums.WorkflowType = {}));
|
194
198
|
let ReviewReminderTaskOutcome;
|
195
199
|
(function (ReviewReminderTaskOutcome) {
|
@@ -16,6 +16,7 @@ export interface DocumentRollupBlockSettings {
|
|
16
16
|
pagingType: Enums.DocumentViewEnums.PagingType;
|
17
17
|
itemLimit: number;
|
18
18
|
queryConfigurationType: Enums.DocumentViewEnums.QueryConfigurationType;
|
19
|
+
pickInWriteMode?: boolean;
|
19
20
|
query?: string;
|
20
21
|
searchScope?: Enums.DocumentViewEnums.QueryScope;
|
21
22
|
pickedDocuments?: Array<DocumentIdentifier>;
|
@@ -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);
|
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: GuidValue, status: Enums.DocumentViewEnums.LibraryDocumentStatus) => Promise<boolean>;
|
8
8
|
validateUnacceptedChange: (webUrl: string, spDocumentId: number, sqlId: GuidValue, status: Enums.DocumentViewEnums.LibraryDocumentStatus) => Promise<boolean>;
|
9
9
|
publishDocumentWithoutApproval: (request: PublishDocumentWithoutApprovalRequest) => Promise<void>;
|
10
|
+
scheduleDocumentPublishing: (request: PublishDocumentWithoutApprovalRequest) => Promise<void>;
|
11
|
+
cancelScheduledDocumentPublishing: (sqlDocumentId: GuidValue) => 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>>;
|
package/package.json
CHANGED