We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8bbcf1 commit 8d08686Copy full SHA for 8d08686
1 file changed
plugins/hubspot/src/auth.ts
@@ -5,8 +5,7 @@ const TokensSchema = v.object({
5
access_token: v.string(),
6
refresh_token: v.string(),
7
expires_in: v.number(),
8
- scope: v.string(),
9
- token_type: v.literal("Bearer"),
+ token_type: v.literal("bearer"),
10
})
11
12
type Tokens = v.InferOutput<typeof TokensSchema>
@@ -22,7 +21,6 @@ type StoredTokens = v.InferOutput<typeof StoredTokensSchema>
22
21
23
const AuthorizeSchema = v.object({
24
url: v.string(),
25
- writeKey: v.string(),
26
readKey: v.string(),
27
28
0 commit comments