@omnia/fx 7.9.28-preview → 7.9.30-preview

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,6 +9,7 @@ export declare class BusinessProfileService {
9
9
  findProfile: (path: string) => Promise<BusinessProfile>;
10
10
  getProfiles: () => Promise<Array<BusinessProfile>>;
11
11
  getProfile: (profileId: string) => Promise<BusinessProfile>;
12
+ getDefaultBusinessProfileUrl: (profileId: string, includeOmniaAdminPath?: boolean) => Promise<string>;
12
13
  getProfileWithProperties: (profileId: string) => Promise<BusinessProfileWithProperties>;
13
14
  deleteProfile: (profileId: string) => Promise<void>;
14
15
  getPathsOfProfile: (profileId: string) => Promise<Array<string>>;
@@ -1343,7 +1343,7 @@ export interface OmniaUxLocalization {
1343
1343
  };
1344
1344
  AuthenticationBlock: {
1345
1345
  Title: string;
1346
- Decsription: string;
1346
+ Summary: string;
1347
1347
  };
1348
1348
  IdentityPicker: {
1349
1349
  User: {
@@ -1418,6 +1418,8 @@ export interface OmniaUxLocalization {
1418
1418
  InvalidJsonField: string;
1419
1419
  ErrorMsg: string;
1420
1420
  EmptyMsg: string;
1421
+ DeleteConfirmationTitle: string;
1422
+ DeleteConfirmationMessage: string;
1421
1423
  };
1422
1424
  BlockDialog: {
1423
1425
  Title: string;
@@ -1427,6 +1429,8 @@ export interface OmniaUxLocalization {
1427
1429
  EditHeader: string;
1428
1430
  ManageList: string;
1429
1431
  Confirm: string;
1432
+ DeletedItemWarning: string;
1433
+ DeleteItemTitle: string;
1430
1434
  Header: string;
1431
1435
  };
1432
1436
  BlockDialogLayout: {
@@ -72,6 +72,7 @@ export declare class BlockGalleryStore extends Store {
72
72
  getBlockDialogSettings: import("@omnia/fx/stores").StoreAction<unknown, (layoutType: string) => void, (result: void, layoutType: string) => void, (failureReason: any, layoutType: string) => void, (layoutType: string) => Promise<void>>;
73
73
  updateBlockDialogSettings: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
74
74
  addOrUpdateBlockTemplate: import("@omnia/fx/stores").StoreAction<unknown, (blockTemplate: BlockTemplate, isEdit: boolean) => void, (result: void, blockTemplate: BlockTemplate, isEdit: boolean) => void, (failureReason: any, blockTemplate: BlockTemplate, isEdit: boolean) => void, (blockTemplate: BlockTemplate, isEdit: boolean) => Promise<void>>;
75
+ removeBlockTemplate: import("@omnia/fx/stores").StoreAction<unknown, (blockTemplateId: number) => void, (result: boolean, blockTemplateId: number) => void, (failureReason: any, blockTemplateId: number) => void, (blockTemplateId: number) => Promise<boolean>>;
75
76
  ensureGeneralSetting: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: BlockGalleryGeneralSetting) => void, (failureReason: any) => void, () => Promise<BlockGalleryGeneralSetting>>;
76
77
  };
77
78
  private ensureSpfxBlockDictionary;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "7.9.28-preview",
4
+ "version": "7.9.30-preview",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "7.9.28-preview",
23
+ "@omnia/fx-models": "7.9.30-preview",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
@@ -48,7 +48,7 @@
48
48
  "prosemirror-schema-list": "1.0.4",
49
49
  "vue-property-decorator": "8.3.0",
50
50
  "vue-class-component": "7.1.0",
51
- "axios": "0.24.0",
51
+ "axios": "0.30.0",
52
52
  "mousetrap": "1.6.1"
53
53
  },
54
54
  "devDependencies": {},