@omnia/management-system 7.11.11 → 7.11.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/models/Enums.d.ts +2 -1
- package/internal-do-not-import-from-here/models/Enums.js +1 -0
- package/internal-do-not-import-from-here/models/data/documentbulkupdate/BulkUpdatePagingRequest.d.ts +3 -0
- package/internal-do-not-import-from-here/models/data/documentbulkupdate/DocumentBulkUpdateQuery.d.ts +12 -1
- package/internal-do-not-import-from-here/models/data/documentbulkupdate/SearchCriterion.d.ts +8 -0
- package/internal-do-not-import-from-here/models/data/documentbulkupdate/SearchCriterion.js +2 -0
- package/internal-do-not-import-from-here/models/data/documentbulkupdate/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/data/documentbulkupdate/index.js +1 -0
- package/internal-do-not-import-from-here/services/document/DocumentTypeService.d.ts +1 -1
- package/internal-do-not-import-from-here/stores/documentlibrary/DocumentTypeStore.d.ts +1 -0
- package/models/package.json +1 -1
- package/package.json +1 -1
|
@@ -104,7 +104,8 @@ export declare module Enums {
|
|
|
104
104
|
Deleted = 34,
|
|
105
105
|
Archiving = 35,
|
|
106
106
|
ScheduledForPublishing = 36,
|
|
107
|
-
FailedScheduleForPublishing = 37
|
|
107
|
+
FailedScheduleForPublishing = 37,
|
|
108
|
+
NotInPropertySetError = 38
|
|
108
109
|
}
|
|
109
110
|
enum TaskContentType {
|
|
110
111
|
Undefined = 0,
|
|
@@ -122,6 +122,7 @@ var Enums;
|
|
|
122
122
|
LibraryDocumentStatus[LibraryDocumentStatus["Archiving"] = 35] = "Archiving";
|
|
123
123
|
LibraryDocumentStatus[LibraryDocumentStatus["ScheduledForPublishing"] = 36] = "ScheduledForPublishing";
|
|
124
124
|
LibraryDocumentStatus[LibraryDocumentStatus["FailedScheduleForPublishing"] = 37] = "FailedScheduleForPublishing";
|
|
125
|
+
LibraryDocumentStatus[LibraryDocumentStatus["NotInPropertySetError"] = 38] = "NotInPropertySetError";
|
|
125
126
|
})(LibraryDocumentStatus = DocumentViewEnums.LibraryDocumentStatus || (DocumentViewEnums.LibraryDocumentStatus = {}));
|
|
126
127
|
let TaskContentType;
|
|
127
128
|
(function (TaskContentType) {
|
package/internal-do-not-import-from-here/models/data/documentbulkupdate/DocumentBulkUpdateQuery.d.ts
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
import { DocumentBulkUpdate } from "./DocumentBulkUpdate";
|
|
2
2
|
import { SharePointField } from "../sharepoint";
|
|
3
|
-
export
|
|
3
|
+
export type DocumentBulkUpdateOperation = "set" | "clear" | "replace" | "add" | "remove";
|
|
4
|
+
type DocumentBulkUpdateTargetedOperation = "replace" | "remove";
|
|
5
|
+
type DocumentBulkUpdateUntargetedOperation = "set" | "clear" | "add";
|
|
6
|
+
interface DocumentBulkUpdateQueryBase {
|
|
4
7
|
documentBulkUpdates: Array<DocumentBulkUpdate>;
|
|
5
8
|
newValueField: SharePointField;
|
|
6
9
|
system: string;
|
|
7
10
|
modifiedBy: string;
|
|
8
11
|
value: string;
|
|
9
12
|
}
|
|
13
|
+
export type DocumentBulkUpdateQuery = DocumentBulkUpdateQueryBase & ({
|
|
14
|
+
updateOperation: DocumentBulkUpdateTargetedOperation;
|
|
15
|
+
targetValueField: SharePointField;
|
|
16
|
+
} | {
|
|
17
|
+
updateOperation: DocumentBulkUpdateUntargetedOperation;
|
|
18
|
+
targetValueField?: never;
|
|
19
|
+
});
|
|
20
|
+
export {};
|
|
@@ -4,3 +4,4 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
tslib_1.__exportStar(require("./DocumentBulkUpdate"), exports);
|
|
5
5
|
tslib_1.__exportStar(require("./DocumentBulkUpdateQuery"), exports);
|
|
6
6
|
tslib_1.__exportStar(require("./BulkUpdatePagingRequest"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./SearchCriterion"), exports);
|
|
@@ -4,7 +4,7 @@ export declare class DocumentTypeService {
|
|
|
4
4
|
private httpClient;
|
|
5
5
|
constructor();
|
|
6
6
|
refreshServerCache: () => Promise<void>;
|
|
7
|
-
getByIds: (ids: Array<GuidValue
|
|
7
|
+
getByIds: (ids: Array<GuidValue>, includeDeleted?: boolean) => Promise<Array<DocumentType>>;
|
|
8
8
|
getChildren: (parentId?: GuidValue) => Promise<Array<DocumentType>>;
|
|
9
9
|
getDocumentTypeTermSetId: () => Promise<GuidValue>;
|
|
10
10
|
create: (documentType: DocumentType) => Promise<DocumentType>;
|
|
@@ -32,6 +32,7 @@ export declare class DocumentTypeStore extends Store {
|
|
|
32
32
|
updateDocumentType: import("@omnia/fx/stores").StoreAction<unknown, (documentType: DocumentType) => void, (result: DocumentType, documentType: DocumentType) => void, (failureReason: any, documentType: DocumentType) => void, (documentType: DocumentType) => Promise<DocumentType>>;
|
|
33
33
|
removeDocumentType: import("@omnia/fx/stores").StoreAction<unknown, (documentType: DocumentType) => void, (result: any, documentType: DocumentType) => void, (failureReason: any, documentType: DocumentType) => void, (documentType: DocumentType) => Promise<any>>;
|
|
34
34
|
ensureDocumentTypes: import("@omnia/fx/stores").StoreAction<unknown, (documentTypeIds: GuidValue[]) => void, (result: any, documentTypeIds: GuidValue[]) => void, (failureReason: any, documentTypeIds: GuidValue[]) => void, (documentTypeIds: Array<GuidValue>) => Promise<any>>;
|
|
35
|
+
ensureDocumentTypesIncludeDeleted: import("@omnia/fx/stores").StoreAction<unknown, (documentTypeIds: GuidValue[]) => void, (result: any, documentTypeIds: GuidValue[]) => void, (failureReason: any, documentTypeIds: GuidValue[]) => void, (documentTypeIds: Array<GuidValue>) => Promise<any>>;
|
|
35
36
|
refreshCache: import("@omnia/fx/stores").StoreAction<unknown, (trackingNumber: number) => void, (result: null, trackingNumber: number) => void, (failureReason: any, trackingNumber: number) => void, (trackingNumber: number) => Promise<null>>;
|
|
36
37
|
ensureDocumentTypeByDocumentTemplate: import("@omnia/fx/stores").StoreAction<unknown, (documentTemplateId: GuidValue) => void, (result: DocumentType[], documentTemplateId: GuidValue) => void, (failureReason: any, documentTemplateId: GuidValue) => void, (documentTemplateId: GuidValue) => Promise<DocumentType[]>>;
|
|
37
38
|
};
|
package/models/package.json
CHANGED
package/package.json
CHANGED