@keystrokehq/sendgrid 0.0.6-rename-t1.0 → 0.0.7

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/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";
12
11
  processed: "processed";
12
+ dropped: "dropped";
13
13
  deferred: "deferred";
14
- group_resubscribe: "group_resubscribe";
15
- group_unsubscribe: "group_unsubscribe";
16
- spam_report: "spam_report";
14
+ delivered: "delivered";
17
15
  bounce: "bounce";
18
- unsubscribe: "unsubscribe";
19
16
  open: "open";
20
17
  click: "click";
21
- dropped: "dropped";
18
+ spam_report: "spam_report";
19
+ unsubscribe: "unsubscribe";
20
+ group_unsubscribe: "group_unsubscribe";
21
+ group_resubscribe: "group_resubscribe";
22
22
  }>;
23
23
  declare const sendgridEventEnvelopeSchema: z.ZodArray<z.ZodObject<{
24
24
  email: 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.6-rename-t1.0",
3
+ "version": "0.0.7",
4
4
  "private": false,
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -116,18 +116,18 @@
116
116
  "LICENSE"
117
117
  ],
118
118
  "dependencies": {
119
- "@keystrokehq/integration-authoring": "^0.0.6-rename-t1.0",
119
+ "@keystrokehq/integration-authoring": "^0.0.7",
120
120
  "zod": "^4.3.6"
121
121
  },
122
122
  "peerDependencies": {
123
- "@keystrokehq/core": ">=0.0.7 <0.1.0"
123
+ "@keystrokehq/core": ">=0.0.8 <0.1.0"
124
124
  },
125
125
  "devDependencies": {
126
126
  "@types/node": "^22.19.11",
127
127
  "tsdown": "^0.20.3",
128
128
  "typescript": "^5.9.3",
129
129
  "vitest": "^4.0.18",
130
- "@keystrokehq/core": "^0.0.7",
130
+ "@keystrokehq/core": "^0.0.8",
131
131
  "@keystrokehq/test-utils": "0.0.0",
132
132
  "@keystrokehq/typescript-config": "0.0.0"
133
133
  },