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

Source Open ExchangeRates Api: Make Connector Compatible with Builder (#38141)

This commit is contained in:
btkcodedev
2024-05-15 20:52:36 +05:30
committed by GitHub
parent bce549a9e7
commit 8f5fafc078
5 changed files with 990 additions and 976 deletions

View File

@@ -7,7 +7,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 77d5ca6b-d345-4dce-ba1e-1935a75778b8
dockerImageTag: 0.2.4
dockerImageTag: 0.2.5
dockerRepository: airbyte/source-open-exchange-rates
documentationUrl: https://docs.airbyte.com/integrations/sources/open-exchange-rates
githubIssueLabel: source-open-exchange-rates

View File

@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.2.4"
version = "0.2.5"
name = "source-open-exchange-rates"
description = "Source implementation for Open Exchange Rates."
authors = [ "Airbyte <contact@airbyte.io>",]

View File

@@ -1,26 +0,0 @@
documentationUrl: https://docs.airbyte.com/integrations/sources/openexchangesrates
connectionSpecification:
$schema: http://json-schema.org/draft-07/schema#
title: Open Exchange Rates Spec
type: object
required:
- app_id
- start_date
properties:
app_id:
type: string
description: App ID provided by Open Exchange Rates
airbyte_secret: true
start_date:
type: string
description: Start getting data from that date.
pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}$
examples:
- YYYY-MM-DD
base:
type: string
description: Change base currency (3-letter code, default is USD - only modifiable in paid plans)
examples:
- EUR
- USD
default: USD

View File

@@ -45,6 +45,7 @@ If you have `free` subscription plan \(you may check it [here](https://openexcha
| Version | Date | Pull Request | Subject |
| :------ | :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------ |
| 0.2.5 | 2024-05-14 | [38141](https://github.com/airbytehq/airbyte/pull/38141) | Make connector compatable with builder |
| 0.2.4 | 2024-04-19 | [37208](https://github.com/airbytehq/airbyte/pull/37208) | Updating to 0.80.0 CDK |
| 0.2.3 | 2024-04-18 | [37208](https://github.com/airbytehq/airbyte/pull/37208) | Manage dependencies with Poetry. |
| 0.2.2 | 2024-04-15 | [37208](https://github.com/airbytehq/airbyte/pull/37208) | Base image migration: remove Dockerfile and use the python-connector-base image |