@26lights/orcha 0.9.20 → 0.9.21

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.
@@ -42,8 +42,8 @@ export interface ActivityBase extends Entity, Ordered {
42
42
  important?: boolean;
43
43
  type?: ActivityType;
44
44
  milestone?: Milestone;
45
- dependingOn?: Id[];
46
- blocking?: Id[];
45
+ dependingOn?: ActivityBase[];
46
+ blocking?: ActivityBase[];
47
47
  attachments?: Attachment[];
48
48
  tasks?: Subtask[];
49
49
  }
@@ -263,8 +263,8 @@ export interface UpdateActivityPayload {
263
263
  description?: string;
264
264
  estimation?: number;
265
265
  important?: boolean;
266
- dependingOn?: Id[];
267
- blocking?: Id[];
266
+ dependingOn?: ActivityBase[];
267
+ blocking?: ActivityBase[];
268
268
  dependingMilestones?: Id[];
269
269
  type?: string;
270
270
  rank?: string;
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.20",
7
+ "version": "0.9.21",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],