@26lights/orcha 0.42.87 → 0.42.89

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 Activity, type Id, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, type ActivityType, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type Project, type TimeTracking } from '../types';
1
+ import { type Activity, type Id, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, type ActivityType, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type Project, type Attachment, type TimeTracking } from '../types';
2
2
  declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  phaseId: {
4
4
  type: import("vue").PropType<string>;
@@ -53,6 +53,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
53
53
  timeTrackingData: {
54
54
  type: import("vue").PropType<Record<string, TimeTracking>>;
55
55
  };
56
+ loadAttachmentPreview: {
57
+ type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
58
+ };
56
59
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
57
60
  'update:activity': (payload: UpdateActivityPayload) => void;
58
61
  addSubtask: (payload: AddSubtaskPayload) => void;
@@ -119,6 +122,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
119
122
  timeTrackingData: {
120
123
  type: import("vue").PropType<Record<string, TimeTracking>>;
121
124
  };
125
+ loadAttachmentPreview: {
126
+ type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
127
+ };
122
128
  }>> & Readonly<{
123
129
  onDeleteSubtask?: ((payload: {
124
130
  id: Id;
@@ -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 Id, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, type UpdateSubtaskFieldPayload, type Activity, type ActivityType, type SaveTemplatePayload, type TimeTracking } 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 Id, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, type UpdateSubtaskFieldPayload, type Activity, type ActivityType, type SaveTemplatePayload, type TimeTracking, type Attachment } from '../types';
2
2
  declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  project: {
4
4
  type: import("vue").PropType<Project>;
@@ -53,6 +53,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
53
53
  timeTrackingData: {
54
54
  type: import("vue").PropType<Record<string, TimeTracking>>;
55
55
  };
56
+ loadAttachmentPreview: {
57
+ type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
58
+ };
56
59
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
57
60
  addPhase: (payload: AddPhasePayload) => void;
58
61
  updatePhase: (payload: UpdatePhasePayload) => void;
@@ -148,6 +151,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
148
151
  timeTrackingData: {
149
152
  type: import("vue").PropType<Record<string, TimeTracking>>;
150
153
  };
154
+ loadAttachmentPreview: {
155
+ type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
156
+ };
151
157
  }>> & Readonly<{
152
158
  onArchiveActivity?: ((payload: {
153
159
  id: Id;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "module",
5
5
  "license": "CC-BY-NC-ND-4.0",
6
6
  "author": "26lights <dev@26lights.com> (https://www.26lights.com)",
7
- "version": "0.42.87",
7
+ "version": "0.42.89",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],