Skip to content

Commit

Permalink
update changelog and fix removal of deprecated helper
Browse files Browse the repository at this point in the history
  • Loading branch information
joeluong-sfcc committed May 10, 2024
1 parent 862b8d3 commit 83d5013
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ you import the type definitions directly.
| ------------- |-------------|
| redeemCoupon | Redeems a coupon code for an existing coupon within the selected site. The coupon code must be redeemable. |

#### Other Changes

- Removal of deprecated helper function `getShopperToken`

## v2.15.0

#### API Changes
Expand Down
2 changes: 1 addition & 1 deletion src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function addTemplates(
path.join(outputBasePath, "index.ts")
);

const helperTemplateFileNames = ["index", "shopperCustomer"];
const helperTemplateFileNames = ["index"];
helperTemplateFileNames.forEach((name: string) => {
apis.addTemplate(
path.join(HELPERS_TEMPLATE_DIRECTORY, `${name}.ts.hbs`),
Expand Down

0 comments on commit 83d5013

Please sign in to comment.