@26lights/orcha 0.7.17 → 0.7.18

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.
@@ -336,13 +336,13 @@ export type ListUpdateTypes = (typeof listUpdateTypes)[ListUpdateTypesKeys];
336
336
  export type FeedListUpdateType = {
337
337
  element: Activity;
338
338
  };
339
- export type FeedListUpdateAdd = {
340
- add: {
339
+ export type FeedListUpdateAdded = {
340
+ added: {
341
341
  element: Activity;
342
342
  newIndex: number;
343
343
  };
344
344
  };
345
- export type FeedListUpdateRemove = {
345
+ export type FeedListUpdateRemoved = {
346
346
  removed: {
347
347
  element: Activity;
348
348
  oldIndex: number;
@@ -355,10 +355,10 @@ export type FeedListUpdateMoved = {
355
355
  oldIndex: number;
356
356
  };
357
357
  };
358
- export type FeedListUpdateUnion = FeedListUpdateAdd | FeedListUpdateRemove | FeedListUpdateMoved;
358
+ export type FeedListUpdateUnion = FeedListUpdateAdded | FeedListUpdateRemoved | FeedListUpdateMoved;
359
359
  export type FeedListUpdates = {
360
- [listUpdateTypes.add]: FeedListUpdateAdd;
361
- [listUpdateTypes.remove]: FeedListUpdateRemove;
360
+ [listUpdateTypes.add]: FeedListUpdateAdded;
361
+ [listUpdateTypes.remove]: FeedListUpdateRemoved;
362
362
  [listUpdateTypes.moved]: FeedListUpdateMoved;
363
363
  };
364
364
  export type FeedListUpdate<K extends ListUpdateTypesKeys> = FeedListUpdates[K];
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.17",
7
+ "version": "0.7.18",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],