Skip to content

Commit fd8d519

Browse files
Merge pull request #254 from avadev/24.11.2
Update for 24.11.2
2 parents bd9a114 + a72e217 commit fd8d519

14 files changed

+396
-138
lines changed

GlobalAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
// Revision
3131
//
3232

33-
[assembly: AssemblyVersion("24.10.0")]
34-
[assembly: AssemblyFileVersion("24.10.0")]
33+
[assembly: AssemblyVersion("24.11.2")]
34+
[assembly: AssemblyFileVersion("24.11.2")]

src/AvaTaxApi.cs

Lines changed: 58 additions & 58 deletions
Large diffs are not rendered by default.

src/Avalara.AvaTax.RestClient.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>Avalara.AvaTax</id>
55

6-
<version>24.10.0</version>
6+
<version>24.11.2</version>
77

88
<title>Avalara AvaTax SDK</title>
99
<description>Add world-class tax estimation and calculation to your project with Avalara's AvaTax suite of APIs and services.</description>

src/IAvaTaxClient.cs

Lines changed: 56 additions & 56 deletions
Large diffs are not rendered by default.

src/enums/ErrorCodeId.cs

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1541,6 +1541,16 @@ public enum ErrorCodeId
15411541
/// </summary>
15421542
TooManyItemIdsInTaxCodeClassificationRequest = 1742,
15431543

1544+
/// <summary>
1545+
///
1546+
/// </summary>
1547+
InvalidProductCodeLength = 1743,
1548+
1549+
/// <summary>
1550+
///
1551+
/// </summary>
1552+
InvalidProductCodeFormat = 1744,
1553+
15441554
/// <summary>
15451555
/// SendSales API errors
15461556
/// </summary>
@@ -1927,5 +1937,100 @@ public enum ErrorCodeId
19271937
/// </summary>
19281938
UserReconciliationError = 3004,
19291939

1940+
/// <summary>
1941+
/// Occurs when a patch operation is attempted on a field that is not allowed to be patched
1942+
/// </summary>
1943+
InvalidHttpPatchRequest = 3005,
1944+
1945+
/// <summary>
1946+
/// Occurs when a patch operation other than 'given' operation is performed for the fields
1947+
/// </summary>
1948+
UnsupportedPatchOperationError = 3006,
1949+
1950+
/// <summary>
1951+
/// Occurs when system code and country code does not have active mapping.
1952+
/// </summary>
1953+
SystemCodeAndCountryCodeMismatch = 3007,
1954+
1955+
/// <summary>
1956+
/// Occurs when multiple entries for system code and country code exists.
1957+
/// </summary>
1958+
DuplicateSystemAndCountryForItem = 3008,
1959+
1960+
/// <summary>
1961+
/// Avalara Gateway errors:
1962+
/// </summary>
1963+
NotFound = 4001,
1964+
1965+
/// <summary>
1966+
///
1967+
/// </summary>
1968+
Unexpected = 4002,
1969+
1970+
/// <summary>
1971+
///
1972+
/// </summary>
1973+
NoHostFound = 4003,
1974+
1975+
/// <summary>
1976+
///
1977+
/// </summary>
1978+
UnexpectedAuth = 4004,
1979+
1980+
/// <summary>
1981+
///
1982+
/// </summary>
1983+
SiteSelectionFailed = 4006,
1984+
1985+
/// <summary>
1986+
///
1987+
/// </summary>
1988+
DropDefaultUsername = 4007,
1989+
1990+
/// <summary>
1991+
///
1992+
/// </summary>
1993+
DropDefaultNotMigrated = 4008,
1994+
1995+
/// <summary>
1996+
///
1997+
/// </summary>
1998+
DropBearerAuth = 4009,
1999+
2000+
/// <summary>
2001+
///
2002+
/// </summary>
2003+
SiteSelectionError = 4010,
2004+
2005+
/// <summary>
2006+
///
2007+
/// </summary>
2008+
RateLimitExceeded = 4011,
2009+
2010+
/// <summary>
2011+
///
2012+
/// </summary>
2013+
NoHealthySite = 4012,
2014+
2015+
/// <summary>
2016+
///
2017+
/// </summary>
2018+
ClientDisconnected = 4013,
2019+
2020+
/// <summary>
2021+
///
2022+
/// </summary>
2023+
ServiceDisconnected = 4014,
2024+
2025+
/// <summary>
2026+
///
2027+
/// </summary>
2028+
ServiceTimeout = 4015,
2029+
2030+
/// <summary>
2031+
/// Error string from the service unknown
2032+
/// </summary>
2033+
UnexpectedError = -1,
2034+
19302035
}
19312036
}

