@26lights/orcha 0.42.110 → 0.42.111

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,5 +1,5 @@
1
1
  import type { Attachment, TimeTracking } from '../types';
2
- import { type Activity, type ActivityDevStatus, type ActivityStatus, type ActivityType, type AddActivityFeedPayload, type AddCommentPayload, type AddFilesPayload, type AddSubtaskPayload, type ChangeFeedActivitiesPayload, type FeedFilters, type Id, type Project, type RemoveCommentPayload, type RemoveFilePayload, type StartTimerPayload, type Subtask, type UpdateActivityPayload, type UpdateCommentPayload, type UpdateSubtaskFieldPayload, type User } from '../types';
2
+ import { type Activity, type ActivityDevStatus, type ActivityStatus, type ActivityType, type AddActivityFeedPayload, type AddCommentPayload, type AddFilesPayload, type AddSubtaskPayload, type ChangeFeedActivitiesPayload, type FeedFilters, type Id, type Project, type RemoveCommentPayload, type RemoveFilePayload, type Sprint, type StartTimerPayload, type Subtask, type UpdateActivityPayload, type UpdateCommentPayload, type UpdateSubtaskFieldPayload, type User } from '../types';
3
3
  export type FeedMode = 'standard' | 'dev';
4
4
  declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
5
  filters: {
@@ -50,6 +50,10 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
50
50
  type: import("vue").PropType<ActivityDevStatus[]>;
51
51
  default: () => never[];
52
52
  };
53
+ sprints: {
54
+ type: import("vue").PropType<Sprint[]>;
55
+ default: () => never[];
56
+ };
53
57
  attachmentEnabled: {
54
58
  type: import("vue").PropType<boolean>;
55
59
  required: true;
@@ -120,6 +124,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
120
124
  removeComment: (payload: RemoveCommentPayload) => void;
121
125
  toast: (message: string, type: "error" | "success") => void;
122
126
  startTimer: (payload: StartTimerPayload) => void;
127
+ createSprint: (projectId: string) => void;
123
128
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
124
129
  filters: {
125
130
  type: import("vue").PropType<FeedFilters>;
@@ -169,6 +174,10 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
169
174
  type: import("vue").PropType<ActivityDevStatus[]>;
170
175
  default: () => never[];
171
176
  };
177
+ sprints: {
178
+ type: import("vue").PropType<Sprint[]>;
179
+ default: () => never[];
180
+ };
172
181
  attachmentEnabled: {
173
182
  type: import("vue").PropType<boolean>;
174
183
  required: true;
@@ -231,6 +240,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
231
240
  onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
232
241
  onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
233
242
  onToast?: ((message: string, type: "error" | "success") => any) | undefined;
243
+ onCreateSprint?: ((projectId: string) => any) | undefined;
234
244
  onAddActivity?: ((payload: AddActivityFeedPayload) => any) | undefined;
235
245
  "onChange:activities"?: ((payload: ChangeFeedActivitiesPayload) => any) | undefined;
236
246
  "onUpdate:filters"?: ((value: FeedFilters) => any) | undefined;
@@ -244,6 +254,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
244
254
  activityTypes: ActivityType[];
245
255
  isTaskCheckable: (task: Subtask) => boolean;
246
256
  devStatuses: ActivityDevStatus[];
257
+ sprints: Sprint[];
247
258
  attachmentEnabled: boolean;
248
259
  projects: Project[];
249
260
  timeTrackingData: Record<Id, TimeTracking>;
@@ -1,4 +1,4 @@
1
- import { type Activity, type ActivityDevStatus, 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';
1
+ import { type Activity, type ActivityDevStatus, 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, type Sprint } from '../types';
2
2
  declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  phaseId: {
4
4
  type: import("vue").PropType<string>;
@@ -59,6 +59,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
59
59
  loadAttachmentPreview: {
60
60
  type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
61
61
  };
62
+ sprints: {
63
+ type: import("vue").PropType<Sprint[]>;
64
+ };
62
65
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
63
66
  'update:activity': (payload: UpdateActivityPayload) => void;
64
67
  addSubtask: (payload: AddSubtaskPayload) => void;
@@ -71,6 +74,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
71
74
  addComment: (payload: AddCommentPayload) => void;
72
75
  updateComment: (payload: UpdateCommentPayload) => void;
73
76
  removeComment: (payload: RemoveCommentPayload) => void;
77
+ createSprint: (projectId: string) => void;
74
78
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
75
79
  phaseId: {
76
80
  type: import("vue").PropType<string>;
@@ -131,6 +135,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
131
135
  loadAttachmentPreview: {
132
136
  type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
133
137
  };
138
+ sprints: {
139
+ type: import("vue").PropType<Sprint[]>;
140
+ };
134
141
  }>> & Readonly<{
135
142
  onDeleteSubtask?: ((payload: {
136
143
  id: Id;
@@ -143,6 +150,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
143
150
  onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
144
151
  onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
145
152
  onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
153
+ onCreateSprint?: ((projectId: string) => any) | undefined;
146
154
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
147
155
  declare function __VLS_template(): {
148
156
  default?(_: any): any;
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.110",
7
+ "version": "0.42.111",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],