Skip to content

Commit 0185290

Browse files
Merge pull request #153 from avadev/23.6.1
Update for 23.6.1
2 parents b7061ac + f0b64f9 commit 0185290

File tree

3 files changed

+2
-58
lines changed

3 files changed

+2
-58
lines changed

lib/avatax/client/items.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ def list_import_restrictions(companyId, itemCode, countryOfImport, options={})
483483
# Swagger Name: AvaTaxClient
484484
# @param companyId [Integer] The company id.
485485
# @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
487487
# @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.
488488
# @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
489489
# @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.

lib/avatax/client/registrar.rb

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -46,26 +46,6 @@ def create_account(model) path = "/api/v2/accounts"
4646
def create_notifications(model) path = "/api/v2/notifications"
4747
post(path, model, {}, AvaTax::VERSION) end
4848

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-
6949
# Create a new subscription
7050
#
7151
# This API is for use by Avalara Registrar administrative users only.
@@ -124,23 +104,6 @@ def delete_account(id) path = "/api/v2/accounts/#{id}"
124104
def delete_notification(id) path = "/api/v2/notifications/#{id}"
125105
delete(path, {}, AvaTax::VERSION) end
126106

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-
144107
# Delete a single subscription
145108
#
146109
# # For Registrar Use Only
@@ -242,25 +205,6 @@ def update_account(id, model) path = "/api/v2/accounts/#{id}"
242205
def update_notification(id, model) path = "/api/v2/notifications/#{id}"
243206
put(path, model, {}, AvaTax::VERSION) end
244207

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-
264208
# Update a single subscription
265209
#
266210
# # For Registrar Use Only

lib/avatax/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module AvaTax
2-
VERSION = '23.5.0'.freeze unless defined?(::AvaTax::VERSION)
2+
VERSION = '23.6.1'.freeze unless defined?(::AvaTax::VERSION)
33
end

0 commit comments

Comments
 (0)