-
Notifications
You must be signed in to change notification settings - Fork 26
No "selected: boolean" field in the generated catalog #120
Copy link
Copy link
Open
Description
This tap requires a catalog to run. However, when the tap is run in discovery mode and a catalog is generated,
tap-xero --config config.json --discover > catalog.jsonnon of the streams have a "selected: true/false" field in the catalog. One has to be manually inserted.
For example, by default, the bank_transactions stream in the catalog is
"stream": "bank_transactions",
"metadata": [
{
"breadcrumb": [],
"metadata": {
"table-key-properties": [
"BankTransactionID"To enable, this must be replaced with
"stream": "bank_transactions",
"metadata": [
{
"breadcrumb": [],
"metadata": {
"selected": true,
"table-key-properties": [
"BankTransactionID"Note the insertion of "selected": true. Is this the intentional behavior? It means that without sifting through the catalog, this tap will not sync any streams. Shouldn't there at least be a "selected": false for each stream?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels