Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
natelindev authored Dec 5, 2024
2 parents 41f5cac + 20dce41 commit cade318
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/docs/caldav/createCalendarObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ create one calendar object on the target calendar
```ts
const result = await createCalendarObject({
calendar: calendars[0],
filename: 'test.ics'
filename: 'test.ics',
iCalString: 'BEGIN:VCALENDAR\nVERSION:2.0\nPRODID:-//ZContent.net//Zap Calendar 1.0//EN\nBEGIN:VEVENT\nCALSCALE:GREGORIAN\nMETHOD:PUBLISH\nSUMMARY:Abraham Lincoln\nUID:c7614cff-3549-4a00-9152-d25cc1fe077d\nSEQUENCE:0\nSTATUS:CONFIRMED\nTRANSP:TRANSPARENT\nRRULE:FREQ=YEARLY;INTERVAL=1;BYMONTH=2;BYMONTHDAY=12\nDTSTART:20080212T182145Z\nDTEND:20080213T182145Z\nDTSTAMP:20150421T182145Z\nCATEGORIES:U.S. Presidents,Civil War People\nLOCATION:Hodgenville, Kentucky\nGEO:37.5739497;-85.7399606\nDESCRIPTION:Born February 12, 1809 Sixteenth President (1861-1865) http\://AmericanHistoryCalendar.com\nURL:http\://americanhistorycalendar.com/peoplecalendar/1,328-abraham-lincoln\nEND:VEVENT\nEND:VCALENDAR',
headers: {
authorization: 'Basic x0C9ueWd9Vz8OwS0DEAtkAlj',
Expand Down
5 changes: 2 additions & 3 deletions docs/docs/smart calendar sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,12 @@ you can use `syncCalendars` function from the lib with `detailedResult` set as `

```ts
const { created, updated, deleted } = await client.syncCalendars({
oldCalendars: await Promise.all(
localCalendars.map(async (lc) => ({
oldCalendars: localCalendars.map((lc) => ({
displayName: lc.name,
syncToken: lc.syncToken,
ctag: lc.ctag,
url: lc.url,
}))
})
),
detailedResult: true,
});
Expand Down

0 comments on commit cade318

Please sign in to comment.