@upstash/redis 0.0.0-ci.9722909577fc3b6b939d0c937c6ba5f8e8287ee4 → 0.0.0-ci.9784fcbc264b04c2dc251a1935df1597fb95be92-20251208080748

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/nodejs.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { R as RedisOptions, a as RequesterConfig, b as Redis$1, c as Requester } from './redis-e3e8473f.js';
2
- export { U as UpstashRequest, d as UpstashResponse } from './redis-e3e8473f.js';
1
+ import { H as HttpClientConfig, R as RedisOptions, a as RequesterConfig, b as Redis$1, c as Requester } from './zmscore-DhpQcqpW.mjs';
2
+ export { A as AppendCommand, B as BitCountCommand, f as BitOpCommand, g as BitPosCommand, C as CopyCommand, D as DBSizeCommand, i as DecrByCommand, h as DecrCommand, j as DelCommand, E as EchoCommand, l as EvalCommand, k as EvalROCommand, n as EvalshaCommand, m as EvalshaROCommand, o as ExistsCommand, r as ExpireAtCommand, p as ExpireCommand, q as ExpireOption, F as FlushAllCommand, s as FlushDBCommand, G as GeoAddCommand, t as GeoAddCommandOptions, v as GeoDistCommand, w as GeoHashCommand, u as GeoMember, x as GeoPosCommand, y as GeoSearchCommand, z as GeoSearchStoreCommand, J as GetBitCommand, I as GetCommand, K as GetDelCommand, L as GetExCommand, M as GetRangeCommand, N as GetSetCommand, O as HDelCommand, Q as HExistsCommand, T as HExpireAtCommand, S as HExpireCommand, V as HExpireTimeCommand, a1 as HGetAllCommand, a0 as HGetCommand, a2 as HIncrByCommand, a3 as HIncrByFloatCommand, a4 as HKeysCommand, a5 as HLenCommand, a6 as HMGetCommand, a7 as HMSetCommand, Y as HPExpireAtCommand, X as HPExpireCommand, Z as HPExpireTimeCommand, _ as HPTtlCommand, $ as HPersistCommand, a8 as HRandFieldCommand, a9 as HScanCommand, aa as HSetCommand, ab as HSetNXCommand, ac as HStrLenCommand, W as HTtlCommand, ad as HValsCommand, af as IncrByCommand, ag as IncrByFloatCommand, ae as IncrCommand, ah as JsonArrAppendCommand, ai as JsonArrIndexCommand, aj as JsonArrInsertCommand, ak as JsonArrLenCommand, al as JsonArrPopCommand, am as JsonArrTrimCommand, an as JsonClearCommand, ao as JsonDelCommand, ap as JsonForgetCommand, aq as JsonGetCommand, as as JsonMGetCommand, ar as JsonMergeCommand, at as JsonNumIncrByCommand, au as JsonNumMultByCommand, av as JsonObjKeysCommand, aw as JsonObjLenCommand, ax as JsonRespCommand, ay as JsonSetCommand, az as JsonStrAppendCommand, aA as JsonStrLenCommand, aB as JsonToggleCommand, aC as JsonTypeCommand, aD as KeysCommand, aE as LIndexCommand, aF as LInsertCommand, aG as LLenCommand, aH as LMoveCommand, aI as LPopCommand, aJ as LPushCommand, aK as LPushXCommand, aL as LRangeCommand, aM as LRemCommand, aN as LSetCommand, aO as LTrimCommand, aP as MGetCommand, aQ as MSetCommand, aR as MSetNXCommand, aU as PExpireAtCommand, aT as PExpireCommand, aW as PSetEXCommand, aX as PTtlCommand, aS as PersistCommand, aV as PingCommand, P as Pipeline, aY as PublishCommand, b0 as RPopCommand, b1 as RPushCommand, b2 as RPushXCommand, aZ as RandomKeyCommand, a_ as RenameCommand, a$ as RenameNXCommand, b3 as SAddCommand, b6 as SCardCommand, ba as SDiffCommand, bb as SDiffStoreCommand, bi as SInterCommand, bj as SInterStoreCommand, bk as SIsMemberCommand, bm as SMIsMemberCommand, bl as SMembersCommand, bn as SMoveCommand, bo as SPopCommand, bp as SRandMemberCommand, bq as SRemCommand, br as SScanCommand, bt as SUnionCommand, bu as SUnionStoreCommand, b4 as ScanCommand, b5 as ScanCommandOptions, bD as ScoreMember, b7 as ScriptExistsCommand, b8 as ScriptFlushCommand, b9 as ScriptLoadCommand, be as SetBitCommand, bc as SetCommand, bd as SetCommandOptions, bf as SetExCommand, bg as SetNxCommand, bh as SetRangeCommand, bs as StrLenCommand, bv as TimeCommand, bw as TouchCommand, bx as TtlCommand, by as Type, bz as TypeCommand, bA as UnlinkCommand, U as UpstashRequest, d as UpstashResponse, bB as XAddCommand, bC as XRangeCommand, bF as ZAddCommand, bE as ZAddCommandOptions, bG as ZCardCommand, bH as ZCountCommand, bI as ZDiffStoreCommand, bJ as ZIncrByCommand, bK as ZInterStoreCommand, bL as ZInterStoreCommandOptions, bM as ZLexCountCommand, bN as ZMScoreCommand, bO as ZPopMaxCommand, bP as ZPopMinCommand, bQ as ZRangeCommand, bR as ZRangeCommandOptions, bS as ZRankCommand, bT as ZRemCommand, bU as ZRemRangeByLexCommand, bV as ZRemRangeByRankCommand, bW as ZRemRangeByScoreCommand, bX as ZRevRankCommand, bY as ZScanCommand, bZ as ZScoreCommand, b_ as ZUnionCommand, b$ as ZUnionCommandOptions, c0 as ZUnionStoreCommand, c1 as ZUnionStoreCommandOptions, e as errors } from './zmscore-DhpQcqpW.mjs';
3
3
 
4
4
  /**
5
5
  * Connection credentials for upstash redis.
@@ -9,11 +9,11 @@ type RedisConfigNodejs = {
9
9
  /**
10
10
  * UPSTASH_REDIS_REST_URL
11
11
  */
12
- url: string;
12
+ url: string | undefined;
13
13
  /**
14
14
  * UPSTASH_REDIS_REST_TOKEN
15
15
  */
16
- token: string;
16
+ token: string | undefined;
17
17
  /**
18
18
  * An agent allows you to reuse connections to reduce latency for multiple sequential requests.
19
19
  *
@@ -29,7 +29,18 @@ type RedisConfigNodejs = {
29
29
  * }
30
30
  * ```
31
31
  */
32
- agent?: any;
32
+ /**
33
+ * The signal will allow aborting requests on the fly.
34
+ * For more check: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
35
+ */
36
+ signal?: HttpClientConfig["signal"];
37
+ latencyLogging?: boolean;
38
+ agent?: unknown;
39
+ keepAlive?: boolean;
40
+ /**
41
+ * When this flag is enabled, any subsequent commands issued by this client are guaranteed to observe the effects of all earlier writes submitted by the same client.
42
+ */
43
+ readYourWrites?: boolean;
33
44
  } & RedisOptions & RequesterConfig;
34
45
  /**
35
46
  * Serverless redis client for upstash.
@@ -49,32 +60,22 @@ declare class Redis extends Redis$1 {
49
60
  constructor(config: RedisConfigNodejs);
50
61
  /**
51
62
  * Create a new redis client by providing a custom `Requester` implementation
52
- *
53
- * @example
54
- * ```ts
55
- *
56
- * import { UpstashRequest, Requester, UpstashResponse, Redis } from "@upstash/redis"
57
- *
58
- * const requester: Requester = {
59
- * request: <TResult>(req: UpstashRequest): Promise<UpstashResponse<TResult>> => {
60
- * // ...
61
- * }
62
- * }
63
- *
64
- * const redis = new Redis(requester)
65
- * ```
66
63
  */
67
- constructor(requesters: Requester);
64
+ constructor(requester: Requester);
68
65
  /**
69
66
  * Create a new Upstash Redis instance from environment variables.
70
67
  *
71
68
  * Use this to automatically load connection secrets from your environment
72
69
  * variables. For instance when using the Vercel integration.
73
70
  *
74
- * This tries to load `UPSTASH_REDIS_REST_URL` and `UPSTASH_REDIS_REST_TOKEN` from
75
- * your environment using `process.env`.
71
+ * This tries to load connection details from your environment using `process.env`:
72
+ * - URL: `UPSTASH_REDIS_REST_URL` or fallback to `KV_REST_API_URL`
73
+ * - Token: `UPSTASH_REDIS_REST_TOKEN` or fallback to `KV_REST_API_TOKEN`
74
+ *
75
+ * The fallback variables provide compatibility with Vercel KV and other platforms
76
+ * that may use different naming conventions.
76
77
  */
77
78
  static fromEnv(config?: Omit<RedisConfigNodejs, "url" | "token">): Redis;
78
79
  }
79
80
 
80
- export { Redis, RedisConfigNodejs, Requester };
81
+ export { Redis, type RedisConfigNodejs, Requester };
package/nodejs.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { R as RedisOptions, a as RequesterConfig, b as Redis$1, c as Requester } from './redis-e3e8473f.js';
2
- export { U as UpstashRequest, d as UpstashResponse } from './redis-e3e8473f.js';
1
+ import { H as HttpClientConfig, R as RedisOptions, a as RequesterConfig, b as Redis$1, c as Requester } from './zmscore-DhpQcqpW.js';
2
+ export { A as AppendCommand, B as BitCountCommand, f as BitOpCommand, g as BitPosCommand, C as CopyCommand, D as DBSizeCommand, i as DecrByCommand, h as DecrCommand, j as DelCommand, E as EchoCommand, l as EvalCommand, k as EvalROCommand, n as EvalshaCommand, m as EvalshaROCommand, o as ExistsCommand, r as ExpireAtCommand, p as ExpireCommand, q as ExpireOption, F as FlushAllCommand, s as FlushDBCommand, G as GeoAddCommand, t as GeoAddCommandOptions, v as GeoDistCommand, w as GeoHashCommand, u as GeoMember, x as GeoPosCommand, y as GeoSearchCommand, z as GeoSearchStoreCommand, J as GetBitCommand, I as GetCommand, K as GetDelCommand, L as GetExCommand, M as GetRangeCommand, N as GetSetCommand, O as HDelCommand, Q as HExistsCommand, T as HExpireAtCommand, S as HExpireCommand, V as HExpireTimeCommand, a1 as HGetAllCommand, a0 as HGetCommand, a2 as HIncrByCommand, a3 as HIncrByFloatCommand, a4 as HKeysCommand, a5 as HLenCommand, a6 as HMGetCommand, a7 as HMSetCommand, Y as HPExpireAtCommand, X as HPExpireCommand, Z as HPExpireTimeCommand, _ as HPTtlCommand, $ as HPersistCommand, a8 as HRandFieldCommand, a9 as HScanCommand, aa as HSetCommand, ab as HSetNXCommand, ac as HStrLenCommand, W as HTtlCommand, ad as HValsCommand, af as IncrByCommand, ag as IncrByFloatCommand, ae as IncrCommand, ah as JsonArrAppendCommand, ai as JsonArrIndexCommand, aj as JsonArrInsertCommand, ak as JsonArrLenCommand, al as JsonArrPopCommand, am as JsonArrTrimCommand, an as JsonClearCommand, ao as JsonDelCommand, ap as JsonForgetCommand, aq as JsonGetCommand, as as JsonMGetCommand, ar as JsonMergeCommand, at as JsonNumIncrByCommand, au as JsonNumMultByCommand, av as JsonObjKeysCommand, aw as JsonObjLenCommand, ax as JsonRespCommand, ay as JsonSetCommand, az as JsonStrAppendCommand, aA as JsonStrLenCommand, aB as JsonToggleCommand, aC as JsonTypeCommand, aD as KeysCommand, aE as LIndexCommand, aF as LInsertCommand, aG as LLenCommand, aH as LMoveCommand, aI as LPopCommand, aJ as LPushCommand, aK as LPushXCommand, aL as LRangeCommand, aM as LRemCommand, aN as LSetCommand, aO as LTrimCommand, aP as MGetCommand, aQ as MSetCommand, aR as MSetNXCommand, aU as PExpireAtCommand, aT as PExpireCommand, aW as PSetEXCommand, aX as PTtlCommand, aS as PersistCommand, aV as PingCommand, P as Pipeline, aY as PublishCommand, b0 as RPopCommand, b1 as RPushCommand, b2 as RPushXCommand, aZ as RandomKeyCommand, a_ as RenameCommand, a$ as RenameNXCommand, b3 as SAddCommand, b6 as SCardCommand, ba as SDiffCommand, bb as SDiffStoreCommand, bi as SInterCommand, bj as SInterStoreCommand, bk as SIsMemberCommand, bm as SMIsMemberCommand, bl as SMembersCommand, bn as SMoveCommand, bo as SPopCommand, bp as SRandMemberCommand, bq as SRemCommand, br as SScanCommand, bt as SUnionCommand, bu as SUnionStoreCommand, b4 as ScanCommand, b5 as ScanCommandOptions, bD as ScoreMember, b7 as ScriptExistsCommand, b8 as ScriptFlushCommand, b9 as ScriptLoadCommand, be as SetBitCommand, bc as SetCommand, bd as SetCommandOptions, bf as SetExCommand, bg as SetNxCommand, bh as SetRangeCommand, bs as StrLenCommand, bv as TimeCommand, bw as TouchCommand, bx as TtlCommand, by as Type, bz as TypeCommand, bA as UnlinkCommand, U as UpstashRequest, d as UpstashResponse, bB as XAddCommand, bC as XRangeCommand, bF as ZAddCommand, bE as ZAddCommandOptions, bG as ZCardCommand, bH as ZCountCommand, bI as ZDiffStoreCommand, bJ as ZIncrByCommand, bK as ZInterStoreCommand, bL as ZInterStoreCommandOptions, bM as ZLexCountCommand, bN as ZMScoreCommand, bO as ZPopMaxCommand, bP as ZPopMinCommand, bQ as ZRangeCommand, bR as ZRangeCommandOptions, bS as ZRankCommand, bT as ZRemCommand, bU as ZRemRangeByLexCommand, bV as ZRemRangeByRankCommand, bW as ZRemRangeByScoreCommand, bX as ZRevRankCommand, bY as ZScanCommand, bZ as ZScoreCommand, b_ as ZUnionCommand, b$ as ZUnionCommandOptions, c0 as ZUnionStoreCommand, c1 as ZUnionStoreCommandOptions, e as errors } from './zmscore-DhpQcqpW.js';
3
3
 
4
4
  /**
5
5
  * Connection credentials for upstash redis.
@@ -9,11 +9,11 @@ type RedisConfigNodejs = {
9
9
  /**
10
10
  * UPSTASH_REDIS_REST_URL
11
11
  */
12
- url: string;
12
+ url: string | undefined;
13
13
  /**
14
14
  * UPSTASH_REDIS_REST_TOKEN
15
15
  */
16
- token: string;
16
+ token: string | undefined;
17
17
  /**
18
18
  * An agent allows you to reuse connections to reduce latency for multiple sequential requests.
19
19
  *
@@ -29,7 +29,18 @@ type RedisConfigNodejs = {
29
29
  * }
30
30
  * ```
31
31
  */
32
- agent?: any;
32
+ /**
33
+ * The signal will allow aborting requests on the fly.
34
+ * For more check: https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
35
+ */
36
+ signal?: HttpClientConfig["signal"];
37
+ latencyLogging?: boolean;
38
+ agent?: unknown;
39
+ keepAlive?: boolean;
40
+ /**
41
+ * When this flag is enabled, any subsequent commands issued by this client are guaranteed to observe the effects of all earlier writes submitted by the same client.
42
+ */
43
+ readYourWrites?: boolean;
33
44
  } & RedisOptions & RequesterConfig;
34
45
  /**
35
46
  * Serverless redis client for upstash.
@@ -49,32 +60,22 @@ declare class Redis extends Redis$1 {
49
60
  constructor(config: RedisConfigNodejs);
50
61
  /**
51
62
  * Create a new redis client by providing a custom `Requester` implementation
52
- *
53
- * @example
54
- * ```ts
55
- *
56
- * import { UpstashRequest, Requester, UpstashResponse, Redis } from "@upstash/redis"
57
- *
58
- * const requester: Requester = {
59
- * request: <TResult>(req: UpstashRequest): Promise<UpstashResponse<TResult>> => {
60
- * // ...
61
- * }
62
- * }
63
- *
64
- * const redis = new Redis(requester)
65
- * ```
66
63
  */
67
- constructor(requesters: Requester);
64
+ constructor(requester: Requester);
68
65
  /**
69
66
  * Create a new Upstash Redis instance from environment variables.
70
67
  *
71
68
  * Use this to automatically load connection secrets from your environment
72
69
  * variables. For instance when using the Vercel integration.
73
70
  *
74
- * This tries to load `UPSTASH_REDIS_REST_URL` and `UPSTASH_REDIS_REST_TOKEN` from
75
- * your environment using `process.env`.
71
+ * This tries to load connection details from your environment using `process.env`:
72
+ * - URL: `UPSTASH_REDIS_REST_URL` or fallback to `KV_REST_API_URL`
73
+ * - Token: `UPSTASH_REDIS_REST_TOKEN` or fallback to `KV_REST_API_TOKEN`
74
+ *
75
+ * The fallback variables provide compatibility with Vercel KV and other platforms
76
+ * that may use different naming conventions.
76
77
  */
77
78
  static fromEnv(config?: Omit<RedisConfigNodejs, "url" | "token">): Redis;
78
79
  }
79
80
 
80
- export { Redis, RedisConfigNodejs, Requester };
81
+ export { Redis, type RedisConfigNodejs, Requester };