autotouch-cli 0.2.33__tar.gz → 0.2.34__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: 2.4
2
2
  Name: autotouch-cli
3
- Version: 0.2.33
3
+ Version: 0.2.34
4
4
  Summary: Autotouch Smart Table CLI
5
5
  Requires-Python: >=3.9
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: autotouch-cli
3
- Version: 0.2.33
3
+ Version: 0.2.34
4
4
  Summary: Autotouch Smart Table CLI
5
5
  Requires-Python: >=3.9
6
6
  Description-Content-Type: text/markdown
@@ -147,6 +147,8 @@ _EMAIL_FINDER_POLICY = AutoRunExecutionPolicy(
147
147
  force_rerun=False,
148
148
  respect_existing_done=True,
149
149
  default_batch_size=50,
150
+ save_hook_triggers=("create", "update"),
151
+ save_hook_policies=("onsourceupdate",),
150
152
  )
151
153
 
152
154
  _PHONE_FINDER_POLICY = AutoRunExecutionPolicy(
@@ -156,6 +158,8 @@ _PHONE_FINDER_POLICY = AutoRunExecutionPolicy(
156
158
  force_rerun=False,
157
159
  respect_existing_done=True,
158
160
  default_batch_size=50,
161
+ save_hook_triggers=("create", "update"),
162
+ save_hook_policies=("onsourceupdate",),
159
163
  )
160
164
 
161
165
  _LEAD_FINDER_POLICY = AutoRunExecutionPolicy(
@@ -166,6 +170,8 @@ _LEAD_FINDER_POLICY = AutoRunExecutionPolicy(
166
170
  respect_existing_done=True,
167
171
  default_batch_size=5,
168
172
  batch_size_env="LEAD_FINDER_BATCH_SIZE",
173
+ save_hook_triggers=("create", "update"),
174
+ save_hook_policies=("onsourceupdate",),
169
175
  )
170
176
 
171
177
  _ADD_TO_CRM_POLICY = AutoRunExecutionPolicy(
@@ -455,6 +461,7 @@ _PROVIDER_CONTRACTS: Tuple[ResearchTableProviderContract, ...] = (
455
461
  ],
456
462
  },
457
463
  execution_policy=_EMAIL_FINDER_POLICY,
464
+ save_time_entrypoint="provider_save_hook",
458
465
  ),
459
466
  ResearchTableProviderContract(
460
467
  key="phone_finder",
@@ -528,6 +535,7 @@ _PROVIDER_CONTRACTS: Tuple[ResearchTableProviderContract, ...] = (
528
535
  ],
529
536
  },
530
537
  execution_policy=_PHONE_FINDER_POLICY,
538
+ save_time_entrypoint="provider_save_hook",
531
539
  ),
532
540
  ResearchTableProviderContract(
533
541
  key="lead_finder",
@@ -607,6 +615,7 @@ _PROVIDER_CONTRACTS: Tuple[ResearchTableProviderContract, ...] = (
607
615
  ],
608
616
  },
609
617
  execution_policy=_LEAD_FINDER_POLICY,
618
+ save_time_entrypoint="provider_save_hook",
610
619
  ),
611
620
  ResearchTableProviderContract(
612
621
  key="add_to_crm",
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "autotouch-cli"
7
- version = "0.2.33"
7
+ version = "0.2.34"
8
8
  description = "Autotouch Smart Table CLI"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
File without changes
File without changes