From f1c32de73024354e52ad3f964362474530ff92fd Mon Sep 17 00:00:00 2001 From: Koen Kanters Date: Thu, 16 Oct 2025 22:37:29 +0200 Subject: [PATCH] fix: Rename `ZigBee` -> `Zigbee` --- src/ghw_identify_stacks.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ghw_identify_stacks.ts b/src/ghw_identify_stacks.ts index 795e41f..fe9e075 100644 --- a/src/ghw_identify_stacks.ts +++ b/src/ghw_identify_stacks.ts @@ -6,11 +6,11 @@ import type {Octokit} from "@octokit/rest"; import {BASE_INDEX_MANIFEST_FILENAME, BASE_REPO_URL, parseImageHeader, REPO_BRANCH, readManifest, UPGRADE_FILE_IDENTIFIER} from "./common.js"; -enum ZigBeeStackVersion { - ZigBee2006 = 0x0000, - ZigBee2007 = 0x0001, - ZigBeePro = 0x0002, - ZigBeeIP = 0x0003, +enum ZigbeeStackVersion { + Zigbee2006 = 0x0000, + Zigbee2007 = 0x0001, + ZigbeePro = 0x0002, + ZigbeeIP = 0x0003, } type FirmwareStack = { @@ -25,7 +25,7 @@ type FirmwareStack = { | "ZBOSS" // https://github.com/TexasInstruments/simplelink-lowpower-f3-sdk or https://github.com/nrfconnect/ncs-zigbee/ or https://github.com/nrfconnect/ncs-zigbee-r22/ or https://github.com/espressif/esp-zigbee-sdk | "Unknown"; stackDetails: string; - /** @see ZigBeeStackVersion */ + /** @see ZigbeeStackVersion */ zigbeeStackVersion: string; }; @@ -205,7 +205,7 @@ export function identifyStacks(github: Octokit, core: typeof CoreApi, context: C // modelId: meta.modelId, stack, stackDetails, - zigbeeStackVersion: ZigBeeStackVersion[header.zigbeeStackVersion], + zigbeeStackVersion: ZigbeeStackVersion[header.zigbeeStackVersion], }); }