@omnia/fx-sp-models 8.0.55-dev → 8.0.56-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/Enums.js +4 -4
- package/FilterEngine.js +2 -2
- package/SharePointUserProfilePropertyValue.js +1 -1
- package/Term.js +1 -1
- package/package.json +2 -2
package/Enums.js
CHANGED
|
@@ -10,7 +10,7 @@ var SharePointPermissionRoles;
|
|
|
10
10
|
SharePointPermissionRoles["SharePointListFullControl"] = "4184bc73-fe73-4da4-8774-422d80f5559c";
|
|
11
11
|
SharePointPermissionRoles["SharePointListItemFullControl"] = "9c36be2b-ab36-4fd9-bcfb-23c7a952f0b4";
|
|
12
12
|
SharePointPermissionRoles["SharePointListItemEditor"] = "f401a8c8-2066-4505-84e3-08940f2878d1";
|
|
13
|
-
})(SharePointPermissionRoles
|
|
13
|
+
})(SharePointPermissionRoles || (exports.SharePointPermissionRoles = SharePointPermissionRoles = {}));
|
|
14
14
|
//export enum SharePointTargetResolverTypes {
|
|
15
15
|
// SiteCollection = "Omnia.Fx.NetCore.SharePoint.Features.TargetResolvers.ISiteCollectionFeatureTargetResolver",
|
|
16
16
|
// Site = "Omnia.Fx.NetCore.SharePoint.Features.TargetResolvers.ISiteFeatureTargetResolver"
|
|
@@ -18,18 +18,18 @@ var SharePointPermissionRoles;
|
|
|
18
18
|
var Parameters;
|
|
19
19
|
(function (Parameters) {
|
|
20
20
|
Parameters["SPUrl"] = "SPUrl";
|
|
21
|
-
})(Parameters
|
|
21
|
+
})(Parameters || (exports.Parameters = Parameters = {}));
|
|
22
22
|
var ResourceEvaluators;
|
|
23
23
|
(function (ResourceEvaluators) {
|
|
24
24
|
ResourceEvaluators["SiteCollection"] = "Omnia.Fx.SharePoint.Security.ISiteCollectionResourceEvaluator";
|
|
25
25
|
ResourceEvaluators["Site"] = "Omnia.Fx.SharePoint.Security.ISiteResourceEvaluator";
|
|
26
26
|
ResourceEvaluators["List"] = "Omnia.Fx.SharePoint.Security.IListResourceEvaluator";
|
|
27
27
|
ResourceEvaluators["ListItem"] = "Omnia.Fx.SharePoint.Security.IListItemResourceEvaluator";
|
|
28
|
-
})(ResourceEvaluators
|
|
28
|
+
})(ResourceEvaluators || (exports.ResourceEvaluators = ResourceEvaluators = {}));
|
|
29
29
|
var AssociatedGroup;
|
|
30
30
|
(function (AssociatedGroup) {
|
|
31
31
|
AssociatedGroup[AssociatedGroup["None"] = 0] = "None";
|
|
32
32
|
AssociatedGroup[AssociatedGroup["Owner"] = 1] = "Owner";
|
|
33
33
|
AssociatedGroup[AssociatedGroup["Member"] = 2] = "Member";
|
|
34
34
|
AssociatedGroup[AssociatedGroup["Visitor"] = 3] = "Visitor";
|
|
35
|
-
})(AssociatedGroup
|
|
35
|
+
})(AssociatedGroup || (exports.AssociatedGroup = AssociatedGroup = {}));
|
package/FilterEngine.js
CHANGED
|
@@ -8,13 +8,13 @@ var FilterEngineTaxonomyValueSortOrder;
|
|
|
8
8
|
(function (FilterEngineTaxonomyValueSortOrder) {
|
|
9
9
|
FilterEngineTaxonomyValueSortOrder[FilterEngineTaxonomyValueSortOrder["TermsetOrder"] = 0] = "TermsetOrder";
|
|
10
10
|
FilterEngineTaxonomyValueSortOrder[FilterEngineTaxonomyValueSortOrder["Count"] = 1] = "Count";
|
|
11
|
-
})(FilterEngineTaxonomyValueSortOrder
|
|
11
|
+
})(FilterEngineTaxonomyValueSortOrder || (exports.FilterEngineTaxonomyValueSortOrder = FilterEngineTaxonomyValueSortOrder = {}));
|
|
12
12
|
var DefaultValueType;
|
|
13
13
|
(function (DefaultValueType) {
|
|
14
14
|
DefaultValueType[DefaultValueType["NoDefault"] = 0] = "NoDefault";
|
|
15
15
|
DefaultValueType[DefaultValueType["FixedValue"] = 1] = "FixedValue";
|
|
16
16
|
DefaultValueType[DefaultValueType["CurrentUser"] = 2] = "CurrentUser";
|
|
17
|
-
})(DefaultValueType
|
|
17
|
+
})(DefaultValueType || (exports.DefaultValueType = DefaultValueType = {}));
|
|
18
18
|
class SPSearchFilterEngineContext extends fx_models_1.FilterEngineContext {
|
|
19
19
|
constructor(componentId) {
|
|
20
20
|
super(componentId);
|
|
@@ -6,7 +6,7 @@ var SharePointUserProfilePropertyValueTypes;
|
|
|
6
6
|
SharePointUserProfilePropertyValueTypes[SharePointUserProfilePropertyValueTypes["Text"] = 0] = "Text";
|
|
7
7
|
SharePointUserProfilePropertyValueTypes[SharePointUserProfilePropertyValueTypes["TermSet"] = 1] = "TermSet";
|
|
8
8
|
SharePointUserProfilePropertyValueTypes[SharePointUserProfilePropertyValueTypes["Person"] = 2] = "Person";
|
|
9
|
-
})(SharePointUserProfilePropertyValueTypes
|
|
9
|
+
})(SharePointUserProfilePropertyValueTypes || (exports.SharePointUserProfilePropertyValueTypes = SharePointUserProfilePropertyValueTypes = {}));
|
|
10
10
|
class SharePointUserProfilePropertyValueBase {
|
|
11
11
|
}
|
|
12
12
|
exports.SharePointUserProfilePropertyValueBase = SharePointUserProfilePropertyValueBase;
|
package/Term.js
CHANGED
|
@@ -5,7 +5,7 @@ var TermOrganizationFilterType;
|
|
|
5
5
|
(function (TermOrganizationFilterType) {
|
|
6
6
|
TermOrganizationFilterType[TermOrganizationFilterType["FilterByTermId"] = 1] = "FilterByTermId";
|
|
7
7
|
TermOrganizationFilterType[TermOrganizationFilterType["FilterByCustomProperty"] = 2] = "FilterByCustomProperty";
|
|
8
|
-
})(TermOrganizationFilterType
|
|
8
|
+
})(TermOrganizationFilterType || (exports.TermOrganizationFilterType = TermOrganizationFilterType = {}));
|
|
9
9
|
class TermOrganizationFilterByTermId {
|
|
10
10
|
constructor(termId) {
|
|
11
11
|
this.termId = termId;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx-sp-models",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.56-dev",
|
|
5
5
|
"description": "Provide Omnia Fx Sharepoint Models Stuffs.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Precio Fishbone",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@omnia/fx-models": "8.0.
|
|
22
|
+
"@omnia/fx-models": "8.0.56-dev"
|
|
23
23
|
},
|
|
24
24
|
"typings": "./index.d.ts",
|
|
25
25
|
"bugs": {
|