Skip to content

Commit

Permalink
Merge pull request #498 from plaid/generated_20231130T225736Z
Browse files Browse the repository at this point in the history
OpenAPI generated code at 2023-11-30T22:57:36Z
  • Loading branch information
aarohmankad authored Nov 30, 2023
2 parents 42232bb + 408ef3c commit 44efc61
Show file tree
Hide file tree
Showing 1,441 changed files with 2,797 additions and 1,465 deletions.
4 changes: 4 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ plaid/model/beacon_report.py
plaid/model/beacon_report_create_request.py
plaid/model/beacon_report_create_response.py
plaid/model/beacon_report_created_webhook.py
plaid/model/beacon_report_get_request.py
plaid/model/beacon_report_get_response.py
plaid/model/beacon_report_list_request.py
plaid/model/beacon_report_list_response.py
plaid/model/beacon_report_syndication.py
Expand Down Expand Up @@ -481,6 +483,7 @@ plaid/model/holding.py
plaid/model/holdings_default_update_webhook.py
plaid/model/holdings_override.py
plaid/model/hosted_link_delivery_method.py
plaid/model/hosted_mmd_verification_webhook.py
plaid/model/id_number_type.py
plaid/model/identity_default_update_webhook.py
plaid/model/identity_get_request.py
Expand Down Expand Up @@ -683,6 +686,7 @@ plaid/model/link_session_success_metadata_account.py
plaid/model/link_session_success_metadata_institution.py
plaid/model/link_session_success_metadata_transfer_status.py
plaid/model/link_token_account_filters.py
plaid/model/link_token_create_card_switch.py
plaid/model/link_token_create_credit_filter.py
plaid/model/link_token_create_depository_filter.py
plaid/model/link_token_create_hosted_link.py
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
See full changelog for the OpenAPI Schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).

# 18.2.0
- Updating to OAS 2020-09-14_1.474.3

## OpenAPI Schema Changes
### 2020-09-14_1.474.3
- Internal changes only

### 2020-09-14_1.474.2
- Deprecate `credit_funds_source` in `/transfer/authorization/create` request

### 2020-09-14_1.474.1

- Added `identity_match` to Products schema object

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


__version__ = "18.1.0"
__version__ = "18.2.0"

# import ApiClient
from plaid.api_client import ApiClient
Expand Down
141 changes: 140 additions & 1 deletion plaid/api/plaid_api.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down Expand Up @@ -70,6 +70,8 @@
from plaid.model.base_report_get_response import BaseReportGetResponse
from plaid.model.beacon_report_create_request import BeaconReportCreateRequest
from plaid.model.beacon_report_create_response import BeaconReportCreateResponse
from plaid.model.beacon_report_get_request import BeaconReportGetRequest
from plaid.model.beacon_report_get_response import BeaconReportGetResponse
from plaid.model.beacon_report_list_request import BeaconReportListRequest
from plaid.model.beacon_report_list_response import BeaconReportListResponse
from plaid.model.beacon_report_syndication_list_request import BeaconReportSyndicationListRequest
Expand Down Expand Up @@ -1861,6 +1863,60 @@ def __init__(self, api_client=None):
},
api_client=api_client
)
self.beacon_report_get_endpoint = _Endpoint(
settings={
'response_type': (BeaconReportGetResponse,),
'auth': [
'clientId',
'plaidVersion',
'secret'
],
'endpoint_path': '/beacon/report/get',
'operation_id': 'beacon_report_get',
'http_method': 'POST',
'servers': None,
},
params_map={
'all': [
'beacon_report_get_request',
],
'required': [
'beacon_report_get_request',
],
'nullable': [
],
'enum': [
],
'validation': [
]
},
root_map={
'validations': {
},
'allowed_values': {
},
'openapi_types': {
'beacon_report_get_request':
(BeaconReportGetRequest,),
},
'attribute_map': {
},
'location_map': {
'beacon_report_get_request': 'body',
},
'collection_format_map': {
}
},
headers_map={
'accept': [
'application/json'
],
'content_type': [
'application/json'
]
},
api_client=api_client
)
self.beacon_report_list_endpoint = _Endpoint(
settings={
'response_type': (BeaconReportListResponse,),
Expand Down Expand Up @@ -15760,6 +15816,89 @@ def beacon_report_create(
beacon_report_create_request
return self.beacon_report_create_endpoint.call_with_http_info(**kwargs)

def beacon_report_get(
self,
beacon_report_get_request,
**kwargs
):
"""Get a Beacon Report # noqa: E501

Returns a Beacon report for a given Beacon report id. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

>>> thread = api.beacon_report_get(beacon_report_get_request, async_req=True)
>>> result = thread.get()

Args:
beacon_report_get_request (BeaconReportGetRequest):

Keyword Args:
_return_http_data_only (bool): response data without head status
code and headers. Default is True.
_preload_content (bool): if False, the urllib3.HTTPResponse object
will be returned without reading/decoding response data.
Default is True.
_request_timeout (int/float/tuple): timeout setting for this request. If
one number provided, it will be total request timeout. It can also
be a pair (tuple) of (connection, read) timeouts.
Default is None.
_check_input_type (bool): specifies if type checking
should be done one the data sent to the server.
Default is True.
_check_return_type (bool): specifies if type checking
should be done one the data received from the server.
Default is True.
_spec_property_naming (bool): True if the variable names in the input data
are serialized names, as specified in the OpenAPI document.
False if the variable names in the input data
are pythonic names, e.g. snake case (default)
_content_type (str/None): force body content-type.
Default is None and content-type will be predicted by allowed
content-types and body.
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously

Returns:
BeaconReportGetResponse
If the method is called asynchronously, returns the request
thread.
"""
kwargs['async_req'] = kwargs.get(
'async_req', False
)
kwargs['_return_http_data_only'] = kwargs.get(
'_return_http_data_only', True
)
kwargs['_preload_content'] = kwargs.get(
'_preload_content', True
)
kwargs['_request_timeout'] = kwargs.get(
'_request_timeout', None
)
kwargs['_check_input_type'] = kwargs.get(
'_check_input_type', True
)
kwargs['_check_return_type'] = kwargs.get(
'_check_return_type', True
)
kwargs['_spec_property_naming'] = kwargs.get(
'_spec_property_naming', False
)
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['beacon_report_get_request'] = \
beacon_report_get_request
return self.beacon_report_get_endpoint.call_with_http_info(**kwargs)

def beacon_report_list(
self,
beacon_report_list_request,
Expand Down
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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
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 v18.1.0'
self.user_agent = 'Plaid Python v18.2.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
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.474.0\n"\
"SDK Package Version: 18.1.0".\
"Version of the API: 2020-09-14_1.474.3\n"\
"SDK Package Version: 18.2.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_assets_all_of.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion 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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity_all_of.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity_match_score.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_identity_match_score_all_of.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down
2 changes: 1 addition & 1 deletion plaid/model/account_ids_with_updated_identity.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.474.0
The version of the OpenAPI document: 2020-09-14_1.474.3
Generated by: https://openapi-generator.tech
"""

Expand Down
Loading

0 comments on commit 44efc61

Please sign in to comment.