@26lights/orcha 0.42.141 → 0.42.142

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.
@@ -115,5 +115,16 @@
115
115
  "sprintMetrics.targetVelocity": "Target Velocity",
116
116
  "sprintMetrics.targetVelocityPlaceholder": "0.00",
117
117
  "sprintMetrics.currentlyEstimated": "Currently estimated",
118
- "sprintMetrics.planningProgress": "Planning Progress"
118
+ "sprintMetrics.planningProgress": "Planning Progress",
119
+ "sprint.planning": "Sprints",
120
+ "sprint.add": "Add sprint",
121
+ "sprint.name": "Name",
122
+ "sprint.color": "Color",
123
+ "sprint.archive": "Archive",
124
+ "sprint.archived": "Archived",
125
+ "sprint.confirmArchive": "Are you sure you want to archive this sprint?",
126
+ "sprint.showArchived": "Show archived",
127
+ "sprint.noSprints": "No sprints yet",
128
+ "common.save": "Save",
129
+ "common.edit": "Edit"
119
130
  }
@@ -140,6 +140,8 @@ export interface Sprint extends Entity {
140
140
  projectId: string;
141
141
  startDate: string;
142
142
  endDate: string;
143
+ color?: string;
144
+ active: boolean;
143
145
  }
144
146
  export interface SprintPlanningUser {
145
147
  userId: 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.42.141",
7
+ "version": "0.42.142",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],