@26lights/orcha 0.7.13 → 0.7.15

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.
@@ -14,8 +14,8 @@ export declare function useFeedStore(): {
14
14
  __typename: string;
15
15
  id: string;
16
16
  };
17
- deadline: string;
18
- project: {
17
+ deadline?: string | undefined;
18
+ project?: {
19
19
  id: string;
20
20
  name?: string | undefined;
21
21
  phases?: {
@@ -34,7 +34,7 @@ export declare function useFeedStore(): {
34
34
  id: string;
35
35
  rank: string;
36
36
  }[] | undefined;
37
- };
37
+ } | undefined;
38
38
  comments?: {
39
39
  userId: string;
40
40
  content: string;
@@ -70,13 +70,15 @@ export type DurationTypes = (typeof durationTypes)[DurationTypesKeys];
70
70
  export interface Activity extends ActivityBase {
71
71
  assignee?: User;
72
72
  status: ActivityStatus;
73
- deadline: string;
74
- project: Project;
73
+ deadline?: string;
74
+ project?: Project;
75
75
  comments?: Comment[];
76
76
  duration?: number;
77
77
  durationType?: DurationTypes;
78
78
  }
79
79
  export interface AddActivityFeedPayload {
80
+ name: string;
81
+ rank: string;
80
82
  statusId: string;
81
83
  }
82
84
  export interface UpdateActivityFeedPayload {
@@ -342,7 +344,7 @@ export type FeedListUpdateAdd = {
342
344
  };
343
345
  export type FeedListUpdateRemove = {
344
346
  removed: {
345
- element: FeedListUpdateType;
347
+ element: Activity;
346
348
  oldIndex: number;
347
349
  };
348
350
  };
@@ -1,4 +1,4 @@
1
- import { type ChangeFeedActivitiesPayload, type Project, type UpdateFeedFilterPayload, type FeedFiltersMap, type User, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Activity, type AddActivityFeedPayload, type UpdateActivityFeedPayload } from '../types';
1
+ import { type ChangeFeedActivitiesPayload, type Project, type UpdateFeedFilterPayload, type FeedFiltersMap, type User, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Activity, type AddActivityFeedPayload, type UpdateActivityFeedPayload, ActivityType } from '../types';
2
2
  import { ActivityStatus } from '../types';
3
3
  declare const _default: import("vue").DefineComponent<{
4
4
  activities: {
@@ -18,7 +18,7 @@ declare const _default: import("vue").DefineComponent<{
18
18
  required: true;
19
19
  };
20
20
  activityTypes: {
21
- type: import("vue").PropType<string[]>;
21
+ type: import("vue").PropType<ActivityType[]>;
22
22
  required: true;
23
23
  };
24
24
  users: {
@@ -65,7 +65,7 @@ declare const _default: import("vue").DefineComponent<{
65
65
  required: true;
66
66
  };
67
67
  activityTypes: {
68
- type: import("vue").PropType<string[]>;
68
+ type: import("vue").PropType<ActivityType[]>;
69
69
  required: true;
70
70
  };
71
71
  users: {
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.7.13",
7
+ "version": "0.7.15",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],