From 2217cea0ad7df0e2b79e6c460de01722a3af8e03 Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 23 Feb 2026 18:35:00 -0800 Subject: [PATCH] =?UTF-8?q?chore(attributes):=20=F0=9F=94=A7=20Add/update?= =?UTF-8?q?=20default=20attribute=20validation=20rules=20and=20metadata=20?= =?UTF-8?q?schema?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/attributes/shared/msw/data/definitions.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/features/attributes/shared/msw/data/definitions.ts b/features/attributes/shared/msw/data/definitions.ts index 7d803cf8f..387b960e0 100644 --- a/features/attributes/shared/msw/data/definitions.ts +++ b/features/attributes/shared/msw/data/definitions.ts @@ -317,8 +317,9 @@ export const MOCK_ATTRIBUTE_DEFINITIONS: AttributeDefinition[] = [ { id: 'attr-def-11', code: 'advance_notice_hours', - name: 'Advance Notice Required', - description: 'Minimum hours advance notice for bookings', + name: 'Advance Notice (hours)', + description: 'Preferred minimum hours of advance notice for bookings', + helpText: 'How many hours ahead clients should ideally book', entityType: EntityType.USER, dataType: AttributeDataType.INTEGER, isRequired: false, @@ -326,7 +327,7 @@ export const MOCK_ATTRIBUTE_DEFINITIONS: AttributeDefinition[] = [ isSearchable: false, isMultiple: false, minValue: 0, - maxValue: 168, + maxValue: 72, displayOrder: 20, layoutHint: 'half', metaCategory: MetaCategory.AVAILABILITY,