@26lights/orcha 0.7.33 → 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,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.33",
7
+ "version": "0.7.34",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],