@upstash/redis 0.2.0 → 1.0.0-alpha.1
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/dist/chunk-RYSRH3HC.mjs +1084 -0
- package/dist/commands.d.ts +205 -0
- package/dist/commands.js +1201 -0
- package/dist/commands.mjs +218 -0
- package/dist/index.d.ts +1011 -0
- package/dist/index.js +1754 -0
- package/dist/index.mjs +862 -0
- package/dist/zunionstore-462de5d3.d.ts +695 -0
- package/package.json +1 -75
- package/README.md +0 -63
- package/dist/main/client.d.ts +0 -21
- package/dist/main/client.js +0 -556
- package/dist/main/index-cjs.d.ts +0 -1
- package/dist/main/index-cjs.js +0 -120
- package/dist/main/types.d.ts +0 -177
- package/dist/main/types.js +0 -2
- package/dist/module/client.d.ts +0 -21
- package/dist/module/client.js +0 -551
- package/dist/module/index.d.ts +0 -3
- package/dist/module/index.js +0 -3
- package/dist/module/types.d.ts +0 -177
- package/dist/module/types.js +0 -1
- package/jest.config.js +0 -5
- package/src/client.ts +0 -618
- package/src/index-cjs.ts +0 -117
- package/src/index.ts +0 -118
- package/src/types.ts +0 -408
- package/tsconfig.json +0 -20
- package/tsconfig.module.json +0 -8
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AppendCommand,
|
|
3
|
+
BitCountCommand,
|
|
4
|
+
BitOpCommand,
|
|
5
|
+
BitPosCommand,
|
|
6
|
+
DBSizeCommand,
|
|
7
|
+
DecrByCommand,
|
|
8
|
+
DecrCommand,
|
|
9
|
+
DelCommand,
|
|
10
|
+
EchoCommand,
|
|
11
|
+
ExistsCommand,
|
|
12
|
+
ExpireAtCommand,
|
|
13
|
+
ExpireCommand,
|
|
14
|
+
FlushAllCommand,
|
|
15
|
+
FlushDBCommand,
|
|
16
|
+
GetBitCommand,
|
|
17
|
+
GetCommand,
|
|
18
|
+
GetRangeCommand,
|
|
19
|
+
GetSetCommand,
|
|
20
|
+
HDelCommand,
|
|
21
|
+
HExistsCommand,
|
|
22
|
+
HGetAllCommand,
|
|
23
|
+
HGetCommand,
|
|
24
|
+
HIncrByCommand,
|
|
25
|
+
HIncrByFloatCommand,
|
|
26
|
+
HKeysCommand,
|
|
27
|
+
HLenCommand,
|
|
28
|
+
HMGetCommand,
|
|
29
|
+
HMSetCommand,
|
|
30
|
+
HScanCommand,
|
|
31
|
+
HSetCommand,
|
|
32
|
+
HSetNXCommand,
|
|
33
|
+
HStrLenCommand,
|
|
34
|
+
HValsCommand,
|
|
35
|
+
IncrByCommand,
|
|
36
|
+
IncrByFloatCommand,
|
|
37
|
+
IncrCommand,
|
|
38
|
+
KeysCommand,
|
|
39
|
+
LIndexCommand,
|
|
40
|
+
LInsertCommand,
|
|
41
|
+
LLenCommand,
|
|
42
|
+
LPopCommand,
|
|
43
|
+
LPushCommand,
|
|
44
|
+
LPushXCommand,
|
|
45
|
+
LRangeCommand,
|
|
46
|
+
LRemCommand,
|
|
47
|
+
LSetCommand,
|
|
48
|
+
LTrimCommand,
|
|
49
|
+
MGetCommand,
|
|
50
|
+
MSetCommand,
|
|
51
|
+
MSetNXCommand,
|
|
52
|
+
PExpireAtCommand,
|
|
53
|
+
PExpireCommand,
|
|
54
|
+
PSetEXCommand,
|
|
55
|
+
PTtlCommand,
|
|
56
|
+
PersistCommand,
|
|
57
|
+
PingCommand,
|
|
58
|
+
RPopCommand,
|
|
59
|
+
RPushCommand,
|
|
60
|
+
RPushXCommand,
|
|
61
|
+
RandomKeyCommand,
|
|
62
|
+
RenameCommand,
|
|
63
|
+
RenameNXCommand,
|
|
64
|
+
SAddCommand,
|
|
65
|
+
SCardCommand,
|
|
66
|
+
SDiffCommand,
|
|
67
|
+
SDiffStoreCommand,
|
|
68
|
+
SInterCommand,
|
|
69
|
+
SInterStoreCommand,
|
|
70
|
+
SIsMemberCommand,
|
|
71
|
+
SMembersCommand,
|
|
72
|
+
SMoveCommand,
|
|
73
|
+
SPopCommand,
|
|
74
|
+
SRandMemberCommand,
|
|
75
|
+
SRemCommand,
|
|
76
|
+
SScanCommand,
|
|
77
|
+
SUnionCommand,
|
|
78
|
+
SUnionStoreCommand,
|
|
79
|
+
ScanCommand,
|
|
80
|
+
SetBitCommand,
|
|
81
|
+
SetCommand,
|
|
82
|
+
SetExCommand,
|
|
83
|
+
SetNxCommand,
|
|
84
|
+
SetRangeCommand,
|
|
85
|
+
StrLenCommand,
|
|
86
|
+
TimeCommand,
|
|
87
|
+
TouchCommand,
|
|
88
|
+
TtlCommand,
|
|
89
|
+
TypeCommand,
|
|
90
|
+
UnlinkCommand,
|
|
91
|
+
ZAddCommand,
|
|
92
|
+
ZCardCommand,
|
|
93
|
+
ZCountCommand,
|
|
94
|
+
ZIncrByComand,
|
|
95
|
+
ZInterStoreCommand,
|
|
96
|
+
ZLexCountCommand,
|
|
97
|
+
ZPopMaxCommand,
|
|
98
|
+
ZPopMinCommand,
|
|
99
|
+
ZRangeCommand,
|
|
100
|
+
ZRankCommand,
|
|
101
|
+
ZRemCommand,
|
|
102
|
+
ZRemRangeByLexCommand,
|
|
103
|
+
ZRemRangeByRankCommand,
|
|
104
|
+
ZRemRangeByScoreCommand,
|
|
105
|
+
ZRevRankCommand,
|
|
106
|
+
ZScanCommand,
|
|
107
|
+
ZScoreCommand,
|
|
108
|
+
ZUnionStoreCommand
|
|
109
|
+
} from "./chunk-RYSRH3HC.mjs";
|
|
110
|
+
export {
|
|
111
|
+
AppendCommand,
|
|
112
|
+
BitCountCommand,
|
|
113
|
+
BitOpCommand,
|
|
114
|
+
BitPosCommand,
|
|
115
|
+
DBSizeCommand,
|
|
116
|
+
DecrByCommand,
|
|
117
|
+
DecrCommand,
|
|
118
|
+
DelCommand,
|
|
119
|
+
EchoCommand,
|
|
120
|
+
ExistsCommand,
|
|
121
|
+
ExpireAtCommand,
|
|
122
|
+
ExpireCommand,
|
|
123
|
+
FlushAllCommand,
|
|
124
|
+
FlushDBCommand,
|
|
125
|
+
GetBitCommand,
|
|
126
|
+
GetCommand,
|
|
127
|
+
GetRangeCommand,
|
|
128
|
+
GetSetCommand,
|
|
129
|
+
HDelCommand,
|
|
130
|
+
HExistsCommand,
|
|
131
|
+
HGetAllCommand,
|
|
132
|
+
HGetCommand,
|
|
133
|
+
HIncrByCommand,
|
|
134
|
+
HIncrByFloatCommand,
|
|
135
|
+
HKeysCommand,
|
|
136
|
+
HLenCommand,
|
|
137
|
+
HMGetCommand,
|
|
138
|
+
HMSetCommand,
|
|
139
|
+
HScanCommand,
|
|
140
|
+
HSetCommand,
|
|
141
|
+
HSetNXCommand,
|
|
142
|
+
HStrLenCommand,
|
|
143
|
+
HValsCommand,
|
|
144
|
+
IncrByCommand,
|
|
145
|
+
IncrByFloatCommand,
|
|
146
|
+
IncrCommand,
|
|
147
|
+
KeysCommand,
|
|
148
|
+
LIndexCommand,
|
|
149
|
+
LInsertCommand,
|
|
150
|
+
LLenCommand,
|
|
151
|
+
LPopCommand,
|
|
152
|
+
LPushCommand,
|
|
153
|
+
LPushXCommand,
|
|
154
|
+
LRangeCommand,
|
|
155
|
+
LRemCommand,
|
|
156
|
+
LSetCommand,
|
|
157
|
+
LTrimCommand,
|
|
158
|
+
MGetCommand,
|
|
159
|
+
MSetCommand,
|
|
160
|
+
MSetNXCommand,
|
|
161
|
+
PExpireAtCommand,
|
|
162
|
+
PExpireCommand,
|
|
163
|
+
PSetEXCommand,
|
|
164
|
+
PTtlCommand,
|
|
165
|
+
PersistCommand,
|
|
166
|
+
PingCommand,
|
|
167
|
+
RPopCommand,
|
|
168
|
+
RPushCommand,
|
|
169
|
+
RPushXCommand,
|
|
170
|
+
RandomKeyCommand,
|
|
171
|
+
RenameCommand,
|
|
172
|
+
RenameNXCommand,
|
|
173
|
+
SAddCommand,
|
|
174
|
+
SCardCommand,
|
|
175
|
+
SDiffCommand,
|
|
176
|
+
SDiffStoreCommand,
|
|
177
|
+
SInterCommand,
|
|
178
|
+
SInterStoreCommand,
|
|
179
|
+
SIsMemberCommand,
|
|
180
|
+
SMembersCommand,
|
|
181
|
+
SMoveCommand,
|
|
182
|
+
SPopCommand,
|
|
183
|
+
SRandMemberCommand,
|
|
184
|
+
SRemCommand,
|
|
185
|
+
SScanCommand,
|
|
186
|
+
SUnionCommand,
|
|
187
|
+
SUnionStoreCommand,
|
|
188
|
+
ScanCommand,
|
|
189
|
+
SetBitCommand,
|
|
190
|
+
SetCommand,
|
|
191
|
+
SetExCommand,
|
|
192
|
+
SetNxCommand,
|
|
193
|
+
SetRangeCommand,
|
|
194
|
+
StrLenCommand,
|
|
195
|
+
TimeCommand,
|
|
196
|
+
TouchCommand,
|
|
197
|
+
TtlCommand,
|
|
198
|
+
TypeCommand,
|
|
199
|
+
UnlinkCommand,
|
|
200
|
+
ZAddCommand,
|
|
201
|
+
ZCardCommand,
|
|
202
|
+
ZCountCommand,
|
|
203
|
+
ZIncrByComand,
|
|
204
|
+
ZInterStoreCommand,
|
|
205
|
+
ZLexCountCommand,
|
|
206
|
+
ZPopMaxCommand,
|
|
207
|
+
ZPopMinCommand,
|
|
208
|
+
ZRangeCommand,
|
|
209
|
+
ZRankCommand,
|
|
210
|
+
ZRemCommand,
|
|
211
|
+
ZRemRangeByLexCommand,
|
|
212
|
+
ZRemRangeByRankCommand,
|
|
213
|
+
ZRemRangeByScoreCommand,
|
|
214
|
+
ZRevRankCommand,
|
|
215
|
+
ZScanCommand,
|
|
216
|
+
ZScoreCommand,
|
|
217
|
+
ZUnionStoreCommand
|
|
218
|
+
};
|