From aaf37734d23ad6b8b7377db706370d8a3159b91e Mon Sep 17 00:00:00 2001 From: amianthus <49116958+SirTenzin@users.noreply.github.com> Date: Mon, 20 Apr 2026 14:43:54 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20change=20descriptions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/api/common/customerData.ts | 2 +- shared/api/customers/apiCustomerV5.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/shared/api/common/customerData.ts b/shared/api/common/customerData.ts index 3ec57eec0..9c24458cc 100644 --- a/shared/api/common/customerData.ts +++ b/shared/api/common/customerData.ts @@ -58,7 +58,7 @@ export const CustomerDataSchema = z .object({ disable_pooled_balance: z.boolean().optional().meta({ description: - "Whether to block this customer from the shared feature pool.", + "Whether to disable the shared customer-level pool for entities.", }), }) .optional() diff --git a/shared/api/customers/apiCustomerV5.ts b/shared/api/customers/apiCustomerV5.ts index 366529090..15c6ad1a3 100644 --- a/shared/api/customers/apiCustomerV5.ts +++ b/shared/api/customers/apiCustomerV5.ts @@ -100,7 +100,8 @@ export const BaseApiCustomerV5Schema = BaseApiCustomerSchema.extend({ config: z .object({ disable_pooled_balance: z.boolean().optional().meta({ - description: "Whether to block the shared pool for the customer.", + description: + "Whether to let entities fall back into the shared customer-level pool.", }), }) .optional()