definite-sdk 0.1.17__tar.gz → 0.1.18__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.4
2
2
  Name: definite-sdk
3
- Version: 0.1.17
3
+ Version: 0.1.18
4
4
  Summary: Definite SDK for Python
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -59,7 +59,7 @@ class DefiniteIntegrationStore:
59
59
  response.raise_for_status()
60
60
  cursor_page = response.json()
61
61
  integrations = cursor_page.get("data", [])
62
- details = [i.get("details", {}) for i in integrations]
62
+ details = [{"id": i.get("id"), **i.get("details", {})} for i in integrations]
63
63
  return cast(List[Dict], details)
64
64
 
65
65
  def get_integration(self, name: str) -> Dict:
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "definite-sdk"
3
- version = "0.1.17"
3
+ version = "0.1.18"
4
4
  description = "Definite SDK for Python"
5
5
  authors = ["Definite <hello@definite.app>"]
6
6
  license = "MIT"
File without changes
File without changes