We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa86b0f commit 76fc97fCopy full SHA for 76fc97f
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@vesselapi/integrations",
3
- "version": "0.0.72",
+ "version": "0.0.73",
4
"description": "Vessel integrations",
5
"main": "dist/index.js",
6
"module": "dist/index.mjs",
src/platforms/slack/schemas.ts
@@ -9,7 +9,7 @@ export const slackPaginated = custom.object({
9
10
export const slackExpiredAuth = custom.object({
11
ok: z.literal(false),
12
- error: z.literal('token_expired'),
+ error: z.enum(['token_expired', 'invalid_auth']),
13
});
14
15
export const slackUser = custom.object({
0 commit comments