Skip to content

Commit

Permalink
feat: duties and taxes constant
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-conde committed Nov 13, 2023
1 parent de75271 commit 89da911
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

*
* Added `DUTIES_CHARGE_TYPE` constant to API - [peri-shipping/#193](https://github.com/ripe-tech/peri-shipping/issues/193)

### Changed

Expand Down
8 changes: 6 additions & 2 deletions js/shipment.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ export const STANDARD_SERVICE_CODE = "011";
export const SAVER_SERVICE_CODE = "065";

/*
* The code representing a shipment that is
* charged via UPS account.
* The code representing a shipment transportation charges.
*/
export const TRANSPORTATION_CHARGE_TYPE = "01";

/*
* The code representing a shipment duties and taxes charges.
*/
export const DUTIES_CHARGE_TYPE = "02";

/**
* The code representing a customer box
* package.
Expand Down

0 comments on commit 89da911

Please sign in to comment.