avatax 19.8.0 → 19.9.0

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
- SHA256:
3
- metadata.gz: bb8f10b49682e45fdf31a4d133c20221f679e2f385717c04eb9fd3ef58a0a998
4
- data.tar.gz: fadd3e37b607f12c071a4ce0fbeb789e14da605f0e179ee6051296a4815befec
2
+ SHA1:
3
+ metadata.gz: 5eacf891fe98c38cdc1ac341bd7505fe4dcf2264
4
+ data.tar.gz: 6f07e4b49d399785ed8a7b387484ff5a400fffac
5
5
  SHA512:
6
- metadata.gz: d7931a896e2a34828fdc2ba050dd78e242b35aa6a67ad1d22edf0aa351e17915ca1ea3df8f42dd35a7d8cb885a9a5376740d4745a2d4ebb98e123e8a28e73b20
7
- data.tar.gz: 775389c619cabb591154437a28e158001206f63a2281c9390f72559c5ab8c6708a5773b37fc7f2d9d25470c5e0d324804115ad1ea7b6121fca79463cb8aac517
6
+ metadata.gz: 76987e2510c55c98d7c2ea4c2bf2f364a453e8a6ea13e948afcd41e48e8778fb0cc4d5dd8eaeb78ca48376ce11d3218548e84f9e717341eb1bcfe93920331026
7
+ data.tar.gz: 59fe204339f98c6db4d3c9c5685c7e0ef80ec0d29b7450b6981aa0fbf9b184947fe1bb702d0b81ea10ad930f62e70be14469ec18842ec6fa743cdcde052d1483
@@ -331,7 +331,7 @@ module AvaTax
331
331
  #
332
332
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, ProStoresOperator, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
333
333
  # @param include [String] A comma separated list of objects to fetch underneath this company. Any object with a URL path underneath this company can be fetched by specifying its name.
334
- # @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/).<br />*Not filterable:* contacts, items, locations, nexus, settings, taxCodes, taxRules, upcs, nonReportingChildCompanies, exemptCerts
334
+ # @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/).<br />*Not filterable:* IsFein, contacts, items, locations, nexus, settings, taxCodes, taxRules, upcs, nonReportingChildCompanies, exemptCerts
335
335
  # @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.
336
336
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
337
337
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -252,7 +252,7 @@ module AvaTax
252
252
  end
253
253
 
254
254
 
255
- # List active certificates for a location
255
+ # List valid certificates for a location
256
256
  #
257
257
  # List valid certificates linked to a customer in a particular country and region.
258
258
  #
@@ -0,0 +1,50 @@
1
+ module AvaTax
2
+ class Client
3
+ module ErrorTransactions
4
+
5
+
6
+ # Delete a batch of error transactions
7
+ #
8
+ # Delete a batch of error transactions attached to a company.
9
+ #
10
+ # If any of the provided error transaction isn't found then it'll be treated as a success.
11
+ #
12
+ # ### Security Policies
13
+ #
14
+ # * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, ProStoresOperator, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
15
+ # * This API depends on the following active services<br />*Required* (all): AvaTaxPro.
16
+ # @param model [Object] The request that contains error transactions to be deleted
17
+ # @return [Object]
18
+ def delete_error_transactions(model)
19
+ path = "/api/v2/errortransactions"
20
+ delete(path, model)
21
+ end
22
+
23
+
24
+ # Retrieve list of error transactions
25
+ #
26
+ # List error transactions attached to this company. Results are dependent on `$filter` if provided.
27
+ #
28
+ # This endpoint is limited to returning 250 error transactions at a time maximum.
29
+ #
30
+ # 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/) .
31
+ # Paginate your results using the `$top`, `$skip`, and `$orderby` parameters.
32
+ #
33
+ # ### Security Policies
34
+ #
35
+ # * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, ProStoresOperator, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
36
+ # * This API depends on the following active services<br />*Required* (all): AvaTaxPro.
37
+ # @param companyCode [String] The company code to filter on. This query parameter is required.
38
+ # @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/).<br />*Not filterable:* companyId, avataxErrorJson, avataxCreateTransactionJson
39
+ # @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.
40
+ # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
41
+ # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
42
+ # @return [FetchResult]
43
+ def list_error_transactions(options={})
44
+ path = "/api/v2/errortransactions"
45
+ get(path, options)
46
+ end
47
+
48
+ end
49
+ end
50
+ end
@@ -131,7 +131,7 @@ module AvaTax
131
131
  #
132
132
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, ProStoresOperator, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser.
133
133
  # @param date [DateTime] The date for which point-of-sale data would be calculated (today by default). Example input: 2016-12-31
