@keystrokehq/sendgrid 0.0.9 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_official/index.d.mts +1 -1
- package/dist/_official/index.mjs +1 -1
- package/dist/alerts.d.mts +11 -57
- package/dist/alerts.mjs +2 -2
- package/dist/api-keys.d.mts +13 -68
- package/dist/api-keys.mjs +2 -2
- package/dist/client.d.mts +1 -1
- package/dist/client.mjs +3 -2
- package/dist/connection.d.mts +1 -1
- package/dist/connection.mjs +1 -1
- package/dist/domains.d.mts +7 -35
- package/dist/domains.mjs +2 -2
- package/dist/email-validation.d.mts +10 -47
- package/dist/email-validation.mjs +2 -2
- package/dist/{factory-CToXR1jp.mjs → factory-7q6CQ75J.mjs} +2 -1
- package/dist/{integration-zx-jmybs.d.mts → integration-Cj4Xzfq_.d.mts} +6 -14
- package/dist/integration-DHWfpe0w.mjs +24 -0
- package/dist/mail-send.d.mts +17 -90
- package/dist/mail-send.mjs +2 -2
- package/dist/marketing-contacts.d.mts +33 -178
- package/dist/marketing-contacts.mjs +2 -2
- package/dist/marketing-customfields.d.mts +7 -35
- package/dist/marketing-customfields.mjs +1 -1
- package/dist/marketing-lists.d.mts +15 -79
- package/dist/marketing-lists.mjs +2 -2
- package/dist/marketing-segments.d.mts +21 -112
- package/dist/marketing-segments.mjs +2 -2
- package/dist/marketing-singlesends.d.mts +31 -158
- package/dist/marketing-singlesends.mjs +2 -2
- package/dist/schemas/index.d.mts +3 -3
- package/dist/sender-identities.d.mts +13 -68
- package/dist/sender-identities.mjs +1 -1
- package/dist/senders.d.mts +11 -57
- package/dist/senders.mjs +1 -1
- package/dist/shared-CQ8JFNXi.mjs +13 -0
- package/dist/stats.d.mts +12 -58
- package/dist/stats.mjs +2 -2
- package/dist/suppressions.d.mts +63 -343
- package/dist/suppressions.mjs +2 -2
- package/dist/templates.d.mts +30 -130
- package/dist/templates.mjs +2 -2
- package/dist/user-account.d.mts +9 -46
- package/dist/user-account.mjs +1 -1
- package/dist/webhooks/event.d.mts +17 -90
- package/dist/webhooks/event.mjs +2 -2
- package/dist/webhooks/parse.d.mts +13 -68
- package/dist/webhooks/parse.mjs +2 -2
- package/package.json +5 -5
- package/dist/integration-C9EALG65.mjs +0 -113
- package/dist/shared-BayZ0Lt6.mjs +0 -46
package/dist/suppressions.d.mts
CHANGED
|
@@ -1,22 +1,12 @@
|
|
|
1
|
-
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
2
1
|
import { z } from "zod";
|
|
3
|
-
import * as
|
|
2
|
+
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
4
3
|
|
|
5
4
|
//#region src/suppressions.d.ts
|
|
6
5
|
declare const addGlobalSuppressions: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
7
6
|
recipientEmails: z.ZodArray<z.ZodString>;
|
|
8
7
|
}, z.core.$strip>, z.ZodObject<{
|
|
9
8
|
recipient_emails: z.ZodArray<z.ZodString>;
|
|
10
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
11
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
12
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
13
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
14
|
-
global: "global";
|
|
15
|
-
eu: "eu";
|
|
16
|
-
}>>;
|
|
17
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
18
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
19
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
9
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
20
10
|
SENDGRID_API_KEY: z.ZodString;
|
|
21
11
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
22
12
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -25,21 +15,12 @@ declare const addGlobalSuppressions: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
25
15
|
}>>;
|
|
26
16
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
27
17
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
28
|
-
}, z.core.$strip>>
|
|
18
|
+
}, z.core.$strip>>], undefined>;
|
|
29
19
|
declare const deleteGlobalSuppression: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
30
20
|
email: z.ZodString;
|
|
31
21
|
}, z.core.$strip>, z.ZodObject<{
|
|
32
22
|
success: z.ZodBoolean;
|
|
33
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
34
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
35
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
36
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
37
|
-
global: "global";
|
|
38
|
-
eu: "eu";
|
|
39
|
-
}>>;
|
|
40
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
41
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
42
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
23
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
43
24
|
SENDGRID_API_KEY: z.ZodString;
|
|
44
25
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
45
26
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -48,22 +29,13 @@ declare const deleteGlobalSuppression: _keystrokehq_core0.Operation<z.ZodObject<
|
|
|
48
29
|
}>>;
|
|
49
30
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
50
31
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
51
|
-
}, z.core.$strip>>
|
|
32
|
+
}, z.core.$strip>>], undefined>;
|
|
52
33
|
declare const getGlobalSuppression: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
53
34
|
email: z.ZodString;
|
|
54
35
|
}, z.core.$strip>, z.ZodObject<{
|
|
55
36
|
recipient_email: z.ZodString;
|
|
56
37
|
created: z.ZodOptional<z.ZodNumber>;
|
|
57
|
-
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
58
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
59
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
60
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
61
|
-
global: "global";
|
|
62
|
-
eu: "eu";
|
|
63
|
-
}>>;
|
|
64
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
65
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
66
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
38
|
+
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
67
39
|
SENDGRID_API_KEY: z.ZodString;
|
|
68
40
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
69
41
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -72,7 +44,7 @@ declare const getGlobalSuppression: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
72
44
|
}>>;
|
|
73
45
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
74
46
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
75
|
-
}, z.core.$strip>>
|
|
47
|
+
}, z.core.$strip>>], undefined>;
|
|
76
48
|
declare const listGlobalSuppressions: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{
|
|
77
49
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
78
50
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
@@ -82,7 +54,7 @@ declare const listGlobalSuppressions: _keystrokehq_core0.Operation<z.ZodOptional
|
|
|
82
54
|
}, z.core.$strip>>, z.ZodArray<z.ZodObject<{
|
|
83
55
|
recipient_email: z.ZodString;
|
|
84
56
|
created: z.ZodOptional<z.ZodNumber>;
|
|
85
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
57
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
86
58
|
SENDGRID_API_KEY: z.ZodString;
|
|
87
59
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
88
60
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -91,16 +63,7 @@ declare const listGlobalSuppressions: _keystrokehq_core0.Operation<z.ZodOptional
|
|
|
91
63
|
}>>;
|
|
92
64
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
93
65
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
94
|
-
}, z.core.$strip
|
|
95
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
96
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
97
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
98
|
-
global: "global";
|
|
99
|
-
eu: "eu";
|
|
100
|
-
}>>;
|
|
101
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
102
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
103
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
66
|
+
}, z.core.$strip>>], undefined>;
|
|
104
67
|
declare const createSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
105
68
|
name: z.ZodString;
|
|
106
69
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -111,16 +74,7 @@ declare const createSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
111
74
|
description: z.ZodOptional<z.ZodString>;
|
|
112
75
|
is_default: z.ZodOptional<z.ZodBoolean>;
|
|
113
76
|
unsubscribes: z.ZodOptional<z.ZodNumber>;
|
|
114
|
-
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
115
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
116
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
117
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
118
|
-
global: "global";
|
|
119
|
-
eu: "eu";
|
|
120
|
-
}>>;
|
|
121
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
122
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
123
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
77
|
+
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
124
78
|
SENDGRID_API_KEY: z.ZodString;
|
|
125
79
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
126
80
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -129,7 +83,7 @@ declare const createSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
129
83
|
}>>;
|
|
130
84
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
131
85
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
132
|
-
}, z.core.$strip>>
|
|
86
|
+
}, z.core.$strip>>], undefined>;
|
|
133
87
|
declare const updateSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
134
88
|
groupId: z.ZodNumber;
|
|
135
89
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -141,7 +95,7 @@ declare const updateSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
141
95
|
description: z.ZodOptional<z.ZodString>;
|
|
142
96
|
is_default: z.ZodOptional<z.ZodBoolean>;
|
|
143
97
|
unsubscribes: z.ZodOptional<z.ZodNumber>;
|
|
144
|
-
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
98
|
+
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
145
99
|
SENDGRID_API_KEY: z.ZodString;
|
|
146
100
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
147
101
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -150,21 +104,12 @@ declare const updateSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
150
104
|
}>>;
|
|
151
105
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
152
106
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
153
|
-
}, z.core.$strip
|
|
154
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
155
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
156
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
157
|
-
global: "global";
|
|
158
|
-
eu: "eu";
|
|
159
|
-
}>>;
|
|
160
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
161
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
162
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
107
|
+
}, z.core.$strip>>], undefined>;
|
|
163
108
|
declare const deleteSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
164
109
|
groupId: z.ZodNumber;
|
|
165
110
|
}, z.core.$strip>, z.ZodObject<{
|
|
166
111
|
success: z.ZodBoolean;
|
|
167
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
112
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
168
113
|
SENDGRID_API_KEY: z.ZodString;
|
|
169
114
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
170
115
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -173,23 +118,14 @@ declare const deleteSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
173
118
|
}>>;
|
|
174
119
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
175
120
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
176
|
-
}, z.core.$strip
|
|
177
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
178
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
179
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
180
|
-
global: "global";
|
|
181
|
-
eu: "eu";
|
|
182
|
-
}>>;
|
|
183
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
184
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
185
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
121
|
+
}, z.core.$strip>>], undefined>;
|
|
186
122
|
declare const listSuppressionGroups: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{}, z.core.$strip>>, z.ZodArray<z.ZodObject<{
|
|
187
123
|
id: z.ZodNumber;
|
|
188
124
|
name: z.ZodString;
|
|
189
125
|
description: z.ZodOptional<z.ZodString>;
|
|
190
126
|
is_default: z.ZodOptional<z.ZodBoolean>;
|
|
191
127
|
unsubscribes: z.ZodOptional<z.ZodNumber>;
|
|
192
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
128
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
193
129
|
SENDGRID_API_KEY: z.ZodString;
|
|
194
130
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
195
131
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -198,16 +134,7 @@ declare const listSuppressionGroups: _keystrokehq_core0.Operation<z.ZodOptional<
|
|
|
198
134
|
}>>;
|
|
199
135
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
200
136
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
201
|
-
}, z.core.$strip
|
|
202
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
203
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
204
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
205
|
-
global: "global";
|
|
206
|
-
eu: "eu";
|
|
207
|
-
}>>;
|
|
208
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
209
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
210
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
137
|
+
}, z.core.$strip>>], undefined>;
|
|
211
138
|
declare const getSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
212
139
|
groupId: z.ZodNumber;
|
|
213
140
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -216,16 +143,7 @@ declare const getSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
216
143
|
description: z.ZodOptional<z.ZodString>;
|
|
217
144
|
is_default: z.ZodOptional<z.ZodBoolean>;
|
|
218
145
|
unsubscribes: z.ZodOptional<z.ZodNumber>;
|
|
219
|
-
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
220
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
221
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
222
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
223
|
-
global: "global";
|
|
224
|
-
eu: "eu";
|
|
225
|
-
}>>;
|
|
226
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
227
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
228
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
146
|
+
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
229
147
|
SENDGRID_API_KEY: z.ZodString;
|
|
230
148
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
231
149
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -234,13 +152,13 @@ declare const getSuppressionGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
234
152
|
}>>;
|
|
235
153
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
236
154
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
237
|
-
}, z.core.$strip>>
|
|
155
|
+
}, z.core.$strip>>], undefined>;
|
|
238
156
|
declare const addSuppressionsToGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
239
157
|
groupId: z.ZodNumber;
|
|
240
158
|
recipientEmails: z.ZodArray<z.ZodString>;
|
|
241
159
|
}, z.core.$strip>, z.ZodObject<{
|
|
242
160
|
recipient_emails: z.ZodArray<z.ZodString>;
|
|
243
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
161
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
244
162
|
SENDGRID_API_KEY: z.ZodString;
|
|
245
163
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
246
164
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -249,22 +167,13 @@ declare const addSuppressionsToGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
249
167
|
}>>;
|
|
250
168
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
251
169
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
252
|
-
}, z.core.$strip
|
|
253
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
254
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
255
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
256
|
-
global: "global";
|
|
257
|
-
eu: "eu";
|
|
258
|
-
}>>;
|
|
259
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
260
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
261
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
170
|
+
}, z.core.$strip>>], undefined>;
|
|
262
171
|
declare const deleteSuppressionFromGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
263
172
|
groupId: z.ZodNumber;
|
|
264
173
|
email: z.ZodString;
|
|
265
174
|
}, z.core.$strip>, z.ZodObject<{
|
|
266
175
|
success: z.ZodBoolean;
|
|
267
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
176
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
268
177
|
SENDGRID_API_KEY: z.ZodString;
|
|
269
178
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
270
179
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -273,28 +182,10 @@ declare const deleteSuppressionFromGroup: _keystrokehq_core0.Operation<z.ZodObje
|
|
|
273
182
|
}>>;
|
|
274
183
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
275
184
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
276
|
-
}, z.core.$strip
|
|
277
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
278
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
279
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
280
|
-
global: "global";
|
|
281
|
-
eu: "eu";
|
|
282
|
-
}>>;
|
|
283
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
284
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
285
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
185
|
+
}, z.core.$strip>>], undefined>;
|
|
286
186
|
declare const listGroupSuppressions: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
287
187
|
groupId: z.ZodNumber;
|
|
288
|
-
}, z.core.$strip>, z.ZodArray<z.ZodString>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
289
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
290
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
291
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
292
|
-
global: "global";
|
|
293
|
-
eu: "eu";
|
|
294
|
-
}>>;
|
|
295
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
296
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
297
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
188
|
+
}, z.core.$strip>, z.ZodArray<z.ZodString>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
298
189
|
SENDGRID_API_KEY: z.ZodString;
|
|
299
190
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
300
191
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -303,21 +194,12 @@ declare const listGroupSuppressions: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
303
194
|
}>>;
|
|
304
195
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
305
196
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
306
|
-
}, z.core.$strip>>
|
|
197
|
+
}, z.core.$strip>>], undefined>;
|
|
307
198
|
declare const listAllSuppressions: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{}, z.core.$strip>>, z.ZodArray<z.ZodObject<{
|
|
308
199
|
id: z.ZodOptional<z.ZodNumber>;
|
|
309
200
|
group_id: z.ZodOptional<z.ZodNumber>;
|
|
310
201
|
email: z.ZodString;
|
|
311
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
312
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
313
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
314
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
315
|
-
global: "global";
|
|
316
|
-
eu: "eu";
|
|
317
|
-
}>>;
|
|
318
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
319
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
320
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
202
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
321
203
|
SENDGRID_API_KEY: z.ZodString;
|
|
322
204
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
323
205
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -326,7 +208,7 @@ declare const listAllSuppressions: _keystrokehq_core0.Operation<z.ZodOptional<z.
|
|
|
326
208
|
}>>;
|
|
327
209
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
328
210
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
329
|
-
}, z.core.$strip>>
|
|
211
|
+
}, z.core.$strip>>], undefined>;
|
|
330
212
|
declare const listGroupsForEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
331
213
|
email: z.ZodString;
|
|
332
214
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
@@ -334,7 +216,7 @@ declare const listGroupsForEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
334
216
|
name: z.ZodString;
|
|
335
217
|
description: z.ZodOptional<z.ZodString>;
|
|
336
218
|
suppressed: z.ZodOptional<z.ZodBoolean>;
|
|
337
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
219
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
338
220
|
SENDGRID_API_KEY: z.ZodString;
|
|
339
221
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
340
222
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -343,22 +225,13 @@ declare const listGroupsForEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
343
225
|
}>>;
|
|
344
226
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
345
227
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
346
|
-
}, z.core.$strip
|
|
347
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
348
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
349
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
350
|
-
global: "global";
|
|
351
|
-
eu: "eu";
|
|
352
|
-
}>>;
|
|
353
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
354
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
355
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
228
|
+
}, z.core.$strip>>], undefined>;
|
|
356
229
|
declare const searchSuppressionsInGroup: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
357
230
|
groupId: z.ZodNumber;
|
|
358
231
|
recipientEmails: z.ZodArray<z.ZodString>;
|
|
359
232
|
}, z.core.$strip>, z.ZodObject<{
|
|
360
233
|
recipient_emails: z.ZodArray<z.ZodString>;
|
|
361
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
234
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
362
235
|
SENDGRID_API_KEY: z.ZodString;
|
|
363
236
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
364
237
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -367,16 +240,7 @@ declare const searchSuppressionsInGroup: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
367
240
|
}>>;
|
|
368
241
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
369
242
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
370
|
-
}, z.core.$strip
|
|
371
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
372
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
373
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
374
|
-
global: "global";
|
|
375
|
-
eu: "eu";
|
|
376
|
-
}>>;
|
|
377
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
378
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
379
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
243
|
+
}, z.core.$strip>>], undefined>;
|
|
380
244
|
declare const listBounces: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{
|
|
381
245
|
startTime: z.ZodOptional<z.ZodNumber>;
|
|
382
246
|
endTime: z.ZodOptional<z.ZodNumber>;
|
|
@@ -387,16 +251,7 @@ declare const listBounces: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObjec
|
|
|
387
251
|
email: z.ZodString;
|
|
388
252
|
reason: z.ZodOptional<z.ZodString>;
|
|
389
253
|
status: z.ZodOptional<z.ZodString>;
|
|
390
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
391
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
392
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
393
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
394
|
-
global: "global";
|
|
395
|
-
eu: "eu";
|
|
396
|
-
}>>;
|
|
397
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
398
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
399
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
254
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
400
255
|
SENDGRID_API_KEY: z.ZodString;
|
|
401
256
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
402
257
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -405,7 +260,7 @@ declare const listBounces: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObjec
|
|
|
405
260
|
}>>;
|
|
406
261
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
407
262
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
408
|
-
}, z.core.$strip>>
|
|
263
|
+
}, z.core.$strip>>], undefined>;
|
|
409
264
|
declare const getBounce: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
410
265
|
email: z.ZodString;
|
|
411
266
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
@@ -413,16 +268,7 @@ declare const getBounce: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
413
268
|
email: z.ZodString;
|
|
414
269
|
reason: z.ZodOptional<z.ZodString>;
|
|
415
270
|
status: z.ZodOptional<z.ZodString>;
|
|
416
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
417
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
418
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
419
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
420
|
-
global: "global";
|
|
421
|
-
eu: "eu";
|
|
422
|
-
}>>;
|
|
423
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
424
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
425
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
271
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
426
272
|
SENDGRID_API_KEY: z.ZodString;
|
|
427
273
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
428
274
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -431,21 +277,12 @@ declare const getBounce: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
431
277
|
}>>;
|
|
432
278
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
433
279
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
434
|
-
}, z.core.$strip>>
|
|
280
|
+
}, z.core.$strip>>], undefined>;
|
|
435
281
|
declare const deleteBounce: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
436
282
|
email: z.ZodString;
|
|
437
283
|
}, z.core.$strip>, z.ZodObject<{
|
|
438
284
|
success: z.ZodBoolean;
|
|
439
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
440
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
441
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
442
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
443
|
-
global: "global";
|
|
444
|
-
eu: "eu";
|
|
445
|
-
}>>;
|
|
446
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
447
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
448
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
285
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
449
286
|
SENDGRID_API_KEY: z.ZodString;
|
|
450
287
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
451
288
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -454,22 +291,13 @@ declare const deleteBounce: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
454
291
|
}>>;
|
|
455
292
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
456
293
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
457
|
-
}, z.core.$strip>>
|
|
294
|
+
}, z.core.$strip>>], undefined>;
|
|
458
295
|
declare const deleteBounces: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
459
296
|
emails: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
460
297
|
deleteAll: z.ZodOptional<z.ZodBoolean>;
|
|
461
298
|
}, z.core.$strip>, z.ZodObject<{
|
|
462
299
|
success: z.ZodBoolean;
|
|
463
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
464
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
465
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
466
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
467
|
-
global: "global";
|
|
468
|
-
eu: "eu";
|
|
469
|
-
}>>;
|
|
470
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
471
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
472
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
300
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
473
301
|
SENDGRID_API_KEY: z.ZodString;
|
|
474
302
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
475
303
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -478,7 +306,7 @@ declare const deleteBounces: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
478
306
|
}>>;
|
|
479
307
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
480
308
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
481
|
-
}, z.core.$strip>>
|
|
309
|
+
}, z.core.$strip>>], undefined>;
|
|
482
310
|
declare const listBlocks: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{
|
|
483
311
|
startTime: z.ZodOptional<z.ZodNumber>;
|
|
484
312
|
endTime: z.ZodOptional<z.ZodNumber>;
|
|
@@ -489,7 +317,7 @@ declare const listBlocks: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject
|
|
|
489
317
|
email: z.ZodString;
|
|
490
318
|
reason: z.ZodOptional<z.ZodString>;
|
|
491
319
|
status: z.ZodOptional<z.ZodString>;
|
|
492
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
320
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
493
321
|
SENDGRID_API_KEY: z.ZodString;
|
|
494
322
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
495
323
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -498,16 +326,7 @@ declare const listBlocks: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject
|
|
|
498
326
|
}>>;
|
|
499
327
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
500
328
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
501
|
-
}, z.core.$strip
|
|
502
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
503
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
504
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
505
|
-
global: "global";
|
|
506
|
-
eu: "eu";
|
|
507
|
-
}>>;
|
|
508
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
509
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
510
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
329
|
+
}, z.core.$strip>>], undefined>;
|
|
511
330
|
declare const getBlock: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
512
331
|
email: z.ZodString;
|
|
513
332
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
@@ -515,16 +334,7 @@ declare const getBlock: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
515
334
|
email: z.ZodString;
|
|
516
335
|
reason: z.ZodOptional<z.ZodString>;
|
|
517
336
|
status: z.ZodOptional<z.ZodString>;
|
|
518
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
519
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
520
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
521
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
522
|
-
global: "global";
|
|
523
|
-
eu: "eu";
|
|
524
|
-
}>>;
|
|
525
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
526
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
527
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
337
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
528
338
|
SENDGRID_API_KEY: z.ZodString;
|
|
529
339
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
530
340
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -533,12 +343,12 @@ declare const getBlock: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
533
343
|
}>>;
|
|
534
344
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
535
345
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
536
|
-
}, z.core.$strip>>
|
|
346
|
+
}, z.core.$strip>>], undefined>;
|
|
537
347
|
declare const deleteBlock: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
538
348
|
email: z.ZodString;
|
|
539
349
|
}, z.core.$strip>, z.ZodObject<{
|
|
540
350
|
success: z.ZodBoolean;
|
|
541
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
351
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
542
352
|
SENDGRID_API_KEY: z.ZodString;
|
|
543
353
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
544
354
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -547,22 +357,13 @@ declare const deleteBlock: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
547
357
|
}>>;
|
|
548
358
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
549
359
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
550
|
-
}, z.core.$strip
|
|
551
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
552
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
553
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
554
|
-
global: "global";
|
|
555
|
-
eu: "eu";
|
|
556
|
-
}>>;
|
|
557
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
558
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
559
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
360
|
+
}, z.core.$strip>>], undefined>;
|
|
560
361
|
declare const deleteBlocks: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
561
362
|
emails: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
562
363
|
deleteAll: z.ZodOptional<z.ZodBoolean>;
|
|
563
364
|
}, z.core.$strip>, z.ZodObject<{
|
|
564
365
|
success: z.ZodBoolean;
|
|
565
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
366
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
566
367
|
SENDGRID_API_KEY: z.ZodString;
|
|
567
368
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
568
369
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -571,16 +372,7 @@ declare const deleteBlocks: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
571
372
|
}>>;
|
|
572
373
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
573
374
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
574
|
-
}, z.core.$strip
|
|
575
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
576
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
577
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
578
|
-
global: "global";
|
|
579
|
-
eu: "eu";
|
|
580
|
-
}>>;
|
|
581
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
582
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
583
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
375
|
+
}, z.core.$strip>>], undefined>;
|
|
584
376
|
declare const listInvalidEmails: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{
|
|
585
377
|
startTime: z.ZodOptional<z.ZodNumber>;
|
|
586
378
|
endTime: z.ZodOptional<z.ZodNumber>;
|
|
@@ -590,7 +382,7 @@ declare const listInvalidEmails: _keystrokehq_core0.Operation<z.ZodOptional<z.Zo
|
|
|
590
382
|
created: z.ZodNumber;
|
|
591
383
|
email: z.ZodString;
|
|
592
384
|
reason: z.ZodOptional<z.ZodString>;
|
|
593
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
385
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
594
386
|
SENDGRID_API_KEY: z.ZodString;
|
|
595
387
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
596
388
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -599,32 +391,14 @@ declare const listInvalidEmails: _keystrokehq_core0.Operation<z.ZodOptional<z.Zo
|
|
|
599
391
|
}>>;
|
|
600
392
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
601
393
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
602
|
-
}, z.core.$strip
|
|
603
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
604
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
605
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
606
|
-
global: "global";
|
|
607
|
-
eu: "eu";
|
|
608
|
-
}>>;
|
|
609
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
610
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
611
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
394
|
+
}, z.core.$strip>>], undefined>;
|
|
612
395
|
declare const getInvalidEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
613
396
|
email: z.ZodString;
|
|
614
397
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
615
398
|
created: z.ZodNumber;
|
|
616
399
|
email: z.ZodString;
|
|
617
400
|
reason: z.ZodOptional<z.ZodString>;
|
|
618
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
619
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
620
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
621
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
622
|
-
global: "global";
|
|
623
|
-
eu: "eu";
|
|
624
|
-
}>>;
|
|
625
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
626
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
627
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
401
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
628
402
|
SENDGRID_API_KEY: z.ZodString;
|
|
629
403
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
630
404
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -633,12 +407,12 @@ declare const getInvalidEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
633
407
|
}>>;
|
|
634
408
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
635
409
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
636
|
-
}, z.core.$strip>>
|
|
410
|
+
}, z.core.$strip>>], undefined>;
|
|
637
411
|
declare const deleteInvalidEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
638
412
|
email: z.ZodString;
|
|
639
413
|
}, z.core.$strip>, z.ZodObject<{
|
|
640
414
|
success: z.ZodBoolean;
|
|
641
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
415
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
642
416
|
SENDGRID_API_KEY: z.ZodString;
|
|
643
417
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
644
418
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -647,22 +421,13 @@ declare const deleteInvalidEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
647
421
|
}>>;
|
|
648
422
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
649
423
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
650
|
-
}, z.core.$strip
|
|
651
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
652
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
653
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
654
|
-
global: "global";
|
|
655
|
-
eu: "eu";
|
|
656
|
-
}>>;
|
|
657
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
658
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
659
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
424
|
+
}, z.core.$strip>>], undefined>;
|
|
660
425
|
declare const deleteInvalidEmails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
661
426
|
emails: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
662
427
|
deleteAll: z.ZodOptional<z.ZodBoolean>;
|
|
663
428
|
}, z.core.$strip>, z.ZodObject<{
|
|
664
429
|
success: z.ZodBoolean;
|
|
665
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
430
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
666
431
|
SENDGRID_API_KEY: z.ZodString;
|
|
667
432
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
668
433
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -671,16 +436,7 @@ declare const deleteInvalidEmails: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
671
436
|
}>>;
|
|
672
437
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
673
438
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
674
|
-
}, z.core.$strip
|
|
675
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
676
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
677
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
678
|
-
global: "global";
|
|
679
|
-
eu: "eu";
|
|
680
|
-
}>>;
|
|
681
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
682
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
683
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
439
|
+
}, z.core.$strip>>], undefined>;
|
|
684
440
|
declare const listSpamReports: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{
|
|
685
441
|
startTime: z.ZodOptional<z.ZodNumber>;
|
|
686
442
|
endTime: z.ZodOptional<z.ZodNumber>;
|
|
@@ -690,16 +446,7 @@ declare const listSpamReports: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodO
|
|
|
690
446
|
created: z.ZodNumber;
|
|
691
447
|
email: z.ZodString;
|
|
692
448
|
ip: z.ZodOptional<z.ZodString>;
|
|
693
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
694
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
695
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
696
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
697
|
-
global: "global";
|
|
698
|
-
eu: "eu";
|
|
699
|
-
}>>;
|
|
700
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
701
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
702
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
449
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
703
450
|
SENDGRID_API_KEY: z.ZodString;
|
|
704
451
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
705
452
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -708,23 +455,14 @@ declare const listSpamReports: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodO
|
|
|
708
455
|
}>>;
|
|
709
456
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
710
457
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
711
|
-
}, z.core.$strip>>
|
|
458
|
+
}, z.core.$strip>>], undefined>;
|
|
712
459
|
declare const getSpamReport: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
713
460
|
email: z.ZodString;
|
|
714
461
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
715
462
|
created: z.ZodNumber;
|
|
716
463
|
email: z.ZodString;
|
|
717
464
|
ip: z.ZodOptional<z.ZodString>;
|
|
718
|
-
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
719
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
720
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
721
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
722
|
-
global: "global";
|
|
723
|
-
eu: "eu";
|
|
724
|
-
}>>;
|
|
725
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
726
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
727
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
465
|
+
}, z.core.$catchall<z.ZodUnknown>>>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
728
466
|
SENDGRID_API_KEY: z.ZodString;
|
|
729
467
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
730
468
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -733,12 +471,12 @@ declare const getSpamReport: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
733
471
|
}>>;
|
|
734
472
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
735
473
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
736
|
-
}, z.core.$strip>>
|
|
474
|
+
}, z.core.$strip>>], undefined>;
|
|
737
475
|
declare const deleteSpamReport: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
738
476
|
email: z.ZodString;
|
|
739
477
|
}, z.core.$strip>, z.ZodObject<{
|
|
740
478
|
success: z.ZodBoolean;
|
|
741
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
479
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
742
480
|
SENDGRID_API_KEY: z.ZodString;
|
|
743
481
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
744
482
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -747,31 +485,13 @@ declare const deleteSpamReport: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
747
485
|
}>>;
|
|
748
486
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
749
487
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
750
|
-
}, z.core.$strip
|
|
751
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
752
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
753
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
754
|
-
global: "global";
|
|
755
|
-
eu: "eu";
|
|
756
|
-
}>>;
|
|
757
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
758
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
759
|
-
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
488
|
+
}, z.core.$strip>>], undefined>;
|
|
760
489
|
declare const deleteSpamReports: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
761
490
|
emails: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
762
491
|
deleteAll: z.ZodOptional<z.ZodBoolean>;
|
|
763
492
|
}, z.core.$strip>, z.ZodObject<{
|
|
764
493
|
success: z.ZodBoolean;
|
|
765
|
-
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"sendgrid", z.ZodObject<{
|
|
766
|
-
SENDGRID_API_KEY: z.ZodString;
|
|
767
|
-
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
768
|
-
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
769
|
-
global: "global";
|
|
770
|
-
eu: "eu";
|
|
771
|
-
}>>;
|
|
772
|
-
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
773
|
-
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
774
|
-
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
494
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:sendgrid", z.ZodObject<{
|
|
775
495
|
SENDGRID_API_KEY: z.ZodString;
|
|
776
496
|
SENDGRID_SUBUSER: z.ZodOptional<z.ZodString>;
|
|
777
497
|
SENDGRID_ACCOUNT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
@@ -780,6 +500,6 @@ declare const deleteSpamReports: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
780
500
|
}>>;
|
|
781
501
|
SENDGRID_EVENT_WEBHOOK_PUBLIC_KEY: z.ZodOptional<z.ZodString>;
|
|
782
502
|
SENDGRID_INBOUND_PARSE_TOKEN: z.ZodOptional<z.ZodString>;
|
|
783
|
-
}, z.core.$strip>>
|
|
503
|
+
}, z.core.$strip>>], undefined>;
|
|
784
504
|
//#endregion
|
|
785
505
|
export { addGlobalSuppressions, addSuppressionsToGroup, createSuppressionGroup, deleteBlock, deleteBlocks, deleteBounce, deleteBounces, deleteGlobalSuppression, deleteInvalidEmail, deleteInvalidEmails, deleteSpamReport, deleteSpamReports, deleteSuppressionFromGroup, deleteSuppressionGroup, getBlock, getBounce, getGlobalSuppression, getInvalidEmail, getSpamReport, getSuppressionGroup, listAllSuppressions, listBlocks, listBounces, listGlobalSuppressions, listGroupSuppressions, listGroupsForEmail, listInvalidEmails, listSpamReports, listSuppressionGroups, searchSuppressionsInGroup, updateSuppressionGroup };
|