partial implementation of product update

This commit is contained in:
Ben Miller
2024-11-14 02:03:42 -07:00
parent 9b01d6de8a
commit 220ee45e22
5 changed files with 103 additions and 4 deletions

View File

@ -6,6 +6,7 @@ import { runShopifyOrders } from "./shopifyApi"
import {
initMenu,
matchProductToShopifyHandler,
updateShopifyProductHandler,
reauthorizeScript,
} from "./initMenu"
import { reinstallTriggers } from "./triggers"
@ -15,6 +16,7 @@ import { newSkuHandler } from "./newSku"
;(global as any).getShopifyProducts = getShopifyProducts
;(global as any).runShopifyOrders = runShopifyOrders
;(global as any).matchProductToShopifyHandler = matchProductToShopifyHandler
;(global as any).updateShopifyProductHandler = updateShopifyProductHandler
;(global as any).reauthorizeScript = reauthorizeScript
;(global as any).reinstallTriggers = reinstallTriggers
;(global as any).newSkuHandler = newSkuHandler