Skip to content

Commit

Permalink
Merge pull request #200 from avadev/23.3.1
Browse files Browse the repository at this point in the history
Update for 23.3.1
  • Loading branch information
svc-developer authored Mar 29, 2023
2 parents 728cffa + ed73ebc commit 3c43a87
Show file tree
Hide file tree
Showing 3 changed files with 412 additions and 363 deletions.
41 changes: 39 additions & 2 deletions src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -1561,6 +1561,7 @@ class ErrorCodeId
const C_INVALIDPARAMETER = 1734;
const C_INVALIDSYSTEMCODE = 1735;
const C_NOITEMSFORCLASSIFICATION = 1736;
const C_INVALIDFILENAME = 1737;

/**
* SendSales API errors
Expand Down Expand Up @@ -1898,11 +1899,24 @@ class ReportSource
* mongodb
*/
const C_MONGODB = 1;

}

/**
* Swagger Name: AvaTaxClient
* Defines compression
*/
class Compression
{
/**
* none
*/
const C_NONE = 0;

/**
* snowflake dld
* gzip
*/
const C_SNOWFLAKE_DLD = 2;
const C_GZIP = 1;

}

Expand Down Expand Up @@ -3167,6 +3181,29 @@ class LiabilityType

}

/**
* Swagger Name: AvaTaxClient
* Charged To
*/
class ChargedTo
{
/**
* Buyer
*/
const C_BUYER = 0;

/**
* Seller
*/
const C_SELLER = 1;

/**
* ThirdParty
*/
const C_THIRDPARTY = 2;

}

/**
* Swagger Name: AvaTaxClient
* Represents the different types of DeemedSeller for AVT Marketplace client.
Expand Down
Loading

0 comments on commit 3c43a87

Please sign in to comment.