@veltdev/react 3.0.66 → 3.0.67
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/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/constants.d.ts +1 -1
- package/cjs/types/hooks/CommentActions.d.ts +67 -0
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/esm/types/constants.d.ts +1 -1
- package/esm/types/hooks/CommentActions.d.ts +67 -0
- package/package.json +1 -1
package/cjs/types/constants.d.ts
CHANGED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { Attachment, RecordedData } from "@veltdev/types";
|
|
2
|
+
export declare function useAddCommentAnnotation(): {
|
|
3
|
+
addCommentAnnotation: (config: AddCommentAnnotationConfig) => Promise<any>;
|
|
4
|
+
};
|
|
5
|
+
export declare function useApproveCommentAnnotation(): {
|
|
6
|
+
approveCommentAnnotation: (config: ApproveCommentAnnotationConfig) => Promise<any>;
|
|
7
|
+
};
|
|
8
|
+
export declare function useRejectCommentAnnotation(): {
|
|
9
|
+
rejectCommentAnnotation: (config: RejectCommentAnnotationConfig) => Promise<any>;
|
|
10
|
+
};
|
|
11
|
+
export declare function useDeleteCommentAnnotation(): {
|
|
12
|
+
deleteCommentAnnotation: (config: DeleteCommentAnnotationConfig) => Promise<any>;
|
|
13
|
+
};
|
|
14
|
+
export declare function useUpdatePriority(): {
|
|
15
|
+
updatePriority: (config: UpdatePriorityConfig) => Promise<any>;
|
|
16
|
+
};
|
|
17
|
+
export declare function useUpdateStatus(): {
|
|
18
|
+
updateStatus: (config: UpdateStatusConfig) => Promise<any>;
|
|
19
|
+
};
|
|
20
|
+
export declare function useUpdateAccess(): {
|
|
21
|
+
updateAccess: (config: UpdateAccessConfig) => Promise<any>;
|
|
22
|
+
};
|
|
23
|
+
export declare function useResolveCommentAnnotation(): {
|
|
24
|
+
resolveCommentAnnotation: (config: ResolveCommentAnnotationConfig) => Promise<any>;
|
|
25
|
+
};
|
|
26
|
+
export declare function useGetLink(): {
|
|
27
|
+
getLink: (config: GetLinkConfig) => Promise<any>;
|
|
28
|
+
};
|
|
29
|
+
export declare function useCopyLink(): {
|
|
30
|
+
copyLink: (config: CopyLinkConfig) => Promise<any>;
|
|
31
|
+
};
|
|
32
|
+
export declare function useAddComment(): {
|
|
33
|
+
addComment: (config: AddCommentConfig) => Promise<any>;
|
|
34
|
+
};
|
|
35
|
+
export declare function useUpdateComment(): {
|
|
36
|
+
updateComment: (config: UpdateCommentConfig) => Promise<any>;
|
|
37
|
+
};
|
|
38
|
+
export declare function useDeleteComment(): {
|
|
39
|
+
deleteComment: (config: DeleteCommentConfig) => Promise<any>;
|
|
40
|
+
};
|
|
41
|
+
export declare function useGetComment(): {
|
|
42
|
+
getComment: (config: GetCommentConfig) => Promise<Comment[]>;
|
|
43
|
+
};
|
|
44
|
+
export declare function useAddAttachment(): {
|
|
45
|
+
addAttachment: (config: AddAttachmentConfig) => Promise<AddAttachmentResponse[] | null>;
|
|
46
|
+
};
|
|
47
|
+
export declare function useDeleteAttachment(): {
|
|
48
|
+
deleteAttachment: (config: DeleteAttachmentConfig) => Promise<any>;
|
|
49
|
+
};
|
|
50
|
+
export declare function useGetAttachment(): {
|
|
51
|
+
getAttachment: (config: GetAttachmentConfig) => Promise<Attachment[] | null>;
|
|
52
|
+
};
|
|
53
|
+
export declare function useDeleteRecording(): {
|
|
54
|
+
deleteRecording: (config: DeleteRecordingConfig) => Promise<any>;
|
|
55
|
+
};
|
|
56
|
+
export declare function useGetRecording(): {
|
|
57
|
+
getRecording: (config: GetRecordingConfig) => Promise<RecordedData[] | null>;
|
|
58
|
+
};
|
|
59
|
+
export declare function useAddReaction(): {
|
|
60
|
+
addReaction: (config: AddReactionConfig) => Promise<any>;
|
|
61
|
+
};
|
|
62
|
+
export declare function useDeleteReaction(): {
|
|
63
|
+
deleteReaction: (config: DeleteReactionConfig) => Promise<any>;
|
|
64
|
+
};
|
|
65
|
+
export declare function useToggleReaction(): {
|
|
66
|
+
toggleReaction: (config: ToggleReactionConfig) => Promise<any>;
|
|
67
|
+
};
|
package/esm/index.js
CHANGED