avatax 25.2.2 → 25.3.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 +4 -4
- data/lib/avatax/client/items.rb +15 -0
- data/lib/avatax/client/transactions.rb +1 -1
- data/lib/avatax/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63be416a65fc180fbe510d51a313d090b9f483cde1d2498de8a46eced6720957
|
4
|
+
data.tar.gz: 529bf18e9f8e75c83274073b6a726f654414492a03638d68956dbb72e8aa619f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e39a0d38a5f5586dc62d19549ab6e234a389b71e07e1f45e0af98e55acd403d21fd9b616f9953757b0e698b48ee013297f94157c7b9fc1b23b7a4a500f51f9d2
|
7
|
+
data.tar.gz: 73f618e48d35f9ea26e5dd7946d6e2b289f5af50171606daebc79dff77f6655f91d556fb34091e627146d34d2a1cdda4a93979805d3699634492cf3fd2334378
|
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.
|
@@ -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.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: 2025-
|
11
|
+
date: 2025-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|