@omnia/fx-models 8.0.214-dev → 8.0.215-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/BusinessProfile.d.ts +54 -3
- package/BusinessProfile.js +28 -1
- package/Constants.d.ts +6 -0
- package/Constants.js +6 -0
- package/Enums.d.ts +15 -0
- package/Enums.js +16 -1
- package/Enums.tooling.d.ts +3 -3
- package/Enums.tooling.js +63 -6
- package/Exposes.d.ts +2 -0
- package/Exposes.js +2 -0
- package/ScopedPermissionRegistraion.d.ts +14 -0
- package/ScopedPermissionRegistraion.js +10 -0
- package/Secrets.d.ts +15 -0
- package/TenantAdminSettingSection.d.ts +24 -0
- package/TenantAdminSettingSection.js +2 -0
- package/enterprise-properties/EnterpriseProperty.d.ts +4 -0
- package/media-picker/AdminMediaPickerImageRatioDefinition.d.ts +18 -0
- package/media-picker/AdminMediaPickerImageRatioDefinition.js +24 -0
- package/media-picker/AdminMediaPickerImageScalingDefinition.d.ts +9 -0
- package/media-picker/AdminMediaPickerImageScalingDefinition.js +13 -0
- package/media-picker/index.d.ts +2 -0
- package/media-picker/index.js +2 -0
- package/package.json +1 -1
- package/ux/ScopedPermissionApi.d.ts +19 -0
- package/ux/ScopedPermissionApi.js +2 -0
- package/ux/index.d.ts +1 -0
- package/ux/index.js +1 -0
package/BusinessProfile.d.ts
CHANGED
@@ -1,9 +1,10 @@
|
|
1
|
-
import { Theming } from "./Theming";
|
2
|
-
import { OmniaNamedModel, IOmniaPropertyBag } from "./NamedProperty";
|
3
1
|
import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
4
|
-
import {
|
2
|
+
import { types } from "typestyle";
|
5
3
|
import { LanguageSettings, VersionedLayoutId } from ".";
|
4
|
+
import { ThemeType } from "./Enums";
|
6
5
|
import { MultilingualString } from "./MultilingualString";
|
6
|
+
import { IOmniaPropertyBag, OmniaNamedModel } from "./NamedProperty";
|
7
|
+
import { Theming } from "./Theming";
|
7
8
|
export interface BusinessProfileIdentity {
|
8
9
|
id: guid;
|
9
10
|
name: MultilingualString;
|
@@ -87,3 +88,53 @@ export declare class OmniaBusinessProfileRelativePathValue extends BusinessProfi
|
|
87
88
|
prefixToken: string;
|
88
89
|
constructor(relativePath: string);
|
89
90
|
}
|
91
|
+
export declare const TenantRegionalStyles: {
|
92
|
+
icon: types.NestedCSSProperties;
|
93
|
+
flag: types.NestedCSSProperties;
|
94
|
+
checkboxColumn: types.NestedCSSProperties;
|
95
|
+
disabledOverlay?: types.NestedCSSProperties;
|
96
|
+
};
|
97
|
+
export declare namespace WorkspaceApp {
|
98
|
+
class AppDefinitionInfo {
|
99
|
+
static id: guid;
|
100
|
+
static resourceTypeId: guid;
|
101
|
+
}
|
102
|
+
class AppTemplateInfo {
|
103
|
+
static id: guid;
|
104
|
+
}
|
105
|
+
class ux {
|
106
|
+
static navBarVListColorClass: string;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
export declare class WorkspaceInfo extends BusinessProfileProperty {
|
110
|
+
appInstanceId: guid;
|
111
|
+
classicNavigationBar: boolean;
|
112
|
+
constructor();
|
113
|
+
}
|
114
|
+
export interface IInternalBusinessProfileRegistration extends IBusinessProfileRegistrationApi {
|
115
|
+
getRegistrations: () => IBusinessProfileCreation[];
|
116
|
+
}
|
117
|
+
export interface IBusinessProfileCreation {
|
118
|
+
created(businessProfile: BusinessProfile, omniaAlias: string, isModernBP: boolean): void;
|
119
|
+
elementToRender?: () => JSX.Element;
|
120
|
+
bladeToRender?: () => JSX.Element;
|
121
|
+
}
|
122
|
+
export interface IBusinessProfileRegistrationApi {
|
123
|
+
register(handler: IBusinessProfileCreation): void;
|
124
|
+
}
|
125
|
+
declare module "./Extends" {
|
126
|
+
interface IOmniaFxApi {
|
127
|
+
businessProfile: {
|
128
|
+
creation: {
|
129
|
+
registrations: Promise<IBusinessProfileRegistrationApi>;
|
130
|
+
};
|
131
|
+
};
|
132
|
+
}
|
133
|
+
interface IOmniaFxExtendApiManifest {
|
134
|
+
businessProfile: {
|
135
|
+
creation: {
|
136
|
+
registrations: ApiPath;
|
137
|
+
};
|
138
|
+
};
|
139
|
+
}
|
140
|
+
}
|
package/BusinessProfile.js
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.OmniaBusinessProfileRelativePathValue = exports.BusinessProfileRelativePathValue = exports.BusinessProfileChromeLayout = exports.BusinessProfileFaviconSettings = exports.BusinessProfileHomeUrlSettings = exports.BusinessProfileLanguageSettings = exports.BusinessProfileMediaPicker = exports.BusinessProfileTheme = exports.BusinessProfilePathProperty = exports.BusinessProfileProperty = void 0;
|
3
|
+
exports.WorkspaceInfo = exports.WorkspaceApp = exports.TenantRegionalStyles = exports.OmniaBusinessProfileRelativePathValue = exports.BusinessProfileRelativePathValue = exports.BusinessProfileChromeLayout = exports.BusinessProfileFaviconSettings = exports.BusinessProfileHomeUrlSettings = exports.BusinessProfileLanguageSettings = exports.BusinessProfileMediaPicker = exports.BusinessProfileTheme = exports.BusinessProfilePathProperty = exports.BusinessProfileProperty = void 0;
|
4
|
+
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
|
5
|
+
const Enums_1 = require("./Enums");
|
4
6
|
const ManifestIds_1 = require("./ManifestIds");
|
5
7
|
const NamedProperty_1 = require("./NamedProperty");
|
6
8
|
class BusinessProfileProperty extends NamedProperty_1.OmniaNamedModel {
|
@@ -71,3 +73,28 @@ class OmniaBusinessProfileRelativePathValue extends BusinessProfileRelativePathV
|
|
71
73
|
}
|
72
74
|
}
|
73
75
|
exports.OmniaBusinessProfileRelativePathValue = OmniaBusinessProfileRelativePathValue;
|
76
|
+
exports.TenantRegionalStyles = {};
|
77
|
+
var WorkspaceApp;
|
78
|
+
(function (WorkspaceApp) {
|
79
|
+
class AppDefinitionInfo {
|
80
|
+
static { this.id = (0, models_1.guid)("c05e7f15-0f1c-479e-9fd9-93d6a5c7c3b4"); }
|
81
|
+
static { this.resourceTypeId = (0, models_1.guid)("4ab5c242-a2d4-4d25-92d3-bdba04c7f810"); }
|
82
|
+
}
|
83
|
+
WorkspaceApp.AppDefinitionInfo = AppDefinitionInfo;
|
84
|
+
class AppTemplateInfo {
|
85
|
+
static { this.id = (0, models_1.guid)("1ff049ac-bf98-4533-913a-450bcd0d7550"); }
|
86
|
+
}
|
87
|
+
WorkspaceApp.AppTemplateInfo = AppTemplateInfo;
|
88
|
+
class ux {
|
89
|
+
static { this.navBarVListColorClass = "wp-navbar-v-list"; }
|
90
|
+
}
|
91
|
+
WorkspaceApp.ux = ux;
|
92
|
+
})(WorkspaceApp || (exports.WorkspaceApp = WorkspaceApp = {}));
|
93
|
+
// Need the workspace info but is in WP FX model.
|
94
|
+
// Made a temporary class to get it constructed
|
95
|
+
class WorkspaceInfo extends BusinessProfileProperty {
|
96
|
+
constructor() {
|
97
|
+
super(Enums_1.WPServiceDefinition.Id, "workspaceinfo");
|
98
|
+
}
|
99
|
+
}
|
100
|
+
exports.WorkspaceInfo = WorkspaceInfo;
|
package/Constants.d.ts
CHANGED
@@ -124,6 +124,12 @@ export declare const Constants: {
|
|
124
124
|
preSetupWizard: {
|
125
125
|
route: string;
|
126
126
|
};
|
127
|
+
authenticationSystemLayoutTitle: string;
|
128
|
+
authenticationTypeIds: {
|
129
|
+
MagicLink: guid;
|
130
|
+
OTP: guid;
|
131
|
+
Password: guid;
|
132
|
+
};
|
127
133
|
};
|
128
134
|
mail: {
|
129
135
|
customMailSettingsKey: string;
|
package/Constants.js
CHANGED
@@ -156,6 +156,12 @@ exports.Constants = {
|
|
156
156
|
preSetupWizard: {
|
157
157
|
route: "/_sys/presetup",
|
158
158
|
},
|
159
|
+
authenticationSystemLayoutTitle: "Authentication",
|
160
|
+
authenticationTypeIds: {
|
161
|
+
MagicLink: (0, models_1.guid)("8dfc9906-637d-4094-ba56-ca0a4440d09f"),
|
162
|
+
OTP: (0, models_1.guid)("a0c3dfc2-2b9b-4c3e-8ecc-b93aad0524b3"),
|
163
|
+
Password: (0, models_1.guid)("1bf550f1-b4a4-407d-ad44-feb8651d778a")
|
164
|
+
}
|
159
165
|
},
|
160
166
|
mail: {
|
161
167
|
customMailSettingsKey: "omnia.custom.email.settings",
|
package/Enums.d.ts
CHANGED
@@ -353,6 +353,12 @@ export declare const RoleDefinitions: {
|
|
353
353
|
QueryAppInstanceReader: guid;
|
354
354
|
QueryAppInstanceViewer: guid;
|
355
355
|
DirectoryReader: guid;
|
356
|
+
SharedLinksTenantAdmin: guid;
|
357
|
+
AnnouncementsTenantAdmin: guid;
|
358
|
+
AnnouncementsBPAdmin: guid;
|
359
|
+
SharedLinksBPAdmin: guid;
|
360
|
+
SearchBPAdmin: guid;
|
361
|
+
AnalyticsBpReader: guid;
|
356
362
|
};
|
357
363
|
export declare enum FeatureInstanceStatus {
|
358
364
|
NotActivated = -1,
|
@@ -709,3 +715,12 @@ export declare enum StatusFilter {
|
|
709
715
|
Success = 1,
|
710
716
|
Failed = 2
|
711
717
|
}
|
718
|
+
export declare const WPServiceDefinition: {
|
719
|
+
Id: guid;
|
720
|
+
};
|
721
|
+
export declare const reCaptchaSecretKey = "omnia-recaptcha-secret";
|
722
|
+
export declare const ReCaptChaSecretFormNames: {
|
723
|
+
readonly enabled: "enabled";
|
724
|
+
readonly sitekey: "sitekey";
|
725
|
+
readonly secretkey: "secretkey";
|
726
|
+
};
|
package/Enums.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.RichTextModes = exports.TimePeriodTypes = exports.TargetUser = exports.RedirectRuleType = exports.MultilingualScopes = exports.OmniaRoleTypes = exports.TargetResolverTypes = exports.PermissionRoles = 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.LanguageTags = exports.LocalizationTargetTypes = 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.DisplayBreakpoints = exports.DisplayBreakpointCodes = 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.LayoutDrawerTabs = exports.VerticalAlignments = exports.HorizontalAlignments = exports.BladeSizes = exports.ImageResolution = exports.ServiceLocatorUrlType = exports.AppInstanceAction = exports.VDataGridHeaderType = exports.VDataGridHeaderAlign = exports.ButtonSizes = exports.ButtonModes = exports.ButtonIconPosition = exports.ButtonTooltipPosition = void 0;
|
4
|
+
exports.ReCaptChaSecretFormNames = exports.reCaptchaSecretKey = exports.WPServiceDefinition = exports.StatusFilter = exports.PersistentDiskTypes = exports.CookieKeys = exports.LocalServingMessageType = exports.DisplayBreakpoints = exports.DisplayBreakpointCodes = 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.LayoutDrawerTabs = exports.VerticalAlignments = exports.HorizontalAlignments = exports.BladeSizes = exports.ImageResolution = exports.ServiceLocatorUrlType = exports.AppInstanceAction = exports.VDataGridHeaderType = exports.VDataGridHeaderAlign = exports.ButtonSizes = exports.ButtonModes = exports.ButtonIconPosition = exports.ButtonTooltipPosition = void 0;
|
5
5
|
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
|
6
6
|
var BuiltInEnterprisePropertyInternalNames;
|
7
7
|
(function (BuiltInEnterprisePropertyInternalNames) {
|
@@ -391,6 +391,12 @@ exports.RoleDefinitions = {
|
|
391
391
|
QueryAppInstanceReader: (0, models_1.guid)("d8e7acc5-1338-43d2-8307-c3e712340205"),
|
392
392
|
QueryAppInstanceViewer: (0, models_1.guid)("9b0b9c44-3356-408e-91a5-a29a7a83e924"),
|
393
393
|
DirectoryReader: (0, models_1.guid)("83a919c4-2a71-4860-bcd9-7ebc639d00b8"),
|
394
|
+
SharedLinksTenantAdmin: (0, models_1.guid)("9d87e455-ed2b-4891-9738-cb014c9bb4db"),
|
395
|
+
AnnouncementsTenantAdmin: (0, models_1.guid)("ae9cc8d3-f47f-49e5-81ad-633d428a2a26"),
|
396
|
+
AnnouncementsBPAdmin: (0, models_1.guid)("5fa0ced5-f7ab-4c7a-99d9-1f291cb08cc1"),
|
397
|
+
SharedLinksBPAdmin: (0, models_1.guid)("778c0d53-23ec-4874-8843-86c6c9e55009"),
|
398
|
+
SearchBPAdmin: (0, models_1.guid)("affe1bd8-b534-459b-bdd5-f11e5a2d1d73"),
|
399
|
+
AnalyticsBpReader: (0, models_1.guid)("ab0d9a26-a89a-4117-bfee-0e3013e456e1")
|
394
400
|
};
|
395
401
|
var FeatureInstanceStatus;
|
396
402
|
(function (FeatureInstanceStatus) {
|
@@ -812,3 +818,12 @@ var StatusFilter;
|
|
812
818
|
StatusFilter[StatusFilter["Success"] = 1] = "Success";
|
813
819
|
StatusFilter[StatusFilter["Failed"] = 2] = "Failed";
|
814
820
|
})(StatusFilter || (exports.StatusFilter = StatusFilter = {}));
|
821
|
+
exports.WPServiceDefinition = {
|
822
|
+
Id: (0, models_1.guid)("39df27aa-95f1-4a23-b3f6-8b231afcda82")
|
823
|
+
};
|
824
|
+
exports.reCaptchaSecretKey = "omnia-recaptcha-secret";
|
825
|
+
exports.ReCaptChaSecretFormNames = {
|
826
|
+
enabled: "enabled",
|
827
|
+
sitekey: "sitekey",
|
828
|
+
secretkey: "secretkey",
|
829
|
+
};
|
package/Enums.tooling.d.ts
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
import { LanguageTags, OmniaMimeType, guid } from "@omnia/fx-models";
|
2
|
-
declare const mimeTypes: Record<"c" | "x" | "map" | "s" | "rgb" | "js" | "css" | "aa" | "html" | "class" | "i" | "ins" | "tr" | "jpeg" | "jpg" | "png" | "bmp" | "gif" | "svg" | "ico" | "pdf" | "dotx" | "docx" | "doc" | "dot" | "pptx" | "potx" | "ppt" | "pot" | "xlsx" | "xltx" | "xls" | "xlt" | "ms" | "dir" | "cd" | "cab" | "cdf" | "
|
2
|
+
declare const mimeTypes: Record<"c" | "x" | "map" | "s" | "rgb" | "js" | "css" | "aa" | "html" | "class" | "i" | "ins" | "tr" | "jpeg" | "jpg" | "png" | "bmp" | "gif" | "svg" | "ico" | "pdf" | "dotx" | "docx" | "doc" | "dot" | "pptx" | "potx" | "ppt" | "pot" | "xlsx" | "xltx" | "xls" | "xlt" | "ms" | "dir" | "cd" | "cc" | "cab" | "cdf" | "def" | "user" | "filters" | "settings" | "src" | "group" | "one" | "ac3" | "323" | "caf" | "fdf" | "h" | "atom" | "rtf" | "3g2" | "3gp" | "3gp2" | "3gpp" | "7z" | "AAC" | "aaf" | "aax" | "aca" | "accda" | "accdb" | "accdc" | "accde" | "accdr" | "accdt" | "accdw" | "accft" | "acx" | "AddIn" | "ade" | "adobebridge" | "adp" | "ADT" | "ADTS" | "afm" | "ai" | "aif" | "aifc" | "aiff" | "air" | "amc" | "application" | "art" | "asa" | "asax" | "ascx" | "asd" | "asf" | "ashx" | "asi" | "asm" | "asmx" | "aspx" | "asr" | "asx" | "au" | "avi" | "axs" | "bas" | "bcpio" | "bin" | "calx" | "cat" | "cdda" | "cer" | "chm" | "clp" | "cmx" | "cnf" | "cod" | "config" | "contact" | "coverage" | "cpio" | "cpp" | "crd" | "crl" | "crt" | "cs" | "csdproj" | "csh" | "csproj" | "csv" | "cur" | "cxx" | "dat" | "datasource" | "dbproj" | "dcr" | "deploy" | "der" | "dgml" | "dib" | "dif" | "disco" | "dll" | "dll.config" | "dlm" | "docm" | "dotm" | "dsp" | "dsw" | "dtd" | "dtsConfig" | "dv" | "dvi" | "dwf" | "dwp" | "dxr" | "eml" | "emz" | "eot" | "eps" | "etl" | "etx" | "evy" | "exe" | "exe.config" | "fif" | "fla" | "flr" | "flv" | "fsscript" | "fsx" | "generictest" | "gsm" | "gtar" | "gz" | "hdf" | "hdml" | "hhc" | "hhk" | "hhp" | "hlp" | "hpp" | "hqx" | "hta" | "htc" | "htm" | "htt" | "hxa" | "hxc" | "hxd" | "hxe" | "hxf" | "hxh" | "hxi" | "hxk" | "hxq" | "hxr" | "hxs" | "hxt" | "hxv" | "hxw" | "hxx" | "ics" | "idl" | "ief" | "iii" | "inc" | "inf" | "inl" | "ipa" | "ipg" | "ipproj" | "ipsw" | "iqy" | "isp" | "ite" | "itlp" | "itms" | "itpc" | "IVF" | "jar" | "java" | "jck" | "jcz" | "jfif" | "jnlp" | "jpb" | "jpe" | "jsx" | "jsxbin" | "latex" | "library-ms" | "lit" | "loadtest" | "lpk" | "lsf" | "lst" | "lsx" | "lzh" | "m13" | "m14" | "m1v" | "m2t" | "m2ts" | "m2v" | "m3u" | "m3u8" | "m4a" | "m4b" | "m4p" | "m4r" | "m4v" | "mac" | "mak" | "man" | "manifest" | "master" | "mda" | "mdb" | "mde" | "mdp" | "me" | "mfp" | "mht" | "mhtml" | "mid" | "midi" | "mix" | "mk" | "mmf" | "mno" | "mny" | "mod" | "mov" | "movie" | "mp2" | "mp2v" | "mp3" | "mp4" | "mp4v" | "mpa" | "mpe" | "mpeg" | "mpf" | "mpg" | "mpp" | "mpv2" | "mqv" | "msi" | "mso" | "mts" | "mtx" | "mvb" | "mvc" | "mxp" | "nc" | "nsc" | "nws" | "ocx" | "oda" | "odc" | "odh" | "odl" | "odp" | "ods" | "odt" | "onea" | "onepkg" | "onetmp" | "onetoc" | "onetoc2" | "orderedtest" | "osdx" | "p10" | "p12" | "p7b" | "p7c" | "p7m" | "p7r" | "p7s" | "pbm" | "pcast" | "pct" | "pcx" | "pcz" | "pfb" | "pfm" | "pfx" | "pgm" | "pic" | "pict" | "pkgdef" | "pkgundef" | "pko" | "pls" | "pma" | "pmc" | "pml" | "pmr" | "pmw" | "pnm" | "pnt" | "pntg" | "pnz" | "potm" | "ppa" | "ppam" | "ppm" | "pps" | "ppsm" | "ppsx" | "pptm" | "prf" | "prm" | "prx" | "ps" | "psc1" | "psd" | "psess" | "psm" | "psp" | "pub" | "pwz" | "qht" | "qhtm" | "qt" | "qti" | "qtif" | "qtl" | "qxd" | "ra" | "ram" | "rar" | "ras" | "rat" | "rc" | "rc2" | "rct" | "rdlc" | "resx" | "rf" | "rgs" | "rm" | "rmi" | "rmp" | "roff" | "rpm" | "rqy" | "rtx" | "ruleset" | "safariextz" | "scd" | "sct" | "sd2" | "sdp" | "sea" | "searchConnector-ms" | "setpay" | "setreg" | "sgimb" | "sgml" | "sh" | "shar" | "shtml" | "sit" | "sitemap" | "skin" | "sldm" | "sldx" | "slk" | "sln" | "slupkg-ms" | "smd" | "smi" | "smx" | "smz" | "snd" | "snippet" | "snp" | "sol" | "sor" | "spc" | "spl" | "srf" | "SSISDeploymentManifest" | "ssm" | "sst" | "stl" | "sv4cpio" | "sv4crc" | "svc" | "swf" | "t" | "tar" | "tcl" | "testrunconfig" | "testsettings" | "tex" | "texi" | "texinfo" | "tgz" | "thmx" | "thn" | "tif" | "tiff" | "tlh" | "tli" | "toc" | "trm" | "trx" | "ts" | "tsv" | "ttf" | "tts" | "txt" | "u32" | "uls" | "ustar" | "vb" | "vbdproj" | "vbk" | "vbproj" | "vbs" | "vcf" | "vcproj" | "vcs" | "vcxproj" | "vddproj" | "vdp" | "vdproj" | "vdx" | "vml" | "vscontent" | "vsct" | "vsd" | "vsi" | "vsix" | "vsixlangpack" | "vsixmanifest" | "vsmdi" | "vspscc" | "vss" | "vsscc" | "vssettings" | "vssscc" | "vst" | "vstemplate" | "vsto" | "vsw" | "vsx" | "vtx" | "wav" | "wave" | "wax" | "wbk" | "wbmp" | "wcm" | "wdb" | "wdp" | "webarchive" | "webtest" | "wiq" | "wiz" | "wks" | "WLMP" | "wlpginstall" | "wlpginstall3" | "wm" | "wma" | "wmd" | "wmf" | "wml" | "wmlc" | "wmls" | "wmlsc" | "wmp" | "wmv" | "wmx" | "wmz" | "wpl" | "wps" | "wri" | "wrl" | "wrz" | "wsc" | "wsdl" | "wvx" | "xaf" | "xaml" | "xap" | "xbap" | "xbm" | "xdr" | "xht" | "xhtml" | "xla" | "xlam" | "xlc" | "xld" | "xlk" | "xll" | "xlm" | "xlsb" | "xlsm" | "xltm" | "xlw" | "xml" | "xmta" | "xof" | "XOML" | "xpm" | "xps" | "xrm-ms" | "xsc" | "xsd" | "xsf" | "xsl" | "xslt" | "xsn" | "xss" | "xtp" | "xwd" | "z" | "zip" | "woff" | "woff2", OmniaMimeType>;
|
3
3
|
declare const languageTags: Record<"ArSa" | "BgBg" | "CaEs" | "ZhTw" | "CsCz" | "DaDk" | "DeDe" | "ElGr" | "EnUs" | "FiFi" | "FrFr" | "HeIl" | "HuHu" | "IsIs" | "ItIt" | "JaJp" | "KoKr" | "NlNl" | "NbNo" | "PlPl" | "PtBr" | "RoRo" | "RuRu" | "HrHr" | "SkSk" | "SqAl" | "SvSe" | "ThTh" | "TrTr" | "UrPk" | "IdId" | "UkUa" | "BeBy" | "SlSi" | "EtEe" | "LvLv" | "LtLt" | "FaIr" | "ViVn" | "HyAm" | "EuEs" | "MkMk" | "AfZa" | "KaGe" | "FoFo" | "HiIn" | "MsMy" | "KkKz" | "KyKg" | "SwKe" | "TtRu" | "PaIn" | "GuIn" | "TaIn" | "TeIn" | "KnIn" | "MrIn" | "SaIn" | "MnMn" | "GlEs" | "DvMv" | "ArIq" | "ZhCn" | "DeCh" | "EnGb" | "EsMx" | "FrBe" | "ItCh" | "NlBe" | "NnNo" | "PtPt" | "SvFi" | "MsBn" | "ArEg" | "ZhHk" | "DeAt" | "EnAu" | "EnEs" | "FrCa" | "ArLy" | "ZhSg" | "DeLu" | "EnCa" | "EsGt" | "FrCh" | "ArDz" | "ZhMo" | "DeLi" | "EnNz" | "EsCr" | "FrLu" | "ArMa" | "EnIe" | "EsPa" | "FrMc" | "ArTn" | "EnZa" | "EsDo" | "ArOm" | "EnJm" | "EsVe" | "ArYe" | "EsCo" | "ArSy" | "EnBz" | "EsPe" | "ArJo" | "EnTt" | "EsAr" | "ArLb" | "EnZw" | "EsEc" | "EsEs" | "ArKw" | "EnPh" | "EsCl" | "ArAe" | "EsUy" | "ArBh" | "EsPy" | "ArQa" | "EsBo" | "EsSv" | "EsHn" | "EsPr" | "ZuZa" | "XhZa" | "FyNl" | "TnZa" | "SeSe" | "SeFi" | "CyGb" | "HrBa" | "MiNz" | "GaIe" | "RmCh" | "LbLu" | "NsZa" | "SeNo" | "MtMt", LanguageTags>;
|
4
4
|
declare const omniaGroupManifests: Record<"Fx" | "FxConsole" | "FxUxCommonComponents" | "FxUxCommonOxides" | "FxUxRichTextEditor" | "Header" | "ChromeGroup" | "LayoutCanvasGroup", guid>;
|
5
|
-
declare const omniaResourceManifests: Record<"FxServiceWorker" | "SplitPaneLib" | "ProsemirrorPackage" | "AuthSetupCore" | "LayoutCanvasShared" | "AwesomeProFont" | "FxUxVuetifyShared" | "DynamicPlaceholderApis" | "AppPlaceHolderApis" | "FxUxVuetifyCommon" | "FxUxMonacoEditor" | "FxUxAutocomplete" | "ClientBoot" | "FxUxVuetifyBottomnav" | "ConsoleCommands" | "FxUxVRating" | "FxUxVuetifyHover" | "FxUxVuetifyStepper" | "FxUxVuetifyColorPicker" | "FxUxVuetifyCombobox" | "FxUxVuetifySlider" | "FxUxVuetifyChip" | "FxUxVuetifyDatatable" | "FxUxVuetifyDatePicker" | "FxUxVuetifyTimePicker" | "FxUxVuetifySnackbar" | "FxUxVuetifyPagination" | "FxUxVuetifyTimeline" | "FxUxVuetifyFooter" | "FxUxVuetifyCalendar" | "FxUxVuetifyVirtualScroll" | "FxUxVuetifyAlert" | "FxContexts" | "FxCoreBoot" | "FxCore" | "FxShared" | "FxWorkersBootstrapper" | "OmniaHubWorker" | "FxWorkers" | "Fx" | "FxSpContexts" | "FxUxVuetifyTextinput" | "FxUxVuetifyNumberinput" | "FxUxVuetifySelect" | "FxUxVuetifyTextarea" | "LocalhostingCommands" | "FxUxVuetifyBreadcrumbs" | "FxUxVuetifySelection" | "FxSp" | "FxSpfx" | "SpfxCustomizer" | "SpfxWebpart" | "FxUxVuetifySwitch" | "FxUx" | "FxUxEditor" | "FxUxAdmin" | "FxUxAdminTokenRouter" | "FxUxLibs" | "FxUxVDialog" | "FxUxVuetifyAvatar" | "FxUxVTreeView" | "FxUxVSpeedial" | "FxUxVMenu" | "Vendor" | "PhoneNumberLib" | "FxTenantLanguage" | "FxUxAppProvisioningShared" | "FxUxRichTextEditorExtension" | "MicrosoftTeamsSDK" | "MicrosoftTeamsSDKLoader" | "TeamsSSOScript" | "MediaPickerProviderRegistration" | "FxUxRichTextEditorCore" | "ActionApi" | "ActionHandlerEvents" | "LikeTopicIdProviderRegistration" | "LinkHandlerRegistration" | "EnterpriseGlossaryRegistrationApi" | "AppProvisioningValidatorApi" | "SidePanelRegistrationApi" | "GraphClientRegistrationApi" | "SharepointClientRegistrationApi" | "FilterEngineRegistrationApi" | "TaxonomyFilterEngineRegistrationApi" | "EnterpriseKeywordsFilterEngineRegistrationApi" | "ExtendedTaxonomyFilterEngineRegistrationApi" | "PersonFilterEngineRegistrationApi" | "TagsFilterEngineRegistrationApi" | "BooleanFilterEngineRegistrationApi" | "TextFilterEngineRegistrationApi" | "NumberFilterEngineRegistrationApi" | "DateTimeFilterEngineRegistrationApi" | "ExtendedIdentityFilterEngineRegistrationApi" | "ExtendedBooleanFilterEngineRegistrationApi" | "ExtendedTextFilterEngineRegistrationApi" | "ExtendedIntegerFilterEngineRegistrationApi" | "ExtendedDateTimeFilterEngineRegistrationApi" | "ExtendedDateFilterEngineRegistrationApi" | "ExtendedEmailFilterEngineRegistrationApi" | "ExtendedHtmlFilterEngineRegistrationApi" | "ExtendedLinkFilterEngineRegistrationApi" | "ExtendedMultilineTextFilterEngineRegistrationApi" | "ExtendedMultilingualTextFilterEngineRegistrationApi" | "ExtendedPhoneNumberFilterEngineRegistrationApi" | "ExtendedBirthdayFilterEngineRegistrationApi" | "AppInstanceRollupViewRegistrationApi" | "AppInstanceRollupViewBase" | "UserProfileActionHandlerApi" | "AppInstanceTokenProvider" | "AppPropertiesProvider" | "FxUxEnterprisePropertiesDataSourceApi" | "FxUxPropertiesProviderApi" | "UserPropertiesProvider" | "UserPropertiesByMicrosoftGraphProvider" | "UserPropertiesBySharePointProvider" | "FxUxPropertyDataSourceApi" | "IdentityPropertyApi" | "BuiltinExtendedPropertiesRegistration" | "FxUxCommentDialog" | "FeaturesActivation" | "FxUxFilterEngineCore" | "FxUxBooleanFilterEngineCore" | "FxUxDateFilterEngineCore" | "FxUxNumberFilterEngineCore" | "FxUxPersonFilterEngineCore" | "FxUxTextFilterEngineCore" | "FxUxTaxonomyFilterEngineCore" | "IdentitySyncProviderApi" | "BuiltinSyncProvidersRegistration" | "SharePointIntegrationExternalMapping" | "TextCompletionTenantFeature" | "DallESecretComponent" | "DallESecretRegistrations" | "DallELocalization" | "DallETenantFeature" | "DallEMediaProviderFeature" | "DefaultNotFoundLayout" | "DefaultUnauthorizedLayout" | "StatusCodeLayoutRegistration" | "BuiltinPropertyBindingProviders" | "ExtendedEnterprisePropertyBindingProvider" | "BusinessProfilePropertyBindingProvider" | "UserPropertyBindingProvider" | "MagicLinkCore" | "AdminSystemCore", guid>;
|
6
|
-
declare const omniaWebComponentManifests: Record<"Header" | "Chrome" | "JourneyBladeComponent" | "AuthSetup" | "AuthenticationBlock" | "AuthenticationCore" | "LoginOmniaView" | "LoginOmniaRenderer" | "LoginIdentityCreationRequestRenderer" | "Logout" | "MagicLinkLogin" | "MagicLinkSuccess" | "MagicLinkFailure" | "LayoutRendererCanvas" | "VersionedLayoutBladeBuilder" | "VersionedLayoutCreationBlade" | "VersionedLayoutListBladeBuilder" | "VersionedLayoutCheckedOutByOtherMessage" | "VersionedLayoutRenderer" | "VersionedLayoutEditor" | "VersionHistory" | "VersionHistoryPanel" | "UserTypeLayoutRenderer" | "VersionedLayoutController" | "VersionedLayoutEditorChrome" | "BladeHeader" | "OAppBar" | "OAlert" | "OSwiper" | "OSlide" | "OInfiniteScroll" | "OAvatar" | "OLazy" | "OBadge" | "OBtn" | "OBtnGroup" | "OCard" | "OChart" | "OCheckBox" | "OChip" | "ONotification" | "OColumn" | "OColumnGrid" | "ORow" | "ODataTable" | "ODataTableServer" | "ODialog" | "ODivider" | "ODraggable" | "ODatePicker" | "OExpansionpanels" | "OExpansionpanel" | "OForm" | "OHostProvider" | "OIcon" | "OImage" | "OLayout" | "OList" | "OListItem" | "OMain" | "OMenu" | "ONavigationDrawer" | "OPanel" | "OFlex" | "OScrollContainer" | "OProgress" | "ORadio" | "ORadioGroup" | "ORating" | "OSplitpane" | "OSplitpaneItem" | "OSelect" | "OSkeletonLoader" | "OSlider" | "ORangeSlider" | "OSnackbar" | "OSpacer" | "OStepper" | "OStepperStep" | "OSwitch" | "OTable" | "OTab" | "OTabs" | "OText" | "OLink" | "OTextArea" | "OTextField" | "OToolbar" | "OColorPicker" | "OTooltip" | "OTreeView" | "OValidation" | "OPagination" | "Admin" | "AdminShortcut" | "Bladestest" | "Welcome" | "AuthenticationChecker" | "FxUxColorpicker" | "FxUxIframe" | "FxUxDateTimePicker" | "FxSizeContainer" | "Console" | "DevSocketMessage" | "FxUxDialog" | "FxUxConfirmDialog" | "FxUxDocumenticon" | "FxUxStatusMessageOverlay" | "FxUxHeading" | "FxUxSelection" | "FxUxInputToken" | "FxUxIconpicker" | "FxUxJourney" | "FxUxMenuBlade" | "FxUxWizard" | "FxUxPeoplePicker" | "FxUxIcon" | "FxUxButton" | "FxUxDatatable" | "FxUxShapeDivider" | "FxUxShapeDividerSettings" | "FxUxEnterprisePropertiesRichTextFieldDisplay" | "FxUxEnterprisePropertiesTextFieldDisplay" | "FxUxEnterprisePropertiesDateTimeFieldDisplay" | "FxUxEnterprisePropertiesUserFieldDisplay" | "FxUxEnterprisePropertiesBooleanFieldDisplay" | "FxUxEnterprisePropertiesNumberFieldDisplay" | "FxUxEnterprisePropertiesTaxonomyFieldDisplay" | "FxUxEnterprisePropertiesLanguageFieldDisplay" | "FxUxEnterprisePropertiesTagsPropertyDisplay" | "FxUxEnterprisePropertyPicker" | "FxUxEnterprisePropertySetPicker" | "FxUxEnterprisePropertyDataTypeProviderDisplay" | "FxUxSharePointTermItem" | "FxUxLimitedLabel" | "FxSpTermGlossaryMapping" | "FxSpfxWpSetting" | "FxSpfxWp" | "FxUxSettingspane" | "FxUxRollupEmpty" | "FxUxRollupFilter" | "FxUxRollupFilterPicker" | "Signout" | "FxUxTermpicker" | "FxUxTemplatePicker" | "FxUxMediapicker" | "FxUxMediapickerImage" | "FxUxMediapickerVideo" | "FxUxImageGrid" | "FxUxPexelProvider" | "FxUxUnsplashProvider" | "FxUxMediaflowProvider" | "FxUxMediaflowProviderVideoPlayer" | "FxUxMyComputerProvider" | "FxUxFileUploader" | "FxUxBingProvider" | "FxUxCentralImageLocationProvider" | "FxUxSharePointVideoSettings" | "FxUxMicrosoftStreamProvider" | "FxUxYoutubeProvider" | "FxUxVimeoProvider" | "FxUxDallEProvider" | "FxUxImageTransformer" | "FxUxThemeDefinitionEditor" | "FxUxImageEditor" | "FxUxImageTransformEditor" | "SharepointVideoComponent" | "FxUxFieldValidation" | "FxUxLetterAvatar" | "FxUxLanguagePicker" | "FxUxContextLanguagePicker" | "FxUxTimeZonePicker" | "FxUxSiteLogoIcon" | "FxUxTimePeriodPicker" | "FxUxDateTimeZonePicker" | "FxUxDateTimeZoneRenderer" | "FxUxDateTimeFilterQuery" | "FxUxAppProvisioningRenderer" | "FxUxAppProvisioningValidatorWrapper" | "FxUxAppRouteInput" | "FxUxAppTitleInput" | "FxUxAppDescriptionInput" | "FxUxAppShowInPublicListingsInput" | "FxUxAppImageInput" | "FxUxAppPropertiesInput" | "SpUxAppWithSharePointAliasInput" | "FxUxAppPropertyNamingPolicyInput" | "FxUxVersionedLayoutUrlInput" | "FxUxAppInstanceEditingJourney" | "FxUxAppInstancePermissionBlade" | "FxUxAppInstanceRoutePathBlade" | "FxUxAppInstanceDeleteBlade" | "FxUxAppProvisioningWizard" | "FxUxAppInstanceInformationStep" | "FxUxAppInstanceUsersStep" | "FxUxAppInstanceEnterpriseStep" | "FxUxAppInstanceProvisioningSummaryStep" | "FxUxAppInstanceProgressBlade" | "FxUxAppInstanceRollup" | "FxUxAppInstanceRollupSettings" | "FxUxAppInstanceRollupListView" | "FxUxAppInstanceRollupRenderer" | "FxUxAppInstanceRollupMetricDetail" | "FxUxAppInstanceRollupListViewSettings" | "FxUxAppInstanceRollupCardView" | "FxUxAppInstanceRollupCardViewSettings" | "FxUxQueryablePropertiesJourney" | "FxUxDateTimeFieldEdit" | "FxUxPersonFieldEdit" | "FxUxBooleanFieldEdit" | "FxUxTextFieldEdit" | "FxUxRichTextFieldEdit" | "FxUxRichTextEditorSettingsComponent" | "FxUxRichTextEditorComponent" | "FxUxRichTextEditorRendererCore" | "FxUxRichTextEditorRendererComponent" | "FxUxNumberFieldEdit" | "FxUxLanguageFieldEdit" | "FxUxTagsPropertyEdit" | "FxUxDataFieldEdit" | "FxUxPersonFieldValueDefinition" | "FxUxRichTextFieldValueDefinition" | "FxUxBooleanFieldValueDefinition" | "FxUxDataFieldValueDefinition" | "FxUxDateTimeFieldValueDefinition" | "FxUxMediaFieldValueDefinition" | "FxUxNumberFieldValueDefinition" | "FxUxTextFieldValueDefinition" | "FxUxLanguageFieldValueDefinition" | "FxUxTagsPropertyValueDefinition" | "FxUxTestFeaturesComponent" | "FxUxCommentComponent" | "FxUxPeopleTaggingComponent" | "FxUxCommentLikeTemplate" | "FxUxContentDialog" | "FxUxLikeComponent" | "FxUxReactionStyle" | "FxUxReactionsComponent" | "FxUxReactionsStyle" | "FxUxLikeListingTemplate" | "FxUxPostLikeListingTemplate" | "FxUxPermissionInput" | "FxUxTenantAdminPermissionInput" | "FxUxSecurityTrimmer" | "FxUxSpacingPicker" | "FxUxFilterPicker" | "FxUxPickerWrapper" | "FxUxFilterEngineSettings" | "FxUxFilterEngineDialogContent" | "FxUxFilterEnginePersonPropertySettings" | "FxUxFilterEngineTagsPropertySettings" | "FxUxFilterEnginePersonPropertyDefaultValueInput" | "FxUxFilterEngineTagsPropertyDefaultValueInput" | "FxUxFilterEngineBooleanPropertySettings" | "FxUxFilterEngineBooleanPropertyDefaultValueInput" | "FxUxFilterEngineTextPropertySettings" | "FxUxFilterEngineTextPropertyDefaultValueInput" | "FxUxFilterEngineDateTimePropertySettings" | "FxUxFilterEngineDateTimePropertyDefaultValueInput" | "FxUxFilterEngineTaxonomyPropertySettings" | "FxUxFilterEngineTaxonomyPropertyDefaultValueInput" | "FxUxFilterEngineExtendedTaxonomyPropertyDefaultValueInput" | "FxUxFilterEngineNumberPropertySettings" | "FxUxFilterEngineNumberPropertyDefaultValueInput" | "FxUxFilterEngineRenderer" | "FxUxTaxonomyFilterEngineRenderer" | "FxUxPersonFilterEngineRenderer" | "FxUxTagsFilterEngineRenderer" | "FxUxTextFilterEngineRenderer" | "FxUxBooleanFilterEngineRenderer" | "FxUxDateFilterEngineRenderer" | "FxUxDateFilterEnginePeriodSlider" | "FxUxNumberFilterEngineRenderer" | "FxUxFilterEngineSelectionsArea" | "FxUxFilterEngineSelectionsAreaTaxonomyProperty" | "FxUxFilterEngineSelectionsAreaPersonProperty" | "FxUxFilterEngineSelectionsAreaTagsProperty" | "FxUxFilterEngineSelectionsAreaBooleanProperty" | "FxUxFilterEngineSelectionsAreaTextProperty" | "FxUxFilterEngineSelectionsAreaDateTimeProperty" | "FxUxFilterEngineSelectionsAreaNumberProperty" | "FxUxFilterEnginePropertyDropdown" | "FxUxFilterEnginePropertyList" | "SpTermSetPicker" | "SpTermPicker" | "SpTermPickerTree" | "SpTermPickerSearch" | "SpTaxonomyFieldEdit" | "SpTaxonomyFieldSettings" | "SpTaxonomyFieldValueDefinition" | "SpEnterprisekeywordsFieldEdit" | "SpEnterpriseKeywordsFieldValueDefinition" | "SpEnterpriseKeywordsFieldSettings" | "SpEnterpriseKeywordsFieldDisplay" | "SpQueryFilterBuilder" | "TargetingFilter" | "FxUxCommentDialogComponent" | "FxUxMultilingualInput" | "FxUxMultiTextInput" | "FxUxTextTranslator" | "FxUxErrorMessage" | "FxUxInputLanguagePicker" | "FxUxDashboardNumericIndicator" | "FxUxDashboardBarChartIndicator" | "FeaturesJourney" | "FeaturesJourneyTenant" | "FeaturesJourneyAppInstance" | "FeaturesJourneyApp" | "MentionComponent" | "EmoticonComponent" | "UrlInputComponent" | "FxUxProfileCardRenderer" | "FxUxProfileCardComponent" | "FxUxProfileCardDialogComponent" | "FxUxProfileCardCore" | "FxUxProfileAboutUser" | "FxUxProfilePersona" | "FxUxReportees" | "FxUxOrganizationTree" | "FxUxEditorChrome" | "LikeActionHandler" | "LikeActionRegistration" | "LikeActionSettings" | "FxUxEnterpriseGlossaryPicker" | "FxUxEnterprisePropertiesDataSourcePicker" | "FxUxPropertyPicker" | "FxUxPropertyRenderer" | "FxUxPropertyDefintionRenderer" | "FxUxPropertyDefintionConfiguration" | "FxUxPropertyConfigurationBaseRenderer" | "FxUxLabelOptionsRenderer" | "FxUxPropertyLocking" | "UserPropertyConfigurationRenderer" | "FxUxPropertyDatasourceRenderer" | "FxUxPropertyInput" | "FxUxPostTemplate" | "FxUxPostComponent" | "AppManagement" | "TabsManagement" | "AppManagementInstanceTab" | "AppManagementTemplateTab" | "AppManagementLayoutTab" | "AppManagementNamingPolicyTab" | "TermPropertyDisplay" | "TermPropertyEditor" | "TermPropertyConfiguration" | "FxUxFileUploaderMyComputerProvider" | "LinkHandlerDeepLinkDialog" | "PreSetupWizard" | "LanguagePropertyDisplay" | "LanguagePropertyEditor" | "IdentityPropertyDisplay" | "IdentityPropertyEditor" | "SPFxUxLanguagePicker" | "FxUxUserPropertyEditorRenderer" | "FxUxGroupPropertyEditorRenderer" | "FxUxDynamicGroupPropertyEditorRenderer" | "HashTagList" | "BuiltinUserPropertyProviderDisplay" | "BuiltinUserPropertyProviderEditor" | "MSGraphUserPropertyProviderDisplay" | "MSGraphUserPropertyProviderEditor" | "SharePointUserPropertyProviderDisplay" | "SharePointUserPropertyProviderEditor" | "FxUxConnectedTenantPicker" | "FxUxSidePanel" | "FeaturesJourneyProperties" | "FxPhotoWallProvider" | "FxSliderDialogProvider" | "FxUxStatusCodeRenderer" | "DateTimePropertyDisplay" | "DateTimePropertyEditor" | "DateTimePropertyConfiguration" | "BirthdayPropertyConfiguration" | "AdminSystemJourney" | "CustomEmailJourney", guid>;
|
5
|
+
declare const omniaResourceManifests: Record<"FxServiceWorker" | "SplitPaneLib" | "ProsemirrorPackage" | "AuthSetupCore" | "LayoutCanvasShared" | "AwesomeProFont" | "FxUxVuetifyShared" | "DynamicPlaceholderApis" | "AppPlaceHolderApis" | "FxUxVuetifyCommon" | "FxUxMonacoEditor" | "FxUxAutocomplete" | "ClientBoot" | "FxUxVuetifyBottomnav" | "ConsoleCommands" | "FxUxVRating" | "FxUxVuetifyHover" | "FxUxVuetifyStepper" | "FxUxVuetifyColorPicker" | "FxUxVuetifyCombobox" | "FxUxVuetifySlider" | "FxUxVuetifyChip" | "FxUxVuetifyDatatable" | "FxUxVuetifyDatePicker" | "FxUxVuetifyTimePicker" | "FxUxVuetifySnackbar" | "FxUxVuetifyPagination" | "FxUxVuetifyTimeline" | "FxUxVuetifyFooter" | "FxUxVuetifyCalendar" | "FxUxVuetifyVirtualScroll" | "FxUxVuetifyAlert" | "FxContexts" | "FxCoreBoot" | "FxCore" | "FxShared" | "FxWorkersBootstrapper" | "OmniaHubWorker" | "FxWorkers" | "Fx" | "FxSpContexts" | "FxUxVuetifyTextinput" | "FxUxVuetifyNumberinput" | "FxUxVuetifySelect" | "FxUxVuetifyTextarea" | "LocalhostingCommands" | "FxUxVuetifyBreadcrumbs" | "FxUxVuetifySelection" | "FxSp" | "FxSpfx" | "SpfxCustomizer" | "SpfxWebpart" | "FxUxVuetifySwitch" | "FxUx" | "FxUxEditor" | "FxUxAdmin" | "FxUxAdminTokenRouter" | "FxUxLibs" | "FxUxVDialog" | "FxUxVuetifyAvatar" | "FxUxVTreeView" | "FxUxVSpeedial" | "FxUxVMenu" | "Vendor" | "PhoneNumberLib" | "FxTenantLanguage" | "FxUxAppProvisioningShared" | "FxUxRichTextEditorExtension" | "MicrosoftTeamsSDK" | "MicrosoftTeamsSDKLoader" | "TeamsSSOScript" | "MediaPickerProviderRegistration" | "FxUxRichTextEditorCore" | "ActionApi" | "ActionHandlerEvents" | "LikeTopicIdProviderRegistration" | "LinkHandlerRegistration" | "EnterpriseGlossaryRegistrationApi" | "AppProvisioningValidatorApi" | "SidePanelRegistrationApi" | "GraphClientRegistrationApi" | "SharepointClientRegistrationApi" | "FilterEngineRegistrationApi" | "TaxonomyFilterEngineRegistrationApi" | "EnterpriseKeywordsFilterEngineRegistrationApi" | "ExtendedTaxonomyFilterEngineRegistrationApi" | "PersonFilterEngineRegistrationApi" | "TagsFilterEngineRegistrationApi" | "BooleanFilterEngineRegistrationApi" | "TextFilterEngineRegistrationApi" | "NumberFilterEngineRegistrationApi" | "DateTimeFilterEngineRegistrationApi" | "ExtendedIdentityFilterEngineRegistrationApi" | "ExtendedBooleanFilterEngineRegistrationApi" | "ExtendedTextFilterEngineRegistrationApi" | "ExtendedIntegerFilterEngineRegistrationApi" | "ExtendedDateTimeFilterEngineRegistrationApi" | "ExtendedDateFilterEngineRegistrationApi" | "ExtendedEmailFilterEngineRegistrationApi" | "ExtendedHtmlFilterEngineRegistrationApi" | "ExtendedLinkFilterEngineRegistrationApi" | "ExtendedMultilineTextFilterEngineRegistrationApi" | "ExtendedMultilingualTextFilterEngineRegistrationApi" | "ExtendedPhoneNumberFilterEngineRegistrationApi" | "ExtendedBirthdayFilterEngineRegistrationApi" | "AppInstanceRollupViewRegistrationApi" | "AppInstanceRollupViewBase" | "UserProfileActionHandlerApi" | "AppInstanceTokenProvider" | "AppPropertiesProvider" | "FxUxEnterprisePropertiesDataSourceApi" | "FxUxPropertiesProviderApi" | "UserPropertiesProvider" | "UserPropertiesByMicrosoftGraphProvider" | "UserPropertiesBySharePointProvider" | "FxUxPropertyDataSourceApi" | "IdentityPropertyApi" | "BuiltinExtendedPropertiesRegistration" | "FxUxCommentDialog" | "FeaturesActivation" | "FxUxFilterEngineCore" | "FxUxBooleanFilterEngineCore" | "FxUxDateFilterEngineCore" | "FxUxNumberFilterEngineCore" | "FxUxPersonFilterEngineCore" | "FxUxTextFilterEngineCore" | "FxUxTaxonomyFilterEngineCore" | "IdentitySyncProviderApi" | "BuiltinSyncProvidersRegistration" | "SharePointIntegrationExternalMapping" | "TextCompletionTenantFeature" | "DallESecretComponent" | "DallESecretRegistrations" | "DallELocalization" | "DallETenantFeature" | "DallEMediaProviderFeature" | "DefaultNotFoundLayout" | "DefaultUnauthorizedLayout" | "StatusCodeLayoutRegistration" | "BuiltinPropertyBindingProviders" | "ExtendedEnterprisePropertyBindingProvider" | "BusinessProfilePropertyBindingProvider" | "UserPropertyBindingProvider" | "MagicLinkCore" | "AdminSystemCore" | "ScopedPermissionApi" | "SecretsCore" | "BusinessProfilesCore" | "BusinessProfileAdminLanguage" | "TenantAdminMediaPickerRegistrations" | "TenantGeneralSettingsRegistration" | "TenantRegionalRegistrations" | "TenantAdminSettingsCore" | "SystemLayoutRegistration" | "SystemLayoutResource" | "BusinessProfileApi", guid>;
|
6
|
+
declare const omniaWebComponentManifests: Record<"Header" | "Chrome" | "JourneyBladeComponent" | "AuthSetup" | "AuthenticationBlock" | "AuthenticationCore" | "LoginOmniaView" | "LoginOmniaRenderer" | "LoginIdentityCreationRequestRenderer" | "Logout" | "MagicLinkLogin" | "MagicLinkSuccess" | "MagicLinkFailure" | "LayoutRendererCanvas" | "VersionedLayoutBladeBuilder" | "VersionedLayoutCreationBlade" | "VersionedLayoutListBladeBuilder" | "VersionedLayoutCheckedOutByOtherMessage" | "VersionedLayoutRenderer" | "VersionedLayoutEditor" | "VersionHistory" | "VersionHistoryPanel" | "UserTypeLayoutRenderer" | "VersionedLayoutController" | "VersionedLayoutEditorChrome" | "BladeHeader" | "OAppBar" | "OAlert" | "OSwiper" | "OSlide" | "OInfiniteScroll" | "OAvatar" | "OLazy" | "OBadge" | "OBtn" | "OBtnGroup" | "OCard" | "OChart" | "OCheckBox" | "OChip" | "ONotification" | "OColumn" | "OColumnGrid" | "ORow" | "ODataTable" | "ODataTableServer" | "ODialog" | "ODivider" | "ODraggable" | "ODatePicker" | "OExpansionpanels" | "OExpansionpanel" | "OForm" | "OHostProvider" | "OIcon" | "OImage" | "OLayout" | "OList" | "OListItem" | "OMain" | "OMenu" | "ONavigationDrawer" | "OPanel" | "OFlex" | "OScrollContainer" | "OProgress" | "ORadio" | "ORadioGroup" | "ORating" | "OSplitpane" | "OSplitpaneItem" | "OSelect" | "OSkeletonLoader" | "OSlider" | "ORangeSlider" | "OSnackbar" | "OSpacer" | "OStepper" | "OStepperStep" | "OSwitch" | "OTable" | "OTab" | "OTabs" | "OText" | "OLink" | "OTextArea" | "OTextField" | "OToolbar" | "OColorPicker" | "OTooltip" | "OTreeView" | "OValidation" | "OPagination" | "Admin" | "AdminShortcut" | "Bladestest" | "Welcome" | "AuthenticationChecker" | "FxUxColorpicker" | "FxUxIframe" | "FxUxDateTimePicker" | "FxSizeContainer" | "Console" | "DevSocketMessage" | "FxUxDialog" | "FxUxConfirmDialog" | "FxUxDocumenticon" | "FxUxStatusMessageOverlay" | "FxUxHeading" | "FxUxSelection" | "FxUxInputToken" | "FxUxIconpicker" | "FxUxJourney" | "FxUxMenuBlade" | "FxUxWizard" | "FxUxPeoplePicker" | "FxUxIcon" | "FxUxButton" | "FxUxDatatable" | "FxUxShapeDivider" | "FxUxShapeDividerSettings" | "FxUxEnterprisePropertiesRichTextFieldDisplay" | "FxUxEnterprisePropertiesTextFieldDisplay" | "FxUxEnterprisePropertiesDateTimeFieldDisplay" | "FxUxEnterprisePropertiesUserFieldDisplay" | "FxUxEnterprisePropertiesBooleanFieldDisplay" | "FxUxEnterprisePropertiesNumberFieldDisplay" | "FxUxEnterprisePropertiesTaxonomyFieldDisplay" | "FxUxEnterprisePropertiesLanguageFieldDisplay" | "FxUxEnterprisePropertiesTagsPropertyDisplay" | "FxUxEnterprisePropertyPicker" | "FxUxEnterprisePropertySetPicker" | "FxUxEnterprisePropertyDataTypeProviderDisplay" | "FxUxSharePointTermItem" | "FxUxLimitedLabel" | "FxSpTermGlossaryMapping" | "FxSpfxWpSetting" | "FxSpfxWp" | "FxUxSettingspane" | "FxUxRollupEmpty" | "FxUxRollupFilter" | "FxUxRollupFilterPicker" | "Signout" | "FxUxTermpicker" | "FxUxTemplatePicker" | "FxUxMediapicker" | "FxUxMediapickerImage" | "FxUxMediapickerVideo" | "FxUxImageGrid" | "FxUxPexelProvider" | "FxUxUnsplashProvider" | "FxUxMediaflowProvider" | "FxUxMediaflowProviderVideoPlayer" | "FxUxMyComputerProvider" | "FxUxFileUploader" | "FxUxBingProvider" | "FxUxCentralImageLocationProvider" | "FxUxSharePointVideoSettings" | "FxUxMicrosoftStreamProvider" | "FxUxYoutubeProvider" | "FxUxVimeoProvider" | "FxUxDallEProvider" | "FxUxImageTransformer" | "FxUxThemeDefinitionEditor" | "FxUxImageEditor" | "FxUxImageTransformEditor" | "SharepointVideoComponent" | "FxUxFieldValidation" | "FxUxLetterAvatar" | "FxUxLanguagePicker" | "FxUxContextLanguagePicker" | "FxUxTimeZonePicker" | "FxUxSiteLogoIcon" | "FxUxTimePeriodPicker" | "FxUxDateTimeZonePicker" | "FxUxDateTimeZoneRenderer" | "FxUxDateTimeFilterQuery" | "FxUxAppProvisioningRenderer" | "FxUxAppProvisioningValidatorWrapper" | "FxUxAppRouteInput" | "FxUxAppTitleInput" | "FxUxAppDescriptionInput" | "FxUxAppShowInPublicListingsInput" | "FxUxAppImageInput" | "FxUxAppPropertiesInput" | "SpUxAppWithSharePointAliasInput" | "FxUxAppPropertyNamingPolicyInput" | "FxUxVersionedLayoutUrlInput" | "FxUxAppInstanceEditingJourney" | "FxUxAppInstancePermissionBlade" | "FxUxAppInstanceRoutePathBlade" | "FxUxAppInstanceDeleteBlade" | "FxUxAppProvisioningWizard" | "FxUxAppInstanceInformationStep" | "FxUxAppInstanceUsersStep" | "FxUxAppInstanceEnterpriseStep" | "FxUxAppInstanceProvisioningSummaryStep" | "FxUxAppInstanceProgressBlade" | "FxUxAppInstanceRollup" | "FxUxAppInstanceRollupSettings" | "FxUxAppInstanceRollupListView" | "FxUxAppInstanceRollupRenderer" | "FxUxAppInstanceRollupMetricDetail" | "FxUxAppInstanceRollupListViewSettings" | "FxUxAppInstanceRollupCardView" | "FxUxAppInstanceRollupCardViewSettings" | "FxUxQueryablePropertiesJourney" | "FxUxDateTimeFieldEdit" | "FxUxPersonFieldEdit" | "FxUxBooleanFieldEdit" | "FxUxTextFieldEdit" | "FxUxRichTextFieldEdit" | "FxUxRichTextEditorSettingsComponent" | "FxUxRichTextEditorComponent" | "FxUxRichTextEditorRendererCore" | "FxUxRichTextEditorRendererComponent" | "FxUxNumberFieldEdit" | "FxUxLanguageFieldEdit" | "FxUxTagsPropertyEdit" | "FxUxDataFieldEdit" | "FxUxPersonFieldValueDefinition" | "FxUxRichTextFieldValueDefinition" | "FxUxBooleanFieldValueDefinition" | "FxUxDataFieldValueDefinition" | "FxUxDateTimeFieldValueDefinition" | "FxUxMediaFieldValueDefinition" | "FxUxNumberFieldValueDefinition" | "FxUxTextFieldValueDefinition" | "FxUxLanguageFieldValueDefinition" | "FxUxTagsPropertyValueDefinition" | "FxUxTestFeaturesComponent" | "FxUxCommentComponent" | "FxUxPeopleTaggingComponent" | "FxUxCommentLikeTemplate" | "FxUxContentDialog" | "FxUxLikeComponent" | "FxUxReactionStyle" | "FxUxReactionsComponent" | "FxUxReactionsStyle" | "FxUxLikeListingTemplate" | "FxUxPostLikeListingTemplate" | "FxUxPermissionInput" | "FxUxTenantAdminPermissionInput" | "FxUxSecurityTrimmer" | "FxUxSpacingPicker" | "FxUxFilterPicker" | "FxUxPickerWrapper" | "FxUxFilterEngineSettings" | "FxUxFilterEngineDialogContent" | "FxUxFilterEnginePersonPropertySettings" | "FxUxFilterEngineTagsPropertySettings" | "FxUxFilterEnginePersonPropertyDefaultValueInput" | "FxUxFilterEngineTagsPropertyDefaultValueInput" | "FxUxFilterEngineBooleanPropertySettings" | "FxUxFilterEngineBooleanPropertyDefaultValueInput" | "FxUxFilterEngineTextPropertySettings" | "FxUxFilterEngineTextPropertyDefaultValueInput" | "FxUxFilterEngineDateTimePropertySettings" | "FxUxFilterEngineDateTimePropertyDefaultValueInput" | "FxUxFilterEngineTaxonomyPropertySettings" | "FxUxFilterEngineTaxonomyPropertyDefaultValueInput" | "FxUxFilterEngineExtendedTaxonomyPropertyDefaultValueInput" | "FxUxFilterEngineNumberPropertySettings" | "FxUxFilterEngineNumberPropertyDefaultValueInput" | "FxUxFilterEngineRenderer" | "FxUxTaxonomyFilterEngineRenderer" | "FxUxPersonFilterEngineRenderer" | "FxUxTagsFilterEngineRenderer" | "FxUxTextFilterEngineRenderer" | "FxUxBooleanFilterEngineRenderer" | "FxUxDateFilterEngineRenderer" | "FxUxDateFilterEnginePeriodSlider" | "FxUxNumberFilterEngineRenderer" | "FxUxFilterEngineSelectionsArea" | "FxUxFilterEngineSelectionsAreaTaxonomyProperty" | "FxUxFilterEngineSelectionsAreaPersonProperty" | "FxUxFilterEngineSelectionsAreaTagsProperty" | "FxUxFilterEngineSelectionsAreaBooleanProperty" | "FxUxFilterEngineSelectionsAreaTextProperty" | "FxUxFilterEngineSelectionsAreaDateTimeProperty" | "FxUxFilterEngineSelectionsAreaNumberProperty" | "FxUxFilterEnginePropertyDropdown" | "FxUxFilterEnginePropertyList" | "SpTermSetPicker" | "SpTermPicker" | "SpTermPickerTree" | "SpTermPickerSearch" | "SpTaxonomyFieldEdit" | "SpTaxonomyFieldSettings" | "SpTaxonomyFieldValueDefinition" | "SpEnterprisekeywordsFieldEdit" | "SpEnterpriseKeywordsFieldValueDefinition" | "SpEnterpriseKeywordsFieldSettings" | "SpEnterpriseKeywordsFieldDisplay" | "SpQueryFilterBuilder" | "TargetingFilter" | "FxUxCommentDialogComponent" | "FxUxMultilingualInput" | "FxUxMultiTextInput" | "FxUxTextTranslator" | "FxUxErrorMessage" | "FxUxInputLanguagePicker" | "FxUxDashboardNumericIndicator" | "FxUxDashboardBarChartIndicator" | "FeaturesJourney" | "FeaturesJourneyTenant" | "FeaturesJourneyAppInstance" | "FeaturesJourneyApp" | "MentionComponent" | "EmoticonComponent" | "UrlInputComponent" | "FxUxProfileCardRenderer" | "FxUxProfileCardComponent" | "FxUxProfileCardDialogComponent" | "FxUxProfileCardCore" | "FxUxProfileAboutUser" | "FxUxProfilePersona" | "FxUxReportees" | "FxUxOrganizationTree" | "FxUxEditorChrome" | "LikeActionHandler" | "LikeActionRegistration" | "LikeActionSettings" | "FxUxEnterpriseGlossaryPicker" | "FxUxEnterprisePropertiesDataSourcePicker" | "FxUxPropertyPicker" | "FxUxPropertyRenderer" | "FxUxPropertyDefintionRenderer" | "FxUxPropertyDefintionConfiguration" | "FxUxPropertyConfigurationBaseRenderer" | "FxUxLabelOptionsRenderer" | "FxUxPropertyLocking" | "UserPropertyConfigurationRenderer" | "FxUxPropertyDatasourceRenderer" | "FxUxPropertyInput" | "FxUxPostTemplate" | "FxUxPostComponent" | "AppManagement" | "TabsManagement" | "AppManagementInstanceTab" | "AppManagementTemplateTab" | "AppManagementLayoutTab" | "AppManagementNamingPolicyTab" | "TermPropertyDisplay" | "TermPropertyEditor" | "TermPropertyConfiguration" | "FxUxFileUploaderMyComputerProvider" | "LinkHandlerDeepLinkDialog" | "PreSetupWizard" | "LanguagePropertyDisplay" | "LanguagePropertyEditor" | "IdentityPropertyDisplay" | "IdentityPropertyEditor" | "SPFxUxLanguagePicker" | "FxUxUserPropertyEditorRenderer" | "FxUxGroupPropertyEditorRenderer" | "FxUxDynamicGroupPropertyEditorRenderer" | "HashTagList" | "BuiltinUserPropertyProviderDisplay" | "BuiltinUserPropertyProviderEditor" | "MSGraphUserPropertyProviderDisplay" | "MSGraphUserPropertyProviderEditor" | "SharePointUserPropertyProviderDisplay" | "SharePointUserPropertyProviderEditor" | "FxUxConnectedTenantPicker" | "FxUxSidePanel" | "FeaturesJourneyProperties" | "FxPhotoWallProvider" | "FxSliderDialogProvider" | "FxUxStatusCodeRenderer" | "DateTimePropertyDisplay" | "DateTimePropertyEditor" | "DateTimePropertyConfiguration" | "BirthdayPropertyConfiguration" | "AdminSystemJourney" | "CustomEmailJourney" | "AuthenticationScreenBlade" | "AuthenticationScreenChrome" | "TenantUserManagementJourney" | "BusinessProfileUserManagementJourney" | "UserManagementCore" | "UserManagementUserTypeListingBlade" | "UserManagementSyncProviderListingBlade" | "UserManagementSyncProviderSettingsBlade" | "UserManagementSyncProviderLogsBlade" | "UserManagementUserJourney" | "UserManagementUserActiveJourney" | "UserManagementIdentityCreationRequestPendingApprovalListing" | "BusinessProfileAuthenticationBlade" | "UserManagementDeletedUserListing" | "UserManagementGroupListingBlade" | "UserManagementActiveGroupListing" | "UserManagementDeletedGroupListing" | "UserManagementUserTypeCreateDialog" | "UserManagementUserTypeDetailBlade" | "UserManagementActiveUserListing" | "UserManagementUserDetailBlade" | "UserManagementUserAuthenticationBlade" | "UserManagementGroupDetailBlade" | "UserManagementAuthenticationSettingsBlade" | "UserManagementDynamicGroupListingBlade" | "UserManagementDynamicGroupDetailBlade" | "UserManagementUserPropertyListingBlade" | "UserManagementUserPropertyDetailBlade" | "UserManagementUserDetailBladeAuthenticationTab" | "UserManagementUserDetailBladePropertiesTab" | "UserManagementBulkImportBlade" | "UserManagementLoginLogBlade" | "UserManagementSelfService" | "TenantAdministratorPermissionJourney" | "BusinessProfileAdministratorPermissionJourney" | "TenantSecretsJourney" | "BusinessProfileSecretsJourney" | "SystemAccountForm" | "BusinessProfileJourney" | "BusinessProfileSettings" | "BusinessProfileLanguage" | "TenantMediaPickerCore" | "TenantMediaPicker" | "MediaPickerCropRatios" | "MediaPickerFileSizeLimitSettings" | "MediaPickerScalingSettingsListing" | "TenantGeneralSettings" | "TenantRegional" | "TenantAdminSetting" | "SystemLayoutJourney", guid>;
|
7
7
|
declare module "./Tooling" {
|
8
8
|
interface IEnums$ {
|
9
9
|
omniaResourceManifests: typeof omniaResourceManifests;
|
package/Enums.tooling.js
CHANGED
@@ -864,7 +864,18 @@ const omniaResourceManifests = enum$("omniaResourceManifests").value({
|
|
864
864
|
BusinessProfilePropertyBindingProvider: (0, fx_models_1.guid)("16c51f16-1aa9-4540-a934-5dea88ee8c7d"),
|
865
865
|
UserPropertyBindingProvider: (0, fx_models_1.guid)("90deab93-d8f9-45bf-8e01-1c478743ff4b"),
|
866
866
|
MagicLinkCore: (0, fx_models_1.guid)("801bcf8f-94fd-4619-843f-7f1fc0c57b3c"),
|
867
|
-
AdminSystemCore: (0, fx_models_1.guid)("183aec86-8ffd-4f33-91f3-23483c8e35bb")
|
867
|
+
AdminSystemCore: (0, fx_models_1.guid)("183aec86-8ffd-4f33-91f3-23483c8e35bb"),
|
868
|
+
ScopedPermissionApi: (0, fx_models_1.guid)("936def04-0de6-4af2-982d-c2669923246b"),
|
869
|
+
SecretsCore: (0, fx_models_1.guid)("2e299c8d-7b2d-4eb0-8878-94e883922735"),
|
870
|
+
BusinessProfilesCore: (0, fx_models_1.guid)("984816ee-3eda-45d9-bb0b-cda88cc89e17"),
|
871
|
+
BusinessProfileAdminLanguage: (0, fx_models_1.guid)("0efcf37c-6bea-4f94-bd7d-07aeb9f9dc6c"),
|
872
|
+
TenantAdminMediaPickerRegistrations: (0, fx_models_1.guid)("04b16bb1-8896-44e1-95c1-81c57c20420b"),
|
873
|
+
TenantGeneralSettingsRegistration: (0, fx_models_1.guid)("709d1d2b-3292-4b22-8a4f-fac8d2cbec9a"),
|
874
|
+
TenantRegionalRegistrations: (0, fx_models_1.guid)("17deb777-2e63-4579-950e-7e8c7214ae7f"),
|
875
|
+
TenantAdminSettingsCore: (0, fx_models_1.guid)("8126ac2b-2b78-48b2-aa50-9fd70329946f"),
|
876
|
+
SystemLayoutRegistration: (0, fx_models_1.guid)("a4c571d0-6127-4d38-8030-02c54c05f562"),
|
877
|
+
SystemLayoutResource: (0, fx_models_1.guid)("73330813-6b59-4011-a2b9-c2a39dcfe807"),
|
878
|
+
BusinessProfileApi: (0, fx_models_1.guid)("9d194da1-8def-4950-903a-b99513dd34dc"),
|
868
879
|
});
|
869
880
|
const omniaWebComponentManifests = enum$("omniaWebComponentManifests").value({
|
870
881
|
JourneyBladeComponent: (0, fx_models_1.guid)("4357bb82-64e3-482c-8710-afed3b2be35c"),
|
@@ -1242,9 +1253,55 @@ const omniaWebComponentManifests = enum$("omniaWebComponentManifests").value({
|
|
1242
1253
|
DateTimePropertyConfiguration: (0, fx_models_1.guid)("0aa4b891-6fcf-4b1f-959c-8fd04ef8bfe9"),
|
1243
1254
|
BirthdayPropertyConfiguration: (0, fx_models_1.guid)("5b7f85ec-36cf-4e88-911e-7951ccec4e2b"),
|
1244
1255
|
AdminSystemJourney: (0, fx_models_1.guid)("8d451f6c-bcf4-42c3-a4a0-7d3ad5de09a3"),
|
1245
|
-
CustomEmailJourney: (0, fx_models_1.guid)("61fdccaf-f48f-471d-be82-2dc9b5911c85")
|
1256
|
+
CustomEmailJourney: (0, fx_models_1.guid)("61fdccaf-f48f-471d-be82-2dc9b5911c85"),
|
1257
|
+
AuthenticationScreenBlade: (0, fx_models_1.guid)("ecdcbe77-649d-423b-9f45-a2b3a4369a83"),
|
1258
|
+
AuthenticationScreenChrome: (0, fx_models_1.guid)("479f9b8e-edeb-4c41-95a3-1ac3e2b5299e"),
|
1259
|
+
TenantUserManagementJourney: (0, fx_models_1.guid)("1d19aeb7-22e4-4b9e-9d26-17035854dd2a"),
|
1260
|
+
BusinessProfileUserManagementJourney: (0, fx_models_1.guid)("9539268b-7419-44dd-9707-96a5ff9d0b0d"),
|
1261
|
+
UserManagementCore: (0, fx_models_1.guid)("2b3fc3f2-bc60-44a0-8688-764f3b2d62c8"),
|
1262
|
+
UserManagementUserTypeListingBlade: (0, fx_models_1.guid)("ebd9788a-b217-4868-8f4e-594ecf568806"),
|
1263
|
+
UserManagementSyncProviderListingBlade: (0, fx_models_1.guid)("242dc560-2ede-41f0-b6d4-151884a2ec63"),
|
1264
|
+
UserManagementSyncProviderSettingsBlade: (0, fx_models_1.guid)("0ab38b6f-9852-40ec-83c4-37db8a27d7c6"),
|
1265
|
+
UserManagementSyncProviderLogsBlade: (0, fx_models_1.guid)("6a15d7ed-ea3d-4b54-8b71-d8a7f3e50295"),
|
1266
|
+
UserManagementUserJourney: (0, fx_models_1.guid)("f5842aad-ad83-4b4b-b7b8-ef9d6eb8b8e1"),
|
1267
|
+
UserManagementUserActiveJourney: (0, fx_models_1.guid)("6f1fc259-6ddb-411a-bf17-41ed422947e3"),
|
1268
|
+
UserManagementIdentityCreationRequestPendingApprovalListing: (0, fx_models_1.guid)("6f3f70ca-afc5-4724-b3f8-405986a21717"),
|
1269
|
+
BusinessProfileAuthenticationBlade: (0, fx_models_1.guid)("4c9410c5-86ff-49a6-a493-f8a35bb3f990"),
|
1270
|
+
UserManagementDeletedUserListing: (0, fx_models_1.guid)("a7dfb3df-024c-49ac-a5f0-6dfd46c2ab65"),
|
1271
|
+
UserManagementGroupListingBlade: (0, fx_models_1.guid)("0a208072-d45f-4f49-8d59-ab7b9da9a10d"),
|
1272
|
+
UserManagementActiveGroupListing: (0, fx_models_1.guid)("f333ebaa-d009-4169-a2ff-868e8b751bf9"),
|
1273
|
+
UserManagementDeletedGroupListing: (0, fx_models_1.guid)("3620baa9-5501-45fa-955e-79d176a72a51"),
|
1274
|
+
UserManagementUserTypeCreateDialog: (0, fx_models_1.guid)("b4acc93e-c207-4b9c-b65d-d74e0058f416"),
|
1275
|
+
UserManagementUserTypeDetailBlade: (0, fx_models_1.guid)("0f51dc5b-13ae-4c3e-8b74-eab4eb3b289b"),
|
1276
|
+
UserManagementActiveUserListing: (0, fx_models_1.guid)("1972b656-c68c-4c50-afa7-c76c8959b88d"),
|
1277
|
+
UserManagementUserDetailBlade: (0, fx_models_1.guid)("fb9aa542-fd41-4c5f-8468-aa0ad67d11f7"),
|
1278
|
+
UserManagementUserAuthenticationBlade: (0, fx_models_1.guid)("2de8ec5f-9d03-4828-b192-8ba37e48b322"),
|
1279
|
+
UserManagementGroupDetailBlade: (0, fx_models_1.guid)("836c198b-2a2c-418f-89a0-cf47ed44092d"),
|
1280
|
+
UserManagementAuthenticationSettingsBlade: (0, fx_models_1.guid)("a95a8b4a-7e94-4190-9240-87b361950843"),
|
1281
|
+
UserManagementDynamicGroupListingBlade: (0, fx_models_1.guid)("9c3a9218-af53-4e48-b95b-a122eb43db64"),
|
1282
|
+
UserManagementDynamicGroupDetailBlade: (0, fx_models_1.guid)("f43ef789-418d-4f56-bd27-88420f3d9823"),
|
1283
|
+
UserManagementUserPropertyListingBlade: (0, fx_models_1.guid)("77fa3438-c920-4b32-bddc-1b8361e530c2"),
|
1284
|
+
UserManagementUserPropertyDetailBlade: (0, fx_models_1.guid)("3967363b-80cd-4b12-900f-7a9c7975bf6a"),
|
1285
|
+
UserManagementUserDetailBladeAuthenticationTab: (0, fx_models_1.guid)("95a66c49-40c7-442c-b815-359c5d299365"),
|
1286
|
+
UserManagementUserDetailBladePropertiesTab: (0, fx_models_1.guid)("9c7c9267-6bae-4157-a588-98eecb88663d"),
|
1287
|
+
UserManagementBulkImportBlade: (0, fx_models_1.guid)("8df3cbab-53d4-4091-8fe0-a44f88e92018"),
|
1288
|
+
UserManagementLoginLogBlade: (0, fx_models_1.guid)("f00e21cd-5e0f-472a-a91d-c2b927e25fa7"),
|
1289
|
+
UserManagementSelfService: (0, fx_models_1.guid)("36d0078c-1c79-486b-b4e3-92a97f03bdb5"),
|
1290
|
+
TenantAdministratorPermissionJourney: (0, fx_models_1.guid)("af0c761e-8ba5-4dee-858c-a7593adcce76"),
|
1291
|
+
BusinessProfileAdministratorPermissionJourney: (0, fx_models_1.guid)("01dbddb7-0b1a-48dc-af16-cd4f534cd2de"),
|
1292
|
+
TenantSecretsJourney: (0, fx_models_1.guid)("1d60e6da-39df-4458-b621-3b4d64bf2843"),
|
1293
|
+
BusinessProfileSecretsJourney: (0, fx_models_1.guid)("b52c92f6-5574-4e1d-a37f-ca6159c9eb1d"),
|
1294
|
+
SystemAccountForm: (0, fx_models_1.guid)("0f7957bf-937e-4563-992a-f142e027d1d2"),
|
1295
|
+
BusinessProfileJourney: (0, fx_models_1.guid)("2b69d826-807c-470e-9db1-0a19bba2d1e0"),
|
1296
|
+
BusinessProfileSettings: (0, fx_models_1.guid)("4b86a436-4255-448c-a502-e1daeb94d142"),
|
1297
|
+
BusinessProfileLanguage: (0, fx_models_1.guid)("936d6849-3488-4a6f-b16c-91b0c625e837"),
|
1298
|
+
TenantMediaPickerCore: (0, fx_models_1.guid)("7e8bedff-1e6f-412d-9b5d-3af801780310"),
|
1299
|
+
TenantMediaPicker: (0, fx_models_1.guid)("37329e5d-5cf7-4ff1-ba63-3ce14b88e51c"),
|
1300
|
+
MediaPickerCropRatios: (0, fx_models_1.guid)("a49a79f5-9f1e-471d-813f-12926f411f9c"),
|
1301
|
+
MediaPickerFileSizeLimitSettings: (0, fx_models_1.guid)("ab1f3fec-ab21-4791-98cc-3a4934b6625d"),
|
1302
|
+
MediaPickerScalingSettingsListing: (0, fx_models_1.guid)("19b22417-acb6-41c1-96f9-47ea4d60f4b2"),
|
1303
|
+
TenantGeneralSettings: (0, fx_models_1.guid)("62529631-696b-457b-bc04-18c888fc940f"),
|
1304
|
+
TenantRegional: (0, fx_models_1.guid)("fcf7035a-4e22-428f-bcdd-47843d4882ba"),
|
1305
|
+
TenantAdminSetting: (0, fx_models_1.guid)("5618d436-945b-4fdf-b432-93dac1a541a6"),
|
1306
|
+
SystemLayoutJourney: (0, fx_models_1.guid)("29e4919f-ca93-492d-9b81-ddca5a5dc28a"),
|
1246
1307
|
});
|
1247
|
-
// const test = o$.enums.securityIdentities.AnonymousIdentity;
|
1248
|
-
// function aaa(indentity: SecurityIdentityType){
|
1249
|
-
// }
|
1250
|
-
// const bb = aaa(o$.enums.securityIdentities.AnonymousIdentity);
|
package/Exposes.d.ts
CHANGED
@@ -137,6 +137,7 @@ export * from "./system-logs";
|
|
137
137
|
export * from "./ux";
|
138
138
|
export * from "./velcron";
|
139
139
|
export * from "./versionedlayout";
|
140
|
+
export * from "./ScopedPermissionRegistraion";
|
140
141
|
export * from "./FileIdentifier";
|
141
142
|
export * from "./FilePicker";
|
142
143
|
export * from "./LoginLogFilter";
|
@@ -146,3 +147,4 @@ export * from "./PromotedTagOptions";
|
|
146
147
|
export * from "./SharepointVideo";
|
147
148
|
export * from "./UserAgent";
|
148
149
|
export * from "./connected-tenants";
|
150
|
+
export * from "./TenantAdminSettingSection";
|
package/Exposes.js
CHANGED
@@ -149,6 +149,7 @@ tslib_1.__exportStar(require("./system-logs"), exports);
|
|
149
149
|
tslib_1.__exportStar(require("./ux"), exports);
|
150
150
|
tslib_1.__exportStar(require("./velcron"), exports);
|
151
151
|
tslib_1.__exportStar(require("./versionedlayout"), exports);
|
152
|
+
tslib_1.__exportStar(require("./ScopedPermissionRegistraion"), exports);
|
152
153
|
//************************************************************************************ */
|
153
154
|
// End of folder exports
|
154
155
|
//************************************************************************************ */
|
@@ -161,3 +162,4 @@ tslib_1.__exportStar(require("./PromotedTagOptions"), exports);
|
|
161
162
|
tslib_1.__exportStar(require("./SharepointVideo"), exports);
|
162
163
|
tslib_1.__exportStar(require("./UserAgent"), exports);
|
163
164
|
tslib_1.__exportStar(require("./connected-tenants"), exports);
|
165
|
+
tslib_1.__exportStar(require("./TenantAdminSettingSection"), exports);
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { PermissionInputSettings, RolePermissionSetting, guid } from "@omnia/fx-models";
|
2
|
+
export interface ScopedPermissionRegistraion {
|
3
|
+
title: string;
|
4
|
+
permissionInputSettings: PermissionInputSettings;
|
5
|
+
serviceId?: guid;
|
6
|
+
onValueUpdate?: (rolePermisssionSetting: Array<RolePermissionSetting>) => Promise<void>;
|
7
|
+
type?: TypePermission;
|
8
|
+
}
|
9
|
+
export declare enum TypePermission {
|
10
|
+
ProfileAdmin = 0,
|
11
|
+
Workspace = 1,
|
12
|
+
Analytics = 2,
|
13
|
+
ScopedPermissions = 3
|
14
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TypePermission = void 0;
|
4
|
+
var TypePermission;
|
5
|
+
(function (TypePermission) {
|
6
|
+
TypePermission[TypePermission["ProfileAdmin"] = 0] = "ProfileAdmin";
|
7
|
+
TypePermission[TypePermission["Workspace"] = 1] = "Workspace";
|
8
|
+
TypePermission[TypePermission["Analytics"] = 2] = "Analytics";
|
9
|
+
TypePermission[TypePermission["ScopedPermissions"] = 3] = "ScopedPermissions";
|
10
|
+
})(TypePermission || (exports.TypePermission = TypePermission = {}));
|
package/Secrets.d.ts
CHANGED
@@ -38,3 +38,18 @@ export interface SecretField {
|
|
38
38
|
export interface SecretForm {
|
39
39
|
fields: SecretField[];
|
40
40
|
}
|
41
|
+
export interface SecretInfoViewModel extends SecretInfo {
|
42
|
+
localizedTitle: string;
|
43
|
+
localizedBladeTitle: string;
|
44
|
+
}
|
45
|
+
export interface ISecretFormApi {
|
46
|
+
save(callbackSave: (secret: Secret) => Promise<boolean>): Promise<boolean>;
|
47
|
+
}
|
48
|
+
export interface ISecretFormComponentProps {
|
49
|
+
modelValue?: Secret;
|
50
|
+
"v-model"?: Secret;
|
51
|
+
getApi(api: ISecretFormApi): void;
|
52
|
+
"onUpdate:modelValue"?: (secret: Secret) => void;
|
53
|
+
profileId?: guid;
|
54
|
+
bladeId?: guid;
|
55
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { BladeSizes, IIcon } from "@omnia/fx-models";
|
2
|
+
export interface TenantAdminSettingsSection {
|
3
|
+
/**
|
4
|
+
* The title of the navigation node
|
5
|
+
*/
|
6
|
+
title: string;
|
7
|
+
/**
|
8
|
+
* The icon to use
|
9
|
+
* */
|
10
|
+
icon: IIcon;
|
11
|
+
/**
|
12
|
+
* The element that will be rendered when selected
|
13
|
+
*/
|
14
|
+
elementToRender: string;
|
15
|
+
/**
|
16
|
+
* This influence the order of the navigation nodes, be nice, use ordering with gap -100, 0, 100, 200
|
17
|
+
So other extensions etc can inject between
|
18
|
+
*/
|
19
|
+
weight: number;
|
20
|
+
/**
|
21
|
+
* The size of blade
|
22
|
+
* */
|
23
|
+
bladeSize?: BladeSizes;
|
24
|
+
}
|
@@ -36,6 +36,10 @@ export interface EnterprisePropertyDefinition {
|
|
36
36
|
uniqueMultilingualTitle: string;
|
37
37
|
deletedAt?: Date;
|
38
38
|
}
|
39
|
+
export interface EnterprisePropertyViewModel extends EnterprisePropertyDefinition {
|
40
|
+
isDeleting: boolean;
|
41
|
+
definitionTitle: string;
|
42
|
+
}
|
39
43
|
export interface ProvisioningTemplateEnterpriseProperty {
|
40
44
|
id: guid;
|
41
45
|
internalName: string;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { guid, MultilingualString, MediaPickerImageRatioDefinition, MediaPickerRollupImageRatioDefinition } from "@omnia/fx-models";
|
2
|
+
export declare class AdminMediaPickerImageRatioDefinition implements MediaPickerImageRatioDefinition {
|
3
|
+
uniqueId: guid;
|
4
|
+
title: MultilingualString;
|
5
|
+
x: number;
|
6
|
+
y: number;
|
7
|
+
undeletable: boolean;
|
8
|
+
constructor(uniqueId: guid, title: MultilingualString, x: number, y: number, undeletable: boolean);
|
9
|
+
}
|
10
|
+
export declare class AdminMediaPickerRollupImageRatioDefinition implements MediaPickerRollupImageRatioDefinition {
|
11
|
+
uniqueId: guid;
|
12
|
+
title: MultilingualString;
|
13
|
+
x: number;
|
14
|
+
y: number;
|
15
|
+
undeletable: boolean;
|
16
|
+
enableInRollup: boolean;
|
17
|
+
constructor(uniqueId: guid, title: MultilingualString, x: number, y: number, undeletable: boolean);
|
18
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.AdminMediaPickerRollupImageRatioDefinition = exports.AdminMediaPickerImageRatioDefinition = void 0;
|
4
|
+
class AdminMediaPickerImageRatioDefinition {
|
5
|
+
constructor(uniqueId, title, x, y, undeletable) {
|
6
|
+
this.uniqueId = uniqueId;
|
7
|
+
this.title = title;
|
8
|
+
this.x = x;
|
9
|
+
this.y = y;
|
10
|
+
this.undeletable = undeletable;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
exports.AdminMediaPickerImageRatioDefinition = AdminMediaPickerImageRatioDefinition;
|
14
|
+
class AdminMediaPickerRollupImageRatioDefinition {
|
15
|
+
constructor(uniqueId, title, x, y, undeletable) {
|
16
|
+
this.uniqueId = uniqueId;
|
17
|
+
this.title = title;
|
18
|
+
this.x = x;
|
19
|
+
this.y = y;
|
20
|
+
this.undeletable = undeletable;
|
21
|
+
this.enableInRollup = true;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
exports.AdminMediaPickerRollupImageRatioDefinition = AdminMediaPickerRollupImageRatioDefinition;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { guid, MediaPickerEnums, MultilingualString, MediaPickerImageScalingDefinition } from "@omnia/fx-models";
|
2
|
+
export declare class AdminMediaPickerImageScalingDefinition implements MediaPickerImageScalingDefinition {
|
3
|
+
uniqueId: guid;
|
4
|
+
title: MultilingualString;
|
5
|
+
maxDimension: number;
|
6
|
+
formatTypeSettings: MediaPickerEnums.ScalingFormatTypes;
|
7
|
+
compressQuality?: number;
|
8
|
+
constructor(uniqueId: guid, title: MultilingualString, maxDimension: number, formatTypeSettings: MediaPickerEnums.ScalingFormatTypes, compressQuality?: number);
|
9
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.AdminMediaPickerImageScalingDefinition = void 0;
|
4
|
+
class AdminMediaPickerImageScalingDefinition {
|
5
|
+
constructor(uniqueId, title, maxDimension, formatTypeSettings, compressQuality) {
|
6
|
+
this.uniqueId = uniqueId;
|
7
|
+
this.title = title;
|
8
|
+
this.maxDimension = maxDimension;
|
9
|
+
this.formatTypeSettings = formatTypeSettings;
|
10
|
+
this.compressQuality = compressQuality;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
exports.AdminMediaPickerImageScalingDefinition = AdminMediaPickerImageScalingDefinition;
|
package/media-picker/index.d.ts
CHANGED
@@ -14,3 +14,5 @@ export * from "./MediaPickerSearchProvider";
|
|
14
14
|
export * from "./localize";
|
15
15
|
export * from "./MediaPickerProvider";
|
16
16
|
export * from "./interfaces";
|
17
|
+
export * from "./AdminMediaPickerImageRatioDefinition";
|
18
|
+
export * from "./AdminMediaPickerImageScalingDefinition";
|
package/media-picker/index.js
CHANGED
@@ -17,3 +17,5 @@ tslib_1.__exportStar(require("./MediaPickerSearchProvider"), exports);
|
|
17
17
|
tslib_1.__exportStar(require("./localize"), exports);
|
18
18
|
tslib_1.__exportStar(require("./MediaPickerProvider"), exports);
|
19
19
|
tslib_1.__exportStar(require("./interfaces"), exports);
|
20
|
+
tslib_1.__exportStar(require("./AdminMediaPickerImageRatioDefinition"), exports);
|
21
|
+
tslib_1.__exportStar(require("./AdminMediaPickerImageScalingDefinition"), exports);
|
package/package.json
CHANGED
@@ -0,0 +1,19 @@
|
|
1
|
+
import { ApiPath, ScopedPermissionRegistraion } from "@omnia/fx/models";
|
2
|
+
export interface IScopedPermissionRegistrationApi {
|
3
|
+
registerTenantScoped: (...registrations: ScopedPermissionRegistraion[]) => void;
|
4
|
+
registerProfileScoped: (...registrations: ScopedPermissionRegistraion[]) => void;
|
5
|
+
getTenantScopedRegistrations: () => ScopedPermissionRegistraion[];
|
6
|
+
getProfileScopedRegistrations: () => ScopedPermissionRegistraion[];
|
7
|
+
}
|
8
|
+
declare module "./UxApi" {
|
9
|
+
interface IOmniaUxApi {
|
10
|
+
scopedPermission: {
|
11
|
+
registration: Promise<IScopedPermissionRegistrationApi>;
|
12
|
+
};
|
13
|
+
}
|
14
|
+
interface IOmniaUxExtendApiManifest {
|
15
|
+
scopedPermission: {
|
16
|
+
registration: ApiPath;
|
17
|
+
};
|
18
|
+
}
|
19
|
+
}
|
package/ux/index.d.ts
CHANGED
@@ -21,4 +21,5 @@ export * from "./EnterprisePropertyToPropertySettingMappingApi";
|
|
21
21
|
export * from "./MediaGalleryApi";
|
22
22
|
export * from "./DynamicPlaceholderApi";
|
23
23
|
export * from "./RouterApi";
|
24
|
+
export * from "./ScopedPermissionApi";
|
24
25
|
export { type Directives, type DirectiveDefinition, type IInternalDirectiveRegistration } from "./Directive";
|
package/ux/index.js
CHANGED
@@ -24,3 +24,4 @@ tslib_1.__exportStar(require("./EnterprisePropertyToPropertySettingMappingApi"),
|
|
24
24
|
tslib_1.__exportStar(require("./MediaGalleryApi"), exports);
|
25
25
|
tslib_1.__exportStar(require("./DynamicPlaceholderApi"), exports);
|
26
26
|
tslib_1.__exportStar(require("./RouterApi"), exports);
|
27
|
+
tslib_1.__exportStar(require("./ScopedPermissionApi"), exports);
|