@appconda/sdk 1.0.645 → 1.0.646
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 +10 -2
- package/dist/modules/emploid/service.js +20 -1
- package/dist/modules/emploid/types.d.ts +21 -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 +36 -2
- package/src/modules/emploid/types.ts +23 -0
|
@@ -1680,6 +1680,39 @@ export declare const ListWikiCommentsSchema: z.ZodObject<{
|
|
|
1680
1680
|
page: z.ZodOptional<z.ZodNumber>;
|
|
1681
1681
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
1682
1682
|
}, z.core.$strip>;
|
|
1683
|
+
export declare const CreateWikiReferenceSchema: z.ZodObject<{
|
|
1684
|
+
tenantId: z.ZodString;
|
|
1685
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
1686
|
+
pageId: z.ZodOptional<z.ZodString>;
|
|
1687
|
+
type: z.ZodString;
|
|
1688
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1689
|
+
content: z.ZodString;
|
|
1690
|
+
previewContent: z.ZodOptional<z.ZodString>;
|
|
1691
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
1692
|
+
}, z.core.$strip>;
|
|
1693
|
+
export declare const UpdateWikiReferenceSchema: z.ZodObject<{
|
|
1694
|
+
id: z.ZodString;
|
|
1695
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1696
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
content: z.ZodOptional<z.ZodString>;
|
|
1698
|
+
previewContent: z.ZodOptional<z.ZodString>;
|
|
1699
|
+
updatedBy: z.ZodOptional<z.ZodString>;
|
|
1700
|
+
}, z.core.$strip>;
|
|
1701
|
+
export declare const GetWikiReferenceByIdSchema: z.ZodObject<{
|
|
1702
|
+
id: z.ZodString;
|
|
1703
|
+
}, z.core.$strip>;
|
|
1704
|
+
export declare const ListWikiReferencesSchema: z.ZodObject<{
|
|
1705
|
+
tenantId: z.ZodString;
|
|
1706
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
1707
|
+
pageId: z.ZodOptional<z.ZodString>;
|
|
1708
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1709
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
1710
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
1711
|
+
}, z.core.$strip>;
|
|
1712
|
+
export declare const DeleteWikiReferenceSchema: z.ZodObject<{
|
|
1713
|
+
id: z.ZodString;
|
|
1714
|
+
updatedBy: z.ZodOptional<z.ZodString>;
|
|
1715
|
+
}, z.core.$strip>;
|
|
1683
1716
|
export declare const CreateDatasourceSchema: z.ZodObject<{
|
|
1684
1717
|
tenantId: z.ZodString;
|
|
1685
1718
|
entityId: z.ZodString;
|