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 +4 -4
- data/lib/avatax/api.rb +1 -0
- data/lib/avatax/client/certificates.rb +1 -1
- data/lib/avatax/client/customers.rb +42 -1
- data/lib/avatax/client/reports.rb +1 -1
- data/lib/avatax/version.rb +1 -1
- data/spec/spec_helper.rb +0 -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: 94f065be64d0097e1d4b9270cb43d4555ac48ad369f242a944e7bc5de907561e
|
4
|
+
data.tar.gz: 1c12d04062d1269200158dab3723e472e32819105d25ddf0ae3b023d767e2166
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71505d82b3221f0c3667267883dec28c96094146ab54f6a64b16e18342970697cd4256ef1df7a73cdf152d8a9e6a7d72867719df9e93830922d207523b7de16a
|
7
|
+
data.tar.gz: 6efe968c9adbcd92d2853b807e557c9f4b6e5f6d17512e25d30214a0f9e32a9aed1ac8a53fd4b557b2fb6d6913d460f1ead5c5a344ddb267b54a858950e09572
|
data/lib/avatax/api.rb
CHANGED
@@ -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,
|
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,
|
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.
|
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.
|
data/lib/avatax/version.rb
CHANGED
data/spec/spec_helper.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.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-
|
11
|
+
date: 2025-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|