From 1b9ba48e347d86b824cda42aa5b06c01927882c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Wed, 1 Jul 2026 15:53:53 +0200 Subject: [PATCH] Update onboarding v2 credit reward amounts (#22399) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adjusts the free-credit rewards shown and granted across onboarding v2: - Import contacts: 2 → 1 credit - Install app: 1 → 0.5 credit per app - Invite user: 0.5 credit per user (unchanged) - Upgrade free trial: 5 → 1 credit All values live as defaults in `config-variables.ts` (micro-credits) and reach the frontend via ClientConfig, so nothing else needed changing. Note: the upgrade reward maps to `BILLING_FREE_WORKFLOW_CREDITS_FOR_TRIAL_PERIOD_WITH_CREDIT_CARD`, which is also the actual with-credit-card trial grant, so that grant drops from 5 → 1 credit too (intentionally the same number the onboarding advertises). Review in cubic --- .../engine/core-modules/twenty-config/config-variables.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts b/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts index 7e95bbfaa5..8f6a4e5341 100644 --- a/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts +++ b/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts @@ -862,7 +862,7 @@ export class ConfigVariables { }) @CastToPositiveNumber() @ValidateIf((env) => env.IS_BILLING_ENABLED === true) - BILLING_FREE_WORKFLOW_CREDITS_FOR_TRIAL_PERIOD_WITH_CREDIT_CARD = 5_000_000; + BILLING_FREE_WORKFLOW_CREDITS_FOR_TRIAL_PERIOD_WITH_CREDIT_CARD = 1_000_000; @ConfigVariablesMetadata({ group: ConfigVariablesGroup.BILLING_CONFIG, @@ -942,7 +942,7 @@ export class ConfigVariables { @CastToPositiveNumber() @IsInt() @IsOptional() - ONBOARDING_IMPORT_CONTACTS_CREDITS_REWARD = 2_000_000; + ONBOARDING_IMPORT_CONTACTS_CREDITS_REWARD = 1_000_000; @ConfigVariablesMetadata({ group: ConfigVariablesGroup.BILLING_CONFIG, @@ -975,7 +975,7 @@ export class ConfigVariables { @CastToPositiveNumber() @IsInt() @IsOptional() - ONBOARDING_INSTALL_APPS_CREDITS_REWARD_PER_APP = 1_000_000; + ONBOARDING_INSTALL_APPS_CREDITS_REWARD_PER_APP = 500_000; @ConfigVariablesMetadata({ group: ConfigVariablesGroup.SERVER_CONFIG,