Skip to content

Commit

Permalink
feat: add ups collect / collection shipment option
Browse files Browse the repository at this point in the history
fixes INT-659
  • Loading branch information
FreekVR committed Dec 2, 2024
1 parent c1c909a commit f38529d
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 @@ -13,6 +13,7 @@ export enum ShipmentOptionName {
Return = 'return',
SameDayDelivery = 'same_day_delivery',
Signature = 'signature',
Collect = 'collect',
}

export type ShipmentOptionNameType = `${ShipmentOptionName}`;

0 comments on commit f38529d

Please sign in to comment.