avatax 23.5.0 → 23.6.1

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: 86f4e768137dffab0a7952fd6f2ea86dba5c0af20c5f2efc626771df325b41af
4
- data.tar.gz: 22d11863fedef0034a3d90a8ca14043406d19fe46d88a56c6561e1fbaba07be3
3
+ metadata.gz: 495850eb2c0d245e185756aae4d2753b1cb2a07e18a88fc5ea9790f5323fdb9c
4
+ data.tar.gz: ea3832cdc0f463452416d74ecd061ff3cb81a5bafea0e8509ac421293f6a672f
5
5
  SHA512:
6
- metadata.gz: c5fb22d09783e9ae0a5b35119c247bce9f238e340146ad75fd797723c9ed10afaa9640020a9c78609ad1d29141d98355989be83f52cd969183ab6afb9f0956b3
7
- data.tar.gz: 7afd67ffc0f958cab45955c467cbec2441ae73a6640c20fe33e4a3fd743507ab4e6218ec0781793c5e29811910a25a8f7d253a25d74c7f281dd3fb10d31ffd43
6
+ metadata.gz: acd15ea0c82cfba6b5ac8e3c202c8df7565f0e3c0fc19920ef5835ebe46e5280a58d27b98ee48fcb8c0e0cda89f99783beeae01996dc46cfc790bb27b3bb5897
7
+ data.tar.gz: ee8671a5783506adaaab420c139d685db9eaf299f8128dd4da902b51355fb7744c2752105b344ab452cbd246232b1e7fa12567bc9c901867cb06a9403eabefac
@@ -483,7 +483,7 @@ module AvaTax
483
483
  # Swagger Name: AvaTaxClient
484
484
  # @param companyId [Integer] The company id.
485
485
  # @param itemId [Integer] The item id.
486
- # @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:* productCode, systemCode
486
+ # @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:* productCode, systemCode, IsPremium
487
487
  # @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.
488
488
  # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
489
489
  # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
@@ -46,26 +46,6 @@ module AvaTax
46
46
  def create_notifications(model) path = "/api/v2/notifications"
47
47
  post(path, model, {}, AvaTax::VERSION) end
48
48
 
49
- # Create Avalara-supported subscription (ServiceTypes)
50
- #
51
- # For Registrar Use Only
52
- # This API is for use by Avalara Registrar administrative users only.
53
- #
54
- # Create one service/subscription object.
55
- #
56
- # Returns the newly created Avalara-supported subscription (service) type.
57
- # This API is intended to be useful for adding new Avalara-supported subscription type (service type).
58
- # You may always contact Avalara's sales department for information on available products or services.
59
- #
60
- # ### Security Policies
61
- #
62
- # * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
63
- # Swagger Name: AvaTaxClient
64
- # @param model [Object] The subscription type object you wish to create.
65
- # @return [Object]
66
- def create_service_types(model) path = "/api/v2/servicetypes"
67
- post(path, model, {}, AvaTax::VERSION) end
68
-
69
49
  # Create a new subscription
70
50
  #
71
51
  # This API is for use by Avalara Registrar administrative users only.
@@ -124,23 +104,6 @@ module AvaTax
124
104
  def delete_notification(id) path = "/api/v2/notifications/#{id}"
125
105
  delete(path, {}, AvaTax::VERSION) end
126
106
 
127
- # Delete a single Subscription (ServiceTypes) object
128
- #
129
- # For Registrar Use Only
130
- # This API is for use by Avalara Registrar administrative users only.
131
- #
132
- # Marks the Subscription (ServiceTypes) object identified by this URL as deleted.
133
- # This API is useful for deleting an existing Avalara-supported subscription type (service type).
134
- #
135
- # ### Security Policies
136
- #
137
- # * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
138
- # Swagger Name: AvaTaxClient
139
- # @param id [Integer] The unique ID number of the Subscription object you wish to delete.
140
- # @return [ErrorDetail[]]
141
- def delete_service_type(id) path = "/api/v2/servicetypes/#{id}"
142
- delete(path, {}, AvaTax::VERSION) end
143
-
144
107
  # Delete a single subscription
145
108
  #
146
109
  # # For Registrar Use Only
@@ -242,25 +205,6 @@ module AvaTax
242
205
  def update_notification(id, model) path = "/api/v2/notifications/#{id}"
243
206
  put(path, model, {}, AvaTax::VERSION) end
244
207
 
245
- # Update existing Avalara-supported subscription (ServiceTypes)
246
- #
247
- # For Registrar Use Only
248
- # This API is for use by Avalara Registrar administrative users only.
249
- #
250
- # Returns the updated Avalara-supported service types.
251
- # This API is intended to be useful for updating an existing subscription(service) type detail.
252
- # You may always contact Avalara's sales department for information on available products or services.
253
- #
254
- # ### Security Policies
255
- #
256
- # * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin.
257
- # Swagger Name: AvaTaxClient
258
- # @param id [Integer] The unique ID number of the existing subscription type object to replace.
259
- # @param model [Object] The subscription type object to update.
260
- # @return [Object]
261
- def update_service_type(id, model) path = "/api/v2/servicetypes/#{id}"
262
- put(path, model, {}, AvaTax::VERSION) end
263
-
264
208
  # Update a single subscription
265
209
  #
266
210
  # # For Registrar Use Only
@@ -1,3 +1,3 @@
1
1
  module AvaTax
2
- VERSION = '23.5.0'.freeze unless defined?(::AvaTax::VERSION)
2
+ VERSION = '23.6.1'.freeze unless defined?(::AvaTax::VERSION)
3
3
  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: 23.5.0
4
+ version: 23.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Vorwaller
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-18 00:00:00.000000000 Z
11
+ date: 2023-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake