mobx-state-tree 5.1.6 → 5.1.7

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.
@@ -89,9 +89,7 @@ export interface IModelType<PROPS extends ModelProperties, OTHERS, CustomC = _No
89
89
  views?: V;
90
90
  state?: VS;
91
91
  }): IModelType<PROPS, OTHERS & A & V & VS, CustomC, CustomS>;
92
- /** @deprecated See `types.snapshotProcessor` */
93
92
  preProcessSnapshot<NewC = ModelCreationType2<PROPS, CustomC>>(fn: (snapshot: NewC) => ModelCreationType2<PROPS, CustomC>): IModelType<PROPS, OTHERS, NewC, CustomS>;
94
- /** @deprecated See `types.snapshotProcessor` */
95
93
  postProcessSnapshot<NewS = ModelSnapshotType2<PROPS, CustomS>>(fn: (snapshot: ModelSnapshotType2<PROPS, CustomS>) => NewS): IModelType<PROPS, OTHERS, CustomC, NewS>;
96
94
  }
97
95
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobx-state-tree",
3
- "version": "5.1.6",
3
+ "version": "5.1.7",
4
4
  "description": "Opinionated, transactional, MobX powered state container",
5
5
  "main": "dist/mobx-state-tree.js",
6
6
  "umd:main": "dist/mobx-state-tree.umd.js",
@@ -86,5 +86,5 @@
86
86
  "functional-reactive-programming",
87
87
  "state management"
88
88
  ],
89
- "gitHead": "6a50d79a114811b492b98c37b0bbb35d6c9d9155"
89
+ "gitHead": "0c07dd4243db57ba8a6c44a7ddb7cc506f1d63f2"
90
90
  }