@bobfrankston/mailx-types 0.1.92 → 0.1.94
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/mailx-api.d.ts +5 -0
- package/package.json +1 -1
package/mailx-api.d.ts
CHANGED
|
@@ -160,6 +160,11 @@ export interface MailxApi {
|
|
|
160
160
|
}>;
|
|
161
161
|
allowRemoteContent(type: "sender" | "domain" | "recipient", value: string): Promise<void>;
|
|
162
162
|
getCalendarEvents(fromMs: number, toMs: number): Promise<any[]>;
|
|
163
|
+
/** Pull from Google now, past the refresh throttle once (2026-09-10). */
|
|
164
|
+
refreshCalendarNow(): Promise<{
|
|
165
|
+
ok: boolean;
|
|
166
|
+
reason?: string;
|
|
167
|
+
}>;
|
|
163
168
|
getCalendars(): Promise<Array<{
|
|
164
169
|
id: string;
|
|
165
170
|
name: string;
|