@digipair/skill-imap 0.56.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ export * from './lib/skill-imap';
@@ -0,0 +1,25 @@
1
+ import { PinsSettings } from '@digipair/engine';
2
+ export declare const connect: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
3
+ export declare const search: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
4
+ export declare const getMailboxLock: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
5
+ export declare const getQuota: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
6
+ export declare const idle: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
7
+ export declare const list: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
8
+ export declare const listTree: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
9
+ export declare const logout: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
10
+ export declare const mailboxClose: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
11
+ export declare const mailboxCreate: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
12
+ export declare const mailboxDelete: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
13
+ export declare const mailboxOpen: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
14
+ export declare const mailboxRename: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
15
+ export declare const mailboxSubscribe: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
16
+ export declare const mailboxUnsubscribe: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
17
+ export declare const messageCopy: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
18
+ export declare const messageDelete: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
19
+ export declare const messageFlagsAdd: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
20
+ export declare const messageFlagsRemove: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
21
+ export declare const messageFlagsSet: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
22
+ export declare const messageMove: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
23
+ export declare const noop: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
24
+ export declare const setFlagColor: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
25
+ export declare const status: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
package/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@digipair/skill-imap",
3
+ "version": "0.56.0",
4
+ "dependencies": {
5
+ "imapflow": "^1.0.171"
6
+ },
7
+ "main": "./index.cjs.js",
8
+ "module": "./index.esm.js"
9
+ }