0.1.2 • Published 3 years ago

circleci-typescript-axios v0.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

circleci-typescript-axios

circleci-typescript-axios

Autogenerated sdk for circle ci v2

Warning the circle v2 api is in preview and is currently making braking changes see breaking.md

See the full doc here

Getting started

npm i circleci-typescript-axios --save

or to build form source

git clone https://github.com/cob16/circleci-typescript-axios.git
cd circleci-typescript-axios
npm install
npm run build

Example Usage

import { PreviewApiFactory, Project } from 'circleci-typescript-axios';

let client = PreviewApiFactory({
  apiKey: '<MY-API-KEY>',
});

client
  .getProjectBySlug('gh/cob16/circleci-lib')
  .then(resp => {
    let project: Project = resp.data;
    console.log(project.name);
    console.log(project.organization_name);
    console.log(project.slug);
    console.log(project.vcs_info);
  })
  .catch(error => {
    console.log(error);
  });

To see other methods See the full doc here

0.1.2

3 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.4-dev.0

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.2-dev.2

4 years ago

0.0.2-dev.0

4 years ago

0.0.2-dev.1

4 years ago

0.0.1

4 years ago