@openremote/model 1.5.0 → 1.6.0-snapshot.20250425130725

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.
Files changed (2) hide show
  1. package/lib/model.d.ts +2 -2
  2. package/package.json +2 -2
package/lib/model.d.ts CHANGED
@@ -167,9 +167,9 @@ export interface AgentDescriptor extends AssetDescriptor {
167
167
  icon?: string;
168
168
  colour?: string;
169
169
  instanceDiscoveryProvider?: boolean;
170
- assetDiscovery?: boolean;
171
170
  assetImport?: boolean;
172
171
  agentLinkType?: string;
172
+ assetDiscovery?: boolean;
173
173
  dynamic?: boolean;
174
174
  }
175
175
  export interface AgentLink {
@@ -555,10 +555,10 @@ export interface AttributeEvent extends SharedEvent, AttributeInfo {
555
555
  }
556
556
  export interface AttributeInfo extends AssetInfo, NameValueHolder<any>, MetaHolder, Comparable<AttributeInfo> {
557
557
  oldValue?: any;
558
+ oldValueTimestamp?: number;
558
559
  value?: any;
559
560
  ref?: AttributeRef;
560
561
  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.5.0",
3
+ "version": "1.6.0-snapshot.20250425130725",
4
4
  "description": "OpenRemote 3.x Model Types",
5
5
  "main": "dist/umd/index.bundle.js",
6
6
  "module": "lib/index.js",
@@ -21,7 +21,7 @@
21
21
  "author": "OpenRemote",
22
22
  "license": "AGPL-3.0-or-later",
23
23
  "devDependencies": {
24
- "@openremote/util": "1.5.0"
24
+ "@openremote/util": "1.6.0-snapshot.20250425130725"
25
25
  },
26
26
  "publishConfig": {
27
27
  "access": "public"