@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.
- package/dist/orcha.cjs.js +1 -1
- package/dist/orcha.es.js +6 -4
- package/dist/orcha.umd.js +1 -1
- package/dist/src/types/index.d.ts +4 -4
- package/package.json +1 -1
|
@@ -42,8 +42,8 @@ export interface ActivityBase extends Entity, Ordered {
|
|
|
42
42
|
important?: boolean;
|
|
43
43
|
type?: ActivityType;
|
|
44
44
|
milestone?: Milestone;
|
|
45
|
-
dependingOn?:
|
|
46
|
-
blocking?:
|
|
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?:
|
|
267
|
-
blocking?:
|
|
266
|
+
dependingOn?: ActivityBase[];
|
|
267
|
+
blocking?: ActivityBase[];
|
|
268
268
|
dependingMilestones?: Id[];
|
|
269
269
|
type?: string;
|
|
270
270
|
rank?: string;
|