@26lights/orcha 0.7.2 → 0.7.3

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.
@@ -1,4 +1,3 @@
1
- import { type Ref } from 'vue';
2
1
  export type Id = string;
3
2
  export interface Entity {
4
3
  __typename: string;
@@ -384,7 +383,7 @@ export type UpdateFeedFilterPayload = {
384
383
  type: FeedFilters;
385
384
  values: Array<Id | string>;
386
385
  };
387
- export type FeedFiltersMap = Record<FeedFilters, Ref<Array<Id | string>>>;
386
+ export type FeedFiltersMap = Record<FeedFilters, Array<Id | string>>;
388
387
  export type UdpateFeedActivityData = {
389
388
  id: Id;
390
389
  phaseId?: Id;
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.7.2",
7
+ "version": "0.7.3",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],