@appconda/sdk 1.0.648 → 1.0.650

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.
@@ -1641,6 +1641,37 @@ export declare const ListWikiPagesSchema: z.ZodObject<{
1641
1641
  tenantId: z.ZodString;
1642
1642
  workspaceId: z.ZodString;
1643
1643
  }, z.core.$strip>;
1644
+ export declare const GetWikiAiSettingsSchema: z.ZodObject<{
1645
+ tenantId: z.ZodString;
1646
+ workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1647
+ }, z.core.$strip>;
1648
+ export declare const SetWikiAiSettingsSchema: z.ZodObject<{
1649
+ tenantId: z.ZodString;
1650
+ workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1651
+ credentialId: z.ZodString;
1652
+ chatModelName: z.ZodOptional<z.ZodString>;
1653
+ modelName: z.ZodOptional<z.ZodString>;
1654
+ }, z.core.$strip>;
1655
+ export declare const ListWikiAiCommandsSchema: z.ZodObject<{
1656
+ tenantId: z.ZodString;
1657
+ workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1658
+ }, z.core.$strip>;
1659
+ export declare const CreateWikiAiCommandSchema: z.ZodObject<{
1660
+ tenantId: z.ZodString;
1661
+ workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1662
+ title: z.ZodString;
1663
+ prompt: z.ZodString;
1664
+ icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1665
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1666
+ }, z.core.$strip>;
1667
+ export declare const RunWikiAiCommandSchema: z.ZodObject<{
1668
+ tenantId: z.ZodString;
1669
+ workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1670
+ commandId: z.ZodString;
1671
+ editorContent: z.ZodString;
1672
+ selectedText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1673
+ customPrompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1674
+ }, z.core.$strip>;
1644
1675
  export declare const SetWikiPageUserStateSchema: z.ZodObject<{
1645
1676
  pageId: z.ZodString;
1646
1677
  isFavorite: z.ZodOptional<z.ZodBoolean>;