Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 7 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -164,18 +164,22 @@ plaid/model/base_reports_error_webhook.py
plaid/model/base_reports_product_ready_webhook.py
plaid/model/beacon_audit_trail.py
plaid/model/beacon_audit_trail_source.py
plaid/model/beacon_duplicate_detected_webhook.py
plaid/model/beacon_match_summary_code.py
plaid/model/beacon_report.py
plaid/model/beacon_report_create_request.py
plaid/model/beacon_report_create_response.py
plaid/model/beacon_report_created_webhook.py
plaid/model/beacon_report_list_request.py
plaid/model/beacon_report_list_response.py
plaid/model/beacon_report_syndication.py
plaid/model/beacon_report_syndication_analysis.py
plaid/model/beacon_report_syndication_created_webhook.py
plaid/model/beacon_report_syndication_list_request.py
plaid/model/beacon_report_syndication_list_response.py
plaid/model/beacon_report_syndication_original_report.py
plaid/model/beacon_report_type.py
plaid/model/beacon_report_updated_webhook.py
plaid/model/beacon_user_address.py
plaid/model/beacon_user_create_request.py
plaid/model/beacon_user_create_response.py
Expand Down Expand Up @@ -713,6 +717,7 @@ plaid/model/link_token_get_response.py
plaid/model/link_token_get_sessions_response.py
plaid/model/link_token_investments.py
plaid/model/link_token_investments_auth.py
plaid/model/link_token_transactions.py
plaid/model/link_user_delivery_status_webhook.py
plaid/model/loan.py
plaid/model/loan_account_subtype.py
Expand Down Expand Up @@ -1100,6 +1105,8 @@ plaid/model/statements_account.py
plaid/model/statements_download_request.py
plaid/model/statements_list_request.py
plaid/model/statements_list_response.py
plaid/model/statements_refresh_request.py
plaid/model/statements_refresh_response.py
plaid/model/statements_statement.py
plaid/model/status.py
plaid/model/statuses.py
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).
# 18.0.0
# 18.1.0
- Updating to OAS 2020-09-14_1.474.0

## OpenAPI Schema Changes
### 2020-09-14_1.474.0

- Added `statements/refresh` endpoint

### 2020-09-14_1.473.0

- Add Beacon webhooks

### 2020-09-14_1.472.0

- Change client library visibility of `options.transactions.days_requested` field for `/link/token/create` and `/sandbox/public_token/create`
- Add `options.days_requested` field to `/transactions/get` and `/transactions/sync`

### 2020-09-14_1.471.0

[Breaking change for Go client libraries] Make `products` field in `/institutions/search` request optional to fix https://github.com/plaid/plaid-ruby/issues/476


- Updating to OAS 2020-09-14_1.470.0

Expand Down
4 changes: 2 additions & 2 deletions plaid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""


__version__ = "18.0.0"
__version__ = "18.1.0"

# import ApiClient
from plaid.api_client import ApiClient
Expand Down
2 changes: 1 addition & 1 deletion plaid/api/plaid_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
4 changes: 2 additions & 2 deletions plaid/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'Plaid Python v18.0.0'
self.user_agent = 'Plaid Python v18.1.0'

def __enter__(self):
return self
Expand Down
6 changes: 3 additions & 3 deletions plaid/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -432,8 +432,8 @@ def to_debug_report(self):
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 2020-09-14_1.470.1\n"\
"SDK Package Version: 18.0.0".\
"Version of the API: 2020-09-14_1.474.0\n"\
"SDK Package Version: 18.1.0".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion plaid/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_assets_all_of.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_filter_subtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_filters_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity_all_of.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity_match_score.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity_match_score_all_of.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_ids_with_updated_identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_product_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_product_access_nullable.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_selection_cardinality.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_subtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_subtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/accounts_balance_get_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/accounts_balance_get_request_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/accounts_get_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/accounts_get_request_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/accounts_get_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/ach_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/action_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/activity_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/address.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501

The version of the OpenAPI document: 2020-09-14_1.470.1
The version of the OpenAPI document: 2020-09-14_1.474.0
Generated by: https://openapi-generator.tech
"""

Expand Down
Loading