@paroicms/public-server-lib 0.52.1 → 0.53.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.52.1",
3
+ "version": "0.53.0",
4
4
  "description": "Common utilitaries for paroicms plugins (backend side).",
5
5
  "author": "Paroi Team",
6
6
  "repository": {
@@ -392,6 +392,7 @@ export interface RunningSiteConnector {
392
392
  total?: number;
393
393
  }>;
394
394
  deleteDocument(documentId: string): Promise<void>;
395
+ moveDocument(documentNodeId: string, newParentNodeId: string): Promise<void>;
395
396
  publishDocument(documentId: string, publishDate?: string): Promise<void>;
396
397
  unpublishDocument(documentId: string): Promise<void>;
397
398
  getDocument(documentId: string): Promise<FullDocument>;