Socket
Socket
Sign inDemoInstall

5rolli-story-client

Package Overview
Dependencies
22
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    5rolli-story-client

Story Client for 5ROLLI


Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

0.2.1 (2015-12-27)

Bug Fixes

  • 5rolli-story-client: :bug: Fix status in #parseCard() (33c149b)

<a name="0.2.0"></a>

Dependencies

  • 5rolli-story-client: Add babel-plugin-add-module-exports (e4cbb8b)

BREAKING CHANGES

  • Change require('...').default to require('...')

before:

var StoryClient = require('5rolli-story-client').default;

after:

var StoryClient = require('5rolli-story-client');

<a name="0.1.0"></a>

Readme

Source

5rolli-story-client

NPM version NPM downloads Build Status Coverage Status Dependency Status DevDependency Status License

Story Client for 5ROLLI.

Installation

npm install --save 5rolli-story-client

Usage

import StoryClient from '5rolli-story-client';

const client = new StoryClient('<trelloApiToken>', '<trelloApiKey>', '<trelloBoardId>');
client.getStories().then(stories => {
  console.log(stories);
});
// [
//   {
//     "id": 1,
//     "title": "導入画面",
//     "dependIds": [],
//     "type": "issue",
//     "members": [],
//     "status": "open",
//     "card": {
//       "labels": [
//         "issue",
//         "open"
//       ],
//       "url": "https://trello.com/c/111111",
//       "listName": "Issues",
//       "pos": 131072
//     }
//   },
//   {
//     "id": 11,
//     "title": "いい画面",
//     "dependIds": [],
//     "type": "issue",
//     "members": [],
//     "status": "open",
//     "card": {
//       "labels": [
//         "issue",
//         "open"
//       ],
//       "url": "https://trello.com/c/222222",
//       "listName": "Issues",
//       "pos": 212992
//     }
//   },
//   {
//     "id": 3,
//     "title": "ユーザはいい画面へ遷移できる",
//     "dependIds": [
//       10,
//       20
//     ],
//     "parentId": 1,
//     "type": "story",
//     "time": {
//       "spent": null,
//       "es50": 80,
//       "es90": 170
//     },
//     "members": [
//       {
//         "username": "moqada",
//         "avatarUrl": "https://trello-avatars.s3.amazonaws.com/e224a7409ad3fc91a94cbc9ca9fae632/30.png"
//       }
//     ],
//     "status": "open",
//     "card": {
//       "labels": [
//         "open"
//       ],
//       "url": "https://trello.com/c/44444444",
//       "listName": "Sprint. 1 (20151130)",
//       "pos": 163840
//     },
//     "sprint": {
//       "name": "Sprint. 1 (20151130)",
//       "due": "2015-11-29T15:00:00.000Z"
//     }
//   },
//   {
//     "title": "あかんやつ",
//     "type": "invalid",
//     "members": [],
//     "status": "open",
//     "card": {
//       "labels": [
//         "issue",
//         "open"
//       ],
//       "url": "https://trello.com/c/999999",
//       "listName": "inbox",
//       "pos": 3457999
//     }
//   }
// ]

Keywords

FAQs

Last updated on 27 Dec 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc