@omnia/management-system 7.8.14-preview → 7.8.16-preview
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -225,6 +225,7 @@ var Enums;
|
|
225
225
|
QueryScope[QueryScope["PublishedDocuments"] = 1] = "PublishedDocuments";
|
226
226
|
QueryScope[QueryScope["ArchivedDocuments"] = 2] = "ArchivedDocuments";
|
227
227
|
QueryScope[QueryScope["ProcessDocuments"] = 3] = "ProcessDocuments";
|
228
|
+
QueryScope[QueryScope["SharePointLibrary"] = 4] = "SharePointLibrary";
|
228
229
|
})(QueryScope = DocumentViewEnums.QueryScope || (DocumentViewEnums.QueryScope = {}));
|
229
230
|
let QueryConfigurationType;
|
230
231
|
(function (QueryConfigurationType) {
|
@@ -18,6 +18,8 @@ export interface DocumentRollupBlockSettings {
|
|
18
18
|
queryConfigurationType: Enums.DocumentViewEnums.QueryConfigurationType;
|
19
19
|
query?: string;
|
20
20
|
searchScope?: Enums.DocumentViewEnums.QueryScope;
|
21
|
+
spSiteUrl?: string;
|
22
|
+
spFolderUrl?: string;
|
21
23
|
pickedDocuments?: Array<DocumentIdentifier>;
|
22
24
|
selectedViewId: string;
|
23
25
|
viewSettings: DocumentRollupViewSettings;
|
package/package.json
CHANGED