@26lights/orcha 0.7.32 → 0.7.34

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,7 +1,8 @@
1
- import { type UpdateActivityFeedPayload, type ChangeFeedActivitiesPayload, type Id, type ActivityStatus, type Activity, type ActivityFeedStatus } from '../types';
1
+ import { type UpdateActivityFeedPayload, type ChangeFeedActivitiesPayload, type Id, type ActivityStatus, type Activity, type ActivityFeedStatus, User } from '../types';
2
2
  declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
3
3
  list: Activity[];
4
4
  status: ActivityStatus;
5
+ users: User[];
5
6
  title?: string | undefined;
6
7
  footerLabel?: string | undefined;
7
8
  isLoading?: boolean | undefined;
@@ -11,6 +12,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
11
12
  props: {
12
13
  list: Activity[];
13
14
  status: ActivityStatus;
15
+ users: User[];
14
16
  title?: string | undefined;
15
17
  footerLabel?: string | undefined;
16
18
  isLoading?: boolean | undefined;
@@ -36,6 +38,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
36
38
  props: {
37
39
  list: Activity[];
38
40
  status: ActivityStatus;
41
+ users: User[];
39
42
  title?: string | undefined;
40
43
  footerLabel?: string | undefined;
41
44
  isLoading?: boolean | undefined;
@@ -64,6 +67,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
64
67
  props: {
65
68
  list: Activity[];
66
69
  status: ActivityStatus;
70
+ users: User[];
67
71
  title?: string | undefined;
68
72
  footerLabel?: string | undefined;
69
73
  isLoading?: boolean | undefined;
@@ -74,7 +74,7 @@ export interface UpdateActivityFeedPayload {
74
74
  estimation?: number;
75
75
  important?: boolean;
76
76
  typeId?: Id;
77
- assigneeId?: Id;
77
+ assigneeId?: Id | null;
78
78
  statusId?: Id;
79
79
  deadline?: string;
80
80
  active?: boolean;
@@ -1,9 +1,13 @@
1
- import { type Project, type User, type AddActivityPayload, type UpdateProjectActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload } from '../types';
1
+ import { type Project, type User, type AddActivityPayload, type UpdateProjectActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase } from '../types';
2
2
  declare const _default: import("vue").DefineComponent<{
3
3
  project: {
4
4
  type: import("vue").PropType<Project>;
5
5
  required: true;
6
6
  };
7
+ phases: {
8
+ type: import("vue").PropType<Phase[]>;
9
+ required: true;
10
+ };
7
11
  users: {
8
12
  type: import("vue").PropType<User[]>;
9
13
  required: true;
@@ -28,6 +32,10 @@ declare const _default: import("vue").DefineComponent<{
28
32
  type: import("vue").PropType<Project>;
29
33
  required: true;
30
34
  };
35
+ phases: {
36
+ type: import("vue").PropType<Phase[]>;
37
+ required: true;
38
+ };
31
39
  users: {
32
40
  type: import("vue").PropType<User[]>;
33
41
  required: true;
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.32",
7
+ "version": "0.7.34",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],