Comparing version 2.6.0 to 2.7.0
# CHANGELOG | ||
## [[2.7.0]](https://github.com/Clarifai/clarifai-javascript/releases/tag/2.7.0) - [npm](https://www.npmjs.com/package/clarifai) - 2018-04-09 | ||
### Added | ||
- Support for custom face recognition https://github.com/Clarifai/clarifai-javascript/commit/ddee3667df0dfc648568bfc0c71d55600e223f1a | ||
## [[2.6.0]](https://github.com/Clarifai/clarifai-javascript/releases/tag/2.6.0) - [npm](https://www.npmjs.com/package/clarifai) - 2018-01-17 | ||
@@ -4,0 +9,0 @@ |
@@ -9,2 +9,3 @@ 'use strict'; | ||
var Concepts = require('./Concepts'); | ||
var Regions = require('./Regions'); | ||
@@ -29,2 +30,3 @@ var _require = require('./constants'), | ||
this.concepts = new Concepts(_config, data.data.concepts); | ||
this.regions = new Regions(_config, data.data.regions || []); | ||
this.score = data.score; | ||
@@ -31,0 +33,0 @@ this.metadata = data.data.metadata; |
@@ -263,3 +263,3 @@ 'use strict'; | ||
/** | ||
* @param {object[]} inputs List of concepts to update (max of 128 inputs/call; passing > 128 will throw an exception) | ||
* @param {object[]} inputs List of inputs to update (max of 128 inputs/call; passing > 128 will throw an exception) | ||
* @param {object} inputs[].input | ||
@@ -266,0 +266,0 @@ * @param {string} inputs[].input.id The id of the input to update |
@@ -7,4 +7,4 @@ { | ||
"dependencies": { | ||
"clarifai": "^2.5.0" | ||
"clarifai": "^2.6.0" | ||
} | ||
} |
{ | ||
"name": "clarifai", | ||
"version": "2.6.0", | ||
"version": "2.7.0", | ||
"description": "Official Clarifai Javascript SDK", | ||
@@ -31,3 +31,3 @@ "main": "dist/index.js", | ||
"git-branch": "^0.3.0", | ||
"gulp": "^3.9.0", | ||
"gulp": "^3.9.1", | ||
"gulp-awspublish": "^3.0.1", | ||
@@ -34,0 +34,0 @@ "gulp-babel": "^6.1.2", |
@@ -43,1 +43,5 @@ [![Build Status](https://travis-ci.org/Clarifai/clarifai-javascript.svg?branch=master)](https://travis-ci.org/Clarifai/clarifai-javascript) | ||
Looking for a different client? We have many languages available with lots of documentation [Technical Reference](https://clarifai.com/developer/reference) | ||
## Deploying | ||
See [DEPLOY.md](DEPLOY.md) for instructions. |
let axios = require('axios'); | ||
let Concepts = require('./Concepts'); | ||
let Regions = require('./Regions'); | ||
let {API} = require('./constants'); | ||
@@ -16,2 +17,3 @@ let {INPUTS_PATH} = API; | ||
this.concepts = new Concepts(_config, data.data.concepts); | ||
this.regions = new Regions(_config, data.data.regions || []); | ||
this.score = data.score; | ||
@@ -18,0 +20,0 @@ this.metadata = data.data.metadata; |
@@ -198,3 +198,3 @@ let axios = require('axios'); | ||
/** | ||
* @param {object[]} inputs List of concepts to update (max of 128 inputs/call; passing > 128 will throw an exception) | ||
* @param {object[]} inputs List of inputs to update (max of 128 inputs/call; passing > 128 will throw an exception) | ||
* @param {object} inputs[].input | ||
@@ -201,0 +201,0 @@ * @param {string} inputs[].input.id The id of the input to update |
295860
53
7435
47