Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for 21.8.0 #169

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
// Revision
//

[assembly: AssemblyVersion("21.7.1")]
[assembly: AssemblyFileVersion("21.7.1")]
[assembly: AssemblyVersion("21.8.0")]
[assembly: AssemblyFileVersion("21.8.0")]
40 changes: 24 additions & 16 deletions src/AvaTaxApi.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Avalara.AvaTax.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>Avalara.AvaTax</id>

<version>21.7.1</version>
<version>21.8.0</version>

<title>Avalara AvaTax SDK</title>
<description>Add world-class tax estimation and calculation to your project with Avalara's AvaTax suite of APIs and services.</description>
Expand Down
10 changes: 10 additions & 0 deletions src/enums/ErrorCodeId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,16 @@ public enum ErrorCodeId
/// </summary>
LicenseKeyNameAlreadyExistsForAccount = 612,

/// <summary>
///
/// </summary>
UserAlreadyExist = 613,

/// <summary>
///
/// </summary>
UserNotFound = 614,

/// <summary>
///
/// </summary>
Expand Down
5 changes: 5 additions & 0 deletions src/models/ItemTagDetailModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ public class ItemTagDetailModel
/// </summary>
public Int32? companyId { get; set; }

/// <summary>
/// The date when this record was created.
/// </summary>
public DateTime? createdDate { get; set; }


/// <summary>
/// Convert this object to a JSON string of itself
Expand Down
9 changes: 9 additions & 0 deletions src/models/NexusModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,15 @@ public class NexusModel
/// </summary>
public Int32? modifiedUserId { get; set; }

/// <summary>
/// The type group of nexus that this company is declaring
/// Use [ListTaxTypeGroups](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Definitions/ListTaxTypeGroups/) API for a list of nexus tax type groups.
///
/// This field is defined by Avalara. All Avalara-defined fields must match an Avalara-defined nexus object found by calling `ListNexus`.
/// NOTE: This optional field will trigger nexus subtype lookup when populated. When using make sure TaxTypeGroup matches corresponding NexusTaxTypeGroup
/// </summary>
public String taxTypeGroup { get; set; }

/// <summary>
/// The type of nexus that this company is declaring.Replaces NexusTypeId.
/// Use [ListNexusTaxTypeGroups](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Definitions/ListNexusTaxTypeGroups/) API for a list of nexus tax type groups.
Expand Down
2 changes: 1 addition & 1 deletion src/models/RemoveTransactionLineModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class RemoveTransactionLineModel
public DocumentType? documentType { get; set; }

/// <summary>
/// List of lines to be added
/// List of line numbers to be removed
/// </summary>
public List<String> lines { get; set; }

Expand Down
10 changes: 10 additions & 0 deletions src/models/TransactionBatchItemModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ namespace Avalara.AvaTax.RestClient
/// </summary>
public class TransactionBatchItemModel
{
/// <summary>
/// Represents a transaction memo.
/// </summary>
public String memo { get; set; }

/// <summary>
/// Represents a transaction to be created.
/// </summary>
Expand All @@ -32,6 +37,11 @@ public class TransactionBatchItemModel
/// </summary>
public BatchAdjustTransactionModel adjustTransactionModel { get; set; }

/// <summary>
/// Represents a transaction to be created or to be adjusted if exists.
/// </summary>
public CreateOrAdjustTransactionModel createOrAdjustTransactionModel { get; set; }

/// <summary>
/// Represents an existing transaction to be voided.
/// </summary>
Expand Down