@upstash/redis 0.0.0-ci.f55d85c5 → 0.0.0-ci.fb6b986f-20221006

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.
Files changed (74) hide show
  1. package/README.md +36 -274
  2. package/esm/deps/deno.land/x/base64@v0.2.1/base.js +100 -0
  3. package/esm/deps/deno.land/x/base64@v0.2.1/base64url.js +9 -0
  4. package/esm/deps/deno.land/x/sha1@v1.0.3/deps.js +1 -0
  5. package/esm/deps/deno.land/x/sha1@v1.0.3/mod.js +191 -0
  6. package/esm/deps/denopkg.com/chiefbiiko/std-encoding@v1.0.0/mod.js +50 -0
  7. package/esm/pkg/commands/lpos.js +19 -0
  8. package/esm/pkg/commands/mod.js +1 -0
  9. package/esm/pkg/commands/scan.js +3 -0
  10. package/esm/pkg/commands/script_exists.js +1 -10
  11. package/esm/pkg/commands/sdiffstore.js +1 -1
  12. package/esm/pkg/commands/set.js +16 -4
  13. package/esm/pkg/commands/zmscore.js +10 -0
  14. package/esm/pkg/commands/zrange.js +6 -0
  15. package/esm/pkg/http.js +88 -9
  16. package/esm/pkg/pipeline.js +20 -1
  17. package/esm/pkg/redis.js +36 -1
  18. package/esm/pkg/script.js +77 -0
  19. package/esm/platforms/cloudflare.js +5 -25
  20. package/esm/platforms/fastly.js +4 -25
  21. package/esm/platforms/node_with_fetch.js +4 -25
  22. package/esm/platforms/nodejs.js +4 -25
  23. package/package.json +10 -37
  24. package/script/deps/deno.land/x/base64@v0.2.1/base.js +104 -0
  25. package/script/deps/deno.land/x/base64@v0.2.1/base64url.js +13 -0
  26. package/script/deps/deno.land/x/sha1@v1.0.3/deps.js +6 -0
  27. package/script/deps/deno.land/x/sha1@v1.0.3/mod.js +196 -0
  28. package/script/deps/denopkg.com/chiefbiiko/std-encoding@v1.0.0/mod.js +55 -0
  29. package/script/pkg/commands/lpos.js +23 -0
  30. package/script/pkg/commands/mod.js +1 -0
  31. package/script/pkg/commands/scan.js +3 -0
  32. package/script/pkg/commands/script_exists.js +1 -10
  33. package/script/pkg/commands/sdiffstore.js +1 -1
  34. package/script/pkg/commands/set.js +16 -4
  35. package/script/pkg/commands/zmscore.js +14 -0
  36. package/script/pkg/commands/zrange.js +6 -0
  37. package/script/pkg/http.js +88 -9
  38. package/script/pkg/pipeline.js +19 -0
  39. package/script/pkg/redis.js +35 -0
  40. package/script/pkg/script.js +81 -0
  41. package/script/platforms/cloudflare.js +5 -25
  42. package/script/platforms/fastly.js +4 -25
  43. package/script/platforms/node_with_fetch.js +4 -25
  44. package/script/platforms/nodejs.js +4 -25
  45. package/types/deps/deno.land/x/base64@v0.2.1/base.d.ts +5 -0
  46. package/types/deps/deno.land/x/base64@v0.2.1/base64url.d.ts +1 -0
  47. package/types/deps/deno.land/x/sha1@v1.0.3/deps.d.ts +1 -0
  48. package/types/deps/deno.land/x/sha1@v1.0.3/mod.d.ts +26 -0
  49. package/types/deps/denopkg.com/chiefbiiko/std-encoding@v1.0.0/mod.d.ts +3 -0
  50. package/types/pkg/commands/bitop.d.ts +0 -1
  51. package/types/pkg/commands/bitpos.d.ts +1 -1
  52. package/types/pkg/commands/hmset.d.ts +2 -2
  53. package/types/pkg/commands/lpop.d.ts +1 -1
  54. package/types/pkg/commands/lpos.d.ts +15 -0
  55. package/types/pkg/commands/mget.d.ts +1 -1
  56. package/types/pkg/commands/mod.d.ts +1 -0
  57. package/types/pkg/commands/rpop.d.ts +2 -2
  58. package/types/pkg/commands/scan.d.ts +1 -0
  59. package/types/pkg/commands/script_exists.d.ts +2 -4
  60. package/types/pkg/commands/sdiffstore.d.ts +1 -1
  61. package/types/pkg/commands/set.d.ts +31 -2
  62. package/types/pkg/commands/sinterstore.d.ts +2 -2
  63. package/types/pkg/commands/spop.d.ts +2 -2
  64. package/types/pkg/commands/zadd.d.ts +1 -1
  65. package/types/pkg/commands/zmscore.d.ts +7 -0
  66. package/types/pkg/commands/zrange.d.ts +7 -0
  67. package/types/pkg/http.d.ts +27 -3
  68. package/types/pkg/pipeline.d.ts +19 -7
  69. package/types/pkg/redis.d.ts +29 -11
  70. package/types/pkg/script.d.ts +42 -0
  71. package/types/platforms/cloudflare.d.ts +6 -2
  72. package/types/platforms/fastly.d.ts +5 -1
  73. package/types/platforms/node_with_fetch.d.ts +20 -1
  74. package/types/platforms/nodejs.d.ts +20 -1
