Skip to content

Commit

Permalink
update tests and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiascadee committed Nov 20, 2023
1 parent 1c07e31 commit 05be61f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 13 deletions.
33 changes: 24 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,30 @@ pipx install git+https://github.com/ORG_NAME/tap-aircall.git@main

### Accepted Config Options

<!--
Developer TODO: Provide a list of config options accepted by the tap.
This section can be created by copy-pasting the CLI output from:
```
tap-aircall --about --format=markdown
```
-->
Built with the [Meltano Singer SDK](https://sdk.meltano.com).

## Capabilities

* `catalog`
* `state`
* `discover`
* `about`
* `stream-maps`
* `schema-flattening`
* `batch`

## Settings

| Setting | Required | Default | Description |
|:--------------------|:--------:|:-------:|:------------|
| api_key | True | None | The key to authenticate against the API service |
| api_token | True | None | The token to authenticate against the API service |
| start_date | False | None | The earliest record date to sync |
| stream_maps | False | None | Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html). |
| stream_map_config | False | None | User-defined config values to be used within map expressions. |
| flattening_enabled | False | None | 'True' to enable schema flattening and automatically expand nested properties. |
| flattening_max_depth| False | None | The max depth to flatten schemas. |
| batch_config | False | None | |

A full list of supported settings and capabilities for this
tap is available by running:
Expand Down
5 changes: 1 addition & 4 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,4 @@
TestTapAircall = get_tap_test_class(
tap_class=TapAircall,
config=SAMPLE_CONFIG,
)


# TODO: Create additional tests as appropriate for your tap.
)

0 comments on commit 05be61f

Please sign in to comment.