@appconda/sdk 1.0.645 → 1.0.647
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 +34 -0
- package/dist/modules/emploid/schema.js +35 -1
- package/dist/modules/emploid/service.d.ts +10 -2
- package/dist/modules/emploid/service.js +26 -2
- package/dist/modules/emploid/types.d.ts +22 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +39 -0
- package/src/modules/emploid/service.ts +42 -3
- package/src/modules/emploid/types.ts +24 -0
|
@@ -1602,6 +1602,7 @@ export declare const UpdateWikiPageSchema: z.ZodObject<{
|
|
|
1602
1602
|
description: z.ZodOptional<z.ZodString>;
|
|
1603
1603
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1604
1604
|
status: z.ZodOptional<z.ZodString>;
|
|
1605
|
+
fullPageWidth: z.ZodOptional<z.ZodBoolean>;
|
|
1605
1606
|
}, z.core.$strip>;
|
|
1606
1607
|
export declare const DeleteWikiPageSchema: z.ZodObject<{
|
|
1607
1608
|
id: z.ZodString;
|
|
@@ -1680,6 +1681,39 @@ export declare const ListWikiCommentsSchema: z.ZodObject<{
|
|
|
1680
1681
|
page: z.ZodOptional<z.ZodNumber>;
|
|
1681
1682
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
1682
1683
|
}, z.core.$strip>;
|
|
1684
|
+
export declare const CreateWikiReferenceSchema: z.ZodObject<{
|
|
1685
|
+
tenantId: z.ZodString;
|
|
1686
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
1687
|
+
pageId: z.ZodOptional<z.ZodString>;
|
|
1688
|
+
type: z.ZodString;
|
|
1689
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1690
|
+
content: z.ZodString;
|
|
1691
|
+
previewContent: z.ZodOptional<z.ZodString>;
|
|
1692
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
1693
|
+
}, z.core.$strip>;
|
|
1694
|
+
export declare const UpdateWikiReferenceSchema: z.ZodObject<{
|
|
1695
|
+
id: z.ZodString;
|
|
1696
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1698
|
+
content: z.ZodOptional<z.ZodString>;
|
|
1699
|
+
previewContent: z.ZodOptional<z.ZodString>;
|
|
1700
|
+
updatedBy: z.ZodOptional<z.ZodString>;
|
|
1701
|
+
}, z.core.$strip>;
|
|
1702
|
+
export declare const GetWikiReferenceByIdSchema: z.ZodObject<{
|
|
1703
|
+
id: z.ZodString;
|
|
1704
|
+
}, z.core.$strip>;
|
|
1705
|
+
export declare const ListWikiReferencesSchema: z.ZodObject<{
|
|
1706
|
+
tenantId: z.ZodString;
|
|
1707
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
1708
|
+
pageId: z.ZodOptional<z.ZodString>;
|
|
1709
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1710
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
1711
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
1712
|
+
}, z.core.$strip>;
|
|
1713
|
+
export declare const DeleteWikiReferenceSchema: z.ZodObject<{
|
|
1714
|
+
id: z.ZodString;
|
|
1715
|
+
updatedBy: z.ZodOptional<z.ZodString>;
|
|
1716
|
+
}, z.core.$strip>;
|
|
1683
1717
|
export declare const CreateDatasourceSchema: z.ZodObject<{
|
|
1684
1718
|
tenantId: z.ZodString;
|
|
1685
1719
|
entityId: z.ZodString;
|