feat: 🎸 change descriptions

This commit is contained in:
amianthus
2026-04-20 14:43:54 +01:00
parent 0a1bb92afd
commit aaf37734d2
2 changed files with 3 additions and 2 deletions

View File

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

View File

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