@bobfrankston/mailx-types 0.1.41 → 0.1.42

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 +3 -0
  2. package/package.json +1 -1
package/mailx-api.d.ts CHANGED
@@ -229,10 +229,13 @@ export interface MailxApi {
229
229
  }>;
230
230
  logClientEvent?(...args: any[]): void | Promise<void>;
231
231
  getVersion?(): any | Promise<any>;
232
+ /** `reused` ⇒ this draft was already open in an editor; that window was
233
+ * raised instead of a second copy being spawned. */
232
234
  openInWord?(editId: string, html: string): Promise<{
233
235
  ok: boolean;
234
236
  path: string;
235
237
  opener: string;
238
+ reused?: boolean;
236
239
  }>;
237
240
  closeWordEdit?(editId: string): Promise<void>;
238
241
  showReminderPopup?(opts: any): Promise<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx-types",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",