avatax 25.1.0 → 25.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa1155a6296f49af8222f9bc8086c233f43b226f7c1a37ec9e9f24f7885eacd9
4
- data.tar.gz: 85c01a9cee7c89aa0426c4975b6fc71442d2ad4e5a938ad4439425e91a1dc42c
3
+ metadata.gz: 94f065be64d0097e1d4b9270cb43d4555ac48ad369f242a944e7bc5de907561e
4
+ data.tar.gz: 1c12d04062d1269200158dab3723e472e32819105d25ddf0ae3b023d767e2166
5
5
  SHA512:
6
- metadata.gz: f8618a1521529122a70b671637467ca05f6b81129bfc1b587a3a8883131125859c81f3dc4f894f2ce450aa02b272492909270627bde8c47265b88753843863e7
7
- data.tar.gz: 463d93fce3e936b6a6ac3ad6ce5453a34f1dd95162e46d3bfefdcc508857d87c720bdfa04240e7b36ff3c08878ef4c81bd236c7a0a3961f14d17fd7fc202ce7e
6
+ metadata.gz: 71505d82b3221f0c3667267883dec28c96094146ab54f6a64b16e18342970697cd4256ef1df7a73cdf152d8a9e6a7d72867719df9e93830922d207523b7de16a
7
+ data.tar.gz: 6efe968c9adbcd92d2853b807e557c9f4b6e5f6d17512e25d30214a0f9e32a9aed1ac8a53fd4b557b2fb6d6913d460f1ead5c5a344ddb267b54a858950e09572
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.
@@ -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.
@@ -1,3 +1,3 @@
1
1
  module AvaTax
2
- VERSION = '25.1.0'.freeze unless defined?(::AvaTax::VERSION)
2
+ VERSION = '25.2.2'.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.2.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-01-28 00:00:00.000000000 Z
11
+ date: 2025-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake