avatax 25.3.0 → 25.3.3

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: 63be416a65fc180fbe510d51a313d090b9f483cde1d2498de8a46eced6720957
4
- data.tar.gz: 529bf18e9f8e75c83274073b6a726f654414492a03638d68956dbb72e8aa619f
3
+ metadata.gz: 9508ea51c880c6d5dee5cd33bf392bcfe1ceb94d15f5d2a361744669999619c0
4
+ data.tar.gz: c69c43ea15a4a19bbfa16a41398b0a79a9f589561570fc1f28d3b9256ba98c8c
5
5
  SHA512:
6
- metadata.gz: e39a0d38a5f5586dc62d19549ab6e234a389b71e07e1f45e0af98e55acd403d21fd9b616f9953757b0e698b48ee013297f94157c7b9fc1b23b7a4a500f51f9d2
7
- data.tar.gz: 73f618e48d35f9ea26e5dd7946d6e2b289f5af50171606daebc79dff77f6655f91d556fb34091e627146d34d2a1cdda4a93979805d3699634492cf3fd2334378
6
+ metadata.gz: e26875ce9c8c8764c861907f2f28e538a965820b3df4399c035c3ab0e86a48d453d4ed2508633d077a2b8ac800d80833eba023bbe76b03a5e060245f32fb0315
7
+ data.tar.gz: 0a209ba299d7d5068a155e5ad9bd3dbb8413052ce1efbf5410507b14ea909624ffdd235af488000e78de3ba41a0b9796b00678ba2f9391636b4c9e2e91ffd5a0
@@ -6,26 +6,43 @@ on:
6
6
 
7
7
  jobs:
8
8
  build:
9
- name: Build + Publish
9
+ name: Build + Test + Publish
10
10
  runs-on: ubuntu-latest
11
11
  permissions:
12
12
  contents: read
13
13
  packages: write
14
14
 
15
15
  steps:
16
- - uses: actions/checkout@v2
17
- - name: Set up Ruby 2.6
18
- uses: ruby/setup-ruby@v1
19
- with:
20
- ruby-version: '2.6'
21
-
22
- - name: Publish to RubyGems
23
- run: |
24
- mkdir -p $HOME/.gem
25
- touch $HOME/.gem/credentials
26
- chmod 0600 $HOME/.gem/credentials
27
- printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
28
- gem build avatax.gemspec
29
- gem push *.gem
30
- env:
31
- GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
16
+ - uses: actions/checkout@v2
17
+
18
+ - name: Set up Ruby 2.6
19
+ uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: "2.6"
22
+ bundler-cache: true # Caches gems between runs
23
+
24
+ - name: Write AvaTax credentials to credentials.yaml
25
+ run: |
26
+ cat <<EOF > spec/credentials.yaml
27
+ endpoint: https://sandbox-rest.avatax.com
28
+ username: "${{ secrets.SANDBOX_USERNAME }}"
29
+ password: "${{ secrets.SANDBOX_PASSWORD }}"
30
+ EOF
31
+
32
+ - name: Install dependencies
33
+ run: bundle install
34
+
35
+ - name: Run RSpec tests
36
+ run: bundle exec rspec
37
+
38
+ - name: Publish to RubyGems
39
+ if: success() # Only runs if tests pass
40
+ run: |
41
+ mkdir -p $HOME/.gem
42
+ touch $HOME/.gem/credentials
43
+ chmod 0600 $HOME/.gem/credentials
44
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
45
+ gem build avatax.gemspec
46
+ gem push *.gem
47
+ env:
48
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,8 @@
1
+ include:
2
+ - project: "prodsec/security-ci-cd"
3
+ ref: release-0.1.7
4
+ file: "templates/security-ci-cd.yml"
5
+
6
+ sast:tests:
7
+ extends: .sast:tests
8
+ stage: testing:development
@@ -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
@@ -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 Tennessee tax holiday scenarios.
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 Tennessee tax holiday scenarios.
66
+ # NOTE: This API does not work for sales tax holiday scenarios.
67
67
  #
68
68
  # ### Security Policies
69
69
  #
@@ -18,6 +18,10 @@ module AvaTax
18
18
  request(:put, path, model, options, apiversion, headers)
19
19
  end
20
20
 
21
+ def patch(path, model, options={}, apiversion="", headers=Hash.new)
22
+ request(:patch, path, model, options, apiversion, headers)
23
+ end
24
+
21
25
  def delete(path, options={}, apiversion="", headers=Hash.new)
22
26
  request(:delete, path, nil, options, apiversion, headers)
23
27
  end
@@ -29,7 +33,7 @@ module AvaTax
29
33
  case method
30
34
  when :get, :delete
31
35
  request.url("#{encode_path(path)}?#{URI.encode_www_form(options)}")
32
- when :post, :put
36
+ when :post, :put, :patch
33
37
  request.url("#{encode_path(path)}?#{URI.encode_www_form(options)}")
34
38
  request.headers['Content-Type'] = 'application/json'
35
39
  request.body = model.to_json unless model.empty?
@@ -1,3 +1,3 @@
1
1
  module AvaTax
2
- VERSION = '25.3.0'.freeze unless defined?(::AvaTax::VERSION)
2
+ VERSION = '25.3.3'.freeze unless defined?(::AvaTax::VERSION)
3
3
  end
@@ -0,0 +1,51 @@
1
+ require File.expand_path('../../../spec_helper', __FILE__)
2
+
3
+ describe AvaTax::Client do
4
+ describe ".items" do
5
+ it "should create and update an item for the first company" do
6
+ # Get the first company
7
+ companies = @client.query_companies()
8
+ company = companies["value"][0]
9
+ company_id = company["id"]
10
+ puts "Using company ID: #{company_id}"
11
+
12
+ # Create a new item
13
+ item_code = "TEST_ITEM_#{Time.now.to_i}"
14
+ item_model = {
15
+ "itemCode" => item_code,
16
+ "description" => "Test Item Created via RSpec",
17
+ "taxCode" => "P0000000"
18
+ }
19
+
20
+ created_response = @client.create_items(company_id, [item_model])
21
+ created_item = created_response.first
22
+
23
+ # Assert item creation
24
+ expect(created_item).to be_a(Hash)
25
+ expect(created_item["itemCode"]).to eq(item_code)
26
+ expect(created_item["description"]).to eq("Test Item Created via RSpec")
27
+ expect(created_item["taxCode"]).to eq("P0000000")
28
+
29
+ puts "Created item: #{created_item}"
30
+
31
+ # Prepare JSON Patch operation
32
+ item_id = created_item["id"]
33
+ patch_operations = [
34
+ {
35
+ "op" => "replace",
36
+ "path" => "/description",
37
+ "value" => "Updated Description via RSpec"
38
+ }
39
+ ]
40
+
41
+ # Call patch_item
42
+ updated_item = @client.patch_item(company_id, item_id, patch_operations)
43
+
44
+ expect(updated_item).to be_a(Hash)
45
+ expect(updated_item["id"]).to eq(item_id)
46
+ expect(updated_item["description"]).to eq("Updated Description via RSpec")
47
+
48
+ puts "Updated item: #{updated_item}"
49
+ end
50
+ end
51
+ end
data/spec/spec_helper.rb CHANGED
@@ -16,12 +16,17 @@ AvaTax.configure do |config|
16
16
  end
17
17
  end
18
18
 
19
- client = AvaTax::Client.new({ :logger => true, :log_request_and_response_info => true })
19
+ client = AvaTax::Client.new({ logger: true, log_request_and_response_info: true })
20
20
  companies = client.query_companies
21
21
 
22
+ # Find the first active company manually
23
+ active_company = companies["value"].find { |company| company["isActive"] == true }
24
+
25
+ raise "No active company found" unless active_company
26
+
22
27
  RSpec.configure do |config|
23
28
  config.before {
24
29
  @client = client
25
- @company_code = companies["value"][0]["companyCode"]
30
+ @company_code = active_company["companyCode"]
26
31
  }
27
32
  end
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.3.0
4
+ version: 25.3.3
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-03-06 00:00:00.000000000 Z
11
+ date: 2025-03-31 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"
@@ -179,6 +180,7 @@ files:
179
180
  - lib/avatax/request.rb
180
181
  - lib/avatax/version.rb
181
182
  - spec/avatax/client/accounts_spec.rb
183
+ - spec/avatax/client/items_spec.rb
182
184
  - spec/avatax/client/transactions_spec.rb
183
185
  - spec/avatax/request_spec.rb
184
186
  - spec/avatax_spec.rb