Alexis Pentori 38866cf78b refactoring: bank_balance becoming basic-api-fetcher
adding stream for fetching additional token data

Signed-off-by: Alexis Pentori <alexis@status.im>
2024-02-15 09:54:17 +01:00

33 lines
751 B
JSON

{
"streams": [
{
"stream": {
"name": "bank_balance",
"json_schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object"
},
"supported_sync_modes": [
"full_refresh", "incremental"
]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite"
},
{
"stream": {
"name": "additional_tokens",
"json_schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object"
},
"supported_sync_modes": [
"full_refresh", "incremental"
]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite"
}
]
}