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()