@elevasis/sdk 1.25.0 → 1.26.1

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.
Files changed (64) hide show
  1. package/dist/cli.cjs +87 -120
  2. package/dist/index.d.ts +220 -50
  3. package/dist/index.js +4 -435
  4. package/dist/node/index.d.ts +46 -38
  5. package/dist/test-utils/index.d.ts +154 -40
  6. package/dist/test-utils/index.js +27 -355
  7. package/dist/types/worker/adapters/clickup.d.ts +22 -0
  8. package/dist/types/worker/adapters/index.d.ts +1 -0
  9. package/dist/worker/index.js +32 -354
  10. package/package.json +2 -2
  11. package/reference/_navigation.md +11 -1
  12. package/reference/_reference-manifest.json +70 -0
  13. package/reference/claude-config/rules/organization-model.md +12 -1
  14. package/reference/claude-config/rules/organization-os.md +12 -1
  15. package/reference/claude-config/skills/om/SKILL.md +13 -5
  16. package/reference/claude-config/skills/om/operations/codify-level-a.md +109 -100
  17. package/reference/claude-config/skills/om/operations/customers.md +10 -6
  18. package/reference/claude-config/skills/om/operations/features.md +7 -3
  19. package/reference/claude-config/skills/om/operations/goals.md +10 -6
  20. package/reference/claude-config/skills/om/operations/identity.md +8 -5
  21. package/reference/claude-config/skills/om/operations/labels.md +17 -1
  22. package/reference/claude-config/skills/om/operations/offerings.md +11 -7
  23. package/reference/claude-config/skills/om/operations/roles.md +11 -7
  24. package/reference/claude-config/skills/om/operations/techStack.md +10 -2
  25. package/reference/claude-config/skills/setup/SKILL.md +2 -2
  26. package/reference/claude-config/sync-notes/2026-05-20-om-define-helpers.md +32 -0
  27. package/reference/claude-config/sync-notes/2026-05-22-access-model-and-right-panel.md +43 -0
  28. package/reference/claude-config/sync-notes/2026-05-22-lead-gen-tenant-config.md +40 -0
  29. package/reference/claude-config/sync-notes/2026-05-22-org-model-multi-file-split.md +61 -0
  30. package/reference/claude-config/sync-notes/2026-05-23-branding-names-to-identity.md +49 -0
  31. package/reference/claude-config/sync-notes/2026-05-23-om-deployment-drift-detection.md +42 -0
  32. package/reference/cli-management.mdx +541 -0
  33. package/reference/cli.mdx +4 -532
  34. package/reference/concepts.mdx +134 -146
  35. package/reference/deployment/api.mdx +296 -297
  36. package/reference/deployment/command-center.mdx +208 -209
  37. package/reference/deployment/index.mdx +194 -195
  38. package/reference/deployment/provided-features.mdx +110 -107
  39. package/reference/deployment/ui-execution.mdx +249 -250
  40. package/reference/examples/organization-model.ts +14 -4
  41. package/reference/framework/index.mdx +111 -195
  42. package/reference/framework/resource-documentation.mdx +90 -0
  43. package/reference/framework/tutorial-system.mdx +135 -135
  44. package/reference/getting-started.mdx +141 -142
  45. package/reference/index.mdx +95 -106
  46. package/reference/packages/ui/src/auth/README.md +6 -6
  47. package/reference/platform-tools/adapters-integration.mdx +300 -301
  48. package/reference/platform-tools/adapters-platform.mdx +552 -553
  49. package/reference/platform-tools/index.mdx +216 -217
  50. package/reference/platform-tools/type-safety.mdx +82 -82
  51. package/reference/resources/index.mdx +348 -349
  52. package/reference/resources/patterns.mdx +446 -449
  53. package/reference/resources/types.mdx +115 -116
  54. package/reference/roadmap.mdx +164 -165
  55. package/reference/rules/organization-model.md +14 -0
  56. package/reference/runtime.mdx +172 -173
  57. package/reference/scaffold/operations/propagation-pipeline.md +1 -1
  58. package/reference/scaffold/recipes/extend-lead-gen.md +130 -77
  59. package/reference/scaffold/reference/contracts.md +376 -446
  60. package/reference/scaffold/reference/glossary.md +8 -6
  61. package/reference/scaffold/ui/feature-flags-and-gating.md +59 -46
  62. package/reference/scaffold/ui/feature-shell.mdx +11 -11
  63. package/reference/scaffold/ui/recipes.md +24 -24
  64. package/reference/troubleshooting.mdx +222 -223
