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.
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/PKG-INFO +1 -1
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_cli.egg-info/PKG-INFO +1 -1
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_shared/provider_registry.py +9 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/pyproject.toml +1 -1
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/MANIFEST.in +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/README.md +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_cli/__init__.py +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_cli/cli.py +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_cli.egg-info/SOURCES.txt +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_cli.egg-info/dependency_links.txt +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_cli.egg-info/entry_points.txt +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_cli.egg-info/requires.txt +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_cli.egg-info/top_level.txt +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_shared/__init__.py +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/autotouch_shared/linkedin_contract.py +0 -0
- {autotouch_cli-0.2.33 → autotouch_cli-0.2.34}/setup.cfg +0 -0
|
@@ -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",
|
|
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
|