├── .eslintrc ├── .gitignore ├── Contributing.md ├── Gruntfile.js ├── LICENSE ├── changelog.md ├── documentclientwrapper.js ├── nodejspromisessdk.proj ├── package.json ├── readme.md └── test ├── _testConfig.js ├── readme.md └── test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/.gitignore -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/Contributing.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/LICENSE -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/changelog.md -------------------------------------------------------------------------------- /documentclientwrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/documentclientwrapper.js -------------------------------------------------------------------------------- /nodejspromisessdk.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/nodejspromisessdk.proj -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/readme.md -------------------------------------------------------------------------------- /test/_testConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/test/_testConfig.js -------------------------------------------------------------------------------- /test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/test/readme.md -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-documentdb-node-q/HEAD/test/test.js --------------------------------------------------------------------------------