Can anyone confirm that Shopify only allows 2 decimal places in the adjustmentValue for selling plans? It looks like it rounds it off if you send more than that.
We are sending a pricingPolicy using GraphQL like the following:
[{'fixed': {'adjustmentType': 'PERCENTAGE', 'adjustmentValue': {'percentage': 2.345}}}]
But what we get back has the percentage rounded to the nearest hundredth:
[{'adjustmentValue': {'percentage': 2.35}, 'adjustmentType': 'PERCENTAGE'}]