Clement Gutel
Clement Gutel
I've been playing a bit with the checkout API. It's quite confusing, there are actually 2 different APIs: Abandoned checkout: https://help.shopify.com/api/reference/abandoned_checkouts Checkout: https://help.shopify.com/api/reference/checkout They both live under `/admin/checkouts.json` It's not...
Do you have a branch for 5.0?
This is related to https://github.com/nozzlegear/ShopifySharp/issues/62 I agree with @dkershner6. Solution 2 is much simpler. I would create a enum like ``` public enum UpdateBehavior { NonNullPropertiesOnly, AllProperties } ``` and...
Fair enough. I always go back and forth between long explicit names and shorter ones...
How would the `SetValue` know which property it is setting? I'm a bit worried about how complicated this would get and potential edge cases. I have another potential proposal, which...
Got it. It's a like bit like F# Option with None/Some. Still it's rather complicated. > Would we be able to get intellisense on the value, so it knows cust...
After playing a bit, I think the selector implementation would not be as straight forward as I thought. The problem is that when the object is projected with the selector,...
While at it, Order.client_details.browser_width/height should be ints
FYI, I use session tokens in my app already and didn't need to decode tokens manually as it is handled by ASP.NET 6 already.
@deepakkumar1984 I use the `AddJwtBearer` method to configure it with my API keys. Like this: ``` services.AddJwtBearer("ShopifySession", options => { options.TokenValidationParameters = new TokenValidationParameters { AuthenticationType = "ShopifySession", IssuerSigningKey =...