Hi all,is it possible to have more data of the tap...
# troubleshooting
s
Hi all,is it possible to have more data of the tap-amazon-sp extractor? Only we have these: • OrdersOrderItemsSales
p
It looks like those are the only ones supported by the tap right now, see the tap repo https://github.com/singer-io/tap-amazon-sp for more details. You have a bunch of options depending on how you want to proceed: 1. Build a new tap using the SDK with more stream coverage 2. Open an issue/PR to that singer-io repo to add more streams 3. Fork that repo and add streams similar to this one https://github.com/atidivhq/tap-amazon-sp I also see this tap that has a ton of streams but it labeled as "Old" with a link to a private or deleted repo so I wouldnt necessarily recommend it
Option 1 is the most robust in terms of future maintenance since its on the SDK but would require more work than the others. Option 2 is good but sometimes singer-io is slow to merge in PRs. Option 3 is the quickest and easiest but it requires you to take on the maintenance burden of having a new standalone fork so its less sustainable long term
s
thanks