vysion 2.0.4__py3-none-any.whl → 2.0.5__py3-none-any.whl

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.
vysion/client/client.py CHANGED
@@ -238,8 +238,8 @@ class Client(BaseClient):
238
238
  gte: datetime = None,
239
239
  ) -> VysionResponse[DocumentHit]:
240
240
  url = self._build_api_url__(
241
- "document/phone",
242
- country_code + "/" + phone_number,
241
+ "document/phone/" + country_code,
242
+ phone_number,
243
243
  page=page,
244
244
  lte=lte,
245
245
  gte=gte,
@@ -258,7 +258,7 @@ class Client(BaseClient):
258
258
  gte: datetime = None,
259
259
  ) -> VysionResponse[DocumentHit]:
260
260
  url = self._build_api_url__(
261
- "document/wallet", chain + "/" + address, page=page, lte=lte, gte=gte
261
+ "document/wallet/" + chain, address, page=page, lte=lte, gte=gte
262
262
  )
263
263
 
264
264
  result = VysionResponse[DocumentHit].model_validate(self._make_request(url))
vysion/version.py CHANGED
@@ -15,4 +15,4 @@ See the License for the specific language governing permissions and
15
15
  limitations under the License.
16
16
  """
17
17
 
18
- __version__ = "2.0.4"
18
+ __version__ = "2.0.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vysion
3
- Version: 2.0.4
3
+ Version: 2.0.5
4
4
  Summary: The official Python client library for Vysion
5
5
  Home-page: https://vysion.ai
6
6
  License: Apache-2.0
@@ -29,7 +29,7 @@ Welcome to the PyPi webpage for Vysion, our implementation as a Python library t
29
29
 
30
30
  You can request a demo for the web app or an API-key to use in this library at [vysion.ai](https://vysion.ai).
31
31
 
32
- Latest version: [2.0.4](https://pypi.org/project/vysion/)
32
+ Latest version: [2.0.5](https://pypi.org/project/vysion/)
33
33
 
34
34
  You can visit [the documentation](https://developers.vysion.ai/?python) for more information on the searches and requests performed with the library or directly on the API.
35
35
 
@@ -1,6 +1,6 @@
1
1
  vysion/__init__.py,sha256=yxJiM-S29q8GB3PBff9tV70P2nvydd8aKLEprLkXw5o,664
2
2
  vysion/client/__init__.py,sha256=aVHmBuetPdybp7TgcNzUx4HkxTjEuXYzSdDYiYfFQd0,630
3
- vysion/client/client.py,sha256=dsIpnA6nYS7NNNMWmD2H1YqB3pw949viOhBPLHdgycw,12568
3
+ vysion/client/client.py,sha256=ce61pZP9nWhHnzGpzWA8TAt2DC14W_3UqJexHHBRHrc,12558
4
4
  vysion/client/error.py,sha256=-3NGr9ngTGSy-ctqk6S9eMBAvtY3lnjv9i0KiuRjd5g,1158
5
5
  vysion/dto/__init__.py,sha256=ct8JxVMfJ0APiOTgr9ju-JIuBlXOrPkx7n2qISSXUts,605
6
6
  vysion/dto/dto.py,sha256=kRwN3ElHt0GxM4bHuGgDa-IFRqVul0R3CBDfZBh7R-s,13058
@@ -15,8 +15,8 @@ vysion/model/enum/services.py,sha256=fUfZEO0RNNctU4Gzae5TV3c7BU5A_cEwaEb1tzqgcr0
15
15
  vysion/taxonomy/__init__.py,sha256=Bc364AYxRCyjIn26-XBPeEDCPe3Hma4r5RAI8R8eblU,635
16
16
  vysion/taxonomy/flavours.py,sha256=ubImHBE8v0zhzFy_2YozAQk2SzN1XDQwHAxb2RebtCo,2347
17
17
  vysion/taxonomy/taxonomy.py,sha256=mG6vHX5Eyp38AKyJBgfBDqdpEmDMbkv8TA8YUBzko54,12227
18
- vysion/version.py,sha256=cci_uY1R7ChLU2zVMFbT58fhHrAsSvCjLibG5zyrZy0,610
19
- vysion-2.0.4.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
20
- vysion-2.0.4.dist-info/METADATA,sha256=Swo1zlY2IdypM7grw53xvd-AdAdcPwGGOLeJvDOZbXM,2122
21
- vysion-2.0.4.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
22
- vysion-2.0.4.dist-info/RECORD,,
18
+ vysion/version.py,sha256=vxtas-jndirPiYaFbGS7QFsPL4wNV43j6SwiSecUGQI,610
19
+ vysion-2.0.5.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
20
+ vysion-2.0.5.dist-info/METADATA,sha256=_brYLMOQDb5E7cxIcyQRm_HDVLzk-VpiUkmE5fwF7PM,2122
21
+ vysion-2.0.5.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
22
+ vysion-2.0.5.dist-info/RECORD,,
File without changes