@omnia/fx-models 7.8.46-preview → 7.8.47-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.
- package/Enums.d.ts +2 -1
- package/Enums.js +1 -0
- package/Layout.d.ts +1 -0
- package/analytics/AnalyticsDimensionMappings.d.ts +10 -0
- package/analytics/AnalyticsDimensionMappings.js +8 -0
- package/analytics/BusinessProfileAnalyticsSettings.d.ts +8 -0
- package/analytics/BusinessProfileAnalyticsSettings.js +14 -0
- package/analytics/EventAction.d.ts +1 -1
- package/analytics/index.d.ts +2 -0
- package/analytics/index.js +2 -0
- package/identities/IdentityCreationRequest.d.ts +1 -0
- package/package.json +1 -1
package/Enums.d.ts
CHANGED
|
@@ -493,7 +493,8 @@ export declare enum RoleDefinitions {
|
|
|
493
493
|
QueryAppInstanceContributor = "847E8689-E86F-4DFD-BE42-65F52B01DDF8",
|
|
494
494
|
QueryAppInstanceReader = "D8E7ACC5-1338-43D2-8307-C3E712340205",
|
|
495
495
|
QueryAppInstanceViewer = "9B0B9C44-3356-408E-91A5-A29A7A83E924",
|
|
496
|
-
DirectoryReader = "83a919c4-2a71-4860-bcd9-7ebc639d00b8"
|
|
496
|
+
DirectoryReader = "83a919c4-2a71-4860-bcd9-7ebc639d00b8",
|
|
497
|
+
SemanticSearchReader = "405577c6-2870-4040-964a-cd2600d8e414"
|
|
497
498
|
}
|
|
498
499
|
export declare enum FeatureInstanceStatus {
|
|
499
500
|
NotActivated = -1,
|
package/Enums.js
CHANGED
|
@@ -401,6 +401,7 @@ var RoleDefinitions;
|
|
|
401
401
|
RoleDefinitions["QueryAppInstanceReader"] = "D8E7ACC5-1338-43D2-8307-C3E712340205";
|
|
402
402
|
RoleDefinitions["QueryAppInstanceViewer"] = "9B0B9C44-3356-408E-91A5-A29A7A83E924";
|
|
403
403
|
RoleDefinitions["DirectoryReader"] = "83a919c4-2a71-4860-bcd9-7ebc639d00b8";
|
|
404
|
+
RoleDefinitions["SemanticSearchReader"] = "405577c6-2870-4040-964a-cd2600d8e414";
|
|
404
405
|
})(RoleDefinitions = exports.RoleDefinitions || (exports.RoleDefinitions = {}));
|
|
405
406
|
var FeatureInstanceStatus;
|
|
406
407
|
(function (FeatureInstanceStatus) {
|
package/Layout.d.ts
CHANGED
|
@@ -187,6 +187,7 @@ export interface StepperSectionSettings extends SectionSettings {
|
|
|
187
187
|
nonLinear: boolean;
|
|
188
188
|
labelSettings: StepperLabelSettings;
|
|
189
189
|
scrollToTopOnSelectedStep: boolean;
|
|
190
|
+
paging?: boolean;
|
|
190
191
|
}
|
|
191
192
|
export interface StepperLabelSettings {
|
|
192
193
|
none: boolean;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDataSourcePropertySelection } from "@omnia/fx/ux";
|
|
2
|
+
export interface AnalyticsDimensionMapping {
|
|
3
|
+
dimensionId: number;
|
|
4
|
+
mappedProperty: IDataSourcePropertySelection;
|
|
5
|
+
scope: AnalyticsDimensionScopes;
|
|
6
|
+
}
|
|
7
|
+
export declare enum AnalyticsDimensionScopes {
|
|
8
|
+
visit = 0,
|
|
9
|
+
action = 1
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AnalyticsDimensionScopes = void 0;
|
|
4
|
+
var AnalyticsDimensionScopes;
|
|
5
|
+
(function (AnalyticsDimensionScopes) {
|
|
6
|
+
AnalyticsDimensionScopes[AnalyticsDimensionScopes["visit"] = 0] = "visit";
|
|
7
|
+
AnalyticsDimensionScopes[AnalyticsDimensionScopes["action"] = 1] = "action";
|
|
8
|
+
})(AnalyticsDimensionScopes = exports.AnalyticsDimensionScopes || (exports.AnalyticsDimensionScopes = {}));
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AnalyticsDimensionMapping } from "./AnalyticsDimensionMappings";
|
|
2
|
+
import { BusinessProfileProperty } from "./../BusinessProfile";
|
|
3
|
+
export declare class BusinessProfileAnalyticsSettings extends BusinessProfileProperty {
|
|
4
|
+
enabled: boolean;
|
|
5
|
+
idSite: number;
|
|
6
|
+
mappings: AnalyticsDimensionMapping[];
|
|
7
|
+
constructor();
|
|
8
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BusinessProfileAnalyticsSettings = void 0;
|
|
4
|
+
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
|
|
5
|
+
const BusinessProfile_1 = require("./../BusinessProfile");
|
|
6
|
+
class BusinessProfileAnalyticsSettings extends BusinessProfile_1.BusinessProfileProperty {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(new models_1.Guid("39df27aa-95f1-4a23-b3f6-8b231afcda82"), "bpanalyticssettings");
|
|
9
|
+
this.enabled = false;
|
|
10
|
+
this.idSite = -1;
|
|
11
|
+
this.mappings = [];
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.BusinessProfileAnalyticsSettings = BusinessProfileAnalyticsSettings;
|
package/analytics/index.d.ts
CHANGED
package/analytics/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./AnalyticsDimensionMappings"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./BusinessProfileAnalyticsSettings"), exports);
|
|
4
6
|
tslib_1.__exportStar(require("./AnalyticsSettings"), exports);
|
|
5
7
|
tslib_1.__exportStar(require("./EventAction"), exports);
|
|
@@ -16,6 +16,7 @@ export interface UserRequestFormDisplaySetting {
|
|
|
16
16
|
userTypeId: GuidValue;
|
|
17
17
|
userTypeDisplayName: MultilingualString;
|
|
18
18
|
propertyBindings: Array<PropertyBindingDisplay>;
|
|
19
|
+
magicLinkExpiration: number;
|
|
19
20
|
}
|
|
20
21
|
export declare enum ConfirmEmailStatus {
|
|
21
22
|
Incomplete = 0,
|