@26lights/orcha 0.42.116 → 0.42.118
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.
- package/dist/locales/en/translation.json +1 -0
- package/dist/orcha.cjs.js +33 -33
- package/dist/orcha.es.js +4174 -4149
- package/dist/orcha.umd.js +31 -31
- package/dist/src/types/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -138,6 +138,7 @@ export interface Sprint extends Entity {
|
|
|
138
138
|
projectId: string;
|
|
139
139
|
startDate: string;
|
|
140
140
|
endDate: string;
|
|
141
|
+
targetVelocity?: number | null;
|
|
141
142
|
}
|
|
142
143
|
export declare const activityFeedStatus: {
|
|
143
144
|
readonly future: "future";
|
|
@@ -400,6 +401,7 @@ export type Image = {
|
|
|
400
401
|
export declare const feedFilterTypes: {
|
|
401
402
|
readonly project: "projectId";
|
|
402
403
|
readonly assignee: "assigneeId";
|
|
404
|
+
readonly sprint: "sprintId";
|
|
403
405
|
};
|
|
404
406
|
export type FeedFilterTypeKeys = keyof typeof feedFilterTypes;
|
|
405
407
|
export type FeedFilterType = (typeof feedFilterTypes)[FeedFilterTypeKeys];
|