hud-ai
Version:
Hud.ai API Client
99 lines (83 loc) • 2.65 kB
text/typescript
import * as Promise from 'bluebird';
import {
HudAiCreateAttributes,
HudAiListAttributes,
HudAiUpdateAttributes,
Resource
} from '../utils/Resource';
import { RequestManager } from '../RequestManager';
import { Person } from '../entities';
export interface PersonListAttributes extends HudAiListAttributes {
companyId?: string;
name?: string;
title?: string;
term?: string;
twitterHandle?: string;
sortBy?: string;
personId?: string | string[];
}
export interface PersonCreateAttributes extends HudAiCreateAttributes {
companyId?: string;
name: string;
title: string;
imageUrl?: string;
linkedInUrl?: string;
twitterHandle?: string;
}
export interface PersonUpdateAttributes extends HudAiUpdateAttributes {
companyId?: string;
name?: string;
title?: string;
imageUrl?: string;
flag?: string;
linkedInUrl?: string;
twitterHandle?: string;
}
export interface PersonEmailLookupAttributes {
firstName: string;
lastName: string;
companyId?: string;
domain?: string;
}
export interface PersonLinkedinLookupAttributes {
firstName: string;
lastName: string;
companyId: string;
}
export class PersonResource extends Resource<Person, PersonListAttributes, PersonCreateAttributes, PersonUpdateAttributes> {
constructor(requestManager: RequestManager) {
super('/people', requestManager);
}
public list(listArgs: PersonListAttributes): Promise<{ count: number, rows: Person[] }> {
return this._list(listArgs);
}
public create(createArgs: PersonCreateAttributes): Promise<Person> {
return this._create(createArgs);
}
public get(id: string | number): Promise<Person> {
return this._get(id);
}
public update(id: string | number, updateArgs: PersonUpdateAttributes): Promise<Person> {
return this._update(id, updateArgs);
}
public lookupEmail(lookupArgs: PersonEmailLookupAttributes): Promise<{ email: string|null, score: number }> {
return this.makeRequest({
method: 'POST',
data: lookupArgs,
url: `${this.basePath}/email-lookup`
})
}
public lookupLinkedin(lookupArgs: PersonLinkedinLookupAttributes): Promise<{ url: string|null }> {
return this.makeRequest({
method: 'POST',
data: lookupArgs,
url: `${this.basePath}/linkedin-lookup`
})
}
public del(id: string | number): Promise<void> {
return this.destroy(id);
}
public destroy(id: string | number): Promise<void> {
return this._destroy(id);
}
}