@@ -22,14 +22,34 @@ class HttpClient {
22
22
  writable: true,
23
23
  value: void 0
24
24
  });
25
+ Object.defineProperty(this, "retry", {
26
+ enumerable: true,
27
+ configurable: true,
28
+ writable: true,
29
+ value: void 0
30
+ });
25
31
  this.baseUrl = config.baseUrl.replace(/\/$/, "");
26
- this.headers = { "Content-Type": "application/json", ...config.headers };
27
- this.options = config.options;
32
+ this.headers = {
33
+ "Content-Type": "application/json",
34
+ "Upstash-Encoding": "base64",
35
+ ...config.headers,
36
+ };
37
+ this.options = { backend: config.options?.backend };
38
+ if (typeof config?.retry === "boolean" && config?.retry === false) {
39
+ this.retry = {
40
+ attempts: 1,
41
+ backoff: () => 0,
42
+ };
43
+ }
44
+ else {
45
+ this.retry = {
46
+ attempts: config?.retry?.retries ?? 5,
47
+ backoff: config?.retry?.backoff ??
48
+ ((retryCount) => Math.exp(retryCount) * 50),
49
+ };
50
+ }
28
51
  }
29
52
  async request(req) {
30
- if (!req.path) {
31
- req.path = [];
32
- }
33
53
  const requestOptions = {
34
54
  method: "POST",
35
55
  headers: this.headers,
@@ -40,14 +60,73 @@ class HttpClient {
40
60
  */
41
61
  backend: this.options?.backend,
42
62
  };
43
- // fetch is defined by isomorphic fetch
44
- // eslint-disable-next-line no-undef
45
- const res = await fetch([this.baseUrl, ...req.path].join("/"), requestOptions);
63
+ let res = null;
64
+ let error = null;
65
+ for (let i = 0; i <= this.retry.attempts; i++) {
66
+ try {
67
+ res = await fetch([this.baseUrl, ...(req.path ?? [])].join("/"), requestOptions);
68
+ break;
69
+ }
70
+ catch (err) {
71
+ error = err;
72
+ await new Promise((r) => setTimeout(r, this.retry.backoff(i)));
73
+ }
74
+ }
75
+ if (!res) {
76
+ throw error ?? new Error("Exhausted all retries");
77
+ }
46
78
  const body = (await res.json());
47
79
  if (!res.ok) {
48
80
  throw new error_js_1.UpstashError(body.error);
49
81
  }
50
- return body;
82
+ return Array.isArray(body) ? body.map(decode) : decode(body);
51
83
  }
52
84
  }
53
85
  exports.HttpClient = HttpClient;
