@integration-tools/piece-2solar
Version:
2Solar integration for Activepieces
14 lines (13 loc) • 978 B
TypeScript
import { TriggerStrategy } from '@activepieces/pieces-framework';
/**
* New Lead Trigger
* Polls the 2Solar API every 5 minutes to fetch new leads/persons.
* Implements deduplication based on creation time to prevent duplicate processing.
*/
export declare const newLead: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {
lookbackPeriod: import("@activepieces/pieces-framework").NumberProperty<false>;
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").SecretTextProperty<true>, {
lookbackPeriod: import("@activepieces/pieces-framework").NumberProperty<false>;
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").SecretTextProperty<true>, {
lookbackPeriod: import("@activepieces/pieces-framework").NumberProperty<false>;
}>;