brynq-sdk-azure 3.0.2__tar.gz → 3.0.3__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: 1.0
2
2
  Name: brynq_sdk_azure
3
- Version: 3.0.2
3
+ Version: 3.0.3
4
4
  Summary: Azure wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -25,8 +25,8 @@ class Entra(BrynQ):
25
25
  credentials_data = credentials.get('data')
26
26
  if credentials.get("type") == 'custom':
27
27
  tenant_id = credentials_data.get('tenant_id')
28
- client_id = credentials.get('client_id')
29
- client_secret = credentials.get('client_secret')
28
+ client_id = credentials_data.get('client_id')
29
+ client_secret = credentials_data.get('client_secret')
30
30
  authority = f"https://login.microsoftonline.com/{tenant_id}"
31
31
  # Create a ConfidentialClientApplication for authentication
32
32
  app = ConfidentialClientApplication(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-azure
3
- Version: 3.0.2
3
+ Version: 3.0.3
4
4
  Summary: Azure wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -2,7 +2,7 @@ from setuptools import setup, find_namespace_packages
2
2
 
3
3
  setup(
4
4
  name='brynq_sdk_azure',
5
- version='3.0.2',
5
+ version='3.0.3',
6
6
  description='Azure wrapper from BrynQ',
7
7
  long_description='Azure wrapper from BrynQ',
8
8
  author='BrynQ',