Changelog
v1.1.3
improvements
tsdav.cjs.js
commonjs version which can be used with node 10 or later.tsdav.esm.js
esm version which can be used in pure esm packages with node 12 or later.tsdav.js
version which can be used in both browser and node, contains polyfills and with dependencies bundled in, which makes the file size larger.tsdav.min.js
minified version of tsdav.js
.Changelog
v1.1.2
improvements
Changelog
v1.1.1
improvements
Changelog
v1.1.0
breaking changes
DAVClient
is no longer a type returned by createDAVClient
, instead it's a class that can be instantiated.timeRange
in fetchCalendarObjects
is now validated against ISO_8601
standard and invalid format will throw an error.es2015
, if you are on node >= 10
and browsers that are not IE and have been updated since 2015
, you should be fine. support for es5
output is not possible with added esm
support.features
DAVClient
by new DAVClient(...params)
.esm
.strict
enabled, which means better types and less bugs.Changelog
v1.0.3
Fixed a bug where calendar objects with http
in its id would cause operations on it to fail.