diff --git a/src/global.ts b/src/global.ts index c562271..9440473 100644 --- a/src/global.ts +++ b/src/global.ts @@ -9,9 +9,11 @@ import { updateShopifyProductHandler, reauthorizeScript, } from "./initMenu" +import { createMissingPhotoFolders } from "./createMissingPhotoFolders" import { reinstallTriggers } from "./triggers" import { newSkuHandler } from "./newSku" import { columnOnEditHandler } from "./OnEditHandler" +import { fillProductFromTemplate } from "./fillProductFromTemplate" ;(global as any).onOpen = onOpen ;(global as any).initMenu = initMenu ;(global as any).getShopifyProducts = getShopifyProducts @@ -22,3 +24,5 @@ import { columnOnEditHandler } from "./OnEditHandler" ;(global as any).reauthorizeScript = reauthorizeScript ;(global as any).reinstallTriggers = reinstallTriggers ;(global as any).newSkuHandler = newSkuHandler +;(global as any).fillProductFromTemplate = fillProductFromTemplate +;(global as any).createMissingPhotoFolders = createMissingPhotoFolders