86
+ function base64decode(b64) {
87
+ let dec = "";
88
+ try {
89
+ dec = atob(b64).split("").map((c) => "%" + ("00" + c.charCodeAt(0).toString(16)).slice(-2)).join("");
90
+ }
91
+ catch (e) {
92
+ console.warn(`Unable to decode base64 [${dec}]: ${e.message}`);
93
+ return dec;
94
+ }
95
+ try {
96
+ return decodeURIComponent(dec);
97
+ }
98
+ catch (e) {
99
+ console.warn(`Unable to decode URI [${dec}]: ${e.message}`);
100
+ return dec;
101
+ }
102
+ }
103
+ function decode(raw) {
104
+ let result = undefined;
105
+ switch (typeof raw.result) {
106
+ case "undefined":
107
+ return raw;
108
+ case "number":
109
+ result = raw.result;
110
+ break;
111
+ case "object":
112
+ if (Array.isArray(raw.result)) {
113
+ result = raw.result.map((v) => typeof v === "string"
114
+ ? base64decode(v)
115
+ : Array.isArray(v)
116
+ ? v.map(base64decode)
117
+ : v);
118
+ }
119
+ else {
120
+ // If it's not an array it must be null
121
+ // Apparently null is an object in javascript
122
+ result = null;
123
+ }
124
+ break;
125
+ case "string":
126
+ result = raw.result === "OK" ? "OK" : base64decode(raw.result);
127
+ break;
128
+ default:
129
+ break;
130
+ }
131
+ return { result, error: raw.error };
132
+ }
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Pipeline = void 0;
4
4
  const mod_js_1 = require("./commands/mod.js");
5
5
  const error_js_1 = require("./error.js");
6
+ const zmscore_js_1 = require("./commands/zmscore.js");
6
7
  /**
7
8
  * Upstash REST API supports command pipelining to send multiple commands in
8
9
  * batch, instead of sending each command one by one and waiting for a response.
@@ -478,6 +479,15 @@ class Pipeline {
478
479
  writable: true,
479
480
  value: (...args) => this.chain(new mod_js_1.LPopCommand(args, this.commandOptions))
480
481
  });
482
+ /**
483
+ * @see https://redis.io/commands/lpos
484
+ */
485
+ Object.defineProperty(this, "lpos", {
486
+ enumerable: true,
487
+ configurable: true,
488
+ writable: true,
489
+ value: (...args) => this.chain(new mod_js_1.LPosCommand(args, this.commandOptions))
490
+ });
481
491
  /**
482
492
  * @see https://redis.io/commands/lpush
483
493
  */
@@ -1005,6 +1015,15 @@ class Pipeline {
1005
1015
  writable: true,
1006
1016
  value: (...args) => this.chain(new mod_js_1.ZLexCountCommand(args, this.commandOptions))
1007
1017
  });
1018
+ /**
1019
+ * @see https://redis.io/commands/zmscore
1020
+ */
1021
+ Object.defineProperty(this, "zmscore", {
1022
+ enumerable: true,
1023
+ configurable: true,
1024
+ writable: true,
1025
+ value: (...args) => this.chain(new zmscore_js_1.ZMScoreCommand(args, this.commandOptions))
1026
+ });
1008
1027
  /**
1009
1028
  * @see https://redis.io/commands/zpopmax
1010
1029
  */
@@ -3,6 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Redis = void 0;
4
4
  const mod_js_1 = require("./commands/mod.js");
5
5
  const pipeline_js_1 = require("./pipeline.js");
6
+ const script_js_1 = require("./script.js");
7
+ const zmscore_js_1 = require("./commands/zmscore.js");
6
8
  /**
7
9
  * Serverless redis client for upstash.
8
10
  */
@@ -31,6 +33,18 @@ class Redis {
31
33
  writable: true,
32
34
  value: void 0
33
35
  });
