reviews-analysis
Version:
Analyse public vehicle reviews via ML (Aylien) and save the data into a Document Store (Mongo). Supports Classifications and Document and Aspect level Sentiment Analysis.
16 lines (10 loc) • 397 B
JavaScript
var path = require('path');
var TSGenerator = require('./lib/ts-generator');
var tsGenerator = new TSGenerator({
SdkRootDirectory: path.join(__dirname, '..')
});
tsGenerator.generateAllClientTypings();
tsGenerator.generateGroupedClients();
tsGenerator.updateDynamoDBDocumentClient();
tsGenerator.generateConfigurationServicePlaceholders();
console.log('TypeScript Definitions created.');