@paroicms/public-server-lib 0.45.0 → 0.45.2

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.45.0",
3
+ "version": "0.45.2",
4
4
  "description": "Common utilitaries for paroicms plugins (backend side).",
5
5
  "author": "Paroi Team",
6
6
  "repository": {
@@ -22,9 +22,9 @@
22
22
  "dev": "tsc --watch --preserveWatchOutput"
23
23
  },
24
24
  "dependencies": {
25
- "@paroicms/internal-anywhere-lib": "1.34.0",
26
- "@paroicms/public-anywhere-lib": "0.35.0",
27
- "@paroicms/script-lib": "0.2.1",
25
+ "@paroicms/internal-anywhere-lib": "1.34.1",
26
+ "@paroicms/public-anywhere-lib": "0.35.1",
27
+ "@paroicms/script-lib": "0.2.2",
28
28
  "@typeonly/validator": "~1.1.2",
29
29
  "arktype": "~2.1.20"
30
30
  },
@@ -162,8 +162,11 @@ export type PluginLiquidFilterHandler = (
162
162
 
163
163
  export type PluginLiquidTagReturnsVarHandler = (
164
164
  service: PluginRenderingService,
165
- parameters: { [key: string]: unknown },
166
- options: { variableName: string },
165
+ options: {
166
+ mainParameter: unknown;
167
+ namedParameters: { [key: string]: unknown };
168
+ variableName: string;
169
+ },
167
170
  ) => Generator;
168
171
 
169
172
  export type PluginLiquidTagReturnsHtmlHandler = (