1
0
mirror of synced 2025-12-25 02:09:19 -05:00

🐛 Source Coin API: Fix catalog typos (#34826)

This commit is contained in:
Aaron ("AJ") Steers
2024-02-05 06:43:57 -08:00
committed by GitHub
parent 63d0532ace
commit 66c7767a6f
4 changed files with 7 additions and 6 deletions

View File

@@ -34,5 +34,5 @@ COPY source_coin_api ./source_coin_api
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.version=0.2.0
LABEL io.airbyte.name=airbyte/source-coin-api

View File

@@ -2,7 +2,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 919984ef-53a2-479b-8ffe-9c1ddb9fc3f3
dockerImageTag: 0.1.1
dockerImageTag: 0.2.0
dockerRepository: airbyte/source-coin-api
githubIssueLabel: source-coin-api
icon: coinapi.svg

View File

@@ -19,10 +19,10 @@
"ask_size": {
"type": ["null", "number"]
},
"big_price": {
"bid_price": {
"type": ["null", "number"]
},
"big_size": {
"bid_size": {
"type": ["null", "number"]
}
}

View File

@@ -50,5 +50,6 @@ The following fields are required fields for the connector to work:
| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:-----------|
| 0.1.1 | 2022-12-19 | [20600](https://github.com/airbytehq/airbyte/pull/20600) | Add quotes historical data stream|
| 0.1.0 | 2022-10-21 | [18302](https://github.com/airbytehq/airbyte/pull/18302) | New source |
| 0.2.0 | 2024-02-05 | [#34826](https://github.com/airbytehq/airbyte/pull/34826) | Fix catalog types for fields `bid_price` and `bid_size` in stream `quotes_historical_data`. |
| 0.1.1 | 2022-12-19 | [#20600](https://github.com/airbytehq/airbyte/pull/20600) | Add quotes historical data stream|
| 0.1.0 | 2022-10-21 | [#18302](https://github.com/airbytehq/airbyte/pull/18302) | New source |