Commit f53e0c16 by Alex MacCaw

add reveal

parent a399b6c7
......@@ -21,6 +21,7 @@ function ClearbitClient (config) {
this.Enrichment = require('./enrichment').Enrichment(this);
this.Discovery = require('./discovery').Discovery(this);
this.Prospector = require('./prospector').Prospector(this);
this.Reveal = require('./reveal').Reveal(this);
this.Risk = require('./risk').Risk(this);
this.Watchlist = require('./watchlist').Watchlist(this);
this.WatchlistCandidate = require('./watchlist').WatchlistCandidate(this);
......
'use strict';
var resource = require('./resource');
exports.Reveal = resource.create('Reveal', {api: 'reveal', version: 1})
.extend(null, {
find: function (options) {
return this.get('/companies/find', options);
}
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment