Hey Team, I am using tap-netsuite (<https://github...
# plugins-general
a
Hey Team, I am using tap-netsuite (https://github.com/hotgluexyz/tap-netsuite) the tap works fine on its own but it does not process with Meltano since it is using --properties instead of --catalog is there a way to make Meltano work with properties ? Thank you!
e
I think it's a custom plugin, right? If so you can declare
properties
in the
capabilities
. Like this:
Copy code
- name: tap-netsuite
  capabilities:
    - properties
    - discover
    - state
t
This is also documented in https://meltano.com/docs/integration.html#validate-tap-capabilities which was recently added to the docs
a
Thank you! I had mentioned properties in the capabilities but I had mentioned catalog too (only one works at a time!)