@paroicms/public-server-lib 0.35.1 → 0.36.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paroicms/public-server-lib",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.0",
|
|
4
4
|
"description": "Common utilitaries for paroicms plugins (backend side).",
|
|
5
5
|
"author": "Paroi Team",
|
|
6
6
|
"repository": {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@paroi/data-formatters-lib": "~0.4.0",
|
|
24
|
-
"@paroicms/internal-anywhere-lib": "1.
|
|
25
|
-
"@paroicms/public-anywhere-lib": "0.
|
|
24
|
+
"@paroicms/internal-anywhere-lib": "1.30.0",
|
|
25
|
+
"@paroicms/public-anywhere-lib": "0.24.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "~24.0.1",
|
|
@@ -83,7 +83,7 @@ export interface ParoiCmsPlugin {
|
|
|
83
83
|
export interface BackendPluginInitService {
|
|
84
84
|
logger: AppLogger;
|
|
85
85
|
setPublicAssetsDirectory(directory: string): void;
|
|
86
|
-
|
|
86
|
+
setAdminUiAssetsDirectory(directory: string): void;
|
|
87
87
|
registerSiteSchemaLibrary(directory: string): void;
|
|
88
88
|
registerLiquidRootDirectory(directory: string): void;
|
|
89
89
|
registerLiquidFilter(
|
|
@@ -273,7 +273,7 @@ export interface PluginConfigurations {
|
|
|
273
273
|
|
|
274
274
|
export interface PluginConfiguration {
|
|
275
275
|
[key: string]: unknown;
|
|
276
|
-
|
|
276
|
+
adminUi?: Obj;
|
|
277
277
|
googleRecaptchaSiteKey?: string;
|
|
278
278
|
}
|
|
279
279
|
|