-
Notifications
You must be signed in to change notification settings - Fork 133
Closed
Labels
kind/bugSomething isn't workingSomething isn't workingstage/1-reproductionA reproduction existsA reproduction exists
Description
Describe the bug
const kvCache = createKvCache({
KV: env.GRAPHQL_RESPONSE_CACHE,
ctx,
keyPrefix: 'graphql', // optional
cacheReadTTL: 1000 * 60 * 60 * 4, // 4 hours
});When using the createKvCache export from @envelop/response-cache-cloudflare-kv the passed in type of KV is rejected with this error
src/index.ts:29:9 - error TS2322: Type 'KVNamespace<string>' is not assignable to type 'import("/Users/arishi/personal/sukrit-ecosystem-turborepo/node_modules/.pnpm/@[email protected]/node_modules/@cloudflare/workers-types/index").KVNamespace<string>'.
Types of property 'get' are incompatible.
Type '{ (key: string, options?: Partial<KVNamespaceGetOptions<undefined>> | undefined): Promise<string | null>; (key: string, type: "text"): Promise<...>; <ExpectedValue = unknown>(key: string, type: "json"): Promise<...>; (key: string, type: "arrayBuffer"): Promise<...>; (key: string, type: "stream"): Promise<...>; (key:...' is not assignable to type '{ (key: string, options?: Partial<import("/Users/arishi/personal/sukrit-ecosystem-turborepo/node_modules/.pnpm/@[email protected]/node_modules/@cloudflare/workers-types/index").KVNamespaceGetOptions<undefined>> | undefined): Promise<...>; (key: string, type: "text"): Promise<...>; <ExpectedValue ...'.
Types of parameters 'options' and 'type' are incompatible.
Type '"stream"' has no properties in common with type 'Partial<KVNamespaceGetOptions<undefined>>'.
29 KV: env.GRAPHQL_RESPONSE_CACHE,
~~
../../node_modules/.pnpm/@[email protected]_@[email protected][email protected]/node_modules/@envelop/response-cache-cloudflare-kv/typings/index.d.ts:7:5
7 KV: KVNamespace;
~~
The expected type comes from property 'KV' which is declared here on type 'KvCacheConfig'
Found 1 error in src/index.ts:29
To Reproduce Steps to reproduce the behavior:
Expected behavior
The types should be compatible.
Environment:
- OS: MacOS
- NodeJS: 18.x
- "@envelop/response-cache": "^6.1.1",
- "@envelop/response-cache-cloudflare-kv": "0.2.0",
Metadata
Metadata
Assignees
Labels
kind/bugSomething isn't workingSomething isn't workingstage/1-reproductionA reproduction existsA reproduction exists