New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

tsdav

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsdav - npm Package Compare versions

Comparing version 1.1.5 to 1.1.6

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## v1.1.6
**improvements**
- Added `vCardUrlFilter` to `fetchVCards` to allow vCard Urls to be filtered before fetching
- tested with baikal
## v1.1.5

@@ -2,0 +9,0 @@

47

dist/package.json
{
"name": "tsdav",
"version": "1.1.5",
"version": "1.1.6",
"description": "WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser",

@@ -23,3 +23,3 @@ "keywords": [

"homepage": "https://tsdav.vercel.app/",
"repository": "https://github.com/llldar/tsDAV",
"repository": "https://github.com/natelindev/tsdav",
"license": "MIT",

@@ -40,4 +40,5 @@ "author": "linlilulll@gmail.com",

"prepublishOnly": "yarn build",
"test": "jest",
"test": "yarn jest --testPathIgnorePatterns=src/__tests__/integration/baikal",
"test:apple": "jest --testPathPattern=src/__tests__/integration/apple --runInBand",
"test:baikal": "jest --testPathPattern=src/__tests__/integration/baikal --runInBand",
"test:fastmail": "jest --testPathPattern=src/__tests__/integration/fastmail --runInBand",

@@ -53,6 +54,6 @@ "test:google": "jest --testPathPattern=src/__tests__/integration/google --runInBand",

"cross-fetch": "3.1.4",
"debug": "4.3.2",
"eslint-module-utils": "2.7.1",
"debug": "4.3.3",
"eslint-module-utils": "2.7.2",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-polyfill-node": "0.7.0",
"rollup-plugin-polyfill-node": "0.8.0",
"xml-js": "1.6.11"

@@ -62,28 +63,28 @@ },

"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.0",
"@types/base-64": "1.0.0",
"@types/debug": "4.1.7",
"@types/jest": "27.0.2",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"@types/jest": "27.4.0",
"@types/node": "17.0.8",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"copyfiles": "2.4.1",
"cross-env": "7.0.3",
"dotenv": "10.0.0",
"eslint": "8.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "15.0.0",
"dotenv": "11.0.0",
"eslint": "8.6.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.3.1",
"prettier": "2.4.1",
"jest": "27.4.7",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"rollup": "2.59.0",
"rollup-plugin-dts": "4.0.1",
"rollup": "2.63.0",
"rollup-plugin-dts": "4.1.0",
"rollup-plugin-terser": "7.0.2",
"sort-package-json": "1.52.0",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
"sort-package-json": "1.53.1",
"ts-jest": "27.1.2",
"typescript": "4.5.4"
},

@@ -90,0 +91,0 @@ "engines": {

<p align="center">
<img width="300" height="200" src="https://github.com/llldar/tsDAV/blob/master/docs/static/img/logo.svg">
<img width="300" height="200" src="https://github.com/natelindev/tsdav/blob/master/docs/static/img/logo.svg">
</p>

@@ -18,3 +18,3 @@ <p align="center">

</a>
<a aria-label="License" href="https://github.com/llldar/tsDAV/blob/master/LICENSE">
<a aria-label="License" href="https://github.com/natelindev/tsdav/blob/master/LICENSE">
<img alt="MIT License" src="https://img.shields.io/npm/l/tsdav?style=for-the-badge&labelColor=24292e">

@@ -162,6 +162,4 @@ </a>

[MIT](https://github.com/llldar/tsDAV/blob/master/LICENSE)
[MIT](https://github.com/natelindev/tsdav/blob/master/LICENSE)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fllldar%2FtsDAV.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fllldar%2FtsDAV?ref=badge_large)
### Changelog

@@ -168,0 +166,0 @@

@@ -198,4 +198,5 @@ declare enum DAVNamespace {

addressBook: DAVAddressBook;
headers?: Record<string, string>;
objectUrls?: string[];
headers?: Record<string, string> | undefined;
objectUrls?: string[] | undefined;
vCardUrlFilter?: ((url: string) => boolean) | undefined;
}) => Promise<DAVVCard[]>;

@@ -484,2 +485,3 @@ declare const createVCard: (params: {

objectUrls?: string[] | undefined;
vCardUrlFilter?: ((url: string) => boolean) | undefined;
}) => Promise<DAVObject[]>;

@@ -699,2 +701,3 @@ createVCard: (params: {

objectUrls?: string[] | undefined;
vCardUrlFilter?: ((url: string) => boolean) | undefined;
}) => Promise<DAVObject[]>;

@@ -938,2 +941,3 @@ createVCard: (params: {

objectUrls?: string[] | undefined;
vCardUrlFilter?: ((url: string) => boolean) | undefined;
}) => Promise<DAVObject[]>;

@@ -940,0 +944,0 @@ createVCard: (params: {

{
"name": "tsdav",
"version": "1.1.5",
"version": "1.1.6",
"description": "WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser",

@@ -23,3 +23,3 @@ "keywords": [

"homepage": "https://tsdav.vercel.app/",
"repository": "https://github.com/llldar/tsDAV",
"repository": "https://github.com/natelindev/tsdav",
"license": "MIT",

@@ -40,4 +40,5 @@ "author": "linlilulll@gmail.com",

"prepublishOnly": "yarn build",
"test": "jest",
"test": "yarn jest --testPathIgnorePatterns=src/__tests__/integration/baikal",
"test:apple": "jest --testPathPattern=src/__tests__/integration/apple --runInBand",
"test:baikal": "jest --testPathPattern=src/__tests__/integration/baikal --runInBand",
"test:fastmail": "jest --testPathPattern=src/__tests__/integration/fastmail --runInBand",

@@ -53,6 +54,6 @@ "test:google": "jest --testPathPattern=src/__tests__/integration/google --runInBand",

"cross-fetch": "3.1.4",
"debug": "4.3.2",
"eslint-module-utils": "2.7.1",
"debug": "4.3.3",
"eslint-module-utils": "2.7.2",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-polyfill-node": "0.7.0",
"rollup-plugin-polyfill-node": "0.8.0",
"xml-js": "1.6.11"

@@ -62,28 +63,28 @@ },

"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.0",
"@types/base-64": "1.0.0",
"@types/debug": "4.1.7",
"@types/jest": "27.0.2",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"@types/jest": "27.4.0",
"@types/node": "17.0.8",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"copyfiles": "2.4.1",
"cross-env": "7.0.3",
"dotenv": "10.0.0",
"eslint": "8.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "15.0.0",
"dotenv": "11.0.0",
"eslint": "8.6.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.3.1",
"prettier": "2.4.1",
"jest": "27.4.7",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"rollup": "2.59.0",
"rollup-plugin-dts": "4.0.1",
"rollup": "2.63.0",
"rollup-plugin-dts": "4.1.0",
"rollup-plugin-terser": "7.0.2",
"sort-package-json": "1.52.0",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
"sort-package-json": "1.53.1",
"ts-jest": "27.1.2",
"typescript": "4.5.4"
},

@@ -90,0 +91,0 @@ "engines": {

<p align="center">
<img width="300" height="200" src="https://github.com/llldar/tsDAV/blob/master/docs/static/img/logo.svg">
<img width="300" height="200" src="https://github.com/natelindev/tsdav/blob/master/docs/static/img/logo.svg">
</p>

@@ -18,3 +18,3 @@ <p align="center">

</a>
<a aria-label="License" href="https://github.com/llldar/tsDAV/blob/master/LICENSE">
<a aria-label="License" href="https://github.com/natelindev/tsdav/blob/master/LICENSE">
<img alt="MIT License" src="https://img.shields.io/npm/l/tsdav?style=for-the-badge&labelColor=24292e">

@@ -162,6 +162,4 @@ </a>

[MIT](https://github.com/llldar/tsDAV/blob/master/LICENSE)
[MIT](https://github.com/natelindev/tsdav/blob/master/LICENSE)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fllldar%2FtsDAV.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fllldar%2FtsDAV?ref=badge_large)
### Changelog

@@ -168,0 +166,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc