@upstash/redis 1.0.2 → 1.0.3
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/cloudflare.d.ts +1 -1
- package/commands.d.ts +1 -1
- package/fastly.d.ts +1 -1
- package/index.d.ts +1 -1
- package/nodejs.d.ts +1 -1
- package/package.json +1 -1
- package/{redis-1bab26d0.d.ts → redis-8b6ea223.d.ts} +1 -1
package/cloudflare.d.ts
CHANGED
package/commands.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ declare class EchoCommand extends Command<string, string> {
|
|
|
70
70
|
/**
|
|
71
71
|
* @see https://redis.io/commands/exists
|
|
72
72
|
*/
|
|
73
|
-
declare class ExistsCommand extends Command<
|
|
73
|
+
declare class ExistsCommand extends Command<number, number> {
|
|
74
74
|
constructor(...keys: NonEmptyArray<string>);
|
|
75
75
|
}
|
|
76
76
|
|
package/fastly.d.ts
CHANGED
package/index.d.ts
CHANGED
package/nodejs.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{ "name": "@upstash/redis", "version": "v1.0.
|
|
1
|
+
{ "name": "@upstash/redis", "version": "v1.0.3", "engines": { "node": ">=10" }, "description": "An HTTP/REST based Redis client built on top of Upstash REST API.", "main": "./index.js", "module": "./index.mjs", "types": "./index.d.ts", "scripts": { "test": "jest -i", "fmt": "pnpm lint && pnpm prettier --write .", "lint": "eslint --ext .ts --fix --ignore-path .gitignore .", "build": "tsup && cp package.json ./dist/ && pnpm size-limit" }, "repository": { "type": "git", "url": "git+https://github.com/upstash/upstash-redis.git" }, "keywords": [ "redis", "database", "serverless", "edge", "upstash" ], "author": "Andreas Thomas <andreas.thomas@chronark.com>", "license": "MIT", "bugs": { "url": "https://github.com/upstash/upstash-redis/issues" }, "homepage": "https://github.com/upstash/upstash-redis#readme", "directories": { "examples": "examples" }, "devDependencies": { "@jest/globals": "^27.4.6", "@size-limit/preset-small-lib": "^7.0.8", "@trivago/prettier-plugin-sort-imports": "^3.2.0", "@types/jest": "^27.4.0", "@types/node": "^17.0.8", "@typescript-eslint/eslint-plugin": "^5.9.1", "@typescript-eslint/parser": "^5.9.1", "dotenv": "^12.0.3", "eslint": "^8.6.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "jest": "^27.4.7", "prettier": "^2.5.1", "size-limit": "^7.0.8", "ts-jest": "^27.1.3", "tsup": "^5.11.11", "typescript": "^4.5.5" }, "dependencies": { "isomorphic-fetch": "^3.0.0" }, "browser": { "isomorphic-fetch": false }, "size-limit": [ { "path": "dist/index.js", "limit": "5 KB" }, { "path": "dist/index.mjs", "limit": "5 KB" }, { "path": "dist/cloudflare.js", "limit": "5 KB" }, { "path": "dist/cloudflare.mjs", "limit": "5 KB" }, { "path": "dist/nodejs.js", "limit": "5 KB" }, { "path": "dist/nodejs.mjs", "limit": "5 KB" }, { "path": "dist/fastly.js", "limit": "5 KB" }, { "path": "dist/fastly.mjs", "limit": "5 KB" } ] }
|
|
@@ -570,7 +570,7 @@ declare class Redis {
|
|
|
570
570
|
/**
|
|
571
571
|
* @see https://redis.io/commands/exists
|
|
572
572
|
*/
|
|
573
|
-
exists: (args_0: string, ...args_1: string[]) => Promise<
|
|
573
|
+
exists: (args_0: string, ...args_1: string[]) => Promise<number>;
|
|
574
574
|
/**
|
|
575
575
|
* @see https://redis.io/commands/expire
|
|
576
576
|
*/
|