Skip to content

Commit

Permalink
Merge pull request #115 from avadev/21.7.1
Browse files Browse the repository at this point in the history
21.7.1 update
  • Loading branch information
svc-developer authored Aug 2, 2021
2 parents ede6239 + 503d38a commit 2486e05
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='Avalara',
version='21.6.0',
version='21.7.1',
url='https://github.com/avadev/AvaTax-REST-V2-Python-SDK',
package_dir={'': 'src'},
packages=['avalara'],
Expand Down
27 changes: 27 additions & 0 deletions src/client_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -2098,6 +2098,20 @@ def get_login_verifier_by_form(self, form, include=None): return requests
auth=self.auth, headers=self.client_header, params=include,
timeout=self.timeout_limit if self.timeout_limit else 1200)
r"""
List all market place locations.

List all market place locations.

: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/).
: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.
:param skip [int] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
:param orderBy [string] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
:return FetchResult
"""
def list_all_marketplace_locations(self, include=None): return requests.get('{}/api/v2/definitions/listallmarketplacelocations'.format(self.base_url),
auth=self.auth, headers=self.client_header, params=include,
timeout=self.timeout_limit if self.timeout_limit else 1200)
r"""
Retrieve the full list of the AvaFile Forms available

This API is deprecated.
Expand Down Expand Up @@ -3855,6 +3869,7 @@ def list_item_parameters(self, companyId, itemId, include=None): return r
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:
* Parameters
* Classifications
* Tags
### Security Policies
* This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.

Expand Down Expand Up @@ -5260,6 +5275,18 @@ def delete_subscription(self, accountId, id_): return requests.delete('{}
auth=self.auth, headers=self.client_header, params=None,
timeout=self.timeout_limit if self.timeout_limit else 1200)
r"""
Retrieve List of Accounts by Account Migration Status

### Security Policies
* This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.

:param writeMode [TssAccountMigrationId] (See TssAccountMigrationId::* for a list of allowable values)
:return AccountMigrationStatusModel
"""
def list_accounts_by_tss_write_mode(self, writeMode): return requests.get('{}/api/v2/accounts/ListAccountsByTssWriteMode/{}'.format(self.base_url, writeMode),
auth=self.auth, headers=self.client_header, params=None,
timeout=self.timeout_limit if self.timeout_limit else 1200)
r"""
Reset a user's password programmatically

# For Registrar Use Only
Expand Down

0 comments on commit 2486e05

Please sign in to comment.