@omnia/fx-models 7.9.28-preview → 7.9.28

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.
Files changed (33) hide show
  1. package/BusinessProfileGptImagePromptDefault.d.ts +5 -0
  2. package/BusinessProfileGptImagePromptDefault.js +11 -0
  3. package/Constants.d.ts +4 -0
  4. package/Constants.js +5 -1
  5. package/Enums.d.ts +1 -0
  6. package/Enums.js +1 -0
  7. package/Exposes.d.ts +1 -0
  8. package/Exposes.js +1 -0
  9. package/Layout.d.ts +2 -0
  10. package/ManifestIds.d.ts +4 -0
  11. package/ManifestIds.js +10 -0
  12. package/OrganizationTree.d.ts +1 -1
  13. package/analytics/BusinessProfileAnalyticsSettings.d.ts +2 -0
  14. package/analytics/BusinessProfileAnalyticsSettings.js +2 -0
  15. package/azure-openai/dalle/CreateImageResponse.d.ts +2 -1
  16. package/azure-openai/gptimage/TextToImagesRequest.d.ts +5 -0
  17. package/azure-openai/gptimage/TextToImagesRequest.js +2 -0
  18. package/azure-openai/gptimage/TextToImagesResponse.d.ts +10 -0
  19. package/azure-openai/gptimage/TextToImagesResponse.js +2 -0
  20. package/azure-openai/gptimage/index.d.ts +2 -0
  21. package/azure-openai/gptimage/index.js +5 -0
  22. package/azure-openai/index.d.ts +1 -0
  23. package/azure-openai/index.js +1 -0
  24. package/blockgallery/BlockTemplates.d.ts +2 -1
  25. package/identities/Identity.js +3 -0
  26. package/identities/UserIdentity.js +1 -1
  27. package/media-picker/Providers/GptImageProvider.d.ts +18 -0
  28. package/media-picker/Providers/GptImageProvider.js +23 -0
  29. package/media-picker/Providers/index.d.ts +1 -1
  30. package/media-picker/Providers/index.js +1 -1
  31. package/package.json +2 -2
  32. package/properties/definitions/IdentityPropertyDefinition.d.ts +2 -0
  33. package/richtext-editor-extensions/HeadingExtension.d.ts +5 -0
@@ -0,0 +1,5 @@
1
+ import { BusinessProfileProperty } from "./BusinessProfile";
2
+ export declare class BusinessProfileGptImagePromptDefaultSettings extends BusinessProfileProperty {
3
+ defaultPromptId: number;
4
+ constructor();
5
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BusinessProfileGptImagePromptDefaultSettings = void 0;
4
+ const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
5
+ const BusinessProfile_1 = require("./BusinessProfile");
6
+ class BusinessProfileGptImagePromptDefaultSettings extends BusinessProfile_1.BusinessProfileProperty {
7
+ constructor() {
8
+ super(new models_1.Guid("39df27aa-95f1-4a23-b3f6-8b231afcda82"), "gptimagepromptsettings");
9
+ }
10
+ }
11
+ exports.BusinessProfileGptImagePromptDefaultSettings = BusinessProfileGptImagePromptDefaultSettings;
package/Constants.d.ts CHANGED
@@ -51,6 +51,7 @@ export declare const Constants: {
51
51
  dalle: Guid;
52
52
  mediaflow: Guid;
53
53
  unsplash: Guid;
54
+ gptimage: Guid;
54
55
  };
55
56
  };
56
57
  mediaGallery: {
@@ -79,6 +80,7 @@ export declare const Constants: {
79
80
  dallESettingsKey: string;
80
81
  textCompletionSettingsKey: string;
81
82
  deploymentNameSettingKey: string;
83
+ gptImageDeploymentNameSettingKey: string;
82
84
  };
83
85
  };
