@sitevision/api 2025.7.1 → 2025.9.1
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/common/router/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface Request {
|
|
|
22
22
|
updateSession(): Session;
|
|
23
23
|
header(headerName: string): string | null;
|
|
24
24
|
file(fileParameterName: string): Node;
|
|
25
|
-
params: { [key: string]: string };
|
|
25
|
+
params: { [key: string]: string | string[] };
|
|
26
26
|
cookies: { [key: string]: string };
|
|
27
27
|
xhr: boolean;
|
|
28
28
|
serverside: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sitevision/api",
|
|
3
|
-
"version": "2025.
|
|
3
|
+
"version": "2025.9.1",
|
|
4
4
|
"author": "Sitevision AB",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"access": "public",
|
|
31
31
|
"directory": "dist"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "a0579a4b1e2aedc7635b7c9d598e77f1f67ef8ee"
|
|
34
34
|
}
|
|
@@ -39,5 +39,6 @@ var _default = exports["default"] = {
|
|
|
39
39
|
MANAGE_TYPES_IDENTIFIERS: "MANAGE_TYPES_IDENTIFIERS",
|
|
40
40
|
MANAGE_CUSTOM_SEARCH_INDEX: "MANAGE_CUSTOM_SEARCH_INDEX",
|
|
41
41
|
MANAGE_PUBLISHING_LOCK: "MANAGE_PUBLISHING_LOCK",
|
|
42
|
-
MANAGE_DASHBOARDS: "MANAGE_DASHBOARDS"
|
|
42
|
+
MANAGE_DASHBOARDS: "MANAGE_DASHBOARDS",
|
|
43
|
+
MANAGE_AI: "MANAGE_AI"
|
|
43
44
|
};
|
|
@@ -250,8 +250,8 @@ export type TextModuleRenderer = {
|
|
|
250
250
|
* Renders Markdown for the loaded Text module.
|
|
251
251
|
*
|
|
252
252
|
* <p>
|
|
253
|
-
*
|
|
254
|
-
*
|
|
253
|
+
* <strong>Note!</strong> The returned value will always be empty string if the {@link #isLoaded()} state is <code>false</code>
|
|
254
|
+
* when invoking this render method <em>(i.e. you would typically always check the loaded state before calling this method).</em>
|
|
255
255
|
* </p>
|
|
256
256
|
* @return the Markdown representation of the loaded Text module, or empty String if rendering fails or no Text module is loaded
|
|
257
257
|
* @since Sitevision 2025.07.1
|