@keystrokehq/resend 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.
@@ -7,13 +7,13 @@ declare const broadcastSummarySchema: z.ZodObject<{
7
7
  id: z.ZodString;
8
8
  name: z.ZodOptional<z.ZodString>;
9
9
  status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
10
- failed: "failed";
11
10
  draft: "draft";
12
11
  scheduled: "scheduled";
13
12
  queued: "queued";
14
13
  sending: "sending";
15
14
  sent: "sent";
16
15
  cancelled: "cancelled";
16
+ failed: "failed";
17
17
  }>, z.ZodString]>>;
18
18
  audience_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19
19
  segment_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -26,13 +26,13 @@ declare const broadcastDetailSchema: z.ZodObject<{
26
26
  id: z.ZodString;
27
27
  name: z.ZodOptional<z.ZodString>;
28
28
  status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
29
- failed: "failed";
30
29
  draft: "draft";
31
30
  scheduled: "scheduled";
32
31
  queued: "queued";
33
32
  sending: "sending";
34
33
  sent: "sent";
35
34
  cancelled: "cancelled";
35
+ failed: "failed";
36
36
  }>, z.ZodString]>>;
37
37
  audience_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
38
38
  segment_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -66,13 +66,13 @@ declare const createBroadcast: _keystrokehq_core0.Operation<z.ZodObject<{
66
66
  id: z.ZodString;
67
67
  name: z.ZodOptional<z.ZodString>;
68
68
  status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
69
- failed: "failed";
70
69
  draft: "draft";
71
70
  scheduled: "scheduled";
72
71
  queued: "queued";
73
72
  sending: "sending";
74
73
  sent: "sent";
75
74
  cancelled: "cancelled";
75
+ failed: "failed";
76
76
  }>, z.ZodString]>>;
77
77
  audience_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
78
78
  segment_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -104,13 +104,13 @@ declare const listBroadcasts: _keystrokehq_core0.Operation<z.ZodObject<{
104
104
  id: z.ZodString;
105
105
  name: z.ZodOptional<z.ZodString>;
106
106
  status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
107
- failed: "failed";
108
107
  draft: "draft";
109
108
  scheduled: "scheduled";
110
109
  queued: "queued";
111
110
  sending: "sending";
112
111
  sent: "sent";
113
112
  cancelled: "cancelled";
113
+ failed: "failed";
114
114
  }>, z.ZodString]>>;
115
115
  audience_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
116
116
  segment_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -132,13 +132,13 @@ declare const retrieveBroadcast: _keystrokehq_core0.Operation<z.ZodObject<{
132
132
  id: z.ZodString;
133
133
  name: z.ZodOptional<z.ZodString>;
134
134
  status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
135
- failed: "failed";
136
135
  draft: "draft";
137
136
  scheduled: "scheduled";
138
137
  queued: "queued";
139
138
  sending: "sending";
140
139
  sent: "sent";
141
140
  cancelled: "cancelled";
141
+ failed: "failed";
142
142
  }>, z.ZodString]>>;
143
143
  audience_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
144
144
  segment_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -179,13 +179,13 @@ declare const updateBroadcast: _keystrokehq_core0.Operation<z.ZodObject<{
179
179
  id: z.ZodString;
180
180
  name: z.ZodOptional<z.ZodString>;
181
181
  status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
182
- failed: "failed";
183
182
  draft: "draft";
184
183
  scheduled: "scheduled";
185
184
  queued: "queued";
186
185
  sending: "sending";
187
186
  sent: "sent";
188
187
  cancelled: "cancelled";
188
+ failed: "failed";
189
189
  }>, z.ZodString]>>;
190
190
  audience_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
191
191
  segment_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/resend",
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",
@@ -92,18 +92,18 @@
92
92
  "LICENSE"
93
93
  ],
94
94
  "dependencies": {
95
- "@keystrokehq/integration-authoring": "^0.0.6-rename-t1.0",
95
+ "@keystrokehq/integration-authoring": "^0.0.7",
96
96
  "zod": "^4.3.6"
97
97
  },
98
98
  "peerDependencies": {
99
- "@keystrokehq/core": ">=0.0.7 <0.1.0"
99
+ "@keystrokehq/core": ">=0.0.8 <0.1.0"
100
100
  },
101
101
  "devDependencies": {
102
102
  "@types/node": "^22.19.11",
103
103
  "tsdown": "^0.20.3",
104
104
  "typescript": "^5.9.3",
105
105
  "vitest": "^4.0.18",
106
- "@keystrokehq/core": "^0.0.7",
106
+ "@keystrokehq/core": "^0.0.8",
107
107
  "@keystrokehq/test-utils": "0.0.0",
108
108
  "@keystrokehq/typescript-config": "0.0.0"
109
109
  },