@@ -6,9 +6,11 @@ import * as BITFIELD from '../commands/BITFIELD';
66import * as BITOP from '../commands/BITOP' ;
77import * as BITPOS from '../commands/BITPOS' ;
88import * as BLMOVE from '../commands/BLMOVE' ;
9+ import * as BLMPOP from '../commands/BLMPOP' ;
910import * as BLPOP from '../commands/BLPOP' ;
1011import * as BRPOP from '../commands/BRPOP' ;
1112import * as BRPOPLPUSH from '../commands/BRPOPLPUSH' ;
13+ import * as BZMPOP from '../commands/BZMPOP' ;
1214import * as BZPOPMAX from '../commands/BZPOPMAX' ;
1315import * as BZPOPMIN from '../commands/BZPOPMIN' ;
1416import * as COPY from '../commands/COPY' ;
@@ -59,6 +61,7 @@ import * as LINDEX from '../commands/LINDEX';
5961import * as LINSERT from '../commands/LINSERT' ;
6062import * as LLEN from '../commands/LLEN' ;
6163import * as LMOVE from '../commands/LMOVE' ;
64+ import * as LMPOP from '../commands/LMPOP' ;
6265import * as LPOP_COUNT from '../commands/LPOP_COUNT' ;
6366import * as LPOP from '../commands/LPOP' ;
6467import * as LPOS_COUNT from '../commands/LPOS_COUNT' ;
@@ -161,6 +164,7 @@ import * as ZINTER from '../commands/ZINTER';
161164import * as ZINTERCARD from '../commands/ZINTERCARD' ;
162165import * as ZINTERSTORE from '../commands/ZINTERSTORE' ;
163166import * as ZLEXCOUNT from '../commands/ZLEXCOUNT' ;
167+ import * as ZMPOP from '../commands/ZMPOP' ;
164168import * as ZMSCORE from '../commands/ZMSCORE' ;
165169import * as ZPOPMAX_COUNT from '../commands/ZPOPMAX_COUNT' ;
166170import * as ZPOPMAX from '../commands/ZPOPMAX' ;
@@ -202,12 +206,16 @@ export default {
202206 bitPos : BITPOS ,
203207 BLMOVE ,
204208 blMove : BLMOVE ,
209+ BLMPOP ,
210+ blmPop : BLMPOP ,
205211 BLPOP ,
206212 blPop : BLPOP ,
207213 BRPOP ,
208214 brPop : BRPOP ,
209215 BRPOPLPUSH ,
210216 brPopLPush : BRPOPLPUSH ,
217+ BZMPOP ,
218+ bzmPop : BZMPOP ,
211219 BZPOPMAX ,
212220 bzPopMax : BZPOPMAX ,
213221 BZPOPMIN ,
@@ -308,6 +316,8 @@ export default {
308316 lLen : LLEN ,
309317 LMOVE ,
310318 lMove : LMOVE ,
319+ LMPOP ,
320+ lmPop : LMPOP ,
311321 LPOP_COUNT ,
312322 lPopCount : LPOP_COUNT ,
313323 LPOP ,
@@ -512,6 +522,8 @@ export default {
512522 zInterStore : ZINTERSTORE ,
513523 ZLEXCOUNT ,
514524 zLexCount : ZLEXCOUNT ,
525+ ZMPOP ,
526+ zmPop : ZMPOP ,
515527 ZMSCORE ,
516528 zmScore : ZMSCORE ,
517529 ZPOPMAX_COUNT ,
0 commit comments