@appconda/sdk 1.0.648 → 1.0.651
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/dist/modules/emploid/schema.d.ts +33 -0
- package/dist/modules/emploid/schema.js +34 -1
- package/dist/modules/emploid/service.d.ts +7 -2
- package/dist/modules/emploid/service.js +16 -1
- package/dist/modules/emploid/types.d.ts +29 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +38 -0
- package/src/modules/emploid/service.ts +32 -2
- package/src/modules/emploid/types.ts +32 -0
- package/tsconfig.codex-wiki-icon-check.json +14 -0
|
@@ -1641,6 +1641,39 @@ 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.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1652
|
+
chatModelName: z.ZodOptional<z.ZodString>;
|
|
1653
|
+
modelName: z.ZodOptional<z.ZodString>;
|
|
1654
|
+
llmModel: z.ZodOptional<z.ZodString>;
|
|
1655
|
+
llmModelConfig: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1656
|
+
}, z.core.$strip>;
|
|
1657
|
+
export declare const ListWikiAiCommandsSchema: z.ZodObject<{
|
|
1658
|
+
tenantId: z.ZodString;
|
|
1659
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1660
|
+
}, z.core.$strip>;
|
|
1661
|
+
export declare const CreateWikiAiCommandSchema: z.ZodObject<{
|
|
1662
|
+
tenantId: z.ZodString;
|
|
1663
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1664
|
+
title: z.ZodString;
|
|
1665
|
+
prompt: z.ZodString;
|
|
1666
|
+
icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1667
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1668
|
+
}, z.core.$strip>;
|
|
1669
|
+
export declare const RunWikiAiCommandSchema: z.ZodObject<{
|
|
1670
|
+
tenantId: z.ZodString;
|
|
1671
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1672
|
+
commandId: z.ZodString;
|
|
1673
|
+
editorContent: z.ZodString;
|
|
1674
|
+
selectedText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1675
|
+
customPrompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1676
|
+
}, z.core.$strip>;
|
|
1644
1677
|
export declare const SetWikiPageUserStateSchema: z.ZodObject<{
|
|
1645
1678
|
pageId: z.ZodString;
|
|
1646
1679
|
isFavorite: z.ZodOptional<z.ZodBoolean>;
|