avatax 17.7.3 → 17.8.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,8 +11,8 @@ module AvaTax
11
11
  # If you identify your products by tax code in your 'Create Transacion' API calls, Avalara will correctly calculate tax rates and
12
12
  # taxability rules for this product in all supported jurisdictions.
13
13
  # @param companyId [Integer] The ID of the company that owns this tax code.
14
- # @param model [object[]] The tax code you wish to create.
15
- # @return [object[]]
14
+ # @param model [TaxCodeModel[]] The tax code you wish to create.
15
+ # @return [TaxCodeModel[]]
16
16
  def create_tax_codes(companyId, model)
17
17
  path = "/api/v2/companies/#{companyId}/taxcodes"
18
18
  post(path, model)
@@ -24,7 +24,7 @@ module AvaTax
24
24
  # Marks the existing TaxCode object at this URL as deleted.
25
25
  # @param companyId [Integer] The ID of the company that owns this tax code.
26
26
  # @param id [Integer] The ID of the tax code you wish to delete.
27
- # @return [object[]]
27
+ # @return [ErrorDetail[]]
28
28
  def delete_tax_code(companyId, id)
29
29
  path = "/api/v2/companies/#{companyId}/taxcodes/#{id}"
30
30
  delete(path)
@@ -59,7 +59,7 @@ module AvaTax
59
59
  # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
60
60
  # @param companyId [Integer] The ID of the company that owns these tax codes
61
61
  # @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/) .
62
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
62
+ # @param include [String] A comma separated list of additional data to retrieve.
63
63
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
64
64
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
65
65
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -81,7 +81,7 @@ module AvaTax
81
81
  # Search for specific objects using the criteria in the `$filter` parameter; full documentation is available on [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) .
82
82
  # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
83
83
  # @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/) .
84
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
84
+ # @param include [String] A comma separated list of additional data to retrieve.
85
85
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
86
86
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
87
87
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -11,8 +11,8 @@ module AvaTax
11
11
  # within certain taxing jurisdictions, or you have obtained special tax concessions for certain dates or locations,
12
12
  # you may wish to create a TaxRule object to override the AvaTax engine's default behavior in those circumstances.
13
13
  # @param companyId [Integer] The ID of the company that owns this tax rule.
14
- # @param model [object[]] The tax rule you wish to create.
15
- # @return [object[]]
14
+ # @param model [TaxRuleModel[]] The tax rule you wish to create.
15
+ # @return [TaxRuleModel[]]
16
16
  def create_tax_rules(companyId, model)
17
17
  path = "/api/v2/companies/#{companyId}/taxrules"
18
18
  post(path, model)
@@ -24,7 +24,7 @@ module AvaTax
24
24
  # Mark the TaxRule identified by this URL as deleted.
25
25
  # @param companyId [Integer] The ID of the company that owns this tax rule.
26
26
  # @param id [Integer] The ID of the tax rule you wish to delete.
27
- # @return [object[]]
27
+ # @return [ErrorDetail[]]
28
28
  def delete_tax_rule(companyId, id)
29
29
  path = "/api/v2/companies/#{companyId}/taxrules/#{id}"
30
30
  delete(path)
@@ -59,7 +59,7 @@ module AvaTax
59
59
  # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
60
60
  # @param companyId [Integer] The ID of the company that owns these tax rules
61
61
  # @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/) .
62
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
62
+ # @param include [String] A comma separated list of additional data to retrieve.
63
63
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
64
64
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
65
65
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -81,7 +81,7 @@ module AvaTax
81
81
  # Search for specific objects using the criteria in the `$filter` parameter; full documentation is available on [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) .
82
82
  # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
83
83
  # @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/) .
84
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
84
+ # @param include [String] A comma separated list of additional data to retrieve.
85
85
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
86
86
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
87
87
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -7,28 +7,30 @@ module AvaTax
7
7
  #
8
8
  # Add lines to an existing unlocked transaction.
9
9
  #
