Skip to content

Commit 2486e05

Browse files
Merge pull request #115 from avadev/21.7.1
21.7.1 update
2 parents ede6239 + 503d38a commit 2486e05

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='Avalara',
12-
version='21.6.0',
12+
version='21.7.1',
1313
url='https://github.com/avadev/AvaTax-REST-V2-Python-SDK',
1414
package_dir={'': 'src'},
1515
packages=['avalara'],

src/client_methods.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2098,6 +2098,20 @@ def get_login_verifier_by_form(self, form, include=None): return requests
20982098
auth=self.auth, headers=self.client_header, params=include,
20992099
timeout=self.timeout_limit if self.timeout_limit else 1200)
21002100
r"""
2101+
List all market place locations.
2102+
2103+
List all market place locations.
2104+
2105+
:param filter [string] A filter statement to identify specific records to retrieve. For more information on filtering, see [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/).
2106+
:param 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.
2107+
:param skip [int] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
2108+
:param orderBy [string] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
2109+
:return FetchResult
2110+
"""
2111+
def list_all_marketplace_locations(self, include=None): return requests.get('{}/api/v2/definitions/listallmarketplacelocations'.format(self.base_url),
2112+
auth=self.auth, headers=self.client_header, params=include,
2113+
timeout=self.timeout_limit if self.timeout_limit else 1200)
2114+
r"""
21012115
Retrieve the full list of the AvaFile Forms available
21022116

21032117
This API is deprecated.
@@ -3855,6 +3869,7 @@ def list_item_parameters(self, companyId, itemId, include=None): return r
38553869
You may specify one or more of the following values in the `$include` parameter to fetch additional nested data, using commas to separate multiple values:
38563870
* Parameters
38573871
* Classifications
3872+
* Tags
38583873
### Security Policies
38593874
* This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
38603875

@@ -5260,6 +5275,18 @@ def delete_subscription(self, accountId, id_): return requests.delete('{}
52605275
auth=self.auth, headers=self.client_header, params=None,
52615276
timeout=self.timeout_limit if self.timeout_limit else 1200)
52625277
r"""
5278+
Retrieve List of Accounts by Account Migration Status
5279+
5280+
### Security Policies
5281+
* This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
5282+
5283+
:param writeMode [TssAccountMigrationId] (See TssAccountMigrationId::* for a list of allowable values)
5284+
:return AccountMigrationStatusModel
5285+
"""
5286+
def list_accounts_by_tss_write_mode(self, writeMode): return requests.get('{}/api/v2/accounts/ListAccountsByTssWriteMode/{}'.format(self.base_url, writeMode),
5287+
auth=self.auth, headers=self.client_header, params=None,
5288+
timeout=self.timeout_limit if self.timeout_limit else 1200)
5289+
r"""
52635290
Reset a user's password programmatically
52645291

52655292
# For Registrar Use Only

0 commit comments

Comments
 (0)