@appconda/sdk 1.0.644 → 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 +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 +23 -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 +39 -0
- package/src/modules/emploid/service.ts +39 -2
- package/src/modules/emploid/types.ts +23 -0
|
@@ -1640,6 +1640,7 @@ export declare const SetWikiPageUserStateSchema: z.ZodObject<{
|
|
|
1640
1640
|
pageId: z.ZodString;
|
|
1641
1641
|
isFavorite: z.ZodOptional<z.ZodBoolean>;
|
|
1642
1642
|
isWatching: z.ZodOptional<z.ZodBoolean>;
|
|
1643
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
1643
1644
|
}, z.core.$strip>;
|
|
1644
1645
|
export declare const UploadEditorFileSchema: z.ZodObject<{
|
|
1645
1646
|
fileName: z.ZodString;
|
|
@@ -1679,6 +1680,39 @@ export declare const ListWikiCommentsSchema: z.ZodObject<{
|
|
|
1679
1680
|
page: z.ZodOptional<z.ZodNumber>;
|
|
1680
1681
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
1681
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>;
|
|
1682
1716
|
export declare const CreateDatasourceSchema: z.ZodObject<{
|
|
1683
1717
|
tenantId: z.ZodString;
|
|
1684
1718
|
entityId: z.ZodString;
|