10
- # The `AddLines` API allows you to add additional transaction lines to existing transaction, so that customer will
11
- # be able to append multiple calls together and form an extremely large transaction. If customer does not specify line number
12
- # in the lines to be added, a new random Guid string will be generated for line number. If customer are not satisfied with
13
- # the line number for the transaction lines, they can turn on the renumber switch to have REST v2 automatically renumber all
14
- # transaction lines for them, in this case, the line number becomes: "1", "2", "3", ...
15
- #
16
- # A transaction represents a unique potentially taxable action that your company has recorded, and transactions include actions like
17
- # sales, purchases, inventory transfer, and returns (also called refunds).
18
- # 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:
19
- #
20
- # * Lines
21
- # * Details (implies lines)
22
- # * Summary (implies details)
23
- # * Addresses
24
- #
25
- # If you don't specify '$include' parameter, it will include both details and addresses.
26
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
10
+ # The `AddLines` API allows you to add additional transaction lines to existing transaction, so that customer will
11
+ # be able to append multiple calls together and form an extremely large transaction. If customer does not specify line number
12
+ # in the lines to be added, a new random Guid string will be generated for line number. If customer are not satisfied with
13
+ # the line number for the transaction lines, they can turn on the renumber switch to have REST v2 automatically renumber all
14
+ # transaction lines for them, in this case, the line number becomes: "1", "2", "3", ...
15
+ #
16
+ # A transaction represents a unique potentially taxable action that your company has recorded, and transactions include actions like
17
+ # sales, purchases, inventory transfer, and returns (also called refunds).
18
+ # 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:
19
+ #
20
+ # * Lines
21
+ # * Details (implies lines)
22
+ # * Summary (implies details)
23
+ # * Addresses
24
+ # * SummaryOnly (omit lines and details - reduces API response size)
25
+ # * LinesOnly (omit details - reduces API response size)
26
+ #
27
+ # If you omit the `$include` parameter, the API will assume you want `Summary,Addresses`.
28
+ # @param include [String] Specifies objects to include in the response after transaction is created
27
29
  # @param model [Object] information about the transaction and lines to be added
28
30
  # @return [Object]
29
- def add_lines(model)
31
+ def add_lines(model, options={})
30
32
  path = "/api/v2/companies/transactions/lines/add"
31
- post(path, model)
33
+ post(path, model, options)
32
34
  end
33
35
 
34
36
 
@@ -176,14 +178,16 @@ module AvaTax
176
178
  # * Details (implies lines)
177
179
  # * Summary (implies details)
178
180
  # * Addresses
181
+ # * SummaryOnly (omit lines and details - reduces API response size)
182
+ # * LinesOnly (omit details - reduces API response size)
179
183
  #
180
- # If you don't specify '$include' parameter, it will include both details and addresses.
181
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
184
+ # If you omit the `$include` parameter, the API will assume you want `Summary,Addresses`.
185
+ # @param include [String] Specifies objects to include in the response after transaction is created
182
186
  # @param model [Object] The transaction you wish to create
183
187
  # @return [Object]
184
- def create_or_adjust_transaction(model)
188
+ def create_or_adjust_transaction(model, options={})
185
189
  path = "/api/v2/transactions/createoradjust"
186
- post(path, model)
190
+ post(path, model, options)
187
191
  end
188
192
 
189
193
 
@@ -205,14 +209,16 @@ module AvaTax
205
209
  # * Details (implies lines)
206
210
  # * Summary (implies details)
207
211
  # * Addresses
212
+ # * SummaryOnly (omit lines and details - reduces API response size)
213
+ # * LinesOnly (omit details - reduces API response size)
208
214
  #
209
- # If you don't specify '$include' parameter, it will include both details and addresses.
210
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
215
+ # If you omit the `$include` parameter, the API will assume you want `Summary,Addresses`.
216
+ # @param include [String] Specifies objects to include in the response after transaction is created
211
217
  # @param model [Object] The transaction you wish to create
212
218
  # @return [Object]
213
- def create_transaction(model)
219
+ def create_transaction(model, options={})
214
220
  path = "/api/v2/transactions/create"
215
- post(path, model)
221
+ post(path, model, options)
216
222
  end
217
223
 
218
224
 
@@ -220,25 +226,27 @@ module AvaTax
220
226
  #
221
227
  # Remove lines to an existing unlocked transaction.
222
228
  #
223
- # The `DeleteLines` API allows you to remove transaction lines from existing unlocked transaction, so that customer will
224
- # be able to delete transaction lines and adjust original transaction the way they like
229
+ # The `DeleteLines` API allows you to remove transaction lines from existing unlocked transaction, so that customer will
230
+ # be able to delete transaction lines and adjust original transaction the way they like
225
231
  #
226
- # A transaction represents a unique potentially taxable action that your company has recorded, and transactions include actions like
227
- # sales, purchases, inventory transfer, and returns (also called refunds).
228
- # 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:
232
+ # A transaction represents a unique potentially taxable action that your company has recorded, and transactions include actions like
233
+ # sales, purchases, inventory transfer, and returns (also called refunds).
234
+ # 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:
229
235
  #
230
- # * Lines
231
- # * Details (implies lines)
232
- # * Summary (implies details)
233
- # * Addresses
236
+ # * Lines
237
+ # * Details (implies lines)
238
+ # * Summary (implies details)
239
+ # * Addresses
240
+ # * SummaryOnly (omit lines and details - reduces API response size)
241
+ # * LinesOnly (omit details - reduces API response size)
234
242
  #
