@keystrokehq/sendgrid 0.0.4 → 0.0.5
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.
|
@@ -101,8 +101,8 @@ declare const getBulkEmailValidationJob: _keystrokehq_core0.Operation<z.ZodObjec
|
|
|
101
101
|
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
102
102
|
declare const createBulkEmailValidationPresignedUrl: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
103
103
|
fileType: z.ZodDefault<z.ZodEnum<{
|
|
104
|
-
zip: "zip";
|
|
105
104
|
csv: "csv";
|
|
105
|
+
zip: "zip";
|
|
106
106
|
}>>;
|
|
107
107
|
}, z.core.$strip>, z.ZodObject<{
|
|
108
108
|
job_id: z.ZodString;
|
|
@@ -557,10 +557,10 @@ declare const sendTestMarketingEmail: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
557
557
|
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
558
558
|
declare const listSingleSendStats: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{
|
|
559
559
|
aggregatedBy: z.ZodOptional<z.ZodEnum<{
|
|
560
|
+
total: "total";
|
|
560
561
|
day: "day";
|
|
561
562
|
week: "week";
|
|
562
563
|
month: "month";
|
|
563
|
-
total: "total";
|
|
564
564
|
}>>;
|
|
565
565
|
pageSize: z.ZodOptional<z.ZodNumber>;
|
|
566
566
|
}, z.core.$strip>>, z.ZodObject<{
|
|
@@ -591,10 +591,10 @@ declare const listSingleSendStats: _keystrokehq_core0.Operation<z.ZodOptional<z.
|
|
|
591
591
|
declare const getSingleSendStats: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
592
592
|
id: z.ZodString;
|
|
593
593
|
aggregatedBy: z.ZodOptional<z.ZodEnum<{
|
|
594
|
+
total: "total";
|
|
594
595
|
day: "day";
|
|
595
596
|
week: "week";
|
|
596
597
|
month: "month";
|
|
597
|
-
total: "total";
|
|
598
598
|
}>>;
|
|
599
599
|
}, z.core.$strip>, z.ZodObject<{
|
|
600
600
|
id: z.ZodString;
|
package/dist/stats.d.mts
CHANGED
|
@@ -107,10 +107,10 @@ declare const getCategoryStats: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
107
107
|
declare const listAutomationStats: _keystrokehq_core0.Operation<z.ZodOptional<z.ZodObject<{
|
|
108
108
|
pageSize: z.ZodOptional<z.ZodNumber>;
|
|
109
109
|
aggregatedBy: z.ZodOptional<z.ZodEnum<{
|
|
110
|
+
total: "total";
|
|
110
111
|
day: "day";
|
|
111
112
|
week: "week";
|
|
112
113
|
month: "month";
|
|
113
|
-
total: "total";
|
|
114
114
|
}>>;
|
|
115
115
|
}, z.core.$strip>>, z.ZodObject<{
|
|
116
116
|
results: z.ZodArray<z.ZodUnknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/sendgrid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -116,15 +116,18 @@
|
|
|
116
116
|
"LICENSE"
|
|
117
117
|
],
|
|
118
118
|
"dependencies": {
|
|
119
|
-
"@keystrokehq/
|
|
120
|
-
"@keystrokehq/integration-authoring": "^0.0.4",
|
|
119
|
+
"@keystrokehq/integration-authoring": "^0.0.5",
|
|
121
120
|
"zod": "^4.3.6"
|
|
122
121
|
},
|
|
122
|
+
"peerDependencies": {
|
|
123
|
+
"@keystrokehq/core": ">=0.0.7 <0.1.0"
|
|
124
|
+
},
|
|
123
125
|
"devDependencies": {
|
|
124
126
|
"@types/node": "^22.19.11",
|
|
125
127
|
"tsdown": "^0.20.3",
|
|
126
128
|
"typescript": "^5.9.3",
|
|
127
129
|
"vitest": "^4.0.18",
|
|
130
|
+
"@keystrokehq/core": "^0.0.7",
|
|
128
131
|
"@keystrokehq/test-utils": "0.0.0",
|
|
129
132
|
"@keystrokehq/typescript-config": "0.0.0"
|
|
130
133
|
},
|