
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
kanbanize-api
Advanced tools
This is a thin wrapper around the Kanbanize v1 API, written for (now) nodejs.
This is a thin wrapper around the Kanbanize v1 API, written for (now) nodejs.
I intend to allow the module to be consumed in web contexts as well.
addAttachment
method.In Node
// @todo get rid of .default
const KanbanizeAPI = require("./kanbanize-api/").default;
const API_KEY = `YOUR_API_KEY_HERE`;
const SUBDOMAIN = 'YOUR_COMPANY_SUBDOMAIN';
async function example() {
const API = new KanbanizeAPI.V1(SUBDOMAIN, API_KEY);
const allTasks = await API.getAllTasks({
boardid: 64
});
allTasks.forEach(task =>{
//do something with the data
})
}
example();
See Type Definitions for method parameter and return shapes.
getProjectsAndBoards(): Promise<projectsAndBoards>;
getBoardStructure(params: boardidRequired): Promise<boardStructure>
getFullBoardStructure(params: boardidRequired): Promise<fullBoardStructure>
getBoardSettings(params: boardidRequired): Promise<boardSettings>
getBoardActivities(params: boardActivityParameters): Promise<boardActivityOutput>
createNewTask(params: createNewTaskParameters): Promise<createNewTaskOutput>
deleteTask(params: BasicTaskParameters): Promise<taskOperationOutput>
getTaskDetails(params: getTaskDetailsParamters): Promise<getTaskDetailsOutput>
getAllTasks(params: getAllTaskParameters): Promise<getAllTasksOutput>
addComment(params: addCommentParameters): Promise<addCommentOutput>
moveTask(params: moveTaskParameters): Promise<taskOperationOutput>
editTask(params: editTaskParameters): Promise<taskOperationOutput>
blockTask(params: blockTaskParameters): Promise<taskOperationOutput>
addSubtask(params: addSubtaskParameters): Promise<addSubtaskOutput>
editSubtask(params: editSubtaskParameters): Promise<taskOperationOutput>
logTime(params: logTimeParameters): Promise<logTimeOutput>
getLinks(params: getLinksParameters): Promise<getLinksOutput>
editLink(params: editLinkParameters): Promise<taskOperationOutput>
archiveTask(params: archiveTaskParameters): Promise<taskOperationOutput>
editCustomFields(params: editCustomFieldsParameter): Promise<taskOperationOutput>
getAttachment(params: getAttachmentParameters): Promise<any>
getLogTimeActivities(params: getLogTimeActivitiesParameters): Promise<getLogTimeActivitiesOutput>
getTasksWithLogTime(params: getTasksWithLogTimeParameters): Promise<getTasksWithLogTimeOutput>
FAQs
This is a thin wrapper around the Kanbanize v1 API, written for (now) nodejs.
The npm package kanbanize-api receives a total of 0 weekly downloads. As such, kanbanize-api popularity was classified as not popular.
We found that kanbanize-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.