magicrealmsshared 0.1.3 → 0.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magicrealmsshared",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -8,5 +8,5 @@ export const DATA_UPDATE_COMMAND = "DATA_UPDATE";
8
8
  export type DATA_UPDATE_CLIENT = DATA_UPDATE<string>;
9
9
  export type DATA_UPDATE_SERVER = DATA_UPDATE<ObjectId>;
10
10
  type DATA_UPDATE<T> = {
11
- wells: Well<T>,
11
+ wells: Well<T>[],
12
12
  }