-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #160 from avadev/23.11.0
Update for 23.11.0
- Loading branch information
Showing
6 changed files
with
81 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
module AvaTax | ||
class Client | ||
module DomainControlVerification | ||
|
||
|
||
# Create Domain control verification | ||
# | ||
# | ||
# Swagger Name: AvaTaxClient | ||
# @param model [Object] | ||
# @return [Object] | ||
def create_dcv(model) path = "/api/v2/domain-control-verifications" | ||
post(path, model, {}, AvaTax::VERSION) end | ||
|
||
# Get domain control verifications by logged in user/domain name. | ||
# | ||
# | ||
# Swagger Name: AvaTaxClient | ||
# @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:* Id, Context, Token, Status, EmailId, CreatedOn, CreatedBy, UpdatedOn, UpdatedBy | ||
# @return [DcvViewModel[]] | ||
def filter_dcv(options={}) path = "/api/v2/domain-control-verifications" | ||
get(path, options, AvaTax::VERSION) end | ||
|
||
# Get domain control verification by domainControlVerificationId | ||
# | ||
# | ||
# Swagger Name: AvaTaxClient | ||
# @param domainControlVerificationId [String] | ||
# @return [Object] | ||
def get_dcv_by_id(domainControlVerificationId) path = "/api/v2/domain-control-verifications/#{domainControlVerificationId}" | ||
get(path, {}, AvaTax::VERSION) end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module AvaTax | ||
VERSION = '23.10.1'.freeze unless defined?(::AvaTax::VERSION) | ||
VERSION = '23.11.0'.freeze unless defined?(::AvaTax::VERSION) | ||
end |