constec 0.5.0__tar.gz → 0.5.2__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.
Files changed (42) hide show
  1. {constec-0.5.0 → constec-0.5.2}/PKG-INFO +1 -1
  2. {constec-0.5.0 → constec-0.5.2}/constec/db/migrations/0006_automation_trigger_action_executionlog_notificationtemplate.py +6 -1
  3. {constec-0.5.0 → constec-0.5.2}/constec/db/models/automation.py +1 -2
  4. {constec-0.5.0 → constec-0.5.2}/constec.egg-info/PKG-INFO +1 -1
  5. {constec-0.5.0 → constec-0.5.2}/pyproject.toml +1 -1
  6. {constec-0.5.0 → constec-0.5.2}/LICENSE +0 -0
  7. {constec-0.5.0 → constec-0.5.2}/README.md +0 -0
  8. {constec-0.5.0 → constec-0.5.2}/constec/db/__init__.py +0 -0
  9. {constec-0.5.0 → constec-0.5.2}/constec/db/apps.py +0 -0
  10. {constec-0.5.0 → constec-0.5.2}/constec/db/migrations/0001_initial.py +0 -0
  11. {constec-0.5.0 → constec-0.5.2}/constec/db/migrations/0002_module_level.py +0 -0
  12. {constec-0.5.0 → constec-0.5.2}/constec/db/migrations/0003_remove_module_level.py +0 -0
  13. {constec-0.5.0 → constec-0.5.2}/constec/db/migrations/0004_rename_entities_company_cuit_idx_entities_company_e2c50f_idx_and_more.py +0 -0
  14. {constec-0.5.0 → constec-0.5.2}/constec/db/migrations/0005_event.py +0 -0
  15. {constec-0.5.0 → constec-0.5.2}/constec/db/migrations/__init__.py +0 -0
  16. {constec-0.5.0 → constec-0.5.2}/constec/db/models/__init__.py +0 -0
  17. {constec-0.5.0 → constec-0.5.2}/constec/db/models/base.py +0 -0
  18. {constec-0.5.0 → constec-0.5.2}/constec/db/models/company.py +0 -0
  19. {constec-0.5.0 → constec-0.5.2}/constec/db/models/contact.py +0 -0
  20. {constec-0.5.0 → constec-0.5.2}/constec/db/models/erp.py +0 -0
  21. {constec-0.5.0 → constec-0.5.2}/constec/db/models/erp_entity.py +0 -0
  22. {constec-0.5.0 → constec-0.5.2}/constec/db/models/flow.py +0 -0
  23. {constec-0.5.0 → constec-0.5.2}/constec/db/models/group.py +0 -0
  24. {constec-0.5.0 → constec-0.5.2}/constec/db/models/module.py +0 -0
  25. {constec-0.5.0 → constec-0.5.2}/constec/db/models/organization.py +0 -0
  26. {constec-0.5.0 → constec-0.5.2}/constec/db/models/person.py +0 -0
  27. {constec-0.5.0 → constec-0.5.2}/constec/db/models/session.py +0 -0
  28. {constec-0.5.0 → constec-0.5.2}/constec/db/models/tag.py +0 -0
  29. {constec-0.5.0 → constec-0.5.2}/constec/db/models/user.py +0 -0
  30. {constec-0.5.0 → constec-0.5.2}/constec/py.typed +0 -0
  31. {constec-0.5.0 → constec-0.5.2}/constec/services/__init__.py +0 -0
  32. {constec-0.5.0 → constec-0.5.2}/constec/services/encryption.py +0 -0
  33. {constec-0.5.0 → constec-0.5.2}/constec/shared/__init__.py +0 -0
  34. {constec-0.5.0 → constec-0.5.2}/constec/shared/exceptions.py +0 -0
  35. {constec-0.5.0 → constec-0.5.2}/constec/utils/__init__.py +0 -0
  36. {constec-0.5.0 → constec-0.5.2}/constec/utils/cuit.py +0 -0
  37. {constec-0.5.0 → constec-0.5.2}/constec/utils/password.py +0 -0
  38. {constec-0.5.0 → constec-0.5.2}/constec.egg-info/SOURCES.txt +0 -0
  39. {constec-0.5.0 → constec-0.5.2}/constec.egg-info/dependency_links.txt +0 -0
  40. {constec-0.5.0 → constec-0.5.2}/constec.egg-info/requires.txt +0 -0
  41. {constec-0.5.0 → constec-0.5.2}/constec.egg-info/top_level.txt +0 -0
  42. {constec-0.5.0 → constec-0.5.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: constec
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: Base library for the Constec ecosystem - shared utilities, models, and namespace foundation
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/TpmyCT/constec-python
@@ -18,6 +18,7 @@ class Migration(migrations.Migration):
18
18
  name='Automation',
19
19
  fields=[
20
20
  ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
21
+ ('is_active', models.BooleanField(default=True)),
21
22
  ('created_at', models.DateTimeField(auto_now_add=True)),
22
23
  ('updated_at', models.DateTimeField(auto_now=True)),
23
24
  ('name', models.CharField(max_length=255)),
@@ -72,6 +73,7 @@ class Migration(migrations.Migration):
72
73
  name='Trigger',
73
74
  fields=[
74
75
  ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
76
+ ('is_active', models.BooleanField(default=True)),
75
77
  ('created_at', models.DateTimeField(auto_now_add=True)),
76
78
  ('updated_at', models.DateTimeField(auto_now=True)),
77
79
  ('trigger_type', models.CharField(
@@ -110,6 +112,7 @@ class Migration(migrations.Migration):
110
112
  name='Action',
111
113
  fields=[
112
114
  ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
115
+ ('is_active', models.BooleanField(default=True)),
113
116
  ('created_at', models.DateTimeField(auto_now_add=True)),
114
117
  ('updated_at', models.DateTimeField(auto_now=True)),
115
118
  ('action_type', models.CharField(
@@ -167,6 +170,7 @@ class Migration(migrations.Migration):
167
170
  name='ExecutionLog',
168
171
  fields=[
169
172
  ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
173
+ ('is_active', models.BooleanField(default=True)),
170
174
  ('created_at', models.DateTimeField(auto_now_add=True)),
171
175
  ('updated_at', models.DateTimeField(auto_now=True)),
172
176
  ('status', models.CharField(
@@ -232,6 +236,7 @@ class Migration(migrations.Migration):
232
236
  name='NotificationTemplate',
233
237
  fields=[
234
238
  ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
239
+ ('is_active', models.BooleanField(default=True)),
235
240
  ('created_at', models.DateTimeField(auto_now_add=True)),
236
241
  ('updated_at', models.DateTimeField(auto_now=True)),
237
242
  ('name', models.CharField(max_length=255)),
@@ -250,7 +255,7 @@ class Migration(migrations.Migration):
250
255
  default=list,
251
256
  help_text="Array de nombres de variables esperadas ['customer_name', 'amount']"
252
257
  )),
253
- ('is_active', models.BooleanField(default=True)),
258
+ # is_active inherited from UUIDModel
254
259
  ('company', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='constec_db.company')),
255
260
  ('created_by', models.ForeignKey(
256
261
  on_delete=django.db.models.deletion.CASCADE,
@@ -360,8 +360,7 @@ class NotificationTemplate(UUIDModel):
360
360
  help_text="Array de nombres de variables esperadas ['customer_name', 'amount']"
361
361
  )
362
362
 
363
- # Estado
364
- is_active = models.BooleanField(default=True)
363
+ # is_active inherited from UUIDModel
365
364
 
366
365
  class Meta:
367
366
  db_table = '"automations"."notification_templates"'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: constec
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: Base library for the Constec ecosystem - shared utilities, models, and namespace foundation
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/TpmyCT/constec-python
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "constec"
7
- version = "0.5.0"
7
+ version = "0.5.2"
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