/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Description of possible JSON configuration values for different device operations */ export interface MCUBootPluginOperationsArguments { /** * Options for programming over MCUBoot */ operation: { type: 'program'; /** * Firmware to program on device */ firmware?: { /** * Path to firmware file */ file?: string; /** * Firmware as a base64 encoded buffer */ buffer?: string; /** * Firmware format */ format?: | 'NRFDL_FW_MCUBOOT' | 'NRFDL_FW_NRF91_MODEM' | 'NRFDL_FW_MCUBOOT_MULTI_IMAGE' | 'NRFDL_FW_INTEL_HEX'; }; /** * MCU state to enter after operation is completed. */ mcu_end_state?: 'NRFDL_MCU_STATE_APPLICATION' | 'NRFDL_MCU_STATE_PROGRAMMING'; /** * Delay duration to allow successful image swap from RAM NET to NET core after image upload */ net_core_upload_delay?: number; }; /** * Operation ID sent back from operation callbacks */ operationId?: string; }