diff --git a/index/blecon.json b/index/blecon.json new file mode 100644 index 0000000..f8b2a48 --- /dev/null +++ b/index/blecon.json @@ -0,0 +1,28 @@ +{ + "name": "Blecon", + "description": "Blecon IoT Connectivity for Bluetooth SDK", + "apps": [ + { + "name": "blecon-device-sdk", + "title": "Blecon Device SDK", + "description": "Enable Blecon Bluetooth to Cloud IoT Connectivity on your device using the Blecon Device SDK. This SDK includes the Blecon modem libraries and samples.", + "kind": "sample", + "license": "Apache License 2.0", + "apps": "examples/zephyr/*", + "releases": [ + { + "date": "2024-08-09T14:46:00Z", + "name": "Blecon Device SDK v1.2.1", + "tag": "v1.2.1", + "sdk": "v2.7.0" + } + ], + "tags": [ + "blecon", + "bluetooth", + "ble", + "connectivity" + ] + } + ] +} diff --git a/scripts/generate-index-json.ts b/scripts/generate-index-json.ts index d43e07d..9ac5252 100644 --- a/scripts/generate-index-json.ts +++ b/scripts/generate-index-json.ts @@ -23,7 +23,7 @@ import { ParsedOrgFile, readOrgIndexFiles } from './orgFiles'; import { execSync } from 'child_process'; const nordicOrgs: string[] = ['nrfconnect', 'nordic', 'nordicplayground']; -const partnerOrgs: string[] = ['golioth']; +const partnerOrgs: string[] = ['golioth', 'blecon']; function notUndefined(value: T | undefined): value is T { return value !== undefined;