Skip to content
This repository was archived by the owner on Jul 13, 2023. It is now read-only.

v3.0.0

Compare
Choose a tag to compare
@stoplight-bot stoplight-bot released this 12 Oct 18:26
· 34 commits to master since this release

3.0.0 (2019-10-12)

Features

  • add ref map to resolver graph node data (733a06c)

BREAKING CHANGES

  • resolver.graph node data is now an object that has data and refMap.
export interface IGraphNodeData {
   /**
   * A map of the refs in this node, and where they point
   *
   * Example:
   *
   * ```json
   * {
   *   "#/users/address": "file:///api.json/#models/address",
   * }
   * ```
   */
  refMap: Dictionary<string>;

  /**
  * This node's resolved data
  */
  data?: any;
}