@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.
- package/dist/locales/en/translation.json +1 -1
- package/dist/orcha.cjs.js +1 -1
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +316 -318
- package/dist/orcha.umd.js +2 -2
- package/dist/src/composables/useProjectOverviewStore.d.ts +1 -0
- package/dist/src/types/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -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;
|