nozzlegear / ShopifySharp

ShopifySharp is a .NET library that helps developers easily authenticate with and manage Shopify stores.
https://nozzlegear.com/shopify-development-handbook
MIT License
733 stars 303 forks source link

Add read_returns and write_returns to access scopes enums #1052

Open arsuceno opened 3 months ago

arsuceno commented 3 months ago

Hi,

It could be possible to add read_returns and write_returns to AuthorizationScope enum? They are needed to manage returns https://shopify.dev/docs/apps/fulfillment/returns-apps/returns . Like this:

    [EnumMember(Value = "read_returns")]
    ReadReturns,

    [EnumMember(Value = "write_returns")]
    WriteReturns

I can do a PR for this. Thanks!

nozzlegear commented 3 months ago

Sure! If you want to do a pull request for this I’d be happy to merge and publish it.

arsuceno commented 3 months ago

Here we go https://github.com/nozzlegear/ShopifySharp/pull/1053