@spotto/contract 1.0.14-alpha.0 → 1.0.14

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.
@@ -21,6 +21,9 @@ export interface GetEventResponse {
21
21
  network?: string;
22
22
  deviceId?: string;
23
23
  location?: IEmbeddedEntity;
24
+ typeId?: string;
25
+ nameSuffix?: string;
26
+ manifestId?: string;
24
27
  };
25
28
  }
26
29
  export interface GetEventsResponse {
@@ -4,6 +4,7 @@ export interface DeletedCounts {
4
4
  tags?: number;
5
5
  readers?: number;
6
6
  events?: number;
7
+ types?: number;
7
8
  users?: number;
8
9
  }
9
10
  export interface DeleteOrganisationResponse {
@@ -3,6 +3,16 @@ export interface ReaderPreferences {
3
3
  types: ReaderType[];
4
4
  deviceTypes: DeviceType[];
5
5
  }
6
+ export interface AssetPreferences {
7
+ typesEnabled: boolean;
8
+ typesRequired: boolean;
9
+ typesLeafNodesOnly: boolean;
10
+ }
11
+ export interface LocationPreferences {
12
+ manifestsEnabled: boolean;
13
+ }
6
14
  export interface Preferences {
7
15
  readers: ReaderPreferences;
16
+ assets: AssetPreferences;
17
+ locations: LocationPreferences;
8
18
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spotto/contract",
3
3
  "license": "ISC",
4
- "version": "1.0.14-alpha.0",
4
+ "version": "1.0.14",
5
5
  "description": "Spotto's API Contract type definitions",
6
6
  "main": "./dist/index.js",
7
7
  "files": [
@@ -14,5 +14,5 @@
14
14
  "devDependencies": {
15
15
  "@types/geojson": "^7946.0.8"
16
16
  },
17
- "gitHead": "56c10fe53ee2c9dd909a63f2cf100686b4e01c0d"
17
+ "gitHead": "96b0cfc28913a294e3c323832498b5ab7a84e34c"
18
18
  }