Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

imdone-api

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imdone-api - npm Package Compare versions

Comparing version 0.0.16 to 0.0.17

5

lib/project.js

@@ -35,2 +35,7 @@ "use strict";

newCard(opts) { }
addCardToFile(opts) {
return __awaiter(this, void 0, void 0, function* () {
return null;
});
}
filterLists(filter, lists) {

@@ -37,0 +42,0 @@ return null;

2

package.json
{
"name": "imdone-api",
"version": "0.0.16",
"version": "0.0.17",
"description": "Plugin API for imdone",

@@ -5,0 +5,0 @@ "main": "./lib/plugin.js",

@@ -53,2 +53,14 @@ export interface Task {

}
export interface AddCardToFileOpts {
path: string;
content: string;
list?: string;
tags?: Array<string>;
contexts?: Array<string>;
meta?: Array<string>;
useCardTemplate?: boolean;
}
export interface AddCardToFileResponse {
task: Task;
}
export interface Alert {

@@ -69,2 +81,3 @@ message: string;

newCard(opts: NewCardOpts): void;
addCardToFile(opts: AddCardToFileOpts): Promise<AddCardToFileResponse>;
filterLists(filter: string, lists: Array<List>): Array<List>;

@@ -71,0 +84,0 @@ saveFile(content: string, path: string): void;

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc