Skip to content

Commit

Permalink
Merge pull request #206 from avadev/23.6.1
Browse files Browse the repository at this point in the history
Update for 23.6.1
  • Loading branch information
svc-developer authored Jun 15, 2023
2 parents 2a307b0 + 26b8e83 commit 75355eb
Show file tree
Hide file tree
Showing 3 changed files with 6,168 additions and 6,197 deletions.
48 changes: 47 additions & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Avalara;
use GuzzleHttp\Client;

define('AVATAX_SDK_VERSION', '23.5.0');
define('AVATAX_SDK_VERSION', '23.6.1');

/*****************************************************************************
* *
Expand Down Expand Up @@ -990,6 +990,51 @@ class DeliveryTerms
* Delivery Duty Paid (DDP) implies that Duty And Tax will be paid by the Shipper
*/
const C_DDP = 2;

/**
* Free on Board
*/
const C_FOB = 3;

/**
* Free Carrier
*/
const C_FCA = 4;

/**
* Free Alongside Ship
*/
const C_FAS = 5;

/**
* Ex Works
*/
const C_EXW = 6;

/**
* Delivered at Place Unloaded
*/
const C_DPU = 7;

/**
* Carriage Paid To
*/
const C_CPT = 8;

/**
* Carriage Insurance Paid To
*/
const C_CIP = 9;

/**
* Cost, Insurance, and Freight
*/
const C_CIF = 10;

/**
* Cost And Freight
*/
const C_CFR = 11;

}

Expand Down Expand Up @@ -1565,6 +1610,7 @@ class ErrorCodeId
const C_INVALIDSYSTEMCODE = 1735;
const C_NOITEMSFORCLASSIFICATION = 1736;
const C_INVALIDFILENAME = 1737;
const C_NOCLASSIFICATIONFORSAMEHSCODE = 1738;

/**
* SendSales API errors
Expand Down
Loading

0 comments on commit 75355eb

Please sign in to comment.