@appconda/sdk 1.0.640 → 1.0.643
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 +13 -0
- package/dist/modules/emploid/schema.js +11 -1
- package/dist/modules/emploid/service.d.ts +3 -1
- package/dist/modules/emploid/service.js +7 -1
- package/dist/modules/emploid/types.d.ts +8 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +12 -0
- package/src/modules/emploid/service.ts +11 -1
- package/src/modules/emploid/types.ts +10 -0
|
@@ -215,6 +215,11 @@ export declare const CreateAgentFlowFolderSchema: z.ZodObject<{
|
|
|
215
215
|
tenantId: z.ZodString;
|
|
216
216
|
name: z.ZodString;
|
|
217
217
|
description: z.ZodOptional<z.ZodString>;
|
|
218
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
219
|
+
private: "private";
|
|
220
|
+
public: "public";
|
|
221
|
+
}>>;
|
|
222
|
+
ownerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
218
223
|
}, z.core.$strip>;
|
|
219
224
|
export declare const UpdateAgentFlowFolderSchema: z.ZodObject<{
|
|
220
225
|
id: z.ZodString;
|
|
@@ -228,6 +233,9 @@ export declare const DeleteAgentFlowFolderSchema: z.ZodObject<{
|
|
|
228
233
|
export declare const ListAgentFlowFoldersSchema: z.ZodObject<{
|
|
229
234
|
tenantId: z.ZodString;
|
|
230
235
|
}, z.core.$strip>;
|
|
236
|
+
export declare const GetPrivateAgentFlowFolderSchema: z.ZodObject<{
|
|
237
|
+
tenantId: z.ZodString;
|
|
238
|
+
}, z.core.$strip>;
|
|
231
239
|
export declare const ListDriveItemsSchema: z.ZodObject<{
|
|
232
240
|
tenantId: z.ZodString;
|
|
233
241
|
folderId: z.ZodOptional<z.ZodString>;
|
|
@@ -1628,6 +1636,11 @@ export declare const ListWikiPagesSchema: z.ZodObject<{
|
|
|
1628
1636
|
tenantId: z.ZodString;
|
|
1629
1637
|
workspaceId: z.ZodString;
|
|
1630
1638
|
}, z.core.$strip>;
|
|
1639
|
+
export declare const SetWikiPageUserStateSchema: z.ZodObject<{
|
|
1640
|
+
pageId: z.ZodString;
|
|
1641
|
+
isFavorite: z.ZodOptional<z.ZodBoolean>;
|
|
1642
|
+
isWatching: z.ZodOptional<z.ZodBoolean>;
|
|
1643
|
+
}, z.core.$strip>;
|
|
1631
1644
|
export declare const UploadEditorFileSchema: z.ZodObject<{
|
|
1632
1645
|
fileName: z.ZodString;
|
|
1633
1646
|
fileType: z.ZodOptional<z.ZodString>;
|