@keystrokehq/resend 0.0.5 → 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/broadcasts.d.mts +6 -6
- package/package.json +4 -4
package/dist/broadcasts.d.mts
CHANGED
|
@@ -7,10 +7,10 @@ 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
|
-
sending: "sending";
|
|
11
10
|
draft: "draft";
|
|
12
11
|
scheduled: "scheduled";
|
|
13
12
|
queued: "queued";
|
|
13
|
+
sending: "sending";
|
|
14
14
|
sent: "sent";
|
|
15
15
|
cancelled: "cancelled";
|
|
16
16
|
failed: "failed";
|
|
@@ -26,10 +26,10 @@ 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
|
-
sending: "sending";
|
|
30
29
|
draft: "draft";
|
|
31
30
|
scheduled: "scheduled";
|
|
32
31
|
queued: "queued";
|
|
32
|
+
sending: "sending";
|
|
33
33
|
sent: "sent";
|
|
34
34
|
cancelled: "cancelled";
|
|
35
35
|
failed: "failed";
|
|
@@ -66,10 +66,10 @@ 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
|
-
sending: "sending";
|
|
70
69
|
draft: "draft";
|
|
71
70
|
scheduled: "scheduled";
|
|
72
71
|
queued: "queued";
|
|
72
|
+
sending: "sending";
|
|
73
73
|
sent: "sent";
|
|
74
74
|
cancelled: "cancelled";
|
|
75
75
|
failed: "failed";
|
|
@@ -104,10 +104,10 @@ 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
|
-
sending: "sending";
|
|
108
107
|
draft: "draft";
|
|
109
108
|
scheduled: "scheduled";
|
|
110
109
|
queued: "queued";
|
|
110
|
+
sending: "sending";
|
|
111
111
|
sent: "sent";
|
|
112
112
|
cancelled: "cancelled";
|
|
113
113
|
failed: "failed";
|
|
@@ -132,10 +132,10 @@ 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
|
-
sending: "sending";
|
|
136
135
|
draft: "draft";
|
|
137
136
|
scheduled: "scheduled";
|
|
138
137
|
queued: "queued";
|
|
138
|
+
sending: "sending";
|
|
139
139
|
sent: "sent";
|
|
140
140
|
cancelled: "cancelled";
|
|
141
141
|
failed: "failed";
|
|
@@ -179,10 +179,10 @@ 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
|
-
sending: "sending";
|
|
183
182
|
draft: "draft";
|
|
184
183
|
scheduled: "scheduled";
|
|
185
184
|
queued: "queued";
|
|
185
|
+
sending: "sending";
|
|
186
186
|
sent: "sent";
|
|
187
187
|
cancelled: "cancelled";
|
|
188
188
|
failed: "failed";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/resend",
|
|
3
|
-
"version": "0.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.
|
|
95
|
+
"@keystrokehq/integration-authoring": "^0.0.7",
|
|
96
96
|
"zod": "^4.3.6"
|
|
97
97
|
},
|
|
98
98
|
"peerDependencies": {
|
|
99
|
-
"@keystrokehq/core": ">=0.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.
|
|
106
|
+
"@keystrokehq/core": "^0.0.8",
|
|
107
107
|
"@keystrokehq/test-utils": "0.0.0",
|
|
108
108
|
"@keystrokehq/typescript-config": "0.0.0"
|
|
109
109
|
},
|