Skip to content

Commit

Permalink
feat: add ups collect / collection shipment option (#126)
Browse files Browse the repository at this point in the history
fixes INT-659
  • Loading branch information
FreekVR authored Dec 3, 2024
1 parent c1c909a commit d876da6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/__snapshots__/exports.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -797,6 +797,7 @@ exports[`module exports > exposes the correct data from index 1`] = `
],
"ShipmentOptionName": {
"AgeCheck": "age_check",
"Collect": "collect",
"CooledDelivery": "cooled_delivery",
"Insurance": "insurance",
"LargeFormat": "large_format",
Expand Down
1 change: 1 addition & 0 deletions src/__snapshots__/index.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,7 @@ exports[`module exports > exposes the correct data from index 1`] = `
],
"ShipmentOptionName": {
"AgeCheck": "age_check",
"Collect": "collect",
"CooledDelivery": "cooled_delivery",
"Insurance": "insurance",
"LargeFormat": "large_format",
Expand Down
1 change: 1 addition & 0 deletions src/types/shipmentOptionName.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
export enum ShipmentOptionName {
AgeCheck = 'age_check',
Collect = 'collect',
CooledDelivery = 'cooled_delivery',
Insurance = 'insurance',
LargeFormat = 'large_format',
Expand Down

0 comments on commit d876da6

Please sign in to comment.