@openremote/model 1.11.1 → 1.11.3
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.
- package/lib/model.d.ts +2 -2
- package/package.json +1 -1
package/lib/model.d.ts
CHANGED
|
@@ -194,7 +194,6 @@ export interface AgentDescriptor extends AssetDescriptor {
|
|
|
194
194
|
dynamic?: boolean;
|
|
195
195
|
}
|
|
196
196
|
export interface AgentLink {
|
|
197
|
-
type: string;
|
|
198
197
|
id?: string;
|
|
199
198
|
valueFilters?: ValueFilterUnion[];
|
|
200
199
|
valueConverter?: {
|
|
@@ -207,6 +206,7 @@ export interface AgentLink {
|
|
|
207
206
|
messageMatchPredicate?: ValuePredicateUnion;
|
|
208
207
|
messageMatchFilters?: ValueFilterUnion[];
|
|
209
208
|
updateOnWrite?: boolean;
|
|
209
|
+
type?: string;
|
|
210
210
|
}
|
|
211
211
|
export interface Protocol {
|
|
212
212
|
}
|
|
@@ -554,11 +554,11 @@ export interface AttributeEvent extends SharedEvent, AttributeInfo {
|
|
|
554
554
|
createdOn?: DateAsNumber;
|
|
555
555
|
}
|
|
556
556
|
export interface AttributeInfo extends AssetInfo, NameValueHolder<any>, MetaHolder, Comparable<AttributeInfo> {
|
|
557
|
-
oldValueTimestamp?: number;
|
|
558
557
|
oldValue?: any;
|
|
559
558
|
value?: any;
|
|
560
559
|
ref?: AttributeRef;
|
|
561
560
|
timestamp?: number;
|
|
561
|
+
oldValueTimestamp?: number;
|
|
562
562
|
}
|
|
563
563
|
export interface AttributeLink {
|
|
564
564
|
ref?: AttributeRef;
|