@edgeiq/edgeiq-api-js 1.3.41 → 1.3.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,10 +6,13 @@ export interface ConfigurableSettingsInput {
|
|
|
6
6
|
key: string;
|
|
7
7
|
type: ConfigurationSettingTypeEnum;
|
|
8
8
|
default?: string;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
required: boolean;
|
|
10
|
+
list_items?: [
|
|
11
|
+
{
|
|
12
|
+
label: string;
|
|
13
|
+
value: string;
|
|
14
|
+
}
|
|
15
|
+
];
|
|
13
16
|
}
|
|
14
17
|
export interface ConfigurableSettings extends ConfigurableSettingsInput, Base {
|
|
15
18
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Base, Filter, Filters, Pagination } from '../models';
|
|
2
|
-
export declare type GatewayCommandType = 'activate_cloud_native_device' | 'backup' | '
|
|
2
|
+
export declare type GatewayCommandType = 'activate_cloud_native_device' | 'backup' | 'data_restriction' | 'deactivate_cloud_native_device' | 'disable_data_restriction' | 'enable_data_restriction' | 'greengrass_initialize' | 'heartbeat' | 'log_level' | 'log_upload' | 'lwm2m_request' | 'lwm2m_file' | 'restore_backup' | 'reboot' | 'reset' | 'send_config' | 'setting' | 'software_update' | 'status';
|
|
3
3
|
export declare type CommandType = 'download' | 'fileupload' | 'filedownload' | 'execute' | 'observe' | 'observe_stop' | 'read' | 'upload' | 'write';
|
|
4
4
|
export interface CommandSchedule {
|
|
5
5
|
start_datetime: string;
|
|
@@ -8,12 +8,12 @@ export interface SettingsValue {
|
|
|
8
8
|
value?: string;
|
|
9
9
|
}
|
|
10
10
|
export interface SettingInput {
|
|
11
|
+
name: string;
|
|
12
|
+
command_id: string;
|
|
11
13
|
configuration_id: string;
|
|
12
|
-
|
|
14
|
+
settings_values: SettingsValue[];
|
|
13
15
|
}
|
|
14
16
|
export interface Setting extends SettingInput, Base {
|
|
15
|
-
id: string;
|
|
16
|
-
size: number;
|
|
17
17
|
}
|
|
18
18
|
export interface SettingFilters extends Filters {
|
|
19
19
|
unique_id?: Filter;
|
|
@@ -6,10 +6,14 @@ export interface SettingsApplicationRecordInput {
|
|
|
6
6
|
export interface SettingsApplicationRecord extends SettingsApplicationRecordInput, Base {
|
|
7
7
|
id: string;
|
|
8
8
|
size: number;
|
|
9
|
+
device_id: string;
|
|
10
|
+
configuration_id: string;
|
|
9
11
|
}
|
|
10
12
|
export interface SettingsApplicationRecordFilters extends Filters {
|
|
11
13
|
settings_id?: Filter;
|
|
12
14
|
gateway_command_id?: Filter;
|
|
15
|
+
device_id?: Filter;
|
|
16
|
+
configuration_id?: Filter;
|
|
13
17
|
}
|
|
14
18
|
export interface PaginatedSettingsApplicationRecord {
|
|
15
19
|
settingsApplicationRecord: SettingsApplicationRecord[];
|