@spotto/contract 1.0.69-alpha.12 → 1.0.69-alpha.13
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.
|
@@ -88,13 +88,13 @@ export interface IWorkflowActionExecutedEvent extends IBaseEvent {
|
|
|
88
88
|
export interface IArrivedEvent extends IBaseEvent {
|
|
89
89
|
type: 'Arrived';
|
|
90
90
|
asset: IEmbeddedEntity;
|
|
91
|
-
location
|
|
91
|
+
location?: AssetEventLocation;
|
|
92
92
|
reader?: IEmbeddedEntity;
|
|
93
93
|
}
|
|
94
94
|
export interface IExitedEvent extends IBaseEvent {
|
|
95
95
|
type: 'Exited';
|
|
96
96
|
asset: IEmbeddedEntity;
|
|
97
|
-
location
|
|
97
|
+
location?: AssetEventLocation;
|
|
98
98
|
reader?: IEmbeddedEntity;
|
|
99
99
|
}
|
|
100
100
|
export interface IReaderArrivedEvent extends IBaseEvent {
|
|
@@ -110,7 +110,7 @@ export interface IReaderExitedEvent extends IBaseEvent {
|
|
|
110
110
|
export interface IMovedEvent extends IBaseEvent {
|
|
111
111
|
type: 'Moved';
|
|
112
112
|
asset: IEmbeddedEntity;
|
|
113
|
-
location
|
|
113
|
+
location?: AssetEventLocation;
|
|
114
114
|
reader?: IEmbeddedEntity;
|
|
115
115
|
}
|
|
116
116
|
export interface IReaderOnlineEvent extends IBaseEvent {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spotto/contract",
|
|
3
3
|
"license": "ISC",
|
|
4
|
-
"version": "1.0.69-alpha.
|
|
4
|
+
"version": "1.0.69-alpha.13",
|
|
5
5
|
"description": "Spotto's API Contract type definitions",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"files": [
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"@types/geojson": "^7946.0.11",
|
|
19
19
|
"shx": "^0.3.4"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "1547269a2029008c7156c30c04feb08f63581136"
|
|
22
22
|
}
|