├── .gitattributes ├── .gitignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── change ├── xrm-webapi-2020-08-25-08-10-50-master.json ├── xrm-webapi-2020-08-25-09-54-57-master.json ├── xrm-webapi-2020-10-28-13-38-47-master.json ├── xrm-webapi-2020-10-28-14-04-10-master.json └── xrm-webapi-2020-12-08-12-06-41-master.json ├── package.json ├── samples └── xrm-webapi-samples.ts ├── src ├── models.ts ├── webapi-browser.ts ├── webapi-node.ts ├── webapi.ts ├── xrm-webapi-node.ts └── xrm-webapi.ts ├── test └── xrm-webapi.spec.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/CHANGELOG.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /change/xrm-webapi-2020-08-25-08-10-50-master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/change/xrm-webapi-2020-08-25-08-10-50-master.json -------------------------------------------------------------------------------- /change/xrm-webapi-2020-08-25-09-54-57-master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/change/xrm-webapi-2020-08-25-09-54-57-master.json -------------------------------------------------------------------------------- /change/xrm-webapi-2020-10-28-13-38-47-master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/change/xrm-webapi-2020-10-28-13-38-47-master.json -------------------------------------------------------------------------------- /change/xrm-webapi-2020-10-28-14-04-10-master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/change/xrm-webapi-2020-10-28-14-04-10-master.json -------------------------------------------------------------------------------- /change/xrm-webapi-2020-12-08-12-06-41-master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/change/xrm-webapi-2020-12-08-12-06-41-master.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/package.json -------------------------------------------------------------------------------- /samples/xrm-webapi-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/samples/xrm-webapi-samples.ts -------------------------------------------------------------------------------- /src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/src/models.ts -------------------------------------------------------------------------------- /src/webapi-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/src/webapi-browser.ts -------------------------------------------------------------------------------- /src/webapi-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/src/webapi-node.ts -------------------------------------------------------------------------------- /src/webapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/src/webapi.ts -------------------------------------------------------------------------------- /src/xrm-webapi-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/src/xrm-webapi-node.ts -------------------------------------------------------------------------------- /src/xrm-webapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/src/xrm-webapi.ts -------------------------------------------------------------------------------- /test/xrm-webapi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/test/xrm-webapi.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekfinlinson/xrm-webapi/HEAD/yarn.lock --------------------------------------------------------------------------------