36
+ /**
37
+ * Wrap a new middleware around the HTTP client.
38
+ */
39
+ Object.defineProperty(this, "use", {
40
+ enumerable: true,
41
+ configurable: true,
42
+ writable: true,
43
+ value: (middleware) => {
44
+ const makeRequest = this.client.request.bind(this.client);
45
+ this.client.request = (req) => middleware(req, makeRequest);
46
+ }
47
+ });
34
48
  /**
35
49
  * Create a new pipeline that allows you to send requests in bulk.
36
50
  *
@@ -429,6 +443,15 @@ class Redis {
429
443
  writable: true,
430
444
  value: (...args) => new mod_js_1.LPopCommand(args, this.opts).exec(this.client)
431
445
  });
446
+ /**
447
+ * @see https://redis.io/commands/lpos
448
+ */
449
+ Object.defineProperty(this, "lpos", {
450
+ enumerable: true,
451
+ configurable: true,
452
+ writable: true,
453
+ value: (...args) => new mod_js_1.LPosCommand(args, this.opts).exec(this.client)
454
+ });
432
455
  /**
433
456
  * @see https://redis.io/commands/lpush
434
457
  */
@@ -956,6 +979,15 @@ class Redis {
956
979
  writable: true,
957
980
  value: (...args) => new mod_js_1.ZLexCountCommand(args, this.opts).exec(this.client)
958
981
  });
982
+ /**
983
+ * @see https://redis.io/commands/zmscore
984
+ */
985
+ Object.defineProperty(this, "zmscore", {
986
+ enumerable: true,
987
+ configurable: true,
988
+ writable: true,
989
+ value: (...args) => new zmscore_js_1.ZMScoreCommand(args, this.opts).exec(this.client)
990
+ });
959
991
  /**
960
992
  * @see https://redis.io/commands/zpopmax
961
993
  */
@@ -1067,5 +1099,8 @@ class Redis {
1067
1099
  this.client = client;
1068
1100
  this.opts = opts;
1069
1101
  }
1102
+ createScript(script) {
1103
+ return new script_js_1.Script(this, script);
1104
+ }
1070
1105
  }
1071
1106
  exports.Redis = Redis;
@@ -0,0 +1,81 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Script = void 0;
4
+ const mod_js_1 = require("../deps/deno.land/x/sha1@v1.0.3/mod.js");
5
+ /**
6
+ * Creates a new script.
7
+ *
8
+ * Scripts offer the ability to optimistically try to execute a script without having to send the
9
+ * entire script to the server. If the script is loaded on the server, it tries again by sending
10
+ * the entire script. Afterwards, the script is cached on the server.
11
+ *
12
+ * @example
13
+ * ```ts
14
+ * const redis = new Redis({...})
15
+ *
16
+ * const script = redis.createScript<string>("return ARGV[1];")
17
+ * const arg1 = await script.eval([], ["Hello World"])
18
+ * assertEquals(arg1, "Hello World")
19
+ * ```
20
+ */
21
+ class Script {
22
+ constructor(redis, script) {
23
+ Object.defineProperty(this, "script", {
24
+ enumerable: true,
25
+ configurable: true,
26
+ writable: true,
27
+ value: void 0
28
+ });
29
+ Object.defineProperty(this, "sha1", {
30
+ enumerable: true,
31
+ configurable: true,
32
+ writable: true,
33
+ value: void 0
34
+ });
35
+ Object.defineProperty(this, "redis", {
36
+ enumerable: true,
37
+ configurable: true,
38
+ writable: true,
39
+ value: void 0
40
+ });
41
+ this.redis = redis;
42
+ this.sha1 = this.digest(script);
43
+ this.script = script;
44
+ }
45
+ /**
46
+ * Send an `EVAL` command to redis.
47
+ */
48
+ async eval(keys, args) {
49
+ return await this.redis.eval(this.script, keys, args);
50
+ }
51
+ /**
52
+ * Calculates the sha1 hash of the script and then calls `EVALSHA`.
53
+ */
54
+ async evalsha(keys, args) {
55
+ return await this.redis.evalsha(this.sha1, keys, args);
56
+ }
57
+ /**
58
+ * Optimistically try to run `EVALSHA` first.
59
+ * If the script is not loaded in redis, it will fall back and try again with `EVAL`.
60
+ *
61
+ * Following calls will be able to use the cached script
62
+ */
63
+ async exec(keys, args) {
64
+ const res = await this.redis.evalsha(this.sha1, keys, args).catch(async (err) => {
65
+ if (err instanceof Error &&
66
+ err.message.toLowerCase().includes("noscript")) {
67
+ return await this.redis.eval(this.script, keys, args);
68
+ }
69
+ throw err;
70
+ });
71
+ return res;
72
+ }
73
+ /**
74
+ * Compute the sha1 hash of the script and return its hex representation.
75
+ */
76
+ digest(s) {
77
+ const hash = (0, mod_js_1.sha1)(s, "utf8", "hex");
78
+ return typeof hash === "string" ? hash : new TextDecoder().decode(hash);
79
+ }
80
+ }
81
+ exports.Script = Script;
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.Redis = void 0;
27
27
  const core = __importStar(require("../pkg/redis.js"));