235
- # If you don't specify '$include' parameter, it will include both details and addresses.
236
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
243
+ # If you omit the `$include` parameter, the API will assume you want `Summary,Addresses`.
244
+ # @param include [String] Specifies objects to include in the response after transaction is created
237
245
  # @param model [Object] information about the transaction and lines to be removed
238
246
  # @return [Object]
239
- def delete_lines(model)
247
+ def delete_lines(model, options={})
240
248
  path = "/api/v2/companies/transactions/lines/delete"
241
- post(path, model)
249
+ post(path, model, options)
242
250
  end
243
251
 
244
252
 
@@ -253,9 +261,11 @@ module AvaTax
253
261
  # * Details (implies lines)
254
262
  # * Summary (implies details)
255
263
  # * Addresses
264
+ # * SummaryOnly (omit lines and details - reduces API response size)
265
+ # * LinesOnly (omit details - reduces API response size)
256
266
  # @param companyCode [String] The company code of the company that recorded this transaction
257
267
  # @param transactionCode [String] The transaction code to retrieve
258
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
268
+ # @param include [String] Specifies objects to include in this fetch call
259
269
  # @return [Object]
260
270
  def get_transaction_by_code(companyCode, transactionCode, options={})
261
271
  path = "/api/v2/companies/#{companyCode}/transactions/#{transactionCode}"
@@ -274,10 +284,12 @@ module AvaTax
274
284
  # * Details (implies lines)
275
285
  # * Summary (implies details)
276
286
  # * Addresses
287
+ # * SummaryOnly (omit lines and details - reduces API response size)
288
+ # * LinesOnly (omit details - reduces API response size)
277
289
  # @param companyCode [String] The company code of the company that recorded this transaction
278
290
  # @param transactionCode [String] The transaction code to retrieve
279
291
  # @param documentType [String] The transaction type to retrieve (See DocumentType::* for a list of allowable values)
280
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
292
+ # @param include [String] Specifies objects to include in this fetch call
281
293
  # @return [Object]
282
294
  def get_transaction_by_code_and_type(companyCode, transactionCode, documentType, options={})
283
295
  path = "/api/v2/companies/#{companyCode}/transactions/#{transactionCode}/types/#{documentType}"
@@ -298,8 +310,10 @@ module AvaTax
298
310
  # * Details (implies lines)
299
311
  # * Summary (implies details)
300
312
  # * Addresses
313
+ # * SummaryOnly (omit lines and details - reduces API response size)
314
+ # * LinesOnly (omit details - reduces API response size)
301
315
  # @param id [Integer] The unique ID number of the transaction to retrieve
302
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
316
+ # @param include [String] Specifies objects to include in this fetch call
303
317
  # @return [Object]
304
318
  def get_transaction_by_id(id, options={})
305
319
  path = "/api/v2/transactions/#{id}"
@@ -322,8 +336,10 @@ module AvaTax
322
336
  # * Details (implies lines)
323
337
  # * Summary (implies details)
324
338
  # * Addresses
339
+ # * SummaryOnly (omit lines and details - reduces API response size)
340
+ # * LinesOnly (omit details - reduces API response size)
325
341
  # @param companyCode [String] The company code of the company that recorded this transaction
326
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
342
+ # @param include [String] Specifies objects to include in this fetch call
327
343
  # @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/) .
328
344
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
329
345
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
@@ -372,16 +388,18 @@ module AvaTax
372
388
  # * Details (implies lines)
373
389
  # * Summary (implies details)
374
390
  # * Addresses
391
+ # * SummaryOnly (omit lines and details - reduces API response size)
392
+ # * LinesOnly (omit details - reduces API response size)
375
393
  #
376
- # If you don't specify '$include' parameter, it will include both details and addresses.
394
+ # If you omit the `$include` parameter, the API will assume you want `Summary,Addresses`.
377
395
  # @param companyCode [String] The code of the company that made the original sale
378
396
  # @param transactionCode [String] The transaction code of the original sale
379
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
397
+ # @param include [String] Specifies objects to include in the response after transaction is created
380
398
  # @param model [Object] Information about the refund to create
381
399
  # @return [Object]
382
- def refund_transaction(companyCode, transactionCode, model)
400
+ def refund_transaction(companyCode, transactionCode, model, options={})
383
401
  path = "/api/v2/companies/#{companyCode}/transactions/#{transactionCode}/refund"
384
- post(path, model)
402
+ post(path, model, options)
385
403
  end
386
404
 
387
405
 
@@ -432,4 +450,4 @@ module AvaTax
432
450
 
433
451
  end
434
452
  end
