@keystrokehq/sendgrid 0.0.4 → 0.0.6-rename-t1.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.
@@ -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;
package/dist/events.d.mts CHANGED
@@ -8,17 +8,17 @@ import { z } from "zod";
8
8
  declare const sendgridEventWebhookEventNames: readonly ["processed", "dropped", "deferred", "delivered", "bounce", "open", "click", "spam_report", "unsubscribe", "group_unsubscribe", "group_resubscribe"];
9
9
  type SendGridEventWebhookEventName = (typeof sendgridEventWebhookEventNames)[number];
10
10
  declare const sendgridEventWebhookEventNameSchema: z.ZodEnum<{
11
+ delivered: "delivered";
11
12
  processed: "processed";
12
- dropped: "dropped";
13
13
  deferred: "deferred";
14
- delivered: "delivered";
14
+ group_resubscribe: "group_resubscribe";
15
+ group_unsubscribe: "group_unsubscribe";
16
+ spam_report: "spam_report";
15
17
  bounce: "bounce";
18
+ unsubscribe: "unsubscribe";
16
19
  open: "open";
17
20
  click: "click";
18
- spam_report: "spam_report";
19
- unsubscribe: "unsubscribe";
20
- group_unsubscribe: "group_unsubscribe";
21
- group_resubscribe: "group_resubscribe";
21
+ dropped: "dropped";
22
22
  }>;
23
23
  declare const sendgridEventEnvelopeSchema: z.ZodArray<z.ZodObject<{
24
24
  email: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/sendgrid",
3
- "version": "0.0.4",
3
+ "version": "0.0.6-rename-t1.0",
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/core": "^0.0.7",
120
- "@keystrokehq/integration-authoring": "^0.0.4",
119
+ "@keystrokehq/integration-authoring": "^0.0.6-rename-t1.0",
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
  },