@omnia/wcm 8.0.9-dev → 8.0.10-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/README.md +2 -2
- package/internal-do-not-import-from-here/core/loc/EditorLocalization.d.ts +19 -0
- package/internal-do-not-import-from-here/core/loc/PublishingAppLocalization.d.ts +17 -3
- package/internal-do-not-import-from-here/core/messaging/WcmPublicTopics.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/apis/PageRenderer.d.ts +14 -0
- package/internal-do-not-import-from-here/fx/apis/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/internal/stores/OmniaSearchPageStore.d.ts +7 -2
- package/internal-do-not-import-from-here/fx/models/Constants.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/Constants.js +1 -0
- package/internal-do-not-import-from-here/fx/models/aipagecontentreport/FixPageContentAnalysisRequest.d.ts +4 -0
- package/internal-do-not-import-from-here/fx/models/aipagecontentreport/FixPageContentAnalysisRequest.js +2 -0
- package/internal-do-not-import-from-here/fx/models/aipagecontentreport/PageAiAnalysisReport.d.ts +6 -0
- package/internal-do-not-import-from-here/fx/models/navigation/MovePageCollectionResult.d.ts +5 -0
- package/internal-do-not-import-from-here/fx/models/pages/MovePageTracking.d.ts +40 -0
- package/internal-do-not-import-from-here/fx/models/pages/MovePageTracking.js +15 -0
- package/internal-do-not-import-from-here/fx/models/pages/MovePagesResult.d.ts +2 -0
- package/internal-do-not-import-from-here/fx/models/pages/Page.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/pages/PageCollectionData.d.ts +5 -0
- package/internal-do-not-import-from-here/fx/models/pages/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/pages/index.js +1 -0
- package/internal-do-not-import-from-here/fx/routing/WcmRouter.d.ts +5 -3
- package/internal-do-not-import-from-here/fx/services/AiContentPageReportService.d.ts +4 -1
- package/internal-do-not-import-from-here/fx/services/PageService.d.ts +2 -1
- package/internal-do-not-import-from-here/fx/stores/CurrentPageStore.d.ts +2 -0
- package/internal-do-not-import-from-here/fx/stores/NavigationStore.d.ts +2 -2
- package/internal-do-not-import-from-here/fx/stores/PagesStore.d.ts +5 -2
- package/internal-do-not-import-from-here/fx/ux/InternalUxCore.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/ux/use/UseWcmIcons.d.ts +2 -0
- package/internal-do-not-import-from-here/manifests/omnia.wcm.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/tooling.output.json +1 -1
- package/package.json +7 -8
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/wcm",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.10-dev",
|
|
5
5
|
"description": "Omnia Web Content Management.",
|
|
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/
|
|
28
|
-
}
|
|
26
|
+
"homepage": "https://github.com/omniaintranet/OmniaWebContentManagement#readme"
|
|
27
|
+
}
|