Skip to content

Commit

Permalink
Merge pull request #81 from vaclav-zeman/fix/address-api
Browse files Browse the repository at this point in the history
Hotfix: Address API imports
  • Loading branch information
jorgemasta authored Jul 30, 2021
2 parents 2e634ac + 6c95942 commit 3cbe979
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"wishlist"
],
"scripts": {
"clean": "rimraf *.js *.d.ts api cart commerce products scripts wishlist",
"clean": "rimraf *.js *.d.ts api cart commerce products scripts wishlist address",
"build": "npm run clean && tsc && cp src/schema.d.ts schema.d.ts",
"start": "npm run clean && tsc -w",
"prepublish": "npm run build",
Expand Down
4 changes: 2 additions & 2 deletions src/api/address/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import createApiHandler, {
import { BigcommerceApiError } from "../utils/errors"
import getAddresses from "./handlers/get-addresses"
import addAddress from "./handlers/add-address"
import updateAddress from "./handlers/remove-address"
import removeAddress from "./handlers/update-address"
import updateAddress from "./handlers/update-address"
import removeAddress from "./handlers/remove-address"

import { AddressesResponse, AddressHandlers } from './types';

Expand Down

0 comments on commit 3cbe979

Please sign in to comment.