UNPKG

@hello.nrfcloud.com/proto

Version:

Documents the communication protocol between the hello.nrfcloud.com backend and the web application

14 lines (13 loc) 356 B
import { FOTAJobTarget } from './FOTAJob.js'; export var bundleIdToType = function(bundleId) { var type = bundleId.split('*')[0]; switch(type){ case 'APP': return FOTAJobTarget.application; case 'MODEM': case 'MDM_FULL': return FOTAJobTarget.modem; default: return null; } };