From dcd84fb290d7a6bcb039ce185034b908cb9e43fc Mon Sep 17 00:00:00 2001 From: Donatien Garnier Date: Wed, 6 Nov 2024 13:24:06 +0000 Subject: [PATCH] Add Blecon Device SDK to index (#48) * Add Blecon as a partner organization * Add Blecon Device SDK v1.2.1 to list of add-ons --- index/blecon.json | 28 ++++++++++++++++++++++++++++ scripts/generate-index-json.ts | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 index/blecon.json 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;