This repository was archived by the owner on Jul 13, 2023. It is now read-only.
Releases: stoplightio/json-ref-resolver
Releases · stoplightio/json-ref-resolver
v3.0.6
v3.0.5
v3.0.4
v3.0.3
v3.0.2
v3.0.1
v3.0.0
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
andrefMap
.
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;
}