Skip to content

Commit de78c14

Browse files
authored
Merge pull request #478 from plaid/generated_20230718T214331Z
OpenAPI generated code at 2023-07-18T21:43:31Z
2 parents 421ed12 + 38f9ea2 commit de78c14

1,276 files changed

Lines changed: 3829 additions & 1349 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.openapi-generator/FILES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,7 @@ plaid/model/investments_auth_get_request_options.py
510510
plaid/model/investments_auth_get_response.py
511511
plaid/model/investments_auth_owner.py
512512
plaid/model/investments_default_update_webhook.py
513+
plaid/model/investments_historical_update_webhook.py
513514
plaid/model/investments_holdings_get_request.py
514515
plaid/model/investments_holdings_get_response.py
515516
plaid/model/investments_refresh_request.py
@@ -804,11 +805,15 @@ plaid/model/processor_balance_get_request_options.py
804805
plaid/model/processor_balance_get_response.py
805806
plaid/model/processor_bank_transfer_create_request.py
806807
plaid/model/processor_bank_transfer_create_response.py
808+
plaid/model/processor_default_update_webhook.py
809+
plaid/model/processor_historical_update_webhook.py
807810
plaid/model/processor_identity_get_request.py
808811
plaid/model/processor_identity_get_response.py
809812
plaid/model/processor_identity_match_request.py
810813
plaid/model/processor_identity_match_response.py
814+
plaid/model/processor_initial_update_webhook.py
811815
plaid/model/processor_number.py
816+
plaid/model/processor_recurring_transactions_update_webhook.py
812817
plaid/model/processor_signal_decision_report_request.py
813818
plaid/model/processor_signal_decision_report_response.py
814819
plaid/model/processor_signal_evaluate_request.py
@@ -817,6 +822,7 @@ plaid/model/processor_signal_return_report_request.py
817822
plaid/model/processor_signal_return_report_response.py
818823
plaid/model/processor_stripe_bank_account_token_create_request.py
819824
plaid/model/processor_stripe_bank_account_token_create_response.py
825+
plaid/model/processor_sync_updates_available_webhook.py
820826
plaid/model/processor_token_create_request.py
821827
plaid/model/processor_token_create_response.py
822828
plaid/model/processor_token_permissions_get_request.py
@@ -829,6 +835,7 @@ plaid/model/processor_transactions_recurring_get_request.py
829835
plaid/model/processor_transactions_recurring_get_response.py
830836
plaid/model/processor_transactions_refresh_request.py
831837
plaid/model/processor_transactions_refresh_response.py
838+
plaid/model/processor_transactions_removed_webhook.py
832839
plaid/model/processor_transactions_sync_request.py
833840
plaid/model/processor_transactions_sync_response.py
834841
plaid/model/product_access.py
@@ -980,6 +987,7 @@ plaid/model/student_loan.py
980987
plaid/model/student_loan_repayment_model.py
981988
plaid/model/student_loan_status.py
982989
plaid/model/student_repayment_plan.py
990+
plaid/model/sweep_status.py
983991
plaid/model/sync_updates_available_webhook.py
984992
plaid/model/taxform.py
985993
plaid/model/taxpayer_id.py

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).
22

3+
# 15.1.0
4+
- Updating to OAS 2020-09-14_1.390.0
5+
6+
## OpenAPI Schema Changes
7+
### 2020-09-14_1.390.0
8+
- Add `transfer_id` field to `/transfers/sweep/list` request
9+
10+
### 2020-09-14_1.389.0
11+
- Add `InvestmentsHistoricalUpdateWebhook`, a `HISTORICAL_UPDATE` webhook of type `INVESTMENTS_TRANSACTIONS`.
12+
13+
### 2020-09-14_1.388.1
14+
- Add `status` field to a sweep object. Add `status` field to `/transfers/sweep/list` request
15+
16+
### 2020-09-14_1.388.0
17+
- [Breaking] Remove `asset_report_token` as required field in `/asset_report/get` and mark as nullable
18+
19+
### 2020-09-14_1.387.1
20+
- Allow empty `mask` on the `meta` field of overridden accounts in the sandbox custom user configuration object schema.
21+
22+
### 2020-09-14_1.387.0
23+
- Mark `region` and `postal_code` fields as nullable in `/identity_verification/create`, `/identity_verification/retry`, and `/link/token/create`
24+
25+
### 2020-09-14_1.386.0
26+
- Add payloads for processor Transactions webhooks.
27+
28+
### 2020-09-14_1.385.2
29+
- Mark `next_origination_date` nullable
30+
331
# 15.0.0
432
- Updating to OAS 2020-09-14_1.385.1
533

