@appconda/sdk 1.0.646 → 1.0.648

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.
@@ -1593,6 +1593,8 @@ export declare const CreateWikiPageSchema: z.ZodObject<{
1593
1593
  title: z.ZodString;
1594
1594
  slug: z.ZodString;
1595
1595
  description: z.ZodOptional<z.ZodString>;
1596
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1597
+ iconColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1596
1598
  parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1597
1599
  }, z.core.$strip>;
1598
1600
  export declare const UpdateWikiPageSchema: z.ZodObject<{
@@ -1600,8 +1602,11 @@ export declare const UpdateWikiPageSchema: z.ZodObject<{
1600
1602
  title: z.ZodOptional<z.ZodString>;
1601
1603
  slug: z.ZodOptional<z.ZodString>;
1602
1604
  description: z.ZodOptional<z.ZodString>;
1605
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1606
+ iconColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1603
1607
  parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1604
1608
  status: z.ZodOptional<z.ZodString>;
1609
+ fullPageWidth: z.ZodOptional<z.ZodBoolean>;
1605
1610
  }, z.core.$strip>;
1606
1611
  export declare const DeleteWikiPageSchema: z.ZodObject<{
1607
1612
  id: z.ZodString;