diff --git a/GlobalAssemblyInfo.cs b/GlobalAssemblyInfo.cs index e8ab3c7..c10a16c 100644 --- a/GlobalAssemblyInfo.cs +++ b/GlobalAssemblyInfo.cs @@ -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")] diff --git a/src/AvaTaxApi.cs b/src/AvaTaxApi.cs index f306d20..a5da82c 100644 --- a/src/AvaTaxApi.cs +++ b/src/AvaTaxApi.cs @@ -17,7 +17,7 @@ * @author Sachin Baijal * @copyright 2004-2023 Avalara, Inc. * @license https://www.apache.org/licenses/LICENSE-2.0 - * @version 23.3.0 + * @version 23.3.1 * @link https://github.com/avadev/AvaTax-REST-V2-DotNet-SDK */ @@ -28,7 +28,7 @@ public partial class AvaTaxClient /// /// Returns the version number of the API used to generate this class /// - public static string API_VERSION { get { return "23.3.0"; } } + public static string API_VERSION { get { return "23.3.1"; } } #region Methods @@ -62,7 +62,7 @@ public LicenseKeyModel AccountResetLicenseKey(Int32 id, ResetLicenseKeyModel mod { var path = new AvaTaxPath("/api/v2/accounts/{id}/resetlicensekey"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -93,7 +93,7 @@ public AccountModel ActivateAccount(Int32 id, ActivateAccountModel model) { var path = new AvaTaxPath("/api/v2/accounts/{id}/activate"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -145,7 +145,7 @@ public FetchResult AuditAccount(Int32 id, DateTime? start, DateTime? path.AddQuery("end", endDate); path.AddQuery("$top", top); path.AddQuery("$skip", skip); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -176,7 +176,7 @@ public LicenseKeyModel CreateLicenseKey(Int32 id, AccountLicenseKeyModel model) { var path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -203,7 +203,7 @@ public List DeleteLicenseKey(Int32 id, String licensekeyname) var path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey/{licensekeyname}"); path.ApplyField("id", id); path.ApplyField("licensekeyname", licensekeyname); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -230,7 +230,7 @@ public AccountModel GetAccount(Int32 id, String include) var path = new AvaTaxPath("/api/v2/accounts/{id}"); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -262,7 +262,7 @@ public List GetAccountConfiguration(Int32 id) { var path = new AvaTaxPath("/api/v2/accounts/{id}/configuration"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -283,7 +283,7 @@ public AccountLicenseKeyModel GetLicenseKey(Int32 id, String licensekeyname) var path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey/{licensekeyname}"); path.ApplyField("id", id); path.ApplyField("licensekeyname", licensekeyname); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -304,7 +304,7 @@ public List GetLicenseKeys(Int32 id) { var path = new AvaTaxPath("/api/v2/accounts/{id}/licensekeys"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -344,7 +344,7 @@ public FetchResult QueryAccounts(String include, String filter, In path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -377,7 +377,7 @@ public List SetAccountConfiguration(Int32 id, List>("POST", path, model); } @@ -423,7 +423,7 @@ public AddressResolutionModel ResolveAddress(String line1, String line2, String path.AddQuery("postalCode", postalCode); path.AddQuery("country", country); path.AddQuery("textCase", textCase); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -449,7 +449,7 @@ public AddressResolutionModel ResolveAddress(String line1, String line2, String public AddressResolutionModel ResolveAddressPost(AddressValidationInfo model) { var path = new AvaTaxPath("/api/v2/addresses/resolve"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -469,7 +469,7 @@ public AdvancedRuleLookupFileModel CreateCompanyLookupFile(Int32 accountId, Int3 var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/companies/{companyId}/lookupFiles"); path.ApplyField("accountId", accountId); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -488,7 +488,7 @@ public List DeleteLookupFile(Int32 accountId, String id) var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -507,7 +507,7 @@ public FetchResult GetCompanyLookupFiles(Int32 acco var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/companies/{companyId}/lookupFiles"); path.ApplyField("accountId", accountId); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -526,7 +526,7 @@ public AdvancedRuleLookupFileModel GetLookupFile(Int32 accountId, String id) var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -546,7 +546,7 @@ public AdvancedRuleLookupFileModel UpdateLookupFile(Int32 accountId, String id, var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -568,7 +568,7 @@ public AdvancedRuleLookupFileModel UpdateLookupFile(Int32 accountId, String id, public List CreateAvaFileForms(List model) { var path = new AvaTaxPath("/api/v2/avafileforms"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -590,7 +590,7 @@ public List DeleteAvaFileForm(Int32 id) { var path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -612,7 +612,7 @@ public AvaFileFormModel GetAvaFileForm(Int32 id) { var path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -641,7 +641,7 @@ public FetchResult QueryAvaFileForms(String filter, Int32? top path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -665,7 +665,7 @@ public AvaFileFormModel UpdateAvaFileForm(Int32 id, AvaFileFormModel model) { var path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -699,7 +699,7 @@ public BatchModel CancelBatch(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}/cancel"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -739,7 +739,7 @@ public List CreateBatches(Int32 companyId, List model) { var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -777,7 +777,7 @@ public CreateTransactionBatchResponseModel CreateTransactionBatch(Int32 companyI { var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/transactions"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -809,7 +809,7 @@ public List DeleteBatch(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -834,7 +834,7 @@ public FileResult DownloadBatch(Int32 companyId, Int32 batchId, Int32 id) path.ApplyField("companyId", companyId); path.ApplyField("batchId", batchId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallFile("GET", path, null); } @@ -871,7 +871,7 @@ public BatchModel GetBatch(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -922,7 +922,7 @@ public FetchResult ListBatchesByCompany(Int32 companyId, String filt path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -968,7 +968,7 @@ public FetchResult QueryBatches(String filter, String include, Int32 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -1007,7 +1007,7 @@ public List CreateCertExpressInvitation(Int32 var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certexpressinvites"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -1049,7 +1049,7 @@ public CertExpressInvitationModel GetCertExpressInvitation(Int32 companyId, Stri path.ApplyField("customerCode", customerCode); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -1097,7 +1097,7 @@ public FetchResult ListCertExpressInvitations(Int32 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -1142,7 +1142,7 @@ public List CreateCertificates(Int32 companyId, Boolean? preVa var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates"); path.ApplyField("companyId", companyId); path.AddQuery("$preValidatedExemptionReason", preValidatedExemptionReason); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -1178,7 +1178,7 @@ public List DeleteCertificate(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -1219,7 +1219,7 @@ public FileResult DownloadCertificateImage(Int32 companyId, Int32 id, Int32? pag path.ApplyField("id", id); path.AddQuery("$page", page); path.AddQuery("$type", type); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallFile("GET", path, null); } @@ -1265,7 +1265,7 @@ public CertificateModel GetCertificate(Int32 companyId, Int32 id, String include path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -1293,7 +1293,7 @@ public ProvisionStatusModel GetCertificateSetup(Int32 companyId) { var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/setup"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -1331,7 +1331,7 @@ public FetchResult LinkAttributesToCertificate(Int32 var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes/link"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -1370,7 +1370,7 @@ public FetchResult LinkCustomersToCertificate(Int32 companyId, In var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/customers/link"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -1407,7 +1407,7 @@ public FetchResult ListAttributesForCertificate(Int32 var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -1447,7 +1447,7 @@ public FetchResult ListCustomersForCertificate(Int32 companyId, I path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -1499,7 +1499,7 @@ public FetchResult QueryCertificates(Int32 companyId, String i path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -1529,7 +1529,7 @@ public ProvisionStatusModel RequestCertificateSetup(Int32 companyId) { var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/setup"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -1567,7 +1567,7 @@ public FetchResult UnlinkAttributesFromCertificate(In var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes/unlink"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -1607,7 +1607,7 @@ public FetchResult UnlinkCustomersFromCertificate(Int32 companyId var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/customers/unlink"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -1642,7 +1642,7 @@ public CertificateModel UpdateCertificate(Int32 companyId, Int32 id, Certificate var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -1680,7 +1680,7 @@ public String UploadCertificateImage(Int32 companyId, Int32 id, FileResult file) var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attachment"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallString("POST", path, file); } @@ -1723,7 +1723,7 @@ public String CertifyIntegration(Int32 id) { var path = new AvaTaxPath("/api/v2/companies/{id}/certify"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallString("GET", path, null); } @@ -1757,7 +1757,7 @@ public String ChangeFilingStatus(Int32 id, FilingStatusChangeModel model) { var path = new AvaTaxPath("/api/v2/companies/{id}/filingstatus"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallString("POST", path, model); } @@ -1788,7 +1788,7 @@ public String ChangeFilingStatus(Int32 id, FilingStatusChangeModel model) public CompanyModel CompanyInitialize(CompanyInitializationModel model) { var path = new AvaTaxPath("/api/v2/companies/initialize"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -1812,7 +1812,7 @@ public CompanyModel CompanyInitialize(CompanyInitializationModel model) public List CreateCompanies(List model) { var path = new AvaTaxPath("/api/v2/companies"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -1844,7 +1844,7 @@ public List CreateCompanyParameters(Int32 companyId { var path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -1880,7 +1880,7 @@ public FundingStatusModel CreateFundingRequest(Int32 id, POABusinessUnit? busine path.ApplyField("id", id); path.AddQuery("businessUnit", businessUnit); path.AddQuery("subscriptionType", subscriptionType); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -1901,7 +1901,7 @@ public List DeleteCompany(Int32 id) { var path = new AvaTaxPath("/api/v2/companies/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -1929,7 +1929,7 @@ public List DeleteCompanyParameter(Int32 companyId, Int64 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -1954,7 +1954,7 @@ public FundingConfigurationModel FundingConfigurationByCompany(Int32 companyId) { var path = new AvaTaxPath("/api/v2/companies/{companyId}/funding/configuration"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -1981,7 +1981,7 @@ public List FundingConfigurationsByCompanyAndCurrency var path = new AvaTaxPath("/api/v2/companies/{companyId}/funding/configurations"); path.ApplyField("companyId", companyId); path.AddQuery("currency", currency); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2019,7 +2019,7 @@ public CompanyModel GetCompany(Int32 id, String include) var path = new AvaTaxPath("/api/v2/companies/{id}"); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -2051,7 +2051,7 @@ public List GetCompanyConfiguration(Int32 id) { var path = new AvaTaxPath("/api/v2/companies/{id}/configuration"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2080,7 +2080,7 @@ public CompanyParameterDetailModel GetCompanyParameterDetail(Int32 companyId, In var path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -2114,7 +2114,7 @@ public String GetFilingStatus(Int32 id) { var path = new AvaTaxPath("/api/v2/companies/{id}/filingstatus"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallString("GET", path, null); } @@ -2143,7 +2143,7 @@ public List ListACHEntryDetailsForCompany(Int32 id, Int32 p path.ApplyField("id", id); path.ApplyField("periodyear", periodyear); path.ApplyField("periodmonth", periodmonth); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2181,7 +2181,7 @@ public FetchResult ListCompanyParameterDetails(Int3 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2206,7 +2206,7 @@ public List ListFundingRequestsByCompany(Int32 id) { var path = new AvaTaxPath("/api/v2/companies/{id}/funding"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2227,7 +2227,7 @@ public List ListFundingRequestsByCompany(Int32 id) public FetchResult ListMrsCompanies() { var path = new AvaTaxPath("/api/v2/companies/mrs"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2272,7 +2272,7 @@ public FetchResult QueryCompanies(String include, String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2305,7 +2305,7 @@ public List SetCompanyConfiguration(Int32 id, List>("POST", path, model); } @@ -2337,7 +2337,7 @@ public CompanyModel UpdateCompany(Int32 id, CompanyModel model) { var path = new AvaTaxPath("/api/v2/companies/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -2367,7 +2367,7 @@ public CompanyParameterDetailModel UpdateCompanyParameterDetail(Int32 companyId, var path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -2402,7 +2402,7 @@ public ComplianceJurisdictionRateModel QueryTaxAuthorityJurisdictionRates(Int32? path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -2426,7 +2426,7 @@ public List CreateContacts(Int32 companyId, List mod { var path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -2449,7 +2449,7 @@ public List DeleteContact(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -2474,7 +2474,7 @@ public ContactModel GetContact(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -2506,7 +2506,7 @@ public FetchResult ListContactsByCompany(Int32 companyId, String f path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2538,7 +2538,7 @@ public FetchResult QueryContacts(String filter, Int32? top, Int32? path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2566,7 +2566,7 @@ public ContactModel UpdateContact(Int32 companyId, Int32 id, ContactModel model) var path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -2603,7 +2603,7 @@ public List CreateCustomers(Int32 companyId, List { var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -2638,7 +2638,7 @@ public CustomerModel DeleteCustomer(Int32 companyId, String customerCode) var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("DELETE", path, null); } @@ -2681,7 +2681,7 @@ public CustomerModel GetCustomer(Int32 companyId, String customerCode, String in path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -2720,7 +2720,7 @@ public FetchResult LinkAttributesToCustomer(Int32 compan var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes/link"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("PUT", path, model); } @@ -2756,7 +2756,7 @@ public FetchResult LinkCertificatesToCustomer(Int32 companyId, var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certificates/link"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -2793,7 +2793,7 @@ public CustomerModel LinkShipToCustomersToBillCustomer(Int32 companyId, String c var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/billto/{code}/shipto/link"); path.ApplyField("companyId", companyId); path.ApplyField("code", code); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -2831,7 +2831,7 @@ public FetchResult ListAttributesForCustomer(Int32 compa var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2880,7 +2880,7 @@ public FetchResult ListCertificatesForCustomer(Int32 companyId path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -2922,7 +2922,7 @@ public ExemptionStatusModel ListValidCertificatesForCustomer(Int32 companyId, St path.ApplyField("customerCode", customerCode); path.ApplyField("country", country); path.ApplyField("region", region); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -2970,7 +2970,7 @@ public FetchResult QueryCustomers(Int32 companyId, String include path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3009,7 +3009,7 @@ public FetchResult UnlinkAttributesFromCustomer(Int32 co var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes/unlink"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("PUT", path, model); } @@ -3045,7 +3045,7 @@ public FetchResult UnlinkCertificatesFromCustomer(Int32 compan var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certificates/unlink"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -3081,7 +3081,7 @@ public CustomerModel UpdateCustomer(Int32 companyId, String customerCode, Custom var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -3104,7 +3104,7 @@ public List CreateDataSources(Int32 companyId, List>("POST", path, model); } @@ -3128,7 +3128,7 @@ public List DeleteDataSource(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -3152,7 +3152,7 @@ public DataSourceModel GetDataSourceById(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -3182,7 +3182,7 @@ public FetchResult ListDataSources(Int32 companyId, String filt path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3213,7 +3213,7 @@ public FetchResult QueryDataSources(String filter, Int32? top, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3238,7 +3238,7 @@ public DataSourceModel UpdateDataSource(Int32 companyId, Int32 id, DataSourceMod var path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -3270,7 +3270,7 @@ public FetchResult GetCrossBorderCode(String country, String hsCode var path = new AvaTaxPath("/api/v2/definitions/crossborder/{country}/{hsCode}/hierarchy"); path.ApplyField("country", country); path.ApplyField("hsCode", hsCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3296,7 +3296,7 @@ public FetchResult GetLoginVerifierByForm(String form, St path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3319,7 +3319,7 @@ public FetchResult ListAllMarketplaceLocations(String filter, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3347,7 +3347,7 @@ public FetchResult ListAvaFileForms(String filter, Int32? top, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3378,7 +3378,7 @@ public FetchResult ListCertificateAttributes(Int32? c path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3407,7 +3407,7 @@ public FetchResult ListCertificateExemptReasons(String fil path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3436,7 +3436,7 @@ public FetchResult ListCertificateExposureZones(String filter path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3461,7 +3461,7 @@ public FetchResult ListClassificationParam path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3486,7 +3486,7 @@ public FetchResult ListCommunicationsServiceTypes(Int path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3510,7 +3510,7 @@ public FetchResult ListCommunicationsTransac path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3534,7 +3534,7 @@ public FetchResult ListCommunicationsTSPairs(String f path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3559,7 +3559,7 @@ public FetchResult ListCountries(String filter, Int32? top, Int path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3589,7 +3589,7 @@ public FetchResult ListCoverLetters(String filter, Int32? top, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3627,7 +3627,7 @@ public FetchResult ListCrossBorderCodes(String country, String hsCo path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3651,7 +3651,7 @@ public FetchResult ListCrossBorderCodes(String country, String hsCo public FetchResult ListCrossBorderSections() { var path = new AvaTaxPath("/api/v2/definitions/crossborder/sections"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3677,7 +3677,7 @@ public FetchResult ListCurrencies(String filter, Int32? top, Int3 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3704,7 +3704,7 @@ public FetchResult ListEntityUseCodes(String filter, Int32? path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3728,7 +3728,7 @@ public FetchResult ListFilingFrequencies(String filter, In path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3756,7 +3756,7 @@ public FetchResult ListJurisdictions(String filter, Int32? to path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3799,7 +3799,7 @@ public FetchResult ListJurisdictionsByAddress(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3839,7 +3839,7 @@ public FetchResult ListJurisdictionsByR path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3862,7 +3862,7 @@ public List ListJurisdictionTypesByRateTypeTaxTypeMapping(String country path.ApplyField("taxTypeId", taxTypeId); path.ApplyField("taxSubTypeId", taxSubTypeId); path.AddQuery("rateTypeId", rateTypeId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3908,7 +3908,7 @@ public FetchResult ListLocationQuestionsByAddress(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3933,7 +3933,7 @@ public FetchResult ListLoginVerifiers(String filter, Int3 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3956,7 +3956,7 @@ public FetchResult ListMarketplaceLocations(String mar path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -3981,7 +3981,7 @@ public FetchResult ListNexus(String filter, Int32? top, Int32? skip, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4037,7 +4037,7 @@ public FetchResult ListNexusByAddress(String line1, String line2, St path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4064,7 +4064,7 @@ public FetchResult ListNexusByCountry(String country, String filter, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4093,7 +4093,7 @@ public FetchResult ListNexusByCountryAndRegion(String country, Strin path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4124,7 +4124,7 @@ public NexusByTaxFormModel ListNexusByFormCode(String formCode) { var path = new AvaTaxPath("/api/v2/definitions/nexus/byform/{formCode}"); path.ApplyField("formCode", formCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -4151,7 +4151,7 @@ public FetchResult ListNexusByTaxTypeGroup(String taxTypeGroup, Stri path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4175,7 +4175,7 @@ public FetchResult ListNexusTaxTypeGroups(String filter, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4199,7 +4199,7 @@ public FetchResult ListNoticeCustomerFundingOp path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4223,7 +4223,7 @@ public FetchResult ListNoticeCustomerTypes(String filte path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4247,7 +4247,7 @@ public FetchResult ListNoticeFilingtypes(String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4271,7 +4271,7 @@ public FetchResult ListNoticePriorities(String filter, Int3 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4295,7 +4295,7 @@ public FetchResult ListNoticeReasons(String filter, Int32? to path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4319,7 +4319,7 @@ public FetchResult ListNoticeResponsibilities(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4343,7 +4343,7 @@ public FetchResult ListNoticeRootCauses(String filter, Int path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4367,7 +4367,7 @@ public FetchResult ListNoticeStatuses(String filter, Int32? t path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4391,7 +4391,7 @@ public FetchResult ListNoticeTypes(String filter, Int32? top, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4416,7 +4416,7 @@ public FetchResult ListParameters(String filter, Int32? top, Int path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4460,7 +4460,7 @@ public FetchResult ListParametersByItem(String companyCode, Stri path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4485,7 +4485,7 @@ public FetchResult ListParametersUsage(String filter, Int32 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4505,7 +4505,7 @@ public FetchResult ListPermissions(Int32? top, Int32? skip) var path = new AvaTaxPath("/api/v2/definitions/permissions"); path.AddQuery("$top", top); path.AddQuery("$skip", skip); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4528,7 +4528,7 @@ public FetchResult ListPostalCodes(String filter, Int32? top, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4559,7 +4559,7 @@ public FetchResult ListPreferredPrograms(String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4587,7 +4587,7 @@ public FetchResult ListProductClassificationSy path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); path.AddQuery("$countryCode", countryCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4625,7 +4625,7 @@ public FetchResult ListProductClassificationSy path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); path.AddQuery("$countryCode", countryCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4651,7 +4651,7 @@ public FetchResult ListRateTypesByCountry(String country, String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4681,7 +4681,7 @@ public FetchResult ListRateTypesByCountryTaxTypeTaxSubType(Strin path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4706,7 +4706,7 @@ public FetchResult ListRegions(String filter, Int32? top, Int32? path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4733,7 +4733,7 @@ public FetchResult ListRegionsByCountry(String country, String f path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4770,7 +4770,7 @@ public FetchResult ListRegionsByCountryAndTaxTypeAndTaxSubTypeAn path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4794,7 +4794,7 @@ public FetchResult ListResourceFileTypes(String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4819,7 +4819,7 @@ public FetchResult ListReturnsParametersUsage(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4844,7 +4844,7 @@ public FetchResult ListSecurityRoles(String filter, Int32? to path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4870,7 +4870,7 @@ public FetchResult ListSubscriptionTypes(String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4893,7 +4893,7 @@ public FetchResult ListTags(String filter, Int32? top, Int32? skip, S path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4917,7 +4917,7 @@ public FetchResult ListTaxAuthorities(String filter, Int32? t path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4943,7 +4943,7 @@ public FetchResult ListTaxAuthorityForms(String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4967,7 +4967,7 @@ public FetchResult ListTaxAuthorityTypes(String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -4998,7 +4998,7 @@ public FetchResult ListTaxCodes(String filter, Int32? top, Int32? path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5019,7 +5019,7 @@ public TaxCodeTypesModel ListTaxCodeTypes(Int32? top, Int32? skip) var path = new AvaTaxPath("/api/v2/definitions/taxcodetypes"); path.AddQuery("$top", top); path.AddQuery("$skip", skip); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -5043,7 +5043,7 @@ public FetchResult ListTaxForms(String filter, Int32? top, Int3 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5067,7 +5067,7 @@ public FetchResult ListTaxSubTypes(String filter, Int32? top, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5097,7 +5097,7 @@ public FetchResult ListTaxSubTypesByCountryAndTaxType(String co path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5125,7 +5125,7 @@ public FetchResult ListTaxSubTypesByJurisdictionAndRegion(Strin path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5149,7 +5149,7 @@ public FetchResult ListTaxTypeGroups(String filter, Int32? to path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5174,7 +5174,7 @@ public FetchResult ListTaxTypesByNexusAndCountry(String country, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5203,7 +5203,7 @@ public FetchResult ListUnitOfBasisByCountryAndTaxTypeAndTaxSub path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5228,7 +5228,7 @@ public FetchResult ListUnitOfMeasurement(String filter, Int32? top, In path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5254,7 +5254,7 @@ public List CreateDistanceThreshold(Int32 company { var path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -5281,7 +5281,7 @@ public List DeleteDistanceThreshold(Int32 companyId, Int64 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -5308,7 +5308,7 @@ public CompanyDistanceThresholdModel GetDistanceThreshold(Int32 companyId, Int64 var path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -5343,7 +5343,7 @@ public FetchResult ListDistanceThresholds(Int32 c path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5379,7 +5379,7 @@ public FetchResult QueryDistanceThresholds(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5410,7 +5410,7 @@ public CompanyDistanceThresholdModel UpdateDistanceThreshold(Int32 companyId, In var path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -5434,7 +5434,7 @@ public ECommerceTokenOutputModel CreateECommerceToken(Int32 companyId, CreateECo { var path = new AvaTaxPath("/api/v2/companies/{companyId}/ecommercetokens"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -5458,7 +5458,7 @@ public FetchResult RefreshECommerceToken(Int32 compan { var path = new AvaTaxPath("/api/v2/companies/{companyId}/ecommercetokens"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("PUT", path, model); } @@ -5479,7 +5479,7 @@ public FirmClientLinkageOutputModel ApproveFirmClientLinkage(Int32 id) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/approve"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -5508,7 +5508,7 @@ public FirmClientLinkageOutputModel ApproveFirmClientLinkage(Int32 id) public FirmClientLinkageOutputModel CreateAndLinkNewFirmClientAccount(NewFirmClientAccountRequestModel model) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/createandlinkclient"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -5528,7 +5528,7 @@ public FirmClientLinkageOutputModel CreateAndLinkNewFirmClientAccount(NewFirmCli public FirmClientLinkageOutputModel CreateFirmClientLinkage(FirmClientLinkageInputModel model) { var path = new AvaTaxPath("/api/v2/firmclientlinkages"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -5549,7 +5549,7 @@ public List DeleteFirmClientLinkage(Int32 id) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -5570,7 +5570,7 @@ public FirmClientLinkageOutputModel GetFirmClientLinkage(Int32 id) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -5591,7 +5591,7 @@ public FetchResult ListFirmClientLinkage(String fi { var path = new AvaTaxPath("/api/v2/firmclientlinkages"); path.AddQuery("$filter", filter); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -5612,7 +5612,7 @@ public FirmClientLinkageOutputModel RejectFirmClientLinkage(Int32 id) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/reject"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -5633,7 +5633,7 @@ public FirmClientLinkageOutputModel ResetFirmClientLinkage(Int32 id) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/reset"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -5654,7 +5654,7 @@ public FirmClientLinkageOutputModel RevokeFirmClientLinkage(Int32 id) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/revoke"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -5683,7 +5683,7 @@ public FirmClientLinkageOutputModel RevokeFirmClientLinkage(Int32 id) public NewAccountModel RequestFreeTrial(FreeTrialRequestModel model) { var path = new AvaTaxPath("/api/v2/accounts/freetrials/request"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -5720,7 +5720,7 @@ public FundingStatusModel ActivateFundingRequest(Int64 id, POABusinessUnit? busi path.ApplyField("id", id); path.AddQuery("businessUnit", businessUnit); path.AddQuery("subscriptionType", subscriptionType); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -5755,7 +5755,7 @@ public FundingStatusModel FundingRequestStatus(Int32 id, POABusinessUnit? busine path.ApplyField("id", id); path.AddQuery("businessUnit", businessUnit); path.AddQuery("subscriptionType", subscriptionType); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -5782,7 +5782,7 @@ public List BatchDeleteItemClassifications(Int32 companyId, Int64 i var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/classifications"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -5811,7 +5811,7 @@ public List BatchDeleteItemParameters(Int32 companyId, Int64 itemId var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -5841,7 +5841,7 @@ public ItemBulkUploadOutputModel BulkUploadItems(Int32 companyId, ItemBulkUpload { var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/upload"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -5871,7 +5871,7 @@ public List CreateItemClassifications(Int32 compa var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/classifications"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -5905,7 +5905,7 @@ public List CreateItemParameters(Int32 companyId, Int64 item var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -5935,7 +5935,7 @@ public List CreateItems(Int32 companyId, List model) { var path = new AvaTaxPath("/api/v2/companies/{companyId}/items"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -5961,7 +5961,7 @@ public List CreateItemTags(Int32 companyId, Int32 item var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/tags"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -5987,7 +5987,7 @@ public ItemTaxCodeClassificationRequestOutputModel CreateTaxCodeClassificationRe { var path = new AvaTaxPath("/api/v2/companies/{companyId}/classificationrequests/taxcode"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -6024,7 +6024,7 @@ public List DeleteCatalogueItem(Int32 companyId, String itemCode) var path = new AvaTaxPath("/api/v2/companies/{companyId}/itemcatalogue/{itemCode}"); path.ApplyField("companyId", companyId); path.ApplyField("itemCode", itemCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -6055,7 +6055,7 @@ public List DeleteItem(Int32 companyId, Int64 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -6084,7 +6084,7 @@ public List DeleteItemClassification(Int32 companyId, Int64 itemId, path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -6115,7 +6115,7 @@ public List DeleteItemParameter(Int32 companyId, Int64 itemId, Int6 path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -6142,7 +6142,7 @@ public List DeleteItemTag(Int32 companyId, Int64 itemId, Int32 item path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("itemTagDetailId", itemTagDetailId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -6167,7 +6167,7 @@ public List DeleteItemTags(Int32 companyId, Int64 itemId) var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/tags"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -6204,7 +6204,7 @@ public FetchResult GetClassif path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6235,7 +6235,7 @@ public ItemModel GetItem(Int32 companyId, Int64 id, String include) path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -6264,7 +6264,7 @@ public ItemClassificationOutputModel GetItemClassification(Int32 companyId, Int6 path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -6295,7 +6295,7 @@ public ItemParameterModel GetItemParameter(Int32 companyId, Int64 itemId, Int64 path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -6326,7 +6326,7 @@ public FetchResult GetItemTags(Int32 companyId, Int64 path.AddQuery("$filter", filter); path.AddQuery("$top", top); path.AddQuery("$skip", skip); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6360,7 +6360,7 @@ public ItemPremiumClassificationOutputModel GetPremiumClassification(Int32 compa path.ApplyField("companyId", companyId); path.ApplyField("itemCode", itemCode); path.ApplyField("systemCode", systemCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -6395,7 +6395,7 @@ public FetchResult GetTaxCodeRecommendati path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6435,7 +6435,7 @@ public FetchResult ListImportRestrictions(Int32 comp path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6473,7 +6473,7 @@ public FetchResult ListItemClassifications(Int32 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6513,7 +6513,7 @@ public FetchResult ListItemParameters(Int32 companyId, Int64 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6565,7 +6565,7 @@ public FetchResult ListItemsByCompany(Int32 companyId, String filter, path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); path.AddQuery("tagName", tagName); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6604,7 +6604,7 @@ public FetchResult QueryItems(String filter, String include, Int32? t path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6647,7 +6647,7 @@ public FetchResult QueryItemsByTag(Int32 companyId, String tag, Strin path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6675,7 +6675,7 @@ public ItemCatalogueOutputModel SyncItemCatalogue(Int32 companyId, List("POST", path, model); } @@ -6708,7 +6708,7 @@ public SyncItemsResponseModel SyncItems(Int32 companyId, SyncItemsRequestModel m { var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/sync"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -6743,7 +6743,7 @@ public ItemModel UpdateItem(Int32 companyId, Int64 id, ItemModel model) var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -6775,7 +6775,7 @@ public ItemClassificationOutputModel UpdateItemClassification(Int32 companyId, I path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -6807,7 +6807,7 @@ public ItemParameterModel UpdateItemParameter(Int32 companyId, Int64 itemId, Int path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -6834,7 +6834,7 @@ public List CreateJurisdictionOverrides(Int32 account { var path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides"); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -6857,7 +6857,7 @@ public List DeleteJurisdictionOverride(Int32 accountId, Int32 id) var path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -6885,7 +6885,7 @@ public JurisdictionOverrideModel GetJurisdictionOverride(Int32 accountId, Int32 var path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -6924,7 +6924,7 @@ public FetchResult ListJurisdictionOverridesByAccount path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6961,7 +6961,7 @@ public FetchResult QueryJurisdictionOverrides(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -6985,7 +6985,7 @@ public JurisdictionOverrideModel UpdateJurisdictionOverride(Int32 accountId, Int var path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -7019,7 +7019,7 @@ public List CreateLocationParameters(Int32 companyId, In var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{locationId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("locationId", locationId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -7041,7 +7041,7 @@ public List CreateLocations(Int32 companyId, List { var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -7064,7 +7064,7 @@ public List DeleteLocation(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -7095,7 +7095,7 @@ public List DeleteLocationParameter(Int32 companyId, Int32 location path.ApplyField("companyId", companyId); path.ApplyField("locationId", locationId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -7129,7 +7129,7 @@ public LocationModel GetLocation(Int32 companyId, Int32 id, String include) path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -7160,7 +7160,7 @@ public LocationParameterModel GetLocationParameter(Int32 companyId, Int32 locati path.ApplyField("companyId", companyId); path.ApplyField("locationId", locationId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -7200,7 +7200,7 @@ public FetchResult ListLocationParameters(Int32 companyI path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -7242,7 +7242,7 @@ public FetchResult ListLocationsByCompany(Int32 companyId, String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -7283,7 +7283,7 @@ public FetchResult QueryLocations(String filter, String include, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -7309,7 +7309,7 @@ public LocationModel UpdateLocation(Int32 companyId, Int32 id, LocationModel mod var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -7341,7 +7341,7 @@ public LocationParameterModel UpdateLocationParameter(Int32 companyId, Int32 loc path.ApplyField("companyId", companyId); path.ApplyField("locationId", locationId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -7366,7 +7366,7 @@ public LocationValidationModel ValidateLocation(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}/validate"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -7410,7 +7410,7 @@ public MultiDocumentModel AdjustMultiDocumentTransaction(String code, DocumentTy path.ApplyField("code", code); path.ApplyField("type", type); path.AddQuery("include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -7455,7 +7455,7 @@ public AuditMultiDocumentModel AuditMultiDocumentTransaction(String code, Docume var path = new AvaTaxPath("/api/v2/transactions/multidocument/{code}/type/{type}/audit"); path.ApplyField("code", code); path.ApplyField("type", type); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -7491,7 +7491,7 @@ public AuditMultiDocumentModel AuditMultiDocumentTransaction(String code, Docume public MultiDocumentModel CommitMultiDocumentTransaction(CommitMultiDocumentModel model) { var path = new AvaTaxPath("/api/v2/transactions/multidocument/commit"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -7553,7 +7553,7 @@ public MultiDocumentModel CreateMultiDocumentTransaction(String include, CreateM { var path = new AvaTaxPath("/api/v2/transactions/multidocument"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -7598,7 +7598,7 @@ public MultiDocumentModel GetMultiDocumentTransactionByCodeAndType(String code, path.ApplyField("code", code); path.ApplyField("type", type); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -7650,7 +7650,7 @@ public MultiDocumentModel GetMultiDocumentTransactionById(Int64 id, String inclu var path = new AvaTaxPath("/api/v2/transactions/multidocument/{id}"); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -7706,7 +7706,7 @@ public FetchResult ListMultiDocumentTransactions(String filt path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -7776,7 +7776,7 @@ public MultiDocumentModel RefundMultiDocumentTransaction(String code, DocumentTy path.ApplyField("code", code); path.ApplyField("type", type); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -7810,7 +7810,7 @@ public MultiDocumentModel RefundMultiDocumentTransaction(String code, DocumentTy public MultiDocumentModel VerifyMultiDocumentTransaction(VerifyMultiDocumentModel model) { var path = new AvaTaxPath("/api/v2/transactions/multidocument/verify"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -7851,7 +7851,7 @@ public MultiDocumentModel VoidMultiDocumentTransaction(String code, DocumentType var path = new AvaTaxPath("/api/v2/transactions/multidocument/{code}/type/{type}/void"); path.ApplyField("code", code); path.ApplyField("type", type); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -7891,7 +7891,7 @@ public List CreateNexus(Int32 companyId, List model) { var path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -7924,7 +7924,7 @@ public List CreateNexusParameters(Int32 companyId, In var path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{nexusId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -7960,7 +7960,7 @@ public List DeclareNexusByAddress(Int32 companyId, List>("POST", path, model); } @@ -7992,7 +7992,7 @@ public List DeleteNexus(Int32 companyId, Int32 id, Boolean? cascade path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("cascadeDelete", cascadeDelete); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8022,7 +8022,7 @@ public List DeleteNexusParameter(Int32 companyId, Int32 nexusId, In path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8050,7 +8050,7 @@ public List DeleteNexusParameters(Int32 companyId, Int32 nexusId) var path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{nexusId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8082,7 +8082,7 @@ public NexusModel GetNexus(Int32 companyId, Int32 id, String include) path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -8118,7 +8118,7 @@ public NexusByTaxFormModel GetNexusByFormCode(Int32 companyId, String formCode, path.ApplyField("companyId", companyId); path.ApplyField("formCode", formCode); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -8148,7 +8148,7 @@ public NexusParameterDetailModel GetNexusParameter(Int32 companyId, Int32 nexusI path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -8189,7 +8189,7 @@ public FetchResult ListNexusByCompany(Int32 companyId, String filter path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -8232,7 +8232,7 @@ public FetchResult ListNexusByCompanyAndTaxTypeGroup(Int32 companyId path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -8271,7 +8271,7 @@ public FetchResult ListNexusParameters(Int32 companyI path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -8310,7 +8310,7 @@ public FetchResult QueryNexus(String filter, String include, Int32? path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -8352,7 +8352,7 @@ public NexusModel UpdateNexus(Int32 companyId, Int32 id, NexusModel model) var path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -8384,7 +8384,7 @@ public NexusParameterDetailModel UpdateNexusParameter(Int32 companyId, Int32 nex path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -8405,7 +8405,7 @@ public NexusParameterDetailModel UpdateNexusParameter(Int32 companyId, Int32 nex public NoticeResponsibilityModel CreateNoticeResponsibilityType(CreateNoticeResponsibilityTypeModel model) { var path = new AvaTaxPath("/api/v2/notices/responsibilities"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -8426,7 +8426,7 @@ public NoticeResponsibilityModel CreateNoticeResponsibilityType(CreateNoticeResp public NoticeRootCauseModel CreateNoticeRootCauseType(CreateNoticeRootCauseTypeModel model) { var path = new AvaTaxPath("/api/v2/notices/rootcauses"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -8447,7 +8447,7 @@ public List DeleteNoticeResponsibilityType(Int32 responsibilityId) { var path = new AvaTaxPath("/api/v2/notices/responsibilities/{responsibilityId}"); path.ApplyField("responsibilityId", responsibilityId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8468,7 +8468,7 @@ public List DeleteNoticeRootCauseType(Int32 rootCauseId) { var path = new AvaTaxPath("/api/v2/notices/rootcauses/{rootCauseId}"); path.ApplyField("rootCauseId", rootCauseId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8502,7 +8502,7 @@ public NotificationModel DismissNotification(Int64 id) { var path = new AvaTaxPath("/api/v2/notifications/{id}/dismiss"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, null); } @@ -8530,7 +8530,7 @@ public NotificationModel GetNotification(Int64 id) { var path = new AvaTaxPath("/api/v2/notifications/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -8567,7 +8567,7 @@ public FetchResult ListNotifications(String filter, Int32? to path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -8602,7 +8602,7 @@ public FetchResult ListNotifications(String filter, Int32? to public NewAccountModel RequestNewAccount(NewAccountRequestModel model) { var path = new AvaTaxPath("/api/v2/accounts/request"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -8628,7 +8628,7 @@ public OfferModel RequestNewEntitlement(Int32 id, String offer) var path = new AvaTaxPath("/api/v2/accounts/{id}/entitlements/{offer}"); path.ApplyField("id", id); path.ApplyField("offer", offer); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -8652,7 +8652,7 @@ public OfferModel RequestNewEntitlement(Int32 id, String offer) public List CreateAccount(AccountModel model) { var path = new AvaTaxPath("/api/v2/accounts"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -8685,7 +8685,7 @@ public List CreateAccount(AccountModel model) public List CreateNotifications(List model) { var path = new AvaTaxPath("/api/v2/notifications"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -8712,7 +8712,7 @@ public List CreateNotifications(List model public SubscriptionTypeModel CreateServiceTypes(SubscriptionTypeModel model) { var path = new AvaTaxPath("/api/v2/servicetypes"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -8738,7 +8738,7 @@ public List CreateSubscriptions(Int32 accountId, List>("POST", path, model); } @@ -8763,7 +8763,7 @@ public List DeleteAccount(Int32 id) { var path = new AvaTaxPath("/api/v2/accounts/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8794,7 +8794,7 @@ public List DeleteNotification(Int64 id) { var path = new AvaTaxPath("/api/v2/notifications/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8819,7 +8819,7 @@ public List DeleteServiceType(Int32 id) { var path = new AvaTaxPath("/api/v2/servicetypes/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8845,7 +8845,7 @@ public List DeleteSubscription(Int32 accountId, Int32 id) var path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -8878,7 +8878,7 @@ public FetchResult ListServiceTypes(String filter, Int32? path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -8908,7 +8908,7 @@ public String ResetPassword(Int32 userId, Boolean? isUndoMigrateRequest, SetPass var path = new AvaTaxPath("/api/v2/passwords/{userId}/reset"); path.ApplyField("userId", userId); path.AddQuery("isUndoMigrateRequest", isUndoMigrateRequest); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallString("POST", path, model); } @@ -8933,7 +8933,7 @@ public AccountModel UpdateAccount(Int32 id, AccountModel model) { var path = new AvaTaxPath("/api/v2/accounts/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -8965,7 +8965,7 @@ public NotificationModel UpdateNotification(Int64 id, NotificationModel model) { var path = new AvaTaxPath("/api/v2/notifications/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -8992,7 +8992,7 @@ public SubscriptionTypeModel UpdateServiceType(Int32 id, SubscriptionTypeModel m { var path = new AvaTaxPath("/api/v2/servicetypes/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -9023,7 +9023,7 @@ public SubscriptionModel UpdateSubscription(Int32 accountId, Int32 id, Subscript var path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -9057,7 +9057,7 @@ public FileResult DownloadReport(Int64 id) { var path = new AvaTaxPath("/api/v2/reports/{id}/attachment"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallFile("GET", path, null); } @@ -9084,7 +9084,7 @@ public ReportModel GetReport(Int64 id) { var path = new AvaTaxPath("/api/v2/reports/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -9125,7 +9125,7 @@ public List InitiateExportDocumentLineReport(Int32 companyId, Expor { var path = new AvaTaxPath("/api/v2/companies/{companyId}/reports/exportdocumentline/initiate"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -9162,7 +9162,7 @@ public FetchResult ListReports(Int32? companyId, String pageKey, In path.AddQuery("pageKey", pageKey); path.AddQuery("$skip", skip); path.AddQuery("$top", top); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -9198,7 +9198,7 @@ public List CreateSettings(Int32 companyId, List mod { var path = new AvaTaxPath("/api/v2/companies/{companyId}/settings"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -9230,7 +9230,7 @@ public List DeleteSetting(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -9262,7 +9262,7 @@ public SettingModel GetSetting(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -9305,7 +9305,7 @@ public FetchResult ListSettingsByCompany(Int32 companyId, String f path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -9346,7 +9346,7 @@ public FetchResult QuerySettings(String filter, String include, In path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -9383,7 +9383,7 @@ public SettingModel UpdateSetting(Int32 companyId, Int32 id, SettingModel model) var path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -9408,7 +9408,7 @@ public SubscriptionModel GetSubscription(Int32 accountId, Int32 id) var path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -9442,7 +9442,7 @@ public FetchResult ListSubscriptionsByAccount(Int32 accountId path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -9474,7 +9474,7 @@ public FetchResult QuerySubscriptions(String filter, Int32? t path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -9500,7 +9500,7 @@ public List CreateTaxCodes(Int32 companyId, List mod { var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -9523,7 +9523,7 @@ public List DeleteTaxCode(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -9550,7 +9550,7 @@ public TaxCodeModel GetTaxCode(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -9588,7 +9588,7 @@ public FetchResult ListTaxCodesByCompany(Int32 companyId, String f path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -9624,7 +9624,7 @@ public FetchResult QueryTaxCodes(String filter, String include, In path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -9654,7 +9654,7 @@ public TaxCodeModel UpdateTaxCode(Int32 companyId, Int32 id, TaxCodeModel model) var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -9697,7 +9697,7 @@ public TaxCodeModel UpdateTaxCode(Int32 companyId, Int32 id, TaxCodeModel model) public FileResult BuildTaxContentFile(PointOfSaleDataRequestModel model) { var path = new AvaTaxPath("/api/v2/pointofsaledata/build"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallFile("POST", path, model); } @@ -9751,7 +9751,7 @@ public FileResult BuildTaxContentFileForLocation(Int32 companyId, Int32 id, Date path.AddQuery("format", format); path.AddQuery("partnerId", partnerId); path.AddQuery("includeJurisCodes", includeJurisCodes); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallFile("GET", path, null); } @@ -9813,7 +9813,7 @@ public FileResult DownloadTaxRatesByZipCode(DateTime date, String region) var path = new AvaTaxPath("/api/v2/taxratesbyzipcode/download/{date}"); path.ApplyField("date", date.ToString("o")); path.AddQuery("region", region); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallFile("GET", path, null); } @@ -9876,7 +9876,7 @@ public TaxRateModel TaxRatesByAddress(String line1, String line2, String line3, path.AddQuery("region", region); path.AddQuery("postalCode", postalCode); path.AddQuery("country", country); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -9924,7 +9924,7 @@ public TaxRateModel TaxRatesByPostalCode(String country, String postalCode) var path = new AvaTaxPath("/api/v2/taxrates/bypostalcode"); path.AddQuery("country", country); path.AddQuery("postalCode", postalCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -9958,7 +9958,7 @@ public List CreateTaxRules(Int32 companyId, List mod { var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -9993,7 +9993,7 @@ public List DeleteTaxRule(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -10028,7 +10028,7 @@ public TaxRuleModel GetTaxRule(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -10074,7 +10074,7 @@ public FetchResult ListTaxRules(Int32 companyId, String filter, St path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -10118,7 +10118,7 @@ public FetchResult QueryTaxRules(String filter, String include, In path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -10154,7 +10154,7 @@ public TaxRuleModel UpdateTaxRule(Int32 companyId, Int32 id, TaxRuleModel model) var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -10196,7 +10196,7 @@ public TransactionModel AddLines(String include, AddTransactionLineModel model) { var path = new AvaTaxPath("/api/v2/companies/transactions/lines/add"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -10253,7 +10253,7 @@ public TransactionModel AdjustTransaction(String companyCode, String transaction path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -10299,7 +10299,7 @@ public AuditTransactionModel AuditTransaction(String companyCode, String transac var path = new AvaTaxPath("/api/v2/companies/{companyCode}/transactions/{transactionCode}/audit"); path.ApplyField("companyCode", companyCode); path.ApplyField("transactionCode", transactionCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -10347,7 +10347,7 @@ public AuditTransactionModel AuditTransactionWithType(String companyCode, String path.ApplyField("companyCode", companyCode); path.ApplyField("transactionCode", transactionCode); path.ApplyField("documentType", documentType); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -10374,7 +10374,7 @@ public AuditTransactionModel AuditTransactionWithType(String companyCode, String public BulkLockTransactionResult BulkLockTransaction(BulkLockTransactionModel model) { var path = new AvaTaxPath("/api/v2/transactions/lock"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -10431,7 +10431,7 @@ public TransactionModel ChangeTransactionCode(String companyCode, String transac path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -10486,7 +10486,7 @@ public TransactionModel CommitTransaction(String companyCode, String transaction path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -10541,7 +10541,7 @@ public TransactionModel CreateOrAdjustTransaction(String include, CreateOrAdjust { var path = new AvaTaxPath("/api/v2/transactions/createoradjust"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -10603,7 +10603,7 @@ public TransactionModel CreateTransaction(String include, CreateTransactionModel { var path = new AvaTaxPath("/api/v2/transactions/create"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -10642,7 +10642,7 @@ public TransactionModel DeleteLines(String include, RemoveTransactionLineModel m { var path = new AvaTaxPath("/api/v2/companies/transactions/lines/delete"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -10662,7 +10662,7 @@ public VarianceResponseModel GetAllVarianceReportByCompanyCode(String companyCod { var path = new AvaTaxPath("/api/v2/companies/{companyCode}/AllVariance"); path.ApplyField("companyCode", companyCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -10715,7 +10715,7 @@ public TransactionModel GetTransactionByCode(String companyCode, String transact path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -10751,7 +10751,7 @@ public TransactionModel GetTransactionByCodeAndType(String companyCode, String t path.ApplyField("transactionCode", transactionCode); path.ApplyField("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -10790,7 +10790,7 @@ public TransactionModel GetTransactionById(Int64 id, String include) var path = new AvaTaxPath("/api/v2/transactions/{id}"); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -10812,7 +10812,7 @@ public VarianceResponseModel GetVarianceReportByCompanyCodeByTransactionId(Strin var path = new AvaTaxPath("/api/v2/companies/{companyCode}/transactions/{transactionId}/variance"); path.ApplyField("companyCode", companyCode); path.ApplyField("transactionId", transactionId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -10874,7 +10874,7 @@ public FetchResult ListTransactionsByCompany(String companyCod path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -10931,7 +10931,7 @@ public TransactionModel LockTransaction(String companyCode, String transactionCo path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -11000,7 +11000,7 @@ public TransactionModel RefundTransaction(String companyCode, String transaction path.AddQuery("$include", include); path.AddQuery("documentType", documentType); path.AddQuery("useTaxDateOverride", useTaxDateOverride); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -11055,7 +11055,7 @@ public TransactionModel SettleTransaction(String companyCode, String transaction path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -11104,7 +11104,7 @@ public TransactionModel UncommitTransaction(String companyCode, String transacti path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -11150,7 +11150,7 @@ public TransactionModel UnvoidTransaction(String companyCode, String transaction path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, null); } @@ -11171,7 +11171,7 @@ public VarianceResponseModel VarianceReport(String companyCode, List("POST", path, model); } @@ -11225,7 +11225,7 @@ public TransactionModel VerifyTransaction(String companyCode, String transaction path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -11281,7 +11281,7 @@ public TransactionModel VoidTransaction(String companyCode, String transactionCo path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -11305,7 +11305,7 @@ public List CreateUPCs(Int32 companyId, List model) { var path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -11329,7 +11329,7 @@ public List DeleteUPC(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -11354,7 +11354,7 @@ public UPCModel GetUPC(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -11390,7 +11390,7 @@ public FetchResult ListUPCsByCompany(Int32 companyId, String filter, S path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -11424,7 +11424,7 @@ public FetchResult QueryUPCs(String filter, String include, Int32? top path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -11452,7 +11452,7 @@ public UPCModel UpdateUPC(Int32 companyId, Int32 id, UPCModel model) var path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -11476,7 +11476,7 @@ public List DeleteUserDefinedField(Int32 companyId, Int64 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/userdefinedfields/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -11500,7 +11500,7 @@ public FetchResult ListUserDefinedFieldsByCompanyI path.ApplyField("companyId", companyId); path.AddQuery("udfType", udfType); path.AddQuery("allowDefaults", allowDefaults); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -11525,7 +11525,7 @@ public CompanyUserDefinedFieldModel UpdateUserDefinedField(Int32 companyId, Int6 var path = new AvaTaxPath("/api/v2/companies/{companyId}/userdefinedfields"); path.ApplyField("companyId", companyId); path.AddQuery("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("POST", path, model); } @@ -11551,7 +11551,7 @@ public CompanyUserDefinedFieldModel UpdateUserDefinedField(Int32 companyId, Int6 public String ChangePassword(PasswordChangeModel model) { var path = new AvaTaxPath("/api/v2/passwords"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCallString("PUT", path, model); } @@ -11581,7 +11581,7 @@ public List CreateUsers(Int32 accountId, List model) { var path = new AvaTaxPath("/api/v2/accounts/{accountId}/users"); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("POST", path, model); } @@ -11609,7 +11609,7 @@ public List DeleteUser(Int32 id, Int32 accountId) var path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}"); path.ApplyField("id", id); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("DELETE", path, null); } @@ -11639,7 +11639,7 @@ public UserModel GetUser(Int32 id, Int32 accountId, String include) path.ApplyField("id", id); path.ApplyField("accountId", accountId); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -11676,7 +11676,7 @@ public UserEntitlementModel GetUserEntitlements(Int32 id, Int32 accountId) var path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}/entitlements"); path.ApplyField("id", id); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -11718,7 +11718,7 @@ public FetchResult ListUsersByAccount(Int32 accountId, String include path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -11760,7 +11760,7 @@ public FetchResult QueryUsers(String include, String filter, Int32? t path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -11787,7 +11787,7 @@ public UserModel UpdateUser(Int32 id, Int32 accountId, UserModel model) var path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}"); path.ApplyField("id", id); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("PUT", path, model); } @@ -11811,7 +11811,7 @@ public SubscriptionModel GetMySubscription(String serviceTypeId) { var path = new AvaTaxPath("/api/v2/utilities/subscriptions/{serviceTypeId}"); path.ApplyField("serviceTypeId", serviceTypeId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -11833,7 +11833,7 @@ public SubscriptionModel GetMySubscription(String serviceTypeId) public FetchResult ListMySubscriptions() { var path = new AvaTaxPath("/api/v2/utilities/subscriptions"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall>("GET", path, null); } @@ -11867,7 +11867,7 @@ public FetchResult ListMySubscriptions() public PingResultModel Ping() { var path = new AvaTaxPath("/api/v2/utilities/ping"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID,"23.3.1"); return RestCall("GET", path, null); } @@ -12149,7 +12149,7 @@ public async Task AccountResetLicenseKeyAsync(Int32 id, ResetLi { var path = new AvaTaxPath("/api/v2/accounts/{id}/resetlicensekey"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -12181,7 +12181,7 @@ public async Task ActivateAccountAsync(Int32 id, ActivateAccountMo { var path = new AvaTaxPath("/api/v2/accounts/{id}/activate"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -12224,7 +12224,7 @@ public async Task> AuditAccountAsync(Int32 id, DateTime? path.AddQuery("end", end); path.AddQuery("$top", top); path.AddQuery("$skip", skip); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -12256,7 +12256,7 @@ public async Task CreateLicenseKeyAsync(Int32 id, AccountLicens { var path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -12284,7 +12284,7 @@ public async Task> DeleteLicenseKeyAsync(Int32 id, String lice var path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey/{licensekeyname}"); path.ApplyField("id", id); path.ApplyField("licensekeyname", licensekeyname); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -12312,7 +12312,7 @@ public async Task GetAccountAsync(Int32 id, String include) var path = new AvaTaxPath("/api/v2/accounts/{id}"); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -12345,7 +12345,7 @@ public async Task> GetAccountConfigurationAsync( { var path = new AvaTaxPath("/api/v2/accounts/{id}/configuration"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -12367,7 +12367,7 @@ public async Task GetLicenseKeyAsync(Int32 id, String li var path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey/{licensekeyname}"); path.ApplyField("id", id); path.ApplyField("licensekeyname", licensekeyname); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -12389,7 +12389,7 @@ public async Task> GetLicenseKeysAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/accounts/{id}/licensekeys"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -12430,7 +12430,7 @@ public async Task> QueryAccountsAsync(String include, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -12464,7 +12464,7 @@ public async Task> SetAccountConfigurationAsync( { var path = new AvaTaxPath("/api/v2/accounts/{id}/configuration"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -12511,7 +12511,7 @@ public async Task ResolveAddressAsync(String line1, Stri path.AddQuery("postalCode", postalCode); path.AddQuery("country", country); path.AddQuery("textCase", textCase); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -12538,7 +12538,7 @@ public async Task ResolveAddressAsync(String line1, Stri public async Task ResolveAddressPostAsync(AddressValidationInfo model) { var path = new AvaTaxPath("/api/v2/addresses/resolve"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -12559,7 +12559,7 @@ public async Task CreateCompanyLookupFileAsync(Int3 var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/companies/{companyId}/lookupFiles"); path.ApplyField("accountId", accountId); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -12579,7 +12579,7 @@ public async Task> DeleteLookupFileAsync(Int32 accountId, Stri var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -12599,7 +12599,7 @@ public async Task> GetCompanyLookupFile var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/companies/{companyId}/lookupFiles"); path.ApplyField("accountId", accountId); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -12619,7 +12619,7 @@ public async Task GetLookupFileAsync(Int32 accountI var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -12640,7 +12640,7 @@ public async Task UpdateLookupFileAsync(Int32 accou var path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -12663,7 +12663,7 @@ public async Task UpdateLookupFileAsync(Int32 accou public async Task> CreateAvaFileFormsAsync(List model) { var path = new AvaTaxPath("/api/v2/avafileforms"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -12686,7 +12686,7 @@ public async Task> DeleteAvaFileFormAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -12709,7 +12709,7 @@ public async Task GetAvaFileFormAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -12739,7 +12739,7 @@ public async Task> QueryAvaFileFormsAsync(String f path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -12764,7 +12764,7 @@ public async Task UpdateAvaFileFormAsync(Int32 id, AvaFileForm { var path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -12799,7 +12799,7 @@ public async Task CancelBatchAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}/cancel"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -12840,7 +12840,7 @@ public async Task> CreateBatchesAsync(Int32 companyId, List>("POST", path, model).ConfigureAwait(false); } @@ -12879,7 +12879,7 @@ public async Task CreateTransactionBatchAsy { var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/transactions"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -12912,7 +12912,7 @@ public async Task> DeleteBatchAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -12938,7 +12938,7 @@ public async Task DownloadBatchAsync(Int32 companyId, Int32 batchId, path.ApplyField("companyId", companyId); path.ApplyField("batchId", batchId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallFileAsync("GET", path, null).ConfigureAwait(false); } @@ -12976,7 +12976,7 @@ public async Task GetBatchAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -13028,7 +13028,7 @@ public async Task> ListBatchesByCompanyAsync(Int32 compa path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -13075,7 +13075,7 @@ public async Task> QueryBatchesAsync(String filter, Stri path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -13115,7 +13115,7 @@ public async Task> CreateCertExpressInvit var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certexpressinvites"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -13158,7 +13158,7 @@ public async Task GetCertExpressInvitationAsync(Int3 path.ApplyField("customerCode", customerCode); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -13207,7 +13207,7 @@ public async Task> ListCertExpressInvita path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -13253,7 +13253,7 @@ public async Task> CreateCertificatesAsync(Int32 companyI var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates"); path.ApplyField("companyId", companyId); path.AddQuery("$preValidatedExemptionReason", preValidatedExemptionReason); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -13290,7 +13290,7 @@ public async Task> DeleteCertificateAsync(Int32 companyId, Int var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -13332,7 +13332,7 @@ public async Task DownloadCertificateImageAsync(Int32 companyId, Int path.ApplyField("id", id); path.AddQuery("$page", page); path.AddQuery("$type", type); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallFileAsync("GET", path, null).ConfigureAwait(false); } @@ -13379,7 +13379,7 @@ public async Task GetCertificateAsync(Int32 companyId, Int32 i path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -13408,7 +13408,7 @@ public async Task GetCertificateSetupAsync(Int32 companyId { var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/setup"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -13447,7 +13447,7 @@ public async Task> LinkAttributesToCertif var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes/link"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -13487,7 +13487,7 @@ public async Task> LinkCustomersToCertificateAsync(In var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/customers/link"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -13525,7 +13525,7 @@ public async Task> ListAttributesForCerti var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -13566,7 +13566,7 @@ public async Task> ListCustomersForCertificateAsync(I path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -13619,7 +13619,7 @@ public async Task> QueryCertificatesAsync(Int32 co path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -13650,7 +13650,7 @@ public async Task RequestCertificateSetupAsync(Int32 compa { var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/setup"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -13689,7 +13689,7 @@ public async Task> UnlinkAttributesFromCe var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes/unlink"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -13730,7 +13730,7 @@ public async Task> UnlinkCustomersFromCertificateAsyn var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/customers/unlink"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -13766,7 +13766,7 @@ public async Task UpdateCertificateAsync(Int32 companyId, Int3 var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -13805,7 +13805,7 @@ public async Task UploadCertificateImageAsync(Int32 companyId, Int32 id, var path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attachment"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallStringAsync("POST", path, file).ConfigureAwait(false); } @@ -13849,7 +13849,7 @@ public async Task CertifyIntegrationAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/companies/{id}/certify"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallStringAsync("GET", path, null).ConfigureAwait(false); } @@ -13884,7 +13884,7 @@ public async Task ChangeFilingStatusAsync(Int32 id, FilingStatusChangeMo { var path = new AvaTaxPath("/api/v2/companies/{id}/filingstatus"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallStringAsync("POST", path, model).ConfigureAwait(false); } @@ -13916,7 +13916,7 @@ public async Task ChangeFilingStatusAsync(Int32 id, FilingStatusChangeMo public async Task CompanyInitializeAsync(CompanyInitializationModel model) { var path = new AvaTaxPath("/api/v2/companies/initialize"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -13941,7 +13941,7 @@ public async Task CompanyInitializeAsync(CompanyInitializationMode public async Task> CreateCompaniesAsync(List model) { var path = new AvaTaxPath("/api/v2/companies"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -13974,7 +13974,7 @@ public async Task> CreateCompanyParametersAsyn { var path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -14011,7 +14011,7 @@ public async Task CreateFundingRequestAsync(Int32 id, POABus path.ApplyField("id", id); path.AddQuery("businessUnit", businessUnit); path.AddQuery("subscriptionType", subscriptionType); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -14033,7 +14033,7 @@ public async Task> DeleteCompanyAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/companies/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -14062,7 +14062,7 @@ public async Task> DeleteCompanyParameterAsync(Int32 companyId var path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -14088,7 +14088,7 @@ public async Task FundingConfigurationByCompanyAsync( { var path = new AvaTaxPath("/api/v2/companies/{companyId}/funding/configuration"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -14116,7 +14116,7 @@ public async Task> FundingConfigurationsByCompan var path = new AvaTaxPath("/api/v2/companies/{companyId}/funding/configurations"); path.ApplyField("companyId", companyId); path.AddQuery("currency", currency); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14155,7 +14155,7 @@ public async Task GetCompanyAsync(Int32 id, String include) var path = new AvaTaxPath("/api/v2/companies/{id}"); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -14188,7 +14188,7 @@ public async Task> GetCompanyConfigurationAsync( { var path = new AvaTaxPath("/api/v2/companies/{id}/configuration"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14218,7 +14218,7 @@ public async Task GetCompanyParameterDetailAsync(In var path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -14253,7 +14253,7 @@ public async Task GetFilingStatusAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/companies/{id}/filingstatus"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallStringAsync("GET", path, null).ConfigureAwait(false); } @@ -14283,7 +14283,7 @@ public async Task> ListACHEntryDetailsForCompanyAsync( path.ApplyField("id", id); path.ApplyField("periodyear", periodyear); path.ApplyField("periodmonth", periodmonth); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14322,7 +14322,7 @@ public async Task> ListCompanyParameter path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14348,7 +14348,7 @@ public async Task> ListFundingRequestsByCompanyAsync(In { var path = new AvaTaxPath("/api/v2/companies/{id}/funding"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14370,7 +14370,7 @@ public async Task> ListFundingRequestsByCompanyAsync(In public async Task> ListMrsCompaniesAsync() { var path = new AvaTaxPath("/api/v2/companies/mrs"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14416,7 +14416,7 @@ public async Task> QueryCompaniesAsync(String include, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14450,7 +14450,7 @@ public async Task> SetCompanyConfigurationAsync( { var path = new AvaTaxPath("/api/v2/companies/{id}/configuration"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -14483,7 +14483,7 @@ public async Task UpdateCompanyAsync(Int32 id, CompanyModel model) { var path = new AvaTaxPath("/api/v2/companies/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -14514,7 +14514,7 @@ public async Task UpdateCompanyParameterDetailAsync var path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -14550,7 +14550,7 @@ public async Task QueryTaxAuthorityJurisdiction path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -14575,7 +14575,7 @@ public async Task> CreateContactsAsync(Int32 companyId, List< { var path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -14599,7 +14599,7 @@ public async Task> DeleteContactAsync(Int32 companyId, Int32 i var path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -14625,7 +14625,7 @@ public async Task GetContactAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -14658,7 +14658,7 @@ public async Task> ListContactsByCompanyAsync(Int32 co path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14691,7 +14691,7 @@ public async Task> QueryContactsAsync(String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -14720,7 +14720,7 @@ public async Task UpdateContactAsync(Int32 companyId, Int32 id, Co var path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -14758,7 +14758,7 @@ public async Task> CreateCustomersAsync(Int32 companyId, Lis { var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -14794,7 +14794,7 @@ public async Task DeleteCustomerAsync(Int32 companyId, String cus var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("DELETE", path, null).ConfigureAwait(false); } @@ -14838,7 +14838,7 @@ public async Task GetCustomerAsync(Int32 companyId, String custom path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -14878,7 +14878,7 @@ public async Task> LinkAttributesToCustomerA var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes/link"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("PUT", path, model).ConfigureAwait(false); } @@ -14915,7 +14915,7 @@ public async Task> LinkCertificatesToCustomerAsync var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certificates/link"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -14953,7 +14953,7 @@ public async Task LinkShipToCustomersToBillCustomerAsync(Int32 co var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/billto/{code}/shipto/link"); path.ApplyField("companyId", companyId); path.ApplyField("code", code); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -14992,7 +14992,7 @@ public async Task> ListAttributesForCustomer var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15042,7 +15042,7 @@ public async Task> ListCertificatesForCustomerAsyn path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15085,7 +15085,7 @@ public async Task ListValidCertificatesForCustomerAsync(In path.ApplyField("customerCode", customerCode); path.ApplyField("country", country); path.ApplyField("region", region); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -15134,7 +15134,7 @@ public async Task> QueryCustomersAsync(Int32 companyI path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15174,7 +15174,7 @@ public async Task> UnlinkAttributesFromCusto var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes/unlink"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("PUT", path, model).ConfigureAwait(false); } @@ -15211,7 +15211,7 @@ public async Task> UnlinkCertificatesFromCustomerA var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certificates/unlink"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -15248,7 +15248,7 @@ public async Task UpdateCustomerAsync(Int32 companyId, String cus var path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}"); path.ApplyField("companyId", companyId); path.ApplyField("customerCode", customerCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -15272,7 +15272,7 @@ public async Task> CreateDataSourcesAsync(Int32 companyId, { var path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -15297,7 +15297,7 @@ public async Task> DeleteDataSourceAsync(Int32 companyId, Int3 var path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -15322,7 +15322,7 @@ public async Task GetDataSourceByIdAsync(Int32 companyId, Int32 var path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -15353,7 +15353,7 @@ public async Task> ListDataSourcesAsync(Int32 compa path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15385,7 +15385,7 @@ public async Task> QueryDataSourcesAsync(String fil path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15411,7 +15411,7 @@ public async Task UpdateDataSourceAsync(Int32 companyId, Int32 var path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -15444,7 +15444,7 @@ public async Task> GetCrossBorderCodeAsync(String count var path = new AvaTaxPath("/api/v2/definitions/crossborder/{country}/{hsCode}/hierarchy"); path.ApplyField("country", country); path.ApplyField("hsCode", hsCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15471,7 +15471,7 @@ public async Task> GetLoginVerifierByFormAsyn path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15495,7 +15495,7 @@ public async Task> ListAllMarketplaceLocationsAsyn path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15524,7 +15524,7 @@ public async Task> ListAvaFileFormsAsync(String fi path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15556,7 +15556,7 @@ public async Task> ListCertificateAttribu path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15586,7 +15586,7 @@ public async Task> ListCertificateExemptReason path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15616,7 +15616,7 @@ public async Task> ListCertificateExposureZonesAs path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15642,7 +15642,7 @@ public async Task> ListClassif path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15668,7 +15668,7 @@ public async Task> ListCommunicationsServ path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15693,7 +15693,7 @@ public async Task> ListCommunica path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15718,7 +15718,7 @@ public async Task> ListCommunicationsTSPa path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15744,7 +15744,7 @@ public async Task> ListCountriesAsync(String filter path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15775,7 +15775,7 @@ public async Task> ListCoverLettersAsync(String fi path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15814,7 +15814,7 @@ public async Task> ListCrossBorderCodesAsync(String cou path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15839,7 +15839,7 @@ public async Task> ListCrossBorderCodesAsync(String cou public async Task> ListCrossBorderSectionsAsync() { var path = new AvaTaxPath("/api/v2/definitions/crossborder/sections"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15866,7 +15866,7 @@ public async Task> ListCurrenciesAsync(String filter, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15894,7 +15894,7 @@ public async Task> ListEntityUseCodesAsync(Strin path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15919,7 +15919,7 @@ public async Task> ListFilingFrequenciesAsync( path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15948,7 +15948,7 @@ public async Task> ListJurisdictionsAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -15992,7 +15992,7 @@ public async Task> ListJurisdictionsByAdd path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16033,7 +16033,7 @@ public async Task> ListJuri path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16057,7 +16057,7 @@ public async Task> ListJurisdictionTypesByRateTypeTaxTypeMappingAsy path.ApplyField("taxTypeId", taxTypeId); path.ApplyField("taxSubTypeId", taxSubTypeId); path.AddQuery("rateTypeId", rateTypeId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16104,7 +16104,7 @@ public async Task> ListLocationQuestionsByAdd path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16130,7 +16130,7 @@ public async Task> ListLoginVerifiersAsync(St path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16154,7 +16154,7 @@ public async Task> ListMarketplaceLocation path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16180,7 +16180,7 @@ public async Task> ListNexusAsync(String filter, Int32? path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16237,7 +16237,7 @@ public async Task> ListNexusByAddressAsync(String line1, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16265,7 +16265,7 @@ public async Task> ListNexusByCountryAsync(String countr path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16295,7 +16295,7 @@ public async Task> ListNexusByCountryAndRegionAsync(Stri path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16327,7 +16327,7 @@ public async Task ListNexusByFormCodeAsync(String formCode) { var path = new AvaTaxPath("/api/v2/definitions/nexus/byform/{formCode}"); path.ApplyField("formCode", formCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -16355,7 +16355,7 @@ public async Task> ListNexusByTaxTypeGroupAsync(String t path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16380,7 +16380,7 @@ public async Task> ListNexusTaxTypeGroupsAsy path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16405,7 +16405,7 @@ public async Task> ListNoticeCusto path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16430,7 +16430,7 @@ public async Task> ListNoticeCustomerTypesA path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16455,7 +16455,7 @@ public async Task> ListNoticeFilingtypesAsync path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16480,7 +16480,7 @@ public async Task> ListNoticePrioritiesAsync(St path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16505,7 +16505,7 @@ public async Task> ListNoticeReasonsAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16530,7 +16530,7 @@ public async Task> ListNoticeResponsibili path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16555,7 +16555,7 @@ public async Task> ListNoticeRootCausesAsync(S path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16580,7 +16580,7 @@ public async Task> ListNoticeStatusesAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16605,7 +16605,7 @@ public async Task> ListNoticeTypesAsync(String filt path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16631,7 +16631,7 @@ public async Task> ListParametersAsync(String filter path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16676,7 +16676,7 @@ public async Task> ListParametersByItemAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16702,7 +16702,7 @@ public async Task> ListParametersUsageAsync(Str path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16723,7 +16723,7 @@ public async Task> ListPermissionsAsync(Int32? top, Int32? s var path = new AvaTaxPath("/api/v2/definitions/permissions"); path.AddQuery("$top", top); path.AddQuery("$skip", skip); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16747,7 +16747,7 @@ public async Task> ListPostalCodesAsync(String filt path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16779,7 +16779,7 @@ public async Task> ListPreferredProgramsAsync path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16808,7 +16808,7 @@ public async Task> ListProductClas path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); path.AddQuery("$countryCode", countryCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16847,7 +16847,7 @@ public async Task> ListProductClas path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); path.AddQuery("$countryCode", countryCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16874,7 +16874,7 @@ public async Task> ListRateTypesByCountryAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16905,7 +16905,7 @@ public async Task> ListRateTypesByCountryTaxTypeTaxS path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16931,7 +16931,7 @@ public async Task> ListRegionsAsync(String filter, I path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16959,7 +16959,7 @@ public async Task> ListRegionsByCountryAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -16997,7 +16997,7 @@ public async Task> ListRegionsByCountryAndTaxTypeAnd path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17022,7 +17022,7 @@ public async Task> ListResourceFileTypesAsync path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17048,7 +17048,7 @@ public async Task> ListReturnsParameters path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17074,7 +17074,7 @@ public async Task> ListSecurityRolesAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17101,7 +17101,7 @@ public async Task> ListSubscriptionTypesAsync path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17125,7 +17125,7 @@ public async Task> ListTagsAsync(String filter, Int32? to path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17150,7 +17150,7 @@ public async Task> ListTaxAuthoritiesAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17177,7 +17177,7 @@ public async Task> ListTaxAuthorityFormsAsync path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17202,7 +17202,7 @@ public async Task> ListTaxAuthorityTypesAsync path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17234,7 +17234,7 @@ public async Task> ListTaxCodesAsync(String filter, In path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17256,7 +17256,7 @@ public async Task ListTaxCodeTypesAsync(Int32? top, Int32? sk var path = new AvaTaxPath("/api/v2/definitions/taxcodetypes"); path.AddQuery("$top", top); path.AddQuery("$skip", skip); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -17281,7 +17281,7 @@ public async Task> ListTaxFormsAsync(String filter, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17306,7 +17306,7 @@ public async Task> ListTaxSubTypesAsync(String filt path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17337,7 +17337,7 @@ public async Task> ListTaxSubTypesByCountryAndTaxTy path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17366,7 +17366,7 @@ public async Task> ListTaxSubTypesByJurisdictionAnd path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17391,7 +17391,7 @@ public async Task> ListTaxTypeGroupsAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17417,7 +17417,7 @@ public async Task> ListTaxTypesByNexusAndCountryAsync( path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17447,7 +17447,7 @@ public async Task> ListUnitOfBasisByCountryAndTaxT path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17473,7 +17473,7 @@ public async Task> ListUnitOfMeasurementAsync(String filte path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17500,7 +17500,7 @@ public async Task> CreateDistanceThresholdAs { var path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -17528,7 +17528,7 @@ public async Task> DeleteDistanceThresholdAsync(Int32 companyI var path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -17556,7 +17556,7 @@ public async Task GetDistanceThresholdAsync(Int32 var path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -17592,7 +17592,7 @@ public async Task> ListDistanceThresh path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17629,7 +17629,7 @@ public async Task> QueryDistanceThres path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17661,7 +17661,7 @@ public async Task UpdateDistanceThresholdAsync(In var path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -17686,7 +17686,7 @@ public async Task CreateECommerceTokenAsync(Int32 com { var path = new AvaTaxPath("/api/v2/companies/{companyId}/ecommercetokens"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -17711,7 +17711,7 @@ public async Task> RefreshECommerceTokenA { var path = new AvaTaxPath("/api/v2/companies/{companyId}/ecommercetokens"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("PUT", path, model).ConfigureAwait(false); } @@ -17733,7 +17733,7 @@ public async Task ApproveFirmClientLinkageAsync(In { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/approve"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -17763,7 +17763,7 @@ public async Task ApproveFirmClientLinkageAsync(In public async Task CreateAndLinkNewFirmClientAccountAsync(NewFirmClientAccountRequestModel model) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/createandlinkclient"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -17784,7 +17784,7 @@ public async Task CreateAndLinkNewFirmClientAccoun public async Task CreateFirmClientLinkageAsync(FirmClientLinkageInputModel model) { var path = new AvaTaxPath("/api/v2/firmclientlinkages"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -17806,7 +17806,7 @@ public async Task> DeleteFirmClientLinkageAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -17828,7 +17828,7 @@ public async Task GetFirmClientLinkageAsync(Int32 { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -17850,7 +17850,7 @@ public async Task> ListFirmClientLinka { var path = new AvaTaxPath("/api/v2/firmclientlinkages"); path.AddQuery("$filter", filter); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -17872,7 +17872,7 @@ public async Task RejectFirmClientLinkageAsync(Int { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/reject"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -17894,7 +17894,7 @@ public async Task ResetFirmClientLinkageAsync(Int3 { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/reset"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -17916,7 +17916,7 @@ public async Task RevokeFirmClientLinkageAsync(Int { var path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/revoke"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -17946,7 +17946,7 @@ public async Task RevokeFirmClientLinkageAsync(Int public async Task RequestFreeTrialAsync(FreeTrialRequestModel model) { var path = new AvaTaxPath("/api/v2/accounts/freetrials/request"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -17984,7 +17984,7 @@ public async Task ActivateFundingRequestAsync(Int64 id, POAB path.ApplyField("id", id); path.AddQuery("businessUnit", businessUnit); path.AddQuery("subscriptionType", subscriptionType); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -18020,7 +18020,7 @@ public async Task FundingRequestStatusAsync(Int32 id, POABus path.ApplyField("id", id); path.AddQuery("businessUnit", businessUnit); path.AddQuery("subscriptionType", subscriptionType); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -18048,7 +18048,7 @@ public async Task> BatchDeleteItemClassificationsAsync(Int32 c var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/classifications"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -18078,7 +18078,7 @@ public async Task> BatchDeleteItemParametersAsync(Int32 compan var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -18109,7 +18109,7 @@ public async Task BulkUploadItemsAsync(Int32 companyI { var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/upload"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -18140,7 +18140,7 @@ public async Task> CreateItemClassifications var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/classifications"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -18175,7 +18175,7 @@ public async Task> CreateItemParametersAsync(Int32 comp var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -18206,7 +18206,7 @@ public async Task> CreateItemsAsync(Int32 companyId, List>("POST", path, model).ConfigureAwait(false); } @@ -18233,7 +18233,7 @@ public async Task> CreateItemTagsAsync(Int32 comp var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/tags"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -18260,7 +18260,7 @@ public async Task CreateTaxCodeClas { var path = new AvaTaxPath("/api/v2/companies/{companyId}/classificationrequests/taxcode"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -18298,7 +18298,7 @@ public async Task> DeleteCatalogueItemAsync(Int32 companyId, S var path = new AvaTaxPath("/api/v2/companies/{companyId}/itemcatalogue/{itemCode}"); path.ApplyField("companyId", companyId); path.ApplyField("itemCode", itemCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -18330,7 +18330,7 @@ public async Task> DeleteItemAsync(Int32 companyId, Int64 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -18360,7 +18360,7 @@ public async Task> DeleteItemClassificationAsync(Int32 company path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -18392,7 +18392,7 @@ public async Task> DeleteItemParameterAsync(Int32 companyId, I path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -18420,7 +18420,7 @@ public async Task> DeleteItemTagAsync(Int32 companyId, Int64 i path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("itemTagDetailId", itemTagDetailId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -18446,7 +18446,7 @@ public async Task> DeleteItemTagsAsync(Int32 companyId, Int64 var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/tags"); path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -18484,7 +18484,7 @@ public async Task path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18516,7 +18516,7 @@ public async Task GetItemAsync(Int32 companyId, Int64 id, String incl path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -18546,7 +18546,7 @@ public async Task GetItemClassificationAsync(Int3 path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -18578,7 +18578,7 @@ public async Task GetItemParameterAsync(Int32 companyId, Int path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -18610,7 +18610,7 @@ public async Task> GetItemTagsAsync(Int32 path.AddQuery("$filter", filter); path.AddQuery("$top", top); path.AddQuery("$skip", skip); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18645,7 +18645,7 @@ public async Task GetPremiumClassification path.ApplyField("companyId", companyId); path.ApplyField("itemCode", itemCode); path.ApplyField("systemCode", systemCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -18681,7 +18681,7 @@ public async Task> GetTaxCode path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18722,7 +18722,7 @@ public async Task> ListImportRestriction path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18761,7 +18761,7 @@ public async Task> ListItemClassifica path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18802,7 +18802,7 @@ public async Task> ListItemParametersAsync(Int32 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18855,7 +18855,7 @@ public async Task> ListItemsByCompanyAsync(Int32 companyI path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); path.AddQuery("tagName", tagName); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18895,7 +18895,7 @@ public async Task> QueryItemsAsync(String filter, String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18939,7 +18939,7 @@ public async Task> QueryItemsByTagAsync(Int32 companyId, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -18968,7 +18968,7 @@ public async Task SyncItemCatalogueAsync(Int32 company { var path = new AvaTaxPath("/api/v2/companies/{companyId}/itemcatalogue"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -19002,7 +19002,7 @@ public async Task SyncItemsAsync(Int32 companyId, SyncIt { var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/sync"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -19038,7 +19038,7 @@ public async Task UpdateItemAsync(Int32 companyId, Int64 id, ItemMode var path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -19071,7 +19071,7 @@ public async Task UpdateItemClassificationAsync(I path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -19104,7 +19104,7 @@ public async Task UpdateItemParameterAsync(Int32 companyId, path.ApplyField("companyId", companyId); path.ApplyField("itemId", itemId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -19132,7 +19132,7 @@ public async Task> CreateJurisdictionOverridesAs { var path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides"); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -19156,7 +19156,7 @@ public async Task> DeleteJurisdictionOverrideAsync(Int32 accou var path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -19185,7 +19185,7 @@ public async Task GetJurisdictionOverrideAsync(Int32 var path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -19225,7 +19225,7 @@ public async Task> ListJurisdictionOverri path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -19263,7 +19263,7 @@ public async Task> QueryJurisdictionOverr path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -19288,7 +19288,7 @@ public async Task UpdateJurisdictionOverrideAsync(Int var path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -19323,7 +19323,7 @@ public async Task> CreateLocationParametersAsync(In var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{locationId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("locationId", locationId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -19346,7 +19346,7 @@ public async Task> CreateLocationsAsync(Int32 companyId, Lis { var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -19370,7 +19370,7 @@ public async Task> DeleteLocationAsync(Int32 companyId, Int32 var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -19402,7 +19402,7 @@ public async Task> DeleteLocationParameterAsync(Int32 companyI path.ApplyField("companyId", companyId); path.ApplyField("locationId", locationId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -19437,7 +19437,7 @@ public async Task GetLocationAsync(Int32 companyId, Int32 id, Str path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -19469,7 +19469,7 @@ public async Task GetLocationParameterAsync(Int32 compan path.ApplyField("companyId", companyId); path.ApplyField("locationId", locationId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -19510,7 +19510,7 @@ public async Task> ListLocationParametersAsy path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -19553,7 +19553,7 @@ public async Task> ListLocationsByCompanyAsync(Int32 path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -19595,7 +19595,7 @@ public async Task> QueryLocationsAsync(String filter, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -19622,7 +19622,7 @@ public async Task UpdateLocationAsync(Int32 companyId, Int32 id, var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -19655,7 +19655,7 @@ public async Task UpdateLocationParameterAsync(Int32 com path.ApplyField("companyId", companyId); path.ApplyField("locationId", locationId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -19681,7 +19681,7 @@ public async Task ValidateLocationAsync(Int32 companyId var path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}/validate"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -19726,7 +19726,7 @@ public async Task AdjustMultiDocumentTransactionAsync(String path.ApplyField("code", code); path.ApplyField("type", type); path.AddQuery("include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -19772,7 +19772,7 @@ public async Task AuditMultiDocumentTransactionAsync(St var path = new AvaTaxPath("/api/v2/transactions/multidocument/{code}/type/{type}/audit"); path.ApplyField("code", code); path.ApplyField("type", type); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -19809,7 +19809,7 @@ public async Task AuditMultiDocumentTransactionAsync(St public async Task CommitMultiDocumentTransactionAsync(CommitMultiDocumentModel model) { var path = new AvaTaxPath("/api/v2/transactions/multidocument/commit"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -19872,7 +19872,7 @@ public async Task CreateMultiDocumentTransactionAsync(String { var path = new AvaTaxPath("/api/v2/transactions/multidocument"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -19918,7 +19918,7 @@ public async Task GetMultiDocumentTransactionByCodeAndTypeAs path.ApplyField("code", code); path.ApplyField("type", type); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -19971,7 +19971,7 @@ public async Task GetMultiDocumentTransactionByIdAsync(Int64 var path = new AvaTaxPath("/api/v2/transactions/multidocument/{id}"); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -20028,7 +20028,7 @@ public async Task> ListMultiDocumentTransactions path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -20099,7 +20099,7 @@ public async Task RefundMultiDocumentTransactionAsync(String path.ApplyField("code", code); path.ApplyField("type", type); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -20134,7 +20134,7 @@ public async Task RefundMultiDocumentTransactionAsync(String public async Task VerifyMultiDocumentTransactionAsync(VerifyMultiDocumentModel model) { var path = new AvaTaxPath("/api/v2/transactions/multidocument/verify"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -20176,7 +20176,7 @@ public async Task VoidMultiDocumentTransactionAsync(String c var path = new AvaTaxPath("/api/v2/transactions/multidocument/{code}/type/{type}/void"); path.ApplyField("code", code); path.ApplyField("type", type); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -20217,7 +20217,7 @@ public async Task> CreateNexusAsync(Int32 companyId, List>("POST", path, model).ConfigureAwait(false); } @@ -20251,7 +20251,7 @@ public async Task> CreateNexusParametersAsync(In var path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{nexusId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -20288,7 +20288,7 @@ public async Task> DeclareNexusByAddressAsync(Int32 co { var path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/byaddress"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -20321,7 +20321,7 @@ public async Task> DeleteNexusAsync(Int32 companyId, Int32 id, path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("cascadeDelete", cascadeDelete); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -20352,7 +20352,7 @@ public async Task> DeleteNexusParameterAsync(Int32 companyId, path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -20381,7 +20381,7 @@ public async Task> DeleteNexusParametersAsync(Int32 companyId, var path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{nexusId}/parameters"); path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -20414,7 +20414,7 @@ public async Task GetNexusAsync(Int32 companyId, Int32 id, String in path.ApplyField("companyId", companyId); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -20451,7 +20451,7 @@ public async Task GetNexusByFormCodeAsync(Int32 companyId, path.ApplyField("companyId", companyId); path.ApplyField("formCode", formCode); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -20482,7 +20482,7 @@ public async Task GetNexusParameterAsync(Int32 compan path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -20524,7 +20524,7 @@ public async Task> ListNexusByCompanyAsync(Int32 company path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -20568,7 +20568,7 @@ public async Task> ListNexusByCompanyAndTaxTypeGroupAsyn path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -20608,7 +20608,7 @@ public async Task> ListNexusParametersAsy path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -20648,7 +20648,7 @@ public async Task> QueryNexusAsync(String filter, String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -20691,7 +20691,7 @@ public async Task UpdateNexusAsync(Int32 companyId, Int32 id, NexusM var path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -20724,7 +20724,7 @@ public async Task UpdateNexusParameterAsync(Int32 com path.ApplyField("companyId", companyId); path.ApplyField("nexusId", nexusId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -20746,7 +20746,7 @@ public async Task UpdateNexusParameterAsync(Int32 com public async Task CreateNoticeResponsibilityTypeAsync(CreateNoticeResponsibilityTypeModel model) { var path = new AvaTaxPath("/api/v2/notices/responsibilities"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -20768,7 +20768,7 @@ public async Task CreateNoticeResponsibilityTypeAsync public async Task CreateNoticeRootCauseTypeAsync(CreateNoticeRootCauseTypeModel model) { var path = new AvaTaxPath("/api/v2/notices/rootcauses"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -20790,7 +20790,7 @@ public async Task> DeleteNoticeResponsibilityTypeAsync(Int32 r { var path = new AvaTaxPath("/api/v2/notices/responsibilities/{responsibilityId}"); path.ApplyField("responsibilityId", responsibilityId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -20812,7 +20812,7 @@ public async Task> DeleteNoticeRootCauseTypeAsync(Int32 rootCa { var path = new AvaTaxPath("/api/v2/notices/rootcauses/{rootCauseId}"); path.ApplyField("rootCauseId", rootCauseId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -20847,7 +20847,7 @@ public async Task DismissNotificationAsync(Int64 id) { var path = new AvaTaxPath("/api/v2/notifications/{id}/dismiss"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, null).ConfigureAwait(false); } @@ -20876,7 +20876,7 @@ public async Task GetNotificationAsync(Int64 id) { var path = new AvaTaxPath("/api/v2/notifications/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -20914,7 +20914,7 @@ public async Task> ListNotificationsAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -20950,7 +20950,7 @@ public async Task> ListNotificationsAsync(String public async Task RequestNewAccountAsync(NewAccountRequestModel model) { var path = new AvaTaxPath("/api/v2/accounts/request"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -20977,7 +20977,7 @@ public async Task RequestNewEntitlementAsync(Int32 id, String offer) var path = new AvaTaxPath("/api/v2/accounts/{id}/entitlements/{offer}"); path.ApplyField("id", id); path.ApplyField("offer", offer); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -21002,7 +21002,7 @@ public async Task RequestNewEntitlementAsync(Int32 id, String offer) public async Task> CreateAccountAsync(AccountModel model) { var path = new AvaTaxPath("/api/v2/accounts"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -21036,7 +21036,7 @@ public async Task> CreateAccountAsync(AccountModel model) public async Task> CreateNotificationsAsync(List model) { var path = new AvaTaxPath("/api/v2/notifications"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -21064,7 +21064,7 @@ public async Task> CreateNotificationsAsync(List CreateServiceTypesAsync(SubscriptionTypeModel model) { var path = new AvaTaxPath("/api/v2/servicetypes"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -21091,7 +21091,7 @@ public async Task> CreateSubscriptionsAsync(Int32 accoun { var path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions"); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -21117,7 +21117,7 @@ public async Task> DeleteAccountAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/accounts/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -21149,7 +21149,7 @@ public async Task> DeleteNotificationAsync(Int64 id) { var path = new AvaTaxPath("/api/v2/notifications/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -21175,7 +21175,7 @@ public async Task> DeleteServiceTypeAsync(Int32 id) { var path = new AvaTaxPath("/api/v2/servicetypes/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -21202,7 +21202,7 @@ public async Task> DeleteSubscriptionAsync(Int32 accountId, In var path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -21236,7 +21236,7 @@ public async Task> ListServiceTypesAsync(Stri path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -21267,7 +21267,7 @@ public async Task ResetPasswordAsync(Int32 userId, Boolean? isUndoMigrat var path = new AvaTaxPath("/api/v2/passwords/{userId}/reset"); path.ApplyField("userId", userId); path.AddQuery("isUndoMigrateRequest", isUndoMigrateRequest); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallStringAsync("POST", path, model).ConfigureAwait(false); } @@ -21293,7 +21293,7 @@ public async Task UpdateAccountAsync(Int32 id, AccountModel model) { var path = new AvaTaxPath("/api/v2/accounts/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -21326,7 +21326,7 @@ public async Task UpdateNotificationAsync(Int64 id, Notificat { var path = new AvaTaxPath("/api/v2/notifications/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -21354,7 +21354,7 @@ public async Task UpdateServiceTypeAsync(Int32 id, Subscr { var path = new AvaTaxPath("/api/v2/servicetypes/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -21386,7 +21386,7 @@ public async Task UpdateSubscriptionAsync(Int32 accountId, In var path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -21421,7 +21421,7 @@ public async Task DownloadReportAsync(Int64 id) { var path = new AvaTaxPath("/api/v2/reports/{id}/attachment"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallFileAsync("GET", path, null).ConfigureAwait(false); } @@ -21449,7 +21449,7 @@ public async Task GetReportAsync(Int64 id) { var path = new AvaTaxPath("/api/v2/reports/{id}"); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -21491,7 +21491,7 @@ public async Task> InitiateExportDocumentLineReportAsync(Int32 { var path = new AvaTaxPath("/api/v2/companies/{companyId}/reports/exportdocumentline/initiate"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -21529,7 +21529,7 @@ public async Task> ListReportsAsync(Int32? companyId, S path.AddQuery("pageKey", pageKey); path.AddQuery("$skip", skip); path.AddQuery("$top", top); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -21566,7 +21566,7 @@ public async Task> CreateSettingsAsync(Int32 companyId, List< { var path = new AvaTaxPath("/api/v2/companies/{companyId}/settings"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -21599,7 +21599,7 @@ public async Task> DeleteSettingAsync(Int32 companyId, Int32 i var path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -21632,7 +21632,7 @@ public async Task GetSettingAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -21676,7 +21676,7 @@ public async Task> ListSettingsByCompanyAsync(Int32 co path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -21718,7 +21718,7 @@ public async Task> QuerySettingsAsync(String filter, S path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -21756,7 +21756,7 @@ public async Task UpdateSettingAsync(Int32 companyId, Int32 id, Se var path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -21782,7 +21782,7 @@ public async Task GetSubscriptionAsync(Int32 accountId, Int32 var path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.ApplyField("accountId", accountId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -21817,7 +21817,7 @@ public async Task> ListSubscriptionsByAccountAsyn path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -21850,7 +21850,7 @@ public async Task> QuerySubscriptionsAsync(String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -21877,7 +21877,7 @@ public async Task> CreateTaxCodesAsync(Int32 companyId, List< { var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -21901,7 +21901,7 @@ public async Task> DeleteTaxCodeAsync(Int32 companyId, Int32 i var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -21929,7 +21929,7 @@ public async Task GetTaxCodeAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -21968,7 +21968,7 @@ public async Task> ListTaxCodesByCompanyAsync(Int32 co path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -22005,7 +22005,7 @@ public async Task> QueryTaxCodesAsync(String filter, S path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -22036,7 +22036,7 @@ public async Task UpdateTaxCodeAsync(Int32 companyId, Int32 id, Ta var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -22080,7 +22080,7 @@ public async Task UpdateTaxCodeAsync(Int32 companyId, Int32 id, Ta public async Task BuildTaxContentFileAsync(PointOfSaleDataRequestModel model) { var path = new AvaTaxPath("/api/v2/pointofsaledata/build"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallFileAsync("POST", path, model).ConfigureAwait(false); } @@ -22135,7 +22135,7 @@ public async Task BuildTaxContentFileForLocationAsync(Int32 companyI path.AddQuery("format", format); path.AddQuery("partnerId", partnerId); path.AddQuery("includeJurisCodes", includeJurisCodes); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallFileAsync("GET", path, null).ConfigureAwait(false); } @@ -22198,7 +22198,7 @@ public async Task DownloadTaxRatesByZipCodeAsync(DateTime date, Stri var path = new AvaTaxPath("/api/v2/taxratesbyzipcode/download/{date}"); path.ApplyField("date", date.ToString("o")); path.AddQuery("region", region); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallFileAsync("GET", path, null).ConfigureAwait(false); } @@ -22262,7 +22262,7 @@ public async Task TaxRatesByAddressAsync(String line1, String line path.AddQuery("region", region); path.AddQuery("postalCode", postalCode); path.AddQuery("country", country); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -22311,7 +22311,7 @@ public async Task TaxRatesByPostalCodeAsync(String country, String var path = new AvaTaxPath("/api/v2/taxrates/bypostalcode"); path.AddQuery("country", country); path.AddQuery("postalCode", postalCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -22346,7 +22346,7 @@ public async Task> CreateTaxRulesAsync(Int32 companyId, List< { var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules"); path.ApplyField("companyId", companyId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("POST", path, model).ConfigureAwait(false); } @@ -22382,7 +22382,7 @@ public async Task> DeleteTaxRuleAsync(Int32 companyId, Int32 i var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -22418,7 +22418,7 @@ public async Task GetTaxRuleAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -22465,7 +22465,7 @@ public async Task> ListTaxRulesAsync(Int32 companyId, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -22510,7 +22510,7 @@ public async Task> QueryTaxRulesAsync(String filter, S path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -22547,7 +22547,7 @@ public async Task UpdateTaxRuleAsync(Int32 companyId, Int32 id, Ta var path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -22590,7 +22590,7 @@ public async Task AddLinesAsync(String include, AddTransaction { var path = new AvaTaxPath("/api/v2/companies/transactions/lines/add"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -22648,7 +22648,7 @@ public async Task AdjustTransactionAsync(String companyCode, S path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -22695,7 +22695,7 @@ public async Task AuditTransactionAsync(String companyCod var path = new AvaTaxPath("/api/v2/companies/{companyCode}/transactions/{transactionCode}/audit"); path.ApplyField("companyCode", companyCode); path.ApplyField("transactionCode", transactionCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -22744,7 +22744,7 @@ public async Task AuditTransactionWithTypeAsync(String co path.ApplyField("companyCode", companyCode); path.ApplyField("transactionCode", transactionCode); path.ApplyField("documentType", documentType); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -22772,7 +22772,7 @@ public async Task AuditTransactionWithTypeAsync(String co public async Task BulkLockTransactionAsync(BulkLockTransactionModel model) { var path = new AvaTaxPath("/api/v2/transactions/lock"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -22830,7 +22830,7 @@ public async Task ChangeTransactionCodeAsync(String companyCod path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -22886,7 +22886,7 @@ public async Task CommitTransactionAsync(String companyCode, S path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -22942,7 +22942,7 @@ public async Task CreateOrAdjustTransactionAsync(String includ { var path = new AvaTaxPath("/api/v2/transactions/createoradjust"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23005,7 +23005,7 @@ public async Task CreateTransactionAsync(String include, Creat { var path = new AvaTaxPath("/api/v2/transactions/create"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23045,7 +23045,7 @@ public async Task DeleteLinesAsync(String include, RemoveTrans { var path = new AvaTaxPath("/api/v2/companies/transactions/lines/delete"); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23066,7 +23066,7 @@ public async Task GetAllVarianceReportByCompanyCodeAsync( { var path = new AvaTaxPath("/api/v2/companies/{companyCode}/AllVariance"); path.ApplyField("companyCode", companyCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -23120,7 +23120,7 @@ public async Task GetTransactionByCodeAsync(String companyCode path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -23157,7 +23157,7 @@ public async Task GetTransactionByCodeAndTypeAsync(String comp path.ApplyField("transactionCode", transactionCode); path.ApplyField("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -23197,7 +23197,7 @@ public async Task GetTransactionByIdAsync(Int64 id, String inc var path = new AvaTaxPath("/api/v2/transactions/{id}"); path.ApplyField("id", id); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -23220,7 +23220,7 @@ public async Task GetVarianceReportByCompanyCodeByTransac var path = new AvaTaxPath("/api/v2/companies/{companyCode}/transactions/{transactionId}/variance"); path.ApplyField("companyCode", companyCode); path.ApplyField("transactionId", transactionId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -23283,7 +23283,7 @@ public async Task> ListTransactionsByCompanyAsync( path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -23341,7 +23341,7 @@ public async Task LockTransactionAsync(String companyCode, Str path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23411,7 +23411,7 @@ public async Task RefundTransactionAsync(String companyCode, S path.AddQuery("$include", include); path.AddQuery("documentType", documentType); path.AddQuery("useTaxDateOverride", useTaxDateOverride); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23467,7 +23467,7 @@ public async Task SettleTransactionAsync(String companyCode, S path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23517,7 +23517,7 @@ public async Task UncommitTransactionAsync(String companyCode, path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -23564,7 +23564,7 @@ public async Task UnvoidTransactionAsync(String companyCode, S path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, null).ConfigureAwait(false); } @@ -23586,7 +23586,7 @@ public async Task VarianceReportAsync(String companyCode, { var path = new AvaTaxPath("/api/v2/companies/{companyCode}/variance"); path.ApplyField("companyCode", companyCode); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23641,7 +23641,7 @@ public async Task VerifyTransactionAsync(String companyCode, S path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23698,7 +23698,7 @@ public async Task VoidTransactionAsync(String companyCode, Str path.ApplyField("transactionCode", transactionCode); path.AddQuery("documentType", documentType); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23723,7 +23723,7 @@ public async Task> CreateUPCsAsync(Int32 companyId, List>("POST", path, model).ConfigureAwait(false); } @@ -23748,7 +23748,7 @@ public async Task> DeleteUPCAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -23774,7 +23774,7 @@ public async Task GetUPCAsync(Int32 companyId, Int32 id) var path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -23811,7 +23811,7 @@ public async Task> ListUPCsByCompanyAsync(Int32 companyId, path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -23846,7 +23846,7 @@ public async Task> QueryUPCsAsync(String filter, String in path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -23875,7 +23875,7 @@ public async Task UpdateUPCAsync(Int32 companyId, Int32 id, UPCModel m var path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -23900,7 +23900,7 @@ public async Task> DeleteUserDefinedFieldAsync(Int32 companyId var path = new AvaTaxPath("/api/v2/companies/{companyId}/userdefinedfields/{id}"); path.ApplyField("companyId", companyId); path.ApplyField("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -23925,7 +23925,7 @@ public async Task> ListUserDefinedFiel path.ApplyField("companyId", companyId); path.AddQuery("udfType", udfType); path.AddQuery("allowDefaults", allowDefaults); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -23951,7 +23951,7 @@ public async Task UpdateUserDefinedFieldAsync(Int3 var path = new AvaTaxPath("/api/v2/companies/{companyId}/userdefinedfields"); path.ApplyField("companyId", companyId); path.AddQuery("id", id); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("POST", path, model).ConfigureAwait(false); } @@ -23978,7 +23978,7 @@ public async Task UpdateUserDefinedFieldAsync(Int3 public async Task ChangePasswordAsync(PasswordChangeModel model) { var path = new AvaTaxPath("/api/v2/passwords"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallStringAsync("PUT", path, model).ConfigureAwait(false); } @@ -24009,7 +24009,7 @@ public async Task> CreateUsersAsync(Int32 accountId, List>("POST", path, model).ConfigureAwait(false); } @@ -24038,7 +24038,7 @@ public async Task> DeleteUserAsync(Int32 id, Int32 accountId) var path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}"); path.ApplyField("id", id); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("DELETE", path, null).ConfigureAwait(false); } @@ -24069,7 +24069,7 @@ public async Task GetUserAsync(Int32 id, Int32 accountId, String incl path.ApplyField("id", id); path.ApplyField("accountId", accountId); path.AddQuery("$include", include); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -24107,7 +24107,7 @@ public async Task GetUserEntitlementsAsync(Int32 id, Int32 var path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}/entitlements"); path.ApplyField("id", id); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -24150,7 +24150,7 @@ public async Task> ListUsersByAccountAsync(Int32 accountI path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -24193,7 +24193,7 @@ public async Task> QueryUsersAsync(String include, String path.AddQuery("$top", top); path.AddQuery("$skip", skip); path.AddQuery("$orderBy", orderBy); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -24221,7 +24221,7 @@ public async Task UpdateUserAsync(Int32 id, Int32 accountId, UserMode var path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}"); path.ApplyField("id", id); path.ApplyField("accountId", accountId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("PUT", path, model).ConfigureAwait(false); } @@ -24246,7 +24246,7 @@ public async Task GetMySubscriptionAsync(String serviceTypeId { var path = new AvaTaxPath("/api/v2/utilities/subscriptions/{serviceTypeId}"); path.ApplyField("serviceTypeId", serviceTypeId); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } @@ -24269,7 +24269,7 @@ public async Task GetMySubscriptionAsync(String serviceTypeId public async Task> ListMySubscriptionsAsync() { var path = new AvaTaxPath("/api/v2/utilities/subscriptions"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync>("GET", path, null).ConfigureAwait(false); } @@ -24304,7 +24304,7 @@ public async Task> ListMySubscriptionsAsync() public async Task PingAsync() { var path = new AvaTaxPath("/api/v2/utilities/ping"); - _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.0"); + _clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID ,"23.3.1"); return await RestCallAsync("GET", path, null).ConfigureAwait(false); } diff --git a/src/Avalara.AvaTax.RestClient.nuspec b/src/Avalara.AvaTax.RestClient.nuspec index f4cdd24..6cb4063 100644 --- a/src/Avalara.AvaTax.RestClient.nuspec +++ b/src/Avalara.AvaTax.RestClient.nuspec @@ -3,7 +3,7 @@ Avalara.AvaTax - 23.3.0 + 23.3.1 Avalara AvaTax SDK Add world-class tax estimation and calculation to your project with Avalara's AvaTax suite of APIs and services. diff --git a/src/enums/ChargedTo.cs b/src/enums/ChargedTo.cs new file mode 100644 index 0000000..2f034e0 --- /dev/null +++ b/src/enums/ChargedTo.cs @@ -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 + * @author Sachin Baijal + * Swagger name: AvaTaxClient + */ + +namespace Avalara.AvaTax.RestClient +{ + /// + /// Charged To + /// + public enum ChargedTo + { + /// + /// Buyer + /// + Buyer = 0, + + /// + /// Seller + /// + Seller = 1, + + /// + /// ThirdParty + /// + ThirdParty = 2, + + } +} diff --git a/src/enums/Compression.cs b/src/enums/Compression.cs new file mode 100644 index 0000000..fed202d --- /dev/null +++ b/src/enums/Compression.cs @@ -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 + * @author Sachin Baijal + * Swagger name: AvaTaxClient + */ + +namespace Avalara.AvaTax.RestClient +{ + /// + /// Defines compression + /// + public enum Compression + { + /// + /// none + /// + NONE = 0, + + /// + /// gzip + /// + GZIP = 1, + + } +} diff --git a/src/enums/ErrorCodeId.cs b/src/enums/ErrorCodeId.cs index 08e21fd..6b52767 100644 --- a/src/enums/ErrorCodeId.cs +++ b/src/enums/ErrorCodeId.cs @@ -1506,6 +1506,11 @@ public enum ErrorCodeId /// NoItemsForClassification = 1736, + /// + /// + /// + InvalidFileName = 1737, + /// /// SendSales API errors /// diff --git a/src/enums/ReportSource.cs b/src/enums/ReportSource.cs index e461836..2ef6f00 100644 --- a/src/enums/ReportSource.cs +++ b/src/enums/ReportSource.cs @@ -30,10 +30,5 @@ public enum ReportSource /// MONGODB = 1, - /// - /// snowflake dld - /// - SNOWFLAKE_DLD = 2, - } } diff --git a/src/models/ExportDocumentLineModel.cs b/src/models/ExportDocumentLineModel.cs index f4e86d9..369bd3b 100644 --- a/src/models/ExportDocumentLineModel.cs +++ b/src/models/ExportDocumentLineModel.cs @@ -138,6 +138,12 @@ public class ExportDocumentLineModel /// public ReportSource? reportSource { get; set; } + /// + /// Defines the compression mode of the result file + /// For compression, the accepted values are: NONE, GZIP + /// + public Compression? compression { get; set; } + /// /// Convert this object to a JSON string of itself diff --git a/src/models/ReportParametersModel.cs b/src/models/ReportParametersModel.cs index c932cc7..984b449 100644 --- a/src/models/ReportParametersModel.cs +++ b/src/models/ReportParametersModel.cs @@ -123,6 +123,12 @@ public class ReportParametersModel /// public String taxSubType { get; set; } + /// + /// Defines the compression mode of the result file + /// For compression, the accepted values are: NONE, GZIP + /// + public Compression? compression { get; set; } + /// /// Convert this object to a JSON string of itself diff --git a/src/models/TransactionLineDetailModel.cs b/src/models/TransactionLineDetailModel.cs index d5959ee..2ca8d7b 100644 --- a/src/models/TransactionLineDetailModel.cs +++ b/src/models/TransactionLineDetailModel.cs @@ -280,6 +280,11 @@ public class TransactionLineDetailModel /// public LiabilityType? liabilityType { get; set; } + /// + /// ChargedTo identifies the party responsible for covering the tax. This field is used to filter taxes from reports and tax filings as appropriate. + /// + public ChargedTo? chargedTo { get; set; } + /// /// ID of the AvaTax user creating the transaction. This field will be calculated by AvaTax based on the Company settings and the transaction details. ///