@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.
Files changed (2) hide show
  1. package/mailx-api.d.ts +5 -0
  2. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx-types",
3
- "version": "0.1.92",
3
+ "version": "0.1.94",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",