@appconda/sdk 1.0.654 → 1.0.655
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 +24 -0
- package/dist/modules/emploid/schema.js +25 -1
- package/dist/modules/emploid/service.d.ts +10 -0
- package/dist/modules/emploid/service.js +16 -1
- package/dist/modules/emploid/types.d.ts +15 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +29 -0
- package/src/modules/emploid/service.ts +38 -0
- package/src/modules/emploid/types.ts +16 -0
|
@@ -1641,6 +1641,30 @@ 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 ListWikiSpacesSchema: z.ZodObject<{
|
|
1645
|
+
tenantId: z.ZodString;
|
|
1646
|
+
}, z.core.$strip>;
|
|
1647
|
+
export declare const CreateWikiSpaceSchema: z.ZodObject<{
|
|
1648
|
+
tenantId: z.ZodString;
|
|
1649
|
+
name: z.ZodString;
|
|
1650
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1651
|
+
icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1652
|
+
iconColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1653
|
+
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1654
|
+
}, z.core.$strip>;
|
|
1655
|
+
export declare const UpdateWikiSpaceSchema: z.ZodObject<{
|
|
1656
|
+
id: z.ZodString;
|
|
1657
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1658
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1659
|
+
icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1660
|
+
iconColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1661
|
+
}, z.core.$strip>;
|
|
1662
|
+
export declare const DeleteWikiSpaceSchema: z.ZodObject<{
|
|
1663
|
+
id: z.ZodString;
|
|
1664
|
+
}, z.core.$strip>;
|
|
1665
|
+
export declare const GetPrivateWikiSpaceSchema: z.ZodObject<{
|
|
1666
|
+
tenantId: z.ZodString;
|
|
1667
|
+
}, z.core.$strip>;
|
|
1644
1668
|
export declare const GetWikiAiSettingsSchema: z.ZodObject<{
|
|
1645
1669
|
tenantId: z.ZodString;
|
|
1646
1670
|
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|