From aa212bea90bd96168d888497f4f892ca546c02c4 Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Sun, 28 Sep 2025 19:48:18 +0300 Subject: [PATCH] add pricing for WanImageToImageApi node (#5829) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Currently the price is constant. ## Screenshots (if applicable) Screenshot From 2025-09-28 18-01-47 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-5829-add-pricing-for-WanImageToImageApi-node-27c6d73d36508137b1baf75c0031f172) by [Unito](https://www.unito.io) --- src/composables/node/useNodePricing.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/composables/node/useNodePricing.ts b/src/composables/node/useNodePricing.ts index 91f957463..28cfeec78 100644 --- a/src/composables/node/useNodePricing.ts +++ b/src/composables/node/useNodePricing.ts @@ -1613,6 +1613,9 @@ const apiNodeCosts: Record = }, WanTextToImageApi: { displayPrice: '$0.03/Run' + }, + WanImageToImageApi: { + displayPrice: '$0.03/Run' } }