diff --git a/lib/create-cda-api.js b/lib/create-cda-api.js index 773790c75..176cd73a9 100644 --- a/lib/create-cda-api.js +++ b/lib/create-cda-api.js @@ -82,7 +82,7 @@ export default function createCdaApi (http, resolveLinksGlobalSetting) { /** * Gets a collection of Content Types * @memberof CDAClient - * @param {Entities.Query=} query - Query object + * @param {Object=} query - Object with search parameters. Check the JS SDK tutorial and the REST API reference for more details. * @return {Promise} Promise for a collection of Content Types * @example * client.getContentTypes() @@ -111,7 +111,7 @@ export default function createCdaApi (http, resolveLinksGlobalSetting) { /** * Gets a collection of Entries * @memberof CDAClient - * @param {Object=} query - Object with search parameters. Check Search Parameters for more details. + * @param {Object=} query - Object with search parameters. Check the JS SDK tutorial and the REST API reference for more details. * @param {boolean=} query.resolveLinks - When true, links to other Entries or Assets are resolved. Default: true. * @return {Promise} Promise for a collection of Entries * @example @@ -142,7 +142,7 @@ export default function createCdaApi (http, resolveLinksGlobalSetting) { /** * Gets a collection of Assets * @memberof CDAClient - * @param {Object=} query - Object with search parameters. Check Search Parameters for more details. + * @param {Object=} query - Object with search parameters. Check the JS SDK tutorial and the REST API reference for more details. * @return {Promise} Promise for a collection of Assets * @example * client.getAssets()