The one where we break everything by being specific about integers
Overview
We converted the int
declarations throughout to int64
.
Why?
Many of Shopify's internal ids have exceeded the maximum 32-bit integer value. On systems that were compiling go without 64 bit integer defaults, this library was not working for those internal ids. Being explicit about the size of these integers allows this library to work on more systems.