@omnia/fx-models 7.8.46-preview → 7.8.48-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 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,11 @@
1
+ import { AnalyticsDimensionMapping } from "./AnalyticsDimensionMappings";
2
+ import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
3
+ import { BusinessProfileProperty } from "./../BusinessProfile";
4
+ export declare class BusinessProfileAnalyticsSettings extends BusinessProfileProperty {
5
+ enabled: boolean;
6
+ idSite: number;
7
+ mappings: AnalyticsDimensionMapping[];
8
+ shared: boolean;
9
+ connectedBusinessProfileId?: GuidValue;
10
+ constructor();
11
+ }
@@ -0,0 +1,15 @@
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
+ this.shared = false;
13
+ }
14
+ }
15
+ exports.BusinessProfileAnalyticsSettings = BusinessProfileAnalyticsSettings;
@@ -1,4 +1,4 @@
1
- import { GuidValue } from "../Exposes";
1
+ import { GuidValue } from "@omnia/fx-models";
2
2
  export interface EventAction {
3
3
  id: GuidValue;
4
4
  name: string;
@@ -1,2 +1,4 @@
1
+ export * from "./AnalyticsDimensionMappings";
2
+ export * from "./BusinessProfileAnalyticsSettings";
1
3
  export * from "./AnalyticsSettings";
2
4
  export * from "./EventAction";
@@ -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,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.8.46-preview",
4
+ "version": "7.8.48-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"