brynq-sdk-monday 1.2.4__tar.gz → 1.2.5__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_monday
3
- Version: 1.2.4
3
+ Version: 1.2.5
4
4
  Summary: Monday.com wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -18,10 +18,10 @@ class UploadTracket(BrynQ):
18
18
  For the full documentation, see: https://avisi-apps.gitbook.io/tracket/api/
19
19
  """
20
20
  super().__init__()
21
- self.headers = self.__get_headers(label=label)
22
21
  self.base_url = "https://us.production.timesheet.avisi-apps.com/api/2.0/"
23
22
  self.debug = debug
24
23
  self.timeout = 3600
24
+ self.headers = self.__get_headers(label=label)
25
25
 
26
26
  def __get_headers(self, label):
27
27
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-monday
3
- Version: 1.2.4
3
+ Version: 1.2.5
4
4
  Summary: Monday.com 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_monday',
5
- version='1.2.4',
5
+ version='1.2.5',
6
6
  description='Monday.com wrapper from BrynQ',
7
7
  long_description='Monday.com wrapper from BrynQ',
8
8
  author='BrynQ',
@@ -17,10 +17,10 @@ class ExtractMonday(BrynQ):
17
17
  For the full documentation, see: https://developer.monday.com/api-reference/docs/basics
18
18
  """
19
19
  super().__init__()
20
- self.headers = self.__get_headers(label=label)
21
20
  self.endpoint = "https://api.monday.com/v2/"
22
21
  self.debug = debug
23
22
  self.timeout = 3600
23
+ self.headers = self.__get_headers(label=label)
24
24
 
25
25
  def __get_headers(self, label):
26
26
  credentials = self.get_system_credential(system='monday', label=label)
@@ -17,9 +17,9 @@ class ExtractTracket(BrynQ):
17
17
  For the full documentation, see: https://avisi-apps.gitbook.io/tracket/api/
18
18
  """
19
19
  super().__init__()
20
- self.headers = self.__get_headers(label=label)
21
20
  self.base_url = "https://us.production.timesheet.avisi-apps.com/api/2.0/"
22
21
  self.timeout = 3600
22
+ self.headers = self.__get_headers(label=label)
23
23
 
24
24
  def __get_headers(self, label):
25
25
  """