@edgeiq/edgeiq-api-js 1.3.37 → 1.3.39
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Base, Filter, Filters, Pagination } from '../models';
|
|
2
2
|
export declare type ConfigurationSettingTypeEnum = 'boolean' | 'string' | 'integer' | 'predefined_list';
|
|
3
|
-
export interface
|
|
3
|
+
export interface ConfigurableSettingsInput {
|
|
4
4
|
description?: string;
|
|
5
|
-
configuration_id
|
|
5
|
+
configuration_id?: string;
|
|
6
6
|
key: string;
|
|
7
7
|
type: ConfigurationSettingTypeEnum;
|
|
8
8
|
default?: string;
|
|
@@ -11,11 +11,13 @@ export interface ConfigurableSettings extends Base {
|
|
|
11
11
|
[key: string]: unknown;
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
export interface ConfigurableSettings extends ConfigurableSettingsInput, Base {
|
|
15
|
+
}
|
|
14
16
|
export interface ConfigurationInput {
|
|
15
17
|
name: string;
|
|
16
18
|
company_id: string;
|
|
17
19
|
device_type_id: string;
|
|
18
|
-
configurable_settings:
|
|
20
|
+
configurable_settings: ConfigurableSettingsInput[];
|
|
19
21
|
}
|
|
20
22
|
export interface Configuration extends ConfigurationInput, Base {
|
|
21
23
|
}
|