Skip to content
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

OpenAPI generated code at 2023-07-24T21:56:21Z #479

Merged
merged 1 commit into from
Jul 24, 2023
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
11 changes: 11 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,8 @@ plaid/model/identity_verification.py
plaid/model/identity_verification_create_request.py
plaid/model/identity_verification_create_request_user.py
plaid/model/identity_verification_create_response.py
plaid/model/identity_verification_document_address_response.py
plaid/model/identity_verification_document_country_code.py
plaid/model/identity_verification_get_request.py
plaid/model/identity_verification_get_response.py
plaid/model/identity_verification_list_request.py
Expand Down Expand Up @@ -457,6 +459,7 @@ plaid/model/income_summary_field_string.py
plaid/model/income_verification_create_request.py
plaid/model/income_verification_create_request_options.py
plaid/model/income_verification_create_response.py
plaid/model/income_verification_doc_parsing_config.py
plaid/model/income_verification_documents_download_request.py
plaid/model/income_verification_payroll_flow_type.py
plaid/model/income_verification_paystubs_get_request.py
Expand Down Expand Up @@ -829,6 +832,9 @@ plaid/model/processor_token_permissions_get_request.py
plaid/model/processor_token_permissions_get_response.py
plaid/model/processor_token_permissions_set_request.py
plaid/model/processor_token_permissions_set_response.py
plaid/model/processor_token_webhook_update.py
plaid/model/processor_token_webhook_update_request.py
plaid/model/processor_token_webhook_update_response.py
plaid/model/processor_transactions_get_request.py
plaid/model/processor_transactions_get_response.py
plaid/model/processor_transactions_recurring_get_request.py
Expand Down Expand Up @@ -980,6 +986,11 @@ plaid/model/source_uid.py
plaid/model/standalone_account_type.py
plaid/model/standalone_currency_code_list.py
plaid/model/standalone_investment_transaction_type.py
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_statement.py
plaid/model/status.py
plaid/model/statuses.py
plaid/model/strategy.py
Expand Down
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,57 @@
See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).

# 15.2.0
- Updating to OAS 2020-09-14_1.394.0

## OpenAPI Schema Changes
### 2020-09-14_1.394.0
- Made `/statements/list` and `/statements/download` APIs for Plaid's Statements PDF beta product available in client SDKs

### 2020-09-14_1.393.0
- Add `date_of_birth` and `address` fields to `documentary_verification.documents[].extracted_data` in the response of all of the identity verification endpoints:
- `identity_verification/create`
- `identity_verification/get`
- `identity_verification/list`
- `identity_verification/retry`

### 2020-09-14_1.392.4
- Update the following about identity/match name, phone number, email, and address score descriptions:
- Ensure consistent language across all fields
- Include score recommended "match" threshold for all fields.

### 2020-09-14_1.392.3
- Update the `async_update` field description.

### 2020-09-14_1.392.2

- Mark a few response fields as always present in the identity verification API:
- `selfie_check.selfies[].capture.image_url`
- `selfie_check.selfies[].capture.video_url`
- `risk_check.identity_abuse_signals`
- `risk_check.identity_abuse_signals.synthetic_identity.score`
- `risk_check.identity_abuse_signals.stolen_identity.score`

### 2020-09-14_1.392.1
- Documentation updates for the `/link/token/create` endpoint

### 2020-09-14_1.392.0
- Add `confidence_level` field to Counterparty and PersonalFinanceCategory for `/transactions/enrich`

### 2020-09-14_1.391.3
- Remove the `core_attributes` field in `signal_insights` of /transfer/authorization/create

### 2020-09-14_1.391.2
- Update the `pending_manual_verification` field's description in `/auth/get` response

### 2020-09-14_1.391.1
- Update the description of `/investments/transactions/get`

### 2020-09-14_1.391.0
- Update the `async_update` option to be visible in `/investments/transactions/get`

### 2020-09-14_1.390.1
- Update the `signal_insights` field's description in `/transfers/authorization/create` request

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


__version__ = "15.1.0"
__version__ = "15.2.0"

# import ApiClient
from plaid.api_client import ApiClient
Expand Down
Loading