@spotto/contract 1.0.70-alpha.13 → 1.0.70-alpha.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.
@@ -60,6 +60,8 @@ export interface AssetFilters {
60
60
  createdAt?: DateCondition[];
61
61
  updatedAt?: DateCondition[];
62
62
  lastSeen?: DateCondition[];
63
+ /** Offline-sync delta read: matches records whose `lastChanged` >= this ms-epoch. */
64
+ updatedAfter?: number;
63
65
  }
64
66
  export interface GetAssetsQuery extends AssetFilters {
65
67
  page?: number;
@@ -22,6 +22,8 @@ export interface LocationFilters {
22
22
  */
23
23
  manifestId?: string;
24
24
  manifestIds?: string[];
25
+ /** Offline-sync delta read: matches records whose `lastChanged` >= this ms-epoch. */
26
+ updatedAfter?: number;
25
27
  }
26
28
  export interface GetLocationsQuery extends LocationFilters {
27
29
  page?: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spotto/contract",
3
3
  "license": "ISC",
4
- "version": "1.0.70-alpha.13",
4
+ "version": "1.0.70-alpha.14",
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": "ee164edbac29f51e60ef9c6046399a9e0ac4c316"
21
+ "gitHead": "ba0e5b9a18578cbd52650398edfc177aff70a595"
22
22
  }