@omnia/fx-models 7.8.16-preview → 7.8.16
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/ActionHandler.d.ts +2 -1
- package/Constants.d.ts +9 -0
- package/Constants.js +11 -2
- package/Enums.d.ts +11 -3
- package/Enums.js +12 -3
- package/Exposes.d.ts +3 -0
- package/Exposes.js +3 -0
- package/FilterEngineStyles.d.ts +0 -1
- package/Layout.d.ts +3 -0
- package/LinkHandler/linktype/LinkTypeConfig.d.ts +4 -0
- package/ManifestIds.d.ts +12 -0
- package/ManifestIds.js +34 -1
- package/QueryFilter.d.ts +10 -7
- package/QueryFilter.js +9 -6
- package/README.md +2 -2
- package/Secrets.d.ts +5 -0
- package/Secrets.js +6 -0
- package/Tenant.d.ts +6 -1
- package/Tenant.js +4 -0
- package/aiengine/AIEngineApiKeyCredential.d.ts +4 -0
- package/aiengine/AIEngineApiKeyCredential.js +2 -0
- package/aiengine/AIEngineRAGSettings.d.ts +4 -0
- package/aiengine/AIEngineRAGSettings.js +2 -0
- package/aiengine/index.d.ts +2 -0
- package/aiengine/index.js +5 -0
- package/analytics/AnalyticsDimensionMappings.d.ts +10 -0
- package/analytics/AnalyticsDimensionMappings.js +8 -0
- package/analytics/BusinessProfileAnalyticsSettings.d.ts +13 -0
- package/analytics/BusinessProfileAnalyticsSettings.js +17 -0
- package/analytics/EventAction.d.ts +2 -1
- package/analytics/index.d.ts +2 -0
- package/analytics/index.js +2 -0
- package/azure-openai/settings/OpenAISettings.d.ts +3 -0
- package/filterbuilder/FilterBuilder.d.ts +40 -0
- package/filterbuilder/FilterBuilder.js +77 -0
- package/filterbuilder/FilterComponent.d.ts +23 -0
- package/filterbuilder/FilterComponent.js +27 -0
- package/filterbuilder/FilterOperatorBuilder.d.ts +67 -0
- package/filterbuilder/FilterOperatorBuilder.js +103 -0
- package/filterbuilder/helper/FilterHelper.d.ts +6 -0
- package/filterbuilder/helper/FilterHelper.js +13 -0
- package/filterbuilder/index.d.ts +5 -0
- package/filterbuilder/index.js +8 -0
- package/filterbuilder/transformers/FilterTransformer.d.ts +4 -0
- package/filterbuilder/transformers/FilterTransformer.js +2 -0
- package/filterbuilder/transformers/OmniaSearchFilterTransformer.d.ts +9 -0
- package/filterbuilder/transformers/OmniaSearchFilterTransformer.js +116 -0
- package/filterbuilder/transformers/index.d.ts +2 -0
- package/filterbuilder/transformers/index.js +5 -0
- package/filterengine/Shared.d.ts +1 -1
- package/identities/IdentityCreationRequest.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/Future.d.ts +8 -0
- package/internal-do-not-import-from-here/shared/models/Future.js +36 -0
- package/internal-do-not-import-from-here/shared/models/SharedConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/SharedConstants.js +1 -0
- package/media-picker/MediaPickerMedia.d.ts +3 -0
- package/media-picker/Providers/IMediaPostProcess.d.ts +4 -0
- package/media-picker/Providers/IMediaPostProcess.js +2 -0
- package/media-picker/Providers/MediaPickerProvider.d.ts +2 -0
- package/media-picker/Providers/MediaflowProvider.d.ts +2 -1
- package/media-picker/Providers/index.d.ts +1 -1
- package/media-picker/Providers/index.js +1 -1
- package/media-picker/index.d.ts +1 -0
- package/media-picker/index.js +1 -0
- package/media-picker/mediaflow/Mediaflow.d.ts +7 -0
- package/media-picker/mediaflow/Mediaflow.js +2 -0
- package/media-picker/mediaflow/index.d.ts +1 -0
- package/media-picker/mediaflow/index.js +4 -0
- package/mediaflow/MediaflowSettings.d.ts +0 -2
- package/omniasearch/IPagedSearchResult.d.ts +2 -0
- package/omniasearch/SearchPropertyFilter.d.ts +55 -0
- package/omniasearch/SearchPropertyFilter.js +16 -0
- package/omniasearch/SearchQuery.d.ts +1 -0
- package/omniasearch/SearchUserQuery.d.ts +1 -0
- package/omniasearch/index.d.ts +1 -0
- package/omniasearch/index.js +1 -0
- package/package.json +7 -9
- package/properties/IPropertyValueRenderer.d.ts +11 -0
- package/properties/PropertyValuePrimitiveConverter.d.ts +2 -1
- package/properties/definitions/PhoneNumberPropertyDefinition.d.ts +4 -0
- package/properties/definitions/TermSetPropertyDefinition.js +7 -5
- package/properties/values/BirthdayPropertyValue.js +1 -1
- package/properties/values/DatePropertyValue.js +2 -2
- package/properties/values/DateTimePropertyValue.js +1 -1
- package/richtext-editor-extensions/HeadingExtension.d.ts +5 -0
- package/semanticsearch/SemanticSearchQueryableProperty.d.ts +31 -0
- package/semanticsearch/SemanticSearchQueryableProperty.js +47 -0
- package/semanticsearch/SemanticSearchRequest.d.ts +2 -0
- package/semanticsearch/index.d.ts +1 -0
- package/semanticsearch/index.js +1 -0
- package/unsplash/UnsplashAuthenticationInfo.d.ts +4 -0
- package/unsplash/UnsplashAuthenticationInfo.js +2 -0
- package/unsplash/index.d.ts +1 -0
- package/unsplash/index.js +4 -0
- package/ux/MediaPickerApi.d.ts +2 -0
package/ActionHandler.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export interface ActionRegistration {
|
|
|
14
14
|
id: ActionHandlerRegistrationId;
|
|
15
15
|
title: string;
|
|
16
16
|
settingsElementName?: string;
|
|
17
|
+
hideInLimitedMode?: boolean;
|
|
17
18
|
}
|
|
18
19
|
export interface IActionHandlerSettingsComponent {
|
|
19
20
|
actionHandler: ActionHandler;
|
|
@@ -72,6 +73,6 @@ export interface IActionHandlerInstanceProperties<TSettings extends IActionHandl
|
|
|
72
73
|
}
|
|
73
74
|
export interface IActionHandlerInstance extends IActionHandlerInstanceProperties {
|
|
74
75
|
initialized(): void | Promise<void>;
|
|
75
|
-
triggered(renderingCallback: (elementName: string, themeTargetId?: string, domProps?: Object) => void): any;
|
|
76
|
+
triggered(renderingCallback: (elementName: string, themeTargetId?: string, domProps?: Object) => void, setFocusedElementCallback?: () => Promise<HTMLElement>): any;
|
|
76
77
|
dispose(): void;
|
|
77
78
|
}
|
package/Constants.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ export declare const Constants: {
|
|
|
78
78
|
openai: {
|
|
79
79
|
dallESettingsKey: string;
|
|
80
80
|
textCompletionSettingsKey: string;
|
|
81
|
+
deploymentNameSettingKey: string;
|
|
81
82
|
};
|
|
82
83
|
};
|
|
83
84
|
html: {
|
|
@@ -92,6 +93,8 @@ export declare const Constants: {
|
|
|
92
93
|
omniaContentFooter: string;
|
|
93
94
|
omniaLeftSidePanel: string;
|
|
94
95
|
omniaRightSidePanel: string;
|
|
96
|
+
mainHeading: string;
|
|
97
|
+
sharepointFooter: string;
|
|
95
98
|
};
|
|
96
99
|
};
|
|
97
100
|
themeTargetIds: {
|
|
@@ -163,6 +166,8 @@ export declare const Constants: {
|
|
|
163
166
|
legacyAppPermissions: Guid;
|
|
164
167
|
appOnlyReadAccessToSharePointTermstore: Guid;
|
|
165
168
|
provisionOmniaSearchUserData: Guid;
|
|
169
|
+
aiEngine: Guid;
|
|
170
|
+
extraIDAdditionalUserProperties: Guid;
|
|
166
171
|
};
|
|
167
172
|
app: {
|
|
168
173
|
tableName: string;
|
|
@@ -173,6 +178,7 @@ export declare const Constants: {
|
|
|
173
178
|
};
|
|
174
179
|
prefixTokens: {
|
|
175
180
|
appInstance: string;
|
|
181
|
+
user: string;
|
|
176
182
|
};
|
|
177
183
|
microsoftTeamsDeepLinkApi: {
|
|
178
184
|
chatBaseUrl: string;
|
|
@@ -242,4 +248,7 @@ export declare const Constants: {
|
|
|
242
248
|
systemLayout: {
|
|
243
249
|
settingKey: string;
|
|
244
250
|
};
|
|
251
|
+
aiEngine: {
|
|
252
|
+
semanticSearchEnterprisePropertyPrefix: string;
|
|
253
|
+
};
|
|
245
254
|
};
|
package/Constants.js
CHANGED
|
@@ -109,6 +109,7 @@ exports.Constants = {
|
|
|
109
109
|
openai: {
|
|
110
110
|
dallESettingsKey: "omnia.openai.dalle.settings",
|
|
111
111
|
textCompletionSettingsKey: "omnia.openai.textcompletion.settings",
|
|
112
|
+
deploymentNameSettingKey: "omnia.openai.deploymentname.settings",
|
|
112
113
|
}
|
|
113
114
|
},
|
|
114
115
|
html: {
|
|
@@ -122,7 +123,9 @@ exports.Constants = {
|
|
|
122
123
|
omniaContentBody: "omnia-content-body",
|
|
123
124
|
omniaContentFooter: "omnia-content-footer",
|
|
124
125
|
omniaLeftSidePanel: "omnia-left-side-panel",
|
|
125
|
-
omniaRightSidePanel: "omnia-right-side-panel"
|
|
126
|
+
omniaRightSidePanel: "omnia-right-side-panel",
|
|
127
|
+
mainHeading: "main-heading",
|
|
128
|
+
sharepointFooter: "omf-footer",
|
|
126
129
|
},
|
|
127
130
|
},
|
|
128
131
|
themeTargetIds: {
|
|
@@ -193,7 +196,9 @@ exports.Constants = {
|
|
|
193
196
|
legacyUserProfileCard: new models_1.Guid("01586ffc-5987-40d2-bf06-f97ab955a965"),
|
|
194
197
|
legacyAppPermissions: new models_1.Guid("36c6fe6a-d79e-4f87-9349-cff9d3e1ab71"),
|
|
195
198
|
appOnlyReadAccessToSharePointTermstore: new models_1.Guid("8095f802-38f0-426c-8d81-22cb22a2a019"),
|
|
196
|
-
provisionOmniaSearchUserData: new models_1.Guid("8fc1325d-4196-406e-8dca-ebb78824896f")
|
|
199
|
+
provisionOmniaSearchUserData: new models_1.Guid("8fc1325d-4196-406e-8dca-ebb78824896f"),
|
|
200
|
+
aiEngine: new models_1.Guid("f976ad6f-987f-44e6-973a-097d81f73fc7"),
|
|
201
|
+
extraIDAdditionalUserProperties: new models_1.Guid("8a878ffd-f4d5-4048-9ab1-107bf7109dd9")
|
|
197
202
|
},
|
|
198
203
|
app: {
|
|
199
204
|
tableName: "AppInstances",
|
|
@@ -204,6 +209,7 @@ exports.Constants = {
|
|
|
204
209
|
},
|
|
205
210
|
prefixTokens: {
|
|
206
211
|
appInstance: "AppInstance",
|
|
212
|
+
user: "User",
|
|
207
213
|
},
|
|
208
214
|
microsoftTeamsDeepLinkApi: {
|
|
209
215
|
chatBaseUrl: "https://teams.microsoft.com/l/chat/0/0?users=",
|
|
@@ -276,5 +282,8 @@ exports.Constants = {
|
|
|
276
282
|
},
|
|
277
283
|
systemLayout: {
|
|
278
284
|
settingKey: "omnia.system.layout"
|
|
285
|
+
},
|
|
286
|
+
aiEngine: {
|
|
287
|
+
semanticSearchEnterprisePropertyPrefix: "EnterpriseProperty_"
|
|
279
288
|
}
|
|
280
289
|
};
|
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,
|
|
@@ -504,7 +505,9 @@ export declare enum FeatureInstanceStatus {
|
|
|
504
505
|
Error = 4,
|
|
505
506
|
AdminConsentActivating = 5,
|
|
506
507
|
AdminConsentUpgrading = 6,
|
|
507
|
-
AdminConsentWaitingActivation = 7
|
|
508
|
+
AdminConsentWaitingActivation = 7,
|
|
509
|
+
WaitingForCloudEnsureInfrastructureActivating = 8,
|
|
510
|
+
WaitingForCloudEnsureInfrastructureUpgrading = 9
|
|
508
511
|
}
|
|
509
512
|
export declare enum ThemeType {
|
|
510
513
|
Light = "Light",
|
|
@@ -528,7 +531,8 @@ export declare enum StaticEndpoint {
|
|
|
528
531
|
MagicLinkSuccess = "/api/magiclink/success",
|
|
529
532
|
MagicLinkFailure = "/api/magiclink/failure",
|
|
530
533
|
MagicLink = "/api/magiclink",
|
|
531
|
-
SharepointServerLogin = "/spsignin"
|
|
534
|
+
SharepointServerLogin = "/spsignin",
|
|
535
|
+
NotFound = "/_system/404"
|
|
532
536
|
}
|
|
533
537
|
export declare enum QueueMessageStatus {
|
|
534
538
|
Unassigned = 0,
|
|
@@ -554,6 +558,10 @@ export declare enum TimeFormats {
|
|
|
554
558
|
hour24 = 1,
|
|
555
559
|
hour12 = 2
|
|
556
560
|
}
|
|
561
|
+
export declare enum FirstDayOfWeeks {
|
|
562
|
+
Monday = 1,
|
|
563
|
+
Sunday = 2
|
|
564
|
+
}
|
|
557
565
|
export declare enum PermissionRoles {
|
|
558
566
|
TenantAdmin = "67daa6ca-168e-458f-96c8-4162b77fc99f"
|
|
559
567
|
}
|
package/Enums.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.StatusFilter = exports.PersistentDiskTypes = exports.CookieKeys = exports.LocalServingMessageType = exports.DisplayBreakpointCodes = exports.OmniaMimeType = exports.IdentityUserIdTypeMatch = exports.OmniaClientRuntimes = exports.OmniaBackendRuntimes = exports.PropertyEditModeElementNameType = exports.DirectionRules = exports.MediaPickerEnums = exports.PropertyArchiveType = exports.ImageSources = exports.IconSizes = exports.BlockRenderingModes = exports.LayoutCanvasModes = exports.ChromeTypes = exports.LayoutItemActions = exports.LayoutEditorModes = exports.TabbedDisplayModes = exports.TabbedIconPositions = exports.Positions = exports.BorderPositions = exports.IconPositions = exports.TextAlignment = exports.LayoutItemTypes = exports.RadialGradientShapes = exports.LayoutDrawerTabs = exports.HorizontalAlignments = exports.BladeSizes = exports.ImageResolution = exports.ServiceLocatorUrlType = exports.AppInstanceAction = exports.VDataGridHeaderType = exports.VDataGridHeaderAlign = exports.ButtonSizes = exports.ButtonModes = exports.ButtonIconPosition = exports.ButtonTooltipPosition = void 0;
|
|
3
|
+
exports.TimePeriodTypes = exports.TargetUser = exports.RedirectRuleType = exports.MultilingualScopes = exports.OmniaRoleTypes = exports.TargetResolverTypes = exports.PermissionRoles = exports.FirstDayOfWeeks = exports.TimeFormats = exports.CompareBusinessProfilePathType = exports.StatusMessageOverlayType = exports.HttpStatusCode = exports.QueueMessageStatus = exports.StaticEndpoint = exports.ThemeType = exports.FeatureInstanceStatus = exports.RoleDefinitions = exports.Parameters = exports.ParamTypes = exports.PropertyIndexedType = exports.UserPickingType = exports.BoolFilter = exports.PrincipalTypes = exports.AppInstanceScopedQueryTypes = exports.AppInstanceStatus = exports.VideoRatio = exports.AdminNavigationBuiltInCategory = exports.AdminVisibility = exports.AuthenticationValidationStatuses = exports.IconSources = exports.IconTypes = exports.LocaleNames = exports.LanguageTags = exports.BundleTargetTypes = exports.ServerManifestTypes = exports.ClientManifestTypes = exports.RuleLogicalOperator = exports.ResourceEvaluators = exports.ConsoleStateStorageMessageTypes = exports.ConsoleMessageTypes = exports.LogLevels = exports.ManifestLoadStatus = exports.LogSources = exports.AppTemplatePermissionLevel = exports.SecurityAccessType = exports.SecurityIdentities = exports.SecurityRoleScopes = exports.SecurityProviderTypes = exports.BuiltInAppInstanceInternalNames = exports.BuiltInEnterprisePropertyInternalNames = void 0;
|
|
4
|
+
exports.StatusFilter = exports.PersistentDiskTypes = exports.CookieKeys = exports.LocalServingMessageType = exports.DisplayBreakpointCodes = exports.OmniaMimeType = exports.IdentityUserIdTypeMatch = exports.OmniaClientRuntimes = exports.OmniaBackendRuntimes = exports.PropertyEditModeElementNameType = exports.DirectionRules = exports.MediaPickerEnums = exports.PropertyArchiveType = exports.ImageSources = exports.IconSizes = exports.BlockRenderingModes = exports.LayoutCanvasModes = exports.ChromeTypes = exports.LayoutItemActions = exports.LayoutEditorModes = exports.TabbedDisplayModes = exports.TabbedIconPositions = exports.Positions = exports.BorderPositions = exports.IconPositions = exports.TextAlignment = exports.LayoutItemTypes = exports.RadialGradientShapes = exports.LayoutDrawerTabs = exports.HorizontalAlignments = exports.BladeSizes = exports.ImageResolution = exports.ServiceLocatorUrlType = exports.AppInstanceAction = exports.VDataGridHeaderType = exports.VDataGridHeaderAlign = exports.ButtonSizes = exports.ButtonModes = exports.ButtonIconPosition = exports.ButtonTooltipPosition = exports.RichTextModes = void 0;
|
|
5
5
|
var BuiltInEnterprisePropertyInternalNames;
|
|
6
6
|
(function (BuiltInEnterprisePropertyInternalNames) {
|
|
7
7
|
BuiltInEnterprisePropertyInternalNames["Title"] = "title";
|
|
@@ -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) {
|
|
@@ -413,6 +414,8 @@ var FeatureInstanceStatus;
|
|
|
413
414
|
FeatureInstanceStatus[FeatureInstanceStatus["AdminConsentActivating"] = 5] = "AdminConsentActivating";
|
|
414
415
|
FeatureInstanceStatus[FeatureInstanceStatus["AdminConsentUpgrading"] = 6] = "AdminConsentUpgrading";
|
|
415
416
|
FeatureInstanceStatus[FeatureInstanceStatus["AdminConsentWaitingActivation"] = 7] = "AdminConsentWaitingActivation";
|
|
417
|
+
FeatureInstanceStatus[FeatureInstanceStatus["WaitingForCloudEnsureInfrastructureActivating"] = 8] = "WaitingForCloudEnsureInfrastructureActivating";
|
|
418
|
+
FeatureInstanceStatus[FeatureInstanceStatus["WaitingForCloudEnsureInfrastructureUpgrading"] = 9] = "WaitingForCloudEnsureInfrastructureUpgrading";
|
|
416
419
|
})(FeatureInstanceStatus = exports.FeatureInstanceStatus || (exports.FeatureInstanceStatus = {}));
|
|
417
420
|
var ThemeType;
|
|
418
421
|
(function (ThemeType) {
|
|
@@ -440,6 +443,7 @@ var StaticEndpoint;
|
|
|
440
443
|
StaticEndpoint["MagicLink"] = "/api/magiclink";
|
|
441
444
|
// onprem only
|
|
442
445
|
StaticEndpoint["SharepointServerLogin"] = "/spsignin";
|
|
446
|
+
StaticEndpoint["NotFound"] = "/_system/404";
|
|
443
447
|
})(StaticEndpoint = exports.StaticEndpoint || (exports.StaticEndpoint = {}));
|
|
444
448
|
var QueueMessageStatus;
|
|
445
449
|
(function (QueueMessageStatus) {
|
|
@@ -470,6 +474,11 @@ var TimeFormats;
|
|
|
470
474
|
TimeFormats[TimeFormats["hour24"] = 1] = "hour24";
|
|
471
475
|
TimeFormats[TimeFormats["hour12"] = 2] = "hour12";
|
|
472
476
|
})(TimeFormats = exports.TimeFormats || (exports.TimeFormats = {}));
|
|
477
|
+
var FirstDayOfWeeks;
|
|
478
|
+
(function (FirstDayOfWeeks) {
|
|
479
|
+
FirstDayOfWeeks[FirstDayOfWeeks["Monday"] = 1] = "Monday";
|
|
480
|
+
FirstDayOfWeeks[FirstDayOfWeeks["Sunday"] = 2] = "Sunday";
|
|
481
|
+
})(FirstDayOfWeeks = exports.FirstDayOfWeeks || (exports.FirstDayOfWeeks = {}));
|
|
473
482
|
var PermissionRoles;
|
|
474
483
|
(function (PermissionRoles) {
|
|
475
484
|
PermissionRoles["TenantAdmin"] = "67daa6ca-168e-458f-96c8-4162b77fc99f";
|
|
@@ -766,7 +775,7 @@ var IdentityUserIdTypeMatch;
|
|
|
766
775
|
(function (IdentityUserIdTypeMatch) {
|
|
767
776
|
//Example: {Id: c:0\u002b.w|s-1-5-21-1111812947-3881384297-199475092-571, Entitype: 'SecGroup'}
|
|
768
777
|
IdentityUserIdTypeMatch["SPOnpremAdGroup"] = "c:0+";
|
|
769
|
-
//Example: { Id: i:0#.w|
|
|
778
|
+
//Example: { Id: i:0#.w|YOURDOMAIN\\administrator, EntityType: "User" }
|
|
770
779
|
IdentityUserIdTypeMatch["SPOnpremAdUser"] = "\\";
|
|
771
780
|
//Empty not yet use
|
|
772
781
|
IdentityUserIdTypeMatch["AzureAdGroup"] = "";
|
package/Exposes.d.ts
CHANGED
|
@@ -131,6 +131,9 @@ export * from "./linkstatus";
|
|
|
131
131
|
export * from "./statuscodelayout";
|
|
132
132
|
export * from "./analytics";
|
|
133
133
|
export * from "./semanticsearch";
|
|
134
|
+
export * from "./aiengine";
|
|
135
|
+
export * from "./filterbuilder";
|
|
136
|
+
export * from "./unsplash";
|
|
134
137
|
export * from "./FilePicker";
|
|
135
138
|
export * from "./FileIdentifier";
|
|
136
139
|
export * from "./UserAgent";
|
package/Exposes.js
CHANGED
|
@@ -143,6 +143,9 @@ tslib_1.__exportStar(require("./linkstatus"), exports);
|
|
|
143
143
|
tslib_1.__exportStar(require("./statuscodelayout"), exports);
|
|
144
144
|
tslib_1.__exportStar(require("./analytics"), exports);
|
|
145
145
|
tslib_1.__exportStar(require("./semanticsearch"), exports);
|
|
146
|
+
tslib_1.__exportStar(require("./aiengine"), exports);
|
|
147
|
+
tslib_1.__exportStar(require("./filterbuilder"), exports);
|
|
148
|
+
tslib_1.__exportStar(require("./unsplash"), exports);
|
|
146
149
|
//************************************************************************************ */
|
|
147
150
|
// End of folder exports
|
|
148
151
|
//************************************************************************************ */
|
package/FilterEngineStyles.d.ts
CHANGED
|
@@ -16,7 +16,6 @@ export declare const FilterEngineStyles: {
|
|
|
16
16
|
avatarOptionStyle: types.NestedCSSProperties;
|
|
17
17
|
searchBoxDefaultStyle: types.NestedCSSProperties;
|
|
18
18
|
searchValueBoxDefaultStyle: types.NestedCSSProperties;
|
|
19
|
-
searchTextColor: types.NestedCSSProperties;
|
|
20
19
|
treeNodeText: (isSelected: boolean) => types.NestedCSSProperties;
|
|
21
20
|
treeNodeResultCount: (theme: ITheming, isSelected: boolean) => types.NestedCSSProperties;
|
|
22
21
|
dialogContent: (theming: ITheming) => types.NestedCSSProperties;
|
package/Layout.d.ts
CHANGED
|
@@ -137,6 +137,7 @@ export interface SectionSettings extends LayoutItemSettings {
|
|
|
137
137
|
themeDefinition: ThemeDefinition;
|
|
138
138
|
hidden?: boolean;
|
|
139
139
|
disableLazyLoad?: boolean;
|
|
140
|
+
headerLevel?: GuidValue;
|
|
140
141
|
}
|
|
141
142
|
export interface ColumnedSectionSettings extends SectionSettings {
|
|
142
143
|
type: SectionTypes.Column;
|
|
@@ -187,6 +188,7 @@ export interface StepperSectionSettings extends SectionSettings {
|
|
|
187
188
|
nonLinear: boolean;
|
|
188
189
|
labelSettings: StepperLabelSettings;
|
|
189
190
|
scrollToTopOnSelectedStep: boolean;
|
|
191
|
+
paging?: boolean;
|
|
190
192
|
}
|
|
191
193
|
export interface StepperLabelSettings {
|
|
192
194
|
none: boolean;
|
|
@@ -238,6 +240,7 @@ export interface HeaderItemSettings {
|
|
|
238
240
|
titleSettings: BlockTitleSettings;
|
|
239
241
|
anchorName?: string;
|
|
240
242
|
scrollIntoViewDisabled: boolean;
|
|
243
|
+
headerLevel?: GuidValue;
|
|
241
244
|
}
|
|
242
245
|
export interface SpacingItemSettings {
|
|
243
246
|
paddingRight: number;
|
|
@@ -13,4 +13,8 @@ export interface LinkTypeConfig {
|
|
|
13
13
|
* If fallback is not available and the directive is used on `<a>` tag, the directive will use the `href` and `target` attribute instead.
|
|
14
14
|
*/
|
|
15
15
|
fallback?: () => void;
|
|
16
|
+
/**
|
|
17
|
+
* onClick function to call for registering analytics.
|
|
18
|
+
*/
|
|
19
|
+
onClick?: () => void;
|
|
16
20
|
}
|
package/ManifestIds.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/m
|
|
|
2
2
|
export declare class OmniaService {
|
|
3
3
|
static get Id(): Guid;
|
|
4
4
|
}
|
|
5
|
+
export declare class AnalyticService {
|
|
6
|
+
static get Id(): Guid;
|
|
7
|
+
}
|
|
5
8
|
export declare class OmniaGroupManifests {
|
|
6
9
|
static get FxConsole(): Guid;
|
|
7
10
|
static get Fx(): Guid;
|
|
@@ -57,6 +60,7 @@ export declare class OmniaResourceManifests {
|
|
|
57
60
|
static get FxSp(): Guid;
|
|
58
61
|
static get FxSpfx(): Guid;
|
|
59
62
|
static get SpfxCustomizer(): Guid;
|
|
63
|
+
static get SpfxFontFamilyBase(): Guid;
|
|
60
64
|
static get SpfxWebpart(): Guid;
|
|
61
65
|
static get SpfxStandaloneWebpart(): Guid;
|
|
62
66
|
static get FxUxVuetifySwitch(): Guid;
|
|
@@ -115,6 +119,7 @@ export declare class OmniaResourceManifests {
|
|
|
115
119
|
static get UserPropertiesProvider(): Guid;
|
|
116
120
|
static get UserPropertiesByMicrosoftGraphProvider(): Guid;
|
|
117
121
|
static get UserPropertiesBySharePointProvider(): Guid;
|
|
122
|
+
static get UserTokenProvider(): Guid;
|
|
118
123
|
static get FxUxPropertyDataSourceApi(): Guid;
|
|
119
124
|
static get IdentityPropertyApi(): Guid;
|
|
120
125
|
static get BuiltinExtendedPropertiesRegistration(): Guid;
|
|
@@ -136,6 +141,7 @@ export declare class OmniaResourceManifests {
|
|
|
136
141
|
static get DallELocalization(): Guid;
|
|
137
142
|
static get DallETenantFeature(): Guid;
|
|
138
143
|
static get DallEMediaProviderFeature(): Guid;
|
|
144
|
+
static get UnsplashTenantFeature(): Guid;
|
|
139
145
|
static get DefaultNotFoundLayout(): Guid;
|
|
140
146
|
static get DefaultUnauthorizedLayout(): Guid;
|
|
141
147
|
static get StatusCodeLayoutRegistration(): Guid;
|
|
@@ -205,6 +211,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
205
211
|
static get FxUxEnterprisePropertiesTaxonomyFieldDisplay(): Guid;
|
|
206
212
|
static get FxUxEnterprisePropertiesLanguageFieldDisplay(): Guid;
|
|
207
213
|
static get FxUxEnterprisePropertiesTagsPropertyDisplay(): Guid;
|
|
214
|
+
static get FxUxEnterprisePropertiesMediaPropertyDisplay(): Guid;
|
|
208
215
|
static get FxUxEnterprisePropertyPicker(): Guid;
|
|
209
216
|
static get FxUxEnterprisePropertySetPicker(): Guid;
|
|
210
217
|
static get FxUxEnterprisePropertyDataTypeProviderDisplay(): Guid;
|
|
@@ -212,9 +219,12 @@ export declare class OmniaWebComponentManifests {
|
|
|
212
219
|
static get FxUxLimitedLabel(): Guid;
|
|
213
220
|
static get FxSpTermGlossaryMapping(): Guid;
|
|
214
221
|
static get FxSpfxWpSetting(): Guid;
|
|
222
|
+
static get FxSpfxWpMainRenderer(): Guid;
|
|
223
|
+
static get FxSpfxWpSettingRenderer(): Guid;
|
|
215
224
|
static get FxSpfxWp(): Guid;
|
|
216
225
|
static get FxSpfxWpStandalone(): Guid;
|
|
217
226
|
static get FxSpfxWpStandaloneInstanceHandler(): Guid;
|
|
227
|
+
static get FxSpfxFontFamilyBase(): Guid;
|
|
218
228
|
static get FxUxSettingspane(): Guid;
|
|
219
229
|
static get FxUxRollupEmpty(): Guid;
|
|
220
230
|
static get FxUxRollupFilter(): Guid;
|
|
@@ -296,6 +306,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
296
306
|
static get FxUxLanguageFieldEdit(): Guid;
|
|
297
307
|
static get FxUxTagsPropertyEdit(): Guid;
|
|
298
308
|
static get FxUxDataFieldEdit(): Guid;
|
|
309
|
+
static get FxUxMediaFieldEdit(): Guid;
|
|
299
310
|
static get FxUxPersonFieldValueDefinition(): Guid;
|
|
300
311
|
static get FxUxRichTextFieldValueDefinition(): Guid;
|
|
301
312
|
static get FxUxBooleanFieldValueDefinition(): Guid;
|
|
@@ -437,6 +448,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
437
448
|
static get SharePointUserPropertyProviderEditor(): Guid;
|
|
438
449
|
static get FxUxConnectedTenantPicker(): Guid;
|
|
439
450
|
static get FxUxSidePanel(): Guid;
|
|
451
|
+
static get SpUxListTree(): Guid;
|
|
440
452
|
static get FxPhotoWallProvider(): Guid;
|
|
441
453
|
static get FxSliderDialogProvider(): Guid;
|
|
442
454
|
static get FxUxStatusCodeRenderer(): Guid;
|
package/ManifestIds.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OmniaWebComponentManifests = exports.OmniaResourceManifests = exports.OmniaGroupManifests = exports.OmniaService = void 0;
|
|
3
|
+
exports.OmniaWebComponentManifests = exports.OmniaResourceManifests = exports.OmniaGroupManifests = exports.AnalyticService = exports.OmniaService = void 0;
|
|
4
4
|
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
|
|
5
5
|
class OmniaService {
|
|
6
6
|
static get Id() {
|
|
@@ -8,6 +8,12 @@ class OmniaService {
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
exports.OmniaService = OmniaService;
|
|
11
|
+
class AnalyticService {
|
|
12
|
+
static get Id() {
|
|
13
|
+
return new models_1.Guid("a6a9556c-26c7-45e3-b21b-3f163c6bd9a4");
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.AnalyticService = AnalyticService;
|
|
11
17
|
class OmniaGroupManifests {
|
|
12
18
|
static get FxConsole() {
|
|
13
19
|
return new models_1.Guid("a7545e1c-9704-4a11-97df-25943ea19390");
|
|
@@ -199,6 +205,9 @@ class OmniaResourceManifests {
|
|
|
199
205
|
static get SpfxCustomizer() {
|
|
200
206
|
return new models_1.Guid("7de50830-f7dc-42e9-9f4c-1460fa3c6d90");
|
|
201
207
|
}
|
|
208
|
+
static get SpfxFontFamilyBase() {
|
|
209
|
+
return new models_1.Guid("3695ba2f-7351-4f81-8e73-8fc23de98cdb");
|
|
210
|
+
}
|
|
202
211
|
static get SpfxWebpart() {
|
|
203
212
|
return new models_1.Guid("65918982-f116-4cf8-9d13-a0d4cd5a01ce");
|
|
204
213
|
}
|
|
@@ -376,6 +385,9 @@ class OmniaResourceManifests {
|
|
|
376
385
|
static get UserPropertiesBySharePointProvider() {
|
|
377
386
|
return new models_1.Guid("9a37a669-cb46-443a-b833-9155755f6cc3");
|
|
378
387
|
}
|
|
388
|
+
static get UserTokenProvider() {
|
|
389
|
+
return new models_1.Guid("59ec874f-663b-4ad3-a13e-963c6dfec287");
|
|
390
|
+
}
|
|
379
391
|
static get FxUxPropertyDataSourceApi() {
|
|
380
392
|
return new models_1.Guid("8cf8a6b0-8ae5-4d6a-9e11-0f422243b885");
|
|
381
393
|
}
|
|
@@ -437,6 +449,9 @@ class OmniaResourceManifests {
|
|
|
437
449
|
static get DallEMediaProviderFeature() {
|
|
438
450
|
return new models_1.Guid("c2e130a6-ee72-4e74-b266-a55d94a920ed");
|
|
439
451
|
}
|
|
452
|
+
static get UnsplashTenantFeature() {
|
|
453
|
+
return new models_1.Guid("5e20e721-09ff-46ce-9e58-ad911bb47017");
|
|
454
|
+
}
|
|
440
455
|
static get DefaultNotFoundLayout() {
|
|
441
456
|
return new models_1.Guid("02505707-5d3e-4b29-affd-159dad0c9060");
|
|
442
457
|
}
|
|
@@ -631,6 +646,9 @@ class OmniaWebComponentManifests {
|
|
|
631
646
|
static get FxUxEnterprisePropertiesTagsPropertyDisplay() {
|
|
632
647
|
return new models_1.Guid("1cb9cb57-345b-41c3-bae6-6e9bab8cf454");
|
|
633
648
|
}
|
|
649
|
+
static get FxUxEnterprisePropertiesMediaPropertyDisplay() {
|
|
650
|
+
return new models_1.Guid("3ba46b06-c2cd-44cd-a06e-2762527b498d");
|
|
651
|
+
}
|
|
634
652
|
static get FxUxEnterprisePropertyPicker() {
|
|
635
653
|
return new models_1.Guid("b94ea090-8c7f-4610-85de-9d21a61e0826");
|
|
636
654
|
}
|
|
@@ -652,6 +670,12 @@ class OmniaWebComponentManifests {
|
|
|
652
670
|
static get FxSpfxWpSetting() {
|
|
653
671
|
return new models_1.Guid("5057354b-14bb-430e-854a-22e21d9ab7af");
|
|
654
672
|
}
|
|
673
|
+
static get FxSpfxWpMainRenderer() {
|
|
674
|
+
return new models_1.Guid("455c9d7a-225d-435f-a8a3-21d7b39539f6");
|
|
675
|
+
}
|
|
676
|
+
static get FxSpfxWpSettingRenderer() {
|
|
677
|
+
return new models_1.Guid("d291917a-0dd4-4ad0-a963-70e8f53be808");
|
|
678
|
+
}
|
|
655
679
|
static get FxSpfxWp() {
|
|
656
680
|
return new models_1.Guid("a7105d99-6040-472b-8d55-819f99a434db");
|
|
657
681
|
}
|
|
@@ -661,6 +685,9 @@ class OmniaWebComponentManifests {
|
|
|
661
685
|
static get FxSpfxWpStandaloneInstanceHandler() {
|
|
662
686
|
return new models_1.Guid("d51665b2-c5e2-4861-ae33-dbba4418dcde");
|
|
663
687
|
}
|
|
688
|
+
static get FxSpfxFontFamilyBase() {
|
|
689
|
+
return new models_1.Guid("aefced1b-8e90-47d6-8767-839c52272b70");
|
|
690
|
+
}
|
|
664
691
|
static get FxUxSettingspane() {
|
|
665
692
|
return new models_1.Guid("c0de4753-b9fe-4004-b0f4-e6b6b91730ab");
|
|
666
693
|
}
|
|
@@ -911,6 +938,9 @@ class OmniaWebComponentManifests {
|
|
|
911
938
|
static get FxUxDataFieldEdit() {
|
|
912
939
|
return new models_1.Guid("bb27e780-de41-442f-a9ca-b8cef6c71100");
|
|
913
940
|
}
|
|
941
|
+
static get FxUxMediaFieldEdit() {
|
|
942
|
+
return new models_1.Guid("2d82992f-4468-40d8-b00b-1909b64dd625");
|
|
943
|
+
}
|
|
914
944
|
static get FxUxPersonFieldValueDefinition() {
|
|
915
945
|
return new models_1.Guid("523800d7-1528-4000-995f-706291edf85f");
|
|
916
946
|
}
|
|
@@ -1332,6 +1362,9 @@ class OmniaWebComponentManifests {
|
|
|
1332
1362
|
static get FxUxSidePanel() {
|
|
1333
1363
|
return new models_1.Guid("539d199f-6993-4c10-a963-f142e4f3056d");
|
|
1334
1364
|
}
|
|
1365
|
+
static get SpUxListTree() {
|
|
1366
|
+
return new models_1.Guid("4584d438-a747-48ab-9ae5-f9f4f431673f");
|
|
1367
|
+
}
|
|
1335
1368
|
static get FxPhotoWallProvider() { return new models_1.Guid("12D1BCA1-D50B-4186-ACD5-0014584389C9"); }
|
|
1336
1369
|
static get FxSliderDialogProvider() { return new models_1.Guid("AC5F615D-F975-43CF-97B3-AE930BA113D0"); }
|
|
1337
1370
|
static get FxUxStatusCodeRenderer() { return new models_1.Guid("5aaaefb5-01d6-4fe5-9da8-b779a54c0a55"); }
|
package/QueryFilter.d.ts
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
export declare enum FilterOperator {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
Equal = 1,
|
|
3
|
+
NotEqual = 2,
|
|
4
|
+
LessThan = 3,
|
|
5
|
+
GreaterThan = 4,
|
|
6
|
+
LessThanOrEqual = 5,
|
|
7
|
+
GreaterThanOrEqual = 6,
|
|
8
8
|
In = 7,
|
|
9
9
|
Like = 8,
|
|
10
|
-
NotLike = 9
|
|
10
|
+
NotLike = 9,
|
|
11
|
+
BitwiseAnd = 10,
|
|
12
|
+
BitwiseNotAnd = 11,
|
|
13
|
+
NotIn = 12
|
|
11
14
|
}
|
|
12
15
|
export declare enum FilterLogicalOperator {
|
|
13
16
|
And = 1,
|
package/QueryFilter.js
CHANGED
|
@@ -3,15 +3,18 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.FilterLogicalOperator = exports.FilterOperator = void 0;
|
|
4
4
|
var FilterOperator;
|
|
5
5
|
(function (FilterOperator) {
|
|
6
|
-
FilterOperator[FilterOperator["
|
|
7
|
-
FilterOperator[FilterOperator["
|
|
8
|
-
FilterOperator[FilterOperator["
|
|
9
|
-
FilterOperator[FilterOperator["
|
|
10
|
-
FilterOperator[FilterOperator["
|
|
11
|
-
FilterOperator[FilterOperator["
|
|
6
|
+
FilterOperator[FilterOperator["Equal"] = 1] = "Equal";
|
|
7
|
+
FilterOperator[FilterOperator["NotEqual"] = 2] = "NotEqual";
|
|
8
|
+
FilterOperator[FilterOperator["LessThan"] = 3] = "LessThan";
|
|
9
|
+
FilterOperator[FilterOperator["GreaterThan"] = 4] = "GreaterThan";
|
|
10
|
+
FilterOperator[FilterOperator["LessThanOrEqual"] = 5] = "LessThanOrEqual";
|
|
11
|
+
FilterOperator[FilterOperator["GreaterThanOrEqual"] = 6] = "GreaterThanOrEqual";
|
|
12
12
|
FilterOperator[FilterOperator["In"] = 7] = "In";
|
|
13
13
|
FilterOperator[FilterOperator["Like"] = 8] = "Like";
|
|
14
14
|
FilterOperator[FilterOperator["NotLike"] = 9] = "NotLike";
|
|
15
|
+
FilterOperator[FilterOperator["BitwiseAnd"] = 10] = "BitwiseAnd";
|
|
16
|
+
FilterOperator[FilterOperator["BitwiseNotAnd"] = 11] = "BitwiseNotAnd";
|
|
17
|
+
FilterOperator[FilterOperator["NotIn"] = 12] = "NotIn";
|
|
15
18
|
})(FilterOperator = exports.FilterOperator || (exports.FilterOperator = {}));
|
|
16
19
|
var FilterLogicalOperator;
|
|
17
20
|
(function (FilterLogicalOperator) {
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Omnia Fx Tooling
|
|
2
2
|
|
|
3
|
-
Omnia Fx Tooling is a product from
|
|
3
|
+
Omnia Fx Tooling is a product from Omnia Digital Workplace AB. In order to use Omnia Fx you need a product license for one of the following products:
|
|
4
4
|
|
|
5
5
|
### Documentation
|
|
6
|
-
https://github.com/
|
|
6
|
+
https://github.com/omniaintranet/OmniaDocs
|
package/Secrets.d.ts
CHANGED
|
@@ -37,3 +37,8 @@ export interface SecretField {
|
|
|
37
37
|
export interface SecretForm {
|
|
38
38
|
fields: SecretField[];
|
|
39
39
|
}
|
|
40
|
+
export declare const UnsplashSettingsKey = "omnia-unsplash-configuration-secret";
|
|
41
|
+
export declare const UnsplashSecretForm: {
|
|
42
|
+
readonly applicationId: "applicationid";
|
|
43
|
+
readonly clientIdKey: "clientidkey";
|
|
44
|
+
};
|
package/Secrets.js
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UnsplashSecretForm = exports.UnsplashSettingsKey = void 0;
|
|
4
|
+
exports.UnsplashSettingsKey = "omnia-unsplash-configuration-secret";
|
|
5
|
+
exports.UnsplashSecretForm = {
|
|
6
|
+
applicationId: "applicationid",
|
|
7
|
+
clientIdKey: "clientidkey"
|
|
8
|
+
};
|
package/Tenant.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OmniaNamedModel, IOmniaPropertyBag } from "./NamedProperty";
|
|
2
2
|
import { TenantIdentifier } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
|
3
|
-
import { TimeFormats } from "./Enums";
|
|
3
|
+
import { FirstDayOfWeeks, TimeFormats } from "./Enums";
|
|
4
4
|
import { LanguageSettings } from "./Language";
|
|
5
5
|
import { MultilingualString } from "./MultilingualString";
|
|
6
6
|
export interface ITenant extends TenantIdentifier {
|
|
@@ -16,6 +16,7 @@ export declare class TenantRegionalSettings extends TenantProperty {
|
|
|
16
16
|
constructor();
|
|
17
17
|
dateFormat: string;
|
|
18
18
|
timeFormat: TimeFormats;
|
|
19
|
+
firstDayOfWeek: FirstDayOfWeeks;
|
|
19
20
|
}
|
|
20
21
|
export declare class TenantLanguageSettings extends TenantProperty {
|
|
21
22
|
languages: Array<LanguageSettings>;
|
|
@@ -37,7 +38,11 @@ export declare class TenantInfoSettings extends TenantProperty {
|
|
|
37
38
|
constructor();
|
|
38
39
|
}
|
|
39
40
|
export declare class TenantAuthenticationSettings extends TenantProperty {
|
|
41
|
+
static DefaultOmniaTokenExpiredHours: number;
|
|
42
|
+
static MinOmniaTokenExpiredHours: number;
|
|
43
|
+
static MaxOmniaTokenExpiredHours: number;
|
|
40
44
|
enableITPCompatibility: boolean;
|
|
45
|
+
omniaTokenExpiredHours: number;
|
|
41
46
|
constructor();
|
|
42
47
|
}
|
|
43
48
|
export declare class TenantPeopleInformation extends TenantProperty {
|
package/Tenant.js
CHANGED
|
@@ -44,9 +44,13 @@ exports.TenantInfoSettings = TenantInfoSettings;
|
|
|
44
44
|
class TenantAuthenticationSettings extends TenantProperty {
|
|
45
45
|
constructor() {
|
|
46
46
|
super(ManifestIds_1.OmniaService.Id, "tenantauthentication");
|
|
47
|
+
this.omniaTokenExpiredHours = TenantAuthenticationSettings.DefaultOmniaTokenExpiredHours;
|
|
47
48
|
}
|
|
48
49
|
}
|
|
49
50
|
exports.TenantAuthenticationSettings = TenantAuthenticationSettings;
|
|
51
|
+
TenantAuthenticationSettings.DefaultOmniaTokenExpiredHours = 24;
|
|
52
|
+
TenantAuthenticationSettings.MinOmniaTokenExpiredHours = 1;
|
|
53
|
+
TenantAuthenticationSettings.MaxOmniaTokenExpiredHours = 96;
|
|
50
54
|
class TenantPeopleInformation extends TenantProperty {
|
|
51
55
|
constructor() {
|
|
52
56
|
super(ManifestIds_1.OmniaService.Id, "peopleinformation");
|
|
@@ -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,13 @@
|
|
|
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
|
+
static checkIfAnalyticsSwitchToDisabled: (currenttSetting: BusinessProfileAnalyticsSettings, targetSetting: BusinessProfileAnalyticsSettings) => boolean;
|
|
12
|
+
static checkIfAnalyticsSwitchToEnabled: (currenttSetting: BusinessProfileAnalyticsSettings, targetSetting: BusinessProfileAnalyticsSettings) => boolean;
|
|
13
|
+
}
|