@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.
@@ -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];
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.117",
7
+ "version": "0.42.119",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],