Skip to content

Commit 8f44980

Browse files
authored
feat: update wsdl version to 2024_1 (#145)
1 parent 330bb6b commit 8f44980

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export NS_TOKEN_SECRET=xxxx
2929
The following snippet shows how to use TBA to initialize the SDK.
3030

3131
Note: By default the SDK implementation is using the wsdl version '2019_1', if you wish to use other than the default wsdl version, you can pass an optional wsdl_version. The wsdl_version should be in following format: 'year_version' eg. '2023_1' or '2022_2' etc.
32+
From version 3.0.0, the default wsdl_version will be 2024_1.
3233

3334
```python
3435
import os

netsuitesdk/connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
class NetSuiteConnection:
3737
def __init__(self, account, consumer_key, consumer_secret, token_key, token_secret,
3838
caching=True, caching_timeout=2592000, caching_path=None,
39-
search_body_fields_only=True, page_size: int = 100, wsdl_version: str = None):
39+
search_body_fields_only=True, page_size: int = 100, wsdl_version: str = '2024_1'):
4040

4141
ns_client = NetSuiteClient(account=account, caching=caching, caching_timeout=caching_timeout,
4242
caching_path=caching_path, search_body_fields_only=search_body_fields_only,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name='netsuitesdk',
8-
version='2.23.1',
8+
version='3.0.0',
99
author='Siva Narayanan',
1010
author_email='[email protected]',
1111
description='Python SDK for accessing the NetSuite SOAP webservice',

0 commit comments

Comments
 (0)