From 8a69f2e291a120e656e80d34ac797d6ac551e0e8 Mon Sep 17 00:00:00 2001 From: Bob van de Vijver Date: Fri, 26 Jun 2026 11:42:44 +0200 Subject: [PATCH] Add missing manufacturerId to CommandDefinition --- index.d.ts | 1 + scripts/template.d.ts.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index b52adc7..028af5f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -3239,6 +3239,7 @@ declare module "zigbee-clusters" { type CommandDefinition = { id: number, + manufacturerId?: number, direction?: CommandDirection, args?: { [argName: string]: ZCLDataType, diff --git a/scripts/template.d.ts.txt b/scripts/template.d.ts.txt index 0ac980f..c3937d9 100644 --- a/scripts/template.d.ts.txt +++ b/scripts/template.d.ts.txt @@ -565,6 +565,7 @@ declare module 'zigbee-clusters' { type CommandDefinition = { id: number, + manufacturerId?: number, direction?: CommandDirection, args?: { [argName: string]: ZCLDataType,