Skip to content

Commit

Permalink
Source Plaid bump connector version (#11645)
Browse files Browse the repository at this point in the history
* 🔧 Fixed the 100 transaction limit on Plaid source. Added start date to Plaid connector

* 📝 Updated integration docs

* ✏️ Updated import statement location

* bump connector version

* run seed config

Co-authored-by: Ehmad Zubair <ezubair@gmail.com>
  • Loading branch information
marcosmarxm and ehmadzubair committed Apr 1, 2022
1 parent 3317552 commit 53780b5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@
- name: Plaid
sourceDefinitionId: ed799e2b-2158-4c66-8da4-b40fe63bc72a
dockerRepository: airbyte/source-plaid
dockerImageTag: 0.3.0
dockerImageTag: 0.3.1
documentationUrl: https://docs.airbyte.io/integrations/sources/plaid
icon: plaid.svg
sourceType: api
Expand Down
11 changes: 10 additions & 1 deletion airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6324,7 +6324,7 @@
- - "client_secret"
oauthFlowOutputParameters:
- - "refresh_token"
- dockerImage: "airbyte/source-plaid:0.3.0"
- dockerImage: "airbyte/source-plaid:0.3.1"
spec:
documentationUrl: "https://plaid.com/docs/api/"
connectionSpecification:
Expand Down Expand Up @@ -6358,6 +6358,15 @@
- "development"
- "production"
description: "The Plaid environment"
start_date:
title: "Start Date"
type: "string"
description: "The date from which you'd like to replicate data for Plaid\
\ in the format YYYY-MM-DD. All data generated after this date will be\
\ replicated."
examples:
- "2021-03-01"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-plaid/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_plaid ./source_plaid
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.3.0
LABEL io.airbyte.version=0.3.1
LABEL io.airbyte.name=airbyte/source-plaid
1 change: 1 addition & 0 deletions docs/integrations/sources/plaid.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,6 @@ This guide will walk through how to create the credentials you need to run this

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.3.1 | 2022-03-31 | [11104](https://github.com/airbytehq/airbyte/pull/11104) | Fix 100 record limit and added start_date |
| 0.3.0 | 2022-01-05 | [7977](https://github.com/airbytehq/airbyte/pull/7977) | Migrate to Python CDK + add transaction stream |
| 0.3.1 | 2022-xx-xx | [7977](https://github.com/airbytehq/airbyte/pull/11104) | Fix 100 record limit and added start_date |

0 comments on commit 53780b5

Please sign in to comment.