amazon-advertising-api-sdk
amazon-advertising-api-sdk copied to clipboard
fix: convert number IDs to BigInt
Convert all number
identifiers to BigInt
.
Closes: #975
@moltar we'll have to cover all the ids right? keywordId, adgroupId etc. Also while sending a request to amazon we can send them as a string (but not sure if all the APIs accept them as String).
Ya that's the hardest part is to feed them ints back. Not sure if the api will accept strings. Need to experiment. However, it should be still possible to use some custom serialization method to convert stringified ints to proper ints. Even if it means just using a regex to strip off " from string json.