Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Verify (CASS) and correct a US address using a complete address. See the documentation
Verifies and corrects a US address using the input of a single address line, city, and state. See the documentation
Verifies and corrects a US address based on a single address line and a zip code. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
addresszen: {
type: "app",
app: "addresszen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.addresszen.com/v1/autocomplete/addresses`,
params: {
api_key: `${this.addresszen.$auth.key}`,
},
})
},
})