From e3070a51d6bbc59dc7ea684d76442156959f14d2 Mon Sep 17 00:00:00 2001 From: Jacob Marshall Date: Wed, 13 Feb 2019 05:28:12 +1300 Subject: [PATCH] Correct Azure Functions type definitions (#2287) * Rename azureFunctions.d.ts to azureFunctions.ts See https://github.com/apollographql/apollo-server/issues/2085#issuecomment-449686772 * Update CHANGELOG.md --- CHANGELOG.md | 1 + .../src/{azureFunctions.d.ts => azureFunctions.ts} | 0 2 files changed, 1 insertion(+) rename packages/apollo-server-azure-functions/src/{azureFunctions.d.ts => azureFunctions.ts} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc8cad6c360..1f6d970144c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Implement an in-memory cache store to save parsed and validated documents and provide performance benefits for repeat executions of the same document. [PR #2111](https://github.com/apollographql/apollo-server/pull/2111) (`>=2.4.0-alpha.0`) - Fix: Serialize arrays as JSON on fetch in `RESTDataSource`. [PR #2219](https://github.com/apollographql/apollo-server/pull/2219) - Fix: The `privateHeaders` configuration for `apollo-engine-reporting` now allows headers to be specified using any case and lower-cases them prior to comparison. [PR #2276](https://github.com/apollographql/apollo-server/pull/2276) +- Fix broken `apollo-server-azure-functions` TypeScript definitions. [PR #2287](https://github.com/apollographql/apollo-server/pull/2287) ### v2.3.3 diff --git a/packages/apollo-server-azure-functions/src/azureFunctions.d.ts b/packages/apollo-server-azure-functions/src/azureFunctions.ts similarity index 100% rename from packages/apollo-server-azure-functions/src/azureFunctions.d.ts rename to packages/apollo-server-azure-functions/src/azureFunctions.ts