Skip to content

Commit

Permalink
Merge pull request #40 from ripe-tech/jc/feat-duties-and-taxes-charge…
Browse files Browse the repository at this point in the history
…-type

feat: duties and taxes constant
  • Loading branch information
3rdvision authored Nov 13, 2023
2 parents de75271 + 89da911 commit 8bce9d6
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 8bce9d6

Please sign in to comment.