avatax 25.1.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa1155a6296f49af8222f9bc8086c233f43b226f7c1a37ec9e9f24f7885eacd9
4
- data.tar.gz: 85c01a9cee7c89aa0426c4975b6fc71442d2ad4e5a938ad4439425e91a1dc42c
3
+ metadata.gz: 63be416a65fc180fbe510d51a313d090b9f483cde1d2498de8a46eced6720957
4
+ data.tar.gz: 529bf18e9f8e75c83274073b6a726f654414492a03638d68956dbb72e8aa619f
5
5
  SHA512:
6
- metadata.gz: f8618a1521529122a70b671637467ca05f6b81129bfc1b587a3a8883131125859c81f3dc4f894f2ce450aa02b272492909270627bde8c47265b88753843863e7
7
- data.tar.gz: 463d93fce3e936b6a6ac3ad6ce5453a34f1dd95162e46d3bfefdcc508857d87c720bdfa04240e7b36ff3c08878ef4c81bd236c7a0a3961f14d17fd7fc202ce7e
6
+ metadata.gz: e39a0d38a5f5586dc62d19549ab6e234a389b71e07e1f45e0af98e55acd403d21fd9b616f9953757b0e698b48ee013297f94157c7b9fc1b23b7a4a500f51f9d2
7
+ data.tar.gz: 73f618e48d35f9ea26e5dd7946d6e2b289f5af50171606daebc79dff77f6655f91d556fb34091e627146d34d2a1cdda4a93979805d3699634492cf3fd2334378
data/lib/avatax/api.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  require File.expand_path('../connection', __FILE__)
2
2
  require File.expand_path('../request', __FILE__)
3
+ require 'active_support'
3
4
  require 'active_support/notifications'
4
5
  require 'logger'
5
6
 
@@ -301,7 +301,7 @@ module AvaTax
301
301
  # Swagger Name: AvaTaxClient
302
302
  # @param companyId [Integer] The ID number of the company to search
303
303
  # @param include [String] OPTIONAL: A comma separated list of special fetch options. You can specify one or more of the following: * customers - Retrieves the list of customers linked to the certificate. * po_numbers - Retrieves all PO numbers tied to the certificate. * attributes - Retrieves all attributes applied to the certificate. * histories - Retrieves the certificate update history * jobs - Retrieves the jobs for this certificate * logs - Retrieves the certificate log * invalid_reasons - Retrieves invalid reasons for this certificate if the certificate is invalid * custom_fields - Retrieves custom fields set for this certificate
304
- # @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:* exemptionNumber, status, ecmsId, ecmsStatus, pdf, pages
304
+ # @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:* exemptionNumber, ecmsId, ecmsStatus, pdf, pages
305
305
  # @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.
306
306
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
307
307
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -183,6 +183,26 @@ module AvaTax
183
183
  def link_ship_to_customers_to_bill_customer(companyId, code, model) path = "/api/v2/companies/#{companyId}/customers/billto/#{code}/shipto/link"
184
184
  post(path, model, {}, AvaTax::VERSION) end
185
185
 
186
+ # Retrieves a list of active certificates for a specified customer within a company.
187
+ #
188
+ # This API is intended to identify whether a customer has any active certificates.
189
+ #
190
+ # Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
191
+ # Companies that do not have this storage system set up will see `CertCaptureNotConfiguredError` when they call exemption
192
+ # certificate related APIs. To check if this is set up for a company, call `GetCertificateSetup`. To request setup of exemption
193
+ # certificate storage for this company, call `RequestCertificateSetup`.
194
+ #
195
+ # ### Security Policies
196
+ #
197
+ # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
198
+ # * This API depends on the following active services:*Required* (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms.
199
+ # Swagger Name: AvaTaxClient
200
+ # @param companyId [Integer] The unique ID number of the company that recorded this customer
201
+ # @param customerCode [String] The unique code representing this customer
202
+ # @return [Object]
203
+ def list_active_certificates_for_customer(companyId, customerCode) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certificates/active"
204
+ get(path, {}, AvaTax::VERSION) end
205
+
186
206
  # Retrieve a customer's attributes
187
207
  #
188
208
  # Retrieve the attributes linked to the customer identified by this URL.
@@ -235,7 +255,7 @@ module AvaTax
235
255
  # @param companyId [Integer] The unique ID number of the company that recorded this customer
236
256
  # @param customerCode [String] The unique code representing this customer
237
257
  # @param include [String] OPTIONAL: A comma separated list of special fetch options. You can specify one or more of the following: * customers - Retrieves the list of customers linked to the certificate. * po_numbers - Retrieves all PO numbers tied to the certificate. * attributes - Retrieves all attributes applied to the certificate. * histories - Retrieves the certificate update history * jobs - Retrieves the jobs for this certificate * logs - Retrieves the certificate log * invalid_reasons - Retrieves invalid reasons for this certificate if the certificate is invalid * custom_fields - Retrieves custom fields set for this certificate
238
- # @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:* exemptionNumber, status, ecmsId, ecmsStatus, pdf, pages
258
+ # @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:* exemptionNumber, ecmsId, ecmsStatus, pdf, pages
239
259
  # @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.
240
260
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
241
261
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -243,6 +263,27 @@ module AvaTax
243
263
  def list_certificates_for_customer(companyId, customerCode, options={}) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certificates"
244
264
  get(path, options, AvaTax::VERSION) end
245
265
 
266
+ # Retrieves a list of inactive certificates for a specified customer within a company.
267
+ #
268
+ # This API is used to retrieve inactive certificates for a customer. Inactive certificates may include expired,
269
+ # revoked, or otherwise non-compliant certificates.
270
+ #
271
+ # Before you can use any exemption certificates endpoints, you must set up your company for exemption certificate data storage.
272
+ # Companies that do not have this storage system set up will see `CertCaptureNotConfiguredError` when they call exemption
273
+ # certificate related APIs. To check if this is set up for a company, call `GetCertificateSetup`. To request setup of exemption
274
+ # certificate storage for this company, call `RequestCertificateSetup`.
275
+ #
276
+ # ### Security Policies
277
+ #
278
+ # * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, CSPTester, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser.
279
+ # * This API depends on the following active services:*Required* (all): AvaTaxPro, ECMEssentials, ECMPro, ECMPremium, VEMPro, VEMPremium, ECMProComms, ECMPremiumComms.
280
+ # Swagger Name: AvaTaxClient
281
+ # @param companyId [Integer] The unique ID number of the company that recorded this customer
282
+ # @param customerCode [String] The unique code representing this customer
283
+ # @return [Object]
284
+ def list_in_active_certificates_for_customer(companyId, customerCode) path = "/api/v2/companies/#{companyId}/customers/#{customerCode}/certificates/inactive"
285
+ get(path, {}, AvaTax::VERSION) end
286
+
246
287
  # List valid certificates for a location
247
288
  #
248
289
  # List valid certificates linked to a customer in a particular country and region.
@@ -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.
@@ -55,7 +55,7 @@ module AvaTax
55
55
  # Reports are run as asynchronous report tasks on the server. When complete, the report file will be available for download
56
56
  # for up to 30 days after completion. To run an asynchronous report, you should follow these steps:
57
57
  #
58
- # * Begin a report by calling the report's Initiate API. There is a separate initiate API call for each report type.
58
+ # * Begin a report by calling the report's Initiate API.
59
59
  # * In the result of the Initiate API, you receive back a report's `id` value.
60
60
  # * Check the status of a report by calling `GetReport` and passing in the report's `id` value.
61
61
  # * When a report's status is `Completed`, call `DownloadReport` to retrieve the file.
@@ -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`.
@@ -1,3 +1,3 @@
1
1
  module AvaTax
2
- VERSION = '25.1.0'.freeze unless defined?(::AvaTax::VERSION)
2
+ VERSION = '25.3.0'.freeze unless defined?(::AvaTax::VERSION)
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require File.expand_path('../../lib/avatax', __FILE__)
2
2
  require 'rspec'
3
- require 'active_support'
4
3
  require 'yaml'
5
4
 
6
5
 
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.1.0
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-01-28 00:00:00.000000000 Z
11
+ date: 2025-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake