Skip to content

plaid-python 8.0.0-beta2 #275

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 5, 2020
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/add_to_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Auto Assign to CLIB Project

on:
issues:
types: [opened]
pull_request:
types: [opened]
env:
MY_GITHUB_TOKEN: ${{ secrets.CLIB_AUTOMATION_TOKEN }}

jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to One Project
steps:
- name: Assign NEW issues and NEW pull requests to project 1
uses: srggrs/[email protected]
if: github.event.action == 'opened'
with:
project: 'https://github.com/orgs/plaid/projects/1'
column_name: 'Needs Investigation'
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 8.0.0-beta
## 8.0.0-beta2

Fix a regression in sending the `User-Agent` header.

## 8.0.0-beta1
This version represents a transition in how we maintain our external client libraries. We are now using an API spec written in `OpenAPI 3.0.0` and are running our definition file through [OpenAPITool's `python` generator](https://github.com/OpenAPITools/openapi-generator).

As part of this transition, we have created a wrapper around existing APIs to ease the burden of migrating to the new API client. The completely unwrapped version will be available next year as we have a few internal changes left to fully support it.
Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/api/plaid_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
4 changes: 2 additions & 2 deletions plaid/generated_plaid/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -373,7 +373,7 @@ 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.0.10\n"\
"Version of the API: 2020-09-14_1.0.11\n"\
"SDK Package Version: 1.0.0".\
format(env=sys.platform, pyversion=sys.version)

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
6 changes: 3 additions & 3 deletions plaid/generated_plaid/models/account_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -265,7 +265,7 @@ def subtype(self, subtype):
def verification_status(self):
"""Gets the verification_status of this AccountAssets. # noqa: E501

The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. Possible values are: `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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501
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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501

:return: The verification_status of this AccountAssets. # noqa: E501
:rtype: str
Expand All @@ -276,7 +276,7 @@ def verification_status(self):
def verification_status(self, verification_status):
"""Sets the verification_status of this AccountAssets.

The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. Possible values are: `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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501
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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501

:param verification_status: The verification_status of this AccountAssets. # noqa: E501
:type verification_status: str
Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/account_assets_all_of.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/account_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
6 changes: 3 additions & 3 deletions plaid/generated_plaid/models/account_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -248,7 +248,7 @@ def subtype(self, subtype):
def verification_status(self):
"""Gets the verification_status of this AccountBase. # noqa: E501

The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. Possible values are: `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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501
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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501

:return: The verification_status of this AccountBase. # noqa: E501
:rtype: str
Expand All @@ -259,7 +259,7 @@ def verification_status(self):
def verification_status(self, verification_status):
"""Sets the verification_status of this AccountBase.

The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. Possible values are: `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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501
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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501

:param verification_status: The verification_status of this AccountBase. # noqa: E501
:type verification_status: str
Expand Down
6 changes: 3 additions & 3 deletions plaid/generated_plaid/models/account_identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -253,7 +253,7 @@ def subtype(self, subtype):
def verification_status(self):
"""Gets the verification_status of this AccountIdentity. # noqa: E501

The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. Possible values are: `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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501
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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501

:return: The verification_status of this AccountIdentity. # noqa: E501
:rtype: str
Expand All @@ -264,7 +264,7 @@ def verification_status(self):
def verification_status(self, verification_status):
"""Sets the verification_status of this AccountIdentity.

The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. Possible values are: `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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501
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 two amounts. `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 microdeposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. # noqa: E501

:param verification_status: The verification_status of this AccountIdentity. # noqa: E501
:type verification_status: str
Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/account_identity_all_of.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/account_subtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/account_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/accounts_get_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/accounts_get_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/generated_plaid/models/ach_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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.0.10
The version of the OpenAPI document: 2020-09-14_1.0.11
Generated by: https://openapi-generator.tech
"""

Expand Down
Loading