I’m developing a Purchase Option extension for my custom app by following the official documentation here:
https://shopify.dev/docs/apps/build/purchase-options/purchase-options-extensions/start-building
I generated the extension using shopify app generate extension and selected the Purchase Option extension type. My shopify.extension.toml file includes the following target:
[[extensions.targeting]]
module = "./src/ProductVariantExtension.jsx"
target = "admin.product-variant-purchase-option.action.render"
I receive the following error:
Unsupported extension point: admin.product-variant-purchase-option.action.render
I’m using Shopify CLI version 3.79.1 and the latest API version (2025-10).
Could you please confirm whether this extension point is publicly available or if it requires a feature flag to be enabled on my development store?
Additionally, I would like to clarify: what is the recommended way to create a product subscription extension using Purchase Options?