dataroom-client 1.0.1.post13.dev0__tar.gz → 1.0.1.post14.dev0__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dataroom-client
3
- Version: 1.0.1.post13.dev0
3
+ Version: 1.0.1.post14.dev0
4
4
  Summary: A python client to interface with the Dataroom backend API
5
5
  Author: Ales Kocjancic
6
6
  Author-email: hi@ales.io
@@ -1392,6 +1392,9 @@ class DataRoomClientSync:
1392
1392
  def get_image_similarity(self, *args, **kwargs):
1393
1393
  return self._run_sync(self._async_client.get_image_similarity(*args, **kwargs))
1394
1394
 
1395
+ def get_related_images(self, *args, **kwargs):
1396
+ return self._run_sync(self._async_client.get_related_images(*args, **kwargs))
1397
+
1395
1398
  def get_similar_images(self, *args, **kwargs):
1396
1399
  return self._run_sync(self._async_client.get_similar_images(*args, **kwargs))
1397
1400
 
@@ -6,7 +6,7 @@ authors = [
6
6
  ]
7
7
  readme = "README.md"
8
8
  dynamic = []
9
- version = "1.0.1.post13.dev0"
9
+ version = "1.0.1.post14.dev0"
10
10
 
11
11
  [tool.poetry]
12
12