Skip to content

Commit

Permalink
feat(klaviyo): no errors for channels without klaviyo
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnvdbrug committed Dec 13, 2024
1 parent 573590f commit 621066e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/vendure-plugin-klaviyo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pinelab/vendure-plugin-klaviyo",
"version": "1.3.1",
"version": "1.3.2",
"description": "An extensible plugin for sending placed orders to the Klaviyo marketing platform.",
"author": "Martijn van de Brug <[email protected]>",
"homepage": "https://pinelab-plugins.com/",
Expand Down
2 changes: 1 addition & 1 deletion packages/vendure-plugin-klaviyo/src/klaviyo.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface KlaviyoPluginOptionsInput {
/**
* Private API key from your Klaviyo dashboard
*/
apiKey: string | ((ctx: RequestContext) => string);
apiKey: string | ((ctx: RequestContext) => string | undefined);
/**
* Map a Vendure event to a Klaviyo event.
*/
Expand Down

0 comments on commit 621066e

Please sign in to comment.