@keystrokehq/sendgrid 0.0.15 → 0.0.16-integration-id-canonicalization.0
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/README.md +59 -111
- package/dist/credential-sets/index.d.mts +2 -0
- package/dist/credential-sets/index.mjs +3 -0
- package/dist/index.d.mts +4 -1
- package/dist/index.mjs +5 -1
- package/dist/operations/index.d.mts +2 -0
- package/dist/operations/index.mjs +3 -0
- package/dist/schemas/index.d.mts +5 -5
- package/dist/schemas/index.mjs +1 -1
- package/dist/{integration-DHWfpe0w.mjs → sendgrid.credential-set-CzYmlJ2Y.mjs} +9 -8
- package/dist/sendgrid.credential-set-ivRIiUDy.d.mts +32 -0
- package/dist/validate-email.operation-CCCDxLjH.mjs +4301 -0
- package/dist/validate-email.operation-DY4rCHFE.d.mts +5436 -0
- package/package.json +11 -99
- package/dist/_official/index.d.mts +0 -2
- package/dist/_official/index.mjs +0 -3
- package/dist/_runtime/index.d.mts +0 -2
- package/dist/_runtime/index.mjs +0 -3
- package/dist/alerts.d.mts +0 -147
- package/dist/alerts.mjs +0 -101
- package/dist/api-keys.d.mts +0 -105
- package/dist/api-keys.mjs +0 -113
- package/dist/client.d.mts +0 -73
- package/dist/client.mjs +0 -261
- package/dist/connection.d.mts +0 -2
- package/dist/connection.mjs +0 -3
- package/dist/domains.d.mts +0 -86
- package/dist/domains.mjs +0 -62
- package/dist/email-validation.d.mts +0 -97
- package/dist/email-validation.mjs +0 -73
- package/dist/events.d.mts +0 -69
- package/dist/events.mjs +0 -28
- package/dist/factory-7q6CQ75J.mjs +0 -25
- package/dist/integration-Cj4Xzfq_.d.mts +0 -48
- package/dist/mail-send.d.mts +0 -242
- package/dist/mail-send.mjs +0 -218
- package/dist/marketing-contacts.d.mts +0 -462
- package/dist/marketing-contacts.mjs +0 -277
- package/dist/marketing-customfields.d.mts +0 -66
- package/dist/marketing-customfields.mjs +0 -70
- package/dist/marketing-lists.d.mts +0 -120
- package/dist/marketing-lists.mjs +0 -130
- package/dist/marketing-segments.d.mts +0 -249
- package/dist/marketing-segments.mjs +0 -179
- package/dist/marketing-singlesends.d.mts +0 -521
- package/dist/marketing-singlesends.mjs +0 -277
- package/dist/operations.d.mts +0 -25
- package/dist/operations.mjs +0 -69
- package/dist/sender-identities.d.mts +0 -163
- package/dist/sender-identities.mjs +0 -109
- package/dist/senders.d.mts +0 -181
- package/dist/senders.mjs +0 -83
- package/dist/shared-CQ8JFNXi.mjs +0 -13
- package/dist/stats.d.mts +0 -169
- package/dist/stats.mjs +0 -107
- package/dist/suppressions.d.mts +0 -505
- package/dist/suppressions.mjs +0 -539
- package/dist/templates.d.mts +0 -351
- package/dist/templates.mjs +0 -238
- package/dist/user-account.d.mts +0 -71
- package/dist/user-account.mjs +0 -59
- package/dist/verification.d.mts +0 -67
- package/dist/verification.mjs +0 -72
- package/dist/webhooks/event.d.mts +0 -214
- package/dist/webhooks/event.mjs +0 -147
- package/dist/webhooks/parse.d.mts +0 -117
- package/dist/webhooks/parse.mjs +0 -125
- /package/dist/{webhooks-CKdsIikb.mjs → webhooks-dVOd93Hd.mjs} +0 -0
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Official Keystroke integration for **SendGrid** (Twilio) — transactional + marketing email, templates, contacts, lists, segments, suppressions, deliverability, and webhook helpers.
|
|
4
4
|
|
|
5
|
-
This package follows the
|
|
5
|
+
This package follows the canonical Keystroke integration shape with four public subpaths.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -12,12 +12,24 @@ This package follows the standard Keystroke [official integration authoring patt
|
|
|
12
12
|
pnpm add @keystrokehq/sendgrid
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
## Package exports
|
|
16
|
+
|
|
17
|
+
Import from the canonical barrel subpaths:
|
|
18
|
+
|
|
19
|
+
- `@keystrokehq/sendgrid` — credential sets, operations, and schemas
|
|
20
|
+
- `@keystrokehq/sendgrid/credential-sets` — `sendgridCredentialSet` and `SendGridCredentials`
|
|
21
|
+
- `@keystrokehq/sendgrid/operations` — all 152 SendGrid operations (+ `*Tool` aliases)
|
|
22
|
+
- `@keystrokehq/sendgrid/schemas` — shared Zod schemas and inferred types
|
|
23
|
+
|
|
15
24
|
## Connect
|
|
16
25
|
|
|
17
26
|
SendGrid authenticates with a single API key. Create one in the SendGrid console (**Settings → API Keys**) — we recommend a **Restricted Access** key with only the scopes your workflows need.
|
|
18
27
|
|
|
19
28
|
```ts
|
|
20
|
-
import {
|
|
29
|
+
import {
|
|
30
|
+
sendgridCredentialSet,
|
|
31
|
+
type SendGridCredentials,
|
|
32
|
+
} from '@keystrokehq/sendgrid/credential-sets';
|
|
21
33
|
|
|
22
34
|
const credentials: SendGridCredentials = {
|
|
23
35
|
SENDGRID_API_KEY: 'SG.xxx...',
|
|
@@ -29,7 +41,7 @@ const credentials: SendGridCredentials = {
|
|
|
29
41
|
};
|
|
30
42
|
|
|
31
43
|
void credentials;
|
|
32
|
-
void
|
|
44
|
+
void sendgridCredentialSet;
|
|
33
45
|
```
|
|
34
46
|
|
|
35
47
|
### Fields
|
|
@@ -47,74 +59,27 @@ void sendgrid;
|
|
|
47
59
|
## Quickstart
|
|
48
60
|
|
|
49
61
|
```ts
|
|
50
|
-
import {
|
|
62
|
+
import { sendEmailOperation } from '@keystrokehq/sendgrid/operations';
|
|
51
63
|
|
|
52
|
-
void
|
|
64
|
+
void sendEmailOperation;
|
|
53
65
|
```
|
|
54
66
|
|
|
55
|
-
|
|
56
|
-
import { triggers } from '@keystrokehq/sendgrid/triggers';
|
|
57
|
-
|
|
58
|
-
const onBounce = triggers.bounce({
|
|
59
|
-
name: 'escalate-hard-bounces',
|
|
60
|
-
filter: (event) => event.type === 'hard',
|
|
61
|
-
transform: (event) => ({ email: event.email, reason: event.reason }),
|
|
62
|
-
});
|
|
67
|
+
---
|
|
63
68
|
|
|
64
|
-
|
|
65
|
-
```
|
|
69
|
+
## Operations (152)
|
|
66
70
|
|
|
67
|
-
|
|
71
|
+
Phase-1 coverage spans Mail Send, Templates, Marketing Contacts/Lists/Segments/Single Sends/Custom Fields, Suppressions, Senders, Stats, Email Validation, User Account, Alerts, API Keys, Authenticated Domains, and Event + Inbound Parse webhook configuration. Every operation id is prefixed with `sendgrid.` — for example `sendgrid.send-email`, `sendgrid.upsert-contacts`, and `sendgrid.create-event-webhook`.
|
|
68
72
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
### End-user authoring imports
|
|
72
|
-
|
|
73
|
-
| Import path | Exports |
|
|
74
|
-
|---|---|
|
|
75
|
-
| `@keystrokehq/sendgrid/mail-send` | `sendEmail`, `createBatchId`, `validateBatchId`, `cancelOrPauseScheduledSend`, `updateScheduledSend`, `deleteScheduledSend`, `listScheduledSends`, `getScheduledSend` |
|
|
76
|
-
| `@keystrokehq/sendgrid/templates` | Transactional templates + versions CRUD + activate |
|
|
77
|
-
| `@keystrokehq/sendgrid/marketing-contacts` | Marketing Contacts v3: upsert, search, batch, count, imports, exports, field definitions |
|
|
78
|
-
| `@keystrokehq/sendgrid/marketing-lists` | Marketing Lists v3 CRUD + contact count + remove-contacts |
|
|
79
|
-
| `@keystrokehq/sendgrid/marketing-segments` | Marketing Segments v2 CRUD + refresh + parent-filter |
|
|
80
|
-
| `@keystrokehq/sendgrid/marketing-singlesends` | Single Sends CRUD + schedule + stats + test sends |
|
|
81
|
-
| `@keystrokehq/sendgrid/marketing-customfields` | Marketing custom field definition CRUD |
|
|
82
|
-
| `@keystrokehq/sendgrid/senders` | Marketing senders CRUD |
|
|
83
|
-
| `@keystrokehq/sendgrid/sender-identities` | Verified sender identity CRUD + resend |
|
|
84
|
-
| `@keystrokehq/sendgrid/suppressions` | Global suppressions, groups, bounces, blocks, invalid emails, spam reports |
|
|
85
|
-
| `@keystrokehq/sendgrid/email-validation` | Single + bulk email validation (add-on gated) |
|
|
86
|
-
| `@keystrokehq/sendgrid/stats` | Global, category, automation, mailbox-provider stats + engagement-quality scores |
|
|
87
|
-
| `@keystrokehq/sendgrid/user-account` | Profile, account info, scopes, credit balance |
|
|
88
|
-
| `@keystrokehq/sendgrid/alerts` | Alert CRUD |
|
|
89
|
-
| `@keystrokehq/sendgrid/domains` | Authenticated domain read + validate |
|
|
90
|
-
| `@keystrokehq/sendgrid/api-keys` | API key CRUD |
|
|
91
|
-
| `@keystrokehq/sendgrid/webhooks/event` | Event Webhook configuration, signed-key fetch, signature toggle, test |
|
|
92
|
-
| `@keystrokehq/sendgrid/webhooks/parse` | Inbound Parse configuration + stats |
|
|
93
|
-
| `@keystrokehq/sendgrid/triggers` | 12 direct-binding webhook helpers |
|
|
94
|
-
|
|
95
|
-
### Support imports
|
|
96
|
-
|
|
97
|
-
| Import path | Exports |
|
|
98
|
-
|---|---|
|
|
99
|
-
| `@keystrokehq/sendgrid/connection` | `sendgrid` credential set + `SendGridCredentials` type |
|
|
100
|
-
| `@keystrokehq/sendgrid/client` | `createSendGridClient`, `SendGridError`, `isSendGridError` |
|
|
101
|
-
| `@keystrokehq/sendgrid/schemas` | All Zod v4 schemas — input/output shapes for every resource |
|
|
102
|
-
| `@keystrokehq/sendgrid/events` | Event-name constants + per-event payload schemas |
|
|
103
|
-
| `@keystrokehq/sendgrid/verification` | `verifySendGridEventWebhookRequest`, `verifyInboundParseRequest`, `parseSendGridEventWebhookBody` |
|
|
104
|
-
|
|
105
|
-
### Hidden repo-internal imports (do not use in end-user code)
|
|
106
|
-
|
|
107
|
-
- `@keystrokehq/sendgrid/_official`
|
|
108
|
-
- `@keystrokehq/sendgrid/_runtime`
|
|
73
|
+
Utility helpers for HTTP, EU/global routing, and webhook verification live under `src/utils/` and are consumed internally by operations; import operations and schemas from the public subpaths above.
|
|
109
74
|
|
|
110
75
|
---
|
|
111
76
|
|
|
112
77
|
## Sending email
|
|
113
78
|
|
|
114
79
|
```ts
|
|
115
|
-
import {
|
|
80
|
+
import { sendEmailOperation } from '@keystrokehq/sendgrid/operations';
|
|
116
81
|
|
|
117
|
-
void
|
|
82
|
+
void sendEmailOperation;
|
|
118
83
|
```
|
|
119
84
|
|
|
120
85
|
The Mail Send operation accepts the full v3 body: multiple `personalizations`, dynamic template substitution, attachments, `categories`, `customArgs`, sandbox mode, and `sendAt` for scheduled sends. Pass a `batchId` to later cancel or pause messages.
|
|
@@ -122,58 +87,51 @@ The Mail Send operation accepts the full v3 body: multiple `personalizations`, d
|
|
|
122
87
|
## Marketing: contacts, lists, segments, single sends
|
|
123
88
|
|
|
124
89
|
```ts
|
|
125
|
-
import {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
void
|
|
134
|
-
void
|
|
90
|
+
import {
|
|
91
|
+
createListOperation,
|
|
92
|
+
createSegmentOperation,
|
|
93
|
+
createSingleSendOperation,
|
|
94
|
+
scheduleSingleSendOperation,
|
|
95
|
+
upsertContactsOperation,
|
|
96
|
+
} from '@keystrokehq/sendgrid/operations';
|
|
97
|
+
|
|
98
|
+
void upsertContactsOperation;
|
|
99
|
+
void createListOperation;
|
|
100
|
+
void createSegmentOperation;
|
|
101
|
+
void createSingleSendOperation;
|
|
102
|
+
void scheduleSingleSendOperation;
|
|
135
103
|
```
|
|
136
104
|
|
|
137
105
|
## Suppressions
|
|
138
106
|
|
|
139
|
-
One barrel export covers global, group, bounce, block, invalid, and spam suppressions:
|
|
140
|
-
|
|
141
107
|
```ts
|
|
142
108
|
import {
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
} from '@keystrokehq/sendgrid/
|
|
148
|
-
|
|
149
|
-
void
|
|
150
|
-
void
|
|
151
|
-
void
|
|
152
|
-
void
|
|
109
|
+
addGlobalSuppressionsOperation,
|
|
110
|
+
createSuppressionGroupOperation,
|
|
111
|
+
deleteSpamReportOperation,
|
|
112
|
+
listBouncesOperation,
|
|
113
|
+
} from '@keystrokehq/sendgrid/operations';
|
|
114
|
+
|
|
115
|
+
void addGlobalSuppressionsOperation;
|
|
116
|
+
void createSuppressionGroupOperation;
|
|
117
|
+
void listBouncesOperation;
|
|
118
|
+
void deleteSpamReportOperation;
|
|
153
119
|
```
|
|
154
120
|
|
|
155
121
|
## Webhooks
|
|
156
122
|
|
|
157
123
|
### Event Webhook (signed, Ed25519)
|
|
158
124
|
|
|
159
|
-
Configure via the REST helpers, then verify deliveries with the verification helpers:
|
|
160
|
-
|
|
161
125
|
```ts
|
|
162
126
|
import {
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
} from '@keystrokehq/sendgrid/
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
void
|
|
171
|
-
void getSignedPublicKey;
|
|
172
|
-
void toggleWebhookSignature;
|
|
173
|
-
void verifySendGridEventWebhookRequest;
|
|
174
|
-
void triggers.delivered;
|
|
175
|
-
void triggers.open;
|
|
176
|
-
void triggers.groupUnsubscribe;
|
|
127
|
+
createEventWebhookOperation,
|
|
128
|
+
getSignedPublicKeyOperation,
|
|
129
|
+
toggleWebhookSignatureOperation,
|
|
130
|
+
} from '@keystrokehq/sendgrid/operations';
|
|
131
|
+
|
|
132
|
+
void createEventWebhookOperation;
|
|
133
|
+
void getSignedPublicKeyOperation;
|
|
134
|
+
void toggleWebhookSignatureOperation;
|
|
177
135
|
```
|
|
178
136
|
|
|
179
137
|
**IMPORTANT:** SendGrid signs the concatenation of the `X-Twilio-Email-Event-Webhook-Timestamp` header value and the raw request body bytes. Your HTTP surface must preserve the raw body — do not JSON-reparse and re-serialize before verifying.
|
|
@@ -181,13 +139,9 @@ void triggers.groupUnsubscribe;
|
|
|
181
139
|
### Inbound Parse
|
|
182
140
|
|
|
183
141
|
```ts
|
|
184
|
-
import {
|
|
185
|
-
import { verifyInboundParseRequest } from '@keystrokehq/sendgrid/verification';
|
|
186
|
-
import { triggers } from '@keystrokehq/sendgrid/triggers';
|
|
142
|
+
import { createParseSettingOperation } from '@keystrokehq/sendgrid/operations';
|
|
187
143
|
|
|
188
|
-
void
|
|
189
|
-
void verifyInboundParseRequest;
|
|
190
|
-
void triggers.inboundParseReceived;
|
|
144
|
+
void createParseSettingOperation;
|
|
191
145
|
```
|
|
192
146
|
|
|
193
147
|
SendGrid does **not** sign Inbound Parse payloads. Verification uses a Keystroke-minted token embedded in the receiver URL (plus an optional IP allowlist). Rotate the token periodically.
|
|
@@ -202,21 +156,15 @@ SendGrid does **not** sign Inbound Parse payloads. Verification uses a Keystroke
|
|
|
202
156
|
- **Apple MPP + bounce classification.** `bounce` events include `bounce_classification` — use it to distinguish reputation damage from mailbox-full soft bounces.
|
|
203
157
|
- **Plan-gated endpoints.** `stats.getEngagementQualityScores` requires Pro+. `/messages` (Email Activity add-on) and reseller endpoints also 402/403 on most tenants. The client surfaces these as `SendGridError` with `kind: 'forbidden'` / `'auth'`.
|
|
204
158
|
- **Region split.** An API key scoped to `global` cannot act on `eu` data and vice versa. Set `SENDGRID_ACCOUNT_REGION` correctly at connect time.
|
|
205
|
-
- **Legacy `/contactdb/*`, Legacy Marketing Campaigns, Designs API, Reverse DNS, IP pools, Subusers, Teammates, SSO, Mail/Tracking Settings.** Not wrapped in phase 1.
|
|
206
|
-
|
|
207
|
-
```ts
|
|
208
|
-
import { createSendGridClient } from '@keystrokehq/sendgrid/client';
|
|
209
|
-
|
|
210
|
-
void createSendGridClient;
|
|
211
|
-
```
|
|
159
|
+
- **Legacy `/contactdb/*`, Legacy Marketing Campaigns, Designs API, Reverse DNS, IP pools, Subusers, Teammates, SSO, Mail/Tracking Settings.** Not wrapped in phase 1.
|
|
212
160
|
|
|
213
|
-
- **Phase 1 coverage.** This package ships
|
|
161
|
+
- **Phase 1 coverage.** This package ships 152 operations focused on Mail Send, Templates, Marketing Contacts/Lists/Segments/Single Sends/CustomFields, Suppressions, Senders, Stats, Email Validation, User Account, Alerts, API Keys, Authenticated Domains, and the Event + Inbound Parse webhook config surface.
|
|
214
162
|
|
|
215
163
|
---
|
|
216
164
|
|
|
217
165
|
## Verification helpers
|
|
218
166
|
|
|
219
|
-
|
|
167
|
+
Event Webhook and Inbound Parse verification helpers live in `src/utils/verification.ts` and are used internally by the platform webhook surfaces. They are not part of the four public package exports.
|
|
220
168
|
|
|
221
169
|
---
|
|
222
170
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import { n as sendgridCredentialSet, t as SendGridCredentials } from "./sendgrid.credential-set-ivRIiUDy.mjs";
|
|
2
|
+
import { $ as listBouncesOperation, $t as deleteSpamReportsOperation, A as removeSegmentWithoutContactsOperation, An as createListOperation, At as getContactsByIdsOperation, B as listSegmentsOperation, Bn as cancelOrPauseScheduledSendOperation, Bt as getBounceOperation, C as sendTestMarketingEmailOperation, Cn as createTemplateOperation, Ct as getListOperation, D as searchContactsOperation, Dn as createSenderOperation, Dt as getEventWebhookOperation, E as searchSingleSendsOperation, En as createSenderIdentityOperation, Et as getGlobalEmailStatsOperation, F as listSpamReportsOperation, Fn as createContactExportOperation, Ft as getContactExportStatusOperation, G as listInvalidEmailsOperation, Gt as getAccountInfoOperation, H as listParseSettingsOperation, Hn as addSuppressionsToGroupOperation, Ht as getAuthenticatedDomainOperation, I as listSingleSendsOperation, In as createBulkEmailValidationPresignedUrlOperation, It as getContactCountOperation, J as listGlobalSuppressionsOperation, Jt as duplicateSingleSendOperation, K as listGroupsForEmailOperation, Kt as filterSegmentsByParentsOperation, L as listSingleSendStatsOperation, Ln as createBatchIdOperation, Lt as getContactOperation, M as refreshSegmentOperation, Mn as createEventWebhookOperation, Mt as getContactsByEmailsOperation, N as listTemplatesOperation, Nn as createCustomFieldOperation, Nt as getContactSampleOperation, O as scheduleSingleSendOperation, On as createSegmentOperation, Ot as getEngagementQualityScoresOperation, P as listSuppressionGroupsOperation, Pn as createContactImportOperation, Pt as getContactImportStatusOperation, Q as listBulkEmailValidationJobsOperation, Qt as deleteSuppressionFromGroupOperation, R as listSendersOperation, Rn as createApiKeyOperation, Rt as getCategoryStatsOperation, S as testEventWebhookOperation, Sn as createTemplateVersionOperation, St as getListContactCountOperation, T as searchSuppressionsInGroupOperation, Tn as createSingleSendOperation, Tt as getGlobalSuppressionOperation, U as listMarketingListsOperation, Un as addGlobalSuppressionsOperation, Ut as getApiKeyOperation, V as listScheduledSendsOperation, Vn as bulkDeleteSingleSendsOperation, Vt as getBlockOperation, W as listMailboxProviderStatsOperation, Wn as activateTemplateVersionOperation, Wt as getAlertOperation, X as listEventWebhooksOperation, Xt as deleteTemplateOperation, Y as listFieldDefinitionsOperation, Yt as deleteTemplateVersionOperation, Z as listContactExportsOperation, Zt as deleteSuppressionGroupOperation, _ as updateApiKeyNameAndScopesOperation, _n as deleteBounceOperation, _t as getSenderOperation, a as updateTemplateVersionOperation, an as deleteScheduledSendOperation, at as listAlertsOperation, b as unscheduleSingleSendOperation, bn as deleteApiKeyOperation, bt as getParseStatsOperation, c as updateSingleSendOperation, cn as deleteLegacySegmentOperation, ct as getTemplateVersionOperation, d as updateSegmentOperation, dn as deleteGlobalSuppressionOperation, dt as getSpamReportOperation, en as deleteSpamReportOperation, et as listBlocksOperation, f as updateScheduledSendOperation, fn as deleteEventWebhookOperation, ft as getSingleSendStatsOperation, g as updateCustomFieldOperation, gn as deleteBouncesOperation, gt as getSenderIdentityOperation, h as updateEventWebhookOperation, hn as deleteContactIdentifierOperation, ht as getSignedPublicKeyOperation, i as upsertContactsOperation, in as deleteSegmentOperation, it as listAllSuppressionsOperation, j as removeContactsFromListOperation, jn as createLegacySegmentOperation, jt as getContactsByIdentifiersOperation, k as resendSenderIdentityVerificationOperation, kn as createParseSettingOperation, kt as getCreditBalanceOperation, l as updateSenderIdentityOperation, ln as deleteInvalidEmailsOperation, lt as getTemplateOperation, m as updateListOperation, mn as deleteContactsOperation, mt as getSingleSendOperation, n as validateBatchIdOperation, nn as deleteSenderIdentityOperation, nt as listAuthenticatedDomainsOperation, o as updateTemplateOperation, on as deleteParseSettingOperation, ot as getUserScopesOperation, p as updateParseSettingOperation, pn as deleteCustomFieldOperation, pt as getSingleSendClickStatsOperation, q as listGroupSuppressionsOperation, qt as duplicateTemplateOperation, r as validateAuthenticatedDomainOperation, rn as deleteSenderOperation, rt as listApiKeysOperation, s as updateSuppressionGroupOperation, sn as deleteListOperation, st as getUserProfileOperation, t as validateEmailOperation, tn as deleteSingleSendOperation, tt as listAutomationStatsOperation, u as updateSenderOperation, un as deleteInvalidEmailOperation, ut as getSuppressionGroupOperation, v as updateApiKeyNameOperation, vn as deleteBlocksOperation, vt as getSegmentOperation, w as sendEmailOperation, wn as createSuppressionGroupOperation, wt as getInvalidEmailOperation, x as toggleWebhookSignatureOperation, xn as deleteAlertOperation, xt as getParseSettingOperation, y as updateAlertOperation, yn as deleteBlockOperation, yt as getScheduledSendOperation, z as listSenderIdentitiesOperation, zn as createAlertOperation, zt as getBulkEmailValidationJobOperation } from "./validate-email.operation-DY4rCHFE.mjs";
|
|
3
|
+
import { SendGridPaginationMetadata, sendgridAccountInfoSchema, sendgridAggregationSchema, sendgridAlertFrequencySchema, sendgridAlertListSchema, sendgridAlertSchema, sendgridAlertTypeSchema, sendgridApiKeyListSchema, sendgridApiKeySchema, sendgridApiKeyScopeSchema, sendgridApiKeyWithKeySchema, sendgridAsmSchema, sendgridAttachmentSchema, sendgridAuthenticatedDomainListSchema, sendgridAuthenticatedDomainSchema, sendgridAutomationStatsSchema, sendgridBatchIdSchema, sendgridBlockListSchema, sendgridBlockRecordSchema, sendgridBounceListSchema, sendgridBounceRecordSchema, sendgridBulkEmailValidationJobListSchema, sendgridBulkEmailValidationJobSchema, sendgridBulkEmailValidationPresignedUrlSchema, sendgridCategoryStatsSchema, sendgridContactBatchResultSchema, sendgridContactCountSchema, sendgridContactDeleteResultSchema, sendgridContactExportListSchema, sendgridContactExportSchema, sendgridContactIdentifierSchema, sendgridContactImportSchema, sendgridContactInputSchema, sendgridContactSchema, sendgridContactSearchResultSchema, sendgridCreditBalanceSchema, sendgridCustomFieldDefinitionSchema, sendgridCustomFieldListSchema, sendgridDnsRecordSchema, sendgridDomainValidateResultSchema, sendgridEmailAddressSchema, sendgridEmailSchema, sendgridEmailValidationResponseSchema, sendgridEmailValidationResultSchema, sendgridEmailValidationVerdictSchema, sendgridEmptySuccessSchema, sendgridEngagementQualitySchema, sendgridEventWebhookEventSchema, sendgridEventWebhookListSchema, sendgridEventWebhookPayloadSchema, sendgridEventWebhookSettingsSchema, sendgridFieldDefinitionListSchema, sendgridFieldDefinitionSchema, sendgridGlobalSuppressionListSchema, sendgridGlobalSuppressionSchema, sendgridGroupSuppressionEntrySchema, sendgridGroupSuppressionListSchema, sendgridIdSchema, sendgridInboundParsePayloadSchema, sendgridInvalidEmailListSchema, sendgridInvalidEmailRecordSchema, sendgridIsoDatetimeSchema, sendgridListCollectionSchema, sendgridListContactCountSchema, sendgridListRemoveContactsResultSchema, sendgridListSchema, sendgridLooseObject, sendgridMailContentSchema, sendgridMailSendInputSchema, sendgridMailSendResultSchema, sendgridMailSettingsSchema, sendgridPaginationMetadataSchema, sendgridParseSettingListSchema, sendgridParseSettingSchema, sendgridParseStatsBucketSchema, sendgridParseStatsSchema, sendgridPersonalizationSchema, sendgridScheduledSendListSchema, sendgridScheduledSendSchema, sendgridScheduledSendStatusSchema, sendgridScopesSchema, sendgridSegmentListSchema, sendgridSegmentSchema, sendgridSegmentStatusSchema, sendgridSenderAddressSchema, sendgridSenderListSchema, sendgridSenderSchema, sendgridSignatureToggleSchema, sendgridSignedPublicKeySchema, sendgridSingleSendClicksSchema, sendgridSingleSendEmailConfigSchema, sendgridSingleSendListSchema, sendgridSingleSendScheduleInputSchema, sendgridSingleSendSchema, sendgridSingleSendSearchInputSchema, sendgridSingleSendSendToSchema, sendgridSingleSendStatsListSchema, sendgridSingleSendStatsSchema, sendgridSingleSendStatusSchema, sendgridSingleSendTestInputSchema, sendgridSpamReportListSchema, sendgridSpamReportRecordSchema, sendgridStatBucketListSchema, sendgridStatBucketSchema, sendgridStatEntrySchema, sendgridStatMetricSchema, sendgridSuppressionGroupListSchema, sendgridSuppressionGroupSchema, sendgridTemplateGenerationSchema, sendgridTemplateListSchema, sendgridTemplateSchema, sendgridTemplateVersionSchema, sendgridTrackingSettingsSchema, sendgridUnixSecondsSchema, sendgridUpsertContactsResultSchema, sendgridUserEmailSchema, sendgridUserProfileSchema, sendgridVerifiedSenderListSchema, sendgridVerifiedSenderSchema } from "./schemas/index.mjs";
|
|
4
|
+
export { SendGridCredentials, SendGridPaginationMetadata, activateTemplateVersionOperation, activateTemplateVersionOperation as activateTemplateVersionTool, addGlobalSuppressionsOperation, addGlobalSuppressionsOperation as addGlobalSuppressionsTool, addSuppressionsToGroupOperation, addSuppressionsToGroupOperation as addSuppressionsToGroupTool, bulkDeleteSingleSendsOperation, bulkDeleteSingleSendsOperation as bulkDeleteSingleSendsTool, cancelOrPauseScheduledSendOperation, cancelOrPauseScheduledSendOperation as cancelOrPauseScheduledSendTool, createAlertOperation, createAlertOperation as createAlertTool, createApiKeyOperation, createApiKeyOperation as createApiKeyTool, createBatchIdOperation, createBatchIdOperation as createBatchIdTool, createBulkEmailValidationPresignedUrlOperation, createBulkEmailValidationPresignedUrlOperation as createBulkEmailValidationPresignedUrlTool, createContactExportOperation, createContactExportOperation as createContactExportTool, createContactImportOperation, createContactImportOperation as createContactImportTool, createCustomFieldOperation, createCustomFieldOperation as createCustomFieldTool, createEventWebhookOperation, createEventWebhookOperation as createEventWebhookTool, createLegacySegmentOperation, createLegacySegmentOperation as createLegacySegmentTool, createListOperation, createListOperation as createListTool, createParseSettingOperation, createParseSettingOperation as createParseSettingTool, createSegmentOperation, createSegmentOperation as createSegmentTool, createSenderIdentityOperation, createSenderIdentityOperation as createSenderIdentityTool, createSenderOperation, createSenderOperation as createSenderTool, createSingleSendOperation, createSingleSendOperation as createSingleSendTool, createSuppressionGroupOperation, createSuppressionGroupOperation as createSuppressionGroupTool, createTemplateOperation, createTemplateOperation as createTemplateTool, createTemplateVersionOperation, createTemplateVersionOperation as createTemplateVersionTool, deleteAlertOperation, deleteAlertOperation as deleteAlertTool, deleteApiKeyOperation, deleteApiKeyOperation as deleteApiKeyTool, deleteBlockOperation, deleteBlockOperation as deleteBlockTool, deleteBlocksOperation, deleteBlocksOperation as deleteBlocksTool, deleteBounceOperation, deleteBounceOperation as deleteBounceTool, deleteBouncesOperation, deleteBouncesOperation as deleteBouncesTool, deleteContactIdentifierOperation, deleteContactIdentifierOperation as deleteContactIdentifierTool, deleteContactsOperation, deleteContactsOperation as deleteContactsTool, deleteCustomFieldOperation, deleteCustomFieldOperation as deleteCustomFieldTool, deleteEventWebhookOperation, deleteEventWebhookOperation as deleteEventWebhookTool, deleteGlobalSuppressionOperation, deleteGlobalSuppressionOperation as deleteGlobalSuppressionTool, deleteInvalidEmailOperation, deleteInvalidEmailOperation as deleteInvalidEmailTool, deleteInvalidEmailsOperation, deleteInvalidEmailsOperation as deleteInvalidEmailsTool, deleteLegacySegmentOperation, deleteLegacySegmentOperation as deleteLegacySegmentTool, deleteListOperation, deleteListOperation as deleteListTool, deleteParseSettingOperation, deleteParseSettingOperation as deleteParseSettingTool, deleteScheduledSendOperation, deleteScheduledSendOperation as deleteScheduledSendTool, deleteSegmentOperation, deleteSegmentOperation as deleteSegmentTool, deleteSenderIdentityOperation, deleteSenderIdentityOperation as deleteSenderIdentityTool, deleteSenderOperation, deleteSenderOperation as deleteSenderTool, deleteSingleSendOperation, deleteSingleSendOperation as deleteSingleSendTool, deleteSpamReportOperation, deleteSpamReportOperation as deleteSpamReportTool, deleteSpamReportsOperation, deleteSpamReportsOperation as deleteSpamReportsTool, deleteSuppressionFromGroupOperation, deleteSuppressionFromGroupOperation as deleteSuppressionFromGroupTool, deleteSuppressionGroupOperation, deleteSuppressionGroupOperation as deleteSuppressionGroupTool, deleteTemplateOperation, deleteTemplateOperation as deleteTemplateTool, deleteTemplateVersionOperation, deleteTemplateVersionOperation as deleteTemplateVersionTool, duplicateSingleSendOperation, duplicateSingleSendOperation as duplicateSingleSendTool, duplicateTemplateOperation, duplicateTemplateOperation as duplicateTemplateTool, filterSegmentsByParentsOperation, filterSegmentsByParentsOperation as filterSegmentsByParentsTool, getAccountInfoOperation, getAccountInfoOperation as getAccountInfoTool, getAlertOperation, getAlertOperation as getAlertTool, getApiKeyOperation, getApiKeyOperation as getApiKeyTool, getAuthenticatedDomainOperation, getAuthenticatedDomainOperation as getAuthenticatedDomainTool, getBlockOperation, getBlockOperation as getBlockTool, getBounceOperation, getBounceOperation as getBounceTool, getBulkEmailValidationJobOperation, getBulkEmailValidationJobOperation as getBulkEmailValidationJobTool, getCategoryStatsOperation, getCategoryStatsOperation as getCategoryStatsTool, getContactCountOperation, getContactCountOperation as getContactCountTool, getContactExportStatusOperation, getContactExportStatusOperation as getContactExportStatusTool, getContactImportStatusOperation, getContactImportStatusOperation as getContactImportStatusTool, getContactOperation, getContactOperation as getContactTool, getContactSampleOperation, getContactSampleOperation as getContactSampleTool, getContactsByEmailsOperation, getContactsByEmailsOperation as getContactsByEmailsTool, getContactsByIdentifiersOperation, getContactsByIdentifiersOperation as getContactsByIdentifiersTool, getContactsByIdsOperation, getContactsByIdsOperation as getContactsByIdsTool, getCreditBalanceOperation, getCreditBalanceOperation as getCreditBalanceTool, getEngagementQualityScoresOperation, getEngagementQualityScoresOperation as getEngagementQualityScoresTool, getEventWebhookOperation, getEventWebhookOperation as getEventWebhookTool, getGlobalEmailStatsOperation, getGlobalEmailStatsOperation as getGlobalEmailStatsTool, getGlobalSuppressionOperation, getGlobalSuppressionOperation as getGlobalSuppressionTool, getInvalidEmailOperation, getInvalidEmailOperation as getInvalidEmailTool, getListContactCountOperation, getListContactCountOperation as getListContactCountTool, getListOperation, getListOperation as getListTool, getParseSettingOperation, getParseSettingOperation as getParseSettingTool, getParseStatsOperation, getParseStatsOperation as getParseStatsTool, getScheduledSendOperation, getScheduledSendOperation as getScheduledSendTool, getSegmentOperation, getSegmentOperation as getSegmentTool, getSenderIdentityOperation, getSenderIdentityOperation as getSenderIdentityTool, getSenderOperation, getSenderOperation as getSenderTool, getSignedPublicKeyOperation, getSignedPublicKeyOperation as getSignedPublicKeyTool, getSingleSendClickStatsOperation, getSingleSendClickStatsOperation as getSingleSendClickStatsTool, getSingleSendOperation, getSingleSendOperation as getSingleSendTool, getSingleSendStatsOperation, getSingleSendStatsOperation as getSingleSendStatsTool, getSpamReportOperation, getSpamReportOperation as getSpamReportTool, getSuppressionGroupOperation, getSuppressionGroupOperation as getSuppressionGroupTool, getTemplateOperation, getTemplateOperation as getTemplateTool, getTemplateVersionOperation, getTemplateVersionOperation as getTemplateVersionTool, getUserProfileOperation, getUserProfileOperation as getUserProfileTool, getUserScopesOperation, getUserScopesOperation as getUserScopesTool, listAlertsOperation, listAlertsOperation as listAlertsTool, listAllSuppressionsOperation, listAllSuppressionsOperation as listAllSuppressionsTool, listApiKeysOperation, listApiKeysOperation as listApiKeysTool, listAuthenticatedDomainsOperation, listAuthenticatedDomainsOperation as listAuthenticatedDomainsTool, listAutomationStatsOperation, listAutomationStatsOperation as listAutomationStatsTool, listBlocksOperation, listBlocksOperation as listBlocksTool, listBouncesOperation, listBouncesOperation as listBouncesTool, listBulkEmailValidationJobsOperation, listBulkEmailValidationJobsOperation as listBulkEmailValidationJobsTool, listContactExportsOperation, listContactExportsOperation as listContactExportsTool, listEventWebhooksOperation, listEventWebhooksOperation as listEventWebhooksTool, listFieldDefinitionsOperation, listFieldDefinitionsOperation as listFieldDefinitionsTool, listGlobalSuppressionsOperation, listGlobalSuppressionsOperation as listGlobalSuppressionsTool, listGroupSuppressionsOperation, listGroupSuppressionsOperation as listGroupSuppressionsTool, listGroupsForEmailOperation, listGroupsForEmailOperation as listGroupsForEmailTool, listInvalidEmailsOperation, listInvalidEmailsOperation as listInvalidEmailsTool, listMailboxProviderStatsOperation, listMailboxProviderStatsOperation as listMailboxProviderStatsTool, listMarketingListsOperation, listMarketingListsOperation as listMarketingListsTool, listParseSettingsOperation, listParseSettingsOperation as listParseSettingsTool, listScheduledSendsOperation, listScheduledSendsOperation as listScheduledSendsTool, listSegmentsOperation, listSegmentsOperation as listSegmentsTool, listSenderIdentitiesOperation, listSenderIdentitiesOperation as listSenderIdentitiesTool, listSendersOperation, listSendersOperation as listSendersTool, listSingleSendStatsOperation, listSingleSendStatsOperation as listSingleSendStatsTool, listSingleSendsOperation, listSingleSendsOperation as listSingleSendsTool, listSpamReportsOperation, listSpamReportsOperation as listSpamReportsTool, listSuppressionGroupsOperation, listSuppressionGroupsOperation as listSuppressionGroupsTool, listTemplatesOperation, listTemplatesOperation as listTemplatesTool, refreshSegmentOperation, refreshSegmentOperation as refreshSegmentTool, removeContactsFromListOperation, removeContactsFromListOperation as removeContactsFromListTool, removeSegmentWithoutContactsOperation, removeSegmentWithoutContactsOperation as removeSegmentWithoutContactsTool, resendSenderIdentityVerificationOperation, resendSenderIdentityVerificationOperation as resendSenderIdentityVerificationTool, scheduleSingleSendOperation, scheduleSingleSendOperation as scheduleSingleSendTool, searchContactsOperation, searchContactsOperation as searchContactsTool, searchSingleSendsOperation, searchSingleSendsOperation as searchSingleSendsTool, searchSuppressionsInGroupOperation, searchSuppressionsInGroupOperation as searchSuppressionsInGroupTool, sendEmailOperation, sendEmailOperation as sendEmailTool, sendTestMarketingEmailOperation, sendTestMarketingEmailOperation as sendTestMarketingEmailTool, sendgridAccountInfoSchema, sendgridAggregationSchema, sendgridAlertFrequencySchema, sendgridAlertListSchema, sendgridAlertSchema, sendgridAlertTypeSchema, sendgridApiKeyListSchema, sendgridApiKeySchema, sendgridApiKeyScopeSchema, sendgridApiKeyWithKeySchema, sendgridAsmSchema, sendgridAttachmentSchema, sendgridAuthenticatedDomainListSchema, sendgridAuthenticatedDomainSchema, sendgridAutomationStatsSchema, sendgridBatchIdSchema, sendgridBlockListSchema, sendgridBlockRecordSchema, sendgridBounceListSchema, sendgridBounceRecordSchema, sendgridBulkEmailValidationJobListSchema, sendgridBulkEmailValidationJobSchema, sendgridBulkEmailValidationPresignedUrlSchema, sendgridCategoryStatsSchema, sendgridContactBatchResultSchema, sendgridContactCountSchema, sendgridContactDeleteResultSchema, sendgridContactExportListSchema, sendgridContactExportSchema, sendgridContactIdentifierSchema, sendgridContactImportSchema, sendgridContactInputSchema, sendgridContactSchema, sendgridContactSearchResultSchema, sendgridCredentialSet, sendgridCreditBalanceSchema, sendgridCustomFieldDefinitionSchema, sendgridCustomFieldListSchema, sendgridDnsRecordSchema, sendgridDomainValidateResultSchema, sendgridEmailAddressSchema, sendgridEmailSchema, sendgridEmailValidationResponseSchema, sendgridEmailValidationResultSchema, sendgridEmailValidationVerdictSchema, sendgridEmptySuccessSchema, sendgridEngagementQualitySchema, sendgridEventWebhookEventSchema, sendgridEventWebhookListSchema, sendgridEventWebhookPayloadSchema, sendgridEventWebhookSettingsSchema, sendgridFieldDefinitionListSchema, sendgridFieldDefinitionSchema, sendgridGlobalSuppressionListSchema, sendgridGlobalSuppressionSchema, sendgridGroupSuppressionEntrySchema, sendgridGroupSuppressionListSchema, sendgridIdSchema, sendgridInboundParsePayloadSchema, sendgridInvalidEmailListSchema, sendgridInvalidEmailRecordSchema, sendgridIsoDatetimeSchema, sendgridListCollectionSchema, sendgridListContactCountSchema, sendgridListRemoveContactsResultSchema, sendgridListSchema, sendgridLooseObject, sendgridMailContentSchema, sendgridMailSendInputSchema, sendgridMailSendResultSchema, sendgridMailSettingsSchema, sendgridPaginationMetadataSchema, sendgridParseSettingListSchema, sendgridParseSettingSchema, sendgridParseStatsBucketSchema, sendgridParseStatsSchema, sendgridPersonalizationSchema, sendgridScheduledSendListSchema, sendgridScheduledSendSchema, sendgridScheduledSendStatusSchema, sendgridScopesSchema, sendgridSegmentListSchema, sendgridSegmentSchema, sendgridSegmentStatusSchema, sendgridSenderAddressSchema, sendgridSenderListSchema, sendgridSenderSchema, sendgridSignatureToggleSchema, sendgridSignedPublicKeySchema, sendgridSingleSendClicksSchema, sendgridSingleSendEmailConfigSchema, sendgridSingleSendListSchema, sendgridSingleSendScheduleInputSchema, sendgridSingleSendSchema, sendgridSingleSendSearchInputSchema, sendgridSingleSendSendToSchema, sendgridSingleSendStatsListSchema, sendgridSingleSendStatsSchema, sendgridSingleSendStatusSchema, sendgridSingleSendTestInputSchema, sendgridSpamReportListSchema, sendgridSpamReportRecordSchema, sendgridStatBucketListSchema, sendgridStatBucketSchema, sendgridStatEntrySchema, sendgridStatMetricSchema, sendgridSuppressionGroupListSchema, sendgridSuppressionGroupSchema, sendgridTemplateGenerationSchema, sendgridTemplateListSchema, sendgridTemplateSchema, sendgridTemplateVersionSchema, sendgridTrackingSettingsSchema, sendgridUnixSecondsSchema, sendgridUpsertContactsResultSchema, sendgridUserEmailSchema, sendgridUserProfileSchema, sendgridVerifiedSenderListSchema, sendgridVerifiedSenderSchema, testEventWebhookOperation, testEventWebhookOperation as testEventWebhookTool, toggleWebhookSignatureOperation, toggleWebhookSignatureOperation as toggleWebhookSignatureTool, unscheduleSingleSendOperation, unscheduleSingleSendOperation as unscheduleSingleSendTool, updateAlertOperation, updateAlertOperation as updateAlertTool, updateApiKeyNameAndScopesOperation, updateApiKeyNameAndScopesOperation as updateApiKeyNameAndScopesTool, updateApiKeyNameOperation, updateApiKeyNameOperation as updateApiKeyNameTool, updateCustomFieldOperation, updateCustomFieldOperation as updateCustomFieldTool, updateEventWebhookOperation, updateEventWebhookOperation as updateEventWebhookTool, updateListOperation, updateListOperation as updateListTool, updateParseSettingOperation, updateParseSettingOperation as updateParseSettingTool, updateScheduledSendOperation, updateScheduledSendOperation as updateScheduledSendTool, updateSegmentOperation, updateSegmentOperation as updateSegmentTool, updateSenderIdentityOperation, updateSenderIdentityOperation as updateSenderIdentityTool, updateSenderOperation, updateSenderOperation as updateSenderTool, updateSingleSendOperation, updateSingleSendOperation as updateSingleSendTool, updateSuppressionGroupOperation, updateSuppressionGroupOperation as updateSuppressionGroupTool, updateTemplateOperation, updateTemplateOperation as updateTemplateTool, updateTemplateVersionOperation, updateTemplateVersionOperation as updateTemplateVersionTool, upsertContactsOperation, upsertContactsOperation as upsertContactsTool, validateAuthenticatedDomainOperation, validateAuthenticatedDomainOperation as validateAuthenticatedDomainTool, validateBatchIdOperation, validateBatchIdOperation as validateBatchIdTool, validateEmailOperation, validateEmailOperation as validateEmailTool };
|
package/dist/index.mjs
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { t as sendgridCredentialSet } from "./sendgrid.credential-set-CzYmlJ2Y.mjs";
|
|
2
|
+
import { $ as sendgridSingleSendTestInputSchema, $t as sendgridAlertFrequencySchema, A as sendgridInvalidEmailRecordSchema, At as sendgridAuthenticatedDomainListSchema, B as sendgridStatBucketSchema, Bt as sendgridContactExportSchema, C as sendgridBounceListSchema, Ct as sendgridListSchema, D as sendgridGroupSuppressionEntrySchema, Dt as sendgridEmailValidationResponseSchema, E as sendgridGlobalSuppressionSchema, Et as sendgridBulkEmailValidationPresignedUrlSchema, F as sendgridAggregationSchema, Ft as sendgridCustomFieldListSchema, G as sendgridSingleSendListSchema, Gt as sendgridContactSearchResultSchema, H as sendgridStatMetricSchema, Ht as sendgridContactImportSchema, I as sendgridAutomationStatsSchema, It as sendgridContactBatchResultSchema, J as sendgridSingleSendSearchInputSchema, Jt as sendgridUpsertContactsResultSchema, K as sendgridSingleSendScheduleInputSchema, Kt as sendgridFieldDefinitionListSchema, L as sendgridCategoryStatsSchema, Lt as sendgridContactCountSchema, M as sendgridSpamReportRecordSchema, Mt as sendgridDnsRecordSchema, N as sendgridSuppressionGroupListSchema, Nt as sendgridDomainValidateResultSchema, O as sendgridGroupSuppressionListSchema, Ot as sendgridEmailValidationResultSchema, P as sendgridSuppressionGroupSchema, Pt as sendgridCustomFieldDefinitionSchema, Q as sendgridSingleSendStatusSchema, Qt as sendgridApiKeyWithKeySchema, R as sendgridEngagementQualitySchema, Rt as sendgridContactDeleteResultSchema, S as sendgridBlockRecordSchema, St as sendgridListRemoveContactsResultSchema, T as sendgridGlobalSuppressionListSchema, Tt as sendgridBulkEmailValidationJobSchema, U as sendgridSingleSendClicksSchema, Ut as sendgridContactInputSchema, V as sendgridStatEntrySchema, Vt as sendgridContactIdentifierSchema, W as sendgridSingleSendEmailConfigSchema, Wt as sendgridContactSchema, X as sendgridSingleSendStatsListSchema, Xt as sendgridApiKeySchema, Y as sendgridSingleSendSendToSchema, Yt as sendgridApiKeyListSchema, Z as sendgridSingleSendStatsSchema, Zt as sendgridApiKeyScopeSchema, _ as sendgridTemplateGenerationSchema, _t as sendgridScheduledSendSchema, a as sendgridInboundParsePayloadSchema, an as sendgridEmptySuccessSchema, at as sendgridSegmentListSchema, b as sendgridTemplateVersionSchema, bt as sendgridListCollectionSchema, c as sendgridParseStatsBucketSchema, cn as sendgridLooseObject, ct as sendgridAttachmentSchema, d as sendgridSignedPublicKeySchema, dt as sendgridMailContentSchema, en as sendgridAlertListSchema, et as sendgridSenderAddressSchema, f as sendgridAccountInfoSchema, ft as sendgridMailSendInputSchema, g as sendgridUserProfileSchema, gt as sendgridScheduledSendListSchema, h as sendgridUserEmailSchema, ht as sendgridPersonalizationSchema, i as sendgridEventWebhookSettingsSchema, in as sendgridEmailSchema, it as sendgridVerifiedSenderSchema, j as sendgridSpamReportListSchema, jt as sendgridAuthenticatedDomainSchema, k as sendgridInvalidEmailListSchema, kt as sendgridEmailValidationVerdictSchema, l as sendgridParseStatsSchema, ln as sendgridPaginationMetadataSchema, lt as sendgridBatchIdSchema, m as sendgridScopesSchema, mt as sendgridMailSettingsSchema, n as sendgridEventWebhookListSchema, nn as sendgridAlertTypeSchema, nt as sendgridSenderSchema, o as sendgridParseSettingListSchema, on as sendgridIdSchema, ot as sendgridSegmentSchema, p as sendgridCreditBalanceSchema, pt as sendgridMailSendResultSchema, q as sendgridSingleSendSchema, qt as sendgridFieldDefinitionSchema, r as sendgridEventWebhookPayloadSchema, rn as sendgridAsmSchema, rt as sendgridVerifiedSenderListSchema, s as sendgridParseSettingSchema, sn as sendgridIsoDatetimeSchema, st as sendgridSegmentStatusSchema, t as sendgridEventWebhookEventSchema, tn as sendgridAlertSchema, tt as sendgridSenderListSchema, u as sendgridSignatureToggleSchema, un as sendgridUnixSecondsSchema, ut as sendgridEmailAddressSchema, v as sendgridTemplateListSchema, vt as sendgridScheduledSendStatusSchema, w as sendgridBounceRecordSchema, wt as sendgridBulkEmailValidationJobListSchema, x as sendgridBlockListSchema, xt as sendgridListContactCountSchema, y as sendgridTemplateSchema, yt as sendgridTrackingSettingsSchema, z as sendgridStatBucketListSchema, zt as sendgridContactExportListSchema } from "./webhooks-dVOd93Hd.mjs";
|
|
3
|
+
import { $ as listBouncesOperation, $t as deleteSpamReportsOperation, A as removeSegmentWithoutContactsOperation, An as createListOperation, At as getContactsByIdsOperation, B as listSegmentsOperation, Bn as cancelOrPauseScheduledSendOperation, Bt as getBounceOperation, C as sendTestMarketingEmailOperation, Cn as createTemplateOperation, Ct as getListOperation, D as searchContactsOperation, Dn as createSenderOperation, Dt as getEventWebhookOperation, E as searchSingleSendsOperation, En as createSenderIdentityOperation, Et as getGlobalEmailStatsOperation, F as listSpamReportsOperation, Fn as createContactExportOperation, Ft as getContactExportStatusOperation, G as listInvalidEmailsOperation, Gt as getAccountInfoOperation, H as listParseSettingsOperation, Hn as addSuppressionsToGroupOperation, Ht as getAuthenticatedDomainOperation, I as listSingleSendsOperation, In as createBulkEmailValidationPresignedUrlOperation, It as getContactCountOperation, J as listGlobalSuppressionsOperation, Jt as duplicateSingleSendOperation, K as listGroupsForEmailOperation, Kt as filterSegmentsByParentsOperation, L as listSingleSendStatsOperation, Ln as createBatchIdOperation, Lt as getContactOperation, M as refreshSegmentOperation, Mn as createEventWebhookOperation, Mt as getContactsByEmailsOperation, N as listTemplatesOperation, Nn as createCustomFieldOperation, Nt as getContactSampleOperation, O as scheduleSingleSendOperation, On as createSegmentOperation, Ot as getEngagementQualityScoresOperation, P as listSuppressionGroupsOperation, Pn as createContactImportOperation, Pt as getContactImportStatusOperation, Q as listBulkEmailValidationJobsOperation, Qt as deleteSuppressionFromGroupOperation, R as listSendersOperation, Rn as createApiKeyOperation, Rt as getCategoryStatsOperation, S as testEventWebhookOperation, Sn as createTemplateVersionOperation, St as getListContactCountOperation, T as searchSuppressionsInGroupOperation, Tn as createSingleSendOperation, Tt as getGlobalSuppressionOperation, U as listMarketingListsOperation, Un as addGlobalSuppressionsOperation, Ut as getApiKeyOperation, V as listScheduledSendsOperation, Vn as bulkDeleteSingleSendsOperation, Vt as getBlockOperation, W as listMailboxProviderStatsOperation, Wn as activateTemplateVersionOperation, Wt as getAlertOperation, X as listEventWebhooksOperation, Xt as deleteTemplateOperation, Y as listFieldDefinitionsOperation, Yt as deleteTemplateVersionOperation, Z as listContactExportsOperation, Zt as deleteSuppressionGroupOperation, _ as updateApiKeyNameAndScopesOperation, _n as deleteBounceOperation, _t as getSenderOperation, a as updateTemplateVersionOperation, an as deleteScheduledSendOperation, at as listAlertsOperation, b as unscheduleSingleSendOperation, bn as deleteApiKeyOperation, bt as getParseStatsOperation, c as updateSingleSendOperation, cn as deleteLegacySegmentOperation, ct as getTemplateVersionOperation, d as updateSegmentOperation, dn as deleteGlobalSuppressionOperation, dt as getSpamReportOperation, en as deleteSpamReportOperation, et as listBlocksOperation, f as updateScheduledSendOperation, fn as deleteEventWebhookOperation, ft as getSingleSendStatsOperation, g as updateCustomFieldOperation, gn as deleteBouncesOperation, gt as getSenderIdentityOperation, h as updateEventWebhookOperation, hn as deleteContactIdentifierOperation, ht as getSignedPublicKeyOperation, i as upsertContactsOperation, in as deleteSegmentOperation, it as listAllSuppressionsOperation, j as removeContactsFromListOperation, jn as createLegacySegmentOperation, jt as getContactsByIdentifiersOperation, k as resendSenderIdentityVerificationOperation, kn as createParseSettingOperation, kt as getCreditBalanceOperation, l as updateSenderIdentityOperation, ln as deleteInvalidEmailsOperation, lt as getTemplateOperation, m as updateListOperation, mn as deleteContactsOperation, mt as getSingleSendOperation, n as validateBatchIdOperation, nn as deleteSenderIdentityOperation, nt as listAuthenticatedDomainsOperation, o as updateTemplateOperation, on as deleteParseSettingOperation, ot as getUserScopesOperation, p as updateParseSettingOperation, pn as deleteCustomFieldOperation, pt as getSingleSendClickStatsOperation, q as listGroupSuppressionsOperation, qt as duplicateTemplateOperation, r as validateAuthenticatedDomainOperation, rn as deleteSenderOperation, rt as listApiKeysOperation, s as updateSuppressionGroupOperation, sn as deleteListOperation, st as getUserProfileOperation, t as validateEmailOperation, tn as deleteSingleSendOperation, tt as listAutomationStatsOperation, u as updateSenderOperation, un as deleteInvalidEmailOperation, ut as getSuppressionGroupOperation, v as updateApiKeyNameOperation, vn as deleteBlocksOperation, vt as getSegmentOperation, w as sendEmailOperation, wn as createSuppressionGroupOperation, wt as getInvalidEmailOperation, x as toggleWebhookSignatureOperation, xn as deleteAlertOperation, xt as getParseSettingOperation, y as updateAlertOperation, yn as deleteBlockOperation, yt as getScheduledSendOperation, z as listSenderIdentitiesOperation, zn as createAlertOperation, zt as getBulkEmailValidationJobOperation } from "./validate-email.operation-CCCDxLjH.mjs";
|
|
4
|
+
|
|
5
|
+
export { activateTemplateVersionOperation, activateTemplateVersionOperation as activateTemplateVersionTool, addGlobalSuppressionsOperation, addGlobalSuppressionsOperation as addGlobalSuppressionsTool, addSuppressionsToGroupOperation, addSuppressionsToGroupOperation as addSuppressionsToGroupTool, bulkDeleteSingleSendsOperation, bulkDeleteSingleSendsOperation as bulkDeleteSingleSendsTool, cancelOrPauseScheduledSendOperation, cancelOrPauseScheduledSendOperation as cancelOrPauseScheduledSendTool, createAlertOperation, createAlertOperation as createAlertTool, createApiKeyOperation, createApiKeyOperation as createApiKeyTool, createBatchIdOperation, createBatchIdOperation as createBatchIdTool, createBulkEmailValidationPresignedUrlOperation, createBulkEmailValidationPresignedUrlOperation as createBulkEmailValidationPresignedUrlTool, createContactExportOperation, createContactExportOperation as createContactExportTool, createContactImportOperation, createContactImportOperation as createContactImportTool, createCustomFieldOperation, createCustomFieldOperation as createCustomFieldTool, createEventWebhookOperation, createEventWebhookOperation as createEventWebhookTool, createLegacySegmentOperation, createLegacySegmentOperation as createLegacySegmentTool, createListOperation, createListOperation as createListTool, createParseSettingOperation, createParseSettingOperation as createParseSettingTool, createSegmentOperation, createSegmentOperation as createSegmentTool, createSenderIdentityOperation, createSenderIdentityOperation as createSenderIdentityTool, createSenderOperation, createSenderOperation as createSenderTool, createSingleSendOperation, createSingleSendOperation as createSingleSendTool, createSuppressionGroupOperation, createSuppressionGroupOperation as createSuppressionGroupTool, createTemplateOperation, createTemplateOperation as createTemplateTool, createTemplateVersionOperation, createTemplateVersionOperation as createTemplateVersionTool, deleteAlertOperation, deleteAlertOperation as deleteAlertTool, deleteApiKeyOperation, deleteApiKeyOperation as deleteApiKeyTool, deleteBlockOperation, deleteBlockOperation as deleteBlockTool, deleteBlocksOperation, deleteBlocksOperation as deleteBlocksTool, deleteBounceOperation, deleteBounceOperation as deleteBounceTool, deleteBouncesOperation, deleteBouncesOperation as deleteBouncesTool, deleteContactIdentifierOperation, deleteContactIdentifierOperation as deleteContactIdentifierTool, deleteContactsOperation, deleteContactsOperation as deleteContactsTool, deleteCustomFieldOperation, deleteCustomFieldOperation as deleteCustomFieldTool, deleteEventWebhookOperation, deleteEventWebhookOperation as deleteEventWebhookTool, deleteGlobalSuppressionOperation, deleteGlobalSuppressionOperation as deleteGlobalSuppressionTool, deleteInvalidEmailOperation, deleteInvalidEmailOperation as deleteInvalidEmailTool, deleteInvalidEmailsOperation, deleteInvalidEmailsOperation as deleteInvalidEmailsTool, deleteLegacySegmentOperation, deleteLegacySegmentOperation as deleteLegacySegmentTool, deleteListOperation, deleteListOperation as deleteListTool, deleteParseSettingOperation, deleteParseSettingOperation as deleteParseSettingTool, deleteScheduledSendOperation, deleteScheduledSendOperation as deleteScheduledSendTool, deleteSegmentOperation, deleteSegmentOperation as deleteSegmentTool, deleteSenderIdentityOperation, deleteSenderIdentityOperation as deleteSenderIdentityTool, deleteSenderOperation, deleteSenderOperation as deleteSenderTool, deleteSingleSendOperation, deleteSingleSendOperation as deleteSingleSendTool, deleteSpamReportOperation, deleteSpamReportOperation as deleteSpamReportTool, deleteSpamReportsOperation, deleteSpamReportsOperation as deleteSpamReportsTool, deleteSuppressionFromGroupOperation, deleteSuppressionFromGroupOperation as deleteSuppressionFromGroupTool, deleteSuppressionGroupOperation, deleteSuppressionGroupOperation as deleteSuppressionGroupTool, deleteTemplateOperation, deleteTemplateOperation as deleteTemplateTool, deleteTemplateVersionOperation, deleteTemplateVersionOperation as deleteTemplateVersionTool, duplicateSingleSendOperation, duplicateSingleSendOperation as duplicateSingleSendTool, duplicateTemplateOperation, duplicateTemplateOperation as duplicateTemplateTool, filterSegmentsByParentsOperation, filterSegmentsByParentsOperation as filterSegmentsByParentsTool, getAccountInfoOperation, getAccountInfoOperation as getAccountInfoTool, getAlertOperation, getAlertOperation as getAlertTool, getApiKeyOperation, getApiKeyOperation as getApiKeyTool, getAuthenticatedDomainOperation, getAuthenticatedDomainOperation as getAuthenticatedDomainTool, getBlockOperation, getBlockOperation as getBlockTool, getBounceOperation, getBounceOperation as getBounceTool, getBulkEmailValidationJobOperation, getBulkEmailValidationJobOperation as getBulkEmailValidationJobTool, getCategoryStatsOperation, getCategoryStatsOperation as getCategoryStatsTool, getContactCountOperation, getContactCountOperation as getContactCountTool, getContactExportStatusOperation, getContactExportStatusOperation as getContactExportStatusTool, getContactImportStatusOperation, getContactImportStatusOperation as getContactImportStatusTool, getContactOperation, getContactOperation as getContactTool, getContactSampleOperation, getContactSampleOperation as getContactSampleTool, getContactsByEmailsOperation, getContactsByEmailsOperation as getContactsByEmailsTool, getContactsByIdentifiersOperation, getContactsByIdentifiersOperation as getContactsByIdentifiersTool, getContactsByIdsOperation, getContactsByIdsOperation as getContactsByIdsTool, getCreditBalanceOperation, getCreditBalanceOperation as getCreditBalanceTool, getEngagementQualityScoresOperation, getEngagementQualityScoresOperation as getEngagementQualityScoresTool, getEventWebhookOperation, getEventWebhookOperation as getEventWebhookTool, getGlobalEmailStatsOperation, getGlobalEmailStatsOperation as getGlobalEmailStatsTool, getGlobalSuppressionOperation, getGlobalSuppressionOperation as getGlobalSuppressionTool, getInvalidEmailOperation, getInvalidEmailOperation as getInvalidEmailTool, getListContactCountOperation, getListContactCountOperation as getListContactCountTool, getListOperation, getListOperation as getListTool, getParseSettingOperation, getParseSettingOperation as getParseSettingTool, getParseStatsOperation, getParseStatsOperation as getParseStatsTool, getScheduledSendOperation, getScheduledSendOperation as getScheduledSendTool, getSegmentOperation, getSegmentOperation as getSegmentTool, getSenderIdentityOperation, getSenderIdentityOperation as getSenderIdentityTool, getSenderOperation, getSenderOperation as getSenderTool, getSignedPublicKeyOperation, getSignedPublicKeyOperation as getSignedPublicKeyTool, getSingleSendClickStatsOperation, getSingleSendClickStatsOperation as getSingleSendClickStatsTool, getSingleSendOperation, getSingleSendOperation as getSingleSendTool, getSingleSendStatsOperation, getSingleSendStatsOperation as getSingleSendStatsTool, getSpamReportOperation, getSpamReportOperation as getSpamReportTool, getSuppressionGroupOperation, getSuppressionGroupOperation as getSuppressionGroupTool, getTemplateOperation, getTemplateOperation as getTemplateTool, getTemplateVersionOperation, getTemplateVersionOperation as getTemplateVersionTool, getUserProfileOperation, getUserProfileOperation as getUserProfileTool, getUserScopesOperation, getUserScopesOperation as getUserScopesTool, listAlertsOperation, listAlertsOperation as listAlertsTool, listAllSuppressionsOperation, listAllSuppressionsOperation as listAllSuppressionsTool, listApiKeysOperation, listApiKeysOperation as listApiKeysTool, listAuthenticatedDomainsOperation, listAuthenticatedDomainsOperation as listAuthenticatedDomainsTool, listAutomationStatsOperation, listAutomationStatsOperation as listAutomationStatsTool, listBlocksOperation, listBlocksOperation as listBlocksTool, listBouncesOperation, listBouncesOperation as listBouncesTool, listBulkEmailValidationJobsOperation, listBulkEmailValidationJobsOperation as listBulkEmailValidationJobsTool, listContactExportsOperation, listContactExportsOperation as listContactExportsTool, listEventWebhooksOperation, listEventWebhooksOperation as listEventWebhooksTool, listFieldDefinitionsOperation, listFieldDefinitionsOperation as listFieldDefinitionsTool, listGlobalSuppressionsOperation, listGlobalSuppressionsOperation as listGlobalSuppressionsTool, listGroupSuppressionsOperation, listGroupSuppressionsOperation as listGroupSuppressionsTool, listGroupsForEmailOperation, listGroupsForEmailOperation as listGroupsForEmailTool, listInvalidEmailsOperation, listInvalidEmailsOperation as listInvalidEmailsTool, listMailboxProviderStatsOperation, listMailboxProviderStatsOperation as listMailboxProviderStatsTool, listMarketingListsOperation, listMarketingListsOperation as listMarketingListsTool, listParseSettingsOperation, listParseSettingsOperation as listParseSettingsTool, listScheduledSendsOperation, listScheduledSendsOperation as listScheduledSendsTool, listSegmentsOperation, listSegmentsOperation as listSegmentsTool, listSenderIdentitiesOperation, listSenderIdentitiesOperation as listSenderIdentitiesTool, listSendersOperation, listSendersOperation as listSendersTool, listSingleSendStatsOperation, listSingleSendStatsOperation as listSingleSendStatsTool, listSingleSendsOperation, listSingleSendsOperation as listSingleSendsTool, listSpamReportsOperation, listSpamReportsOperation as listSpamReportsTool, listSuppressionGroupsOperation, listSuppressionGroupsOperation as listSuppressionGroupsTool, listTemplatesOperation, listTemplatesOperation as listTemplatesTool, refreshSegmentOperation, refreshSegmentOperation as refreshSegmentTool, removeContactsFromListOperation, removeContactsFromListOperation as removeContactsFromListTool, removeSegmentWithoutContactsOperation, removeSegmentWithoutContactsOperation as removeSegmentWithoutContactsTool, resendSenderIdentityVerificationOperation, resendSenderIdentityVerificationOperation as resendSenderIdentityVerificationTool, scheduleSingleSendOperation, scheduleSingleSendOperation as scheduleSingleSendTool, searchContactsOperation, searchContactsOperation as searchContactsTool, searchSingleSendsOperation, searchSingleSendsOperation as searchSingleSendsTool, searchSuppressionsInGroupOperation, searchSuppressionsInGroupOperation as searchSuppressionsInGroupTool, sendEmailOperation, sendEmailOperation as sendEmailTool, sendTestMarketingEmailOperation, sendTestMarketingEmailOperation as sendTestMarketingEmailTool, sendgridAccountInfoSchema, sendgridAggregationSchema, sendgridAlertFrequencySchema, sendgridAlertListSchema, sendgridAlertSchema, sendgridAlertTypeSchema, sendgridApiKeyListSchema, sendgridApiKeySchema, sendgridApiKeyScopeSchema, sendgridApiKeyWithKeySchema, sendgridAsmSchema, sendgridAttachmentSchema, sendgridAuthenticatedDomainListSchema, sendgridAuthenticatedDomainSchema, sendgridAutomationStatsSchema, sendgridBatchIdSchema, sendgridBlockListSchema, sendgridBlockRecordSchema, sendgridBounceListSchema, sendgridBounceRecordSchema, sendgridBulkEmailValidationJobListSchema, sendgridBulkEmailValidationJobSchema, sendgridBulkEmailValidationPresignedUrlSchema, sendgridCategoryStatsSchema, sendgridContactBatchResultSchema, sendgridContactCountSchema, sendgridContactDeleteResultSchema, sendgridContactExportListSchema, sendgridContactExportSchema, sendgridContactIdentifierSchema, sendgridContactImportSchema, sendgridContactInputSchema, sendgridContactSchema, sendgridContactSearchResultSchema, sendgridCredentialSet, sendgridCreditBalanceSchema, sendgridCustomFieldDefinitionSchema, sendgridCustomFieldListSchema, sendgridDnsRecordSchema, sendgridDomainValidateResultSchema, sendgridEmailAddressSchema, sendgridEmailSchema, sendgridEmailValidationResponseSchema, sendgridEmailValidationResultSchema, sendgridEmailValidationVerdictSchema, sendgridEmptySuccessSchema, sendgridEngagementQualitySchema, sendgridEventWebhookEventSchema, sendgridEventWebhookListSchema, sendgridEventWebhookPayloadSchema, sendgridEventWebhookSettingsSchema, sendgridFieldDefinitionListSchema, sendgridFieldDefinitionSchema, sendgridGlobalSuppressionListSchema, sendgridGlobalSuppressionSchema, sendgridGroupSuppressionEntrySchema, sendgridGroupSuppressionListSchema, sendgridIdSchema, sendgridInboundParsePayloadSchema, sendgridInvalidEmailListSchema, sendgridInvalidEmailRecordSchema, sendgridIsoDatetimeSchema, sendgridListCollectionSchema, sendgridListContactCountSchema, sendgridListRemoveContactsResultSchema, sendgridListSchema, sendgridLooseObject, sendgridMailContentSchema, sendgridMailSendInputSchema, sendgridMailSendResultSchema, sendgridMailSettingsSchema, sendgridPaginationMetadataSchema, sendgridParseSettingListSchema, sendgridParseSettingSchema, sendgridParseStatsBucketSchema, sendgridParseStatsSchema, sendgridPersonalizationSchema, sendgridScheduledSendListSchema, sendgridScheduledSendSchema, sendgridScheduledSendStatusSchema, sendgridScopesSchema, sendgridSegmentListSchema, sendgridSegmentSchema, sendgridSegmentStatusSchema, sendgridSenderAddressSchema, sendgridSenderListSchema, sendgridSenderSchema, sendgridSignatureToggleSchema, sendgridSignedPublicKeySchema, sendgridSingleSendClicksSchema, sendgridSingleSendEmailConfigSchema, sendgridSingleSendListSchema, sendgridSingleSendScheduleInputSchema, sendgridSingleSendSchema, sendgridSingleSendSearchInputSchema, sendgridSingleSendSendToSchema, sendgridSingleSendStatsListSchema, sendgridSingleSendStatsSchema, sendgridSingleSendStatusSchema, sendgridSingleSendTestInputSchema, sendgridSpamReportListSchema, sendgridSpamReportRecordSchema, sendgridStatBucketListSchema, sendgridStatBucketSchema, sendgridStatEntrySchema, sendgridStatMetricSchema, sendgridSuppressionGroupListSchema, sendgridSuppressionGroupSchema, sendgridTemplateGenerationSchema, sendgridTemplateListSchema, sendgridTemplateSchema, sendgridTemplateVersionSchema, sendgridTrackingSettingsSchema, sendgridUnixSecondsSchema, sendgridUpsertContactsResultSchema, sendgridUserEmailSchema, sendgridUserProfileSchema, sendgridVerifiedSenderListSchema, sendgridVerifiedSenderSchema, testEventWebhookOperation, testEventWebhookOperation as testEventWebhookTool, toggleWebhookSignatureOperation, toggleWebhookSignatureOperation as toggleWebhookSignatureTool, unscheduleSingleSendOperation, unscheduleSingleSendOperation as unscheduleSingleSendTool, updateAlertOperation, updateAlertOperation as updateAlertTool, updateApiKeyNameAndScopesOperation, updateApiKeyNameAndScopesOperation as updateApiKeyNameAndScopesTool, updateApiKeyNameOperation, updateApiKeyNameOperation as updateApiKeyNameTool, updateCustomFieldOperation, updateCustomFieldOperation as updateCustomFieldTool, updateEventWebhookOperation, updateEventWebhookOperation as updateEventWebhookTool, updateListOperation, updateListOperation as updateListTool, updateParseSettingOperation, updateParseSettingOperation as updateParseSettingTool, updateScheduledSendOperation, updateScheduledSendOperation as updateScheduledSendTool, updateSegmentOperation, updateSegmentOperation as updateSegmentTool, updateSenderIdentityOperation, updateSenderIdentityOperation as updateSenderIdentityTool, updateSenderOperation, updateSenderOperation as updateSenderTool, updateSingleSendOperation, updateSingleSendOperation as updateSingleSendTool, updateSuppressionGroupOperation, updateSuppressionGroupOperation as updateSuppressionGroupTool, updateTemplateOperation, updateTemplateOperation as updateTemplateTool, updateTemplateVersionOperation, updateTemplateVersionOperation as updateTemplateVersionTool, upsertContactsOperation, upsertContactsOperation as upsertContactsTool, validateAuthenticatedDomainOperation, validateAuthenticatedDomainOperation as validateAuthenticatedDomainTool, validateBatchIdOperation, validateBatchIdOperation as validateBatchIdTool, validateEmailOperation, validateEmailOperation as validateEmailTool };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { $ as listBouncesOperation, $t as deleteSpamReportsOperation, A as removeSegmentWithoutContactsOperation, An as createListOperation, At as getContactsByIdsOperation, B as listSegmentsOperation, Bn as cancelOrPauseScheduledSendOperation, Bt as getBounceOperation, C as sendTestMarketingEmailOperation, Cn as createTemplateOperation, Ct as getListOperation, D as searchContactsOperation, Dn as createSenderOperation, Dt as getEventWebhookOperation, E as searchSingleSendsOperation, En as createSenderIdentityOperation, Et as getGlobalEmailStatsOperation, F as listSpamReportsOperation, Fn as createContactExportOperation, Ft as getContactExportStatusOperation, G as listInvalidEmailsOperation, Gt as getAccountInfoOperation, H as listParseSettingsOperation, Hn as addSuppressionsToGroupOperation, Ht as getAuthenticatedDomainOperation, I as listSingleSendsOperation, In as createBulkEmailValidationPresignedUrlOperation, It as getContactCountOperation, J as listGlobalSuppressionsOperation, Jt as duplicateSingleSendOperation, K as listGroupsForEmailOperation, Kt as filterSegmentsByParentsOperation, L as listSingleSendStatsOperation, Ln as createBatchIdOperation, Lt as getContactOperation, M as refreshSegmentOperation, Mn as createEventWebhookOperation, Mt as getContactsByEmailsOperation, N as listTemplatesOperation, Nn as createCustomFieldOperation, Nt as getContactSampleOperation, O as scheduleSingleSendOperation, On as createSegmentOperation, Ot as getEngagementQualityScoresOperation, P as listSuppressionGroupsOperation, Pn as createContactImportOperation, Pt as getContactImportStatusOperation, Q as listBulkEmailValidationJobsOperation, Qt as deleteSuppressionFromGroupOperation, R as listSendersOperation, Rn as createApiKeyOperation, Rt as getCategoryStatsOperation, S as testEventWebhookOperation, Sn as createTemplateVersionOperation, St as getListContactCountOperation, T as searchSuppressionsInGroupOperation, Tn as createSingleSendOperation, Tt as getGlobalSuppressionOperation, U as listMarketingListsOperation, Un as addGlobalSuppressionsOperation, Ut as getApiKeyOperation, V as listScheduledSendsOperation, Vn as bulkDeleteSingleSendsOperation, Vt as getBlockOperation, W as listMailboxProviderStatsOperation, Wn as activateTemplateVersionOperation, Wt as getAlertOperation, X as listEventWebhooksOperation, Xt as deleteTemplateOperation, Y as listFieldDefinitionsOperation, Yt as deleteTemplateVersionOperation, Z as listContactExportsOperation, Zt as deleteSuppressionGroupOperation, _ as updateApiKeyNameAndScopesOperation, _n as deleteBounceOperation, _t as getSenderOperation, a as updateTemplateVersionOperation, an as deleteScheduledSendOperation, at as listAlertsOperation, b as unscheduleSingleSendOperation, bn as deleteApiKeyOperation, bt as getParseStatsOperation, c as updateSingleSendOperation, cn as deleteLegacySegmentOperation, ct as getTemplateVersionOperation, d as updateSegmentOperation, dn as deleteGlobalSuppressionOperation, dt as getSpamReportOperation, en as deleteSpamReportOperation, et as listBlocksOperation, f as updateScheduledSendOperation, fn as deleteEventWebhookOperation, ft as getSingleSendStatsOperation, g as updateCustomFieldOperation, gn as deleteBouncesOperation, gt as getSenderIdentityOperation, h as updateEventWebhookOperation, hn as deleteContactIdentifierOperation, ht as getSignedPublicKeyOperation, i as upsertContactsOperation, in as deleteSegmentOperation, it as listAllSuppressionsOperation, j as removeContactsFromListOperation, jn as createLegacySegmentOperation, jt as getContactsByIdentifiersOperation, k as resendSenderIdentityVerificationOperation, kn as createParseSettingOperation, kt as getCreditBalanceOperation, l as updateSenderIdentityOperation, ln as deleteInvalidEmailsOperation, lt as getTemplateOperation, m as updateListOperation, mn as deleteContactsOperation, mt as getSingleSendOperation, n as validateBatchIdOperation, nn as deleteSenderIdentityOperation, nt as listAuthenticatedDomainsOperation, o as updateTemplateOperation, on as deleteParseSettingOperation, ot as getUserScopesOperation, p as updateParseSettingOperation, pn as deleteCustomFieldOperation, pt as getSingleSendClickStatsOperation, q as listGroupSuppressionsOperation, qt as duplicateTemplateOperation, r as validateAuthenticatedDomainOperation, rn as deleteSenderOperation, rt as listApiKeysOperation, s as updateSuppressionGroupOperation, sn as deleteListOperation, st as getUserProfileOperation, t as validateEmailOperation, tn as deleteSingleSendOperation, tt as listAutomationStatsOperation, u as updateSenderOperation, un as deleteInvalidEmailOperation, ut as getSuppressionGroupOperation, v as updateApiKeyNameOperation, vn as deleteBlocksOperation, vt as getSegmentOperation, w as sendEmailOperation, wn as createSuppressionGroupOperation, wt as getInvalidEmailOperation, x as toggleWebhookSignatureOperation, xn as deleteAlertOperation, xt as getParseSettingOperation, y as updateAlertOperation, yn as deleteBlockOperation, yt as getScheduledSendOperation, z as listSenderIdentitiesOperation, zn as createAlertOperation, zt as getBulkEmailValidationJobOperation } from "../validate-email.operation-DY4rCHFE.mjs";
|
|
2
|
+
export { activateTemplateVersionOperation, activateTemplateVersionOperation as activateTemplateVersionTool, addGlobalSuppressionsOperation, addGlobalSuppressionsOperation as addGlobalSuppressionsTool, addSuppressionsToGroupOperation, addSuppressionsToGroupOperation as addSuppressionsToGroupTool, bulkDeleteSingleSendsOperation, bulkDeleteSingleSendsOperation as bulkDeleteSingleSendsTool, cancelOrPauseScheduledSendOperation, cancelOrPauseScheduledSendOperation as cancelOrPauseScheduledSendTool, createAlertOperation, createAlertOperation as createAlertTool, createApiKeyOperation, createApiKeyOperation as createApiKeyTool, createBatchIdOperation, createBatchIdOperation as createBatchIdTool, createBulkEmailValidationPresignedUrlOperation, createBulkEmailValidationPresignedUrlOperation as createBulkEmailValidationPresignedUrlTool, createContactExportOperation, createContactExportOperation as createContactExportTool, createContactImportOperation, createContactImportOperation as createContactImportTool, createCustomFieldOperation, createCustomFieldOperation as createCustomFieldTool, createEventWebhookOperation, createEventWebhookOperation as createEventWebhookTool, createLegacySegmentOperation, createLegacySegmentOperation as createLegacySegmentTool, createListOperation, createListOperation as createListTool, createParseSettingOperation, createParseSettingOperation as createParseSettingTool, createSegmentOperation, createSegmentOperation as createSegmentTool, createSenderIdentityOperation, createSenderIdentityOperation as createSenderIdentityTool, createSenderOperation, createSenderOperation as createSenderTool, createSingleSendOperation, createSingleSendOperation as createSingleSendTool, createSuppressionGroupOperation, createSuppressionGroupOperation as createSuppressionGroupTool, createTemplateOperation, createTemplateOperation as createTemplateTool, createTemplateVersionOperation, createTemplateVersionOperation as createTemplateVersionTool, deleteAlertOperation, deleteAlertOperation as deleteAlertTool, deleteApiKeyOperation, deleteApiKeyOperation as deleteApiKeyTool, deleteBlockOperation, deleteBlockOperation as deleteBlockTool, deleteBlocksOperation, deleteBlocksOperation as deleteBlocksTool, deleteBounceOperation, deleteBounceOperation as deleteBounceTool, deleteBouncesOperation, deleteBouncesOperation as deleteBouncesTool, deleteContactIdentifierOperation, deleteContactIdentifierOperation as deleteContactIdentifierTool, deleteContactsOperation, deleteContactsOperation as deleteContactsTool, deleteCustomFieldOperation, deleteCustomFieldOperation as deleteCustomFieldTool, deleteEventWebhookOperation, deleteEventWebhookOperation as deleteEventWebhookTool, deleteGlobalSuppressionOperation, deleteGlobalSuppressionOperation as deleteGlobalSuppressionTool, deleteInvalidEmailOperation, deleteInvalidEmailOperation as deleteInvalidEmailTool, deleteInvalidEmailsOperation, deleteInvalidEmailsOperation as deleteInvalidEmailsTool, deleteLegacySegmentOperation, deleteLegacySegmentOperation as deleteLegacySegmentTool, deleteListOperation, deleteListOperation as deleteListTool, deleteParseSettingOperation, deleteParseSettingOperation as deleteParseSettingTool, deleteScheduledSendOperation, deleteScheduledSendOperation as deleteScheduledSendTool, deleteSegmentOperation, deleteSegmentOperation as deleteSegmentTool, deleteSenderIdentityOperation, deleteSenderIdentityOperation as deleteSenderIdentityTool, deleteSenderOperation, deleteSenderOperation as deleteSenderTool, deleteSingleSendOperation, deleteSingleSendOperation as deleteSingleSendTool, deleteSpamReportOperation, deleteSpamReportOperation as deleteSpamReportTool, deleteSpamReportsOperation, deleteSpamReportsOperation as deleteSpamReportsTool, deleteSuppressionFromGroupOperation, deleteSuppressionFromGroupOperation as deleteSuppressionFromGroupTool, deleteSuppressionGroupOperation, deleteSuppressionGroupOperation as deleteSuppressionGroupTool, deleteTemplateOperation, deleteTemplateOperation as deleteTemplateTool, deleteTemplateVersionOperation, deleteTemplateVersionOperation as deleteTemplateVersionTool, duplicateSingleSendOperation, duplicateSingleSendOperation as duplicateSingleSendTool, duplicateTemplateOperation, duplicateTemplateOperation as duplicateTemplateTool, filterSegmentsByParentsOperation, filterSegmentsByParentsOperation as filterSegmentsByParentsTool, getAccountInfoOperation, getAccountInfoOperation as getAccountInfoTool, getAlertOperation, getAlertOperation as getAlertTool, getApiKeyOperation, getApiKeyOperation as getApiKeyTool, getAuthenticatedDomainOperation, getAuthenticatedDomainOperation as getAuthenticatedDomainTool, getBlockOperation, getBlockOperation as getBlockTool, getBounceOperation, getBounceOperation as getBounceTool, getBulkEmailValidationJobOperation, getBulkEmailValidationJobOperation as getBulkEmailValidationJobTool, getCategoryStatsOperation, getCategoryStatsOperation as getCategoryStatsTool, getContactCountOperation, getContactCountOperation as getContactCountTool, getContactExportStatusOperation, getContactExportStatusOperation as getContactExportStatusTool, getContactImportStatusOperation, getContactImportStatusOperation as getContactImportStatusTool, getContactOperation, getContactOperation as getContactTool, getContactSampleOperation, getContactSampleOperation as getContactSampleTool, getContactsByEmailsOperation, getContactsByEmailsOperation as getContactsByEmailsTool, getContactsByIdentifiersOperation, getContactsByIdentifiersOperation as getContactsByIdentifiersTool, getContactsByIdsOperation, getContactsByIdsOperation as getContactsByIdsTool, getCreditBalanceOperation, getCreditBalanceOperation as getCreditBalanceTool, getEngagementQualityScoresOperation, getEngagementQualityScoresOperation as getEngagementQualityScoresTool, getEventWebhookOperation, getEventWebhookOperation as getEventWebhookTool, getGlobalEmailStatsOperation, getGlobalEmailStatsOperation as getGlobalEmailStatsTool, getGlobalSuppressionOperation, getGlobalSuppressionOperation as getGlobalSuppressionTool, getInvalidEmailOperation, getInvalidEmailOperation as getInvalidEmailTool, getListContactCountOperation, getListContactCountOperation as getListContactCountTool, getListOperation, getListOperation as getListTool, getParseSettingOperation, getParseSettingOperation as getParseSettingTool, getParseStatsOperation, getParseStatsOperation as getParseStatsTool, getScheduledSendOperation, getScheduledSendOperation as getScheduledSendTool, getSegmentOperation, getSegmentOperation as getSegmentTool, getSenderIdentityOperation, getSenderIdentityOperation as getSenderIdentityTool, getSenderOperation, getSenderOperation as getSenderTool, getSignedPublicKeyOperation, getSignedPublicKeyOperation as getSignedPublicKeyTool, getSingleSendClickStatsOperation, getSingleSendClickStatsOperation as getSingleSendClickStatsTool, getSingleSendOperation, getSingleSendOperation as getSingleSendTool, getSingleSendStatsOperation, getSingleSendStatsOperation as getSingleSendStatsTool, getSpamReportOperation, getSpamReportOperation as getSpamReportTool, getSuppressionGroupOperation, getSuppressionGroupOperation as getSuppressionGroupTool, getTemplateOperation, getTemplateOperation as getTemplateTool, getTemplateVersionOperation, getTemplateVersionOperation as getTemplateVersionTool, getUserProfileOperation, getUserProfileOperation as getUserProfileTool, getUserScopesOperation, getUserScopesOperation as getUserScopesTool, listAlertsOperation, listAlertsOperation as listAlertsTool, listAllSuppressionsOperation, listAllSuppressionsOperation as listAllSuppressionsTool, listApiKeysOperation, listApiKeysOperation as listApiKeysTool, listAuthenticatedDomainsOperation, listAuthenticatedDomainsOperation as listAuthenticatedDomainsTool, listAutomationStatsOperation, listAutomationStatsOperation as listAutomationStatsTool, listBlocksOperation, listBlocksOperation as listBlocksTool, listBouncesOperation, listBouncesOperation as listBouncesTool, listBulkEmailValidationJobsOperation, listBulkEmailValidationJobsOperation as listBulkEmailValidationJobsTool, listContactExportsOperation, listContactExportsOperation as listContactExportsTool, listEventWebhooksOperation, listEventWebhooksOperation as listEventWebhooksTool, listFieldDefinitionsOperation, listFieldDefinitionsOperation as listFieldDefinitionsTool, listGlobalSuppressionsOperation, listGlobalSuppressionsOperation as listGlobalSuppressionsTool, listGroupSuppressionsOperation, listGroupSuppressionsOperation as listGroupSuppressionsTool, listGroupsForEmailOperation, listGroupsForEmailOperation as listGroupsForEmailTool, listInvalidEmailsOperation, listInvalidEmailsOperation as listInvalidEmailsTool, listMailboxProviderStatsOperation, listMailboxProviderStatsOperation as listMailboxProviderStatsTool, listMarketingListsOperation, listMarketingListsOperation as listMarketingListsTool, listParseSettingsOperation, listParseSettingsOperation as listParseSettingsTool, listScheduledSendsOperation, listScheduledSendsOperation as listScheduledSendsTool, listSegmentsOperation, listSegmentsOperation as listSegmentsTool, listSenderIdentitiesOperation, listSenderIdentitiesOperation as listSenderIdentitiesTool, listSendersOperation, listSendersOperation as listSendersTool, listSingleSendStatsOperation, listSingleSendStatsOperation as listSingleSendStatsTool, listSingleSendsOperation, listSingleSendsOperation as listSingleSendsTool, listSpamReportsOperation, listSpamReportsOperation as listSpamReportsTool, listSuppressionGroupsOperation, listSuppressionGroupsOperation as listSuppressionGroupsTool, listTemplatesOperation, listTemplatesOperation as listTemplatesTool, refreshSegmentOperation, refreshSegmentOperation as refreshSegmentTool, removeContactsFromListOperation, removeContactsFromListOperation as removeContactsFromListTool, removeSegmentWithoutContactsOperation, removeSegmentWithoutContactsOperation as removeSegmentWithoutContactsTool, resendSenderIdentityVerificationOperation, resendSenderIdentityVerificationOperation as resendSenderIdentityVerificationTool, scheduleSingleSendOperation, scheduleSingleSendOperation as scheduleSingleSendTool, searchContactsOperation, searchContactsOperation as searchContactsTool, searchSingleSendsOperation, searchSingleSendsOperation as searchSingleSendsTool, searchSuppressionsInGroupOperation, searchSuppressionsInGroupOperation as searchSuppressionsInGroupTool, sendEmailOperation, sendEmailOperation as sendEmailTool, sendTestMarketingEmailOperation, sendTestMarketingEmailOperation as sendTestMarketingEmailTool, testEventWebhookOperation, testEventWebhookOperation as testEventWebhookTool, toggleWebhookSignatureOperation, toggleWebhookSignatureOperation as toggleWebhookSignatureTool, unscheduleSingleSendOperation, unscheduleSingleSendOperation as unscheduleSingleSendTool, updateAlertOperation, updateAlertOperation as updateAlertTool, updateApiKeyNameAndScopesOperation, updateApiKeyNameAndScopesOperation as updateApiKeyNameAndScopesTool, updateApiKeyNameOperation, updateApiKeyNameOperation as updateApiKeyNameTool, updateCustomFieldOperation, updateCustomFieldOperation as updateCustomFieldTool, updateEventWebhookOperation, updateEventWebhookOperation as updateEventWebhookTool, updateListOperation, updateListOperation as updateListTool, updateParseSettingOperation, updateParseSettingOperation as updateParseSettingTool, updateScheduledSendOperation, updateScheduledSendOperation as updateScheduledSendTool, updateSegmentOperation, updateSegmentOperation as updateSegmentTool, updateSenderIdentityOperation, updateSenderIdentityOperation as updateSenderIdentityTool, updateSenderOperation, updateSenderOperation as updateSenderTool, updateSingleSendOperation, updateSingleSendOperation as updateSingleSendTool, updateSuppressionGroupOperation, updateSuppressionGroupOperation as updateSuppressionGroupTool, updateTemplateOperation, updateTemplateOperation as updateTemplateTool, updateTemplateVersionOperation, updateTemplateVersionOperation as updateTemplateVersionTool, upsertContactsOperation, upsertContactsOperation as upsertContactsTool, validateAuthenticatedDomainOperation, validateAuthenticatedDomainOperation as validateAuthenticatedDomainTool, validateBatchIdOperation, validateBatchIdOperation as validateBatchIdTool, validateEmailOperation, validateEmailOperation as validateEmailTool };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { $ as listBouncesOperation, $t as deleteSpamReportsOperation, A as removeSegmentWithoutContactsOperation, An as createListOperation, At as getContactsByIdsOperation, B as listSegmentsOperation, Bn as cancelOrPauseScheduledSendOperation, Bt as getBounceOperation, C as sendTestMarketingEmailOperation, Cn as createTemplateOperation, Ct as getListOperation, D as searchContactsOperation, Dn as createSenderOperation, Dt as getEventWebhookOperation, E as searchSingleSendsOperation, En as createSenderIdentityOperation, Et as getGlobalEmailStatsOperation, F as listSpamReportsOperation, Fn as createContactExportOperation, Ft as getContactExportStatusOperation, G as listInvalidEmailsOperation, Gt as getAccountInfoOperation, H as listParseSettingsOperation, Hn as addSuppressionsToGroupOperation, Ht as getAuthenticatedDomainOperation, I as listSingleSendsOperation, In as createBulkEmailValidationPresignedUrlOperation, It as getContactCountOperation, J as listGlobalSuppressionsOperation, Jt as duplicateSingleSendOperation, K as listGroupsForEmailOperation, Kt as filterSegmentsByParentsOperation, L as listSingleSendStatsOperation, Ln as createBatchIdOperation, Lt as getContactOperation, M as refreshSegmentOperation, Mn as createEventWebhookOperation, Mt as getContactsByEmailsOperation, N as listTemplatesOperation, Nn as createCustomFieldOperation, Nt as getContactSampleOperation, O as scheduleSingleSendOperation, On as createSegmentOperation, Ot as getEngagementQualityScoresOperation, P as listSuppressionGroupsOperation, Pn as createContactImportOperation, Pt as getContactImportStatusOperation, Q as listBulkEmailValidationJobsOperation, Qt as deleteSuppressionFromGroupOperation, R as listSendersOperation, Rn as createApiKeyOperation, Rt as getCategoryStatsOperation, S as testEventWebhookOperation, Sn as createTemplateVersionOperation, St as getListContactCountOperation, T as searchSuppressionsInGroupOperation, Tn as createSingleSendOperation, Tt as getGlobalSuppressionOperation, U as listMarketingListsOperation, Un as addGlobalSuppressionsOperation, Ut as getApiKeyOperation, V as listScheduledSendsOperation, Vn as bulkDeleteSingleSendsOperation, Vt as getBlockOperation, W as listMailboxProviderStatsOperation, Wn as activateTemplateVersionOperation, Wt as getAlertOperation, X as listEventWebhooksOperation, Xt as deleteTemplateOperation, Y as listFieldDefinitionsOperation, Yt as deleteTemplateVersionOperation, Z as listContactExportsOperation, Zt as deleteSuppressionGroupOperation, _ as updateApiKeyNameAndScopesOperation, _n as deleteBounceOperation, _t as getSenderOperation, a as updateTemplateVersionOperation, an as deleteScheduledSendOperation, at as listAlertsOperation, b as unscheduleSingleSendOperation, bn as deleteApiKeyOperation, bt as getParseStatsOperation, c as updateSingleSendOperation, cn as deleteLegacySegmentOperation, ct as getTemplateVersionOperation, d as updateSegmentOperation, dn as deleteGlobalSuppressionOperation, dt as getSpamReportOperation, en as deleteSpamReportOperation, et as listBlocksOperation, f as updateScheduledSendOperation, fn as deleteEventWebhookOperation, ft as getSingleSendStatsOperation, g as updateCustomFieldOperation, gn as deleteBouncesOperation, gt as getSenderIdentityOperation, h as updateEventWebhookOperation, hn as deleteContactIdentifierOperation, ht as getSignedPublicKeyOperation, i as upsertContactsOperation, in as deleteSegmentOperation, it as listAllSuppressionsOperation, j as removeContactsFromListOperation, jn as createLegacySegmentOperation, jt as getContactsByIdentifiersOperation, k as resendSenderIdentityVerificationOperation, kn as createParseSettingOperation, kt as getCreditBalanceOperation, l as updateSenderIdentityOperation, ln as deleteInvalidEmailsOperation, lt as getTemplateOperation, m as updateListOperation, mn as deleteContactsOperation, mt as getSingleSendOperation, n as validateBatchIdOperation, nn as deleteSenderIdentityOperation, nt as listAuthenticatedDomainsOperation, o as updateTemplateOperation, on as deleteParseSettingOperation, ot as getUserScopesOperation, p as updateParseSettingOperation, pn as deleteCustomFieldOperation, pt as getSingleSendClickStatsOperation, q as listGroupSuppressionsOperation, qt as duplicateTemplateOperation, r as validateAuthenticatedDomainOperation, rn as deleteSenderOperation, rt as listApiKeysOperation, s as updateSuppressionGroupOperation, sn as deleteListOperation, st as getUserProfileOperation, t as validateEmailOperation, tn as deleteSingleSendOperation, tt as listAutomationStatsOperation, u as updateSenderOperation, un as deleteInvalidEmailOperation, ut as getSuppressionGroupOperation, v as updateApiKeyNameOperation, vn as deleteBlocksOperation, vt as getSegmentOperation, w as sendEmailOperation, wn as createSuppressionGroupOperation, wt as getInvalidEmailOperation, x as toggleWebhookSignatureOperation, xn as deleteAlertOperation, xt as getParseSettingOperation, y as updateAlertOperation, yn as deleteBlockOperation, yt as getScheduledSendOperation, z as listSenderIdentitiesOperation, zn as createAlertOperation, zt as getBulkEmailValidationJobOperation } from "../validate-email.operation-CCCDxLjH.mjs";
|
|
2
|
+
|
|
3
|
+
export { activateTemplateVersionOperation, activateTemplateVersionOperation as activateTemplateVersionTool, addGlobalSuppressionsOperation, addGlobalSuppressionsOperation as addGlobalSuppressionsTool, addSuppressionsToGroupOperation, addSuppressionsToGroupOperation as addSuppressionsToGroupTool, bulkDeleteSingleSendsOperation, bulkDeleteSingleSendsOperation as bulkDeleteSingleSendsTool, cancelOrPauseScheduledSendOperation, cancelOrPauseScheduledSendOperation as cancelOrPauseScheduledSendTool, createAlertOperation, createAlertOperation as createAlertTool, createApiKeyOperation, createApiKeyOperation as createApiKeyTool, createBatchIdOperation, createBatchIdOperation as createBatchIdTool, createBulkEmailValidationPresignedUrlOperation, createBulkEmailValidationPresignedUrlOperation as createBulkEmailValidationPresignedUrlTool, createContactExportOperation, createContactExportOperation as createContactExportTool, createContactImportOperation, createContactImportOperation as createContactImportTool, createCustomFieldOperation, createCustomFieldOperation as createCustomFieldTool, createEventWebhookOperation, createEventWebhookOperation as createEventWebhookTool, createLegacySegmentOperation, createLegacySegmentOperation as createLegacySegmentTool, createListOperation, createListOperation as createListTool, createParseSettingOperation, createParseSettingOperation as createParseSettingTool, createSegmentOperation, createSegmentOperation as createSegmentTool, createSenderIdentityOperation, createSenderIdentityOperation as createSenderIdentityTool, createSenderOperation, createSenderOperation as createSenderTool, createSingleSendOperation, createSingleSendOperation as createSingleSendTool, createSuppressionGroupOperation, createSuppressionGroupOperation as createSuppressionGroupTool, createTemplateOperation, createTemplateOperation as createTemplateTool, createTemplateVersionOperation, createTemplateVersionOperation as createTemplateVersionTool, deleteAlertOperation, deleteAlertOperation as deleteAlertTool, deleteApiKeyOperation, deleteApiKeyOperation as deleteApiKeyTool, deleteBlockOperation, deleteBlockOperation as deleteBlockTool, deleteBlocksOperation, deleteBlocksOperation as deleteBlocksTool, deleteBounceOperation, deleteBounceOperation as deleteBounceTool, deleteBouncesOperation, deleteBouncesOperation as deleteBouncesTool, deleteContactIdentifierOperation, deleteContactIdentifierOperation as deleteContactIdentifierTool, deleteContactsOperation, deleteContactsOperation as deleteContactsTool, deleteCustomFieldOperation, deleteCustomFieldOperation as deleteCustomFieldTool, deleteEventWebhookOperation, deleteEventWebhookOperation as deleteEventWebhookTool, deleteGlobalSuppressionOperation, deleteGlobalSuppressionOperation as deleteGlobalSuppressionTool, deleteInvalidEmailOperation, deleteInvalidEmailOperation as deleteInvalidEmailTool, deleteInvalidEmailsOperation, deleteInvalidEmailsOperation as deleteInvalidEmailsTool, deleteLegacySegmentOperation, deleteLegacySegmentOperation as deleteLegacySegmentTool, deleteListOperation, deleteListOperation as deleteListTool, deleteParseSettingOperation, deleteParseSettingOperation as deleteParseSettingTool, deleteScheduledSendOperation, deleteScheduledSendOperation as deleteScheduledSendTool, deleteSegmentOperation, deleteSegmentOperation as deleteSegmentTool, deleteSenderIdentityOperation, deleteSenderIdentityOperation as deleteSenderIdentityTool, deleteSenderOperation, deleteSenderOperation as deleteSenderTool, deleteSingleSendOperation, deleteSingleSendOperation as deleteSingleSendTool, deleteSpamReportOperation, deleteSpamReportOperation as deleteSpamReportTool, deleteSpamReportsOperation, deleteSpamReportsOperation as deleteSpamReportsTool, deleteSuppressionFromGroupOperation, deleteSuppressionFromGroupOperation as deleteSuppressionFromGroupTool, deleteSuppressionGroupOperation, deleteSuppressionGroupOperation as deleteSuppressionGroupTool, deleteTemplateOperation, deleteTemplateOperation as deleteTemplateTool, deleteTemplateVersionOperation, deleteTemplateVersionOperation as deleteTemplateVersionTool, duplicateSingleSendOperation, duplicateSingleSendOperation as duplicateSingleSendTool, duplicateTemplateOperation, duplicateTemplateOperation as duplicateTemplateTool, filterSegmentsByParentsOperation, filterSegmentsByParentsOperation as filterSegmentsByParentsTool, getAccountInfoOperation, getAccountInfoOperation as getAccountInfoTool, getAlertOperation, getAlertOperation as getAlertTool, getApiKeyOperation, getApiKeyOperation as getApiKeyTool, getAuthenticatedDomainOperation, getAuthenticatedDomainOperation as getAuthenticatedDomainTool, getBlockOperation, getBlockOperation as getBlockTool, getBounceOperation, getBounceOperation as getBounceTool, getBulkEmailValidationJobOperation, getBulkEmailValidationJobOperation as getBulkEmailValidationJobTool, getCategoryStatsOperation, getCategoryStatsOperation as getCategoryStatsTool, getContactCountOperation, getContactCountOperation as getContactCountTool, getContactExportStatusOperation, getContactExportStatusOperation as getContactExportStatusTool, getContactImportStatusOperation, getContactImportStatusOperation as getContactImportStatusTool, getContactOperation, getContactOperation as getContactTool, getContactSampleOperation, getContactSampleOperation as getContactSampleTool, getContactsByEmailsOperation, getContactsByEmailsOperation as getContactsByEmailsTool, getContactsByIdentifiersOperation, getContactsByIdentifiersOperation as getContactsByIdentifiersTool, getContactsByIdsOperation, getContactsByIdsOperation as getContactsByIdsTool, getCreditBalanceOperation, getCreditBalanceOperation as getCreditBalanceTool, getEngagementQualityScoresOperation, getEngagementQualityScoresOperation as getEngagementQualityScoresTool, getEventWebhookOperation, getEventWebhookOperation as getEventWebhookTool, getGlobalEmailStatsOperation, getGlobalEmailStatsOperation as getGlobalEmailStatsTool, getGlobalSuppressionOperation, getGlobalSuppressionOperation as getGlobalSuppressionTool, getInvalidEmailOperation, getInvalidEmailOperation as getInvalidEmailTool, getListContactCountOperation, getListContactCountOperation as getListContactCountTool, getListOperation, getListOperation as getListTool, getParseSettingOperation, getParseSettingOperation as getParseSettingTool, getParseStatsOperation, getParseStatsOperation as getParseStatsTool, getScheduledSendOperation, getScheduledSendOperation as getScheduledSendTool, getSegmentOperation, getSegmentOperation as getSegmentTool, getSenderIdentityOperation, getSenderIdentityOperation as getSenderIdentityTool, getSenderOperation, getSenderOperation as getSenderTool, getSignedPublicKeyOperation, getSignedPublicKeyOperation as getSignedPublicKeyTool, getSingleSendClickStatsOperation, getSingleSendClickStatsOperation as getSingleSendClickStatsTool, getSingleSendOperation, getSingleSendOperation as getSingleSendTool, getSingleSendStatsOperation, getSingleSendStatsOperation as getSingleSendStatsTool, getSpamReportOperation, getSpamReportOperation as getSpamReportTool, getSuppressionGroupOperation, getSuppressionGroupOperation as getSuppressionGroupTool, getTemplateOperation, getTemplateOperation as getTemplateTool, getTemplateVersionOperation, getTemplateVersionOperation as getTemplateVersionTool, getUserProfileOperation, getUserProfileOperation as getUserProfileTool, getUserScopesOperation, getUserScopesOperation as getUserScopesTool, listAlertsOperation, listAlertsOperation as listAlertsTool, listAllSuppressionsOperation, listAllSuppressionsOperation as listAllSuppressionsTool, listApiKeysOperation, listApiKeysOperation as listApiKeysTool, listAuthenticatedDomainsOperation, listAuthenticatedDomainsOperation as listAuthenticatedDomainsTool, listAutomationStatsOperation, listAutomationStatsOperation as listAutomationStatsTool, listBlocksOperation, listBlocksOperation as listBlocksTool, listBouncesOperation, listBouncesOperation as listBouncesTool, listBulkEmailValidationJobsOperation, listBulkEmailValidationJobsOperation as listBulkEmailValidationJobsTool, listContactExportsOperation, listContactExportsOperation as listContactExportsTool, listEventWebhooksOperation, listEventWebhooksOperation as listEventWebhooksTool, listFieldDefinitionsOperation, listFieldDefinitionsOperation as listFieldDefinitionsTool, listGlobalSuppressionsOperation, listGlobalSuppressionsOperation as listGlobalSuppressionsTool, listGroupSuppressionsOperation, listGroupSuppressionsOperation as listGroupSuppressionsTool, listGroupsForEmailOperation, listGroupsForEmailOperation as listGroupsForEmailTool, listInvalidEmailsOperation, listInvalidEmailsOperation as listInvalidEmailsTool, listMailboxProviderStatsOperation, listMailboxProviderStatsOperation as listMailboxProviderStatsTool, listMarketingListsOperation, listMarketingListsOperation as listMarketingListsTool, listParseSettingsOperation, listParseSettingsOperation as listParseSettingsTool, listScheduledSendsOperation, listScheduledSendsOperation as listScheduledSendsTool, listSegmentsOperation, listSegmentsOperation as listSegmentsTool, listSenderIdentitiesOperation, listSenderIdentitiesOperation as listSenderIdentitiesTool, listSendersOperation, listSendersOperation as listSendersTool, listSingleSendStatsOperation, listSingleSendStatsOperation as listSingleSendStatsTool, listSingleSendsOperation, listSingleSendsOperation as listSingleSendsTool, listSpamReportsOperation, listSpamReportsOperation as listSpamReportsTool, listSuppressionGroupsOperation, listSuppressionGroupsOperation as listSuppressionGroupsTool, listTemplatesOperation, listTemplatesOperation as listTemplatesTool, refreshSegmentOperation, refreshSegmentOperation as refreshSegmentTool, removeContactsFromListOperation, removeContactsFromListOperation as removeContactsFromListTool, removeSegmentWithoutContactsOperation, removeSegmentWithoutContactsOperation as removeSegmentWithoutContactsTool, resendSenderIdentityVerificationOperation, resendSenderIdentityVerificationOperation as resendSenderIdentityVerificationTool, scheduleSingleSendOperation, scheduleSingleSendOperation as scheduleSingleSendTool, searchContactsOperation, searchContactsOperation as searchContactsTool, searchSingleSendsOperation, searchSingleSendsOperation as searchSingleSendsTool, searchSuppressionsInGroupOperation, searchSuppressionsInGroupOperation as searchSuppressionsInGroupTool, sendEmailOperation, sendEmailOperation as sendEmailTool, sendTestMarketingEmailOperation, sendTestMarketingEmailOperation as sendTestMarketingEmailTool, testEventWebhookOperation, testEventWebhookOperation as testEventWebhookTool, toggleWebhookSignatureOperation, toggleWebhookSignatureOperation as toggleWebhookSignatureTool, unscheduleSingleSendOperation, unscheduleSingleSendOperation as unscheduleSingleSendTool, updateAlertOperation, updateAlertOperation as updateAlertTool, updateApiKeyNameAndScopesOperation, updateApiKeyNameAndScopesOperation as updateApiKeyNameAndScopesTool, updateApiKeyNameOperation, updateApiKeyNameOperation as updateApiKeyNameTool, updateCustomFieldOperation, updateCustomFieldOperation as updateCustomFieldTool, updateEventWebhookOperation, updateEventWebhookOperation as updateEventWebhookTool, updateListOperation, updateListOperation as updateListTool, updateParseSettingOperation, updateParseSettingOperation as updateParseSettingTool, updateScheduledSendOperation, updateScheduledSendOperation as updateScheduledSendTool, updateSegmentOperation, updateSegmentOperation as updateSegmentTool, updateSenderIdentityOperation, updateSenderIdentityOperation as updateSenderIdentityTool, updateSenderOperation, updateSenderOperation as updateSenderTool, updateSingleSendOperation, updateSingleSendOperation as updateSingleSendTool, updateSuppressionGroupOperation, updateSuppressionGroupOperation as updateSuppressionGroupTool, updateTemplateOperation, updateTemplateOperation as updateTemplateTool, updateTemplateVersionOperation, updateTemplateVersionOperation as updateTemplateVersionTool, upsertContactsOperation, upsertContactsOperation as upsertContactsTool, validateAuthenticatedDomainOperation, validateAuthenticatedDomainOperation as validateAuthenticatedDomainTool, validateBatchIdOperation, validateBatchIdOperation as validateBatchIdTool, validateEmailOperation, validateEmailOperation as validateEmailTool };
|
package/dist/schemas/index.d.mts
CHANGED
|
@@ -638,9 +638,9 @@ declare const sendgridScheduledSendListSchema: z.ZodArray<z.ZodObject<{
|
|
|
638
638
|
//#endregion
|
|
639
639
|
//#region src/schemas/segments.d.ts
|
|
640
640
|
declare const sendgridSegmentStatusSchema: z.ZodEnum<{
|
|
641
|
-
failed: "failed";
|
|
642
641
|
pending: "pending";
|
|
643
642
|
ready: "ready";
|
|
643
|
+
failed: "failed";
|
|
644
644
|
}>;
|
|
645
645
|
declare const sendgridSegmentSchema: z.ZodObject<{
|
|
646
646
|
id: z.ZodString;
|
|
@@ -807,12 +807,12 @@ type SendGridPaginationMetadata = z.infer<typeof sendgridPaginationMetadataSchem
|
|
|
807
807
|
//#endregion
|
|
808
808
|
//#region src/schemas/single-sends.d.ts
|
|
809
809
|
declare const sendgridSingleSendStatusSchema: z.ZodEnum<{
|
|
810
|
+
failed: "failed";
|
|
810
811
|
draft: "draft";
|
|
811
812
|
scheduled: "scheduled";
|
|
812
813
|
triggered: "triggered";
|
|
813
814
|
canceled: "canceled";
|
|
814
815
|
sent: "sent";
|
|
815
|
-
failed: "failed";
|
|
816
816
|
}>;
|
|
817
817
|
declare const sendgridSingleSendSendToSchema: z.ZodObject<{
|
|
818
818
|
list_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -838,12 +838,12 @@ declare const sendgridSingleSendSchema: z.ZodObject<{
|
|
|
838
838
|
id: z.ZodString;
|
|
839
839
|
name: z.ZodString;
|
|
840
840
|
status: z.ZodOptional<z.ZodEnum<{
|
|
841
|
+
failed: "failed";
|
|
841
842
|
draft: "draft";
|
|
842
843
|
scheduled: "scheduled";
|
|
843
844
|
triggered: "triggered";
|
|
844
845
|
canceled: "canceled";
|
|
845
846
|
sent: "sent";
|
|
846
|
-
failed: "failed";
|
|
847
847
|
}>>;
|
|
848
848
|
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
849
849
|
send_at: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -875,12 +875,12 @@ declare const sendgridSingleSendListSchema: z.ZodObject<{
|
|
|
875
875
|
id: z.ZodString;
|
|
876
876
|
name: z.ZodString;
|
|
877
877
|
status: z.ZodOptional<z.ZodEnum<{
|
|
878
|
+
failed: "failed";
|
|
878
879
|
draft: "draft";
|
|
879
880
|
scheduled: "scheduled";
|
|
880
881
|
triggered: "triggered";
|
|
881
882
|
canceled: "canceled";
|
|
882
883
|
sent: "sent";
|
|
883
|
-
failed: "failed";
|
|
884
884
|
}>>;
|
|
885
885
|
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
886
886
|
send_at: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -914,12 +914,12 @@ declare const sendgridSingleSendScheduleInputSchema: z.ZodObject<{
|
|
|
914
914
|
declare const sendgridSingleSendSearchInputSchema: z.ZodObject<{
|
|
915
915
|
name: z.ZodOptional<z.ZodString>;
|
|
916
916
|
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
917
|
+
failed: "failed";
|
|
917
918
|
draft: "draft";
|
|
918
919
|
scheduled: "scheduled";
|
|
919
920
|
triggered: "triggered";
|
|
920
921
|
canceled: "canceled";
|
|
921
922
|
sent: "sent";
|
|
922
|
-
failed: "failed";
|
|
923
923
|
}>>>;
|
|
924
924
|
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
925
925
|
}, z.core.$strip>;
|
package/dist/schemas/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as sendgridSingleSendTestInputSchema, $t as sendgridAlertFrequencySchema, A as sendgridInvalidEmailRecordSchema, At as sendgridAuthenticatedDomainListSchema, B as sendgridStatBucketSchema, Bt as sendgridContactExportSchema, C as sendgridBounceListSchema, Ct as sendgridListSchema, D as sendgridGroupSuppressionEntrySchema, Dt as sendgridEmailValidationResponseSchema, E as sendgridGlobalSuppressionSchema, Et as sendgridBulkEmailValidationPresignedUrlSchema, F as sendgridAggregationSchema, Ft as sendgridCustomFieldListSchema, G as sendgridSingleSendListSchema, Gt as sendgridContactSearchResultSchema, H as sendgridStatMetricSchema, Ht as sendgridContactImportSchema, I as sendgridAutomationStatsSchema, It as sendgridContactBatchResultSchema, J as sendgridSingleSendSearchInputSchema, Jt as sendgridUpsertContactsResultSchema, K as sendgridSingleSendScheduleInputSchema, Kt as sendgridFieldDefinitionListSchema, L as sendgridCategoryStatsSchema, Lt as sendgridContactCountSchema, M as sendgridSpamReportRecordSchema, Mt as sendgridDnsRecordSchema, N as sendgridSuppressionGroupListSchema, Nt as sendgridDomainValidateResultSchema, O as sendgridGroupSuppressionListSchema, Ot as sendgridEmailValidationResultSchema, P as sendgridSuppressionGroupSchema, Pt as sendgridCustomFieldDefinitionSchema, Q as sendgridSingleSendStatusSchema, Qt as sendgridApiKeyWithKeySchema, R as sendgridEngagementQualitySchema, Rt as sendgridContactDeleteResultSchema, S as sendgridBlockRecordSchema, St as sendgridListRemoveContactsResultSchema, T as sendgridGlobalSuppressionListSchema, Tt as sendgridBulkEmailValidationJobSchema, U as sendgridSingleSendClicksSchema, Ut as sendgridContactInputSchema, V as sendgridStatEntrySchema, Vt as sendgridContactIdentifierSchema, W as sendgridSingleSendEmailConfigSchema, Wt as sendgridContactSchema, X as sendgridSingleSendStatsListSchema, Xt as sendgridApiKeySchema, Y as sendgridSingleSendSendToSchema, Yt as sendgridApiKeyListSchema, Z as sendgridSingleSendStatsSchema, Zt as sendgridApiKeyScopeSchema, _ as sendgridTemplateGenerationSchema, _t as sendgridScheduledSendSchema, a as sendgridInboundParsePayloadSchema, an as sendgridEmptySuccessSchema, at as sendgridSegmentListSchema, b as sendgridTemplateVersionSchema, bt as sendgridListCollectionSchema, c as sendgridParseStatsBucketSchema, cn as sendgridLooseObject, ct as sendgridAttachmentSchema, d as sendgridSignedPublicKeySchema, dt as sendgridMailContentSchema, en as sendgridAlertListSchema, et as sendgridSenderAddressSchema, f as sendgridAccountInfoSchema, ft as sendgridMailSendInputSchema, g as sendgridUserProfileSchema, gt as sendgridScheduledSendListSchema, h as sendgridUserEmailSchema, ht as sendgridPersonalizationSchema, i as sendgridEventWebhookSettingsSchema, in as sendgridEmailSchema, it as sendgridVerifiedSenderSchema, j as sendgridSpamReportListSchema, jt as sendgridAuthenticatedDomainSchema, k as sendgridInvalidEmailListSchema, kt as sendgridEmailValidationVerdictSchema, l as sendgridParseStatsSchema, ln as sendgridPaginationMetadataSchema, lt as sendgridBatchIdSchema, m as sendgridScopesSchema, mt as sendgridMailSettingsSchema, n as sendgridEventWebhookListSchema, nn as sendgridAlertTypeSchema, nt as sendgridSenderSchema, o as sendgridParseSettingListSchema, on as sendgridIdSchema, ot as sendgridSegmentSchema, p as sendgridCreditBalanceSchema, pt as sendgridMailSendResultSchema, q as sendgridSingleSendSchema, qt as sendgridFieldDefinitionSchema, r as sendgridEventWebhookPayloadSchema, rn as sendgridAsmSchema, rt as sendgridVerifiedSenderListSchema, s as sendgridParseSettingSchema, sn as sendgridIsoDatetimeSchema, st as sendgridSegmentStatusSchema, t as sendgridEventWebhookEventSchema, tn as sendgridAlertSchema, tt as sendgridSenderListSchema, u as sendgridSignatureToggleSchema, un as sendgridUnixSecondsSchema, ut as sendgridEmailAddressSchema, v as sendgridTemplateListSchema, vt as sendgridScheduledSendStatusSchema, w as sendgridBounceRecordSchema, wt as sendgridBulkEmailValidationJobListSchema, x as sendgridBlockListSchema, xt as sendgridListContactCountSchema, y as sendgridTemplateSchema, yt as sendgridTrackingSettingsSchema, z as sendgridStatBucketListSchema, zt as sendgridContactExportListSchema } from "../webhooks-
|
|
1
|
+
import { $ as sendgridSingleSendTestInputSchema, $t as sendgridAlertFrequencySchema, A as sendgridInvalidEmailRecordSchema, At as sendgridAuthenticatedDomainListSchema, B as sendgridStatBucketSchema, Bt as sendgridContactExportSchema, C as sendgridBounceListSchema, Ct as sendgridListSchema, D as sendgridGroupSuppressionEntrySchema, Dt as sendgridEmailValidationResponseSchema, E as sendgridGlobalSuppressionSchema, Et as sendgridBulkEmailValidationPresignedUrlSchema, F as sendgridAggregationSchema, Ft as sendgridCustomFieldListSchema, G as sendgridSingleSendListSchema, Gt as sendgridContactSearchResultSchema, H as sendgridStatMetricSchema, Ht as sendgridContactImportSchema, I as sendgridAutomationStatsSchema, It as sendgridContactBatchResultSchema, J as sendgridSingleSendSearchInputSchema, Jt as sendgridUpsertContactsResultSchema, K as sendgridSingleSendScheduleInputSchema, Kt as sendgridFieldDefinitionListSchema, L as sendgridCategoryStatsSchema, Lt as sendgridContactCountSchema, M as sendgridSpamReportRecordSchema, Mt as sendgridDnsRecordSchema, N as sendgridSuppressionGroupListSchema, Nt as sendgridDomainValidateResultSchema, O as sendgridGroupSuppressionListSchema, Ot as sendgridEmailValidationResultSchema, P as sendgridSuppressionGroupSchema, Pt as sendgridCustomFieldDefinitionSchema, Q as sendgridSingleSendStatusSchema, Qt as sendgridApiKeyWithKeySchema, R as sendgridEngagementQualitySchema, Rt as sendgridContactDeleteResultSchema, S as sendgridBlockRecordSchema, St as sendgridListRemoveContactsResultSchema, T as sendgridGlobalSuppressionListSchema, Tt as sendgridBulkEmailValidationJobSchema, U as sendgridSingleSendClicksSchema, Ut as sendgridContactInputSchema, V as sendgridStatEntrySchema, Vt as sendgridContactIdentifierSchema, W as sendgridSingleSendEmailConfigSchema, Wt as sendgridContactSchema, X as sendgridSingleSendStatsListSchema, Xt as sendgridApiKeySchema, Y as sendgridSingleSendSendToSchema, Yt as sendgridApiKeyListSchema, Z as sendgridSingleSendStatsSchema, Zt as sendgridApiKeyScopeSchema, _ as sendgridTemplateGenerationSchema, _t as sendgridScheduledSendSchema, a as sendgridInboundParsePayloadSchema, an as sendgridEmptySuccessSchema, at as sendgridSegmentListSchema, b as sendgridTemplateVersionSchema, bt as sendgridListCollectionSchema, c as sendgridParseStatsBucketSchema, cn as sendgridLooseObject, ct as sendgridAttachmentSchema, d as sendgridSignedPublicKeySchema, dt as sendgridMailContentSchema, en as sendgridAlertListSchema, et as sendgridSenderAddressSchema, f as sendgridAccountInfoSchema, ft as sendgridMailSendInputSchema, g as sendgridUserProfileSchema, gt as sendgridScheduledSendListSchema, h as sendgridUserEmailSchema, ht as sendgridPersonalizationSchema, i as sendgridEventWebhookSettingsSchema, in as sendgridEmailSchema, it as sendgridVerifiedSenderSchema, j as sendgridSpamReportListSchema, jt as sendgridAuthenticatedDomainSchema, k as sendgridInvalidEmailListSchema, kt as sendgridEmailValidationVerdictSchema, l as sendgridParseStatsSchema, ln as sendgridPaginationMetadataSchema, lt as sendgridBatchIdSchema, m as sendgridScopesSchema, mt as sendgridMailSettingsSchema, n as sendgridEventWebhookListSchema, nn as sendgridAlertTypeSchema, nt as sendgridSenderSchema, o as sendgridParseSettingListSchema, on as sendgridIdSchema, ot as sendgridSegmentSchema, p as sendgridCreditBalanceSchema, pt as sendgridMailSendResultSchema, q as sendgridSingleSendSchema, qt as sendgridFieldDefinitionSchema, r as sendgridEventWebhookPayloadSchema, rn as sendgridAsmSchema, rt as sendgridVerifiedSenderListSchema, s as sendgridParseSettingSchema, sn as sendgridIsoDatetimeSchema, st as sendgridSegmentStatusSchema, t as sendgridEventWebhookEventSchema, tn as sendgridAlertSchema, tt as sendgridSenderListSchema, u as sendgridSignatureToggleSchema, un as sendgridUnixSecondsSchema, ut as sendgridEmailAddressSchema, v as sendgridTemplateListSchema, vt as sendgridScheduledSendStatusSchema, w as sendgridBounceRecordSchema, wt as sendgridBulkEmailValidationJobListSchema, x as sendgridBlockListSchema, xt as sendgridListContactCountSchema, y as sendgridTemplateSchema, yt as sendgridTrackingSettingsSchema, z as sendgridStatBucketListSchema, zt as sendgridContactExportListSchema } from "../webhooks-dVOd93Hd.mjs";
|
|
2
2
|
|
|
3
3
|
export { sendgridAccountInfoSchema, sendgridAggregationSchema, sendgridAlertFrequencySchema, sendgridAlertListSchema, sendgridAlertSchema, sendgridAlertTypeSchema, sendgridApiKeyListSchema, sendgridApiKeySchema, sendgridApiKeyScopeSchema, sendgridApiKeyWithKeySchema, sendgridAsmSchema, sendgridAttachmentSchema, sendgridAuthenticatedDomainListSchema, sendgridAuthenticatedDomainSchema, sendgridAutomationStatsSchema, sendgridBatchIdSchema, sendgridBlockListSchema, sendgridBlockRecordSchema, sendgridBounceListSchema, sendgridBounceRecordSchema, sendgridBulkEmailValidationJobListSchema, sendgridBulkEmailValidationJobSchema, sendgridBulkEmailValidationPresignedUrlSchema, sendgridCategoryStatsSchema, sendgridContactBatchResultSchema, sendgridContactCountSchema, sendgridContactDeleteResultSchema, sendgridContactExportListSchema, sendgridContactExportSchema, sendgridContactIdentifierSchema, sendgridContactImportSchema, sendgridContactInputSchema, sendgridContactSchema, sendgridContactSearchResultSchema, sendgridCreditBalanceSchema, sendgridCustomFieldDefinitionSchema, sendgridCustomFieldListSchema, sendgridDnsRecordSchema, sendgridDomainValidateResultSchema, sendgridEmailAddressSchema, sendgridEmailSchema, sendgridEmailValidationResponseSchema, sendgridEmailValidationResultSchema, sendgridEmailValidationVerdictSchema, sendgridEmptySuccessSchema, sendgridEngagementQualitySchema, sendgridEventWebhookEventSchema, sendgridEventWebhookListSchema, sendgridEventWebhookPayloadSchema, sendgridEventWebhookSettingsSchema, sendgridFieldDefinitionListSchema, sendgridFieldDefinitionSchema, sendgridGlobalSuppressionListSchema, sendgridGlobalSuppressionSchema, sendgridGroupSuppressionEntrySchema, sendgridGroupSuppressionListSchema, sendgridIdSchema, sendgridInboundParsePayloadSchema, sendgridInvalidEmailListSchema, sendgridInvalidEmailRecordSchema, sendgridIsoDatetimeSchema, sendgridListCollectionSchema, sendgridListContactCountSchema, sendgridListRemoveContactsResultSchema, sendgridListSchema, sendgridLooseObject, sendgridMailContentSchema, sendgridMailSendInputSchema, sendgridMailSendResultSchema, sendgridMailSettingsSchema, sendgridPaginationMetadataSchema, sendgridParseSettingListSchema, sendgridParseSettingSchema, sendgridParseStatsBucketSchema, sendgridParseStatsSchema, sendgridPersonalizationSchema, sendgridScheduledSendListSchema, sendgridScheduledSendSchema, sendgridScheduledSendStatusSchema, sendgridScopesSchema, sendgridSegmentListSchema, sendgridSegmentSchema, sendgridSegmentStatusSchema, sendgridSenderAddressSchema, sendgridSenderListSchema, sendgridSenderSchema, sendgridSignatureToggleSchema, sendgridSignedPublicKeySchema, sendgridSingleSendClicksSchema, sendgridSingleSendEmailConfigSchema, sendgridSingleSendListSchema, sendgridSingleSendScheduleInputSchema, sendgridSingleSendSchema, sendgridSingleSendSearchInputSchema, sendgridSingleSendSendToSchema, sendgridSingleSendStatsListSchema, sendgridSingleSendStatsSchema, sendgridSingleSendStatusSchema, sendgridSingleSendTestInputSchema, sendgridSpamReportListSchema, sendgridSpamReportRecordSchema, sendgridStatBucketListSchema, sendgridStatBucketSchema, sendgridStatEntrySchema, sendgridStatMetricSchema, sendgridSuppressionGroupListSchema, sendgridSuppressionGroupSchema, sendgridTemplateGenerationSchema, sendgridTemplateListSchema, sendgridTemplateSchema, sendgridTemplateVersionSchema, sendgridTrackingSettingsSchema, sendgridUnixSecondsSchema, sendgridUpsertContactsResultSchema, sendgridUserEmailSchema, sendgridUserProfileSchema, sendgridVerifiedSenderListSchema, sendgridVerifiedSenderSchema };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CredentialSet } from "@keystrokehq/core";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
|
|
4
|
-
//#region src/
|
|
4
|
+
//#region src/credential-sets/sendgrid.credential-set.ts
|
|
5
5
|
const sendgridAuthSchema = z.object({
|
|
6
6
|
SENDGRID_API_KEY: z.string().min(1).regex(/^SG\./u, "SendGrid API keys start with \"SG.\""),
|
|
7
7
|
SENDGRID_SUBUSER: z.string().min(1).optional(),
|
|
@@ -9,16 +9,17 @@ const sendgridAuthSchema = z.object({
|
|
|
9
9
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.string().min(1).optional(),
|
|
10
10
|
SENDGRID_INBOUND_PARSE_TOKEN: z.string().min(1).optional()
|
|
11
11
|
});
|
|
12
|
-
|
|
12
|
+
/**
|
|
13
|
+
* SendGrid integration — static API-key authentication with optional subuser,
|
|
14
|
+
* EU region routing, and webhook verification fields.
|
|
15
|
+
*/
|
|
16
|
+
const sendgridCredentialSet = new CredentialSet({
|
|
13
17
|
id: "sendgrid",
|
|
14
18
|
name: "SendGrid",
|
|
15
19
|
description: "SendGrid (Twilio) transactional + marketing email, templates, contacts, lists, segments, deliverability, and webhook helpers for Keystroke workflows",
|
|
16
|
-
credentialType: "manual",
|
|
17
20
|
auth: sendgridAuthSchema,
|
|
18
21
|
proxy: { hosts: ["api.sendgrid.com", "api.eu.sendgrid.com"] }
|
|
19
|
-
};
|
|
20
|
-
const sendgridBundle = defineOfficialIntegration(sendgridOfficialIntegration);
|
|
21
|
-
const sendgrid = sendgridBundle.credentialSet;
|
|
22
|
+
});
|
|
22
23
|
|
|
23
24
|
//#endregion
|
|
24
|
-
export {
|
|
25
|
+
export { sendgridCredentialSet as t };
|