@omnia/workplace 7.9.15-preview → 7.9.15
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/README.md +2 -2
- package/internal-do-not-import-from-here/core/loc/localize.d.ts +3 -3
- package/internal-do-not-import-from-here/core/loc/powerappLocalize.d.ts +1 -1
- package/internal-do-not-import-from-here/models/Search.d.ts +1 -0
- package/internal-do-not-import-from-here/models/SearchProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/services/AnalyticsService.d.ts +1 -1
- package/internal-do-not-import-from-here/services/AnalyticsStoreService.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/AnalyticsStore.d.ts +3 -0
- package/internal-do-not-import-from-here/stores/SignOffRequestStore.d.ts +1 -1
- package/models/package.json +4 -4
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Omnia Workplace
|
|
2
2
|
|
|
3
|
-
Omnia Workplace is a product from
|
|
3
|
+
Omnia Workplace is a product from Omnia Digital Workplace AB.
|
|
4
4
|
|
|
5
5
|
### Documentation
|
|
6
|
-
https://github.com/
|
|
6
|
+
https://github.com/omniaintranet/Omnia-Foundation-Docs
|
|
@@ -7,11 +7,11 @@ export declare module TeamCoreLocalization {
|
|
|
7
7
|
Blocks: {
|
|
8
8
|
TeamNewsRollup: {
|
|
9
9
|
Title: string;
|
|
10
|
-
|
|
10
|
+
Summary: string;
|
|
11
11
|
};
|
|
12
12
|
TeamCollaborationRollup: {
|
|
13
13
|
Title: string;
|
|
14
|
-
|
|
14
|
+
Summary: string;
|
|
15
15
|
};
|
|
16
16
|
CreateTeamwork: {
|
|
17
17
|
Title: string;
|
|
@@ -19,7 +19,7 @@ export declare module TeamCoreLocalization {
|
|
|
19
19
|
};
|
|
20
20
|
CreateApp: {
|
|
21
21
|
Title: string;
|
|
22
|
-
|
|
22
|
+
Summary: string;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
Features: {
|
|
@@ -16,6 +16,7 @@ export interface CategorySearchResult {
|
|
|
16
16
|
}
|
|
17
17
|
export interface SemanticSearchCategorySearchResult extends CategorySearchResult {
|
|
18
18
|
semanticSearchResult: SemanticSearchResult;
|
|
19
|
+
error?: string;
|
|
19
20
|
}
|
|
20
21
|
export interface SemanticSearchResultItem extends SearchResultItem {
|
|
21
22
|
reference: SemanticSearchReference;
|
|
@@ -7,4 +7,5 @@ export declare abstract class SearchProvider implements SearchProviderBase {
|
|
|
7
7
|
abstract providerDisplayRenderManifestId: GuidValue;
|
|
8
8
|
hideSearchTemplates?: boolean;
|
|
9
9
|
getSearchCategoryResult: (searchRequest: SearchRequest) => Promise<CategorySearchResult[]>;
|
|
10
|
+
shouldHideSearchProvider?: () => Promise<boolean>;
|
|
10
11
|
}
|
|
@@ -12,7 +12,7 @@ export declare class AnalyticsService {
|
|
|
12
12
|
analyticsStore: AnalyticsStore;
|
|
13
13
|
readonly dsSourcesAllowed: string[];
|
|
14
14
|
tracker: any;
|
|
15
|
-
private currentIdSite;
|
|
15
|
+
private static currentIdSite;
|
|
16
16
|
private activatedFeatureIds;
|
|
17
17
|
settings: BusinessProfileAnalyticsSettings;
|
|
18
18
|
connectedAnalyticsSettings: AnalyticsSettings;
|
|
@@ -4,6 +4,7 @@ export declare class AnalyticsStoreService {
|
|
|
4
4
|
private httpClient;
|
|
5
5
|
constructor();
|
|
6
6
|
getSettings: (businessProfileId?: GuidValue) => Promise<AnalyticsSettings>;
|
|
7
|
+
getAdminSettings: (businessProfileId?: GuidValue) => Promise<AnalyticsSettings>;
|
|
7
8
|
getToken: (businessProfileId?: GuidValue) => Promise<AnalyticsToken>;
|
|
8
9
|
getDimensions: (businessProfileId?: GuidValue) => Promise<AnalyticsDimensions>;
|
|
9
10
|
getScopesInfo: (businessProfileId?: GuidValue) => Promise<AnalyticsScopeInfo[]>;
|
|
@@ -14,6 +14,8 @@ export declare class AnalyticsStore extends Store {
|
|
|
14
14
|
private ensuredLoadDimensionsPromise;
|
|
15
15
|
private settings;
|
|
16
16
|
private ensuredLoadSettingsPromise;
|
|
17
|
+
private adminSettings;
|
|
18
|
+
private ensuredLoadAdminSettingsPromise;
|
|
17
19
|
private tokens;
|
|
18
20
|
private ensuredLoadTokenPromise;
|
|
19
21
|
private scopeInfos;
|
|
@@ -40,6 +42,7 @@ export declare class AnalyticsStore extends Store {
|
|
|
40
42
|
getters: {
|
|
41
43
|
dimensions: (businessProfileId?: GuidValue) => AnalyticsDimensions;
|
|
42
44
|
settings: (businessProfileId?: GuidValue) => AnalyticsSettings;
|
|
45
|
+
adminSettings: (businessProfileId?: GuidValue) => AnalyticsSettings;
|
|
43
46
|
scopeInfos: (businessProfileId?: GuidValue) => AnalyticsScopeInfo[];
|
|
44
47
|
widgetCategoryInfo: (businessProfileId?: GuidValue) => WidgetCategoryInfo[];
|
|
45
48
|
tokens: (businessProfileId?: GuidValue) => string;
|
|
@@ -54,7 +54,7 @@ export declare class SignOffRequestStore extends Store {
|
|
|
54
54
|
ensureCurrentRequestToUsers: import("@omnia/fx/stores").StoreAction<unknown, (requestId: GuidValue) => void, (result: Identity[], requestId: GuidValue) => void, (failureReason: any, requestId: GuidValue) => void, (requestId: GuidValue) => Promise<Identity[]>>;
|
|
55
55
|
sendReminderEmail: import("@omnia/fx/stores").StoreAction<unknown, (request: SignOffRequest, resourceDetails: SignOffRequestResourceDetail[]) => void, (result: void, request: SignOffRequest, resourceDetails: SignOffRequestResourceDetail[]) => void, (failureReason: any, request: SignOffRequest, resourceDetails: SignOffRequestResourceDetail[]) => void, (request: SignOffRequest, resourceDetails: Array<SignOffRequestResourceDetail>) => Promise<void>>;
|
|
56
56
|
forceUpdateStatus: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
|
57
|
-
onOpenPersistentSignOffRequestDetailDialog: import("@omnia/fx/stores").StoreAction<unknown, (sidePanelContext: SidePanelContext, signOffRequestId: GuidValue, recipientId: Identity, dialogPosition: DialogPositions, scopedQueryType?: SignOffRequestScopedQueryTypes) => void, (result: void, sidePanelContext: SidePanelContext, signOffRequestId: GuidValue, recipientId: Identity, dialogPosition: DialogPositions, scopedQueryType?: SignOffRequestScopedQueryTypes) => void, (failureReason: any, sidePanelContext: SidePanelContext, signOffRequestId: GuidValue, recipientId: Identity, dialogPosition: DialogPositions, scopedQueryType?: SignOffRequestScopedQueryTypes) => void, (sidePanelContext: SidePanelContext, signOffRequestId: GuidValue, recipientId: Identity, dialogPosition: DialogPositions, scopedQueryType?: SignOffRequestScopedQueryTypes) => Promise<void>>;
|
|
57
|
+
onOpenPersistentSignOffRequestDetailDialog: import("@omnia/fx/stores").StoreAction<unknown, (sidePanelContext: SidePanelContext, signOffRequestId: GuidValue, recipientId: Identity, dialogPosition: DialogPositions, scopedQueryType?: SignOffRequestScopedQueryTypes, openInNewTab?: boolean) => void, (result: void, sidePanelContext: SidePanelContext, signOffRequestId: GuidValue, recipientId: Identity, dialogPosition: DialogPositions, scopedQueryType?: SignOffRequestScopedQueryTypes, openInNewTab?: boolean) => void, (failureReason: any, sidePanelContext: SidePanelContext, signOffRequestId: GuidValue, recipientId: Identity, dialogPosition: DialogPositions, scopedQueryType?: SignOffRequestScopedQueryTypes, openInNewTab?: boolean) => void, (sidePanelContext: SidePanelContext, signOffRequestId: GuidValue, recipientId: Identity, dialogPosition: DialogPositions, scopedQueryType?: SignOffRequestScopedQueryTypes, openInNewTab?: boolean) => Promise<void>>;
|
|
58
58
|
onClosePersistentSignOffRequestDetailDialog: import("@omnia/fx/stores").StoreAction<unknown, (sidePanelContext: SidePanelContext) => void, (result: void, sidePanelContext: SidePanelContext) => void, (failureReason: any, sidePanelContext: SidePanelContext) => void, (sidePanelContext: SidePanelContext) => Promise<void>>;
|
|
59
59
|
};
|
|
60
60
|
/**
|
package/models/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/
|
|
11
|
+
"url": "git+https://github.com/omniaintranet/OmniaWebContentManagement.git"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"omnia",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"office365",
|
|
18
18
|
"sharepoint"
|
|
19
19
|
],
|
|
20
|
-
"author": "
|
|
20
|
+
"author": "Omnia Digital Workplace AB",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
},
|
|
23
23
|
"typings": "./index.d.ts",
|
|
24
24
|
"bugs": {
|
|
25
|
-
"url": "https://github.com/
|
|
25
|
+
"url": "https://github.com/omniaintranet/OmniaWebContentManagement/issues"
|
|
26
26
|
},
|
|
27
|
-
"homepage": "https://github.com/
|
|
27
|
+
"homepage": "https://github.com/omniaintranet/OmniaWebContentManagement#readme"
|
|
28
28
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/workplace",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.9.15
|
|
4
|
+
"version": "7.9.15",
|
|
5
5
|
"description": "Omnia Workplace.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/
|
|
11
|
+
"url": "git+https://github.com/omniaintranet/OmniaWebContentManagement.git"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"omnia",
|
|
@@ -17,12 +17,11 @@
|
|
|
17
17
|
"office365",
|
|
18
18
|
"sharepoint"
|
|
19
19
|
],
|
|
20
|
-
"author": "
|
|
21
|
-
"dependencies": {
|
|
22
|
-
},
|
|
20
|
+
"author": "Omnia Digital Workplace AB",
|
|
21
|
+
"dependencies": {},
|
|
23
22
|
"typings": "./index.d.ts",
|
|
24
23
|
"bugs": {
|
|
25
|
-
"url": "https://github.com/
|
|
24
|
+
"url": "https://github.com/omniaintranet/OmniaWebContentManagement/issues"
|
|
26
25
|
},
|
|
27
|
-
"homepage": "https://github.com/
|
|
26
|
+
"homepage": "https://github.com/omniaintranet/OmniaWebContentManagement#readme"
|
|
28
27
|
}
|