constec 0.5.1__py3-none-any.whl → 0.5.2__py3-none-any.whl
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/db/migrations/0006_automation_trigger_action_executionlog_notificationtemplate.py +5 -0
- {constec-0.5.1.dist-info → constec-0.5.2.dist-info}/METADATA +1 -1
- {constec-0.5.1.dist-info → constec-0.5.2.dist-info}/RECORD +6 -6
- {constec-0.5.1.dist-info → constec-0.5.2.dist-info}/WHEEL +0 -0
- {constec-0.5.1.dist-info → constec-0.5.2.dist-info}/licenses/LICENSE +0 -0
- {constec-0.5.1.dist-info → constec-0.5.2.dist-info}/top_level.txt +0 -0
|
@@ -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)),
|
|
@@ -6,7 +6,7 @@ constec/db/migrations/0002_module_level.py,sha256=Es27KUOuI_qrlyL8xBTjwsJJHVduAE
|
|
|
6
6
|
constec/db/migrations/0003_remove_module_level.py,sha256=3GX-VDLSZqqxaZf6KFtuc7U9nCkQ9EF8pSDxOnCz63g,275
|
|
7
7
|
constec/db/migrations/0004_rename_entities_company_cuit_idx_entities_company_e2c50f_idx_and_more.py,sha256=TCkutatVjJhVKxiQwp-RLhBlbOo5rtwSV1qQqao1qCI,11874
|
|
8
8
|
constec/db/migrations/0005_event.py,sha256=kyvEFOAbOJj3daDzOWcIhfXD8gl5EpIHYvRy3880cZc,2892
|
|
9
|
-
constec/db/migrations/0006_automation_trigger_action_executionlog_notificationtemplate.py,sha256
|
|
9
|
+
constec/db/migrations/0006_automation_trigger_action_executionlog_notificationtemplate.py,sha256=sfh1YTRPqUiBb5FIxRNJm_BnlYkDonwm7FEEihgtSe0,13628
|
|
10
10
|
constec/db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
constec/db/models/__init__.py,sha256=tzeMhD6Bxs8Z8dBHEGBeIBm1ZrMKk66TlZEOD92InKU,2463
|
|
12
12
|
constec/db/models/automation.py,sha256=_toRKPIGeTd54aLSnEsRUkCH42md18gXrj-xnnmTv-g,13712
|
|
@@ -30,8 +30,8 @@ constec/shared/exceptions.py,sha256=8Bih40RWoH0gVhto09mH2ppSQV_drHPnGWITcoD-0J0,
|
|
|
30
30
|
constec/utils/__init__.py,sha256=brf-G4UvU-3CK_rKNPTaHwsVsxnoJSbml_QTZJSM7d0,458
|
|
31
31
|
constec/utils/cuit.py,sha256=dQKGlA4pRQ5DyR-N4BiV8ZsvAle2Vgjif7PU72zHx_A,2753
|
|
32
32
|
constec/utils/password.py,sha256=XNpTJ9xZQSoZNjXEAnexAEZuYkwW1dFgX4AY-B5Q0gA,1462
|
|
33
|
-
constec-0.5.
|
|
34
|
-
constec-0.5.
|
|
35
|
-
constec-0.5.
|
|
36
|
-
constec-0.5.
|
|
37
|
-
constec-0.5.
|
|
33
|
+
constec-0.5.2.dist-info/licenses/LICENSE,sha256=a1R51ONDGq0UQfV-n3ybsNL7EGhcC2sQ1sXvRANaFVI,1064
|
|
34
|
+
constec-0.5.2.dist-info/METADATA,sha256=mbHsxNllNA8FUJYkiB7bAW6e_C85bj4kGs9ua2ZzOXU,2954
|
|
35
|
+
constec-0.5.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
36
|
+
constec-0.5.2.dist-info/top_level.txt,sha256=bQ9AydOLlthShsr7tA7t7ivbLvlLPdhHOo0BdWgnh_Y,8
|
|
37
|
+
constec-0.5.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|