plaid/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
66
The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501
77
8-
The version of the OpenAPI document: 2020-09-14_1.385.1
8+
The version of the OpenAPI document: 2020-09-14_1.390.0
99
Generated by: https://openapi-generator.tech
1010
"""
1111

1212

13-
__version__ = "15.0.0"
13+
__version__ = "15.1.0"
1414

1515
# import ApiClient
1616
from plaid.api_client import ApiClient

plaid/api/plaid_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

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

6-
The version of the OpenAPI document: 2020-09-14_1.385.1
6+
The version of the OpenAPI document: 2020-09-14_1.390.0
77
Generated by: https://openapi-generator.tech
88
"""
99

@@ -12680,7 +12680,7 @@ def asset_report_create(
1268012680
):
1268112681
"""Create an Asset Report # noqa: E501
1268212682

12683-
The `/asset_report/create` endpoint initiates the process of creating an Asset Report, which can then be retrieved by passing the `asset_report_token` return value to the `/asset_report/get` or `/asset_report/pdf/get` endpoints. The Asset Report takes some time to be created and is not available immediately after calling `/asset_report/create`. When the Asset Report is ready to be retrieved using `/asset_report/get` or `/asset_report/pdf/get`, Plaid will fire a `PRODUCT_READY` webhook. For full details of the webhook schema, see [Asset Report webhooks](https://plaid.com/docs/api/products/assets/#webhooks). The `/asset_report/create` endpoint creates an Asset Report at a moment in time. Asset Reports are immutable. To get an updated Asset Report, use the `/asset_report/refresh` endpoint. # noqa: E501
12683+
The `/asset_report/create` endpoint initiates the process of creating an Asset Report, which can then be retrieved by passing the `asset_report_token` return value to the `/asset_report/get` or `/asset_report/pdf/get` endpoints. The Asset Report takes some time to be created and is not available immediately after calling `/asset_report/create`. The exact amount of time to create the report will vary depending on how many days of history are requested and will typically range from a few seconds to about one minute. When the Asset Report is ready to be retrieved using `/asset_report/get` or `/asset_report/pdf/get`, Plaid will fire a `PRODUCT_READY` webhook. For full details of the webhook schema, see [Asset Report webhooks](https://plaid.com/docs/api/products/assets/#webhooks). The `/asset_report/create` endpoint creates an Asset Report at a moment in time. Asset Reports are immutable. To get an updated Asset Report, use the `/asset_report/refresh` endpoint. # noqa: E501
1268412684
This method makes a synchronous HTTP request by default. To make an
1268512685
asynchronous HTTP request, please pass async_req=True
1268612686

plaid/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501
55
6-
The version of the OpenAPI document: 2020-09-14_1.385.1
6+
The version of the OpenAPI document: 2020-09-14_1.390.0
77
Generated by: https://openapi-generator.tech
88
"""
99

@@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7676
self.default_headers[header_name] = header_value
7777
self.cookie = cookie
7878
# Set default User-Agent.
79-
self.user_agent = 'Plaid Python v15.0.0'
79+
self.user_agent = 'Plaid Python v15.1.0'
8080

8181
def __enter__(self):
8282
return self

plaid/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501
55
6-
The version of the OpenAPI document: 2020-09-14_1.385.1
6+
The version of the OpenAPI document: 2020-09-14_1.390.0
77
Generated by: https://openapi-generator.tech
88
"""
99

@@ -432,8 +432,8 @@ def to_debug_report(self):
432432
return "Python SDK Debug Report:\n"\
433433
"OS: {env}\n"\
434434
"Python Version: {pyversion}\n"\
435-
"Version of the API: 2020-09-14_1.385.1\n"\
436-
"SDK Package Version: 15.0.0".\
435+
"Version of the API: 2020-09-14_1.390.0\n"\
436+
"SDK Package Version: 15.1.0".\
437437
format(env=sys.platform, pyversion=sys.version)
438438

439439
def get_host_settings(self):

plaid/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501
55
6-
The version of the OpenAPI document: 2020-09-14_1.385.1
6+
The version of the OpenAPI document: 2020-09-14_1.390.0
77
Generated by: https://openapi-generator.tech
88
"""
99

plaid/model/account_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501
55
6-
The version of the OpenAPI document: 2020-09-14_1.385.1
6+
The version of the OpenAPI document: 2020-09-14_1.390.0
77
Generated by: https://openapi-generator.tech
88
"""
99

plaid/model/account_assets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501
55
6-
The version of the OpenAPI document: 2020-09-14_1.385.1
6+
The version of the OpenAPI document: 2020-09-14_1.390.0
77
Generated by: https://openapi-generator.tech
88
"""
99

plaid/model/account_assets_all_of.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The Plaid REST API. Please see https://plaid.com/docs/api for more details. # noqa: E501
55
6-
The version of the OpenAPI document: 2020-09-14_1.385.1
6+
The version of the OpenAPI document: 2020-09-14_1.390.0
77
Generated by: https://openapi-generator.tech
88
"""
99

0 commit comments

Comments
 (0)