jssm 5.86.3 → 5.87.0

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/jssm_types.d.ts CHANGED
@@ -346,10 +346,12 @@ declare type HookComplexResult<mDT> = {
346
346
  pass: boolean;
347
347
  state?: StateType;
348
348
  data?: mDT;
349
+ next_data?: mDT;
349
350
  };
350
351
  declare type HookResult<mDT> = true | false | undefined | void | HookComplexResult<mDT>; /** Documents whether a hook succeeded, either with a primitive or a reference to the hook complex object */
351
352
  declare type HookContext<mDT> = {
352
353
  data: mDT;
354
+ next_data: mDT;
353
355
  };
354
356
  declare type HookHandler<mDT> = (hook_context: HookContext<mDT>) => HookResult<mDT>;
355
357
  declare type PostHookHandler<mDT> = (hook_context: HookContext<mDT>) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.86.3",
3
+ "version": "5.87.0",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },