constec 0.7.0__tar.gz → 0.7.1__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.
- {constec-0.7.0 → constec-0.7.1}/PKG-INFO +1 -1
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/automation.py +3 -3
- {constec-0.7.0 → constec-0.7.1}/constec.egg-info/PKG-INFO +1 -1
- {constec-0.7.0 → constec-0.7.1}/pyproject.toml +1 -1
- {constec-0.7.0 → constec-0.7.1}/LICENSE +0 -0
- {constec-0.7.0 → constec-0.7.1}/README.md +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/__init__.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/apps.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0001_initial.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0002_module_level.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0003_remove_module_level.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0004_rename_entities_company_cuit_idx_entities_company_e2c50f_idx_and_more.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0005_event.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0006_automation_trigger_action_executionlog_notificationtemplate.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0007_add_organization_to_automations.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0008_refactor_creator_fields.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0009_rename_user_to_companyuser.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/migrations/__init__.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/__init__.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/base.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/company.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/contact.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/erp.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/erp_entity.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/flow.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/group.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/module.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/organization.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/person.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/session.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/tag.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/db/models/user.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/py.typed +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/services/__init__.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/services/encryption.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/shared/__init__.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/shared/exceptions.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/utils/__init__.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/utils/cuit.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec/utils/password.py +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec.egg-info/SOURCES.txt +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec.egg-info/dependency_links.txt +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec.egg-info/requires.txt +0 -0
- {constec-0.7.0 → constec-0.7.1}/constec.egg-info/top_level.txt +0 -0
- {constec-0.7.0 → constec-0.7.1}/setup.cfg +0 -0
|
@@ -64,7 +64,7 @@ class Automation(UUIDModel):
|
|
|
64
64
|
help_text="User creator (company-level)"
|
|
65
65
|
)
|
|
66
66
|
created_by_org_user = models.ForeignKey(
|
|
67
|
-
|
|
67
|
+
OrganizationUser,
|
|
68
68
|
on_delete=models.CASCADE,
|
|
69
69
|
null=True,
|
|
70
70
|
blank=True,
|
|
@@ -325,7 +325,7 @@ class ExecutionLog(UUIDModel):
|
|
|
325
325
|
help_text="User who triggered execution (company-level)"
|
|
326
326
|
)
|
|
327
327
|
triggered_by_org_user = models.ForeignKey(
|
|
328
|
-
|
|
328
|
+
OrganizationUser,
|
|
329
329
|
on_delete=models.SET_NULL,
|
|
330
330
|
null=True,
|
|
331
331
|
blank=True,
|
|
@@ -426,7 +426,7 @@ class NotificationTemplate(UUIDModel):
|
|
|
426
426
|
help_text="User creator (company-level)"
|
|
427
427
|
)
|
|
428
428
|
created_by_org_user = models.ForeignKey(
|
|
429
|
-
|
|
429
|
+
OrganizationUser,
|
|
430
430
|
on_delete=models.CASCADE,
|
|
431
431
|
null=True,
|
|
432
432
|
blank=True,
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "constec"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.1"
|
|
8
8
|
description = "Base library for the Constec ecosystem - shared utilities, models, and namespace foundation"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{constec-0.7.0 → constec-0.7.1}/constec/db/migrations/0007_add_organization_to_automations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|