@@ -1,301 +1,300 @@
1
- ---
2
- title: Integration Adapters
3
- description: Type-safe wrappers for third-party integrations -- Attio, Stripe, Google Sheets, Instantly, SignatureAPI, Resend, Dropbox, Apify, Gmail, and Tomba -- with full autocomplete and compile-time checking
4
- loadWhen: "Using typed adapters for integration tools, or needs to know what integration adapter methods are available"
5
- ---
6
-
7
- Integration adapters are factory functions that bind a credential once and return a typed object with all methods available for that service. They wrap `platform.call()` with full TypeScript autocomplete and compile-time method checking.
8
-
9
- All integration adapters are imported from `@elevasis/sdk/worker`. For platform service adapters (scheduler, storage, llm, etc.), see [Platform Adapters](adapters-platform.mdx).
10
-
11
- ```typescript
12
- import {
13
- createAttioAdapter, createStripeAdapter,
14
- createGoogleSheetsAdapter, createInstantlyAdapter,
15
- createSignatureApiAdapter, createResendAdapter, createDropboxAdapter,
16
- createApifyAdapter, createGmailAdapter,
17
- createTombaAdapter,
18
- } from '@elevasis/sdk/worker'
19
- ```
20
-
21
- ---
22
-
23
- ## Quick Reference
24
-
25
- | Import | Methods | Category |
26
- | --------------------------------- | ------- | ------------------- |
27
- | `createAttioAdapter(cred)` | 12 | CRM |
28
- | `createGoogleSheetsAdapter(cred)` | 13 | Spreadsheets |
29
- | `createStripeAdapter(cred)` | 6 | Payments |
30
- | `createInstantlyAdapter(cred)` | 5 | Email Campaigns |
31
- | `createSignatureApiAdapter(cred)` | 4 | eSignature |
32
- | `createTombaAdapter(cred)` | 3 | Email Discovery |
33
- | `createResendAdapter(cred)` | 2 | Transactional Email |
34
- | `createDropboxAdapter(cred)` | 2 | File Storage |
35
- | `createApifyAdapter(cred)` | 1 | Web Scraping |
36
- | `createGmailAdapter(cred)` | 1 | Email (Gmail) |
37
-
38
- Multiple adapters with different credentials work simultaneously:
39
-
40
- ```typescript
41
- const prodAttio = createAttioAdapter('prod-attio')
42
- const testAttio = createAttioAdapter('test-attio')
43
- ```
44
-
45
- ---
46
-
47
- ## Attio CRM Adapter
48
-
49
- Factory pattern -- bind a credential once, use 12 typed methods.
50
-
51
- ```typescript
52
- const attio = createAttioAdapter('my-attio-credential')
53
- ```
54
-
55
- ### Methods
56
-
57
- | Method | Params | Returns |
58
- | ----------------- | ----------------------- | ----------------------- |
59
- | `createRecord` | `CreateRecordParams` | `CreateRecordResult` |
60
- | `updateRecord` | `UpdateRecordParams` | `UpdateRecordResult` |
61
- | `listRecords` | `QueryRecordsParams` | `QueryRecordsResult` |
62
- | `getRecord` | `GetRecordParams` | `GetRecordResult` |
63
- | `deleteRecord` | `DeleteRecordParams` | `DeleteRecordResult` |
64
- | `listObjects` | none | `ListObjectsResult` |
65
- | `listAttributes` | `ListAttributesParams` | `ListAttributesResult` |
66
- | `createAttribute` | `CreateAttributeParams` | `CreateAttributeResult` |
67
- | `updateAttribute` | `UpdateAttributeParams` | `UpdateAttributeResult` |
68
- | `createNote` | `CreateNoteParams` | `CreateNoteResult` |
69
- | `listNotes` | `ListNotesParams` | `ListNotesResult` |
70
- | `deleteNote` | `DeleteNoteParams` | `DeleteNoteResult` |
71
-
72
- ### Examples
73
-
74
- ```typescript
75
- // Create a company record
76
- const company = await attio.createRecord({
77
- object: 'companies',
78
- values: {
79
- name: [{ value: 'Acme Corp' }],
80
- domains: [{ domain: 'acme.com' }],
81
- },
82
- })
83
-
84
- // Query deals with filters
85
- const deals = await attio.listRecords({
86
- object: 'deals',
87
- filter: {
88
- operator: 'and',
89
- filters: [
90
- { field: 'stage', operator: 'equals', value: 'proposal' },
91
- ],
92
- },
93
- sorts: [{ field: 'created_at', direction: 'desc' }],
94
- limit: 20,
95
- })
96
-
97
- // Create a note on a record
98
- await attio.createNote({
99
- parentObject: 'deals',
100
- parentRecordId: 'rec_abc123',
101
- title: 'Discovery call notes',
102
- content: 'Key takeaways from the call...',
103
- })
104
- ```
105
-
106
- ---
107
-
108
- ## Google Sheets Adapter
109
-
110
- Factory pattern -- 13 methods including workflow-friendly helpers (`getRowByValue`, `upsertRow`, `filterRows`).
111
-
112
- ```typescript
113
- const sheets = createGoogleSheetsAdapter('my-google-credential')
114
- ```
115
-
116
- ### Methods
117
-
118
- | Method | Params | Returns |
119
- | ------------------------ | ------------------------------ | ------------------------------ |
120
- | `readSheet` | `ReadSheetParams` | `ReadSheetResult` |
121
- | `writeSheet` | `WriteSheetParams` | `WriteSheetResult` |
122
- | `appendRows` | `AppendRowsParams` | `AppendRowsResult` |
123
- | `clearRange` | `ClearRangeParams` | `ClearRangeResult` |
124
- | `getSpreadsheetMetadata` | `GetSpreadsheetMetadataParams` | `GetSpreadsheetMetadataResult` |
125
- | `batchUpdate` | `BatchUpdateParams` | `BatchUpdateResult` |
126
- | `getHeaders` | `GetHeadersParams` | `GetHeadersResult` |
127
- | `getLastRow` | `GetLastRowParams` | `GetLastRowResult` |
128
- | `getRowByValue` | `GetRowByValueParams` | `GetRowByValueResult` |
129
- | `updateRowByValue` | `UpdateRowByValueParams` | `UpdateRowByValueResult` |
130
- | `upsertRow` | `UpsertRowParams` | `UpsertRowResult` |
131
- | `filterRows` | `FilterRowsParams` | `FilterRowsResult` |
132
- | `deleteRowByValue` | `DeleteRowByValueParams` | `DeleteRowByValueResult` |
133
-
134
- ---
135
-
136
- ## Stripe Adapter
137
-
138
- Factory pattern -- 6 methods for payment links and checkout sessions.
139
-
140
- ```typescript
141
- const stripe = createStripeAdapter('my-stripe-credential')
142
- ```
143
-
144
- ### Methods
145
-
146
- | Method | Params | Returns |
147
- | ----------------------- | ----------------------------- | ----------------------------- |
148
- | `createPaymentLink` | `CreatePaymentLinkParams` | `CreatePaymentLinkResult` |
149
- | `getPaymentLink` | `GetPaymentLinkParams` | `GetPaymentLinkResult` |
150
- | `updatePaymentLink` | `UpdatePaymentLinkParams` | `UpdatePaymentLinkResult` |
151
- | `listPaymentLinks` | `ListPaymentLinksParams` | `ListPaymentLinksResult` |
152
- | `createAutoPaymentLink` | `CreateAutoPaymentLinkParams` | `CreateAutoPaymentLinkResult` |
153
- | `createCheckoutSession` | `CreateCheckoutSessionParams` | `CreateCheckoutSessionResult` |
154
-
155
- ---
156
-
157
- ## Instantly Adapter
158
-
159
- Factory pattern -- 5 methods for email campaign management.
160
-
161
- ```typescript
162
- const instantly = createInstantlyAdapter('my-instantly-credential')
163
- ```
164
-
165
- ### Methods
166
-
167
- | Method | Params | Returns |
168
- | ----------------------- | ----------------------------- | ----------------------------- |
169
- | `sendReply` | `SendReplyParams` | `SendReplyResult` |
170
- | `removeFromSubsequence` | `RemoveFromSubsequenceParams` | `RemoveFromSubsequenceResult` |
171
- | `getEmails` | `GetEmailsParams` | `GetEmailsResult` |
172
- | `updateInterestStatus` | `UpdateInterestStatusParams` | `UpdateInterestStatusResult` |
173
- | `addToCampaign` | `AddToCampaignParams` | `AddToCampaignResult` |
174
-
175
- ---
176
-
177
- ## SignatureAPI Adapter
178
-
179
- Factory pattern -- 4 methods for eSignature envelope operations.
180
-
181
- ```typescript
182
- const signatureApi = createSignatureApiAdapter('my-signatureapi-credential')
183
- ```
184
-
185
- ### Methods
186
-
187
- | Method | Params | Returns |
188
- | ------------------ | ------------------------ | ------------------------ |
189
- | `createEnvelope` | `CreateEnvelopeParams` | `CreateEnvelopeResult` |
190
- | `voidEnvelope` | `VoidEnvelopeParams` | `VoidEnvelopeResult` |
191
- | `downloadDocument` | `DownloadDocumentParams` | `DownloadDocumentResult` |
192
- | `getEnvelope` | `GetEnvelopeParams` | `GetEnvelopeResult` |
193
-
194
- ---
195
-
196
- ## Tomba Adapter
197
-
198
- Factory pattern -- 3 methods for email discovery and verification.
199
-
200
- ```typescript
201
- const tomba = createTombaAdapter('elevasis-tomba')
202
- ```
203
-
204
- **Credential type:** `api-key-secret` (requires both API Key and API Secret)
205
-
206
- ### Methods
207
-
208
- | Method | Params | Returns |
209
- | --------------- | -------------------------- | -------------------------- |
210
- | `emailFinder` | `TombaEmailFinderParams` | `TombaEmailFinderResult` |
211
- | `domainSearch` | `TombaDomainSearchParams` | `TombaDomainSearchResult` |
212
- | `emailVerifier` | `TombaEmailVerifierParams` | `TombaEmailVerifierResult` |
213
-
214
- ### Examples
215
-
216
- ```typescript
217
- // Find email by name + domain
218
- const found = await tomba.emailFinder({
219
- domain: 'stripe.com',
220
- firstName: 'John',
221
- lastName: 'Doe',
222
- })
223
-
224
- // List all emails at a domain (up to 10)
225
- const results = await tomba.domainSearch({ domain: 'stripe.com' })
226
-
227
- // Verify a known email address
228
- const verified = await tomba.emailVerifier({ email: 'john@stripe.com' })
229
- ```
230
-
231
- ---
232
-
233
- ## Resend Adapter
234
-
235
- Factory pattern -- 2 methods for transactional email.
236
-
237
- ```typescript
238
- const resend = createResendAdapter('my-resend-credential')
239
- ```
240
-
241
- ### Methods
242
-
243
- | Method | Params | Returns |
244
- | ----------- | ----------------------- | ----------------------- |
245
- | `sendEmail` | `ResendSendEmailParams` | `ResendSendEmailResult` |
246
- | `getEmail` | `ResendGetEmailParams` | `ResendGetEmailResult` |
247
-
248
- ---
249
-
250
- ## Dropbox Adapter
251
-
252
- Factory pattern -- 2 methods for file operations.
253
-
254
- ```typescript
255
- const dropbox = createDropboxAdapter('my-dropbox-credential')
256
- ```
257
-
258
- ### Methods
259
-
260
- | Method | Params | Returns |
261
- | -------------- | -------------------- | -------------------- |
262
- | `uploadFile` | `UploadFileParams` | `UploadFileResult` |
263
- | `createFolder` | `CreateFolderParams` | `CreateFolderResult` |
264
-
265
- ---
266
-
267
- ## Apify Adapter
268
-
269
- Factory pattern -- 1 method for running web scraping actors.
270
-
271
- ```typescript
272
- const apify = createApifyAdapter('my-apify-credential')
273
- ```
274
-
275
- ### Methods
276
-
277
- | Method | Params | Returns |
278
- | ---------- | ---------------- | ---------------- |
279
- | `runActor` | `RunActorParams` | `RunActorResult` |
280
-
281
- ---
282
-
283
- ## Gmail Adapter
284
-
285
- Factory pattern -- 1 method for sending email via Gmail API.
286
-
287
- ```typescript
288
- const gmail = createGmailAdapter('my-gmail-credential')
289
- ```
290
-
291
- ### Methods
292
-
293
- | Method | Params | Returns |
294
- | ----------- | ---------------------- | ---------------------- |
295
- | `sendEmail` | `GmailSendEmailParams` | `GmailSendEmailResult` |
296
-
297
- ---
298
-
299
- For platform service adapters (scheduler, storage, llm, pdf, approval, acqDb, notifications, execution, email), see [Platform Adapters](adapters-platform.mdx).
300
-
301
- **Last Updated:** 2026-03-05
1
+ ---
2
+ title: Integration Adapters
3
+ description: Type-safe wrappers for third-party integrations -- Attio, Stripe, Google Sheets, Instantly, SignatureAPI, Resend, Dropbox, Apify, Gmail, and Tomba -- with full autocomplete and compile-time checking
4
+ ---
5
+
6
+ Integration adapters are factory functions that bind a credential once and return a typed object with all methods available for that service. They wrap `platform.call()` with full TypeScript autocomplete and compile-time method checking.
7
+
8
+ All integration adapters are imported from `@elevasis/sdk/worker`. For platform service adapters (scheduler, storage, llm, etc.), see [Platform Adapters](adapters-platform.mdx).
9
+
10
+ ```typescript
11
+ import {
12
+ createAttioAdapter, createStripeAdapter,
13
+ createGoogleSheetsAdapter, createInstantlyAdapter,
14
+ createSignatureApiAdapter, createResendAdapter, createDropboxAdapter,
15
+ createApifyAdapter, createGmailAdapter,
16
+ createTombaAdapter,
17
+ } from '@elevasis/sdk/worker'
18
+ ```
19
+
20
+ ---
21
+
22
+ ## Quick Reference
23
+
24
+ | Import | Methods | Category |
25
+ | --------------------------------- | ------- | ------------------- |
26
+ | `createAttioAdapter(cred)` | 12 | CRM |
27
+ | `createGoogleSheetsAdapter(cred)` | 13 | Spreadsheets |
28
+ | `createStripeAdapter(cred)` | 6 | Payments |
29
+ | `createInstantlyAdapter(cred)` | 5 | Email Campaigns |
30
+ | `createSignatureApiAdapter(cred)` | 4 | eSignature |
31
+ | `createTombaAdapter(cred)` | 3 | Email Discovery |
32
+ | `createResendAdapter(cred)` | 2 | Transactional Email |
33
+ | `createDropboxAdapter(cred)` | 2 | File Storage |
34
+ | `createApifyAdapter(cred)` | 1 | Web Scraping |
35
+ | `createGmailAdapter(cred)` | 1 | Email (Gmail) |
36
+
37
+ Multiple adapters with different credentials work simultaneously:
38
+
39
+ ```typescript
40
+ const prodAttio = createAttioAdapter('prod-attio')
41
+ const testAttio = createAttioAdapter('test-attio')
42
+ ```
43
+
44
+ ---
45
+
46
+ ## Attio CRM Adapter
47
+
48
+ Factory pattern -- bind a credential once, use 12 typed methods.
49
+
50
+ ```typescript
51
+ const attio = createAttioAdapter('my-attio-credential')
52
+ ```
53
+
54
+ ### Methods
55
+
56
+ | Method | Params | Returns |
57
+ | ----------------- | ----------------------- | ----------------------- |
58
+ | `createRecord` | `CreateRecordParams` | `CreateRecordResult` |
59
+ | `updateRecord` | `UpdateRecordParams` | `UpdateRecordResult` |
60
+ | `listRecords` | `QueryRecordsParams` | `QueryRecordsResult` |
61
+ | `getRecord` | `GetRecordParams` | `GetRecordResult` |
62
+ | `deleteRecord` | `DeleteRecordParams` | `DeleteRecordResult` |
63
+ | `listObjects` | none | `ListObjectsResult` |
64
+ | `listAttributes` | `ListAttributesParams` | `ListAttributesResult` |
65
+ | `createAttribute` | `CreateAttributeParams` | `CreateAttributeResult` |
66
+ | `updateAttribute` | `UpdateAttributeParams` | `UpdateAttributeResult` |
67
+ | `createNote` | `CreateNoteParams` | `CreateNoteResult` |
68
+ | `listNotes` | `ListNotesParams` | `ListNotesResult` |
69
+ | `deleteNote` | `DeleteNoteParams` | `DeleteNoteResult` |
70
+
71
+ ### Examples
72
+
73
+ ```typescript
74
+ // Create a company record
75
+ const company = await attio.createRecord({
76
+ object: 'companies',
77
+ values: {
78
+ name: [{ value: 'Acme Corp' }],
79
+ domains: [{ domain: 'acme.com' }],
80
+ },
81
+ })
82
+
83
+ // Query deals with filters
84
+ const deals = await attio.listRecords({
85
+ object: 'deals',
86
+ filter: {
87
+ operator: 'and',
88
+ filters: [
89
+ { field: 'stage', operator: 'equals', value: 'proposal' },
90
+ ],
91
+ },
92
+ sorts: [{ field: 'created_at', direction: 'desc' }],
93
+ limit: 20,
94
+ })
95
+
96
+ // Create a note on a record
97
+ await attio.createNote({
98
+ parentObject: 'deals',
99
+ parentRecordId: 'rec_abc123',
100
+ title: 'Discovery call notes',
101
+ content: 'Key takeaways from the call...',
102
+ })
103
+ ```
104
+
105
+ ---
106
+
107
+ ## Google Sheets Adapter
108
+
109
+ Factory pattern -- 13 methods including workflow-friendly helpers (`getRowByValue`, `upsertRow`, `filterRows`).
110
+
111
+ ```typescript
112
+ const sheets = createGoogleSheetsAdapter('my-google-credential')
113
+ ```
114
+
115
+ ### Methods
116
+
117
+ | Method | Params | Returns |
118
+ | ------------------------ | ------------------------------ | ------------------------------ |
119
+ | `readSheet` | `ReadSheetParams` | `ReadSheetResult` |
120
+ | `writeSheet` | `WriteSheetParams` | `WriteSheetResult` |
121
+ | `appendRows` | `AppendRowsParams` | `AppendRowsResult` |
122
+ | `clearRange` | `ClearRangeParams` | `ClearRangeResult` |
123
+ | `getSpreadsheetMetadata` | `GetSpreadsheetMetadataParams` | `GetSpreadsheetMetadataResult` |
124
+ | `batchUpdate` | `BatchUpdateParams` | `BatchUpdateResult` |
125
+ | `getHeaders` | `GetHeadersParams` | `GetHeadersResult` |
126
+ | `getLastRow` | `GetLastRowParams` | `GetLastRowResult` |
127
+ | `getRowByValue` | `GetRowByValueParams` | `GetRowByValueResult` |
128
+ | `updateRowByValue` | `UpdateRowByValueParams` | `UpdateRowByValueResult` |
129
+ | `upsertRow` | `UpsertRowParams` | `UpsertRowResult` |
130
+ | `filterRows` | `FilterRowsParams` | `FilterRowsResult` |
131
+ | `deleteRowByValue` | `DeleteRowByValueParams` | `DeleteRowByValueResult` |
132
+
133
+ ---
134
+
135
+ ## Stripe Adapter
136
+
137
+ Factory pattern -- 6 methods for payment links and checkout sessions.
138
+
139
+ ```typescript
140
+ const stripe = createStripeAdapter('my-stripe-credential')
141
+ ```
142
+
143
+ ### Methods
144
+
145
+ | Method | Params | Returns |
146
+ | ----------------------- | ----------------------------- | ----------------------------- |
147
+ | `createPaymentLink` | `CreatePaymentLinkParams` | `CreatePaymentLinkResult` |
148
+ | `getPaymentLink` | `GetPaymentLinkParams` | `GetPaymentLinkResult` |
149
+ | `updatePaymentLink` | `UpdatePaymentLinkParams` | `UpdatePaymentLinkResult` |
150
+ | `listPaymentLinks` | `ListPaymentLinksParams` | `ListPaymentLinksResult` |
151
+ | `createAutoPaymentLink` | `CreateAutoPaymentLinkParams` | `CreateAutoPaymentLinkResult` |
152
+ | `createCheckoutSession` | `CreateCheckoutSessionParams` | `CreateCheckoutSessionResult` |
153
+
154
+ ---
155
+
156
+ ## Instantly Adapter
157
+
158
+ Factory pattern -- 5 methods for email campaign management.
159
+
160
+ ```typescript
161
+ const instantly = createInstantlyAdapter('my-instantly-credential')
162
+ ```
163
+
164
+ ### Methods
165
+
166
+ | Method | Params | Returns |
167
+ | ----------------------- | ----------------------------- | ----------------------------- |
168
+ | `sendReply` | `SendReplyParams` | `SendReplyResult` |
169
+ | `removeFromSubsequence` | `RemoveFromSubsequenceParams` | `RemoveFromSubsequenceResult` |
170
+ | `getEmails` | `GetEmailsParams` | `GetEmailsResult` |
171
+ | `updateInterestStatus` | `UpdateInterestStatusParams` | `UpdateInterestStatusResult` |
172
+ | `addToCampaign` | `AddToCampaignParams` | `AddToCampaignResult` |
173
+
174
+ ---
175
+
176
+ ## SignatureAPI Adapter
177
+
178
+ Factory pattern -- 4 methods for eSignature envelope operations.
179
+
180
+ ```typescript
181
+ const signatureApi = createSignatureApiAdapter('my-signatureapi-credential')
182
+ ```
183
+
184
+ ### Methods
185
+
186
+ | Method | Params | Returns |
187
+ | ------------------ | ------------------------ | ------------------------ |
188
+ | `createEnvelope` | `CreateEnvelopeParams` | `CreateEnvelopeResult` |
189
+ | `voidEnvelope` | `VoidEnvelopeParams` | `VoidEnvelopeResult` |
190
+ | `downloadDocument` | `DownloadDocumentParams` | `DownloadDocumentResult` |
191
+ | `getEnvelope` | `GetEnvelopeParams` | `GetEnvelopeResult` |
192
+
193
+ ---
194
+
195
+ ## Tomba Adapter
196
+
197
+ Factory pattern -- 3 methods for email discovery and verification.
198
+
199
+ ```typescript
200
+ const tomba = createTombaAdapter('elevasis-tomba')
201
+ ```
202
+
203
+ **Credential type:** `api-key-secret` (requires both API Key and API Secret)
204
+
205
+ ### Methods
206
+
207
+ | Method | Params | Returns |
208
+ | --------------- | -------------------------- | -------------------------- |
209
+ | `emailFinder` | `TombaEmailFinderParams` | `TombaEmailFinderResult` |
210
+ | `domainSearch` | `TombaDomainSearchParams` | `TombaDomainSearchResult` |
211
+ | `emailVerifier` | `TombaEmailVerifierParams` | `TombaEmailVerifierResult` |
212
+
213
+ ### Examples
214
+
215
+ ```typescript
216
+ // Find email by name + domain
217
+ const found = await tomba.emailFinder({
218
+ domain: 'stripe.com',
219
+ firstName: 'John',
220
+ lastName: 'Doe',
221
+ })
222
+
223
+ // List all emails at a domain (up to 10)
224
+ const results = await tomba.domainSearch({ domain: 'stripe.com' })
225
+
226
+ // Verify a known email address
227
+ const verified = await tomba.emailVerifier({ email: 'john@stripe.com' })
228
+ ```
229
+
230
+ ---
231
+
232
+ ## Resend Adapter
233
+
234
+ Factory pattern -- 2 methods for transactional email.
235
+
236
+ ```typescript
237
+ const resend = createResendAdapter('my-resend-credential')
238
+ ```
239
+
240
+ ### Methods
241
+
242
+ | Method | Params | Returns |
243
+ | ----------- | ----------------------- | ----------------------- |
244
+ | `sendEmail` | `ResendSendEmailParams` | `ResendSendEmailResult` |
245
+ | `getEmail` | `ResendGetEmailParams` | `ResendGetEmailResult` |
246
+
247
+ ---
248
+
249
+ ## Dropbox Adapter
250
+
251
+ Factory pattern -- 2 methods for file operations.
252
+
253
+ ```typescript
254
+ const dropbox = createDropboxAdapter('my-dropbox-credential')
255
+ ```
256
+
257
+ ### Methods
258
+
259
+ | Method | Params | Returns |
260
+ | -------------- | -------------------- | -------------------- |
261
+ | `uploadFile` | `UploadFileParams` | `UploadFileResult` |
262
+ | `createFolder` | `CreateFolderParams` | `CreateFolderResult` |
263
+
264
+ ---
265
+
266
+ ## Apify Adapter
267
+
268
+ Factory pattern -- 1 method for running web scraping actors.
269
+
270
+ ```typescript
271
+ const apify = createApifyAdapter('my-apify-credential')
272
+ ```
273
+
274
+ ### Methods
275
+
276
+ | Method | Params | Returns |
277
+ | ---------- | ---------------- | ---------------- |
278
+ | `runActor` | `RunActorParams` | `RunActorResult` |
279
+
280
+ ---
281
+
282
+ ## Gmail Adapter
283
+
284
+ Factory pattern -- 1 method for sending email via Gmail API.
285
+
286
+ ```typescript
287
+ const gmail = createGmailAdapter('my-gmail-credential')
288
+ ```
289
+
290
+ ### Methods
291
+
292
+ | Method | Params | Returns |
293
+ | ----------- | ---------------------- | ---------------------- |
294
+ | `sendEmail` | `GmailSendEmailParams` | `GmailSendEmailResult` |
295
+
296
+ ---
297
+
298
+ For platform service adapters (scheduler, storage, llm, pdf, approval, acqDb, notifications, execution, email), see [Platform Adapters](adapters-platform.mdx).
299
+
300
+ **Last Updated:** 2026-03-05