@26lights/orcha 0.41.131 → 0.41.133

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,4 +1,4 @@
1
- import { type ActivityStatus, type AddActivityPayload, type Phase, type StartTimerPayload, type UpdateActivityPayload, type UpdateMilestonePayload, type User } from '../types';
1
+ import { type ActivityStatus, type AddActivityPayload, type Phase, type StartTimerPayload, type UpdateActivityPayload, type UpdateMilestonePayload, type User, type TimeTracking } from '../types';
2
2
  declare const _default: import("vue").DefineComponent<{
3
3
  milestoneId: {
4
4
  type: import("vue").PropType<string>;
@@ -27,8 +27,7 @@ declare const _default: import("vue").DefineComponent<{
27
27
  required: true;
28
28
  };
29
29
  timeTrackingData: {
30
- type: import("vue").PropType<TimeTracking[]>;
31
- required: true;
30
+ type: import("vue").PropType<Record<string, TimeTracking>>;
32
31
  };
33
32
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
34
33
  close: (e: Event) => void;
@@ -70,8 +69,7 @@ declare const _default: import("vue").DefineComponent<{
70
69
  required: true;
71
70
  };
72
71
  timeTrackingData: {
73
- type: import("vue").PropType<TimeTracking[]>;
74
- required: true;
72
+ type: import("vue").PropType<Record<string, TimeTracking>>;
75
73
  };
76
74
  }>> & {
77
75
  onClose?: ((e: Event) => any) | undefined;
@@ -1,4 +1,4 @@
1
- import { type Project, type User, type AddActivityPayload, type UpdateActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, type UpdateSubtaskFieldPayload, type Activity, type ActivityType, type SaveTemplatePayload } from '../types';
1
+ import { type Project, type User, type AddActivityPayload, type UpdateActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, type UpdateSubtaskFieldPayload, type Activity, type ActivityType, type SaveTemplatePayload, type TimeTracking } from '../types';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
3
  project: {
4
4
  type: import("vue").PropType<Project>;
@@ -50,6 +50,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
50
50
  type: import("vue").PropType<boolean>;
51
51
  required: true;
52
52
  };
53
+ timeTrackingData: {
54
+ type: import("vue").PropType<Record<string, TimeTracking>>;
55
+ };
53
56
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
54
57
  addPhase: (payload: AddPhasePayload) => void;
55
58
  updatePhase: (payload: UpdatePhasePayload) => void;
@@ -142,6 +145,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
142
145
  type: import("vue").PropType<boolean>;
143
146
  required: true;
144
147
  };
148
+ timeTrackingData: {
149
+ type: import("vue").PropType<Record<string, TimeTracking>>;
150
+ };
145
151
  }>> & {
146
152
  onArchiveActivity?: ((payload: {
147
153
  id: 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.41.131",
7
+ "version": "0.41.133",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],