@26lights/orcha 0.9.0 → 0.9.1

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.
@@ -53,6 +53,7 @@ export default function useProjectOverviewStore(): {
53
53
  }[] | undefined;
54
54
  duration?: number | undefined;
55
55
  durationType?: import('../types').DurationTypes | undefined;
56
+ active: boolean;
56
57
  name: string;
57
58
  description?: string | undefined;
58
59
  estimation?: number | undefined;
@@ -61,6 +61,7 @@ export interface Activity extends ActivityBase {
61
61
  comments?: Comment[];
62
62
  duration?: number;
63
63
  durationType?: DurationTypes;
64
+ active: boolean;
64
65
  }
65
66
  export interface AddActivityFeedPayload {
66
67
  name: string;
@@ -260,6 +261,8 @@ export interface UpdateActivityPayload {
260
261
  dependingMilestones?: Id[];
261
262
  type?: string;
262
263
  rank?: string;
264
+ statusId?: string;
265
+ deadline?: string;
263
266
  }
264
267
  export interface AddRulePayload {
265
268
  templateId: 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.9.0",
7
+ "version": "0.9.1",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],