avatax 25.2.2 → 25.3.2
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 +4 -4
- data/.gitlab-ci.yml +8 -0
- data/lib/avatax/client/batches.rb +24 -0
- data/lib/avatax/client/certificates.rb +61 -0
- data/lib/avatax/client/customers.rb +61 -0
- data/lib/avatax/client/items.rb +15 -0
- data/lib/avatax/client/taxcontent.rb +2 -2
- data/lib/avatax/client/transactions.rb +1 -1
- data/lib/avatax/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 636a2a796b563ec657ad339a38b1a219f4c283a55044ab0f310ffbd966b94490
|
4
|
+
data.tar.gz: 6e21a8e656ab4264ec9d205112990f13a8817dd0170a29b072630b84f7c3fe94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0f8be9f117e6457d3c4a848b7875bb20dee509e17d3a0f97a52d28e5bdbe2bde328972625a48c8c96b84222566354fcbbba1da325365eb3e4a3e99d5513b1f8
|
7
|
+
data.tar.gz: b7911f826295bcfce26e1aaf9b2b67f3bfd768c111ec4668c248a0f56533a929544ce080d85b00f62b804743941a7ec819e23628f32a8bea9a19fcb0f05853cb
|
data/.gitlab-ci.yml
ADDED
@@ -28,6 +28,30 @@ module AvaTax
|
|
28
28
|
def cancel_batch(companyId, id) path = "/api/v2/companies/#{companyId}/batches/#{id}/cancel"
|
29
29
|
post(path, {}, {}, AvaTax::VERSION) end
|
30
30
|
|
31
|
+
# Create a new Advanced Rules batch
|
32
|
+
#
|
33
|
+
# Create a new Advanced Rules batch objects attached to this company.
|
34
|
+
#
|
35
|
+
# When an Advanced Rules batch is created, it is added to the AvaTax Batch v2 Queue and will be
|
36
|
+
# processed as quickly as possible in the order it was received. To check the
|
37
|
+
# status of a batch, fetch the batch and retrieve the results of the batch
|
38
|
+
# operation.
|
39
|
+
#
|
40
|
+
# The maximum content length of the request body is limited to 28.6 MB. If this limit
|
41
|
+
# is exceeded, a 404 Not Found status will be returned (possibly with a CORS error if
|
42
|
+
# the API is called from a browser). In this situation, please split the request into
|
43
|
+
# smaller batches.
|
44
|
+
#
|
45
|
+
# ### Security Policies
|
46
|
+
#
|
47
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, BatchServiceAdmin, CompanyAdmin, CSPTester, FirmAdmin, SSTAdmin, SystemAdmin, SystemOperator, TechnicalSupportAdmin.
|
48
|
+
# Swagger Name: AvaTaxClient
|
49
|
+
# @param companyId [Integer] The ID of the company that owns this batch.
|
50
|
+
# @param model [Object] The Advanced Rules batch you wish to create.
|
51
|
+
# @return [Object]
|
52
|
+
def create_advanced_rules_batch(companyId, model) path = "/api/v2/companies/#{companyId}/batches/advancedrules"
|
53
|
+
post(path, model, {}, AvaTax::VERSION) end
|
54
|
+
|
31
55
|
# Create a new batch
|
32
56
|
#
|
33
57
|
# Create one or more new batch objects attached to this company.
|
@@ -66,6 +66,27 @@ module AvaTax
|
|
66
66
|
def delete_certificate(companyId, id) path = "/api/v2/companies/#{companyId}/certificates/#{id}"
|
67
67
|
delete(path, {}, AvaTax::VERSION) end
|
68
68
|
|
69
|
+
# Delete Certificate Custom Fields
|
70
|
+
#
|
71
|
+
# Deletes custom fields for a specified certificate.
|
72
|
+
#
|
73
|
+
# Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
|
74
|
+
# Companies that do not have this storage system set up will see `CertCaptureNotConfiguredError` when they call exemption
|
75
|
+
# certificate related APIs. To check if this is set up for a company, call `GetCertificateSetup`. To request setup of exemption
|
76
|
+
# certificate storage for this company, call `RequestCertificateSetup`.
|
77
|
+
#
|
78
|
+
# ### Security Policies
|
79
|
+
#
|
80
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin.
|
81
|
+
# * This API depends on the following active services:*Required* (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms.
|
82
|
+
# Swagger Name: AvaTaxClient
|
83
|
+
# @param companyId [Integer] The unique ID number of the company that recorded this certificate
|
84
|
+
# @param id [Integer] The unique ID number of this certificate
|
85
|
+
# @param model [DeleteCustomFields[]] Delete custom fields request model
|
86
|
+
# @return []
|
87
|
+
def delete_certificate_custom_fields(companyId, id, model) path = "/api/v2/companies/#{companyId}/certificates/#{id}/custom-fields"
|
88
|
+
delete(path, model, {}, AvaTax::VERSION) end
|
89
|
+
|
69
90
|
# Download an image for this certificate
|
70
91
|
#
|
71
92
|
# Download an image or PDF file for this certificate.
|
@@ -269,6 +290,25 @@ module AvaTax
|
|
269
290
|
def list_customers_for_certificate(companyId, id, options={}) path = "/api/v2/companies/#{companyId}/certificates/#{id}/customers"
|
270
291
|
get(path, options, AvaTax::VERSION) end
|
271
292
|
|
293
|
+
# Retrieve Certificate Custom Fields
|
294
|
+
#
|
295
|
+
# This API is used to retrieve custom fields for a certificate.
|
296
|
+
# Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
|
297
|
+
# Companies that do not have this storage system set up will see `CertCaptureNotConfiguredError` when they call exemption
|
298
|
+
# certificate related APIs. To check if this is set up for a company, call `GetCertificateSetup`. To request setup of exemption
|
299
|
+
# certificate storage for this company, call `RequestCertificateSetup`.
|
300
|
+
#
|
301
|
+
# ### Security Policies
|
302
|
+
#
|
303
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
|
304
|
+
# * This API depends on the following active services:*Required* (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms.
|
305
|
+
# Swagger Name: AvaTaxClient
|
306
|
+
# @param companyId [Integer] The unique ID number of the company that recorded this certificate
|
307
|
+
# @param id [Integer] The unique ID number of this certificate
|
308
|
+
# @return [Object]
|
309
|
+
def list_custom_fields_for_certificate(companyId, id) path = "/api/v2/companies/#{companyId}/certificates/#{id}/custom-fields"
|
310
|
+
get(path, {}, AvaTax::VERSION) end
|
311
|
+
|
272
312
|
# List all certificates for a company
|
273
313
|
#
|
274
314
|
# List all certificates recorded by a company
|
@@ -417,6 +457,27 @@ module AvaTax
|
|
417
457
|
def update_certificate(companyId, id, model) path = "/api/v2/companies/#{companyId}/certificates/#{id}"
|
418
458
|
put(path, model, {}, AvaTax::VERSION) end
|
419
459
|
|
460
|
+
# Update Certificate Custom Fields
|
461
|
+
#
|
462
|
+
# Updates the values of custom fields for a certificate
|
463
|
+
#
|
464
|
+
# Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
|
465
|
+
# Companies that do not have this storage system set up will see `CertCaptureNotConfiguredError` when they call exemption
|
466
|
+
# certificate related APIs. To check if this is set up for a company, call `GetCertificateSetup`. To request setup of exemption
|
467
|
+
# certificate storage for this company, call `RequestCertificateSetup`.
|
468
|
+
#
|
469
|
+
# ### Security Policies
|
470
|
+
#
|
471
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin.
|
472
|
+
# * This API depends on the following active services:*Required* (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms.
|
473
|
+
# Swagger Name: AvaTaxClient
|
474
|
+
# @param companyId [Integer] The unique ID number of the company that recorded this certificate
|
475
|
+
# @param id [Integer] The unique ID number of this certificate
|
476
|
+
# @param model [Object] The request model containing updated custom field values
|
477
|
+
# @return []
|
478
|
+
def update_certificate_custom_fields(companyId, id, model) path = "/api/v2/companies/#{companyId}/certificates/#{id}/custom-fields"
|
479
|
+
put(path, model, {}, AvaTax::VERSION) end
|
480
|
+
|
420
481
|
# Upload an image or PDF attachment for this certificate
|
421
482
|
#
|
422
483
|
# Upload an image or PDF attachment for this certificate.
|
@@ -58,6 +58,27 @@ module AvaTax
|
|
58
58
|
def delete_customer(companyId, customerCode) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}"
|
59
59
|
delete(path, {}, AvaTax::VERSION) end
|
60
60
|
|
61
|
+
# Delete custom fields
|
62
|
+
#
|
63
|
+
# Deletes the value of the custom field.
|
64
|
+
#
|
65
|
+
# Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
|
66
|
+
# Companies that do not have this storage system set up will see `CertCaptureNotConfiguredError` when they call exemption
|
67
|
+
# certificate related APIs. To check if this is set up for a company, call `GetCertificateSetup`. To request setup of exemption
|
68
|
+
# certificate storage for this company, call `RequestCertificateSetup`.
|
69
|
+
#
|
70
|
+
# ### Security Policies
|
71
|
+
#
|
72
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin.
|
73
|
+
# * This API depends on the following active services:*Required* (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms.
|
74
|
+
# Swagger Name: AvaTaxClient
|
75
|
+
# @param companyId [Integer] The unique ID number of the company that recorded this customer
|
76
|
+
# @param customerCode [String] The unique code representing this customer
|
77
|
+
# @param model [DeleteCustomFields[]] Delete custom fields request model
|
78
|
+
# @return []
|
79
|
+
def delete_custom_fields(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/custom-fields"
|
80
|
+
delete(path, model, {}, AvaTax::VERSION) end
|
81
|
+
|
61
82
|
# Retrieve a single customer
|
62
83
|
#
|
63
84
|
# Retrieve the customer identified by this URL.
|
@@ -263,6 +284,25 @@ module AvaTax
|
|
263
284
|
def list_certificates_for_customer(companyId, customerCode, options={}) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certificates"
|
264
285
|
get(path, options, AvaTax::VERSION) end
|
265
286
|
|
287
|
+
# Retrieves a list of custom fields for a specified customer within a company.
|
288
|
+
#
|
289
|
+
# This API is used to retrieve custom field for a customer.
|
290
|
+
# Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
|
291
|
+
# Companies that do not have this storage system set up will see `CertCaptureNotConfiguredError` when they call exemption
|
292
|
+
# certificate related APIs. To check if this is set up for a company, call `GetCertificateSetup`. To request setup of exemption
|
293
|
+
# certificate storage for this company, call `RequestCertificateSetup`.
|
294
|
+
#
|
295
|
+
# ### Security Policies
|
296
|
+
#
|
297
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
|
298
|
+
# * This API depends on the following active services:*Required* (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms.
|
299
|
+
# Swagger Name: AvaTaxClient
|
300
|
+
# @param companyId [Integer] The unique ID number of the company that recorded this customer
|
301
|
+
# @param customerCode [String] The unique code representing this customer
|
302
|
+
# @return [Object]
|
303
|
+
def list_custom_fields_for_customer(companyId, customerCode) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/custom-fields"
|
304
|
+
get(path, {}, AvaTax::VERSION) end
|
305
|
+
|
266
306
|
# Retrieves a list of inactive certificates for a specified customer within a company.
|
267
307
|
#
|
268
308
|
# This API is used to retrieve inactive certificates for a customer. Inactive certificates may include expired,
|
@@ -441,6 +481,27 @@ module AvaTax
|
|
441
481
|
# @return [Object]
|
442
482
|
def update_customer(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}"
|
443
483
|
put(path, model, {}, AvaTax::VERSION) end
|
484
|
+
|
485
|
+
# Update custom fields
|
486
|
+
#
|
487
|
+
# Update the value of the custom field.
|
488
|
+
#
|
489
|
+
# Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
|
490
|
+
# Companies that do not have this storage system set up will see `CertCaptureNotConfiguredError` when they call exemption
|
491
|
+
# certificate related APIs. To check if this is set up for a company, call `GetCertificateSetup`. To request setup of exemption
|
492
|
+
# certificate storage for this company, call `RequestCertificateSetup`.
|
493
|
+
#
|
494
|
+
# ### Security Policies
|
495
|
+
#
|
496
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin.
|
497
|
+
# * This API depends on the following active services:*Required* (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms.
|
498
|
+
# Swagger Name: AvaTaxClient
|
499
|
+
# @param companyId [Integer] The unique ID number of the company that recorded this customer
|
500
|
+
# @param customerCode [String] The unique code representing this customer
|
501
|
+
# @param model [Object] Update custom fields request model
|
502
|
+
# @return []
|
503
|
+
def update_custom_fields(companyId, customerCode, model) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/custom-fields"
|
504
|
+
put(path, model, {}, AvaTax::VERSION) end
|
444
505
|
end
|
445
506
|
end
|
446
507
|
end
|
data/lib/avatax/client/items.rb
CHANGED
@@ -305,6 +305,21 @@ module AvaTax
|
|
305
305
|
def dismiss_h_s_code_classification_status(companyId, itemId, options={}) path = "/api/v2/companies/#{companyId}/items/#{itemId}/hscode-classifications-status/$dismiss"
|
306
306
|
put(path, options, AvaTax::VERSION) end
|
307
307
|
|
308
|
+
# Retrieve the HS code classification SLA details for a company.
|
309
|
+
#
|
310
|
+
# This endpoint returns the SLA details for HS code classification for the
|
311
|
+
# specified company. The response includes information about processing times,
|
312
|
+
# service commitments, and other relevant SLA terms.
|
313
|
+
#
|
314
|
+
# ### Security Policies
|
315
|
+
#
|
316
|
+
# * This API requires one of the following user roles: AccountAdmin, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
|
317
|
+
# Swagger Name: AvaTaxClient
|
318
|
+
# @param companyId [Integer] The ID of the company for which to retrieve the SLA details.
|
319
|
+
# @return [Object]
|
320
|
+
def get_h_s_code_classification_s_l_a(companyId) path = "/api/v2/companies/#{companyId}/items/hscode-classification/$get-sla"
|
321
|
+
get(path, {}, AvaTax::VERSION) end
|
322
|
+
|
308
323
|
# Retrieve a single item
|
309
324
|
#
|
310
325
|
# Get the `Item` object identified by this URL.
|
@@ -27,7 +27,7 @@ module AvaTax
|
|
27
27
|
# This API builds the file on demand, and is limited to files with no more than 7500 scenarios. To build a tax content
|
28
28
|
# file for a single location at a time, please use `BuildTaxContentFileForLocation`.
|
29
29
|
#
|
30
|
-
# NOTE: This API does not work for
|
30
|
+
# NOTE: This API does not work for sales tax holiday scenarios.
|
31
31
|
#
|
32
32
|
# ### Security Policies
|
33
33
|
#
|
@@ -63,7 +63,7 @@ module AvaTax
|
|
63
63
|
# This API builds the file on demand, and is limited to files with no more than 7500 scenarios. To build a tax content
|
64
64
|
# file for a multiple locations in a single file, please use `BuildTaxContentFile`.
|
65
65
|
#
|
66
|
-
# NOTE: This API does not work for
|
66
|
+
# NOTE: This API does not work for sales tax holiday scenarios.
|
67
67
|
#
|
68
68
|
# ### Security Policies
|
69
69
|
#
|
@@ -576,7 +576,7 @@ module AvaTax
|
|
576
576
|
# @param companyCode [String] The company code of the company that recorded this transaction
|
577
577
|
# @param dataSourceId [Integer] Optionally filter transactions to those from a specific data source.
|
578
578
|
# @param include [String] Specifies objects to include in this fetch call
|
579
|
-
# @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:* exchangeRateCurrencyCode, totalDiscount, lines, addresses, locationTypes, summary, taxDetailsByTaxType, parameters, userDefinedFields, messages, invoiceMessages, isFakeTransaction, deliveryTerms, apStatusCode, apStatus
|
579
|
+
# @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:* exchangeRateCurrencyCode, totalDiscount, lines, addresses, locationTypes, summary, taxDetailsByTaxType, parameters, userDefinedFields, messages, invoiceMessages, isFakeTransaction, deliveryTerms, apStatusCode, apStatus, vendorName, varianceAmount
|
580
580
|
# @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.
|
581
581
|
# @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
|
582
582
|
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
|
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: 25.
|
4
|
+
version: 25.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcus Vorwaller
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -103,6 +103,7 @@ extra_rdoc_files: []
|
|
103
103
|
files:
|
104
104
|
- ".github/workflows/gem-push.yml"
|
105
105
|
- ".gitignore"
|
106
|
+
- ".gitlab-ci.yml"
|
106
107
|
- ".rspec"
|
107
108
|
- ".vs/AvaTax-REST-V2-Ruby-SDK/v15/.suo"
|
108
109
|
- ".vs/VSWorkspaceState.json"
|