84
86
  html: {
@@ -167,6 +169,8 @@ export declare const Constants: {
167
169
  appOnlyReadAccessToSharePointTermstore: Guid;
168
170
  provisionOmniaSearchUserData: Guid;
169
171
  aiEngine: Guid;
172
+ extraIDAdditionalUserProperties: Guid;
173
+ managedMetadataProperties: Guid;
170
174
  };
171
175
  app: {
172
176
  tableName: string;
package/Constants.js CHANGED
@@ -82,6 +82,7 @@ exports.Constants = {
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
84
  unsplash: new models_1.Guid("be222505-c2c4-4ec8-8462-a7ad9df4d440"),
85
+ gptimage: new models_1.Guid("7b92e19b-2d24-4660-b707-cb76b421574b")
85
86
  },
86
87
  },
87
88
  mediaGallery: {
@@ -110,6 +111,7 @@ exports.Constants = {
110
111
  dallESettingsKey: "omnia.openai.dalle.settings",
111
112
  textCompletionSettingsKey: "omnia.openai.textcompletion.settings",
112
113
  deploymentNameSettingKey: "omnia.openai.deploymentname.settings",
114
+ gptImageDeploymentNameSettingKey: "omnia.openai.gpt.image.deploymentname.settings"
113
115
  }
114
116
  },
115
117
  html: {
@@ -197,7 +199,9 @@ exports.Constants = {
197
199
  legacyAppPermissions: new models_1.Guid("36c6fe6a-d79e-4f87-9349-cff9d3e1ab71"),
198
200
  appOnlyReadAccessToSharePointTermstore: new models_1.Guid("8095f802-38f0-426c-8d81-22cb22a2a019"),
199
201
  provisionOmniaSearchUserData: new models_1.Guid("8fc1325d-4196-406e-8dca-ebb78824896f"),
200
- aiEngine: new models_1.Guid("f976ad6f-987f-44e6-973a-097d81f73fc7")
202
+ aiEngine: new models_1.Guid("f976ad6f-987f-44e6-973a-097d81f73fc7"),
203
+ extraIDAdditionalUserProperties: new models_1.Guid("8a878ffd-f4d5-4048-9ab1-107bf7109dd9"),
204
+ managedMetadataProperties: new models_1.Guid("e4ffbe1f-b658-4bc0-858e-eada042ca220")
201
205
  },
202
206
  app: {
203
207
  tableName: "AppInstances",
package/Enums.d.ts CHANGED
@@ -525,6 +525,7 @@ export declare enum ThemeType {
525
525
  export declare enum StaticEndpoint {
526
526
  Logout = "/logout",
527
527
  AuthSetup = "/authsetup",
528
+ AuthSetupConfirm = "/authsetup/confirm",
528
529
  Login = "/login",
529
530
  RequestAccount = "/requestaccount",
530
531
  MagicLinkLogin = "/api/magiclink/complete",
package/Enums.js CHANGED
@@ -435,6 +435,7 @@ var StaticEndpoint;
435
435
  (function (StaticEndpoint) {
436
436
  StaticEndpoint["Logout"] = "/logout";
437
437
  StaticEndpoint["AuthSetup"] = "/authsetup";
438
+ StaticEndpoint["AuthSetupConfirm"] = "/authsetup/confirm";
438
439
  StaticEndpoint["Login"] = "/login";
439
440
  StaticEndpoint["RequestAccount"] = "/requestaccount";
440
441
  StaticEndpoint["MagicLinkLogin"] = "/api/magiclink/complete";
package/Exposes.d.ts CHANGED
@@ -97,6 +97,7 @@ export * from "./AzureAd";
97
97
  export * from "./FilterEngineStyles";
98
98
  export * from "./AiSettings";
99
99
  export * from "./BusinessProfileDallEPromptDefault";
100
+ export * from "./BusinessProfileGptImagePromptDefault";
100
101
  export * from "./ISpecialUserConfiguration";
101
102
  export * from "./FileValidationResult";
102
103
  export * from "./RollupMetricSettings";
package/Exposes.js CHANGED
@@ -103,6 +103,7 @@ tslib_1.__exportStar(require("./AzureAd"), exports);
103
103
  tslib_1.__exportStar(require("./FilterEngineStyles"), exports);
104
104
  tslib_1.__exportStar(require("./AiSettings"), exports);
105
105
  tslib_1.__exportStar(require("./BusinessProfileDallEPromptDefault"), exports);
106
+ tslib_1.__exportStar(require("./BusinessProfileGptImagePromptDefault"), exports);
106
107
  tslib_1.__exportStar(require("./ISpecialUserConfiguration"), exports);
107
108
  tslib_1.__exportStar(require("./FileValidationResult"), exports);
108
109
  tslib_1.__exportStar(require("./RollupMetricSettings"), exports);
package/Layout.d.ts CHANGED
@@ -137,6 +137,7 @@ export interface SectionSettings extends LayoutItemSettings {
137
137
  themeDefinition: ThemeDefinition;
138
138
  hidden?: boolean;
139
139
  disableLazyLoad?: boolean;
140
+ headerLevel?: GuidValue;
140
141
  }
141
142
  export interface ColumnedSectionSettings extends SectionSettings {
142
143
  type: SectionTypes.Column;
@@ -239,6 +240,7 @@ export interface HeaderItemSettings {
239
240
  titleSettings: BlockTitleSettings;
240
241
  anchorName?: string;
241
242
  scrollIntoViewDisabled: boolean;
243
+ headerLevel?: GuidValue;
242
244
  }
243
245
  export interface SpacingItemSettings {
244
246
  paddingRight: number;
package/ManifestIds.d.ts CHANGED
@@ -151,9 +151,12 @@ export declare class OmniaResourceManifests {
151
151
  static get ScopePropertyBindingProvider(): Guid;
152
152
  static get UserPropertyBindingProvider(): Guid;
153
153
  static get MagicLinkCore(): Guid;
154
+ static get GptImageTenantFeature(): Guid;
155
+ static get GptImageMediaProviderFeature(): Guid;
154
156
  }
155
157
  export declare class OmniaWebComponentManifests {
156
158
  static get AuthSetup(): Guid;
159
+ static get AuthSetupConfirm(): Guid;
157
160
  static get AuthenticationBlock(): Guid;
158
161
  static get AuthenticationCore(): Guid;
159
162
  static get LoginOmniaView(): Guid;
@@ -457,4 +460,5 @@ export declare class OmniaWebComponentManifests {
457
460
  static get DateTimePropertyConfiguration(): Guid;
458
461
  static get BirthdayPropertyConfiguration(): Guid;
459
462
  static get AnalyticsSettings(): Guid;
463
+ static get FxUxGptImageProvider(): Guid;
460
464
  }
package/ManifestIds.js CHANGED
@@ -479,12 +479,21 @@ class OmniaResourceManifests {
479
479
  static get MagicLinkCore() {
480
480
  return new models_1.Guid("801bcf8f-94fd-4619-843f-7f1fc0c57b3c");
481
481
  }
482
+ static get GptImageTenantFeature() {
483
+ return new models_1.Guid("1a8ac8a6-6c50-409a-89ba-8de704240517");
484
+ }
485
+ static get GptImageMediaProviderFeature() {
486
+ return new models_1.Guid("76f41c1b-9b18-4200-b7e1-19827aafcac1");
487
+ }
482
488
  }
483
489
  exports.OmniaResourceManifests = OmniaResourceManifests;
484
490
  class OmniaWebComponentManifests {
485
491
  static get AuthSetup() {
486
492
  return new models_1.Guid("e4889269-c6ad-440d-a65f-3acdf5bb6152");
487
493
  }
494
+ static get AuthSetupConfirm() {
495
+ return new models_1.Guid("49d5de1e-da62-481a-bf0a-5a317b99f3e9");
496
+ }
488
497
  static get AuthenticationBlock() {
489
498
  return new models_1.Guid("b273791e-a562-4033-97cd-c0a1c0f907cb");
490
499
  }
@@ -1373,5 +1382,6 @@ class OmniaWebComponentManifests {
1373
1382
  static get DateTimePropertyConfiguration() { return new models_1.Guid("0AA4B891-6FCF-4B1F-959C-8FD04EF8BFE9"); }
1374
1383
  static get BirthdayPropertyConfiguration() { return new models_1.Guid("5b7f85ec-36cf-4e88-911e-7951ccec4e2b"); }
1375
1384
  static get AnalyticsSettings() { return new models_1.Guid("4d83f393-bd89-4ea0-b1c3-eb4ebce3ad19"); }
1385
+ static get FxUxGptImageProvider() { return new models_1.Guid("e3bf7cc6-b08b-4148-8653-ec7c91b0aea4"); }
1376
1386
  }
1377
1387
  exports.OmniaWebComponentManifests = OmniaWebComponentManifests;
@@ -8,7 +8,7 @@ export interface OrgTreeUser {
8
8
  userPrincipalName: string;
9
9
  officeLocation?: string;
10
10
  accountName?: string;
11
- accountEnabled: boolean;
11
+ accountEnabled?: boolean;
12
12
  }
13
13
  export interface OrgTree {
14
14
  currentUser: OrgTreeUser;
@@ -8,4 +8,6 @@ export declare class BusinessProfileAnalyticsSettings extends BusinessProfilePro
8
8
  shared: boolean;
9
9
  connectedBusinessProfileId?: GuidValue;
10
10
  constructor();
11
+ static checkIfAnalyticsSwitchToDisabled: (currenttSetting: BusinessProfileAnalyticsSettings, targetSetting: BusinessProfileAnalyticsSettings) => boolean;
12
+ static checkIfAnalyticsSwitchToEnabled: (currenttSetting: BusinessProfileAnalyticsSettings, targetSetting: BusinessProfileAnalyticsSettings) => boolean;
11
13
  }
@@ -13,3 +13,5 @@ class BusinessProfileAnalyticsSettings extends BusinessProfile_1.BusinessProfile
13
13
  }
14
14
  }
15
15
  exports.BusinessProfileAnalyticsSettings = BusinessProfileAnalyticsSettings;
16
+ BusinessProfileAnalyticsSettings.checkIfAnalyticsSwitchToDisabled = (currenttSetting, targetSetting) => targetSetting?.idSite !== currenttSetting?.idSite && !targetSetting?.enabled;
17
+ BusinessProfileAnalyticsSettings.checkIfAnalyticsSwitchToEnabled = (currenttSetting, targetSetting) => targetSetting?.idSite !== currenttSetting?.idSite && targetSetting?.enabled;
@@ -8,7 +8,8 @@ export interface GeneratedImage extends ImageItem {
8
8
  }
9
9
  export interface ImageDataResult {
10
10
  caption: string;
11
- contentUrl: string;
11
+ contentUrl?: string;
12
12
  contentUrlExpiresAt: string;
13
13
  createdDateTime: string;
14
+ base64?: string;
14
15
  }
@@ -0,0 +1,5 @@
1
+ export interface TextToImagesRequest {
2
+ prompt: string;
3
+ size?: string;
4
+ n?: number;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ import { BaseResponse } from "..";
2
+ export interface TextToImagesResponse extends TextToImagesResult {
3
+ }
4
+ export interface TextToImagesResult extends BaseResponse {
5
+ created: number;
6
+ data: Array<TextToBase64ImageItem>;
7
+ }
8
+ export interface TextToBase64ImageItem {
9
+ b64_json: string;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./TextToImagesRequest";
2
+ export * from "./TextToImagesResponse";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./TextToImagesRequest"), exports);
5
+ tslib_1.__exportStar(require("./TextToImagesResponse"), exports);
@@ -1,3 +1,4 @@
1
1
  export * from "./textcompletion";
2
2
  export * from "./dalle";
3
3
  export * from "./settings";
4
+ export * from "./gptimage";
@@ -4,3 +4,4 @@ const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./textcompletion"), exports);
5
5
  tslib_1.__exportStar(require("./dalle"), exports);
6
6
  tslib_1.__exportStar(require("./settings"), exports);
7
+ tslib_1.__exportStar(require("./gptimage"), exports);
@@ -1,3 +1,4 @@
1
+ import { LayoutClipboard } from "../Clipboard";
1
2
  import { IconPickerModel } from "../Icon";
2
3
  import { MultilingualString } from "../MultilingualString";
3
4
  export interface BlockTemplate {
@@ -5,7 +6,7 @@ export interface BlockTemplate {
5
6
  title?: MultilingualString;
6
7
  icon?: IconPickerModel;
7
8
  description?: MultilingualString;
8
- definition: string;
9
+ definition: LayoutClipboard;
9
10
  }
10
11
  export interface BlockTemplateView {
11
12
  id?: number;
@@ -11,6 +11,9 @@ class Identity {
11
11
  return Identity.getIdAsString(this.id, this.type);
12
12
  }
13
13
  static parse(identity) {
14
+ if (!identity) {
15
+ return null;
16
+ }
14
17
  if (typeof identity === "string") {
15
18
  return this.createFromString(identity);
16
19
  }
@@ -66,7 +66,7 @@ class ResolvedUserIdentity extends UserIdentity {
66
66
  return resolvedUser.id == Enums_1.SecurityIdentities.AnonymousIdentity;
67
67
  }
68
68
  static getDisplayName(user, deletedUserText) {
69
- return user.isRemoved && !user.displayName
69
+ return !user || (user.isRemoved && !user.displayName)
70
70
  ? deletedUserText
71
71
  : user.displayName?.value.text + (user.isRemoved ? " *" : "");
72
72
  }
@@ -0,0 +1,18 @@
1
+ import { MediaPickerProvider } from ".";
2
+ import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
3
+ import { MediaPickerEnums } from "../../Enums";
4
+ import { IIcon } from "../../Icon";
5
+ import { MediaPickerPersistedImage } from "../Shared";
6
+ import { MediaPickerVideo } from "../MediaPickerMedia";
7
+ export declare class MediaPickerGptImageProvider implements MediaPickerProvider {
8
+ id: GuidValue;
9
+ category: string;
10
+ name: string;
11
+ icon: IIcon;
12
+ sortOrder?: number;
13
+ selectableMediaTypes: MediaPickerEnums.OmniaMediaTypes[];
14
+ providerComponentId: GuidValue;
15
+ supportGalleryFeature?: boolean;
16
+ constructor();
17
+ hasEditorForMedia: (media: MediaPickerVideo | MediaPickerPersistedImage) => boolean;
18
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MediaPickerGptImageProvider = void 0;
4
+ const Enums_1 = require("../../Enums");
5
+ const Icon_1 = require("../../Icon");
6
+ const Constants_1 = require("../../Constants");
7
+ const ManifestIds_1 = require("../../ManifestIds");
8
+ class MediaPickerGptImageProvider {
9
+ constructor() {
10
+ this.hasEditorForMedia = (media) => {
11
+ return false;
12
+ };
13
+ this.id = Constants_1.Constants.ux.components.mediaPicker.providerIds.gptimage;
14
+ this.category = "image";
15
+ this.name = "GptImage";
16
+ this.icon = new Icon_1.SvgIcon("<svg width=\"24px\" height=\"24px\" style=\"color: white\" role=\"img\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><title>OpenAI</title><path d=\"M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z\" fill=\"white\"></path></svg>");
17
+ this.providerComponentId = ManifestIds_1.OmniaWebComponentManifests.FxUxGptImageProvider;
18
+ this.selectableMediaTypes = [Enums_1.MediaPickerEnums.OmniaMediaTypes.Image];
19
+ this.sortOrder = 80;
20
+ this.supportGalleryFeature = true;
21
+ }
22
+ }
23
+ exports.MediaPickerGptImageProvider = MediaPickerGptImageProvider;
@@ -7,6 +7,6 @@ export * from "./PexelProvider";
7
7
  export * from "./YoutubeProvider";
8
8
  export * from "./DallEProvider";
9
9
  export * from "./MediaflowProvider";
10
- export * from "./UnsplashProvider";
11
10
  export * from "./IMediaPostProcess";
12
11
  export * from "./MediaPickerFileHandlerProvider";
12
+ export * from "./GptImageProvider";
@@ -10,6 +10,6 @@ tslib_1.__exportStar(require("./PexelProvider"), exports);
10
10
  tslib_1.__exportStar(require("./YoutubeProvider"), exports);
11
11
  tslib_1.__exportStar(require("./DallEProvider"), exports);
12
12
  tslib_1.__exportStar(require("./MediaflowProvider"), exports);
13
- tslib_1.__exportStar(require("./UnsplashProvider"), exports);
14
13
  tslib_1.__exportStar(require("./IMediaPostProcess"), exports);
15
14
  tslib_1.__exportStar(require("./MediaPickerFileHandlerProvider"), exports);
15
+ tslib_1.__exportStar(require("./GptImageProvider"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.9.28-preview",
4
+ "version": "7.9.28",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -24,4 +24,4 @@
24
24
  "url": "https://github.com/omniaintranet/OmniaFx/issues"
25
25
  },
26
26
  "homepage": "https://github.com/omniaintranet/OmniaFx#readme"
27
- }
27
+ }
@@ -8,6 +8,7 @@ export declare class IdentityPropertyDisplaySettings extends PropertyDisplaySett
8
8
  hidePresence?: boolean;
9
9
  showImage?: boolean;
10
10
  showName?: boolean;
11
+ deletedUsersOnly?: boolean;
11
12
  }
12
13
  export type IdentityPropertyEditorSettings = {
13
14
  locks?: PropertyLockStatusType<Omit<IdentityPropertyEditorSettings, "locks">>;
@@ -15,6 +16,7 @@ export type IdentityPropertyEditorSettings = {
15
16
  multiple?: boolean;
16
17
  hideDynamicGroupSelection?: boolean;
17
18
  type?: PrincipalTypes;
19
+ deletedUsersOnly?: boolean;
18
20
  };
19
21
  export declare const identityPropertyDefinitionId: Guid;
20
22
  export declare class IdentityPropertyDefinition extends PropertyDefinition<IdentityPropertyValue, IdentityPropertyDisplaySettings, IdentityPropertyEditorSettings> {
@@ -148,3 +148,8 @@ export declare class CustomFontFamily implements ICustomFontFamily {
148
148
  fontFamilyType: FontFamilyTypes;
149
149
  constructor(value: string);
150
150
  }
151
+ export interface HeaderLevel {
152
+ id: GuidValue;
153
+ title: string;
154
+ containerElement: string;
155
+ }