134
- # @param region [String] If the region is provided, this API is going to generate the tax rate per zipcode for only the region specified.
134
+ # @param region [String] A two character region code which limits results to a specific region.
135
135
  # @return [Object]
136
136
  def download_tax_rates_by_zip_code(date, options={})
137
137
  path = "/api/v2/taxratesbyzipcode/download/#{date}"
@@ -63,6 +63,11 @@ module AvaTax
63
63
  # * LinesOnly (omit details - reduces API response size)
64
64
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
65
65
  #
66
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
67
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
68
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
69
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
70
+ #
66
71
  # ### Security Policies
67
72
  #
68
73
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, CompanyAdmin, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -97,6 +102,11 @@ module AvaTax
97
102
  # A transaction represents a unique potentially taxable action that your company has recorded, and transactions include actions like
98
103
  # sales, purchases, inventory transfer, and returns (also called refunds).
99
104
  #
105
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
106
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
107
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
108
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
109
+ #
100
110
  # ### Security Policies
101
111
  #
102
112
  # * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, ProStoresOperator, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -128,6 +138,11 @@ module AvaTax
128
138
  # A transaction represents a unique potentially taxable action that your company has recorded, and transactions include actions like
129
139
  # sales, purchases, inventory transfer, and returns (also called refunds).
130
140
  #
141
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
142
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
143
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
144
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
145
+ #
131
146
  # ### Security Policies
132
147
  #
133
148
  # * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, ProStoresOperator, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -189,6 +204,11 @@ module AvaTax
189
204
  # * LinesOnly (omit details - reduces API response size)
190
205
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
191
206
  #
207
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
208
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
209
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
210
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
211
+ #
192
212
  # ### Security Policies
193
213
  #
194
214
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, CSPTester, ProStoresOperator, SSTAdmin, TechnicalSupportAdmin.
@@ -228,6 +248,11 @@ module AvaTax
228
248
  # * LinesOnly (omit details - reduces API response size)
229
249
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
230
250
  #
251
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
252
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
253
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
254
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
255
+ #
231
256
  # ### Security Policies
232
257
  #
233
258
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, CSPTester, ProStoresOperator, SSTAdmin, TechnicalSupportAdmin.
@@ -274,6 +299,11 @@ module AvaTax
274
299
  #
275
300
  # If you omit the `$include` parameter, the API will assume you want `Summary,Addresses`.
276
301
  #
302
+ # NOTE: Avoid using the following strings in your transaction codes as they are encoding strings and will be interpreted differently:
303
+ # * \_-ava2f-\_
304
+ # * \_-ava2b-\_
305
+ # * \_-ava3f-\_
306
+ #
277
307
  # ### Security Policies
278
308
  #
279
309
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -325,6 +355,11 @@ module AvaTax
325
355
  #
326
356
  # If you omit the `$include` parameter, the API will assume you want `Summary,Addresses`.
327
357
  #
358
+ # NOTE: Avoid using the following strings in your transaction codes as they are encoding strings and will be interpreted differently:
359
+ # * \_-ava2f-\_
360
+ # * \_-ava2b-\_
361
+ # * \_-ava3f-\_
362
+ #
328
363
  # ### Security Policies
329
364
  #
330
365
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -392,6 +427,11 @@ module AvaTax
392
427
  # * SummaryOnly (omit lines and details - reduces API response size)
393
428
  # * LinesOnly (omit details - reduces API response size)
394
429
  #
430
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
431
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
432
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
433
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
434
+ #
395
435
  # ### Security Policies
396
436
  #
397
437
  # * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, ProStoresOperator, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -411,6 +451,11 @@ module AvaTax
411
451
  #
412
452
  # DEPRECATED: Please use the `GetTransactionByCode` API instead.
413
453
  #
454
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
455
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
456
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
457
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
458
+ #
414
459
  # ### Security Policies
415
460
  #
416
461
  # * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, ProStoresOperator, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -483,6 +528,11 @@ module AvaTax
483
528
  # * SummaryOnly (omit lines and details - reduces API response size)
484
529
  # * LinesOnly (omit details - reduces API response size)
485
530
  #
531
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
532
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
533
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
534
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
535
+ #
486
536
  # ### Security Policies
487
537
  #
488
538
  # * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, ProStoresOperator, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -525,6 +575,11 @@ module AvaTax
525
575
  # * LinesOnly (omit details - reduces API response size)
526
576
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
527
577
  #
578
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
579
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
580
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
581
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
582
+ #
528
583
  # ### Security Policies
529
584
  #
