@paroicms/public-server-lib 0.38.3 → 0.39.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/public-server-lib",
3
- "version": "0.38.3",
3
+ "version": "0.39.1",
4
4
  "description": "Common utilitaries for paroicms plugins (backend side).",
5
5
  "author": "Paroi Team",
6
6
  "repository": {
@@ -20,8 +20,8 @@
20
20
  "dev": "tsc --watch --preserveWatchOutput"
21
21
  },
22
22
  "dependencies": {
23
- "@paroicms/internal-anywhere-lib": "1.31.8",
24
- "@paroicms/public-anywhere-lib": "0.29.0",
23
+ "@paroicms/internal-anywhere-lib": "1.31.10",
24
+ "@paroicms/public-anywhere-lib": "0.31.0",
25
25
  "arktype": "~2.1.20"
26
26
  },
27
27
  "devDependencies": {
@@ -4,7 +4,7 @@ import type {
4
4
  MSourceImage,
5
5
  MSourceMedia,
6
6
  Obj,
7
- ParsedNodelId,
7
+ ParsedLNodeId,
8
8
  ReadFieldValue,
9
9
  ResizeRule,
10
10
  ScFieldDataType,
@@ -215,7 +215,7 @@ export interface PluginRenderingService {
215
215
  ctx: PaHttpContext,
216
216
  options: {
217
217
  params: PartialsParamsInput;
218
- parentDocumentId: ParsedNodelId;
218
+ parentDocumentId: ParsedLNodeId;
219
219
  labeledBy?: LabeledBy;
220
220
  },
221
221
  ): Promise<void>;
@@ -360,14 +360,14 @@ export interface RunningInstanceConnector {
360
360
  parentNodeId: string;
361
361
  contents: RiDocumentContent[];
362
362
  },
363
- ): Promise<ParsedNodelId[]>;
363
+ ): Promise<ParsedLNodeId[]>;
364
364
  addMultiplePartContents(
365
365
  fqdn: string,
366
366
  options: {
367
367
  parentNodeId: string;
368
368
  contents: RiPartContent[];
369
369
  },
370
- ): Promise<ParsedNodelId[]>;
370
+ ): Promise<ParsedLNodeId[]>;
371
371
  registerNewSite: (options: NewSiteOptions) => Promise<RegisteredSite>;
372
372
  removeSite: (fqdn: string) => Promise<void>;
373
373
  }