435
- end
453
+ end
@@ -8,8 +8,8 @@ module AvaTax
8
8
  # Create one or more new UPC objects attached to this company.
9
9
  # A UPC represents a single UPC code in your catalog and matches this product to the tax code identified by this UPC.
10
10
  # @param companyId [Integer] The ID of the company that owns this UPC.
11
- # @param model [object[]] The UPC you wish to create.
12
- # @return [object[]]
11
+ # @param model [UPCModel[]] The UPC you wish to create.
12
+ # @return [UPCModel[]]
13
13
  def create_u_p_cs(companyId, model)
14
14
  path = "/api/v2/companies/#{companyId}/upcs"
15
15
  post(path, model)
@@ -21,7 +21,7 @@ module AvaTax
21
21
  # Marks the UPC object identified by this URL as deleted.
22
22
  # @param companyId [Integer] The ID of the company that owns this UPC.
23
23
  # @param id [Integer] The ID of the UPC you wish to delete.
24
- # @return [object[]]
24
+ # @return [ErrorDetail[]]
25
25
  def delete_u_p_c(companyId, id)
26
26
  path = "/api/v2/companies/#{companyId}/upcs/#{id}"
27
27
  delete(path)
@@ -50,7 +50,7 @@ module AvaTax
50
50
  # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
51
51
  # @param companyId [Integer] The ID of the company that owns these UPCs
52
52
  # @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/) .
53
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
53
+ # @param include [String] A comma separated list of additional data to retrieve.
54
54
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
55
55
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
56
56
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -69,7 +69,7 @@ module AvaTax
69
69
  # Search for specific objects using the criteria in the `$filter` parameter; full documentation is available on [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) .
70
70
  # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
71
71
  # @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/) .
72
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
72
+ # @param include [String] A comma separated list of additional data to retrieve.
73
73
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
74
74
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
75
75
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -9,7 +9,7 @@ module AvaTax
9
9
  # A user represents one person with access privileges to make API calls and work with a specific account.
10
10
  # @param id [Integer] The ID of the user to retrieve.
11
11
  # @param accountId [Integer] The accountID of the user you wish to get.
12
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
12
+ # @param include [String] Optional fetch commands.
13
13
  # @return [Object]
14
14
  def get_user(id, accountId, options={})
15
15
  path = "/api/v2/accounts/#{accountId}/users/#{id}"
@@ -51,7 +51,7 @@ module AvaTax
51
51
  # Search for specific objects using the criteria in the `$filter` parameter; full documentation is available on [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) .
52
52
  # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
53
53
  # @param accountId [Integer] The accountID of the user you wish to list.
54
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
54
+ # @param include [String] Optional fetch commands.
55
55
  # @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/) .
56
56
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
57
57
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
@@ -70,7 +70,7 @@ module AvaTax
70
70
  #
71
71
  # Search for specific objects using the criteria in the `$filter` parameter; full documentation is available on [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/) .
72
72
  # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
73
- # @param include [String] A comma separated list of child objects to return underneath the primary object.
73
+ # @param include [String] Optional fetch commands.
74
74
  # @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/) .
75
75
  # @param top [Integer] If nonzero, return no more than this number of results. Used with $skip to provide pagination for large datasets.
76
76
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with $top to provide pagination for large datasets.
@@ -1,3 +1,3 @@
1
1
  module AvaTax
2
- VERSION = '17.7.3'.freeze unless defined?(::AvaTax::VERSION)
2
+ VERSION = '17.8.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: 17.7.3
4
+ version: 17.8.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: 2017-08-23 00:00:00.000000000 Z
11
+ date: 2017-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -146,8 +146,11 @@ files:
146
146
  - lib/avatax/client/accounts.rb
147
147
  - lib/avatax/client/addresses.rb
148
148
  - lib/avatax/client/batches.rb
149
+ - lib/avatax/client/certexpressinvites.rb
150
+ - lib/avatax/client/certificates.rb
149
151
  - lib/avatax/client/companies.rb
150
152
  - lib/avatax/client/contacts.rb
153
+ - lib/avatax/client/customers.rb
151
154
  - lib/avatax/client/definitions.rb
152
155
  - lib/avatax/client/filingcalendars.rb
153
156
  - lib/avatax/client/filings.rb
@@ -161,6 +164,7 @@ files:
161
164
  - lib/avatax/client/onboarding.rb
162
165
  - lib/avatax/client/pointofsale.rb
163
166
  - lib/avatax/client/registrar.rb
167
+ - lib/avatax/client/reports.rb
164
168
  - lib/avatax/client/settings.rb
165
169
  - lib/avatax/client/subscriptions.rb
166
170
  - lib/avatax/client/taxcodes.rb