0.3.0 • Published 6 years ago

targetprocess-api v0.3.0

Weekly downloads
15
License
MIT
Repository
github
Last release
6 years ago

targetprocess-api

Build Status Coverage Known Vulnerabilities

Sample usage

const factory = require("targetprocess-api");
const tp = factory(config);

tp.create("Projects", {Name: "My Project"})
    .then(function (entity) {
        // ...
    });

tp.retrieve("UserStories").take(10).get()
    .then(function (items) {
        // ...
    });

tp.update("Bugs", {Id: 3, Name: "My bug"});

tp.remove("Releases", 12);
0.3.0

6 years ago

0.2.1

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.0

6 years ago