@upstash/redis 0.0.0-ci.76cb8558-20220809 → 0.0.0-ci.7832ac9c-20231018
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/README.md +20 -18
- package/esm/deps/deno.land/x/sha1@v1.0.3/deps.js +1 -0
- package/esm/deps/denopkg.com/chiefbiiko/{std-encoding@v1.1.1 → std-encoding@v1.0.0}/mod.js +4 -8
- package/esm/pkg/commands/command.js +12 -3
- package/esm/pkg/commands/geo_add.js +27 -0
- package/esm/pkg/commands/getdel.js +9 -0
- package/esm/pkg/commands/hgetall.js +0 -4
- package/esm/pkg/commands/hrandfield.js +39 -0
- package/esm/pkg/commands/json_arrappend.js +9 -0
- package/esm/pkg/commands/json_arrindex.js +9 -0
- package/esm/pkg/commands/json_arrinsert.js +9 -0
- package/esm/pkg/commands/json_arrlen.js +9 -0
- package/esm/pkg/commands/json_arrpop.js +9 -0
- package/esm/pkg/commands/json_arrtrim.js +12 -0
- package/esm/pkg/commands/json_clear.js +9 -0
- package/esm/pkg/commands/json_del.js +9 -0
- package/esm/pkg/commands/json_forget.js +9 -0
- package/esm/pkg/commands/json_get.js +30 -0
- package/esm/pkg/commands/json_mget.js +9 -0
- package/esm/pkg/commands/json_numincrby.js +9 -0
- package/esm/pkg/commands/json_nummultby.js +9 -0
- package/esm/pkg/commands/json_objkeys.js +9 -0
- package/esm/pkg/commands/json_objlen.js +9 -0
- package/esm/pkg/commands/json_resp.js +9 -0
- package/esm/pkg/commands/json_set.js +18 -0
- package/esm/pkg/commands/json_strappend.js +9 -0
- package/esm/pkg/commands/json_strlen.js +9 -0
- package/esm/pkg/commands/json_toggle.js +9 -0
- package/esm/pkg/commands/json_type.js +9 -0
- package/esm/pkg/commands/lmove.js +9 -0
- package/esm/pkg/commands/mget.js +4 -1
- package/esm/pkg/commands/mod.js +29 -0
- package/esm/pkg/commands/scan.js +3 -0
- package/esm/pkg/commands/set.js +1 -1
- package/esm/pkg/commands/smismember.js +9 -0
- package/esm/pkg/commands/xadd.js +26 -0
- package/esm/pkg/commands/xrange.js +36 -0
- package/esm/pkg/commands/zdiffstore.js +9 -0
- package/esm/pkg/commands/zmscore.js +10 -0
- package/esm/pkg/commands/zunion.js +30 -0
- package/esm/pkg/http.js +100 -3
- package/esm/pkg/pipeline.js +185 -12
- package/esm/pkg/redis.js +229 -2
- package/esm/pkg/script.js +1 -1
- package/esm/platforms/cloudflare.js +10 -2
- package/esm/platforms/fastly.js +6 -0
- package/esm/platforms/node_with_fetch.js +26 -1
- package/esm/platforms/nodejs.js +24 -1
- package/esm/version.js +1 -0
- package/package.json +53 -20
- package/script/deps/{denopkg.com/chiefbiiko/sha1@master → deno.land/x/sha1@v1.0.3}/deps.js +1 -1
- package/script/deps/denopkg.com/chiefbiiko/{std-encoding@v1.1.1 → std-encoding@v1.0.0}/mod.js +4 -31
- package/script/pkg/commands/command.js +12 -3
- package/script/pkg/commands/geo_add.js +31 -0
- package/script/pkg/commands/getdel.js +13 -0
- package/script/pkg/commands/hgetall.js +0 -4
- package/script/pkg/commands/hrandfield.js +43 -0
- package/script/pkg/commands/json_arrappend.js +13 -0
- package/script/pkg/commands/json_arrindex.js +13 -0
- package/script/pkg/commands/json_arrinsert.js +13 -0
- package/script/pkg/commands/json_arrlen.js +13 -0
- package/script/pkg/commands/json_arrpop.js +13 -0
- package/script/pkg/commands/json_arrtrim.js +16 -0
- package/script/pkg/commands/json_clear.js +13 -0
- package/script/pkg/commands/json_del.js +13 -0
- package/script/pkg/commands/json_forget.js +13 -0
- package/script/pkg/commands/json_get.js +34 -0
- package/script/pkg/commands/json_mget.js +13 -0
- package/script/pkg/commands/json_numincrby.js +13 -0
- package/script/pkg/commands/json_nummultby.js +13 -0
- package/script/pkg/commands/json_objkeys.js +13 -0
- package/script/pkg/commands/json_objlen.js +13 -0
- package/script/pkg/commands/json_resp.js +13 -0
- package/script/pkg/commands/json_set.js +22 -0
- package/script/pkg/commands/json_strappend.js +13 -0
- package/script/pkg/commands/json_strlen.js +13 -0
- package/script/pkg/commands/json_toggle.js +13 -0
- package/script/pkg/commands/json_type.js +13 -0
- package/script/pkg/commands/lmove.js +13 -0
- package/script/pkg/commands/mget.js +4 -1
- package/script/pkg/commands/mod.js +29 -0
- package/script/pkg/commands/scan.js +3 -0
- package/script/pkg/commands/set.js +1 -1
- package/script/pkg/commands/smismember.js +13 -0
- package/script/pkg/commands/xadd.js +30 -0
- package/script/pkg/commands/xrange.js +40 -0
- package/script/pkg/commands/zdiffstore.js +13 -0
- package/script/pkg/commands/zmscore.js +14 -0
- package/script/pkg/commands/zunion.js +34 -0
- package/script/pkg/http.js +100 -3
- package/script/pkg/pipeline.js +184 -11
- package/script/pkg/redis.js +228 -1
- package/script/pkg/script.js +1 -1
- package/script/platforms/cloudflare.js +10 -2
- package/script/platforms/fastly.js +6 -0
- package/script/platforms/node_with_fetch.js +26 -1
- package/script/platforms/nodejs.js +24 -1
- package/script/version.js +4 -0
- package/types/deps/deno.land/x/sha1@v1.0.3/deps.d.ts +1 -0
- package/types/pkg/commands/command.d.ts +5 -5
- package/types/pkg/commands/geo_add.d.ts +25 -0
- package/types/pkg/commands/getdel.d.ts +7 -0
- package/types/pkg/commands/hdel.d.ts +1 -1
- package/types/pkg/commands/hrandfield.d.ts +9 -0
- package/types/pkg/commands/json_arrappend.d.ts +7 -0
- package/types/pkg/commands/json_arrindex.d.ts +13 -0
- package/types/pkg/commands/json_arrinsert.d.ts +7 -0
- package/types/pkg/commands/json_arrlen.d.ts +7 -0
- package/types/pkg/commands/json_arrpop.d.ts +7 -0
- package/types/pkg/commands/json_arrtrim.d.ts +7 -0
- package/types/pkg/commands/json_clear.d.ts +7 -0
- package/types/pkg/commands/json_del.d.ts +7 -0
- package/types/pkg/commands/json_forget.d.ts +7 -0
- package/types/pkg/commands/json_get.d.ts +15 -0
- package/types/pkg/commands/json_mget.d.ts +7 -0
- package/types/pkg/commands/json_numincrby.d.ts +7 -0
- package/types/pkg/commands/json_nummultby.d.ts +7 -0
- package/types/pkg/commands/json_objkeys.d.ts +7 -0
- package/types/pkg/commands/json_objlen.d.ts +7 -0
- package/types/pkg/commands/json_resp.d.ts +7 -0
- package/types/pkg/commands/json_set.d.ts +18 -0
- package/types/pkg/commands/json_strappend.d.ts +7 -0
- package/types/pkg/commands/json_strlen.d.ts +7 -0
- package/types/pkg/commands/json_toggle.d.ts +7 -0
- package/types/pkg/commands/json_type.d.ts +7 -0
- package/types/pkg/commands/lmove.d.ts +12 -0
- package/types/pkg/commands/mget.d.ts +1 -1
- package/types/pkg/commands/mod.d.ts +29 -0
- package/types/pkg/commands/scan.d.ts +2 -1
- package/types/pkg/commands/script_flush.d.ts +1 -1
- package/types/pkg/commands/set.d.ts +3 -3
- package/types/pkg/commands/smembers.d.ts +2 -2
- package/types/pkg/commands/smismember.d.ts +7 -0
- package/types/pkg/commands/type.d.ts +1 -1
- package/types/pkg/commands/xadd.d.ts +31 -0
- package/types/pkg/commands/xrange.d.ts +9 -0
- package/types/pkg/commands/zadd.d.ts +3 -3
- package/types/pkg/commands/zdiffstore.d.ts +7 -0
- package/types/pkg/commands/zinterstore.d.ts +1 -1
- package/types/pkg/commands/zmscore.d.ts +7 -0
- package/types/pkg/commands/zrange.d.ts +1 -1
- package/types/pkg/commands/zunion.d.ts +29 -0
- package/types/pkg/commands/zunionstore.d.ts +1 -1
- package/types/pkg/http.d.ts +48 -7
- package/types/pkg/pipeline.d.ts +263 -125
- package/types/pkg/redis.d.ts +175 -13
- package/types/pkg/types.d.ts +27 -1
- package/types/platforms/cloudflare.d.ts +9 -8
- package/types/platforms/fastly.d.ts +3 -7
- package/types/platforms/node_with_fetch.d.ts +3 -22
- package/types/platforms/nodejs.d.ts +4 -7
- package/types/version.d.ts +1 -0
- package/esm/deps/deno.land/x/base64@v0.2.1/mod.js +0 -13
- package/esm/deps/denopkg.com/chiefbiiko/sha1@master/deps.js +0 -1
- package/script/deps/deno.land/x/base64@v0.2.1/mod.js +0 -17
- package/types/deps/deno.land/x/base64@v0.2.1/mod.d.ts +0 -1
- package/types/deps/denopkg.com/chiefbiiko/sha1@master/deps.d.ts +0 -1
- /package/esm/deps/{denopkg.com/chiefbiiko/sha1@master → deno.land/x/sha1@v1.0.3}/mod.js +0 -0
- /package/script/deps/{denopkg.com/chiefbiiko/sha1@master → deno.land/x/sha1@v1.0.3}/mod.js +0 -0
- /package/types/deps/{denopkg.com/chiefbiiko/sha1@master → deno.land/x/sha1@v1.0.3}/mod.d.ts +0 -0
- /package/types/deps/denopkg.com/chiefbiiko/{std-encoding@v1.1.1 → std-encoding@v1.0.0}/mod.d.ts +0 -0
package/script/pkg/redis.js
CHANGED
|
@@ -4,6 +4,8 @@ exports.Redis = void 0;
|
|
|
4
4
|
const mod_js_1 = require("./commands/mod.js");
|
|
5
5
|
const pipeline_js_1 = require("./pipeline.js");
|
|
6
6
|
const script_js_1 = require("./script.js");
|
|
7
|
+
const zmscore_js_1 = require("./commands/zmscore.js");
|
|
8
|
+
const zdiffstore_js_1 = require("./commands/zdiffstore.js");
|
|
7
9
|
/**
|
|
8
10
|
* Serverless redis client for upstash.
|
|
9
11
|
*/
|
|
@@ -32,6 +34,12 @@ class Redis {
|
|
|
32
34
|
writable: true,
|
|
33
35
|
value: void 0
|
|
34
36
|
});
|
|
37
|
+
Object.defineProperty(this, "enableTelemetry", {
|
|
38
|
+
enumerable: true,
|
|
39
|
+
configurable: true,
|
|
40
|
+
writable: true,
|
|
41
|
+
value: void 0
|
|
42
|
+
});
|
|
35
43
|
/**
|
|
36
44
|
* Wrap a new middleware around the HTTP client.
|
|
37
45
|
*/
|
|
@@ -44,6 +52,27 @@ class Redis {
|
|
|
44
52
|
this.client.request = (req) => middleware(req, makeRequest);
|
|
45
53
|
}
|
|
46
54
|
});
|
|
55
|
+
/**
|
|
56
|
+
* Technically this is not private, we can hide it from intellisense by doing this
|
|
57
|
+
*/
|
|
58
|
+
Object.defineProperty(this, "addTelemetry", {
|
|
59
|
+
enumerable: true,
|
|
60
|
+
configurable: true,
|
|
61
|
+
writable: true,
|
|
62
|
+
value: (telemetry) => {
|
|
63
|
+
if (!this.enableTelemetry) {
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
try {
|
|
67
|
+
// @ts-ignore - The `Requester` interface does not know about this method but it will be there
|
|
68
|
+
// as long as the user uses the standard HttpClient
|
|
69
|
+
this.client.mergeTelemetry(telemetry);
|
|
70
|
+
}
|
|
71
|
+
catch {
|
|
72
|
+
// ignore
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
});
|
|
47
76
|
/**
|
|
48
77
|
* Create a new pipeline that allows you to send requests in bulk.
|
|
49
78
|
*
|
|
@@ -53,7 +82,30 @@ class Redis {
|
|
|
53
82
|
enumerable: true,
|
|
54
83
|
configurable: true,
|
|
55
84
|
writable: true,
|
|
56
|
-
value: () => new pipeline_js_1.Pipeline(
|
|
85
|
+
value: () => new pipeline_js_1.Pipeline({
|
|
86
|
+
client: this.client,
|
|
87
|
+
commandOptions: this.opts,
|
|
88
|
+
multiExec: false,
|
|
89
|
+
})
|
|
90
|
+
});
|
|
91
|
+
/**
|
|
92
|
+
* Create a new transaction to allow executing multiple steps atomically.
|
|
93
|
+
*
|
|
94
|
+
* All the commands in a transaction are serialized and executed sequentially. A request sent by
|
|
95
|
+
* another client will never be served in the middle of the execution of a Redis Transaction. This
|
|
96
|
+
* guarantees that the commands are executed as a single isolated operation.
|
|
97
|
+
*
|
|
98
|
+
* @see {@link Pipeline}
|
|
99
|
+
*/
|
|
100
|
+
Object.defineProperty(this, "multi", {
|
|
101
|
+
enumerable: true,
|
|
102
|
+
configurable: true,
|
|
103
|
+
writable: true,
|
|
104
|
+
value: () => new pipeline_js_1.Pipeline({
|
|
105
|
+
client: this.client,
|
|
106
|
+
commandOptions: this.opts,
|
|
107
|
+
multiExec: true,
|
|
108
|
+
})
|
|
57
109
|
});
|
|
58
110
|
/**
|
|
59
111
|
* @see https://redis.io/commands/append
|
|
@@ -217,6 +269,15 @@ class Redis {
|
|
|
217
269
|
writable: true,
|
|
218
270
|
value: (...args) => new mod_js_1.GetBitCommand(args, this.opts).exec(this.client)
|
|
219
271
|
});
|
|
272
|
+
/**
|
|
273
|
+
* @see https://redis.io/commands/getdel
|
|
274
|
+
*/
|
|
275
|
+
Object.defineProperty(this, "getdel", {
|
|
276
|
+
enumerable: true,
|
|
277
|
+
configurable: true,
|
|
278
|
+
writable: true,
|
|
279
|
+
value: (...args) => new mod_js_1.GetDelCommand(args, this.opts).exec(this.client)
|
|
280
|
+
});
|
|
220
281
|
/**
|
|
221
282
|
* @see https://redis.io/commands/getrange
|
|
222
283
|
*/
|
|
@@ -325,6 +386,16 @@ class Redis {
|
|
|
325
386
|
writable: true,
|
|
326
387
|
value: (key, kv) => new mod_js_1.HMSetCommand([key, kv], this.opts).exec(this.client)
|
|
327
388
|
});
|
|
389
|
+
/**
|
|
390
|
+
* @see https://redis.io/commands/hrandfield
|
|
391
|
+
*/
|
|
392
|
+
Object.defineProperty(this, "hrandfield", {
|
|
393
|
+
enumerable: true,
|
|
394
|
+
configurable: true,
|
|
395
|
+
writable: true,
|
|
396
|
+
value: (key, count, withValues) => new mod_js_1.HRandFieldCommand([key, count, withValues], this.opts)
|
|
397
|
+
.exec(this.client)
|
|
398
|
+
});
|
|
328
399
|
/**
|
|
329
400
|
* @see https://redis.io/commands/hscan
|
|
330
401
|
*/
|
|
@@ -433,6 +504,15 @@ class Redis {
|
|
|
433
504
|
writable: true,
|
|
434
505
|
value: (...args) => new mod_js_1.LLenCommand(args, this.opts).exec(this.client)
|
|
435
506
|
});
|
|
507
|
+
/**
|
|
508
|
+
* @see https://redis.io/commands/lmove
|
|
509
|
+
*/
|
|
510
|
+
Object.defineProperty(this, "lmove", {
|
|
511
|
+
enumerable: true,
|
|
512
|
+
configurable: true,
|
|
513
|
+
writable: true,
|
|
514
|
+
value: (...args) => new mod_js_1.LMoveCommand(args, this.opts).exec(this.client)
|
|
515
|
+
});
|
|
436
516
|
/**
|
|
437
517
|
* @see https://redis.io/commands/lpop
|
|
438
518
|
*/
|
|
@@ -793,6 +873,15 @@ class Redis {
|
|
|
793
873
|
writable: true,
|
|
794
874
|
value: (key, member) => new mod_js_1.SIsMemberCommand([key, member], this.opts).exec(this.client)
|
|
795
875
|
});
|
|
876
|
+
/**
|
|
877
|
+
* @see https://redis.io/commands/smismember
|
|
878
|
+
*/
|
|
879
|
+
Object.defineProperty(this, "smismember", {
|
|
880
|
+
enumerable: true,
|
|
881
|
+
configurable: true,
|
|
882
|
+
writable: true,
|
|
883
|
+
value: (key, members) => new mod_js_1.SMIsMemberCommand([key, members], this.opts).exec(this.client)
|
|
884
|
+
});
|
|
796
885
|
/**
|
|
797
886
|
* @see https://redis.io/commands/smembers
|
|
798
887
|
*/
|
|
@@ -919,6 +1008,24 @@ class Redis {
|
|
|
919
1008
|
writable: true,
|
|
920
1009
|
value: (...args) => new mod_js_1.UnlinkCommand(args, this.opts).exec(this.client)
|
|
921
1010
|
});
|
|
1011
|
+
/**
|
|
1012
|
+
* @see https://redis.io/commands/xadd
|
|
1013
|
+
*/
|
|
1014
|
+
Object.defineProperty(this, "xadd", {
|
|
1015
|
+
enumerable: true,
|
|
1016
|
+
configurable: true,
|
|
1017
|
+
writable: true,
|
|
1018
|
+
value: (...args) => new mod_js_1.XAddCommand(args, this.opts).exec(this.client)
|
|
1019
|
+
});
|
|
1020
|
+
/**
|
|
1021
|
+
* @see https://redis.io/commands/xrange
|
|
1022
|
+
*/
|
|
1023
|
+
Object.defineProperty(this, "xrange", {
|
|
1024
|
+
enumerable: true,
|
|
1025
|
+
configurable: true,
|
|
1026
|
+
writable: true,
|
|
1027
|
+
value: (...args) => new mod_js_1.XRangeCommand(args, this.opts).exec(this.client)
|
|
1028
|
+
});
|
|
922
1029
|
/**
|
|
923
1030
|
* @see https://redis.io/commands/zadd
|
|
924
1031
|
*/
|
|
@@ -951,6 +1058,15 @@ class Redis {
|
|
|
951
1058
|
writable: true,
|
|
952
1059
|
value: (...args) => new mod_js_1.ZCountCommand(args, this.opts).exec(this.client)
|
|
953
1060
|
});
|
|
1061
|
+
/**
|
|
1062
|
+
* @see https://redis.io/commands/zdiffstore
|
|
1063
|
+
*/
|
|
1064
|
+
Object.defineProperty(this, "zdiffstore", {
|
|
1065
|
+
enumerable: true,
|
|
1066
|
+
configurable: true,
|
|
1067
|
+
writable: true,
|
|
1068
|
+
value: (...args) => new zdiffstore_js_1.ZDiffStoreCommand(args, this.opts).exec(this.client)
|
|
1069
|
+
});
|
|
954
1070
|
/**
|
|
955
1071
|
* @see https://redis.io/commands/zincrby
|
|
956
1072
|
*/
|
|
@@ -978,6 +1094,15 @@ class Redis {
|
|
|
978
1094
|
writable: true,
|
|
979
1095
|
value: (...args) => new mod_js_1.ZLexCountCommand(args, this.opts).exec(this.client)
|
|
980
1096
|
});
|
|
1097
|
+
/**
|
|
1098
|
+
* @see https://redis.io/commands/zmscore
|
|
1099
|
+
*/
|
|
1100
|
+
Object.defineProperty(this, "zmscore", {
|
|
1101
|
+
enumerable: true,
|
|
1102
|
+
configurable: true,
|
|
1103
|
+
writable: true,
|
|
1104
|
+
value: (...args) => new zmscore_js_1.ZMScoreCommand(args, this.opts).exec(this.client)
|
|
1105
|
+
});
|
|
981
1106
|
/**
|
|
982
1107
|
* @see https://redis.io/commands/zpopmax
|
|
983
1108
|
*/
|
|
@@ -1077,6 +1202,15 @@ class Redis {
|
|
|
1077
1202
|
writable: true,
|
|
1078
1203
|
value: (key, member) => new mod_js_1.ZScoreCommand([key, member], this.opts).exec(this.client)
|
|
1079
1204
|
});
|
|
1205
|
+
/**
|
|
1206
|
+
* @see https://redis.io/commands/zunion
|
|
1207
|
+
*/
|
|
1208
|
+
Object.defineProperty(this, "zunion", {
|
|
1209
|
+
enumerable: true,
|
|
1210
|
+
configurable: true,
|
|
1211
|
+
writable: true,
|
|
1212
|
+
value: (...args) => new mod_js_1.ZUnionCommand(args, this.opts).exec(this.client)
|
|
1213
|
+
});
|
|
1080
1214
|
/**
|
|
1081
1215
|
* @see https://redis.io/commands/zunionstore
|
|
1082
1216
|
*/
|
|
@@ -1088,6 +1222,99 @@ class Redis {
|
|
|
1088
1222
|
});
|
|
1089
1223
|
this.client = client;
|
|
1090
1224
|
this.opts = opts;
|
|
1225
|
+
this.enableTelemetry = opts?.enableTelemetry ?? true;
|
|
1226
|
+
}
|
|
1227
|
+
get json() {
|
|
1228
|
+
return {
|
|
1229
|
+
/**
|
|
1230
|
+
* @see https://redis.io/commands/json.arrappend
|
|
1231
|
+
*/
|
|
1232
|
+
arrappend: (...args) => new mod_js_1.JsonArrAppendCommand(args, this.opts).exec(this.client),
|
|
1233
|
+
/**
|
|
1234
|
+
* @see https://redis.io/commands/json.arrindex
|
|
1235
|
+
*/
|
|
1236
|
+
arrindex: (...args) => new mod_js_1.JsonArrIndexCommand(args, this.opts).exec(this.client),
|
|
1237
|
+
/**
|
|
1238
|
+
* @see https://redis.io/commands/json.arrinsert
|
|
1239
|
+
*/
|
|
1240
|
+
arrinsert: (...args) => new mod_js_1.JsonArrInsertCommand(args, this.opts).exec(this.client),
|
|
1241
|
+
/**
|
|
1242
|
+
* @see https://redis.io/commands/json.arrlen
|
|
1243
|
+
*/
|
|
1244
|
+
arrlen: (...args) => new mod_js_1.JsonArrLenCommand(args, this.opts).exec(this.client),
|
|
1245
|
+
/**
|
|
1246
|
+
* @see https://redis.io/commands/json.arrpop
|
|
1247
|
+
*/
|
|
1248
|
+
arrpop: (...args) => new mod_js_1.JsonArrPopCommand(args, this.opts).exec(this.client),
|
|
1249
|
+
/**
|
|
1250
|
+
* @see https://redis.io/commands/json.arrtrim
|
|
1251
|
+
*/
|
|
1252
|
+
arrtrim: (...args) => new mod_js_1.JsonArrTrimCommand(args, this.opts).exec(this.client),
|
|
1253
|
+
/**
|
|
1254
|
+
* @see https://redis.io/commands/json.clear
|
|
1255
|
+
*/
|
|
1256
|
+
clear: (...args) => new mod_js_1.JsonClearCommand(args, this.opts).exec(this.client),
|
|
1257
|
+
/**
|
|
1258
|
+
* @see https://redis.io/commands/json.del
|
|
1259
|
+
*/
|
|
1260
|
+
del: (...args) => new mod_js_1.JsonDelCommand(args, this.opts).exec(this.client),
|
|
1261
|
+
/**
|
|
1262
|
+
* @see https://redis.io/commands/json.forget
|
|
1263
|
+
*/
|
|
1264
|
+
forget: (...args) => new mod_js_1.JsonForgetCommand(args, this.opts).exec(this.client),
|
|
1265
|
+
/**
|
|
1266
|
+
* @see https://redis.io/commands/geoadd
|
|
1267
|
+
*/
|
|
1268
|
+
geoadd: (...args) => new mod_js_1.GeoAddCommand(args, this.opts).exec(this.client),
|
|
1269
|
+
/**
|
|
1270
|
+
* @see https://redis.io/commands/json.get
|
|
1271
|
+
*/
|
|
1272
|
+
get: (...args) => new mod_js_1.JsonGetCommand(args, this.opts).exec(this.client),
|
|
1273
|
+
/**
|
|
1274
|
+
* @see https://redis.io/commands/json.mget
|
|
1275
|
+
*/
|
|
1276
|
+
mget: (...args) => new mod_js_1.JsonMGetCommand(args, this.opts).exec(this.client),
|
|
1277
|
+
/**
|
|
1278
|
+
* @see https://redis.io/commands/json.numincrby
|
|
1279
|
+
*/
|
|
1280
|
+
numincrby: (...args) => new mod_js_1.JsonNumIncrByCommand(args, this.opts).exec(this.client),
|
|
1281
|
+
/**
|
|
1282
|
+
* @see https://redis.io/commands/json.nummultby
|
|
1283
|
+
*/
|
|
1284
|
+
nummultby: (...args) => new mod_js_1.JsonNumMultByCommand(args, this.opts).exec(this.client),
|
|
1285
|
+
/**
|
|
1286
|
+
* @see https://redis.io/commands/json.objkeys
|
|
1287
|
+
*/
|
|
1288
|
+
objkeys: (...args) => new mod_js_1.JsonObjKeysCommand(args, this.opts).exec(this.client),
|
|
1289
|
+
/**
|
|
1290
|
+
* @see https://redis.io/commands/json.objlen
|
|
1291
|
+
*/
|
|
1292
|
+
objlen: (...args) => new mod_js_1.JsonObjLenCommand(args, this.opts).exec(this.client),
|
|
1293
|
+
/**
|
|
1294
|
+
* @see https://redis.io/commands/json.resp
|
|
1295
|
+
*/
|
|
1296
|
+
resp: (...args) => new mod_js_1.JsonRespCommand(args, this.opts).exec(this.client),
|
|
1297
|
+
/**
|
|
1298
|
+
* @see https://redis.io/commands/json.set
|
|
1299
|
+
*/
|
|
1300
|
+
set: (...args) => new mod_js_1.JsonSetCommand(args, this.opts).exec(this.client),
|
|
1301
|
+
/**
|
|
1302
|
+
* @see https://redis.io/commands/json.strappend
|
|
1303
|
+
*/
|
|
1304
|
+
strappend: (...args) => new mod_js_1.JsonStrAppendCommand(args, this.opts).exec(this.client),
|
|
1305
|
+
/**
|
|
1306
|
+
* @see https://redis.io/commands/json.strlen
|
|
1307
|
+
*/
|
|
1308
|
+
strlen: (...args) => new mod_js_1.JsonStrLenCommand(args, this.opts).exec(this.client),
|
|
1309
|
+
/**
|
|
1310
|
+
* @see https://redis.io/commands/json.toggle
|
|
1311
|
+
*/
|
|
1312
|
+
toggle: (...args) => new mod_js_1.JsonToggleCommand(args, this.opts).exec(this.client),
|
|
1313
|
+
/**
|
|
1314
|
+
* @see https://redis.io/commands/json.type
|
|
1315
|
+
*/
|
|
1316
|
+
type: (...args) => new mod_js_1.JsonTypeCommand(args, this.opts).exec(this.client),
|
|
1317
|
+
};
|
|
1091
1318
|
}
|
|
1092
1319
|
createScript(script) {
|
|
1093
1320
|
return new script_js_1.Script(this, script);
|
package/script/pkg/script.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Script = void 0;
|
|
4
|
-
const mod_js_1 = require("../deps/
|
|
4
|
+
const mod_js_1 = require("../deps/deno.land/x/sha1@v1.0.3/mod.js");
|
|
5
5
|
/**
|
|
6
6
|
* Creates a new script.
|
|
7
7
|
*
|
|
@@ -26,6 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.Redis = void 0;
|
|
27
27
|
const core = __importStar(require("../pkg/redis.js"));
|
|
28
28
|
const http_js_1 = require("../pkg/http.js");
|
|
29
|
+
const version_js_1 = require("../version.js");
|
|
29
30
|
/**
|
|
30
31
|
* Serverless redis client for upstash.
|
|
31
32
|
*/
|
|
@@ -41,7 +42,7 @@ class Redis extends core.Redis {
|
|
|
41
42
|
* });
|
|
42
43
|
* ```
|
|
43
44
|
*/
|
|
44
|
-
constructor(config) {
|
|
45
|
+
constructor(config, env) {
|
|
45
46
|
if (config.url.startsWith(" ") ||
|
|
46
47
|
config.url.endsWith(" ") ||
|
|
47
48
|
/\r|\n/.test(config.url)) {
|
|
@@ -56,10 +57,17 @@ class Redis extends core.Redis {
|
|
|
56
57
|
retry: config.retry,
|
|
57
58
|
baseUrl: config.url,
|
|
58
59
|
headers: { authorization: `Bearer ${config.token}` },
|
|
60
|
+
responseEncoding: config.responseEncoding,
|
|
59
61
|
});
|
|
60
62
|
super(client, {
|
|
63
|
+
enableTelemetry: !env?.UPSTASH_DISABLE_TELEMETRY,
|
|
61
64
|
automaticDeserialization: config.automaticDeserialization,
|
|
62
65
|
});
|
|
66
|
+
// This is only added of the user has not disabled telemetry
|
|
67
|
+
this.addTelemetry({
|
|
68
|
+
platform: "cloudflare",
|
|
69
|
+
sdk: `@upstash/redis@${version_js_1.VERSION}`,
|
|
70
|
+
});
|
|
63
71
|
}
|
|
64
72
|
/*
|
|
65
73
|
* Create a new Upstash Redis instance from environment variables on cloudflare.
|
|
@@ -83,7 +91,7 @@ class Redis extends core.Redis {
|
|
|
83
91
|
if (!token) {
|
|
84
92
|
throw new Error("Unable to find environment variable: `UPSTASH_REDIS_REST_TOKEN`. Please add it via `wrangler secret put UPSTASH_REDIS_REST_TOKEN`");
|
|
85
93
|
}
|
|
86
|
-
return new Redis({ ...opts, url, token });
|
|
94
|
+
return new Redis({ ...opts, url, token }, env);
|
|
87
95
|
}
|
|
88
96
|
}
|
|
89
97
|
exports.Redis = Redis;
|
|
@@ -26,6 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.Redis = void 0;
|
|
27
27
|
const core = __importStar(require("../pkg/redis.js"));
|
|
28
28
|
const http_js_1 = require("../pkg/http.js");
|
|
29
|
+
const version_js_1 = require("../version.js");
|
|
29
30
|
/**
|
|
30
31
|
* Serverless redis client for upstash.
|
|
31
32
|
*/
|
|
@@ -58,10 +59,15 @@ class Redis extends core.Redis {
|
|
|
58
59
|
retry: config.retry,
|
|
59
60
|
headers: { authorization: `Bearer ${config.token}` },
|
|
60
61
|
options: { backend: config.backend },
|
|
62
|
+
responseEncoding: config.responseEncoding,
|
|
61
63
|
});
|
|
62
64
|
super(client, {
|
|
63
65
|
automaticDeserialization: config.automaticDeserialization,
|
|
64
66
|
});
|
|
67
|
+
this.addTelemetry({
|
|
68
|
+
sdk: `@upstash/redis@${version_js_1.VERSION}`,
|
|
69
|
+
platform: "fastly",
|
|
70
|
+
});
|
|
65
71
|
}
|
|
66
72
|
}
|
|
67
73
|
exports.Redis = Redis;
|
|
@@ -27,7 +27,21 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
27
27
|
exports.Redis = void 0;
|
|
28
28
|
const core = __importStar(require("../pkg/redis.js"));
|
|
29
29
|
const http_js_1 = require("../pkg/http.js");
|
|
30
|
+
const version_js_1 = require("../version.js");
|
|
30
31
|
require("isomorphic-fetch");
|
|
32
|
+
// @ts-ignore Deno can't compile
|
|
33
|
+
// import https from "https";
|
|
34
|
+
// @ts-ignore Deno can't compile
|
|
35
|
+
// import http from "http";
|
|
36
|
+
// import "isomorphic-fetch";
|
|
37
|
+
/**
|
|
38
|
+
* Workaround for nodejs 14, where atob is not included in the standardlib
|
|
39
|
+
*/
|
|
40
|
+
if (typeof atob === "undefined") {
|
|
41
|
+
global.atob = function (b64) {
|
|
42
|
+
return Buffer.from(b64, "base64").toString("utf-8");
|
|
43
|
+
};
|
|
44
|
+
}
|
|
31
45
|
/**
|
|
32
46
|
* Serverless redis client for upstash.
|
|
33
47
|
*/
|
|
@@ -51,10 +65,21 @@ class Redis extends core.Redis {
|
|
|
51
65
|
baseUrl: configOrRequester.url,
|
|
52
66
|
retry: configOrRequester.retry,
|
|
53
67
|
headers: { authorization: `Bearer ${configOrRequester.token}` },
|
|
54
|
-
//
|
|
68
|
+
// agent: configOrRequester.agent,
|
|
69
|
+
responseEncoding: configOrRequester.responseEncoding,
|
|
55
70
|
});
|
|
56
71
|
super(client, {
|
|
57
72
|
automaticDeserialization: configOrRequester.automaticDeserialization,
|
|
73
|
+
enableTelemetry: !process.env.UPSTASH_DISABLE_TELEMETRY,
|
|
74
|
+
});
|
|
75
|
+
this.addTelemetry({
|
|
76
|
+
runtime: `node@${process.version}`,
|
|
77
|
+
platform: process.env.VERCEL
|
|
78
|
+
? "vercel"
|
|
79
|
+
: process.env.AWS_REGION
|
|
80
|
+
? "aws"
|
|
81
|
+
: "unknown",
|
|
82
|
+
sdk: `@upstash/redis@${version_js_1.VERSION}`,
|
|
58
83
|
});
|
|
59
84
|
}
|
|
60
85
|
/**
|
|
@@ -27,6 +27,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
27
27
|
exports.Redis = void 0;
|
|
28
28
|
const core = __importStar(require("../pkg/redis.js"));
|
|
29
29
|
const http_js_1 = require("../pkg/http.js");
|
|
30
|
+
const version_js_1 = require("../version.js");
|
|
31
|
+
/**
|
|
32
|
+
* Workaround for nodejs 14, where atob is not included in the standardlib
|
|
33
|
+
*/
|
|
34
|
+
if (typeof atob === "undefined") {
|
|
35
|
+
global.atob = function (b64) {
|
|
36
|
+
return Buffer.from(b64, "base64").toString("utf-8");
|
|
37
|
+
};
|
|
38
|
+
}
|
|
30
39
|
/**
|
|
31
40
|
* Serverless redis client for upstash.
|
|
32
41
|
*/
|
|
@@ -50,10 +59,24 @@ class Redis extends core.Redis {
|
|
|
50
59
|
baseUrl: configOrRequester.url,
|
|
51
60
|
retry: configOrRequester.retry,
|
|
52
61
|
headers: { authorization: `Bearer ${configOrRequester.token}` },
|
|
53
|
-
|
|
62
|
+
agent: configOrRequester.agent,
|
|
63
|
+
responseEncoding: configOrRequester.responseEncoding,
|
|
64
|
+
cache: configOrRequester.cache || "no-store",
|
|
54
65
|
});
|
|
55
66
|
super(client, {
|
|
56
67
|
automaticDeserialization: configOrRequester.automaticDeserialization,
|
|
68
|
+
enableTelemetry: !process.env.UPSTASH_DISABLE_TELEMETRY,
|
|
69
|
+
});
|
|
70
|
+
this.addTelemetry({
|
|
71
|
+
runtime: typeof EdgeRuntime === "string"
|
|
72
|
+
? "edge-light"
|
|
73
|
+
: `node@${process.version}`,
|
|
74
|
+
platform: process.env.VERCEL
|
|
75
|
+
? "vercel"
|
|
76
|
+
: process.env.AWS_REGION
|
|
77
|
+
? "aws"
|
|
78
|
+
: "unknown",
|
|
79
|
+
sdk: `@upstash/redis@${version_js_1.VERSION}`,
|
|
57
80
|
});
|
|
58
81
|
}
|
|
59
82
|
/**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { encode, decode } from "../../../denopkg.com/chiefbiiko/std-encoding@v1.0.0/mod.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Requester } from "../http.js";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export
|
|
2
|
+
type Serialize = (data: unknown) => string | number | boolean;
|
|
3
|
+
type Deserialize<TResult, TData> = (result: TResult) => TData;
|
|
4
|
+
export type CommandOptions<TResult, TData> = {
|
|
5
5
|
/**
|
|
6
6
|
* Custom deserializer
|
|
7
7
|
*/
|
|
@@ -20,7 +20,7 @@ export declare type CommandOptions<TResult, TData> = {
|
|
|
20
20
|
* TResult is the raw data returned from upstash, which may need to be transformed or parsed.
|
|
21
21
|
*/
|
|
22
22
|
export declare class Command<TResult, TData> {
|
|
23
|
-
readonly command: string[];
|
|
23
|
+
readonly command: (string | number | boolean)[];
|
|
24
24
|
readonly serialize: Serialize;
|
|
25
25
|
readonly deserialize: Deserialize<TResult, TData>;
|
|
26
26
|
/**
|
|
@@ -28,7 +28,7 @@ export declare class Command<TResult, TData> {
|
|
|
28
28
|
*
|
|
29
29
|
* You can define a custom `deserialize` function. By default we try to deserialize as json.
|
|
30
30
|
*/
|
|
31
|
-
constructor(command: (string | unknown)[], opts?: CommandOptions<TResult, TData>);
|
|
31
|
+
constructor(command: (string | boolean | number | unknown)[], opts?: CommandOptions<TResult, TData>);
|
|
32
32
|
/**
|
|
33
33
|
* Execute the command using a client.
|
|
34
34
|
*/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
export type GeoAddCommandOptions = {
|
|
3
|
+
nx?: boolean;
|
|
4
|
+
xx?: never;
|
|
5
|
+
} | ({
|
|
6
|
+
nx?: never;
|
|
7
|
+
xx?: boolean;
|
|
8
|
+
} & {
|
|
9
|
+
ch?: boolean;
|
|
10
|
+
});
|
|
11
|
+
export interface GeoMember<TMemberType> {
|
|
12
|
+
latitude: number;
|
|
13
|
+
longitude: number;
|
|
14
|
+
member: TMemberType;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @see https://redis.io/commands/geoadd
|
|
18
|
+
*/
|
|
19
|
+
export declare class GeoAddCommand<TMemberType = string> extends Command<number | null, number | null> {
|
|
20
|
+
constructor([key, arg1, ...arg2]: [
|
|
21
|
+
string,
|
|
22
|
+
GeoMember<TMemberType> | GeoAddCommandOptions,
|
|
23
|
+
...GeoMember<TMemberType>[]
|
|
24
|
+
], opts?: CommandOptions<number | null, number | null>);
|
|
25
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/getdel
|
|
4
|
+
*/
|
|
5
|
+
export declare class GetDelCommand<TData = string> extends Command<unknown | null, TData | null> {
|
|
6
|
+
constructor(cmd: [key: string], opts?: CommandOptions<unknown | null, TData | null>);
|
|
7
|
+
}
|
|
@@ -3,5 +3,5 @@ import { Command, CommandOptions } from "./command.js";
|
|
|
3
3
|
* @see https://redis.io/commands/hdel
|
|
4
4
|
*/
|
|
5
5
|
export declare class HDelCommand extends Command<"0" | "1", 0 | 1> {
|
|
6
|
-
constructor(cmd: [key: string,
|
|
6
|
+
constructor(cmd: [key: string, ...fields: string[]], opts?: CommandOptions<"0" | "1", 0 | 1>);
|
|
7
7
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/hrandfield
|
|
4
|
+
*/
|
|
5
|
+
export declare class HRandFieldCommand<TData extends string | string[] | Record<string, unknown>> extends Command<string | string[], TData> {
|
|
6
|
+
constructor(cmd: [key: string], opts?: CommandOptions<string, string>);
|
|
7
|
+
constructor(cmd: [key: string, count: number], opts?: CommandOptions<string[], string[]>);
|
|
8
|
+
constructor(cmd: [key: string, count: number, withValues: boolean], opts?: CommandOptions<string[], Partial<TData>>);
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.arrappend
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonArrAppendCommand<TData extends unknown[]> extends Command<(null | string)[], (null | number)[]> {
|
|
6
|
+
constructor(cmd: [key: string, path: string, ...values: TData], opts?: CommandOptions<(null | string)[], (null | number)[]>);
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.arrindex
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonArrIndexCommand<TValue extends unknown> extends Command<(null | string)[], (null | number)[]> {
|
|
6
|
+
constructor(cmd: [
|
|
7
|
+
key: string,
|
|
8
|
+
path: string,
|
|
9
|
+
value: TValue,
|
|
10
|
+
start?: number,
|
|
11
|
+
stop?: number
|
|
12
|
+
], opts?: CommandOptions<(null | string)[], (null | number)[]>);
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.arrinsert
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonArrInsertCommand<TData extends unknown[]> extends Command<(null | string)[], (null | number)[]> {
|
|
6
|
+
constructor(cmd: [key: string, path: string, index: number, ...values: TData], opts?: CommandOptions<(null | string)[], (null | number)[]>);
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.arrlen
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonArrLenCommand<TValue extends unknown> extends Command<(null | string)[], (null | number)[]> {
|
|
6
|
+
constructor(cmd: [key: string, path?: string], opts?: CommandOptions<(null | string)[], (null | number)[]>);
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.arrpop
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonArrPopCommand<TData extends unknown> extends Command<(null | string)[], (TData | null)[]> {
|
|
6
|
+
constructor(cmd: [key: string, path?: string, index?: number], opts?: CommandOptions<(null | string)[], (TData | null)[]>);
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.arrtrim
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonArrTrimCommand extends Command<(null | string)[], (null | number)[]> {
|
|
6
|
+
constructor(cmd: [key: string, path?: string, start?: number, stop?: number], opts?: CommandOptions<(null | string)[], (null | number)[]>);
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.clear
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonClearCommand extends Command<number, number> {
|
|
6
|
+
constructor(cmd: [key: string, path?: string], opts?: CommandOptions<number, number>);
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.del
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonDelCommand extends Command<number, number> {
|
|
6
|
+
constructor(cmd: [key: string, path?: string], opts?: CommandOptions<number, number>);
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Command, CommandOptions } from "./command.js";
|
|
2
|
+
/**
|
|
3
|
+
* @see https://redis.io/commands/json.forget
|
|
4
|
+
*/
|
|
5
|
+
export declare class JsonForgetCommand extends Command<number, number> {
|
|
6
|
+
constructor(cmd: [key: string, path?: string], opts?: CommandOptions<number, number>);
|
|
7
|
+
}
|