@appconda/sdk 1.0.655 → 1.0.656

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.
@@ -1596,6 +1596,10 @@ export declare const CreateWikiPageSchema: z.ZodObject<{
1596
1596
  icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1597
1597
  iconColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1598
1598
  parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1599
+ nodeType: z.ZodOptional<z.ZodEnum<{
1600
+ DOCUMENT: "DOCUMENT";
1601
+ FOLDER: "FOLDER";
1602
+ }>>;
1599
1603
  }, z.core.$strip>;
1600
1604
  export declare const UpdateWikiPageSchema: z.ZodObject<{
1601
1605
  id: z.ZodString;
@@ -1611,6 +1615,12 @@ export declare const UpdateWikiPageSchema: z.ZodObject<{
1611
1615
  export declare const DeleteWikiPageSchema: z.ZodObject<{
1612
1616
  id: z.ZodString;
1613
1617
  }, z.core.$strip>;
1618
+ export declare const MoveWikiPageSchema: z.ZodObject<{
1619
+ id: z.ZodString;
1620
+ parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1621
+ beforeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1622
+ afterId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1623
+ }, z.core.$strip>;
1614
1624
  export declare const RestoreWikiPageSchema: z.ZodObject<{
1615
1625
  id: z.ZodString;
1616
1626
  }, z.core.$strip>;