avatax 21.6.0 → 21.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: acf8e863c32d81a5e93a697495aeaa81205d4f474d461e5773cb654fe0338c76
4
- data.tar.gz: 665d929cdbf4e98a2f7dd32d51e979a46af7f5c384a35a9ca740a3c9c816d10a
3
+ metadata.gz: 6b4068baf63fb55ea1a9a36451d2ddb2ba8cf9aa324895cec37c3a88f3dc8815
4
+ data.tar.gz: 653b1ea0ed11a2a7164181e1603aaa7290f7399565c77ebc67d6df302be6bd50
5
5
  SHA512:
6
- metadata.gz: 433144353772bf44e370ee01982969d59a03b6d82151a9fbfcebb58ecdf793c9af280d8bf552730d1033eacdff2b01f65997c7dba1c719301e35d4150d1976b5
7
- data.tar.gz: c9a8d018ce16be9e2b71496adc9f6642b1f1600522a36fa91bd03f40d2eb83b3bf369522a6526f5e7f91e2ec88eeea05df394ace7c14f1a7da8fc503b90c478e
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.
@@ -375,6 +375,7 @@ module AvaTax
375
375
  #
376
376
  # * Parameters
377
377
  # * Classifications
378
+ # * Tags
378
379
  #
379
380
  # ### Security Policies
380
381
  #
@@ -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
@@ -1,3 +1,3 @@
1
1
  module AvaTax
2
- VERSION = '21.6.0'.freeze unless defined?(::AvaTax::VERSION)
2
+ VERSION = '21.7.1'.freeze unless defined?(::AvaTax::VERSION)
3
3
  end
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.6.0
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-06-11 00:00:00.000000000 Z
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.0.8
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