28
- const error_js_1 = require("../pkg/error.js");
28
+ const http_js_1 = require("../pkg/http.js");
29
29
  /**
30
30
  * Serverless redis client for upstash.
31
31
  */
@@ -52,7 +52,8 @@ class Redis extends core.Redis {
52
52
  /\r|\n/.test(config.token)) {
53
53
  console.warn("The redis token contains whitespace or newline, which can cause errors!");
54
54
  }
55
- const client = defaultRequester({
55
+ const client = new http_js_1.HttpClient({
56
+ retry: config.retry,
56
57
  baseUrl: config.url,
57
58
  headers: { authorization: `Bearer ${config.token}` },
58
59
  });
@@ -70,9 +71,8 @@ class Redis extends core.Redis {
70
71
  * ```ts
71
72
  * const redis = Redis.fromEnv(env)
72
73
  * ```
73
- *
74
74
  */
75
- static fromEnv(env) {
75
+ static fromEnv(env, opts) {
76
76
  // @ts-ignore These will be defined by cloudflare
77
77
  const url = env?.UPSTASH_REDIS_REST_URL ?? UPSTASH_REDIS_REST_URL;
78
78
  // @ts-ignore These will be defined by cloudflare
@@ -83,27 +83,7 @@ class Redis extends core.Redis {
83
83
  if (!token) {
84
84
  throw new Error("Unable to find environment variable: `UPSTASH_REDIS_REST_TOKEN`. Please add it via `wrangler secret put UPSTASH_REDIS_REST_TOKEN`");
85
85
  }
86
- return new Redis({ url, token });
86
+ return new Redis({ ...opts, url, token });
87
87
  }
88
88
  }
89
89
  exports.Redis = Redis;
90
- function defaultRequester(config) {
91
- return {
92
- request: async function (req) {
93
- if (!req.path) {
94
- req.path = [];
95
- }
96
- const res = await fetch([config.baseUrl, ...req.path].join("/"), {
97
- method: "POST",
98
- headers: { "Content-Type": "application/json", ...config.headers },
99
- body: JSON.stringify(req.body),
100
- keepalive: true,
101
- });
102
- const body = (await res.json());
103
- if (!res.ok) {
104
- throw new error_js_1.UpstashError(body.error);
105
- }
106
- return body;
107
- },
108
- };
109
- }
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.Redis = void 0;
27
27
  const core = __importStar(require("../pkg/redis.js"));
28
- const error_js_1 = require("../pkg/error.js");
28
+ const http_js_1 = require("../pkg/http.js");
29
29
  /**
30
30
  * Serverless redis client for upstash.
31
31
  */
@@ -53,10 +53,11 @@ class Redis extends core.Redis {
53
53
  /\r|\n/.test(config.token)) {
54
54
  console.warn("The redis token contains whitespace or newline, which can cause errors!");
55
55
  }
56
- const client = defaultRequester({
56
+ const client = new http_js_1.HttpClient({
57
57
  baseUrl: config.url,
58
+ retry: config.retry,
58
59
  headers: { authorization: `Bearer ${config.token}` },
59
- backend: config.backend,
60
+ options: { backend: config.backend },
60
61
  });
61
62
  super(client, {
62
63
  automaticDeserialization: config.automaticDeserialization,
@@ -64,25 +65,3 @@ class Redis extends core.Redis {
64
65
  }
65
66
  }
66
67
  exports.Redis = Redis;
67
- function defaultRequester(config) {
68
- return {
69
- request: async function (req) {
70
- if (!req.path) {
71
- req.path = [];
72
- }
73
- const res = await fetch([config.baseUrl, ...req.path].join("/"), {
74
- method: "POST",
75
- headers: { "Content-Type": "application/json", ...config.headers },
76
- body: JSON.stringify(req.body),
77
- keepalive: true,
78
- // @ts-expect-error fastly requires `backend`
79
- backend: config.backend,
80
- });
81
- const body = (await res.json());
82
- if (!res.ok) {
83
- throw new error_js_1.UpstashError(body.error);
84
- }
85
- return body;
86
- },
87
- };
88
- }
@@ -26,7 +26,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
26
26
  Object.defineProperty(exports, "__esModule", { value: true });
27
27
  exports.Redis = void 0;
28
28
  const core = __importStar(require("../pkg/redis.js"));
29
- const error_js_1 = require("../pkg/error.js");
29
+ const http_js_1 = require("../pkg/http.js");
30
30
  require("isomorphic-fetch");
31
31
  /**
32
32
  * Serverless redis client for upstash.
@@ -47,8 +47,9 @@ class Redis extends core.Redis {
47
47
  /\r|\n/.test(configOrRequester.token)) {
48
48
  console.warn("The redis token contains whitespace or newline, which can cause errors!");
49
49
  }
50
- const client = defaultRequester({
50
+ const client = new http_js_1.HttpClient({
51
51
  baseUrl: configOrRequester.url,
52
+ retry: configOrRequester.retry,
52
53
  headers: { authorization: `Bearer ${configOrRequester.token}` },
53
54
  // agent: configOrRequester.agent,
54
55
  });
@@ -80,29 +81,7 @@ class Redis extends core.Redis {
80
81
  if (!token) {
81
82
  throw new Error("Unable to find environment variable: `UPSTASH_REDIS_REST_TOKEN`");
82
83
  }
83
- return new Redis({ url, token, ...config });
84
+ return new Redis({ ...config, url, token });
84
85
  }
85
86
  }
86
87
  exports.Redis = Redis;
87
- function defaultRequester(config) {
88
- return {
89
- request: async function (req) {
90
- if (!req.path) {
91
- req.path = [];
92
- }
93
- const res = await fetch([config.baseUrl, ...req.path].join("/"), {
94
- method: "POST",
95
- headers: { "Content-Type": "application/json", ...config.headers },
96
- body: JSON.stringify(req.body),
97
- keepalive: true,
98
- // @ts-ignore
99
- agent: config.agent,
100
- });
101
- const body = (await res.json());
102
- if (!res.ok) {
103
- throw new error_js_1.UpstashError(body.error);
104
- }
105
- return body;
106
- },
107
- };
108
- }
@@ -26,7 +26,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
26
26
  Object.defineProperty(exports, "__esModule", { value: true });
27
27
  exports.Redis = void 0;
28
28
  const core = __importStar(require("../pkg/redis.js"));
29
- const error_js_1 = require("../pkg/error.js");
29
+ const http_js_1 = require("../pkg/http.js");
30
30
  /**
31
31
  * Serverless redis client for upstash.
32
32
  */
@@ -46,8 +46,9 @@ class Redis extends core.Redis {
46
46
  /\r|\n/.test(configOrRequester.token)) {
47
47
  console.warn("The redis token contains whitespace or newline, which can cause errors!");
48
48
  }
49
- const client = defaultRequester({
49
+ const client = new http_js_1.HttpClient({
50
50
  baseUrl: configOrRequester.url,
51
+ retry: configOrRequester.retry,
51
52
  headers: { authorization: `Bearer ${configOrRequester.token}` },
52
53
  // agent: configOrRequester.agent,
53
54
  });
@@ -79,29 +80,7 @@ class Redis extends core.Redis {
79
80
  if (!token) {
80
81
  throw new Error("Unable to find environment variable: `UPSTASH_REDIS_REST_TOKEN`");
81
82
  }
82
- return new Redis({ url, token, ...config });
83
+ return new Redis({ ...config, url, token });
83
84
  }
84
85
  }
85
86
  exports.Redis = Redis;
86
- function defaultRequester(config) {
87
- return {
88
- request: async function (req) {
89
- if (!req.path) {
90
- req.path = [];
91
- }
92
- const res = await fetch([config.baseUrl, ...req.path].join("/"), {
93
- method: "POST",
94
- headers: { "Content-Type": "application/json", ...config.headers },
95
- body: JSON.stringify(req.body),
96
- keepalive: true,
97
- // @ts-ignore
98
- agent: config.agent,
99
- });
100
- const body = (await res.json());
101
- if (!res.ok) {
102
- throw new error_js_1.UpstashError(body.error);
103
- }
104
- return body;
105
- },
106
- };
107
- }
@@ -0,0 +1,5 @@
1
+ export declare function init(lookup: string[], revLookup: number[], urlsafe?: boolean): {
2
+ byteLength(b64: string): number;
3
+ toUint8Array(b64: string): Uint8Array;
4
+ fromUint8Array(buf: Uint8Array): string;
5
+ };
@@ -0,0 +1 @@
1
+ export declare const byteLength: (b64: string) => number, toUint8Array: (b64: string) => Uint8Array, fromUint8Array: (buf: Uint8Array) => string;
@@ -0,0 +1 @@
1
+ export { encode, decode } from "../../../denopkg.com/chiefbiiko/std-encoding@v1.0.0/mod.js";
@@ -0,0 +1,26 @@
1
+ /** Byte length of a SHA1 digest. */
2
+ export declare const BYTES: number;
3
+ /** A class representation of the SHA1 algorithm. */
4
+ export declare class SHA1 {
5
+ readonly hashSize: number;
6
+ private _buf;
7
+ private _bufIdx;
8
+ private _count;
9
+ private _K;
10
+ private _H;
11
+ private _finalized;
12
+ /** Creates a SHA1 instance. */
13
+ constructor();
14
+ /** Reduces the four input numbers to a single one. */
15
+ protected static F(t: number, b: number, c: number, d: number): number;
16
+ /** Initializes a hash instance. */
17
+ init(): SHA1;
18
+ /** Updates a hash with additional message data. */
19
+ update(msg: string | Uint8Array, inputEncoding?: string): SHA1;
20
+ /** Finalizes a hash with additional message data. */
21
+ digest(outputEncoding?: string): string | Uint8Array;
22
+ /** Performs one transformation cycle. */
23
+ private transform;
24
+ }
25
+ /** Generates a SHA1 hash of the input data. */
26
+ export declare function sha1(msg: string | Uint8Array, inputEncoding?: string, outputEncoding?: string): string | Uint8Array;
@@ -0,0 +1,3 @@
1
+ /** Decodes a Uint8Array to utf8-, base64-, or hex-encoded string. */
2
+ export declare function decode(buf: Uint8Array, encoding?: string): string;
3
+ export declare function encode(str: string, encoding?: string): Uint8Array;
@@ -6,7 +6,6 @@ export declare class BitOpCommand extends Command<number, number> {
6
6
  constructor(cmd: [
7
7
  op: "and" | "or" | "xor",
8
8
  destinationKey: string,
9
- sourceKey: string,
10
9
  ...sourceKeys: string[]
11
10
  ], opts?: CommandOptions<number, number>);
12
11
  constructor(cmd: [op: "not", destinationKey: string, sourceKey: string], opts?: CommandOptions<number, number>);
@@ -3,5 +3,5 @@ import { Command, CommandOptions } from "./command.js";
3
3
  * @see https://redis.io/commands/bitpos
4
4
  */
5
5
  export declare class BitPosCommand extends Command<number, number> {
6
- constructor(cmd: [key: string, start: number, end: number], opts?: CommandOptions<number, number>);
6
+ constructor(cmd: [key: string, bit: 0 | 1, start?: number, end?: number], opts?: CommandOptions<number, number>);
7
7
  }
@@ -2,8 +2,8 @@ import { Command, CommandOptions } from "./command.js";
2
2
  /**
3
3
  * @see https://redis.io/commands/hmset
4
4
  */
5
- export declare class HMSetCommand<TData> extends Command<number, number> {
5
+ export declare class HMSetCommand<TData> extends Command<"OK", "OK"> {
6
6
  constructor([key, kv]: [key: string, kv: {
7
7
  [field: string]: TData;
8
- }], opts?: CommandOptions<number, number>);
8
+ }], opts?: CommandOptions<"OK", "OK">);
9
9
  }
@@ -3,5 +3,5 @@ import { Command, CommandOptions } from "./command.js";
3
3
  * @see https://redis.io/commands/lpop
4
4
  */
5
5
  export declare class LPopCommand<TData = string> extends Command<unknown | null, TData | null> {
6
- constructor(cmd: [key: string], opts?: CommandOptions<unknown | null, TData | null>);
6
+ constructor(cmd: [key: string, count?: number], opts?: CommandOptions<unknown | null, TData | null>);
7
7
  }
@@ -0,0 +1,15 @@
1
+ import { Command, CommandOptions } from "./command.js";
2
+ /**
3
+ * @see https://redis.io/commands/lpos
4
+ */
5
+ export declare class LPosCommand<TData = number> extends Command<TData, TData> {
6
+ constructor(cmd: [
7
+ key: string,
8
+ element: unknown,
9
+ opts?: {
10
+ rank?: number;
11
+ count?: number;
12
+ maxLen?: number;
13
+ }
14
+ ], opts?: CommandOptions<TData, TData>);
15
+ }
@@ -3,5 +3,5 @@ import { Command, CommandOptions } from "./command.js";
3
3
  * @see https://redis.io/commands/mget
4
4
  */
5
5
  export declare class MGetCommand<TData extends unknown[]> extends Command<(string | null)[], TData> {
6
- constructor(cmd: [...keys: [string, ...string[]]], opts?: CommandOptions<(string | null)[], TData>);
6
+ constructor(cmd: [...keys: string[]], opts?: CommandOptions<(string | null)[], TData>);
7
7
  }
@@ -42,6 +42,7 @@ export * from "./lindex.js";
42
42
  export * from "./linsert.js";
43
43
  export * from "./llen.js";
44
44
  export * from "./lpop.js";
45
+ export * from "./lpos.js";
45
46
  export * from "./lpush.js";
46
47
  export * from "./lpushx.js";
47
48
  export * from "./lrange.js";
@@ -2,6 +2,6 @@ import { Command, CommandOptions } from "./command.js";
2
2
  /**
3
3
  * @see https://redis.io/commands/rpop
4
4
  */
5
- export declare class RPopCommand<TData = string> extends Command<unknown | null, TData | null> {
6
- constructor(cmd: [key: string], opts?: CommandOptions<unknown | null, TData | null>);
5
+ export declare class RPopCommand<TData extends unknown | unknown[] = string> extends Command<unknown | null, TData | null> {
6
+ constructor(cmd: [key: string, count?: number], opts?: CommandOptions<unknown | null, TData | null>);
7
7
  }
@@ -2,6 +2,7 @@ import { Command, CommandOptions } from "./command.js";
2
2
  export declare type ScanCommandOptions = {
3
3
  match?: string;
4
4
  count?: number;
5
+ type?: string;
5
6
  };
6
7
  /**
7
8
  * @see https://redis.io/commands/scan
@@ -1,9 +1,7 @@
1
1
  import { Command, CommandOptions } from "./command.js";
2
- declare type TupleOfLength<T, L extends number, R extends T[] = []> = R["length"] extends L ? R : TupleOfLength<T, L, [...R, T]>;
3
2
  /**
4
3
  * @see https://redis.io/commands/script-exists
5
4
  */
6
- export declare class ScriptExistsCommand<T extends [string, ...string[]]> extends Command<T extends [string] ? string : TupleOfLength<string, T["length"]>, TupleOfLength<string, T["length"]>> {
7
- constructor(hashes: T, opts?: CommandOptions<T extends [string] ? string : TupleOfLength<string, T["length"]>, TupleOfLength<string, T["length"]>>);
5
+ export declare class ScriptExistsCommand<T extends string[]> extends Command<string[], number[]> {
6
+ constructor(hashes: T, opts?: CommandOptions<string[], number[]>);
8
7
  }
9
- export {};