I’m building an app that requires access scopes:
“write_products,read_orders,customer_read_orders” (as a side note I’m including customer_read_orders in addition to read_orders because I’m not sure if I’ll get all customer data in the orders_create webhooks if I just have read_orders).
I’ve got a test development store for development purposes, and want to update the access scopes to those listed above.
When I changed access scopes before I remember using “npm run shopify app config push”, which is now depreciated.
The new process is to create a new version and deploy it (https://shopify.dev/docs/apps/tools/cli/configuration#migrate-from-config-push).
To deploy I need to request and have approved Network access, which from what I understand involves a review process from Shopify to register the app. I’m still very much in middle of the development process, and not ready to have anything reviewed for publishing at this time.
So my question is: How can I change access scopes without deploying my app?
*I’m new to Shopify development, so it may just be the case that I’m misunderstanding something basic. It seems weird to have so many hurdles to make a simple change while still in development.
