type Gcal = {
token: string;
};
export async function main(
gcal_auth: Gcal,
calendarId: string,
eventId: string,
attendees: Array<object>,
) {
const alwaysIncludeEmail = true;
const sendUpdates = "all";
const supportsAttachments = true;
const UPDATE_EVENT_ATTENDEES_URL = `https://www.googleapis.com/calendar/v3/calendars/${calendarId}/events/${eventId}/?alwaysIncludeEmail=${alwaysIncludeEmail}&sendUpdates=${sendUpdates}&supportsAttachments=${supportsAttachments}`;
const token = gcal_auth["token"];
const body = {
attendees: attendees,
};
const response = await fetch(UPDATE_EVENT_ATTENDEES_URL, {
method: "PUT",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by admin 469 days ago
type Gcal = {
token: string;
};
export async function main(
gcal_auth: Gcal,
calendarId: string,
eventId: string,
attendees: Array<object>,
) {
const alwaysIncludeEmail = true;
const sendUpdates = "all";
const supportsAttachments = true;
const UPDATE_EVENT_ATTENDEES_URL =
`https://www.googleapis.com/calendar/v3/calendars/${calendarId}/events/${eventId}/?alwaysIncludeEmail=${alwaysIncludeEmail}&sendUpdates=${sendUpdates}&supportsAttachments=${supportsAttachments}`;
const token = gcal_auth["token"];
const body = {
"attendees": attendees,
};
const response = await fetch(UPDATE_EVENT_ATTENDEES_URL, {
method: "PUT",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by admin 472 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
export async function main(
gcal_auth: wmill.Resource<"gcal">,
calendarId: string,
eventId: string,
attendees: Array<object>,
) {
const alwaysIncludeEmail = true;
const sendUpdates = "all";
const supportsAttachments = true;
const UPDATE_EVENT_ATTENDEES_URL =
`https://www.googleapis.com/calendar/v3/calendars/${calendarId}/events/${eventId}/?alwaysIncludeEmail=${alwaysIncludeEmail}&sendUpdates=${sendUpdates}&supportsAttachments=${supportsAttachments}`;
const token = gcal_auth["token"];
const body = {
"attendees": attendees,
};
const response = await fetch(UPDATE_EVENT_ATTENDEES_URL, {
method: "PUT",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by adam186 600 days ago
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts";
export async function main(
gcal_auth: wmill.Resource<"gcal">,
calendarId: string,
eventId: string,
attendees: Array<object>,
) {
const alwaysIncludeEmail = true;
const sendUpdates = "all";
const supportsAttachments = true;
const UPDATE_EVENT_ATTENDEES_URL =
`https://www.googleapis.com/calendar/v3/calendars/${calendarId}/events/${eventId}/?alwaysIncludeEmail=${alwaysIncludeEmail}&sendUpdates=${sendUpdates}&supportsAttachments=${supportsAttachments}`;
const token = gcal_auth["token"];
const body = {
"attendees": attendees,
};
const response = await fetch(UPDATE_EVENT_ATTENDEES_URL, {
method: "PUT",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by adam186 635 days ago
import * as wmill from "https://deno.land/x/windmill@v1.23.0/mod.ts";
export async function main(
gcal_auth: wmill.Resource<"gcal">,
calendarId: string,
eventId: string,
attendees: Array<object>,
) {
const alwaysIncludeEmail = true;
const sendUpdates = "all";
const supportsAttachments = true;
const UPDATE_EVENT_ATTENDEES_URL =
`https://www.googleapis.com/calendar/v3/calendars/${calendarId}/events/${eventId}/?alwaysIncludeEmail=${alwaysIncludeEmail}&sendUpdates=${sendUpdates}&supportsAttachments=${supportsAttachments}`;
const token = gcal_auth["token"];
const body = {
"attendees": attendees,
};
const response = await fetch(UPDATE_EVENT_ATTENDEES_URL, {
method: "PUT",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const result = await response.json();
return result;
}
Submitted by rossmccrann 852 days ago