@omnia/fx-models 7.7.93-preview → 7.8.0
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 +9 -2
- package/Enums.js +11 -3
- package/Exposes.d.ts +5 -0
- package/Exposes.js +5 -0
- package/FilterEngineStyles.d.ts +0 -1
- package/LinkHandler/linktype/LinkTypeConfig.d.ts +4 -0
- package/ManifestIds.d.ts +17 -0
- package/ManifestIds.js +47 -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/AnalyticsSettings.d.ts +8 -0
- package/analytics/AnalyticsSettings.js +2 -0
- package/analytics/BusinessProfileAnalyticsSettings.d.ts +13 -0
- package/analytics/BusinessProfileAnalyticsSettings.js +17 -0
- package/analytics/EventAction.d.ts +6 -0
- package/analytics/EventAction.js +2 -0
- package/analytics/index.d.ts +4 -0
- package/analytics/index.js +7 -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/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/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/UnsplashProvider.d.ts +18 -0
- package/media-picker/Providers/UnsplashProvider.js +25 -0
- package/media-picker/Providers/index.d.ts +1 -0
- package/media-picker/Providers/index.js +1 -0
- 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/semanticsearch/SemanticSearchQueryableProperty.d.ts +31 -0
- package/semanticsearch/SemanticSearchQueryableProperty.js +47 -0
- package/semanticsearch/SemanticSearchRequest.d.ts +5 -0
- package/semanticsearch/SemanticSearchRequest.js +2 -0
- package/semanticsearch/SemanticSearchResponse.d.ts +25 -0
- package/semanticsearch/SemanticSearchResponse.js +10 -0
- package/semanticsearch/index.d.ts +3 -0
- package/semanticsearch/index.js +6 -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
|
@@ -50,6 +50,7 @@ export declare const Constants: {
|
|
|
50
50
|
microsoftStream: Guid;
|
|
51
51
|
dalle: Guid;
|
|
52
52
|
mediaflow: Guid;
|
|
53
|
+
unsplash: Guid;
|
|
53
54
|
};
|
|
54
55
|
};
|
|
55
56
|
mediaGallery: {
|
|
@@ -77,6 +78,7 @@ export declare const Constants: {
|
|
|
77
78
|
openai: {
|
|
78
79
|
dallESettingsKey: string;
|
|
79
80
|
textCompletionSettingsKey: string;
|
|
81
|
+
deploymentNameSettingKey: string;
|
|
80
82
|
};
|
|
81
83
|
};
|
|
82
84
|
html: {
|
|
@@ -91,6 +93,8 @@ export declare const Constants: {
|
|
|
91
93
|
omniaContentFooter: string;
|
|
92
94
|
omniaLeftSidePanel: string;
|
|
93
95
|
omniaRightSidePanel: string;
|
|
96
|
+
mainHeading: string;
|
|
97
|
+
sharepointFooter: string;
|
|
94
98
|
};
|
|
95
99
|
};
|
|
96
100
|
themeTargetIds: {
|
|
@@ -162,6 +166,7 @@ export declare const Constants: {
|
|
|
162
166
|
legacyAppPermissions: Guid;
|
|
163
167
|
appOnlyReadAccessToSharePointTermstore: Guid;
|
|
164
168
|
provisionOmniaSearchUserData: Guid;
|
|
169
|
+
aiEngine: Guid;
|
|
165
170
|
};
|
|
166
171
|
app: {
|
|
167
172
|
tableName: string;
|
|
@@ -172,6 +177,7 @@ export declare const Constants: {
|
|
|
172
177
|
};
|
|
173
178
|
prefixTokens: {
|
|
174
179
|
appInstance: string;
|
|
180
|
+
user: string;
|
|
175
181
|
};
|
|
176
182
|
microsoftTeamsDeepLinkApi: {
|
|
177
183
|
chatBaseUrl: string;
|
|
@@ -241,4 +247,7 @@ export declare const Constants: {
|
|
|
241
247
|
systemLayout: {
|
|
242
248
|
settingKey: string;
|
|
243
249
|
};
|
|
250
|
+
aiEngine: {
|
|
251
|
+
semanticSearchEnterprisePropertyPrefix: string;
|
|
252
|
+
};
|
|
244
253
|
};
|
package/Constants.js
CHANGED
|
@@ -81,6 +81,7 @@ exports.Constants = {
|
|
|
81
81
|
microsoftStream: new models_1.Guid("6b1abf7d-01f1-4168-8319-4f53043b5f16"),
|
|
82
82
|
dalle: new models_1.Guid("69805036-0D70-421B-8B81-217978BB47A4"),
|
|
83
83
|
mediaflow: new models_1.Guid("F3078399-C3B6-457D-8C2F-A4C8C39B5F27"),
|
|
84
|
+
unsplash: new models_1.Guid("be222505-c2c4-4ec8-8462-a7ad9df4d440"),
|
|
84
85
|
},
|
|
85
86
|
},
|
|
86
87
|
mediaGallery: {
|
|
@@ -108,6 +109,7 @@ exports.Constants = {
|
|
|
108
109
|
openai: {
|
|
109
110
|
dallESettingsKey: "omnia.openai.dalle.settings",
|
|
110
111
|
textCompletionSettingsKey: "omnia.openai.textcompletion.settings",
|
|
112
|
+
deploymentNameSettingKey: "omnia.openai.deploymentname.settings",
|
|
111
113
|
}
|
|
112
114
|
},
|
|
113
115
|
html: {
|
|
@@ -121,7 +123,9 @@ exports.Constants = {
|
|
|
121
123
|
omniaContentBody: "omnia-content-body",
|
|
122
124
|
omniaContentFooter: "omnia-content-footer",
|
|
123
125
|
omniaLeftSidePanel: "omnia-left-side-panel",
|
|
124
|
-
omniaRightSidePanel: "omnia-right-side-panel"
|
|
126
|
+
omniaRightSidePanel: "omnia-right-side-panel",
|
|
127
|
+
mainHeading: "main-heading",
|
|
128
|
+
sharepointFooter: "omf-footer",
|
|
125
129
|
},
|
|
126
130
|
},
|
|
127
131
|
themeTargetIds: {
|
|
@@ -192,7 +196,8 @@ exports.Constants = {
|
|
|
192
196
|
legacyUserProfileCard: new models_1.Guid("01586ffc-5987-40d2-bf06-f97ab955a965"),
|
|
193
197
|
legacyAppPermissions: new models_1.Guid("36c6fe6a-d79e-4f87-9349-cff9d3e1ab71"),
|
|
194
198
|
appOnlyReadAccessToSharePointTermstore: new models_1.Guid("8095f802-38f0-426c-8d81-22cb22a2a019"),
|
|
195
|
-
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")
|
|
196
201
|
},
|
|
197
202
|
app: {
|
|
198
203
|
tableName: "AppInstances",
|
|
@@ -203,6 +208,7 @@ exports.Constants = {
|
|
|
203
208
|
},
|
|
204
209
|
prefixTokens: {
|
|
205
210
|
appInstance: "AppInstance",
|
|
211
|
+
user: "User",
|
|
206
212
|
},
|
|
207
213
|
microsoftTeamsDeepLinkApi: {
|
|
208
214
|
chatBaseUrl: "https://teams.microsoft.com/l/chat/0/0?users=",
|
|
@@ -275,5 +281,8 @@ exports.Constants = {
|
|
|
275
281
|
},
|
|
276
282
|
systemLayout: {
|
|
277
283
|
settingKey: "omnia.system.layout"
|
|
284
|
+
},
|
|
285
|
+
aiEngine: {
|
|
286
|
+
semanticSearchEnterprisePropertyPrefix: "EnterpriseProperty_"
|
|
278
287
|
}
|
|
279
288
|
};
|
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",
|
|
@@ -555,6 +558,10 @@ export declare enum TimeFormats {
|
|
|
555
558
|
hour24 = 1,
|
|
556
559
|
hour12 = 2
|
|
557
560
|
}
|
|
561
|
+
export declare enum FirstDayOfWeeks {
|
|
562
|
+
Monday = 1,
|
|
563
|
+
Sunday = 2
|
|
564
|
+
}
|
|
558
565
|
export declare enum PermissionRoles {
|
|
559
566
|
TenantAdmin = "67daa6ca-168e-458f-96c8-4162b77fc99f"
|
|
560
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) {
|
|
@@ -471,6 +474,11 @@ var TimeFormats;
|
|
|
471
474
|
TimeFormats[TimeFormats["hour24"] = 1] = "hour24";
|
|
472
475
|
TimeFormats[TimeFormats["hour12"] = 2] = "hour12";
|
|
473
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 = {}));
|
|
474
482
|
var PermissionRoles;
|
|
475
483
|
(function (PermissionRoles) {
|
|
476
484
|
PermissionRoles["TenantAdmin"] = "67daa6ca-168e-458f-96c8-4162b77fc99f";
|
|
@@ -767,7 +775,7 @@ var IdentityUserIdTypeMatch;
|
|
|
767
775
|
(function (IdentityUserIdTypeMatch) {
|
|
768
776
|
//Example: {Id: c:0\u002b.w|s-1-5-21-1111812947-3881384297-199475092-571, Entitype: 'SecGroup'}
|
|
769
777
|
IdentityUserIdTypeMatch["SPOnpremAdGroup"] = "c:0+";
|
|
770
|
-
//Example: { Id: i:0#.w|
|
|
778
|
+
//Example: { Id: i:0#.w|YOURDOMAIN\\administrator, EntityType: "User" }
|
|
771
779
|
IdentityUserIdTypeMatch["SPOnpremAdUser"] = "\\";
|
|
772
780
|
//Empty not yet use
|
|
773
781
|
IdentityUserIdTypeMatch["AzureAdGroup"] = "";
|
package/Exposes.d.ts
CHANGED
|
@@ -129,6 +129,11 @@ export * from "./authentication";
|
|
|
129
129
|
export * from "./bulkimportusers";
|
|
130
130
|
export * from "./linkstatus";
|
|
131
131
|
export * from "./statuscodelayout";
|
|
132
|
+
export * from "./analytics";
|
|
133
|
+
export * from "./semanticsearch";
|
|
134
|
+
export * from "./aiengine";
|
|
135
|
+
export * from "./filterbuilder";
|
|
136
|
+
export * from "./unsplash";
|
|
132
137
|
export * from "./FilePicker";
|
|
133
138
|
export * from "./FileIdentifier";
|
|
134
139
|
export * from "./UserAgent";
|
package/Exposes.js
CHANGED
|
@@ -141,6 +141,11 @@ tslib_1.__exportStar(require("./authentication"), exports);
|
|
|
141
141
|
tslib_1.__exportStar(require("./bulkimportusers"), exports);
|
|
142
142
|
tslib_1.__exportStar(require("./linkstatus"), exports);
|
|
143
143
|
tslib_1.__exportStar(require("./statuscodelayout"), exports);
|
|
144
|
+
tslib_1.__exportStar(require("./analytics"), exports);
|
|
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);
|
|
144
149
|
//************************************************************************************ */
|
|
145
150
|
// End of folder exports
|
|
146
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;
|
|
@@ -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,7 +60,9 @@ 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;
|
|
65
|
+
static get SpfxStandaloneWebpart(): Guid;
|
|
61
66
|
static get FxUxVuetifySwitch(): Guid;
|
|
62
67
|
static get FxUx(): Guid;
|
|
63
68
|
static get FxUxVuetifyAvatar(): Guid;
|
|
@@ -114,6 +119,7 @@ export declare class OmniaResourceManifests {
|
|
|
114
119
|
static get UserPropertiesProvider(): Guid;
|
|
115
120
|
static get UserPropertiesByMicrosoftGraphProvider(): Guid;
|
|
116
121
|
static get UserPropertiesBySharePointProvider(): Guid;
|
|
122
|
+
static get UserTokenProvider(): Guid;
|
|
117
123
|
static get FxUxPropertyDataSourceApi(): Guid;
|
|
118
124
|
static get IdentityPropertyApi(): Guid;
|
|
119
125
|
static get BuiltinExtendedPropertiesRegistration(): Guid;
|
|
@@ -135,6 +141,7 @@ export declare class OmniaResourceManifests {
|
|
|
135
141
|
static get DallELocalization(): Guid;
|
|
136
142
|
static get DallETenantFeature(): Guid;
|
|
137
143
|
static get DallEMediaProviderFeature(): Guid;
|
|
144
|
+
static get UnsplashTenantFeature(): Guid;
|
|
138
145
|
static get DefaultNotFoundLayout(): Guid;
|
|
139
146
|
static get DefaultUnauthorizedLayout(): Guid;
|
|
140
147
|
static get StatusCodeLayoutRegistration(): Guid;
|
|
@@ -204,6 +211,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
204
211
|
static get FxUxEnterprisePropertiesTaxonomyFieldDisplay(): Guid;
|
|
205
212
|
static get FxUxEnterprisePropertiesLanguageFieldDisplay(): Guid;
|
|
206
213
|
static get FxUxEnterprisePropertiesTagsPropertyDisplay(): Guid;
|
|
214
|
+
static get FxUxEnterprisePropertiesMediaPropertyDisplay(): Guid;
|
|
207
215
|
static get FxUxEnterprisePropertyPicker(): Guid;
|
|
208
216
|
static get FxUxEnterprisePropertySetPicker(): Guid;
|
|
209
217
|
static get FxUxEnterprisePropertyDataTypeProviderDisplay(): Guid;
|
|
@@ -211,7 +219,12 @@ export declare class OmniaWebComponentManifests {
|
|
|
211
219
|
static get FxUxLimitedLabel(): Guid;
|
|
212
220
|
static get FxSpTermGlossaryMapping(): Guid;
|
|
213
221
|
static get FxSpfxWpSetting(): Guid;
|
|
222
|
+
static get FxSpfxWpMainRenderer(): Guid;
|
|
223
|
+
static get FxSpfxWpSettingRenderer(): Guid;
|
|
214
224
|
static get FxSpfxWp(): Guid;
|
|
225
|
+
static get FxSpfxWpStandalone(): Guid;
|
|
226
|
+
static get FxSpfxWpStandaloneInstanceHandler(): Guid;
|
|
227
|
+
static get FxSpfxFontFamilyBase(): Guid;
|
|
215
228
|
static get FxUxSettingspane(): Guid;
|
|
216
229
|
static get FxUxRollupEmpty(): Guid;
|
|
217
230
|
static get FxUxRollupFilter(): Guid;
|
|
@@ -224,6 +237,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
224
237
|
static get FxUxMediapickerVideo(): Guid;
|
|
225
238
|
static get FxUxImageGrid(): Guid;
|
|
226
239
|
static get FxUxPexelProvider(): Guid;
|
|
240
|
+
static get FxUxUnsplashProvider(): Guid;
|
|
227
241
|
static get FxUxMediaflowProvider(): Guid;
|
|
228
242
|
static get FxUxMediaflowProviderVideoPlayer(): Guid;
|
|
229
243
|
static get FxUxMyComputerProvider(): Guid;
|
|
@@ -292,6 +306,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
292
306
|
static get FxUxLanguageFieldEdit(): Guid;
|
|
293
307
|
static get FxUxTagsPropertyEdit(): Guid;
|
|
294
308
|
static get FxUxDataFieldEdit(): Guid;
|
|
309
|
+
static get FxUxMediaFieldEdit(): Guid;
|
|
295
310
|
static get FxUxPersonFieldValueDefinition(): Guid;
|
|
296
311
|
static get FxUxRichTextFieldValueDefinition(): Guid;
|
|
297
312
|
static get FxUxBooleanFieldValueDefinition(): Guid;
|
|
@@ -433,6 +448,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
433
448
|
static get SharePointUserPropertyProviderEditor(): Guid;
|
|
434
449
|
static get FxUxConnectedTenantPicker(): Guid;
|
|
435
450
|
static get FxUxSidePanel(): Guid;
|
|
451
|
+
static get SpUxListTree(): Guid;
|
|
436
452
|
static get FxPhotoWallProvider(): Guid;
|
|
437
453
|
static get FxSliderDialogProvider(): Guid;
|
|
438
454
|
static get FxUxStatusCodeRenderer(): Guid;
|
|
@@ -440,4 +456,5 @@ export declare class OmniaWebComponentManifests {
|
|
|
440
456
|
static get DateTimePropertyEditor(): Guid;
|
|
441
457
|
static get DateTimePropertyConfiguration(): Guid;
|
|
442
458
|
static get BirthdayPropertyConfiguration(): Guid;
|
|
459
|
+
static get AnalyticsSettings(): Guid;
|
|
443
460
|
}
|
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,9 +205,15 @@ 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
|
}
|
|
214
|
+
static get SpfxStandaloneWebpart() {
|
|
215
|
+
return new models_1.Guid("a84eb0fb-0db9-4d16-a678-25b59aeb1248");
|
|
216
|
+
}
|
|
205
217
|
static get FxUxVuetifySwitch() {
|
|
206
218
|
return new models_1.Guid("81d8f551-1b9f-4f75-90c3-2fe5f25e4015");
|
|
207
219
|
}
|
|
@@ -373,6 +385,9 @@ class OmniaResourceManifests {
|
|
|
373
385
|
static get UserPropertiesBySharePointProvider() {
|
|
374
386
|
return new models_1.Guid("9a37a669-cb46-443a-b833-9155755f6cc3");
|
|
375
387
|
}
|
|
388
|
+
static get UserTokenProvider() {
|
|
389
|
+
return new models_1.Guid("59ec874f-663b-4ad3-a13e-963c6dfec287");
|
|
390
|
+
}
|
|
376
391
|
static get FxUxPropertyDataSourceApi() {
|
|
377
392
|
return new models_1.Guid("8cf8a6b0-8ae5-4d6a-9e11-0f422243b885");
|
|
378
393
|
}
|
|
@@ -434,6 +449,9 @@ class OmniaResourceManifests {
|
|
|
434
449
|
static get DallEMediaProviderFeature() {
|
|
435
450
|
return new models_1.Guid("c2e130a6-ee72-4e74-b266-a55d94a920ed");
|
|
436
451
|
}
|
|
452
|
+
static get UnsplashTenantFeature() {
|
|
453
|
+
return new models_1.Guid("5e20e721-09ff-46ce-9e58-ad911bb47017");
|
|
454
|
+
}
|
|
437
455
|
static get DefaultNotFoundLayout() {
|
|
438
456
|
return new models_1.Guid("02505707-5d3e-4b29-affd-159dad0c9060");
|
|
439
457
|
}
|
|
@@ -628,6 +646,9 @@ class OmniaWebComponentManifests {
|
|
|
628
646
|
static get FxUxEnterprisePropertiesTagsPropertyDisplay() {
|
|
629
647
|
return new models_1.Guid("1cb9cb57-345b-41c3-bae6-6e9bab8cf454");
|
|
630
648
|
}
|
|
649
|
+
static get FxUxEnterprisePropertiesMediaPropertyDisplay() {
|
|
650
|
+
return new models_1.Guid("3ba46b06-c2cd-44cd-a06e-2762527b498d");
|
|
651
|
+
}
|
|
631
652
|
static get FxUxEnterprisePropertyPicker() {
|
|
632
653
|
return new models_1.Guid("b94ea090-8c7f-4610-85de-9d21a61e0826");
|
|
633
654
|
}
|
|
@@ -649,9 +670,24 @@ class OmniaWebComponentManifests {
|
|
|
649
670
|
static get FxSpfxWpSetting() {
|
|
650
671
|
return new models_1.Guid("5057354b-14bb-430e-854a-22e21d9ab7af");
|
|
651
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
|
+
}
|
|
652
679
|
static get FxSpfxWp() {
|
|
653
680
|
return new models_1.Guid("a7105d99-6040-472b-8d55-819f99a434db");
|
|
654
681
|
}
|
|
682
|
+
static get FxSpfxWpStandalone() {
|
|
683
|
+
return new models_1.Guid("4d6cad2f-0eb9-48e1-aaef-ae35edab238c");
|
|
684
|
+
}
|
|
685
|
+
static get FxSpfxWpStandaloneInstanceHandler() {
|
|
686
|
+
return new models_1.Guid("d51665b2-c5e2-4861-ae33-dbba4418dcde");
|
|
687
|
+
}
|
|
688
|
+
static get FxSpfxFontFamilyBase() {
|
|
689
|
+
return new models_1.Guid("aefced1b-8e90-47d6-8767-839c52272b70");
|
|
690
|
+
}
|
|
655
691
|
static get FxUxSettingspane() {
|
|
656
692
|
return new models_1.Guid("c0de4753-b9fe-4004-b0f4-e6b6b91730ab");
|
|
657
693
|
}
|
|
@@ -688,6 +724,9 @@ class OmniaWebComponentManifests {
|
|
|
688
724
|
static get FxUxPexelProvider() {
|
|
689
725
|
return new models_1.Guid("0c762bb5-c7e6-4ccd-8a89-907200dffca5");
|
|
690
726
|
}
|
|
727
|
+
static get FxUxUnsplashProvider() {
|
|
728
|
+
return new models_1.Guid("be222505-c2c4-4ec8-8462-a7ad9df4d440");
|
|
729
|
+
}
|
|
691
730
|
static get FxUxMediaflowProvider() {
|
|
692
731
|
return new models_1.Guid("E4C4594D-5285-45A2-9EDF-1DCA20F92D69");
|
|
693
732
|
}
|
|
@@ -899,6 +938,9 @@ class OmniaWebComponentManifests {
|
|
|
899
938
|
static get FxUxDataFieldEdit() {
|
|
900
939
|
return new models_1.Guid("bb27e780-de41-442f-a9ca-b8cef6c71100");
|
|
901
940
|
}
|
|
941
|
+
static get FxUxMediaFieldEdit() {
|
|
942
|
+
return new models_1.Guid("2d82992f-4468-40d8-b00b-1909b64dd625");
|
|
943
|
+
}
|
|
902
944
|
static get FxUxPersonFieldValueDefinition() {
|
|
903
945
|
return new models_1.Guid("523800d7-1528-4000-995f-706291edf85f");
|
|
904
946
|
}
|
|
@@ -1320,6 +1362,9 @@ class OmniaWebComponentManifests {
|
|
|
1320
1362
|
static get FxUxSidePanel() {
|
|
1321
1363
|
return new models_1.Guid("539d199f-6993-4c10-a963-f142e4f3056d");
|
|
1322
1364
|
}
|
|
1365
|
+
static get SpUxListTree() {
|
|
1366
|
+
return new models_1.Guid("4584d438-a747-48ab-9ae5-f9f4f431673f");
|
|
1367
|
+
}
|
|
1323
1368
|
static get FxPhotoWallProvider() { return new models_1.Guid("12D1BCA1-D50B-4186-ACD5-0014584389C9"); }
|
|
1324
1369
|
static get FxSliderDialogProvider() { return new models_1.Guid("AC5F615D-F975-43CF-97B3-AE930BA113D0"); }
|
|
1325
1370
|
static get FxUxStatusCodeRenderer() { return new models_1.Guid("5aaaefb5-01d6-4fe5-9da8-b779a54c0a55"); }
|
|
@@ -1327,5 +1372,6 @@ class OmniaWebComponentManifests {
|
|
|
1327
1372
|
static get DateTimePropertyEditor() { return new models_1.Guid("0f52758b-4d0c-4e02-abfe-ea1c5c935571"); }
|
|
1328
1373
|
static get DateTimePropertyConfiguration() { return new models_1.Guid("0AA4B891-6FCF-4B1F-959C-8FD04EF8BFE9"); }
|
|
1329
1374
|
static get BirthdayPropertyConfiguration() { return new models_1.Guid("5b7f85ec-36cf-4e88-911e-7951ccec4e2b"); }
|
|
1375
|
+
static get AnalyticsSettings() { return new models_1.Guid("4d83f393-bd89-4ea0-b1c3-eb4ebce3ad19"); }
|
|
1330
1376
|
}
|
|
1331
1377
|
exports.OmniaWebComponentManifests = OmniaWebComponentManifests;
|
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 = {}));
|