Hi, thanks for your great work on this package!
I noticed that the type definitions for the response of getCatalogItem are incorrect. The actual response object contains asin and summaries fields at the root level, but the types expect them under a payload property.
Version is "amazon-sp-api": "^1.1.5",
Example response:
{
asin: "...",
summaries: [...]
}
But the type definition expects:
{
payload: {
asin: "...",
summaries: [...]
}
}
Could you please update the type definitions to match the actual response structure? Thank you!
Hi, thanks for your great work on this package!
I noticed that the type definitions for the response of
getCatalogItemare incorrect. The actual response object containsasinandsummariesfields at the root level, but the types expect them under apayloadproperty.Version is "amazon-sp-api": "^1.1.5",
Example response:
{
asin: "...",
summaries: [...]
}
But the type definition expects:
{
payload: {
asin: "...",
summaries: [...]
}
}
Could you please update the type definitions to match the actual response structure? Thank you!