Skip to content

Commit 527755e

Browse files
author
Jonathan Wenger
committed
Regenerate SDK with new module pattern
1 parent ee2d060 commit 527755e

Some content is hidden

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

46 files changed

+52
-52
lines changed

Avalara/SDK/api/EInvoicing/V1/data_input_fields_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 24.12.0
25+
@version 24.12.1
2626
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2727
"""
2828

@@ -44,7 +44,7 @@
4444
from typing_extensions import Annotated
4545
from Avalara.SDK.models.EInvoicing.V1.data_input_fields_response import DataInputFieldsResponse
4646
from Avalara.SDK.exceptions import ApiTypeError, ApiValueError, ApiException
47-
from Avalara.SDK.oauth_helper import avalara_retry_oauth
47+
from Avalara.SDK.oauth_helper.AvalaraSdkOauthUtils import avalara_retry_oauth
4848

4949
class DataInputFieldsApi(object):
5050

@@ -57,7 +57,7 @@ def __verify_api_client(self,api_client):
5757

5858
def __set_configuration(self, api_client):
5959
self.__verify_api_client(api_client)
60-
api_client.set_sdk_version("24.12.0")
60+
api_client.set_sdk_version("24.12.1")
6161
self.api_client = api_client
6262

6363
self.get_data_input_fields_endpoint = _Endpoint(

Avalara/SDK/api/EInvoicing/V1/documents_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 24.12.0
25+
@version 24.12.1
2626
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2727
"""
2828

@@ -63,7 +63,7 @@ def __verify_api_client(self,api_client):
6363

6464
def __set_configuration(self, api_client):
6565
self.__verify_api_client(api_client)
66-
api_client.set_sdk_version("24.12.0")
66+
api_client.set_sdk_version("24.12.1")
6767
self.api_client = api_client
6868

6969
self.download_document_endpoint = _Endpoint(

Avalara/SDK/api/EInvoicing/V1/interop_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 24.12.0
25+
@version 24.12.1
2626
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2727
"""
2828

@@ -44,7 +44,7 @@
4444
from typing_extensions import Annotated
4545
from Avalara.SDK.models.EInvoicing.V1.submit_interop_document202_response import SubmitInteropDocument202Response
4646
from Avalara.SDK.exceptions import ApiTypeError, ApiValueError, ApiException
47-
from Avalara.SDK.oauth_helper import avalara_retry_oauth
47+
from Avalara.SDK.oauth_helper.AvalaraSdkOauthUtils import avalara_retry_oauth
4848

4949
class InteropApi(object):
5050

@@ -57,7 +57,7 @@ def __verify_api_client(self,api_client):
5757

5858
def __set_configuration(self, api_client):
5959
self.__verify_api_client(api_client)
60-
api_client.set_sdk_version("24.12.0")
60+
api_client.set_sdk_version("24.12.1")
6161
self.api_client = api_client
6262

6363
self.submit_interop_document_endpoint = _Endpoint(

Avalara/SDK/api/EInvoicing/V1/mandates_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 24.12.0
25+
@version 24.12.1
2626
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2727
"""
2828

@@ -58,7 +58,7 @@ def __verify_api_client(self,api_client):
5858

5959
def __set_configuration(self, api_client):
6060
self.__verify_api_client(api_client)
61-
api_client.set_sdk_version("24.12.0")
61+
api_client.set_sdk_version("24.12.1")
6262
self.api_client = api_client
6363

6464
self.get_mandate_data_input_fields_endpoint = _Endpoint(

Avalara/SDK/api/EInvoicing/V1/trading_partners_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 24.12.0
25+
@version 24.12.1
2626
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2727
"""
2828

@@ -46,7 +46,7 @@
4646
from Avalara.SDK.models.EInvoicing.V1.batch_search_list_response import BatchSearchListResponse
4747
from Avalara.SDK.models.EInvoicing.V1.directory_search_response import DirectorySearchResponse
4848
from Avalara.SDK.exceptions import ApiTypeError, ApiValueError, ApiException
49-
from Avalara.SDK.oauth_helper import avalara_retry_oauth
49+
from Avalara.SDK.oauth_helper.AvalaraSdkOauthUtils import avalara_retry_oauth
5050

5151
class TradingPartnersApi(object):
5252

@@ -59,7 +59,7 @@ def __verify_api_client(self,api_client):
5959

6060
def __set_configuration(self, api_client):
6161
self.__verify_api_client(api_client)
62-
api_client.set_sdk_version("24.12.0")
62+
api_client.set_sdk_version("24.12.1")
6363
self.api_client = api_client
6464

6565
self.batch_search_participants_endpoint = _Endpoint(

Avalara/SDK/models/EInvoicing/V1/bad_download_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2525
@copyright 2022 Avalara, Inc.
2626
@license https://www.apache.org/licenses/LICENSE-2.0
27-
@version 24.12.0
27+
@version 24.12.1
2828
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2929
"""
3030

Avalara/SDK/models/EInvoicing/V1/bad_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2525
@copyright 2022 Avalara, Inc.
2626
@license https://www.apache.org/licenses/LICENSE-2.0
27-
@version 24.12.0
27+
@version 24.12.1
2828
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2929
"""
3030

Avalara/SDK/models/EInvoicing/V1/batch_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2525
@copyright 2022 Avalara, Inc.
2626
@license https://www.apache.org/licenses/LICENSE-2.0
27-
@version 24.12.0
27+
@version 24.12.1
2828
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2929
"""
3030

Avalara/SDK/models/EInvoicing/V1/batch_search_list_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2525
@copyright 2022 Avalara, Inc.
2626
@license https://www.apache.org/licenses/LICENSE-2.0
27-
@version 24.12.0
27+
@version 24.12.1
2828
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2929
"""
3030

Avalara/SDK/models/EInvoicing/V1/conditional_for_field.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@author Jonathan Wenger <jonathan.wenger@avalara.com>
2525
@copyright 2022 Avalara, Inc.
2626
@license https://www.apache.org/licenses/LICENSE-2.0
27-
@version 24.12.0
27+
@version 24.12.1
2828
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2929
"""
3030

0 commit comments

Comments
 (0)