├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── client.js ├── mongo-transactions.d.ts ├── package-types.json ├── package.js ├── server.js └── tests.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/README.md -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/client.js -------------------------------------------------------------------------------- /mongo-transactions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/mongo-transactions.d.ts -------------------------------------------------------------------------------- /package-types.json: -------------------------------------------------------------------------------- 1 | { 2 | "typesEntry": "mongo-transactions.d.ts" 3 | } 4 | -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/package.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/server.js -------------------------------------------------------------------------------- /tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamauro/mongo-transactions/HEAD/tests.js --------------------------------------------------------------------------------