@spotto/contract 0.3.4-alpha.14 → 0.3.4-alpha.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.
@@ -2,15 +2,12 @@ import { IEmbeddedEntity } from '../../shared';
2
2
  import { EventType } from '../constants';
3
3
  import { GetEventsQuery } from './query';
4
4
  import { DeviceType, ReaderType } from '../../readers/constants';
5
- export interface EventLocation extends IEmbeddedEntity {
6
- organisation?: IEmbeddedEntity;
7
- }
8
5
  export interface GetEventResponse {
9
6
  id: string;
10
7
  timestamp: number;
11
8
  type: EventType;
12
9
  asset?: IEmbeddedEntity;
13
- location?: EventLocation;
10
+ location?: IEmbeddedEntity;
14
11
  reader?: IEmbeddedEntity;
15
12
  user?: IEmbeddedEntity;
16
13
  payload?: {
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export * from './shared';
2
2
  export * from './events';
3
3
  export * from './integrations';
4
4
  export * from './assets';
5
+ export * from './levels';
5
6
  export * from './locations';
6
7
  export * from './networks';
7
8
  export * from './organisations';
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ __exportStar(require("./shared"), exports);
14
14
  __exportStar(require("./events"), exports);
15
15
  __exportStar(require("./integrations"), exports);
16
16
  __exportStar(require("./assets"), exports);
17
+ __exportStar(require("./levels"), exports);
17
18
  __exportStar(require("./locations"), exports);
18
19
  __exportStar(require("./networks"), exports);
19
20
  __exportStar(require("./organisations"), exports);
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,iDAA+B;AAC/B,2CAAyB;AACzB,8CAA4B;AAC5B,6CAA2B;AAC3B,kDAAgC;AAChC,4CAA0B;AAC1B,0CAAwB;AACxB,yCAAuB;AACvB,8CAA4B;AAC5B,6CAA2B;AAC3B,0CAAwB;AACxB,2CAAyB;AACzB,iDAA+B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,iDAA+B;AAC/B,2CAAyB;AACzB,2CAAyB;AACzB,8CAA4B;AAC5B,6CAA2B;AAC3B,kDAAgC;AAChC,4CAA0B;AAC1B,0CAAwB;AACxB,yCAAuB;AACvB,8CAA4B;AAC5B,6CAA2B;AAC3B,0CAAwB;AACxB,2CAAyB;AACzB,iDAA+B"}
@@ -0,0 +1,3 @@
1
+ export interface GetLevelsResponse {
2
+ levels: string[];
3
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=get.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get.js","sourceRoot":"","sources":["../../src/levels/get.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export * from './get';
2
+ export * from './put';
3
+ export * from './post';
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./get"), exports);
14
+ __exportStar(require("./put"), exports);
15
+ __exportStar(require("./post"), exports);
16
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/levels/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,wCAAsB;AACtB,wCAAsB;AACtB,yCAAuB"}
@@ -0,0 +1,5 @@
1
+ export interface PostLevelRequest {
2
+ level: string;
3
+ }
4
+ export interface PostLevelResponse {
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=post.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"post.js","sourceRoot":"","sources":["../../src/levels/post.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export interface PutLevelsRequest {
2
+ levels: string[];
3
+ }
4
+ export interface PutLevelsResponse {
5
+ levels: string[];
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=put.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"put.js","sourceRoot":"","sources":["../../src/levels/put.ts"],"names":[],"mappings":""}
@@ -3,7 +3,5 @@ export interface IInventoryItem extends IEmbeddedEntity {
3
3
  firstSeen: number;
4
4
  lastSeen: number;
5
5
  organisation?: IEmbeddedEntity;
6
- distance?: number;
7
- battery?: number;
8
6
  }
9
7
  export declare type GetLocationInventoryResponse = IInventoryItem[];
@@ -6,6 +6,7 @@ export interface GetLocationsQuery {
6
6
  limit?: number;
7
7
  ids?: string[];
8
8
  tagIds?: string[];
9
+ levels?: string[];
9
10
  hasTags?: boolean;
10
11
  hasReaders?: boolean;
11
12
  setupComplete?: boolean;
@@ -3,7 +3,8 @@ import { IReaderTelemetry } from '../../telemetry';
3
3
  import { ReaderType, DeviceType } from '../constants';
4
4
  export interface IReaderStatus {
5
5
  online: boolean;
6
- transitionTime?: number;
6
+ onlineTime: number;
7
+ lastReportedTime: number;
7
8
  }
8
9
  export interface IFixedReaderLocation extends IEmbeddedEntity {
9
10
  type: 'FIXED';
@@ -1 +1,2 @@
1
+ export * from './query';
1
2
  export * from './response';
@@ -10,5 +10,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./query"), exports);
13
14
  __exportStar(require("./response"), exports);
14
15
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/readers/[id]/inventory/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA2B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/readers/[id]/inventory/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAAwB;AACxB,6CAA2B"}
@@ -0,0 +1,3 @@
1
+ export interface GetReaderInventoryQuery {
2
+ windowSize?: number;
3
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=query.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"query.js","sourceRoot":"","sources":["../../../../src/readers/[id]/inventory/query.ts"],"names":[],"mappings":""}
@@ -1,5 +1,2 @@
1
1
  import { IInventoryItem } from '../../../locations/[id]/inventory';
2
- export interface IReaderInventoryItem extends IInventoryItem {
3
- rssi?: number;
4
- }
5
- export declare type GetReaderInventoryResponse = IReaderInventoryItem[];
2
+ export declare type GetReaderInventoryResponse = IInventoryItem[];
@@ -1,4 +1,4 @@
1
- export declare type DeviceType = 'B1' | 'A1' | 'RF1A4' | 'RF1F' | 'HD1' | 'ZEBRA' | 'IMPINJ' | 'TURCK' | 'THINXTRA' | 'OTHER' | 'APPLICATION';
1
+ export declare type DeviceType = 'B1' | 'RF1A4' | 'RF1F' | 'HD1' | 'ZEBRA' | 'IMPINJ' | 'TURCK' | 'THINXTRA' | 'OTHER' | 'APPLICATION';
2
2
  export declare const DEVICE_TYPES: DeviceType[];
3
3
  export declare type DeviceTechnologyType = 'BLE' | 'RFID' | 'HID';
4
4
  export declare type ConnectorEndpoint = 'iotx3' | 'zebra' | 'impinj' | 'turck' | 'thinxtra' | 'detector' | 'other' | 'zebra';
@@ -8,7 +8,7 @@ export interface IDeviceTypeDetail {
8
8
  id: DeviceType;
9
9
  name: string;
10
10
  technology: DeviceTechnologyType[];
11
- endpoint?: ConnectorEndpoint;
11
+ endpoint: ConnectorEndpoint;
12
12
  protocol: ConnectorProtocol;
13
13
  deviceIdFormat?: DeviceIdFormat;
14
14
  visible: boolean;
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.isIoTX3 = exports.getDeviceTypesForEndpoint = exports.getDeviceTypesForFormat = exports.getDeviceTypes = exports.getDeviceTypeById = exports.DEVICE_TYPE_DETAILS = exports.DEVICE_TYPES = void 0;
4
4
  exports.DEVICE_TYPES = [
5
5
  'B1',
6
- 'A1',
7
6
  'RF1A4',
8
7
  'RF1F',
9
8
  'HD1',
@@ -24,14 +23,6 @@ exports.DEVICE_TYPE_DETAILS = [
24
23
  deviceIdFormat: 'mac',
25
24
  visible: true,
26
25
  },
27
- {
28
- id: 'A1',
29
- name: 'Spotto A1 Bluetooth Reader',
30
- technology: ['BLE'],
31
- protocol: 'mqtt',
32
- deviceIdFormat: 'mac',
33
- visible: true,
34
- },
35
26
  {
36
27
  id: 'RF1A4',
37
28
  name: 'Spotto RF1A4 RFID Reader',
@@ -1 +1 @@
1
- {"version":3,"file":"deviceTypes.js","sourceRoot":"","sources":["../../../src/readers/constants/deviceTypes.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"deviceTypes.js","sourceRoot":"","sources":["../../../src/readers/constants/deviceTypes.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spotto/contract",
3
3
  "license": "ISC",
4
- "version": "0.3.4-alpha.14",
4
+ "version": "0.3.4-alpha.3",
5
5
  "description": "Spotto's API Contract type definitions",
6
6
  "main": "./dist/index.js",
7
7
  "files": [
@@ -11,5 +11,5 @@
11
11
  "build": "rm -rf dist && tsc --project tsconfig.json",
12
12
  "clean": "rm -rf node_modules && rm -rf yarn.lock"
13
13
  },
14
- "gitHead": "4a3d0ec3746f3d7cfe70cd669df8c9898ed0e5a9"
14
+ "gitHead": "3b44df141e8685866cbd4a427baeee9e52db4ff2"
15
15
  }