organizations-local 0.0.38__tar.gz → 0.0.40__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
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: organizations-local
3
- Version: 0.0.38
3
+ Version: 0.0.40
4
4
  Summary: PyPI Package for Circles organizations-local Python
5
5
  Home-page: https://github.com/circles-zone/organizations-local-python-package
6
6
  Author: Circles
@@ -13,5 +13,13 @@ Requires-Dist: database-mysql-local>=0.0.290
13
13
  Requires-Dist: language-remote>=0.0.20
14
14
  Requires-Dist: location-local>=0.0.8
15
15
  Requires-Dist: user-context-remote>=0.0.58
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: classifier
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: home-page
22
+ Dynamic: requires-dist
23
+ Dynamic: summary
16
24
 
17
25
  PyPI Package for Circles organizations-local Python
@@ -183,6 +183,7 @@ class OrganizationsLocal(GenericCRUDML, metaclass=MetaLogger,
183
183
  )
184
184
  return organizations_ids_and_names_list
185
185
 
186
+
186
187
  def delete_by_organization_id(self, organization_id: int, organization_ml_id: int = None) -> None:
187
188
  # Delete from organization_table
188
189
  self.delete_by_column_and_value(table_name="organization_table",
@@ -193,13 +194,14 @@ class OrganizationsLocal(GenericCRUDML, metaclass=MetaLogger,
193
194
  self.delete_by_column_and_value(table_name="organization_ml_table",
194
195
  column_name="organization_ml_id", column_value=organization_ml_id)
195
196
 
197
+
196
198
  def get_test_organization_id(self) -> int:
197
199
  test_organization_id = self.get_test_entity_id(
198
200
  entity_name="organization", insert_function=self.insert_organization)
199
201
  return test_organization_id
200
202
 
201
- # If we add the support of multiple organizations per contact, We will have to fix this method
202
- # Edited by Tal Goodman on 12.7.24
203
+
204
+ # TODO Add support of multiple organizations per contact
203
205
  # Was def get_update_status(self, *, last_modified_timestamp: str, main_profile_id: int) -> UpdateStatus:
204
206
  def get_update_status_and_information_list(self, *, last_modified_timestamp: str, main_profile_id: int or None) -> list[dict]:
205
207
  if main_profile_id is None:
@@ -234,7 +236,6 @@ class OrganizationsLocal(GenericCRUDML, metaclass=MetaLogger,
234
236
  return update_status_and_information_list
235
237
 
236
238
 
237
-
238
239
  def get_organization_name_by_organization_identifier(self, organization_identifier: str) -> str or None:
239
240
  organization_name=self.select_one_value_by_column_and_value(
240
241
  select_clause_value="name",
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: organizations-local
3
- Version: 0.0.38
3
+ Version: 0.0.40
4
4
  Summary: PyPI Package for Circles organizations-local Python
5
5
  Home-page: https://github.com/circles-zone/organizations-local-python-package
6
6
  Author: Circles
@@ -13,5 +13,13 @@ Requires-Dist: database-mysql-local>=0.0.290
13
13
  Requires-Dist: language-remote>=0.0.20
14
14
  Requires-Dist: location-local>=0.0.8
15
15
  Requires-Dist: user-context-remote>=0.0.58
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: classifier
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: home-page
22
+ Dynamic: requires-dist
23
+ Dynamic: summary
16
24
 
17
25
  PyPI Package for Circles organizations-local Python
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "organizations-local"
7
- version = "0.0.24" # https://pypi.org/project/organizations-local
7
+ version = "0.0.23" # https://pypi.org/project/organizations-local
8
8
  description = "organizations-local Python Package"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -6,7 +6,7 @@ package_dir = PACKAGE_NAME.replace("-", "_")
6
6
 
7
7
  setuptools.setup(
8
8
  name=PACKAGE_NAME,
9
- version='0.0.38', # https://pypi.org/project/organizations-local/
9
+ version='0.0.40', # https://pypi.org/project/organizations-local/
10
10
  author="Circles",
11
11
  author_email="info@circlez.ai",
12
12
  description="PyPI Package for Circles organizations-local Python",