@openremote/model 1.10.0 → 1.11.0-snapshot.20251030160722
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 +1 -1
- package/package.json +1 -4
package/lib/model.d.ts
CHANGED
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openremote/model",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0-snapshot.20251030160722",
|
|
4
4
|
"description": "OpenRemote 3.x Model Types",
|
|
5
5
|
"main": "dist/umd/index.bundle.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -20,9 +20,6 @@
|
|
|
20
20
|
},
|
|
21
21
|
"author": "OpenRemote",
|
|
22
22
|
"license": "AGPL-3.0-or-later",
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"@openremote/util": "1.10.0"
|
|
25
|
-
},
|
|
26
23
|
"publishConfig": {
|
|
27
24
|
"access": "public"
|
|
28
25
|
}
|