@26lights/orcha 0.42.117 → 0.42.119
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 +29 -29
- package/dist/orcha.es.js +3354 -3328
- package/dist/orcha.umd.js +31 -31
- package/dist/src/types/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -88,6 +88,7 @@ export interface AddActivityFeedPayload {
|
|
|
88
88
|
projectId?: Id;
|
|
89
89
|
type?: "standard" | "dev";
|
|
90
90
|
statusDevId?: Id;
|
|
91
|
+
sprintId?: Id;
|
|
91
92
|
}
|
|
92
93
|
export interface ActivityFeed<K extends ActivityFeedStatus = ActivityFeedStatus> extends ActivityBase {
|
|
93
94
|
project: {
|
|
@@ -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];
|