Skip to content

Commit

Permalink
Merge pull request #223 from avadev/23.3.1
Browse files Browse the repository at this point in the history
Update for 23.3.1
  • Loading branch information
svc-developer authored Mar 29, 2023
2 parents afef771 + 6cc2029 commit d56c5cc
Show file tree
Hide file tree
Showing 10 changed files with 822 additions and 732 deletions.
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("23.3.0")]
[assembly: AssemblyFileVersion("23.3.0")]
[assembly: AssemblyVersion("23.3.1")]
[assembly: AssemblyFileVersion("23.3.1")]
1,448 changes: 724 additions & 724 deletions src/AvaTaxApi.cs

Large diffs are not rendered by default.

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

<version>23.3.0</version>
<version>23.3.1</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
39 changes: 39 additions & 0 deletions src/enums/ChargedTo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
using System;

/*
* AvaTax API Client Library
*
* (c) 2004-2023 Avalara, Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Jonathan Wenger <[email protected]>
* @author Sachin Baijal <[email protected]>
* Swagger name: AvaTaxClient
*/

namespace Avalara.AvaTax.RestClient
{
/// <summary>
/// Charged To
/// </summary>
public enum ChargedTo
{
/// <summary>
/// Buyer
/// </summary>
Buyer = 0,

/// <summary>
/// Seller
/// </summary>
Seller = 1,

/// <summary>
/// ThirdParty
/// </summary>
ThirdParty = 2,

}
}
34 changes: 34 additions & 0 deletions src/enums/Compression.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
using System;

/*
* AvaTax API Client Library
*
* (c) 2004-2023 Avalara, Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Jonathan Wenger <[email protected]>
* @author Sachin Baijal <[email protected]>
* Swagger name: AvaTaxClient
*/

namespace Avalara.AvaTax.RestClient
{
/// <summary>
/// Defines compression
/// </summary>
public enum Compression
{
/// <summary>
/// none
/// </summary>
NONE = 0,

/// <summary>
/// gzip
/// </summary>
GZIP = 1,

}
}
5 changes: 5 additions & 0 deletions src/enums/ErrorCodeId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1506,6 +1506,11 @@ public enum ErrorCodeId
/// </summary>
NoItemsForClassification = 1736,

/// <summary>
///
/// </summary>
InvalidFileName = 1737,

/// <summary>
/// SendSales API errors
/// </summary>
Expand Down
5 changes: 0 additions & 5 deletions src/enums/ReportSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,5 @@ public enum ReportSource
/// </summary>
MONGODB = 1,

/// <summary>
/// snowflake dld
/// </summary>
SNOWFLAKE_DLD = 2,

}
}
6 changes: 6 additions & 0 deletions src/models/ExportDocumentLineModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,12 @@ public class ExportDocumentLineModel
/// </summary>
public ReportSource? reportSource { get; set; }

/// <summary>
/// Defines the compression mode of the result file
/// For compression, the accepted values are: NONE, GZIP
/// </summary>
public Compression? compression { get; set; }


/// <summary>
/// Convert this object to a JSON string of itself
Expand Down
6 changes: 6 additions & 0 deletions src/models/ReportParametersModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,12 @@ public class ReportParametersModel
/// </summary>
public String taxSubType { get; set; }

/// <summary>
/// Defines the compression mode of the result file
/// For compression, the accepted values are: NONE, GZIP
/// </summary>
public Compression? compression { get; set; }


/// <summary>
/// Convert this object to a JSON string of itself
Expand Down
5 changes: 5 additions & 0 deletions src/models/TransactionLineDetailModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,11 @@ public class TransactionLineDetailModel
/// </summary>
public LiabilityType? liabilityType { get; set; }

/// <summary>
/// ChargedTo identifies the party responsible for covering the tax. This field is used to filter taxes from reports and tax filings as appropriate.
/// </summary>
public ChargedTo? chargedTo { get; set; }

/// <summary>
/// ID of the AvaTax user creating the transaction. This field will be calculated by AvaTax based on the Company settings and the transaction details.
/// </summary>
Expand Down

0 comments on commit d56c5cc

Please sign in to comment.