0.0.4 • Published 10 months ago

autotab v0.0.4

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
10 months ago

Autotab Node API Library

This library provides convenient access to the Autotab REST API from TypeScript and Javascript.

It is generated from our OpenAPI specification with openapi-generator.

To learn how to use the Autotab API, check out our API Reference and Documentation.

Installation

npm install autotab --save

Usage

import { Configuration, RunApi } from 'autotab';

const runClient = new RunApi(new Configuration({
    apiKey: process.env['AUTOTAB_API_KEY'],
}));

async function main() {
  const run = await runClient.start({
    runSkillRequest: {
        skillId: "skill_fe517503-384a-45c5-87a3-94f98126e626"
    }
  });
  
  console.log("result:", await runClient.retrieve({
    id: run.id
  }))
}

main();
0.0.4

10 months ago

0.0.3-patch-2

10 months ago

0.0.3

10 months ago

0.0.3-patch

10 months ago

0.0.2

10 months ago

0.0.3-patch-5

10 months ago

0.0.3-patch-4

10 months ago

0.0.3-patch-3

10 months ago

0.0.1

10 months ago

2.0.0

8 years ago

1.0.0

8 years ago