@veritree/services 2.15.0 → 2.16.0

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.
package/index.js CHANGED
@@ -27,6 +27,7 @@ import { ExternalReports } from './src/endpoints/external-reports';
27
27
  import { Evidence } from './src/endpoints/evidence';
28
28
  import { Crumbs } from './src/endpoints/crumbs';
29
29
  import { Verifications } from './src/endpoints/verifications';
30
+ import { ImagesAggregated } from './src/endpoints/images-aggregated';
30
31
 
31
32
  export {
32
33
  BulkUploads,
@@ -57,5 +58,6 @@ export {
57
58
  ExternalReports,
58
59
  Evidence,
59
60
  Crumbs,
60
- Verifications
61
+ Verifications,
62
+ ImagesAggregated
61
63
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veritree/services",
3
- "version": "2.15.0",
3
+ "version": "2.16.0",
4
4
  "description": "A collection of javascript functions/services to talk to veritree API",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -0,0 +1,5 @@
1
+ import Api from "../helpers/api";
2
+
3
+ const resource = "images-aggregated";
4
+
5
+ export const ImagesAggregated = new Api(resource);