@26lights/orcha 0.10.1 → 0.10.2
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Project, type User, type AddActivityPayload, type UpdateActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus } from '../types';
|
|
1
|
+
import { type Project, type User, type AddActivityPayload, type UpdateActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, UpdateSubtaskFieldPayload } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
project: {
|
|
4
4
|
type: import("vue").PropType<Project>;
|
|
@@ -50,6 +50,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
50
|
id: string;
|
|
51
51
|
}) => void;
|
|
52
52
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
53
|
+
updateSubtask: (payload: UpdateSubtaskFieldPayload) => void;
|
|
54
|
+
deleteSubtask: (payload: {
|
|
55
|
+
id: string;
|
|
56
|
+
}) => void;
|
|
53
57
|
addFiles: (payload: AddFilesPayload) => void;
|
|
54
58
|
removeFile: (payload: RemoveFilePayload) => void;
|
|
55
59
|
addComment: (payload: AddCommentPayload) => void;
|
|
@@ -96,9 +100,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
100
|
}) => any) | undefined;
|
|
97
101
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
98
102
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
|
103
|
+
onDeleteSubtask?: ((payload: {
|
|
104
|
+
id: string;
|
|
105
|
+
}) => any) | undefined;
|
|
99
106
|
onRemoveFile?: ((payload: RemoveFilePayload) => any) | undefined;
|
|
100
107
|
"onUpdate:activity"?: ((payload: UpdateActivityPayload) => any) | undefined;
|
|
101
108
|
onAddSubtask?: ((payload: AddSubtaskPayload) => any) | undefined;
|
|
109
|
+
onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
|
|
102
110
|
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
103
111
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
104
112
|
onAddActivity?: ((payload: AddActivityPayload) => any) | undefined;
|