@26lights/orcha 0.26.0 → 0.27.0

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,11 +1,11 @@
1
- import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type User, type AddFilesPayload, type RemoveFilePayload, type UpdateActivityPayload, type Activity, type Subtask, type ActivityStatus, type AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload } from '../types/index';
1
+ import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type User, type AddFilesPayload, type RemoveFilePayload, type UpdateActivityPayload, type Activity, type Subtask, type ActivityStatus, type AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload, type ActivityType } from '../types/index';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
3
  activity: {
4
4
  type: import("vue").PropType<Activity>;
5
5
  required: true;
6
6
  };
7
7
  activityTypes: {
8
- type: import("vue").PropType<Record<string, string>[]>;
8
+ type: import("vue").PropType<ActivityType[]>;
9
9
  };
10
10
  breadcrumbs: {
11
11
  type: import("vue").PropType<string>;
@@ -59,7 +59,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
59
59
  required: true;
60
60
  };
61
61
  activityTypes: {
62
- type: import("vue").PropType<Record<string, string>[]>;
62
+ type: import("vue").PropType<ActivityType[]>;
63
63
  };
64
64
  breadcrumbs: {
65
65
  type: import("vue").PropType<string>;
@@ -265,8 +265,8 @@ export interface UpdateActivityPayload {
265
265
  description?: string;
266
266
  estimation?: number;
267
267
  important?: boolean;
268
- dependingOn?: ActivityBase[];
269
- blocking?: ActivityBase[];
268
+ dependingOn?: Id[];
269
+ blocking?: Id[];
270
270
  dependingMilestones?: Id[];
271
271
  type?: string;
272
272
  rank?: string;
@@ -1,4 +1,4 @@
1
- import { type Activity, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, UpdateSubtaskFieldPayload, AddFilesPayload, RemoveFilePayload } from '../types';
1
+ import { type Activity, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, type ActivityType, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload } from '../types';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
3
  phaseId: {
4
4
  type: import("vue").PropType<string>;
@@ -13,7 +13,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
13
13
  required: true;
14
14
  };
15
15
  activityTypes: {
16
- type: import("vue").PropType<string[]>;
16
+ type: import("vue").PropType<ActivityType[]>;
17
17
  };
18
18
  activities: {
19
19
  type: import("vue").PropType<Activity[]>;
@@ -71,7 +71,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
71
71
  required: true;
72
72
  };
73
73
  activityTypes: {
74
- type: import("vue").PropType<string[]>;
74
+ type: import("vue").PropType<ActivityType[]>;
75
75
  };
76
76
  activities: {
77
77
  type: import("vue").PropType<Activity[]>;
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.26.0",
7
+ "version": "0.27.0",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],
@@ -27,7 +27,7 @@
27
27
  "vuedraggable": "~4.1.0"
28
28
  },
29
29
  "dependencies": {
30
- "@26lights/orcha": "^0.26.0",
30
+ "@26lights/orcha": "^0.27.0",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.2",
33
33
  "@vueuse/core": "^10.2.1",