@bobfrankston/mailx-types 0.1.94 → 0.1.96

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 +2 -0
  2. package/package.json +1 -1
package/mailx-api.d.ts CHANGED
@@ -165,11 +165,13 @@ export interface MailxApi {
165
165
  ok: boolean;
166
166
  reason?: string;
167
167
  }>;
168
+ /** accessRole is Google's: owner / writer can take a new event, reader / freeBusyReader cannot. */
168
169
  getCalendars(): Promise<Array<{
169
170
  id: string;
170
171
  name: string;
171
172
  color: string;
172
173
  primary: boolean;
174
+ accessRole?: string;
173
175
  }>>;
174
176
  createCalendarEvent(ev: any): Promise<{
175
177
  uuid: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx-types",
3
- "version": "0.1.94",
3
+ "version": "0.1.96",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",