@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.
- package/mailx-api.d.ts +2 -0
- 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;
|