@appconda/sdk 1.0.655 → 1.0.658

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