@26lights/orcha 0.41.128 → 0.41.130

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 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, type Project } 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, type Project, type TimeTracking } from '../types';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
3
  phaseId: {
4
4
  type: import("vue").PropType<string>;
@@ -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
  'update:activity': (payload: UpdateActivityPayload) => void;
55
58
  addSubtask: (payload: AddSubtaskPayload) => void;
@@ -113,6 +116,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
113
116
  type: import("vue").PropType<boolean>;
114
117
  required: true;
115
118
  };
119
+ timeTrackingData: {
120
+ type: import("vue").PropType<Record<string, TimeTracking>>;
121
+ };
116
122
  }>> & {
117
123
  onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
118
124
  onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
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.128",
7
+ "version": "0.41.130",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],