Skip to content

Commit ab3a0f2

Browse files
authored
Merge pull request #485 from plaid/generated_20230821T165250Z
OpenAPI generated code at 2023-08-21T16:52:50Z
2 parents 9d37a12 + ed9a1bc commit ab3a0f2

File tree

1,358 files changed

+1722
-1397
lines changed

Some content is hidden

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

1,358 files changed

+1722
-1397
lines changed

.openapi-generator/FILES

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ plaid/model/base_report_item.py
152152
plaid/model/base_report_longest_gap_insights.py
153153
plaid/model/base_report_number_flow_insights.py
154154
plaid/model/base_report_transaction.py
155-
plaid/model/base_report_transaction_type.py
156155
plaid/model/base_reports_error_webhook.py
157156
plaid/model/base_reports_product_ready_webhook.py
158157
plaid/model/beacon_audit_trail.py
@@ -185,6 +184,7 @@ plaid/model/client_user_id.py
185184
plaid/model/client_user_id_nullable.py
186185
plaid/model/connected_application.py
187186
plaid/model/consent_payment_idempotency_key.py
187+
plaid/model/consumer_report_permissible_purpose.py
188188
plaid/model/consumer_report_user_identity.py
189189
plaid/model/counterparty.py
190190
plaid/model/counterparty_type.py
@@ -927,6 +927,7 @@ plaid/model/recipient_bacs.py
927927
plaid/model/recipient_bacs_nullable.py
928928
plaid/model/recurrence.py
929929
plaid/model/recurring_cancelled_webhook.py
930+
plaid/model/recurring_frequency.py
930931
plaid/model/recurring_new_transfer_webhook.py
931932
plaid/model/recurring_transaction_frequency.py
932933
plaid/model/recurring_transactions_update_webhook.py

CHANGELOG.md

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

3+
# 15.5.0
4+
- Updating to OAS 2020-09-14_1.419.0
5+
6+
## OpenAPI Schema Changes
7+
### 2020-09-14_1.419.0
8+
9+
- Update `/signal/decision/report` description
10+
- Overwriting `initiated` field is now supported and no longer returns an `INVALID_FIELD` error
11+
12+
### 2020-09-14_1.418.0
13+
14+
- Add `frequency` to `/transactions/enrich`
15+
16+
### 2020-09-14_1.417.0
17+
18+
- Remove `category`, `category_id`, `transaction_type`, `name`, `payment_meta` fields from Base Report insights
19+
20+
### 2020-09-14_1.416.0
21+
22+
- Add `card_switch` to `/link/token/create`
23+
24+
### 2020-09-14_1.415.0
25+
26+
- Add `consumer_report_permissible_purpose` to `link/token/create`
27+
28+
### 2020-09-14_1.414.0
29+
30+
- Update `currency` on `payment/reverse` and `amount_refunded` on `payment/get`
31+
332
# 15.4.0
433
- Updating to OAS 2020-09-14_1.413.0
534

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.413.0
8+
The version of the OpenAPI document: 2020-09-14_1.419.0
99
Generated by: https://openapi-generator.tech
1010
"""
1111

1212

13-
__version__ = "15.4.0"
13+
__version__ = "15.5.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.413.0
6+
The version of the OpenAPI document: 2020-09-14_1.419.0
77
Generated by: https://openapi-generator.tech
88
"""
99

@@ -22728,7 +22728,7 @@ def processor_signal_decision_report(
2272822728
):
2272922729
"""Report whether you initiated an ACH transaction # noqa: E501
2273022730

22731-
After calling `/processor/signal/evaluate`, call `/processor/signal/decision/report` to report whether the transaction was initiated. This endpoint will return an [`INVALID_FIELD`](/docs/errors/invalid-request/#invalid_field) error if called a second time with a different value for `initiated`. # noqa: E501
22731+
After calling `/processor/signal/evaluate`, call `/processor/signal/decision/report` to report whether the transaction was initiated. # noqa: E501
2273222732
This method makes a synchronous HTTP request by default. To make an
2273322733
asynchronous HTTP request, please pass async_req=True
2273422734

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.413.0
6+
The version of the OpenAPI document: 2020-09-14_1.419.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.4.0'
79+
self.user_agent = 'Plaid Python v15.5.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.413.0
6+
The version of the OpenAPI document: 2020-09-14_1.419.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.413.0\n"\
436-
"SDK Package Version: 15.4.0".\
435+
"Version of the API: 2020-09-14_1.419.0\n"\
436+
"SDK Package Version: 15.5.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.413.0
6+
The version of the OpenAPI document: 2020-09-14_1.419.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.413.0
6+
The version of the OpenAPI document: 2020-09-14_1.419.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.413.0
6+
The version of the OpenAPI document: 2020-09-14_1.419.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.413.0
6+
The version of the OpenAPI document: 2020-09-14_1.419.0
77
Generated by: https://openapi-generator.tech
88
"""
99

0 commit comments

Comments
 (0)