src/enums/ReportSource.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,10 @@ public enum ReportSource
3535
/// </summary>
3636
RETURNSAPI = 2,
3737

38+
/// <summary>
39+
/// tax region and tax type
40+
/// </summary>
41+
TAXREGION = 3,
42+
3843
}
3944
}

src/enums/ReturnsLiabilityType.cs

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
using System;
2+
3+
/*
4+
* AvaTax API Client Library
5+
*
6+
* (c) 2004-2023 Avalara, Inc.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* @author Jonathan Wenger <[email protected]>
12+
* @author Sachin Baijal <[email protected]>
13+
* Swagger name: AvaTaxClient
14+
*/
15+
16+
namespace Avalara.AvaTax.RestClient
17+
{
18+
/// <summary>
19+
/// Defines returns liability type.
20+
/// </summary>
21+
public enum ReturnsLiabilityType
22+
{
23+
/// <summary>
24+
/// all
25+
/// </summary>
26+
ALL = 0,
27+
28+
/// <summary>
29+
/// original
30+
/// </summary>
31+
ORIGINAL = 1,
32+
33+
/// <summary>
34+
/// amend
35+
/// </summary>
36+
AMENDED = 2,
37+
38+
}
39+
}

src/enums/ReturnsReportType.cs

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
using System;
2+
3+
/*
4+
* AvaTax API Client Library
5+
*
6+
* (c) 2004-2023 Avalara, Inc.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* @author Jonathan Wenger <[email protected]>
12+
* @author Sachin Baijal <[email protected]>
13+
* Swagger name: AvaTaxClient
14+
*/
15+
16+
namespace Avalara.AvaTax.RestClient
17+
{
18+
/// <summary>
19+
/// Defines returns report type.
20+
/// </summary>
21+
public enum ReturnsReportType
22+
{
23+
/// <summary>
24+
/// liability summary return detail hospitality
25+
/// </summary>
26+
LIABILITYSUMMARYRETURNDETAILHOSPITALITY = 0,
27+
28+
/// <summary>
29+
/// liability summary return detail
30+
/// </summary>
31+
LIABILITYSUMMARYRETURNDETAIL = 1,
32+
33+
/// <summary>
34+
/// liability carry over credit
35+
/// </summary>
36+
LIABILITYCARRYOVERCREDIT = 2,
37+
38+
}
39+
}

src/models/DcvViewModel.cs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -52,26 +52,6 @@ public class DcvViewModel
5252
/// </summary>
5353
public String emailId { get; set; }
5454

55-
/// <summary>
56-
/// Domain control verification creation date
57-
/// </summary>
58-
public String createdOn { get; set; }
59-
60-
/// <summary>
61-
/// Domain control verification created by
62-
/// </summary>
63-
public String createdBy { get; set; }
64-
65-
/// <summary>
66-
/// Domain control verification update date
67-
/// </summary>
68-
public String updatedOn { get; set; }
69-
70-
/// <summary>
71-
/// Domain control verification update by
72-
/// </summary>
73-
public String updatedBy { get; set; }
74-
7555

7656
/// <summary>
7757
/// Convert this object to a JSON string of itself

src/models/ExportDocumentLineModel.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ public class ExportDocumentLineModel
138138
/// </summary>
139139
public ReportSource? reportSource { get; set; }
140140

141+
/// <summary>
142+
///
143+
/// </summary>
144+
public LiabilityParametersModel liabilityParameters { get; set; }
145+
141146
/// <summary>
142147
/// Defines the compression mode of the result file
143148
/// For compression, the accepted values are: NONE, GZIP

0 commit comments

Comments
 (0)