Skip to content
Open
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 @@ -1857,6 +1857,9 @@ plaid/model/user_account_identity_address.py
plaid/model/user_account_identity_name.py
plaid/model/user_account_item.py
plaid/model/user_account_revoked_webhook.py
plaid/model/user_account_session_event.py
plaid/model/user_account_session_event_send_request.py
plaid/model/user_account_session_event_send_response.py
plaid/model/user_account_session_get_request.py
plaid/model/user_account_session_get_response.py
plaid/model/user_address.py
Expand All @@ -1870,10 +1873,14 @@ plaid/model/user_financial_data_refresh_response.py
plaid/model/user_get_request.py
plaid/model/user_get_response.py
plaid/model/user_id_number.py
plaid/model/user_identity_remove_request.py
plaid/model/user_identity_remove_response.py
plaid/model/user_items_associate_request.py
plaid/model/user_items_associate_response.py
plaid/model/user_items_get_request.py
plaid/model/user_items_get_response.py
plaid/model/user_items_remove_request.py
plaid/model/user_items_remove_response.py
plaid/model/user_permission_revoked_webhook.py
plaid/model/user_products_terminate_request.py
plaid/model/user_products_terminate_response.py
Expand Down
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).

# 38.1.0
- Updating to OAS 2020-09-14_1.680.8

## OpenAPI Schema Changes
### 2020-09-14_1.680.8
- Add `cra_plaid_credit_score` value to Products enum. Note that this value is deprecated and is added only to reflect current API behavior, as it is present in the supported products array returned by insititutions endpoints. `cra_plaid_credit_score` should not be used in any requests to `/link/token/create` and is planned to be removed from the API.

### 2020-09-14_1.680.7
- Add `environment` field to `ProtectUserEventWebhook`

### 2020-09-14_1.680.6
- Add 'investment_auth' as an available product in the request to `/partner/customer/create`

### 2020-09-14_1.680.6
- Add `201` response to `/user/create`

### 2020-09-14_1.680.5
- Add `/user/items/remove` endpoint

### 2020-09-14_1.680.4
- (hidden) Add `/user/identity/remove` endpoint to allow customers to explicitly purge identity data

### 2020-09-14_1.680.3
- Mark `is_investments_fallback_item` as an optional rather than required parameter in the response schema for `/processor/investments/holdings/get` endpoint (not yet currently used in Production by any customers), to achieve consistency with `/investments/holdings/get`.

### 2020-09-14_1.680.2
- Add `/user_account/session/event/send` endpoint for Layer customer event tracking

### 2020-09-14_1.680.1
- Update /verification/pdf/get endpoint request attribute from `report_type` to `report_requested`.

# 38.0.0
- Updating to OAS 2020-09-14_1.680.0
## Breaking changes in this version
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""


__version__ = "38.0.0"
__version__ = "38.1.0"

# import ApiClient
from plaid.api_client import ApiClient
Expand Down
435 changes: 429 additions & 6 deletions plaid/api/plaid_api.py

Large diffs are not rendered by default.

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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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 v38.0.0'
self.user_agent = 'Plaid Python v38.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -431,8 +431,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.680.0\n"\
"SDK Package Version: 38.0.0".\
"Version of the API: 2020-09-14_1.680.8\n"\
"SDK Package Version: 38.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/aamva_analysis.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/aamva_detailed_match_result.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/aamva_match_result.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_base_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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_holder_category.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity_document_upload.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity_document_upload_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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_ids_with_updated_auth.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_insights.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_verification_insights.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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
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.680.0
The version of the OpenAPI document: 2020-09-14_1.680.8
Generated by: https://openapi-generator.tech
"""

Expand Down
Loading