diff --git a/packages/shopify-app-express/CHANGELOG.md b/packages/shopify-app-express/CHANGELOG.md
index 516f760493..41f8d1e9d4 100644
--- a/packages/shopify-app-express/CHANGELOG.md
+++ b/packages/shopify-app-express/CHANGELOG.md
@@ -4,15 +4,50 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
This upgrade does not require any code changes.
+#### Changes to the `ShopifyApp` type
+
+Previously, the `ShopifyApp` type accepted 2 generic types: the REST resources and the session storage class.
+In v3, that type accepts 1 generic: the params given to the `shopifyApp()` function, which contains both of the previous types, and more.
+
+Apps shouldn't need to use that type directly since `shopifyApp()` is able to extract the types from the parameters it's given.
+If you need to explicitly set those generics, you'll need to use the `AppConfigParams` type.
+
+
+See an example
+
+Before:
+
+```ts
+import {ShopifyApp} from '@shopify/shopify-app-express';
+import {restResources} from '@shopify/shopify-api/rest/admin/2023-10';
+import {MemorySessionStorage} from '@shopify/shopify-app-session-storage-memory';
+
+const myVariable: ShopifyApp;
+```
+
+After:
+
+```ts
+import {ShopifyApp, AppConfigParams} from '@shopify/shopify-app-express';
+import {restResources} from '@shopify/shopify-api/rest/admin/2023-10';
+import {MemorySessionStorage} from '@shopify/shopify-app-session-storage-memory';
+
+const myVariable: ShopifyApp<
+ AppConfigParams
+>;
+```
+
+
+
### Patch Changes
- a69d6fc: Updating dependency on @shopify/shopify-api to v.8.0.1
diff --git a/packages/shopify-app-express/src/index.ts b/packages/shopify-app-express/src/index.ts
index 49175cfd09..6abceb6a95 100644
--- a/packages/shopify-app-express/src/index.ts
+++ b/packages/shopify-app-express/src/index.ts
@@ -34,6 +34,7 @@ export * from './types';
export * from './auth/types';
export * from './middlewares/types';
export * from './webhooks/types';
+export {AppConfigParams} from './config-types';
type DefaultedConfigs | undefined> =
ApiConfigParams & Params;
diff --git a/packages/shopify-app-remix/CHANGELOG.md b/packages/shopify-app-remix/CHANGELOG.md
index 4ff390315f..cb5a513932 100644
--- a/packages/shopify-app-remix/CHANGELOG.md
+++ b/packages/shopify-app-remix/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-dynamodb/CHANGELOG.md b/packages/shopify-app-session-storage-dynamodb/CHANGELOG.md
index 8ac3653458..be752ef0f3 100644
--- a/packages/shopify-app-session-storage-dynamodb/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-dynamodb/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-kv/CHANGELOG.md b/packages/shopify-app-session-storage-kv/CHANGELOG.md
index fc4b43f2fe..155f22b391 100644
--- a/packages/shopify-app-session-storage-kv/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-kv/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-memory/CHANGELOG.md b/packages/shopify-app-session-storage-memory/CHANGELOG.md
index 75db4e5ebe..e19e3efe5e 100644
--- a/packages/shopify-app-session-storage-memory/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-memory/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-mongodb/CHANGELOG.md b/packages/shopify-app-session-storage-mongodb/CHANGELOG.md
index 375fb78de4..8ca91da5f9 100644
--- a/packages/shopify-app-session-storage-mongodb/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-mongodb/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-mysql/CHANGELOG.md b/packages/shopify-app-session-storage-mysql/CHANGELOG.md
index 4c7e948e18..242b7cc34d 100644
--- a/packages/shopify-app-session-storage-mysql/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-mysql/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-postgresql/CHANGELOG.md b/packages/shopify-app-session-storage-postgresql/CHANGELOG.md
index 4c08f4a7fb..6d891a7928 100644
--- a/packages/shopify-app-session-storage-postgresql/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-postgresql/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-prisma/CHANGELOG.md b/packages/shopify-app-session-storage-prisma/CHANGELOG.md
index 4ba25f7aed..36da097665 100644
--- a/packages/shopify-app-session-storage-prisma/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-prisma/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-redis/CHANGELOG.md b/packages/shopify-app-session-storage-redis/CHANGELOG.md
index 0a09030fa5..e6f12b1082 100644
--- a/packages/shopify-app-session-storage-redis/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-redis/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage-sqlite/CHANGELOG.md b/packages/shopify-app-session-storage-sqlite/CHANGELOG.md
index 912915f0e1..573da25998 100644
--- a/packages/shopify-app-session-storage-sqlite/CHANGELOG.md
+++ b/packages/shopify-app-session-storage-sqlite/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.
diff --git a/packages/shopify-app-session-storage/CHANGELOG.md b/packages/shopify-app-session-storage/CHANGELOG.md
index 3fd8a895a9..6cb2a4fb6e 100644
--- a/packages/shopify-app-session-storage/CHANGELOG.md
+++ b/packages/shopify-app-session-storage/CHANGELOG.md
@@ -4,9 +4,9 @@
### Major Changes
-- f837060: ### Removed support for Node 14
+- f837060: **Removed support for Node 14**
- Node 14 has reached it's [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
+ Node 14 has reached its [EOL](https://endoflife.date/nodejs), and dependencies to this package no longer work on Node 14.
Because of that, we can no longer support that version.
If your app is running on Node 14, you'll need to update to a more recent version before upgrading this package.