diff --git a/lexicons/app/bsky/graph/defs.json b/lexicons/app/bsky/graph/defs.json index 68dc8aa1e11..42292ca3f7b 100644 --- a/lexicons/app/bsky/graph/defs.json +++ b/lexicons/app/bsky/graph/defs.json @@ -8,7 +8,12 @@ "properties": { "uri": { "type": "string", "format": "at-uri" }, "cid": { "type": "string", "format": "cid" }, - "name": { "type": "string", "maxLength": 64, "minLength": 1 }, + "name": { + "type": "string", + "maxGraphemes": 64, + "maxLength": 640, + "minLength": 1 + }, "purpose": { "type": "ref", "ref": "#listPurpose" }, "avatar": { "type": "string", "format": "uri" }, "listItemCount": { "type": "integer", "minimum": 0 }, @@ -27,7 +32,12 @@ "uri": { "type": "string", "format": "at-uri" }, "cid": { "type": "string", "format": "cid" }, "creator": { "type": "ref", "ref": "app.bsky.actor.defs#profileView" }, - "name": { "type": "string", "maxLength": 64, "minLength": 1 }, + "name": { + "type": "string", + "maxGraphemes": 64, + "maxLength": 640, + "minLength": 1 + }, "purpose": { "type": "ref", "ref": "#listPurpose" }, "description": { "type": "string", diff --git a/lexicons/app/bsky/graph/list.json b/lexicons/app/bsky/graph/list.json index 131114126d3..4095407a6a4 100644 --- a/lexicons/app/bsky/graph/list.json +++ b/lexicons/app/bsky/graph/list.json @@ -17,7 +17,8 @@ }, "name": { "type": "string", - "maxLength": 64, + "maxGraphemes": 64, + "maxLength": 640, "minLength": 1, "description": "Display name for list; can not be empty." }, diff --git a/packages/api/src/client/lexicons.ts b/packages/api/src/client/lexicons.ts index 87c281a622b..46925c2c45d 100644 --- a/packages/api/src/client/lexicons.ts +++ b/packages/api/src/client/lexicons.ts @@ -6844,7 +6844,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, }, purpose: { @@ -6894,7 +6895,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, }, purpose: { @@ -7839,7 +7841,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, description: 'Display name for list; can not be empty.', }, diff --git a/packages/bsky/src/lexicon/lexicons.ts b/packages/bsky/src/lexicon/lexicons.ts index 9eb35ce9b77..8e211bdd647 100644 --- a/packages/bsky/src/lexicon/lexicons.ts +++ b/packages/bsky/src/lexicon/lexicons.ts @@ -6844,7 +6844,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, }, purpose: { @@ -6894,7 +6895,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, }, purpose: { @@ -7839,7 +7841,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, description: 'Display name for list; can not be empty.', }, diff --git a/packages/ozone/src/lexicon/lexicons.ts b/packages/ozone/src/lexicon/lexicons.ts index 87c281a622b..46925c2c45d 100644 --- a/packages/ozone/src/lexicon/lexicons.ts +++ b/packages/ozone/src/lexicon/lexicons.ts @@ -6844,7 +6844,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, }, purpose: { @@ -6894,7 +6895,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, }, purpose: { @@ -7839,7 +7841,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, description: 'Display name for list; can not be empty.', }, diff --git a/packages/pds/src/lexicon/lexicons.ts b/packages/pds/src/lexicon/lexicons.ts index 87c281a622b..46925c2c45d 100644 --- a/packages/pds/src/lexicon/lexicons.ts +++ b/packages/pds/src/lexicon/lexicons.ts @@ -6844,7 +6844,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, }, purpose: { @@ -6894,7 +6895,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, }, purpose: { @@ -7839,7 +7841,8 @@ export const schemaDict = { }, name: { type: 'string', - maxLength: 64, + maxGraphemes: 64, + maxLength: 640, minLength: 1, description: 'Display name for list; can not be empty.', },