530
585
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -575,6 +630,11 @@ module AvaTax
575
630
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
576
631
  # If you omit the `$include` parameter, the API will assume you want `Summary,Addresses`.
577
632
  #
633
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
634
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
635
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
636
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
637
+ #
578
638
  # ### Security Policies
579
639
  #
580
640
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -615,6 +675,11 @@ module AvaTax
615
675
  # * LinesOnly (omit details - reduces API response size)
616
676
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
617
677
  #
678
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
679
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
680
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
681
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
682
+ #
618
683
  # ### Security Policies
619
684
  #
620
685
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, CSPTester, ProStoresOperator, SSTAdmin, TechnicalSupportAdmin.
@@ -647,13 +712,18 @@ module AvaTax
647
712
  # * LinesOnly (omit details - reduces API response size)
648
713
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
649
714
  #
715
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
716
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
717
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
718
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
719
+ #
650
720
  # ### Security Policies
651
721
  #
652
722
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, CompanyAdmin, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
653
723
  # * This API depends on the following active services<br />*Required* (all): AvaTaxPro.
654
724
  # @param companyCode [String] The company code of the company that recorded this transaction
655
- # @param transactionCode [String] The transaction code to commit
656
- # @param documentType [String] (Optional): The document type of the transaction to commit. If not provided, the default is SalesInvoice. (See DocumentType::* for a list of allowable values)
725
+ # @param transactionCode [String] The transaction code to Uncommit
726
+ # @param documentType [String] (Optional): The document type of the transaction to Uncommit. If not provided, the default is SalesInvoice. (See DocumentType::* for a list of allowable values)
657
727
  # @param include [String] Specifies objects to include in this fetch call
658
728
  # @return [Object]
659
729
  def uncommit_transaction(companyCode, transactionCode, options={})
@@ -676,6 +746,11 @@ module AvaTax
676
746
  # * LinesOnly (omit details - reduces API response size)
677
747
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
678
748
  #
749
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
750
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
751
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
752
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
753
+ #
679
754
  # ### Security Policies
680
755
  #
681
756
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, CompanyAdmin, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
@@ -712,6 +787,11 @@ module AvaTax
712
787
  # * LinesOnly (omit details - reduces API response size)
713
788
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
714
789
  #
790
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
791
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
792
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
793
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
794
+ #
715
795
  # ### Security Policies
716
796
  #
717
797
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, CSPTester, ProStoresOperator, SSTAdmin, TechnicalSupportAdmin.
@@ -751,6 +831,11 @@ module AvaTax
751
831
  # * LinesOnly (omit details - reduces API response size)
752
832
  # * TaxDetailsByTaxType - Includes the aggregated tax, exempt tax, taxable and non-taxable for each tax type returned in the transaction summary.
753
833
  #
834
+ # NOTE: If your companyCode or transactionCode contains any of these characters /, + or ? please use the following encoding before making a request:
835
+ # * Replace '/' with '\_-ava2f-\_' For example: document/Code becomes document_-ava2f-_Code
836
+ # * Replace '+' with '\_-ava2b-\_' For example: document+Code becomes document_-ava2b-_Code
837
+ # * Replace '?' with '\_-ava3f-\_' For example: document?Code becomes document_-ava3f-_Code
838
+ #
754
839
  # ### Security Policies
755
840
  #
756
841
  # * This API requires one of the following user roles: AccountAdmin, AccountOperator, CompanyAdmin, CSPTester, ProStoresOperator, SSTAdmin, TechnicalSupportAdmin.
@@ -1,3 +1,3 @@
1
1
  module AvaTax
2
- VERSION = '19.8.0'.freeze unless defined?(::AvaTax::VERSION)
2
+ VERSION = '19.9.0'.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: 19.8.0
4
+ version: 19.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Vorwaller
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-13 00:00:00.000000000 Z
11
+ date: 2019-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -147,6 +147,7 @@ files:
147
147
  - lib/avatax/client/definitions.rb
148
148
  - lib/avatax/client/distancethresholds.rb
149
149
  - lib/avatax/client/ecms.rb
150
+ - lib/avatax/client/errortransactions.rb
150
151
  - lib/avatax/client/filingcalendars.rb
151
152
  - lib/avatax/client/filings.rb
152
153
  - lib/avatax/client/firmclientlinkages.rb
@@ -216,7 +217,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
217
  - !ruby/object:Gem::Version
217
218
  version: 2.0.0
218
219
  requirements: []
219
- rubygems_version: 3.0.2
220
+ rubyforge_project:
221
+ rubygems_version: 2.5.2.3
220
222
  signing_key:
221
223
  specification_version: 4
222
224
  summary: Ruby wrapper for the AvaTax API