@elevasis/sdk 0.6.3 → 0.6.4
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.
package/dist/cli.cjs
CHANGED
|
@@ -43884,7 +43884,7 @@ async function apiDelete(endpoint, apiUrl = resolveApiUrl()) {
|
|
|
43884
43884
|
// package.json
|
|
43885
43885
|
var package_default = {
|
|
43886
43886
|
name: "@elevasis/sdk",
|
|
43887
|
-
version: "0.6.
|
|
43887
|
+
version: "0.6.4",
|
|
43888
43888
|
description: "SDK for building Elevasis organization resources",
|
|
43889
43889
|
type: "module",
|
|
43890
43890
|
bin: {
|
package/dist/index.d.ts
CHANGED
|
@@ -4768,6 +4768,77 @@ interface VerifyEmailResult {
|
|
|
4768
4768
|
[key: string]: unknown;
|
|
4769
4769
|
}
|
|
4770
4770
|
|
|
4771
|
+
interface EmailFinderParams {
|
|
4772
|
+
domain: string;
|
|
4773
|
+
firstName: string;
|
|
4774
|
+
lastName: string;
|
|
4775
|
+
}
|
|
4776
|
+
interface EmailFinderResult {
|
|
4777
|
+
email: string;
|
|
4778
|
+
firstName: string;
|
|
4779
|
+
lastName: string;
|
|
4780
|
+
fullName: string;
|
|
4781
|
+
position: string;
|
|
4782
|
+
company: string;
|
|
4783
|
+
country: string;
|
|
4784
|
+
score: number;
|
|
4785
|
+
verificationDate: string;
|
|
4786
|
+
verificationStatus: string;
|
|
4787
|
+
sources: Array<{
|
|
4788
|
+
uri: string;
|
|
4789
|
+
extractedOn: string;
|
|
4790
|
+
lastSeenOn: string;
|
|
4791
|
+
stillOnPage: boolean;
|
|
4792
|
+
}>;
|
|
4793
|
+
[key: string]: unknown;
|
|
4794
|
+
}
|
|
4795
|
+
interface DomainSearchParams {
|
|
4796
|
+
domain: string;
|
|
4797
|
+
limit?: number;
|
|
4798
|
+
department?: string;
|
|
4799
|
+
}
|
|
4800
|
+
interface DomainSearchEmail {
|
|
4801
|
+
email: string;
|
|
4802
|
+
firstName: string;
|
|
4803
|
+
lastName: string;
|
|
4804
|
+
fullName: string;
|
|
4805
|
+
position: string;
|
|
4806
|
+
department: string;
|
|
4807
|
+
verificationDate: string;
|
|
4808
|
+
verificationStatus: string;
|
|
4809
|
+
sources: Array<{
|
|
4810
|
+
uri: string;
|
|
4811
|
+
extractedOn: string;
|
|
4812
|
+
lastSeenOn: string;
|
|
4813
|
+
stillOnPage: boolean;
|
|
4814
|
+
}>;
|
|
4815
|
+
}
|
|
4816
|
+
interface DomainSearchResult {
|
|
4817
|
+
organizationName: string;
|
|
4818
|
+
domain: string;
|
|
4819
|
+
emails: DomainSearchEmail[];
|
|
4820
|
+
[key: string]: unknown;
|
|
4821
|
+
}
|
|
4822
|
+
interface EmailVerifierParams {
|
|
4823
|
+
email: string;
|
|
4824
|
+
}
|
|
4825
|
+
interface EmailVerifierResult {
|
|
4826
|
+
email: string;
|
|
4827
|
+
result: string;
|
|
4828
|
+
status: string;
|
|
4829
|
+
score: number;
|
|
4830
|
+
mxRecords: boolean;
|
|
4831
|
+
smtpServer: boolean;
|
|
4832
|
+
smtpCheck: boolean;
|
|
4833
|
+
acceptAll: boolean;
|
|
4834
|
+
block: boolean;
|
|
4835
|
+
gibberish: boolean;
|
|
4836
|
+
disposable: boolean;
|
|
4837
|
+
webmail: boolean;
|
|
4838
|
+
regex: boolean;
|
|
4839
|
+
[key: string]: unknown;
|
|
4840
|
+
}
|
|
4841
|
+
|
|
4771
4842
|
/**
|
|
4772
4843
|
* Shared Notion param/result types (browser-safe)
|
|
4773
4844
|
*
|
|
@@ -5624,6 +5695,20 @@ type AnymailfinderToolMap = {
|
|
|
5624
5695
|
result: VerifyEmailResult;
|
|
5625
5696
|
};
|
|
5626
5697
|
};
|
|
5698
|
+
type TombaToolMap = {
|
|
5699
|
+
emailFinder: {
|
|
5700
|
+
params: EmailFinderParams;
|
|
5701
|
+
result: EmailFinderResult;
|
|
5702
|
+
};
|
|
5703
|
+
domainSearch: {
|
|
5704
|
+
params: DomainSearchParams;
|
|
5705
|
+
result: DomainSearchResult;
|
|
5706
|
+
};
|
|
5707
|
+
emailVerifier: {
|
|
5708
|
+
params: EmailVerifierParams;
|
|
5709
|
+
result: EmailVerifierResult;
|
|
5710
|
+
};
|
|
5711
|
+
};
|
|
5627
5712
|
type LeadToolMap = {
|
|
5628
5713
|
listLists: {
|
|
5629
5714
|
params: Record<string, never>;
|
|
@@ -6189,7 +6274,7 @@ type ToolingErrorType = 'service_unavailable' | 'permission_denied' | 'adapter_n
|
|
|
6189
6274
|
* Note: Concrete adapter implementations are deferred until needed.
|
|
6190
6275
|
* This type provides compile-time safety and auto-completion for tool definitions.
|
|
6191
6276
|
*/
|
|
6192
|
-
type IntegrationType = 'gmail' | 'google-sheets' | 'slack' | 'github' | 'linear' | 'notion' | 'attio' | 'airtable' | 'salesforce' | 'hubspot' | 'stripe' | 'twilio' | 'sendgrid' | 'mailgun' | 'zapier' | 'webhook' | 'apify' | 'instantly' | 'resend' | 'signature-api' | 'dropbox' | 'mailso' | 'anymailfinder';
|
|
6277
|
+
type IntegrationType = 'gmail' | 'google-sheets' | 'slack' | 'github' | 'linear' | 'notion' | 'attio' | 'airtable' | 'salesforce' | 'hubspot' | 'stripe' | 'twilio' | 'sendgrid' | 'mailgun' | 'zapier' | 'webhook' | 'apify' | 'instantly' | 'resend' | 'signature-api' | 'dropbox' | 'mailso' | 'anymailfinder' | 'tomba';
|
|
6193
6278
|
|
|
6194
6279
|
/**
|
|
6195
6280
|
* Resource Registry type definitions
|
|
@@ -6622,4 +6707,4 @@ declare class ToolingError extends ExecutionError {
|
|
|
6622
6707
|
}
|
|
6623
6708
|
|
|
6624
6709
|
export { ExecutionError, RegistryValidationError, ResourceRegistry, StepType, ToolingError };
|
|
6625
|
-
export type { AbsoluteScheduleConfig, AcqCompany, AcqContact, AcqDeal, AcqList, AddToCampaignLead, AddToCampaignParams, AddToCampaignResult, AgentConfig, AgentConstraints, AgentDefinition, AgentMemory, FindCompanyEmailParams as AnymailfinderFindCompanyEmailParams, FindCompanyEmailResult as AnymailfinderFindCompanyEmailResult, FindDecisionMakerEmailParams as AnymailfinderFindDecisionMakerEmailParams, FindDecisionMakerEmailResult as AnymailfinderFindDecisionMakerEmailResult, FindPersonEmailParams as AnymailfinderFindPersonEmailParams, FindPersonEmailResult as AnymailfinderFindPersonEmailResult, AnymailfinderToolMap, VerifyEmailParams as AnymailfinderVerifyEmailParams, VerifyEmailResult as AnymailfinderVerifyEmailResult, ApifyToolMap, ApifyWebhookConfig, AppendBlocksParams, AppendBlocksResult, AppendRowsParams, AppendRowsResult, ApprovalToolMap, AttioToolMap, BatchUpdateParams, BatchUpdateResult, BulkImportParams, BulkImportResult, CancelHitlByDealIdParams, CancelSchedulesAndHitlByEmailParams, ClearDealFieldsParams, ClearRangeParams, ClearRangeResult, CompanyFilters, ConditionalNext, ContactFilters, Contract, CreateAttributeParams, CreateAttributeResult, CreateAutoPaymentLinkParams, CreateAutoPaymentLinkResult, CreateCheckoutSessionParams, CreateCheckoutSessionResult, CreateCompanyParams, CreateContactParams, CreateEnvelopeParams, CreateEnvelopeResult, CreateFolderParams, CreateFolderResult, CreateListParams, CreateNoteParams, CreateNoteResult, CreatePageParams, CreatePageResult, CreatePaymentLinkParams, CreatePaymentLinkResult, CreateRecordParams, CreateRecordResult, CreateScheduleInput, DeleteBlocksParams, DeleteBlocksResult, DeleteDealParams, DeleteNoteParams, DeleteNoteResult, DeletePageParams, DeletePageResult, DeleteRecordParams, DeleteRecordResult, DeleteRowByValueParams, DeleteRowByValueResult, DomainDefinition, DownloadDocumentParams, DownloadDocumentResult, DropboxToolMap, ElevasConfig, EmailToolMap, EnvelopeDocument, EventTriggerConfig, ExecutionContext, ExecutionInterface, ExecutionMetadata, ExecutionToolMap, FilterExpression, FilterRowsParams, FilterRowsResult, FormField, FormFieldType, FormSchema, GetEmailsParams, GetEmailsResult, GetEnvelopeParams, GetEnvelopeResult, GetHeadersParams, GetHeadersResult, GetLastRowParams, GetLastRowResult, GetPaymentLinkParams, GetPaymentLinkResult, GetRecordParams, GetRecordResult, GetRowByValueParams, GetRowByValueResult, GetSpreadsheetMetadataParams, GetSpreadsheetMetadataResult, GmailSendEmailParams, GmailSendEmailResult, GmailToolMap, GoogleSheetsToolMap, HumanCheckpointDefinition, InstantlyToolMap, IntegrationDefinition, LLMAdapterFactory, LLMGenerateRequest, LLMGenerateResponse, LLMMessage, LLMModel, LeadToolMap, LinearNext, ListAllPagesResult, ListAttributesParams, ListAttributesResult, ListNotesParams, ListNotesResult, ListObjectsResult, ListPaymentLinksParams, ListPaymentLinksResult, MailsoToolMap, MailsoVerifyEmailParams, MailsoVerifyEmailResult, MarkProposalReviewedParams, MarkProposalSentParams, MethodEntry, ModelConfig, NextConfig, NotificationSDKInput, NotificationToolMap, NotionToolMap, OrganizationResources, PageWithChildren, PaginatedResult, PaginationParams, PdfToolMap, QueryRecordsParams, QueryRecordsResult, ReadPageParams, ReadPageResult, ReadSheetParams, ReadSheetResult, Recipient, RecurringScheduleConfig, RelationshipDeclaration, RelativeScheduleConfig, RemoveFromSubsequenceParams, RemoveFromSubsequenceResult, ResendGetEmailParams, ResendGetEmailResult, ResendSendEmailParams, ResendSendEmailResult, ResendToolMap, ResourceDefinition, ResourceDomain, ResourceMetricsConfig, ResourceRelationships, ResourceStatus$1 as ResourceStatus, ResourceType, RunActorParams, RunActorResult, SDKLLMGenerateParams, ScheduleOriginTracking, ScheduleTarget, ScheduleTriggerConfig, SchedulerToolMap, SendReplyParams, SendReplyResult, SetContactNurtureParams, SheetInfo, SignatureApiFieldType, SignatureApiToolMap, SigningPlace, SortCriteria, StartActorParams, StartActorResult, StepHandler, StorageDeleteInput, StorageDeleteOutput, StorageDownloadInput, StorageDownloadOutput, StorageListInput, StorageListOutput, StorageSignedUrlInput, StorageSignedUrlOutput, StorageToolMap, StorageUploadInput, StorageUploadOutput, StripeToolMap, SyncDealStageParams, TaskSchedule, TaskScheduleConfig, Tool, ToolExecutionOptions, ToolMethodMap, ToolingErrorType, TriggerConfig, TriggerDefinition, UpdateAttributeParams, UpdateAttributeResult, UpdateBlocksParams, UpdateBlocksResult, UpdateCloseLostReasonParams, UpdateCompanyParams, UpdateContactParams, UpdateDiscoveryDataParams, UpdateFeesParams, UpdateInterestStatusParams, UpdateInterestStatusResult, UpdateListParams, UpdatePageTitleParams, UpdatePageTitleResult, UpdatePaymentLinkParams, UpdatePaymentLinkResult, UpdateProposalDataParams, UpdateRecordParams, UpdateRecordResult, UpdateRowByValueParams, UpdateRowByValueResult, UploadFileParams, UploadFileResult, UpsertCompanyParams, UpsertContactParams, UpsertDealParams, UpsertRowParams, UpsertRowResult, VoidEnvelopeParams, VoidEnvelopeResult, WebhookProviderType, WebhookTriggerConfig, WorkflowConfig, WorkflowDefinition, WorkflowStep, WriteSheetParams, WriteSheetResult };
|
|
6710
|
+
export type { AbsoluteScheduleConfig, AcqCompany, AcqContact, AcqDeal, AcqList, AddToCampaignLead, AddToCampaignParams, AddToCampaignResult, AgentConfig, AgentConstraints, AgentDefinition, AgentMemory, FindCompanyEmailParams as AnymailfinderFindCompanyEmailParams, FindCompanyEmailResult as AnymailfinderFindCompanyEmailResult, FindDecisionMakerEmailParams as AnymailfinderFindDecisionMakerEmailParams, FindDecisionMakerEmailResult as AnymailfinderFindDecisionMakerEmailResult, FindPersonEmailParams as AnymailfinderFindPersonEmailParams, FindPersonEmailResult as AnymailfinderFindPersonEmailResult, AnymailfinderToolMap, VerifyEmailParams as AnymailfinderVerifyEmailParams, VerifyEmailResult as AnymailfinderVerifyEmailResult, ApifyToolMap, ApifyWebhookConfig, AppendBlocksParams, AppendBlocksResult, AppendRowsParams, AppendRowsResult, ApprovalToolMap, AttioToolMap, BatchUpdateParams, BatchUpdateResult, BulkImportParams, BulkImportResult, CancelHitlByDealIdParams, CancelSchedulesAndHitlByEmailParams, ClearDealFieldsParams, ClearRangeParams, ClearRangeResult, CompanyFilters, ConditionalNext, ContactFilters, Contract, CreateAttributeParams, CreateAttributeResult, CreateAutoPaymentLinkParams, CreateAutoPaymentLinkResult, CreateCheckoutSessionParams, CreateCheckoutSessionResult, CreateCompanyParams, CreateContactParams, CreateEnvelopeParams, CreateEnvelopeResult, CreateFolderParams, CreateFolderResult, CreateListParams, CreateNoteParams, CreateNoteResult, CreatePageParams, CreatePageResult, CreatePaymentLinkParams, CreatePaymentLinkResult, CreateRecordParams, CreateRecordResult, CreateScheduleInput, DeleteBlocksParams, DeleteBlocksResult, DeleteDealParams, DeleteNoteParams, DeleteNoteResult, DeletePageParams, DeletePageResult, DeleteRecordParams, DeleteRecordResult, DeleteRowByValueParams, DeleteRowByValueResult, DomainDefinition, DownloadDocumentParams, DownloadDocumentResult, DropboxToolMap, ElevasConfig, EmailToolMap, EnvelopeDocument, EventTriggerConfig, ExecutionContext, ExecutionInterface, ExecutionMetadata, ExecutionToolMap, FilterExpression, FilterRowsParams, FilterRowsResult, FormField, FormFieldType, FormSchema, GetEmailsParams, GetEmailsResult, GetEnvelopeParams, GetEnvelopeResult, GetHeadersParams, GetHeadersResult, GetLastRowParams, GetLastRowResult, GetPaymentLinkParams, GetPaymentLinkResult, GetRecordParams, GetRecordResult, GetRowByValueParams, GetRowByValueResult, GetSpreadsheetMetadataParams, GetSpreadsheetMetadataResult, GmailSendEmailParams, GmailSendEmailResult, GmailToolMap, GoogleSheetsToolMap, HumanCheckpointDefinition, InstantlyToolMap, IntegrationDefinition, LLMAdapterFactory, LLMGenerateRequest, LLMGenerateResponse, LLMMessage, LLMModel, LeadToolMap, LinearNext, ListAllPagesResult, ListAttributesParams, ListAttributesResult, ListNotesParams, ListNotesResult, ListObjectsResult, ListPaymentLinksParams, ListPaymentLinksResult, MailsoToolMap, MailsoVerifyEmailParams, MailsoVerifyEmailResult, MarkProposalReviewedParams, MarkProposalSentParams, MethodEntry, ModelConfig, NextConfig, NotificationSDKInput, NotificationToolMap, NotionToolMap, OrganizationResources, PageWithChildren, PaginatedResult, PaginationParams, PdfToolMap, QueryRecordsParams, QueryRecordsResult, ReadPageParams, ReadPageResult, ReadSheetParams, ReadSheetResult, Recipient, RecurringScheduleConfig, RelationshipDeclaration, RelativeScheduleConfig, RemoveFromSubsequenceParams, RemoveFromSubsequenceResult, ResendGetEmailParams, ResendGetEmailResult, ResendSendEmailParams, ResendSendEmailResult, ResendToolMap, ResourceDefinition, ResourceDomain, ResourceMetricsConfig, ResourceRelationships, ResourceStatus$1 as ResourceStatus, ResourceType, RunActorParams, RunActorResult, SDKLLMGenerateParams, ScheduleOriginTracking, ScheduleTarget, ScheduleTriggerConfig, SchedulerToolMap, SendReplyParams, SendReplyResult, SetContactNurtureParams, SheetInfo, SignatureApiFieldType, SignatureApiToolMap, SigningPlace, SortCriteria, StartActorParams, StartActorResult, StepHandler, StorageDeleteInput, StorageDeleteOutput, StorageDownloadInput, StorageDownloadOutput, StorageListInput, StorageListOutput, StorageSignedUrlInput, StorageSignedUrlOutput, StorageToolMap, StorageUploadInput, StorageUploadOutput, StripeToolMap, SyncDealStageParams, TaskSchedule, TaskScheduleConfig, TombaToolMap, Tool, ToolExecutionOptions, ToolMethodMap, ToolingErrorType, TriggerConfig, TriggerDefinition, UpdateAttributeParams, UpdateAttributeResult, UpdateBlocksParams, UpdateBlocksResult, UpdateCloseLostReasonParams, UpdateCompanyParams, UpdateContactParams, UpdateDiscoveryDataParams, UpdateFeesParams, UpdateInterestStatusParams, UpdateInterestStatusResult, UpdateListParams, UpdatePageTitleParams, UpdatePageTitleResult, UpdatePaymentLinkParams, UpdatePaymentLinkResult, UpdateProposalDataParams, UpdateRecordParams, UpdateRecordResult, UpdateRowByValueParams, UpdateRowByValueResult, UploadFileParams, UploadFileResult, UpsertCompanyParams, UpsertContactParams, UpsertDealParams, UpsertRowParams, UpsertRowResult, VoidEnvelopeParams, VoidEnvelopeResult, WebhookProviderType, WebhookTriggerConfig, WorkflowConfig, WorkflowDefinition, WorkflowStep, WriteSheetParams, WriteSheetResult };
|
|
@@ -14,6 +14,7 @@ export { createGoogleSheetsAdapter } from './google-sheets.js';
|
|
|
14
14
|
export { createInstantlyAdapter } from './instantly.js';
|
|
15
15
|
export { createMailsoAdapter } from './mailso.js';
|
|
16
16
|
export { createAnymailfinderAdapter } from './anymailfinder.js';
|
|
17
|
+
export { createTombaAdapter } from './tomba.js';
|
|
17
18
|
export { createNotionAdapter } from './notion.js';
|
|
18
19
|
export { createResendAdapter } from './resend.js';
|
|
19
20
|
export { createSignatureApiAdapter } from './signature-api.js';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tomba Integration Adapter
|
|
3
|
+
*
|
|
4
|
+
* Typed wrapper over platform.call() for Tomba email discovery operations.
|
|
5
|
+
* Uses factory pattern -- credential is bound once at construction time.
|
|
6
|
+
*/
|
|
7
|
+
import type { TombaToolMap } from '../../types/index.js';
|
|
8
|
+
/**
|
|
9
|
+
* Create a typed Tomba adapter bound to a specific credential.
|
|
10
|
+
*
|
|
11
|
+
* @param credential - Credential name as configured in the command center
|
|
12
|
+
* @returns Object with 3 typed methods for Tomba email discovery operations
|
|
13
|
+
*/
|
|
14
|
+
export declare function createTombaAdapter(credential: string): import("./create-adapter.js").TypedAdapter<TombaToolMap>;
|
package/dist/worker/index.js
CHANGED
|
@@ -4916,8 +4916,14 @@ function createAnymailfinderAdapter(credential) {
|
|
|
4916
4916
|
return createAdapter("anymailfinder", METHODS8, credential);
|
|
4917
4917
|
}
|
|
4918
4918
|
|
|
4919
|
+
// src/worker/adapters/tomba.ts
|
|
4920
|
+
var METHODS9 = ["emailFinder", "domainSearch", "emailVerifier"];
|
|
4921
|
+
function createTombaAdapter(credential) {
|
|
4922
|
+
return createAdapter("tomba", METHODS9, credential);
|
|
4923
|
+
}
|
|
4924
|
+
|
|
4919
4925
|
// src/worker/adapters/notion.ts
|
|
4920
|
-
var
|
|
4926
|
+
var METHODS10 = [
|
|
4921
4927
|
"listAllPages",
|
|
4922
4928
|
"readPage",
|
|
4923
4929
|
"createPage",
|
|
@@ -4928,31 +4934,31 @@ var METHODS9 = [
|
|
|
4928
4934
|
"deleteBlocks"
|
|
4929
4935
|
];
|
|
4930
4936
|
function createNotionAdapter(credential) {
|
|
4931
|
-
return createAdapter("notion",
|
|
4937
|
+
return createAdapter("notion", METHODS10, credential);
|
|
4932
4938
|
}
|
|
4933
4939
|
|
|
4934
4940
|
// src/worker/adapters/resend.ts
|
|
4935
|
-
var
|
|
4941
|
+
var METHODS11 = [
|
|
4936
4942
|
"sendEmail",
|
|
4937
4943
|
"getEmail"
|
|
4938
4944
|
];
|
|
4939
4945
|
function createResendAdapter(credential) {
|
|
4940
|
-
return createAdapter("resend",
|
|
4946
|
+
return createAdapter("resend", METHODS11, credential);
|
|
4941
4947
|
}
|
|
4942
4948
|
|
|
4943
4949
|
// src/worker/adapters/signature-api.ts
|
|
4944
|
-
var
|
|
4950
|
+
var METHODS12 = [
|
|
4945
4951
|
"createEnvelope",
|
|
4946
4952
|
"voidEnvelope",
|
|
4947
4953
|
"downloadDocument",
|
|
4948
4954
|
"getEnvelope"
|
|
4949
4955
|
];
|
|
4950
4956
|
function createSignatureApiAdapter(credential) {
|
|
4951
|
-
return createAdapter("signature-api",
|
|
4957
|
+
return createAdapter("signature-api", METHODS12, credential);
|
|
4952
4958
|
}
|
|
4953
4959
|
|
|
4954
4960
|
// src/worker/adapters/stripe.ts
|
|
4955
|
-
var
|
|
4961
|
+
var METHODS13 = [
|
|
4956
4962
|
"createPaymentLink",
|
|
4957
4963
|
"getPaymentLink",
|
|
4958
4964
|
"updatePaymentLink",
|
|
@@ -4961,7 +4967,7 @@ var METHODS12 = [
|
|
|
4961
4967
|
"createCheckoutSession"
|
|
4962
4968
|
];
|
|
4963
4969
|
function createStripeAdapter(credential) {
|
|
4964
|
-
return createAdapter("stripe",
|
|
4970
|
+
return createAdapter("stripe", METHODS13, credential);
|
|
4965
4971
|
}
|
|
4966
4972
|
|
|
4967
4973
|
// src/worker/adapters/scheduler.ts
|
|
@@ -5387,4 +5393,4 @@ function startWorker(org) {
|
|
|
5387
5393
|
});
|
|
5388
5394
|
}
|
|
5389
5395
|
|
|
5390
|
-
export { PlatformToolError, approval, createAdapter, createAnymailfinderAdapter, createApifyAdapter, createAttioAdapter, createDropboxAdapter, createGmailAdapter, createGoogleSheetsAdapter, createInstantlyAdapter, createMailsoAdapter, createNotionAdapter, createResendAdapter, createSignatureApiAdapter, createStripeAdapter, email, execution, lead, llm, notifications, pdf, platform, scheduler, startWorker, storage };
|
|
5396
|
+
export { PlatformToolError, approval, createAdapter, createAnymailfinderAdapter, createApifyAdapter, createAttioAdapter, createDropboxAdapter, createGmailAdapter, createGoogleSheetsAdapter, createInstantlyAdapter, createMailsoAdapter, createNotionAdapter, createResendAdapter, createSignatureApiAdapter, createStripeAdapter, createTombaAdapter, email, execution, lead, llm, notifications, pdf, platform, scheduler, startWorker, storage };
|