harvester_sdk 1.0.64 → 1.0.65

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 (3) hide show
  1. package/dist/sdk.d.ts +1 -1
  2. package/package.json +1 -1
  3. package/sdk.ts +1 -1
package/dist/sdk.d.ts CHANGED
@@ -33,7 +33,7 @@ export interface GetGeosParams extends PaginationParams {
33
33
  }
34
34
  export interface GetEventsParams {
35
35
  region_id: string;
36
- created_at?: number;
36
+ updated_at?: number;
37
37
  geo_selection_id?: string;
38
38
  }
39
39
  export interface GetDataParams extends PaginationParams {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harvester_sdk",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "description": "SDK for interacting with the Harvester API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/sdk.ts CHANGED
@@ -50,7 +50,7 @@ export interface GetGeosParams extends PaginationParams {
50
50
 
51
51
  export interface GetEventsParams {
52
52
  region_id: string;
53
- created_at?: number;
53
+ updated_at?: number;
54
54
  geo_selection_id?: string;
55
55
  }
56
56