Skip to content

Commit

Permalink
21.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjayakar authored May 4, 2024
2 parents db8550b + 6791b53 commit e12c4ab
Show file tree
Hide file tree
Showing 1,555 changed files with 4,566 additions and 1,606 deletions.
9 changes: 9 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ plaid/model/client_user_id.py
plaid/model/client_user_id_nullable.py
plaid/model/connected_application.py
plaid/model/consent_payment_idempotency_key.py
plaid/model/consumer_report_pdf_get_request.py
plaid/model/consumer_report_permissible_purpose.py
plaid/model/consumer_report_user_identity.py
plaid/model/counterparty.py
Expand Down Expand Up @@ -741,10 +742,16 @@ plaid/model/link_o_auth_correlation_id_exchange_response.py
plaid/model/link_profile_eligibility_check_request.py
plaid/model/link_profile_eligibility_check_response.py
plaid/model/link_profile_eligibility_check_user.py
plaid/model/link_session_bank_employment_result.py
plaid/model/link_session_bank_income_result.py
plaid/model/link_session_cra_item_add_result.py
plaid/model/link_session_exit.py
plaid/model/link_session_exit_metadata.py
plaid/model/link_session_exit_metadata_institution.py
plaid/model/link_session_finished_webhook.py
plaid/model/link_session_item_add_result.py
plaid/model/link_session_payroll_income_result.py
plaid/model/link_session_results.py
plaid/model/link_session_success.py
plaid/model/link_session_success_metadata.py
plaid/model/link_session_success_metadata_account.py
Expand Down Expand Up @@ -1280,6 +1287,8 @@ plaid/model/transactions_user_insights_get_response.py
plaid/model/transfer.py
plaid/model/transfer_ach_network.py
plaid/model/transfer_authorization.py
plaid/model/transfer_authorization_cancel_request.py
plaid/model/transfer_authorization_cancel_response.py
plaid/model/transfer_authorization_create_request.py
plaid/model/transfer_authorization_create_response.py
plaid/model/transfer_authorization_decision.py
Expand Down
45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).

# 21.1.0
- Updating to OAS 2020-09-14_1.514.1

## OpenAPI Schema Changes
### 2020-09-14_1.514.1
- Update `risk_profile_key`and `RiskProfile` description

### 2020-09-14_1.514.0
- Added `transfer/authorization/cancel` endpoint

### 2020-09-14_1.513.0
- Added `consumer_report/pdf/get` endpoint

### 2020-09-14_1.512.0
- Added support for address and date of birth in `/payment_initiation/payment/reverse` request.

### 2020-09-14_1.511.0
- Added `user_token` to `link/token/get` response metadata
- Internal changes

### 2020-09-14_1.510.2
- Added `include_insights` to `/credit/relay/get` request
-
### 2020-09-14_1.510.1
- Add `database_insights_pending` as a potential enum value to `LinkDeliveryVerificationStatus` and `LinkSessionSuccessMetadataAccount.VerificationStatus`.
- Remove `database_insights_pass`, `database_insights_pass_with_caution` and `database_insights_fail` as potential values from `LinkDeliveryVerificationStatus` and `LinkSessionSuccessMetadataAccount.VerificationStatus`

### 2020-09-14_1.510.0
- Internal changes only

### 2020-09-14_1.509.4
- Internal changes only

### 2020-09-14_1.509.3
- Update description of transfer authorization decision code `MANUALLY_VERIFIED_ITEM`

### 2020-09-14_1.509.2
- Fixes to `RemovedTransaction` object definition: set `additionalProperties` explicitly to true and list `account_id` and `transaction_id` as `required`.

### 2020-09-14_1.509.1
- add `SMS_MICRODEPOSITS_VERIFICATION` to the `webhook_code` field of `/sandbox/item/fire_webhook`

### 2020-09-14_1.509.0
- Add `supports_payment_consents` to institution's `payment_initiation_metadata`.

# 21.0.0
- Updating to OAS 2020-09-14_1.508.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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
Generated by: https://openapi-generator.tech
"""


__version__ = "21.0.0"
__version__ = "21.1.0"

# import ApiClient
from plaid.api_client import ApiClient
Expand Down
293 changes: 285 additions & 8 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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
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 v21.0.0'
self.user_agent = 'Plaid Python v21.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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
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.508.0\n"\
"SDK Package Version: 21.0.0".\
"Version of the API: 2020-09-14_1.514.1\n"\
"SDK Package Version: 21.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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
Generated by: https://openapi-generator.tech
"""

Expand Down
6 changes: 3 additions & 3 deletions 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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -185,7 +185,7 @@ def _from_openapi_data(cls, account_id, balances, mask, name, official_name, typ
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501
verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501
verification_insights (AccountVerificationInsights): [optional] # noqa: E501
persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501
"""
Expand Down Expand Up @@ -289,7 +289,7 @@ def __init__(self, account_id, balances, mask, name, official_name, type, subtyp
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. Note: Database Match is currently a beta feature, please contact your account manager for more information. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501
verification_status (str): The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the micro-deposit. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. `database_matched`: The Item has successfully been verified using Plaid's data sources. `database_insights_pass`: The Item's ACH numbers have been verified using Plaid's data sources and have strong signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_pass_with_caution`: The Item's ACH numbers have been verified using Plaid's data sources and have some signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. `database_insights_fail`: The Item's ACH numbers have been verified using Plaid's data sources and have signal for being invalid and/or have no signal for being valid. Note: Database Insights is currently a beta feature, please contact your account manager for more information. . [optional] # noqa: E501
verification_insights (AccountVerificationInsights): [optional] # noqa: E501
persistent_account_id (str): A unique and persistent identifier for accounts that can be used to trace multiple instances of the same account across different Items for depository accounts. This is currently only supported for Chase Items. Because Chase accounts have a different account number each time they are linked, this field may be used instead of the account number to uniquely identify a Chase account across multiple Items for payments use cases, helping to reduce duplicate Items or attempted fraud. In Sandbox, this field may be populated for any account; in Production and Development, it will only be populated for Chase accounts.. [optional] # noqa: E501
"""
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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
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.508.0
The version of the OpenAPI document: 2020-09-14_1.514.1
Generated by: https://openapi-generator.tech
"""

Expand Down
Loading

0 comments on commit e12c4ab

Please sign in to comment.