@26lights/orcha 0.42.124 → 0.42.125

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.
@@ -140,6 +140,11 @@ export interface Sprint extends Entity {
140
140
  startDate: string;
141
141
  endDate: string;
142
142
  }
143
+ export interface SprintPlanningUser {
144
+ userId: string;
145
+ fullName: string;
146
+ plannedManDays: number;
147
+ }
143
148
  export interface SprintPlanningData {
144
149
  projectId: string;
145
150
  startDate: string;
@@ -147,6 +152,7 @@ export interface SprintPlanningData {
147
152
  plannedManDays: number;
148
153
  remainingPlannedManDays: number;
149
154
  userIds?: string[];
155
+ users: SprintPlanningUser[];
150
156
  }
151
157
  export declare const activityFeedStatus: {
152
158
  readonly future: "future";
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.42.124",
7
+ "version": "0.42.125",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],