@automate.ax/api-contract 0.98.0 → 0.98.1
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/resend.js +1 -1
- package/package.json +3 -3
- package/src/events/resend.ts +1 -1
package/dist/events/resend.js
CHANGED
|
@@ -9,7 +9,7 @@ export const resendEventsContract = {
|
|
|
9
9
|
summary: "Receive a Resend event",
|
|
10
10
|
description: "Receives and authenticates callbacks delivered by Resend webhooks.",
|
|
11
11
|
tags: ["Events"],
|
|
12
|
-
successStatus:
|
|
12
|
+
successStatus: 200,
|
|
13
13
|
})
|
|
14
14
|
.input(z.looseObject({ sourceId: z.string() }))
|
|
15
15
|
.output(z.void()),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/api-contract",
|
|
3
|
-
"version": "0.98.
|
|
3
|
+
"version": "0.98.1",
|
|
4
4
|
"description": "Public oRPC contract for the Automate.ax API.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@ai-sdk/gateway": "4.0.46",
|
|
34
|
-
"@automate.ax/codec": "0.98.
|
|
35
|
-
"@automate.ax/integration-contracts": "0.98.
|
|
34
|
+
"@automate.ax/codec": "0.98.1",
|
|
35
|
+
"@automate.ax/integration-contracts": "0.98.1",
|
|
36
36
|
"@orpc/contract": "1.15.0",
|
|
37
37
|
"fast-json-stable-stringify": "^2.1.0",
|
|
38
38
|
"zod": "^4.3.6"
|
package/src/events/resend.ts
CHANGED
|
@@ -11,7 +11,7 @@ export const resendEventsContract = {
|
|
|
11
11
|
description:
|
|
12
12
|
"Receives and authenticates callbacks delivered by Resend webhooks.",
|
|
13
13
|
tags: ["Events"],
|
|
14
|
-
successStatus:
|
|
14
|
+
successStatus: 200,
|
|
15
15
|
})
|
|
16
16
|
.input(z.looseObject({ sourceId: z.string() }))
|
|
17
17
|
.output(z.void()),
|