avatax 21.6.0 → 21.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/avatax/client/definitions.rb +11 -0
- data/lib/avatax/client/items.rb +1 -0
- data/lib/avatax/client/registrar.rb +10 -0
- data/lib/avatax/version.rb +1 -1
- metadata +11 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b4068baf63fb55ea1a9a36451d2ddb2ba8cf9aa324895cec37c3a88f3dc8815
|
4
|
+
data.tar.gz: 653b1ea0ed11a2a7164181e1603aaa7290f7399565c77ebc67d6df302be6bd50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7263c7b290df9d1acbb3b273306e7c88c0ed7bec36cb292dd35e3844d5341d3bfecd2bbf7f83e68d208e8e5da91b9bf88dde7d5bc529283bbc04fb7953d1a3c
|
7
|
+
data.tar.gz: 124df35966420847491ac29c883cf67f1fd59edc5c3f5d235f4bfa8a24d7a2499bbe80b556064087143bb07ca6f239b1b955532d9c71a30de98cd9a8c7012b39
|
@@ -38,6 +38,17 @@ module AvaTax
|
|
38
38
|
def get_login_verifier_by_form(form, options={}) path = "/api/v2/definitions/filingcalendars/loginverifiers/#{form}"
|
39
39
|
get(path, options) end
|
40
40
|
|
41
|
+
# List all market place locations.
|
42
|
+
#
|
43
|
+
# List all market place locations.
|
44
|
+
# @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/).
|
45
|
+
# @param top [Integer] 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.
|
46
|
+
# @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
|
47
|
+
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
48
|
+
# @return [FetchResult]
|
49
|
+
def list_all_marketplace_locations(options={}) path = "/api/v2/definitions/listallmarketplacelocations"
|
50
|
+
get(path, options) end
|
51
|
+
|
41
52
|
# Retrieve the full list of the AvaFile Forms available
|
42
53
|
#
|
43
54
|
# This API is deprecated.
|
data/lib/avatax/client/items.rb
CHANGED
@@ -115,6 +115,16 @@ module AvaTax
|
|
115
115
|
def delete_subscription(accountId, id) path = "/api/v2/accounts/#{accountId}/subscriptions/#{id}"
|
116
116
|
delete(path) end
|
117
117
|
|
118
|
+
# Retrieve List of Accounts by Account Migration Status
|
119
|
+
#
|
120
|
+
# ### Security Policies
|
121
|
+
#
|
122
|
+
# * This API requires one of the following user roles: FirmAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
|
123
|
+
# @param writeMode [String] (See TssAccountMigrationId::* for a list of allowable values)
|
124
|
+
# @return [Object]
|
125
|
+
def list_accounts_by_tss_write_mode(writeMode) path = "/api/v2/accounts/ListAccountsByTssWriteMode/#{writeMode}"
|
126
|
+
get(path) end
|
127
|
+
|
118
128
|
# Reset a user's password programmatically
|
119
129
|
#
|
120
130
|
# # For Registrar Use Only
|
data/lib/avatax/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: avatax
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 21.
|
4
|
+
version: 21.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcus Vorwaller
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -206,8 +206,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
206
|
- !ruby/object:Gem::Version
|
207
207
|
version: 2.0.0
|
208
208
|
requirements: []
|
209
|
-
rubygems_version: 3.
|
209
|
+
rubygems_version: 3.1.2
|
210
210
|
signing_key:
|
211
211
|
specification_version: 4
|
212
212
|
summary: Ruby wrapper for the AvaTax API
|
213
|
-
test_files:
|
213
|
+
test_files:
|
214
|
+
- spec/avatax/client/accounts_spec.rb
|
215
|
+
- spec/avatax/client/transactions_spec.rb
|
216
|
+
- spec/avatax/request_spec.rb
|
217
|
+
- spec/avatax_spec.rb
|
218
|
+
- spec/credentials.yaml.example
|
219
|
+
- spec/fixtures/accounts.json
|
220
|
+
- spec/spec_helper.rb
|