@qwanyx/stack 0.2.10 → 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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwanyx/stack",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Modern HyperCard for React - All-in-one data management (REST + Graph API + Auth + Hooks + UI)",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",