diff --git a/lib/entities/entry.js b/lib/entities/entry.js index 9650d4643..181a5c678 100644 --- a/lib/entities/entry.js +++ b/lib/entities/entry.js @@ -31,6 +31,7 @@ export function wrapEntry (data) { * @prop {number} limit * @prop {Array} items * @prop {Array=} errors - Array of errors that might occur when retrieving entries. + * @prop {Object=} includes - Object with arrays of includes for Entries and Assets. This will be present if resolveLinks is on, and any linked entries or assets exist. Those links will be resolved in the Entries present in the items array, but they are also present here in raw form. * @prop {function(): Object} toPlainObject() - Returns this Entry collection as a plain JS object * @prop {function(?function=, space=): Object} stringifySafe(replacer,space) - Stringifies the entry collection, accounting for circular references. Circular references will be replaced with just a Link object, with a circular property set to true. See MDN and json-stringify-safe for more details on the arguments this method can take. */