Skip to content

Commit b0de571

Browse files
Merge pull request #9 from avadev/25.8.2
25.8.2
2 parents 2b1993d + ab4ae1d commit b0de571

File tree

281 files changed

+6512
-999
lines changed

Some content is hidden

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

281 files changed

+6512
-999
lines changed

Avalara/SDK/api/A1099/V2/companies_w9_api.py

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

@@ -61,7 +61,7 @@ def __verify_api_client(self,api_client):
6161

6262
def __set_configuration(self, api_client):
6363
self.__verify_api_client(api_client)
64-
api_client.set_sdk_version("25.8.1")
64+
api_client.set_sdk_version("25.8.2")
6565
self.api_client = api_client
6666

6767
self.create_company_endpoint = _Endpoint(

Avalara/SDK/api/A1099/V2/forms1099_api.py

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

@@ -65,7 +65,7 @@ def __verify_api_client(self,api_client):
6565

6666
def __set_configuration(self, api_client):
6767
self.__verify_api_client(api_client)
68-
api_client.set_sdk_version("25.8.1")
68+
api_client.set_sdk_version("25.8.2")
6969
self.api_client = api_client
7070

7171
self.bulk_upsert1099_forms_endpoint = _Endpoint(

Avalara/SDK/api/A1099/V2/forms_w9_api.py

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <[email protected]>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 25.8.1
25+
@version 25.8.2
2626
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2727
"""
2828

@@ -46,7 +46,7 @@
4646
from Avalara.SDK.models.A1099.V2.create_w9_form201_response import CreateW9Form201Response
4747
from Avalara.SDK.models.A1099.V2.create_w9_form_request import CreateW9FormRequest
4848
from Avalara.SDK.models.A1099.V2.iw9_form_data_models_one_of import IW9FormDataModelsOneOf
49-
from Avalara.SDK.models.A1099.V2.paginated_w9_forms_model import PaginatedW9FormsModel
49+
from Avalara.SDK.models.A1099.V2.paginated_query_result_model_w9_form_base_response import PaginatedQueryResultModelW9FormBaseResponse
5050
from Avalara.SDK.exceptions import ApiTypeError, ApiValueError, ApiException
5151
from Avalara.SDK.oauth_helper.AvalaraSdkOauthUtils import avalara_retry_oauth
5252

@@ -61,7 +61,7 @@ def __verify_api_client(self,api_client):
6161

6262
def __set_configuration(self, api_client):
6363
self.__verify_api_client(api_client)
64-
api_client.set_sdk_version("25.8.1")
64+
api_client.set_sdk_version("25.8.2")
6565
self.api_client = api_client
6666

6767
self.create_w9_form_endpoint = _Endpoint(
@@ -278,7 +278,7 @@ def __set_configuration(self, api_client):
278278
)
279279
self.list_w9_forms_endpoint = _Endpoint(
280280
settings={
281-
'response_type': (PaginatedW9FormsModel,),
281+
'response_type': (PaginatedQueryResultModelW9FormBaseResponse,),
282282
'auth': [
283283
'bearer'
284284
],
@@ -295,6 +295,7 @@ def __set_configuration(self, api_client):
295295
'skip',
296296
'order_by',
297297
'count',
298+
'count_only',
298299
'x_correlation_id',
299300
'x_avalara_client',
300301
],
@@ -326,6 +327,8 @@ def __set_configuration(self, api_client):
326327
(str,),
327328
'count':
328329
(bool,),
330+
'count_only':
331+
(bool,),
329332
'x_correlation_id':
330333
(str,),
331334
'x_avalara_client':
@@ -338,6 +341,7 @@ def __set_configuration(self, api_client):
338341
'skip': '$skip',
339342
'order_by': '$orderBy',
340343
'count': 'count',
344+
'count_only': 'countOnly',
341345
'x_correlation_id': 'X-Correlation-Id',
342346
'x_avalara_client': 'X-Avalara-Client',
343347
},
@@ -348,6 +352,7 @@ def __set_configuration(self, api_client):
348352
'skip': 'query',
349353
'order_by': 'query',
350354
'count': 'query',
355+
'count_only': 'query',
351356
'x_correlation_id': 'header',
352357
'x_avalara_client': 'header',
353358
},
@@ -813,7 +818,7 @@ def list_w9_forms(
813818
):
814819
"""List W9/W4/W8 forms # noqa: E501
815820
816-
List W9/W4/W8 forms. # noqa: E501
821+
List W9/W4/W8 forms. Filterable/Sortable fields are: \"companyId\", \"type\", \"displayName\", \"entryStatus\", \"email\", \"archived\" and \"referenceId\". # noqa: E501
817822
This method makes a synchronous HTTP request by default. To make an
818823
asynchronous HTTP request, please pass async_req=True
819824
@@ -824,11 +829,12 @@ def list_w9_forms(
824829
avalara_version (str): API version
825830
826831
Keyword Args:
827-
filter (str): A filter statement to identify specific records to retrieve. For more information on filtering, see <a href=\"https://developer.avalara.com/avatax/filtering-in-rest/\">Filtering in REST</a>.. [optional]
828-
top (int): If nonzero, return no more than this number of results. Used with skip to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records.. [optional] if omitted the server will use the default value of 10
829-
skip (int): If nonzero, skip this number of results before returning data. Used with top to provide pagination for large datasets.. [optional] if omitted the server will use the default value of 0
832+
filter (str): A filter statement to identify specific records to retrieve. For more information on filtering, see <a href=\"https://developer.avalara.com/avatax/filtering-in-rest/\">Filtering in REST</a>.. [optional]
833+
top (int): If zero or greater than 1000, return at most 1000 results. Otherwise, return this number of results. Used with skip to provide pagination for large datasets.. [optional]
834+
skip (int): If nonzero, skip this number of results before returning data. Used with top to provide pagination for large datasets.. [optional]
830835
order_by (str): A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example id ASC.. [optional]
831-
count (bool): When true, returns a @recordSetCount in the result set. [optional]
836+
count (bool): If true, return the global count of elements in the collection.. [optional]
837+
count_only (bool): If true, return ONLY the global count of elements in the collection. It only applies when count=true.. [optional]
832838
x_correlation_id (str): Unique correlation Id in a GUID format. [optional]
833839
x_avalara_client (str): Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) .. [optional]
834840
_return_http_data_only (bool): response data without head status
@@ -852,7 +858,7 @@ def list_w9_forms(
852858
async_req (bool): execute request asynchronously
853859
854860
Returns:
855-
PaginatedW9FormsModel
861+
PaginatedQueryResultModelW9FormBaseResponse
856862
If the method is called asynchronously, returns the request
857863
thread.
858864
"""

Avalara/SDK/api/A1099/V2/issuers1099_api.py

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

@@ -60,7 +60,7 @@ def __verify_api_client(self,api_client):
6060

6161
def __set_configuration(self, api_client):
6262
self.__verify_api_client(api_client)
63-
api_client.set_sdk_version("25.8.1")
63+
api_client.set_sdk_version("25.8.2")
6464
self.api_client = api_client
6565

6666
self.create_issuer_endpoint = _Endpoint(

Avalara/SDK/api/A1099/V2/jobs1099_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <[email protected]>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 25.8.1
25+
@version 25.8.2
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("25.8.1")
61+
api_client.set_sdk_version("25.8.2")
6262
self.api_client = api_client
6363

6464
self.get_job_endpoint = _Endpoint(

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <[email protected]>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 25.8.1
25+
@version 25.8.2
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("25.8.1")
61+
api_client.set_sdk_version("25.8.2")
6262
self.api_client = api_client
6363

6464
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 <[email protected]>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 25.8.1
25+
@version 25.8.2
2626
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2727
"""
2828

@@ -64,7 +64,7 @@ def __verify_api_client(self,api_client):
6464

6565
def __set_configuration(self, api_client):
6666
self.__verify_api_client(api_client)
67-
api_client.set_sdk_version("25.8.1")
67+
api_client.set_sdk_version("25.8.2")
6868
self.api_client = api_client
6969

7070
self.download_document_endpoint = _Endpoint(

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@author Jonathan Wenger <[email protected]>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 25.8.1
25+
@version 25.8.2
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("25.8.1")
61+
api_client.set_sdk_version("25.8.2")
6262
self.api_client = api_client
6363

6464
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 <[email protected]>
2323
@copyright 2022 Avalara, Inc.
2424
@license https://www.apache.org/licenses/LICENSE-2.0
25-
@version 25.8.1
25+
@version 25.8.2
2626
@link https://github.com/avadev/AvaTax-REST-V3-Python-SDK
2727
"""
2828

@@ -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("25.8.1")
62+
api_client.set_sdk_version("25.8.2")
6363
self.api_client = api_client
6464

6565
self.get_mandate_data_input_fields_endpoint = _Endpoint(

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

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

@@ -61,7 +61,7 @@ def __verify_api_client(self,api_client):
6161

6262
def __set_configuration(self, api_client):
6363
self.__verify_api_client(api_client)
64-
api_client.set_sdk_version("25.8.1")
64+
api_client.set_sdk_version("25.8.2")
6565
self.api_client = api_client
6666

6767
self.create_webhook_subscription_endpoint = _Endpoint(

0 commit comments

Comments
 (0)