Unable to find restResources in npm package

I’m following the guide from here: https://github.com/Shopify/shopify-app-js/blob/main/packages/apps/shopify-api/docs/guides/rest-resources.md#mounting-rest-resources

the shopify rest resources seem to be gone in this current version.

I’ve tried all different API versions but Typescript cannot find the module:

import { restResources } from " @Shopify_77 /shopify-api/rest/admin/2024-07";

I’ve uninstalled and reinstalled @Shopify_77 /shopify-api and updated it to the latest.

I solved it. I had to change tsconfig.

changed moduleResolution from “node” to “bundler”

module from “es2020” to “esnext”
changed “es2020” in lib array to “esnext”