We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 490dd32 commit 3145285Copy full SHA for 3145285
src/api/devices.ts
@@ -17,13 +17,17 @@ const ProvisionDevice = Type.Object({
17
bulkOpsRequestId: Type.String(),
18
})
19
20
-type FwType =
21
- | 'APP'
22
- | 'MODEM'
23
- | 'BOOT'
24
- | 'SOFTDEVICE'
25
- | 'BOOTLOADER'
26
- | 'MDM_FULL'
+/**
+ * firmware types supported by a device for FOTA
+ */
+enum FwType {
+ APP = 'APP',
+ MODEM = 'MODEM',
+ BOOT = 'BOOT',
27
+ SOFTDEVICE = 'SOFTDEVICE',
28
+ BOOTLOADER = 'BOOTLOADER',
29
+ MDM_FULL = 'MDM_FULL',
30
+}
31
32
export const devices = (
33
{
0 commit comments