Giter VIP home page Giter VIP logo

Comments (6)

FritzTheDev avatar FritzTheDev commented on June 19, 2024

@tommedema, I haven't found any so I'm going to see what the API surface area looks like and try writing some if it's not too big. Feel free to tag me here if you want to check on them.

from clearbit-node.

randalvance avatar randalvance commented on June 19, 2024

Our team is also looking for the official typings for this. Thanks.

from clearbit-node.

FritzTheDev avatar FritzTheDev commented on June 19, 2024

@randalvance @tommedema I'm no longer working on the Typings for this - the API was going to make it hard and the benefit to me wasn't that big. Good luck!

from clearbit-node.

tommedema avatar tommedema commented on June 19, 2024

@randalvance any update on this?

from clearbit-node.

tommedema avatar tommedema commented on June 19, 2024

at bubbles we worked around this by creating a custom typings definition tailored to our use case:

typings/clearbit/index.d.ts

declare function clearbit(apiKey: string): Clearbit.IClearbitClient

/**
 * @see https://stackoverflow.com/a/33392782/45974
 */
declare namespace Clearbit {
  interface IPerson {
    setVersion: (version: '2019-12-19') => void,
  }

  interface IEnrichment {
    find: ({email: string, stream: boolean}) => Promise<Clearbit.IEnrichmentResult>
  }

  interface IEnrichmentResult {
    person: object | null
    company: object | null
  }

  interface IClearbitClient {
    Person: Clearbit.IPerson,
    Enrichment: Clearbit.IEnrichment
  }
}

export = clearbit

from clearbit-node.

wbobeirne avatar wbobeirne commented on June 19, 2024

Would love to see some official typings from the Clearbit team, especially since the docs have this note about Person and Company:

No attributes are guaranteed to be present

The difference between no key defined, null, empty string, and empty array can be really important! I could do a few responses and guess at what the shape and assurances are of data availability, but having something more dependable would be great.

from clearbit-node.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.