@qwanyx/stack 0.2.9 → 0.2.11
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.
- package/dist/client/MailClient.d.ts +5 -0
- package/dist/index.cjs.js +11 -11
- package/dist/index.esm.js +774 -721
- package/dist/types/index.d.ts +14 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -217,6 +217,20 @@ export interface ImapResponse {
|
|
|
217
217
|
unseen?: number;
|
|
218
218
|
folders?: FolderInfo[];
|
|
219
219
|
uid?: string;
|
|
220
|
+
messages?: FetchMessage[];
|
|
221
|
+
}
|
|
222
|
+
export interface FetchMessage {
|
|
223
|
+
uid?: number;
|
|
224
|
+
internalDate?: string;
|
|
225
|
+
flags?: string[];
|
|
226
|
+
envelope?: {
|
|
227
|
+
subject?: string;
|
|
228
|
+
from?: {
|
|
229
|
+
name?: string;
|
|
230
|
+
email: string;
|
|
231
|
+
};
|
|
232
|
+
date?: string;
|
|
233
|
+
};
|
|
220
234
|
}
|
|
221
235
|
export interface FolderInfo {
|
|
222
236
|
name: string;
|
package/package.json
CHANGED