From 0fbf31915f4f786f35d93e5e39836d5ea706ce0c Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 12 Aug 2026 07:08:02 -0700 Subject: [PATCH] chore(protocol): regenerate after rebase --- scripts/check-protocol-registry.mts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-protocol-registry.mts b/scripts/check-protocol-registry.mts index 8da7b07f4be0..dbbc0a649908 100644 --- a/scripts/check-protocol-registry.mts +++ b/scripts/check-protocol-registry.mts @@ -113,8 +113,8 @@ const ownerModules = [ ...schemaModulesSource.matchAll(/^export \* from "\.\/schema\/([^"]+)\.js";$/gmu), ].map(([, moduleName = ""]) => moduleName); check( - ownerModules.length === 56 && new Set(ownerModules).size === ownerModules.length, - "schema-modules.ts must contain one unique 56-module owner list", + ownerModules.length === 57 && new Set(ownerModules).size === ownerModules.length, + "schema-modules.ts must contain one unique 57-module owner list", ); check( schemaModulesSource.split("\n").filter(Boolean).length === ownerModules.length,