match attributionDomains entity to database schema

This commit is contained in:
Hazelnoot 2025-06-06 13:17:20 -04:00
parent 5f51f7878e
commit 3bf0a737c8
3 changed files with 21 additions and 7 deletions

View file

@ -263,9 +263,15 @@ export const paramDef = {
enum: userUnsignedFetchOptions,
nullable: false,
},
attributionDomains: { type: 'array', items: {
type: 'string',
} },
attributionDomains: {
type: 'array',
items: {
type: 'string',
minLength: 1,
maxLength: 128,
},
maxLength: 32,
},
},
} as const;