npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@phonal-technologies/drafterai-js

v1.0.6

Published

Javascript SDK for Drafter AI

Downloads

310

Readme

drafterai-js

npm (scoped) npm license

Javascript SDK for Drafter AI

// example.js
import fetch from 'node-fetch'
import {
  initialize,
  WORKFLOW_EXAMPLE,
  WORKFLOW_EXECUTION_EXAMPLE,
} from '@phonal-technologies/drafterai-js'

// Init an API with apikey and fetch provider
const accessKey = process.env.DRAFTER_ACCESS_KEY
const drafterApi = initialize(accessKey, {
  fetch,
  url: 'http://localhost:3030',
})

/**
 * Example
 * const drafterApi = initialize(
 * 'pro_Vs1zz0Le.fX1F5KlLvqeZzzzeLhot6lXEE',
 * { fetch: fetch, }
 * )
 */

;(async () => {
  console.log('WORKFLOW_EXAMPLE', WORKFLOW_EXAMPLE)
  console.log('WORKFLOW_EXECUTION_EXAMPLE', WORKFLOW_EXECUTION_EXAMPLE)

  const workflows = await drafterApi.workflows.find(
    { $limit: 10, '$sort[id]': -1 },
    { all: true }
  )

  const workflowExecutions = await drafterApi.workflowExecutions.find(
    { $limit: 10, '$sort[id]': -1 },
    { all: true }
  )

  console.log('First 10 workflows', workflows)
  console.log('First 10 workflowExecutions', workflowExecutions)

  const [queuedExecution] = await drafterApi.workflowExecutions.create({
    workflowId: 88,
    context: {
      url: 'https://drafter.ai',
    },
  })

  console.log('queuedExecution', queuedExecution)

  const intervalId = setInterval(async () => {
    const [execution] = await drafterApi.workflowExecutions.find(
      { $limit: 10, '$sort[id]': -1, datagroup: queuedExecution.datagroup },
      { all: true }
    )

    if (['completed', 'failed'].includes(execution.status)) {
      clearInterval(intervalId)
    }

    console.log('execution', execution)
  }, 3000)
})()

Alternative example with axios

const axios = require('axios');

const DRAFTER_EXECUTION_COMPLETED_STATUS = 'completed'
const DRAFTER_EXECUTION_FAILED_STATUS = 'failed'
const DRAFTER_FINAL_STATUS = [DRAFTER_EXECUTION_COMPLETED_STATUS, DRAFTER_EXECUTION_FAILED_STATUS]
const DRAFTER_WORKFLOW_ID = 1269
​
/* Utils */
​
const objectToQueryStringUtil = (query) => {
  return Object.entries(query)
    .map(([key, value]) =>`${key}=${value}`)
  	.join('&')
}
​
​
/* Drafter Api Methods */
/* Drafter Executions Create */
const drafterAiWorkflowExecutionsCreate = async (xAccessKey, data) => {
  const resp = await axios({
    url: 'https://api.drafter.ai/workflow-executions',
    method: 'POST',
    headers: {
      'User-Agent': `DrafterAI jssdk/1.0 (nodejs18)`,
      'Content-Type': 'application/json',
      'X-Access-Key': xAccessKey,
    },
    data,
  })
  
  return resp.data
}
​
/* Drafter Executions Find All */
const drafterAiWorkflowExecutionsFindAll = async (xAccessKey, query) => {
  const resp = await axios({
    url: `https://api.drafter.ai/workflow-executions?${objectToQueryStringUtil(query)}`,
    method: 'GET',
    headers: {
      'User-Agent': `DrafterAI jssdk/1.0 (nodejs18)`,
      'Content-Type': 'application/json',
      'X-Access-Key': xAccessKey,
      'X-No-Paginate': 1
    },
  })
  
  return resp.data
}
;(async () => {
    const drafterAiAccessKey = '...'
    // Payload for Drafter AI
    const payload = {
      "workflowId": DRAFTER_WORKFLOW_ID,
      "context": {
        "yourName_": ownerName,
        "yourProspectsName_": firstName,
        "yourWebsite_": userWebsite,
        "prospectWebsite_": prospectWebsite,
      },
    };
    ​
    console.log('Executing Drafter AI workflow with payload:', payload);
    const queuedExecution = await drafterAiWorkflowExecutionsCreate(drafterAiAccessKey, payload);
    console.log('Workflow execution queued:', queuedExecution);
​
    // Poll for execution status
    console.log('Polling for execution status...');
    const intervalId = setInterval(async () => {
      const [execution] = await drafterAiWorkflowExecutionsFindAll(
        drafterAiAccessKey,
        { $limit: 1, datagroup: queuedExecution.datagroup },
      );
​
      console.log('Execution status:', execution.status);
      if (DRAFTER_FINAL_STATUS.includes(execution.status)) {
        clearInterval(intervalId);
		
        if (execution.status === DRAFTER_EXECUTION_FAILED_STATUS) {
          console.error('Execution Failed')
          return
        }
        
        console.log('Execution completed. Updating HubSpot contact properties...');
        // Update HubSpot contact properties
        const { subjectline, emailbody, emailsignature } = execution.pipeline[0]; // Adjust according to response structure
        
        console.log('Got response:', { subjectline, emailbody, emailsignature } );
   
      }
    }, 3000);
  })(); // Immediately invoke the function